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

49331 строка
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. }
  1908. //species
  1909. function getSpeciesInfo(speciesList) {
  1910. let result = new Set();
  1911. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1912. result.add(entry)
  1913. });
  1914. return Array.from(result);
  1915. };
  1916. function getSpeciesInfoHelper(species) {
  1917. if (!speciesData[species]) {
  1918. console.warn(species + " doesn't exist");
  1919. return [];
  1920. }
  1921. if (speciesData[species].parents) {
  1922. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1923. } else {
  1924. return [species];
  1925. }
  1926. }
  1927. characterMakers.push(() => makeCharacter(
  1928. {
  1929. name: "Fen",
  1930. species: ["crux"],
  1931. description: {
  1932. title: "Bio",
  1933. text: "Very furry. Sheds on everything."
  1934. },
  1935. tags: [
  1936. "anthro",
  1937. "goo"
  1938. ]
  1939. },
  1940. {
  1941. front: {
  1942. height: math.unit(12, "feet"),
  1943. weight: math.unit(2400, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/fen/front.svg",
  1947. extra: 1804/1562,
  1948. bottom: 205/2009
  1949. }
  1950. },
  1951. diving: {
  1952. height: math.unit(4.9, "meters"),
  1953. weight: math.unit(2400, "lb"),
  1954. name: "Diving",
  1955. image: {
  1956. source: "./media/characters/fen/diving.svg"
  1957. }
  1958. },
  1959. goo: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(3600, "lb"),
  1962. volume: math.unit(1000, "liters"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. extra: 1307/1071,
  1968. bottom: 134/1441
  1969. }
  1970. },
  1971. maw: {
  1972. height: math.unit(5.03, "feet"),
  1973. name: "Maw",
  1974. image: {
  1975. source: "./media/characters/fen/maw.svg"
  1976. }
  1977. },
  1978. gooCeiling: {
  1979. height: math.unit(6.6, "feet"),
  1980. weight: math.unit(3000, "lb"),
  1981. volume: math.unit(1000, "liters"),
  1982. capacity: math.unit(6, "people"),
  1983. name: "Goo (Ceiling)",
  1984. image: {
  1985. source: "./media/characters/fen/goo-ceiling.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(12, "feet"),
  1990. weight: math.unit(2400, "lb"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/fen/back.svg",
  1994. },
  1995. info: {
  1996. description: {
  1997. mode: "append",
  1998. text: "\n\nHe is not currently looking at you."
  1999. }
  2000. }
  2001. },
  2002. full: {
  2003. height: math.unit(1.6, "meter"),
  2004. weight: math.unit(3200, "lb"),
  2005. name: "Full",
  2006. image: {
  2007. source: "./media/characters/fen/full.svg",
  2008. extra: 1133/859,
  2009. bottom: 145/1278
  2010. },
  2011. info: {
  2012. description: {
  2013. mode: "append",
  2014. text: "\n\nMunch."
  2015. }
  2016. }
  2017. },
  2018. gooLounging: {
  2019. height: math.unit(4.53, "feet"),
  2020. weight: math.unit(3000, "lb"),
  2021. capacity: math.unit(6, "people"),
  2022. name: "Goo (Lounging)",
  2023. image: {
  2024. source: "./media/characters/fen/goo-lounging.svg",
  2025. bottom: 116 / 613
  2026. }
  2027. },
  2028. lounging: {
  2029. height: math.unit(10.52, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Lounging",
  2032. image: {
  2033. source: "./media/characters/fen/lounging.svg"
  2034. }
  2035. },
  2036. },
  2037. [
  2038. {
  2039. name: "Small",
  2040. height: math.unit(2.2428, "meter")
  2041. },
  2042. {
  2043. name: "Normal",
  2044. height: math.unit(12, "feet"),
  2045. default: true,
  2046. },
  2047. {
  2048. name: "Big",
  2049. height: math.unit(20, "feet")
  2050. },
  2051. {
  2052. name: "Minimacro",
  2053. height: math.unit(40, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(100, "feet"),
  2064. info: {
  2065. description: {
  2066. mode: "append",
  2067. text: "\n\nTOO DAMN BIG"
  2068. }
  2069. }
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(2, "miles")
  2074. },
  2075. {
  2076. name: "Gigamacro",
  2077. height: math.unit(10, "earths")
  2078. },
  2079. ]
  2080. ))
  2081. characterMakers.push(() => makeCharacter(
  2082. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2083. {
  2084. front: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front.svg",
  2090. bottom: 0.01,
  2091. extra: 2154 / 2081
  2092. }
  2093. },
  2094. frontAlt: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Front (alt)",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2100. }
  2101. },
  2102. back: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Back",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/back.svg"
  2108. }
  2109. },
  2110. kneeling: {
  2111. height: math.unit(125, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Kneeling",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2116. extra: 1033 / 977,
  2117. bottom: 23.7 / 1057
  2118. }
  2119. },
  2120. maw: {
  2121. height: math.unit(183 / 5, "cm"),
  2122. name: "Maw",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/maw.svg"
  2125. }
  2126. },
  2127. mawcloseup: {
  2128. height: math.unit(183 / 5 * 0.41, "cm"),
  2129. name: "Maw (Closeup)",
  2130. image: {
  2131. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2132. }
  2133. },
  2134. paws: {
  2135. height: math.unit(1.17, "feet"),
  2136. name: "Paws",
  2137. image: {
  2138. source: "./media/characters/sofia-fluttertail/paws.svg",
  2139. extra: 851 / 851,
  2140. bottom: 17 / 868
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.83, "meter")
  2148. },
  2149. {
  2150. name: "Size Thief",
  2151. height: math.unit(18, "feet")
  2152. },
  2153. {
  2154. name: "50 Foot Collie",
  2155. height: math.unit(50, "feet")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(96, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Megamerger",
  2164. height: math.unit(650, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/march/front.svg",
  2177. extra: 1992/1851,
  2178. bottom: 39/2031
  2179. }
  2180. },
  2181. foot: {
  2182. height: math.unit(0.9, "feet"),
  2183. name: "Foot",
  2184. image: {
  2185. source: "./media/characters/march/foot.svg"
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7.9, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(220, "meters")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.98, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(15963, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2980000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(250, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(60, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/noir/front.svg",
  2226. extra: 1,
  2227. bottom: 0.032
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(6.6, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(500, "feet")
  2239. },
  2240. {
  2241. name: "Megamacro",
  2242. height: math.unit(2.5, "km"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(22500, "km")
  2248. },
  2249. {
  2250. name: "Teramacro",
  2251. height: math.unit(2500000000, "km")
  2252. },
  2253. {
  2254. name: "Examacro",
  2255. height: math.unit(200, "parsecs")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/okuri/front.svg",
  2268. extra: 739/665,
  2269. bottom: 39/778
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/okuri/back.svg",
  2278. extra: 734/653,
  2279. bottom: 13/747
  2280. }
  2281. },
  2282. sitting: {
  2283. height: math.unit(2.95, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Sitting",
  2286. image: {
  2287. source: "./media/characters/okuri/sitting.svg",
  2288. extra: 370/318,
  2289. bottom: 99/469
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Smallest",
  2296. height: math.unit(5 + 2/12, "feet")
  2297. },
  2298. {
  2299. name: "Smaller",
  2300. height: math.unit(300, "feet")
  2301. },
  2302. {
  2303. name: "Small",
  2304. height: math.unit(1000, "feet")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(1, "mile")
  2309. },
  2310. {
  2311. name: "Mega Macro (Small)",
  2312. height: math.unit(20, "km")
  2313. },
  2314. {
  2315. name: "Mega Macro (Large)",
  2316. height: math.unit(600, "km")
  2317. },
  2318. {
  2319. name: "Giga Macro",
  2320. height: math.unit(10000, "km")
  2321. },
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(577560, "km"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Large",
  2329. height: math.unit(4, "galaxies")
  2330. },
  2331. {
  2332. name: "Largest",
  2333. height: math.unit(15, "multiverses")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/manny/front.svg",
  2346. extra: 1,
  2347. bottom: 0.06
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/manny/back.svg",
  2356. extra: 1,
  2357. bottom: 0.014
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet"),
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(78, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "meters")
  2374. },
  2375. {
  2376. name: "Macro++",
  2377. height: math.unit(2400, "meters")
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(5167, "meters")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(41769, "miles")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/adake/front-1.svg"
  2398. }
  2399. },
  2400. frontAlt: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front (Alt)",
  2404. image: {
  2405. source: "./media/characters/adake/front-2.svg",
  2406. extra: 1,
  2407. bottom: 0.01
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/adake/back.svg",
  2416. }
  2417. },
  2418. kneel: {
  2419. height: math.unit(5.385, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Kneeling",
  2422. image: {
  2423. source: "./media/characters/adake/kneel.svg",
  2424. bottom: 0.052
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(1.65, "meters"),
  2461. weight: math.unit(50, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/elijah/front.svg",
  2465. extra: 858 / 830,
  2466. bottom: 95.5 / 953.8559
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(1.65, "meters"),
  2471. weight: math.unit(50, "kg"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/elijah/back.svg",
  2475. extra: 895 / 850,
  2476. bottom: 5.3 / 897.956
  2477. }
  2478. },
  2479. frontNsfw: {
  2480. height: math.unit(1.65, "meters"),
  2481. weight: math.unit(50, "kg"),
  2482. name: "Front (NSFW)",
  2483. image: {
  2484. source: "./media/characters/elijah/front-nsfw.svg",
  2485. extra: 858 / 830,
  2486. bottom: 95.5 / 953.8559
  2487. }
  2488. },
  2489. backNsfw: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Back (NSFW)",
  2493. image: {
  2494. source: "./media/characters/elijah/back-nsfw.svg",
  2495. extra: 895 / 850,
  2496. bottom: 5.3 / 897.956
  2497. }
  2498. },
  2499. dick: {
  2500. height: math.unit(1, "feet"),
  2501. name: "Dick",
  2502. image: {
  2503. source: "./media/characters/elijah/dick.svg"
  2504. }
  2505. },
  2506. beakOpen: {
  2507. height: math.unit(1.25, "feet"),
  2508. name: "Beak (Open)",
  2509. image: {
  2510. source: "./media/characters/elijah/beak-open.svg"
  2511. }
  2512. },
  2513. beakShut: {
  2514. height: math.unit(1.25, "feet"),
  2515. name: "Beak (Shut)",
  2516. image: {
  2517. source: "./media/characters/elijah/beak-shut.svg"
  2518. }
  2519. },
  2520. footFlexing: {
  2521. height: math.unit(1.61, "feet"),
  2522. name: "Foot (Flexing)",
  2523. image: {
  2524. source: "./media/characters/elijah/foot-flexing.svg"
  2525. }
  2526. },
  2527. footStepping: {
  2528. height: math.unit(1.44, "feet"),
  2529. name: "Foot (Stepping)",
  2530. image: {
  2531. source: "./media/characters/elijah/foot-stepping.svg"
  2532. }
  2533. },
  2534. plantigradeLeg: {
  2535. height: math.unit(2.34, "feet"),
  2536. name: "Plantigrade Leg",
  2537. image: {
  2538. source: "./media/characters/elijah/plantigrade-leg.svg"
  2539. }
  2540. },
  2541. plantigradeFootLeft: {
  2542. height: math.unit(0.9, "feet"),
  2543. name: "Plantigrade Foot (Left)",
  2544. image: {
  2545. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2546. }
  2547. },
  2548. plantigradeFootRight: {
  2549. height: math.unit(0.9, "feet"),
  2550. name: "Plantigrade Foot (Right)",
  2551. image: {
  2552. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(1.65, "meters")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(55, "meters"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(105, "meters")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(7 + 2/12, "feet"),
  2577. weight: math.unit(320, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rai/front.svg",
  2581. extra: 1802/1696,
  2582. bottom: 68/1870
  2583. }
  2584. },
  2585. frontDressed: {
  2586. height: math.unit(7 + 2/12, "feet"),
  2587. weight: math.unit(320, "kg"),
  2588. name: "Front (Dressed)",
  2589. image: {
  2590. source: "./media/characters/rai/front-dressed.svg",
  2591. extra: 1802/1696,
  2592. bottom: 68/1870
  2593. }
  2594. },
  2595. side: {
  2596. height: math.unit(7 + 2/12, "feet"),
  2597. weight: math.unit(320, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/rai/side.svg",
  2601. extra: 1789/1710,
  2602. bottom: 115/1904
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rai/back.svg",
  2611. extra: 1770/1707,
  2612. bottom: 28/1798
  2613. }
  2614. },
  2615. feral: {
  2616. height: math.unit(9.5, "feet"),
  2617. weight: math.unit(640, "kg"),
  2618. name: "Feral",
  2619. image: {
  2620. source: "./media/characters/rai/feral.svg",
  2621. extra: 945/553,
  2622. bottom: 176/1121
  2623. }
  2624. },
  2625. dragon: {
  2626. height: math.unit(23, "feet"),
  2627. weight: math.unit(50000, "lb"),
  2628. name: "Dragon",
  2629. image: {
  2630. source: "./media/characters/rai/dragon.svg",
  2631. extra: 2498 / 2030,
  2632. bottom: 85.2 / 2584
  2633. }
  2634. },
  2635. maw: {
  2636. height: math.unit(1.69, "feet"),
  2637. name: "Maw",
  2638. image: {
  2639. source: "./media/characters/rai/maw.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(7 + 2/12, "feet")
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(11, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(302, "feet"),
  2655. default: true
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2661. {
  2662. frontDressed: {
  2663. height: math.unit(216, "feet"),
  2664. weight: math.unit(7000000, "lb"),
  2665. name: "Front (Dressed)",
  2666. image: {
  2667. source: "./media/characters/jazzy/front-dressed.svg",
  2668. extra: 2738 / 2651,
  2669. bottom: 41.8 / 2786
  2670. }
  2671. },
  2672. backDressed: {
  2673. height: math.unit(216, "feet"),
  2674. weight: math.unit(7000000, "lb"),
  2675. name: "Back (Dressed)",
  2676. image: {
  2677. source: "./media/characters/jazzy/back-dressed.svg",
  2678. extra: 2775 / 2673,
  2679. bottom: 36.8 / 2817
  2680. }
  2681. },
  2682. front: {
  2683. height: math.unit(216, "feet"),
  2684. weight: math.unit(7000000, "lb"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/jazzy/front.svg",
  2688. extra: 2738 / 2651,
  2689. bottom: 41.8 / 2786
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/jazzy/back.svg",
  2698. extra: 2775 / 2673,
  2699. bottom: 36.8 / 2817
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(20, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/jazzy/maw.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(27.5, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/jazzy/paws.svg"
  2714. }
  2715. },
  2716. eye: {
  2717. height: math.unit(4.4, "feet"),
  2718. name: "Eye",
  2719. image: {
  2720. source: "./media/characters/jazzy/eye.svg"
  2721. }
  2722. },
  2723. droneOffense: {
  2724. height: math.unit(9.5, "inches"),
  2725. name: "Drone (Offense)",
  2726. image: {
  2727. source: "./media/characters/jazzy/drone-offense.svg"
  2728. }
  2729. },
  2730. droneRecon: {
  2731. height: math.unit(9.5, "inches"),
  2732. name: "Drone (Recon)",
  2733. image: {
  2734. source: "./media/characters/jazzy/drone-recon.svg"
  2735. }
  2736. },
  2737. droneDefense: {
  2738. height: math.unit(9.5, "inches"),
  2739. name: "Drone (Defense)",
  2740. image: {
  2741. source: "./media/characters/jazzy/drone-defense.svg"
  2742. }
  2743. },
  2744. },
  2745. [
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(216, "feet"),
  2749. default: true
  2750. },
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2755. {
  2756. front: {
  2757. height: math.unit(9 + 6/12, "feet"),
  2758. weight: math.unit(700, "lb"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/flamm/front.svg",
  2762. extra: 1751/1632,
  2763. bottom: 46/1797
  2764. }
  2765. },
  2766. buff: {
  2767. height: math.unit(9 + 6/12, "feet"),
  2768. weight: math.unit(950, "lb"),
  2769. name: "Buff",
  2770. image: {
  2771. source: "./media/characters/flamm/buff.svg",
  2772. extra: 3018/2874,
  2773. bottom: 221/3239
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(9.5, "feet")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(200, "feet"),
  2785. default: true
  2786. },
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(5 + 3/12, "feet"),
  2794. weight: math.unit(60, "kg"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/zephiro/front.svg",
  2798. extra: 2309 / 2162,
  2799. bottom: 0.069
  2800. }
  2801. },
  2802. side: {
  2803. height: math.unit(5 + 3/12, "feet"),
  2804. weight: math.unit(60, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/zephiro/side.svg",
  2808. extra: 2403 / 2279,
  2809. bottom: 0.015
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(5 + 3/12, "feet"),
  2814. weight: math.unit(60, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/zephiro/back.svg",
  2818. extra: 2373 / 2244,
  2819. bottom: 0.013
  2820. }
  2821. },
  2822. hand: {
  2823. height: math.unit(0.68, "feet"),
  2824. name: "Hand",
  2825. image: {
  2826. source: "./media/characters/zephiro/hand.svg"
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/zephiro/paw.svg"
  2834. }
  2835. },
  2836. beans: {
  2837. height: math.unit(0.93, "feet"),
  2838. name: "Beans",
  2839. image: {
  2840. source: "./media/characters/zephiro/beans.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Micro",
  2847. height: math.unit(3, "inches")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 3 / 12, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(118, "feet")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5, "feet"),
  2865. weight: math.unit(90, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/fory/front.svg",
  2869. extra: 2862 / 2674,
  2870. bottom: 180 / 3043.8
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(5, "feet"),
  2875. weight: math.unit(90, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/fory/back.svg",
  2879. extra: 2962 / 2791,
  2880. bottom: 106 / 3071.8
  2881. }
  2882. },
  2883. foot: {
  2884. height: math.unit(2.14, "feet"),
  2885. name: "Foot",
  2886. image: {
  2887. source: "./media/characters/fory/foot.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5, "feet")
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(50, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(10, "miles")
  2904. },
  2905. {
  2906. name: "Gigamacro",
  2907. height: math.unit(5, "earths")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(7, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kurrikage/front.svg",
  2920. extra: 1845/1733,
  2921. bottom: 119/1964
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(7, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kurrikage/back.svg",
  2930. extra: 1790/1677,
  2931. bottom: 61/1851
  2932. }
  2933. },
  2934. dressed: {
  2935. height: math.unit(7, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Dressed",
  2938. image: {
  2939. source: "./media/characters/kurrikage/dressed.svg",
  2940. extra: 1845/1733,
  2941. bottom: 119/1964
  2942. }
  2943. },
  2944. foot: {
  2945. height: math.unit(1.5, "feet"),
  2946. name: "Foot",
  2947. image: {
  2948. source: "./media/characters/kurrikage/foot.svg"
  2949. }
  2950. },
  2951. staff: {
  2952. height: math.unit(6.7, "feet"),
  2953. name: "Staff",
  2954. image: {
  2955. source: "./media/characters/kurrikage/staff.svg"
  2956. }
  2957. },
  2958. peek: {
  2959. height: math.unit(1.05, "feet"),
  2960. name: "Peeking",
  2961. image: {
  2962. source: "./media/characters/kurrikage/peek.svg",
  2963. bottom: 0.08
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(12, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Big",
  2975. height: math.unit(20, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(500, "feet")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(20, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/shingo/front.svg",
  2996. extra: 1900/1825,
  2997. bottom: 82/1982
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/shingo/side.svg",
  3006. extra: 1930/1865,
  3007. bottom: 16/1946
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/shingo/back.svg",
  3016. extra: 1922/1852,
  3017. bottom: 16/1938
  3018. }
  3019. },
  3020. frontDressed: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(150, "lb"),
  3023. name: "Front-dressed",
  3024. image: {
  3025. source: "./media/characters/shingo/front-dressed.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. paw: {
  3031. height: math.unit(1.29, "feet"),
  3032. name: "Paw",
  3033. image: {
  3034. source: "./media/characters/shingo/paw.svg"
  3035. }
  3036. },
  3037. hand: {
  3038. height: math.unit(1.07, "feet"),
  3039. name: "Hand",
  3040. image: {
  3041. source: "./media/characters/shingo/hand.svg"
  3042. }
  3043. },
  3044. frontAlt: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Alt)",
  3048. image: {
  3049. source: "./media/characters/shingo/front-alt.svg",
  3050. extra: 3511 / 3338,
  3051. bottom: 0.005
  3052. }
  3053. },
  3054. frontAlt2: {
  3055. height: math.unit(6, "feet"),
  3056. weight: math.unit(75, "kg"),
  3057. name: "Front (Alt 2)",
  3058. image: {
  3059. source: "./media/characters/shingo/front-alt-2.svg",
  3060. extra: 706/681,
  3061. bottom: 11/717
  3062. }
  3063. },
  3064. pawAlt: {
  3065. height: math.unit(1, "feet"),
  3066. name: "Paw (Alt)",
  3067. image: {
  3068. source: "./media/characters/shingo/paw-alt.svg"
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(6, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(108, "feet")
  3085. },
  3086. {
  3087. name: "Macro+",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3094. {
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/aigey/side.svg"
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(200, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(100, "miles")
  3113. },
  3114. ]
  3115. )
  3116. )
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(5 + 5 / 12, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/natasha/front.svg",
  3126. extra: 859 / 824,
  3127. bottom: 23 / 879.6
  3128. }
  3129. },
  3130. frontNsfw: {
  3131. height: math.unit(5 + 5 / 12, "feet"),
  3132. weight: math.unit(75, "kg"),
  3133. name: "Front (NSFW)",
  3134. image: {
  3135. source: "./media/characters/natasha/front-nsfw.svg",
  3136. extra: 859 / 824,
  3137. bottom: 23 / 879.6
  3138. }
  3139. },
  3140. frontErect: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front (Erect)",
  3144. image: {
  3145. source: "./media/characters/natasha/front-erect.svg",
  3146. extra: 859 / 824,
  3147. bottom: 23 / 879.6
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/natasha/back.svg",
  3156. extra: 887.9 / 852.6,
  3157. bottom: 9.7 / 896.4
  3158. }
  3159. },
  3160. backAlt: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back (Alt)",
  3164. image: {
  3165. source: "./media/characters/natasha/back-alt.svg",
  3166. extra: 1236.7 / 1192,
  3167. bottom: 22.3 / 1258.2
  3168. }
  3169. },
  3170. dick: {
  3171. height: math.unit(1.772, "feet"),
  3172. name: "Dick",
  3173. image: {
  3174. source: "./media/characters/natasha/dick.svg"
  3175. }
  3176. },
  3177. paw: {
  3178. height: math.unit(0.250, "meters"),
  3179. name: "Paw",
  3180. image: {
  3181. source: "./media/characters/natasha/paw.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 5 / 12, "feet")
  3189. },
  3190. {
  3191. name: "Large",
  3192. height: math.unit(12, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(100, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(260, "feet")
  3202. },
  3203. {
  3204. name: "Macro++",
  3205. height: math.unit(1, "mile")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/malik/front.svg"
  3218. }
  3219. },
  3220. side: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/malik/side.svg",
  3226. extra: 1.1539
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(75, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/malik/back.svg"
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(156, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1188, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/sefer/front.svg",
  3259. extra: 848 / 659,
  3260. bottom: 28.3 / 876.442
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/sefer/back.svg",
  3269. extra: 864 / 695,
  3270. bottom: 10 / 871
  3271. }
  3272. },
  3273. frontDressed: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/sefer/front-dressed.svg",
  3279. extra: 839 / 653,
  3280. bottom: 37.6 / 878
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(6, "feet"),
  3288. default: true
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3294. {
  3295. body: {
  3296. height: math.unit(2.2428, "meter"),
  3297. weight: math.unit(124.738, "kg"),
  3298. name: "Body",
  3299. image: {
  3300. extra: 1225 / 1050,
  3301. source: "./media/characters/north/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Micro",
  3308. height: math.unit(4, "inches")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(63, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(101, "miles"),
  3317. default: true
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3323. {
  3324. angled: {
  3325. height: math.unit(4, "meter"),
  3326. weight: math.unit(150, "kg"),
  3327. name: "Angled",
  3328. image: {
  3329. source: "./media/characters/talan/angled-sfw.svg",
  3330. bottom: 29 / 3734
  3331. }
  3332. },
  3333. angledNsfw: {
  3334. height: math.unit(4, "meter"),
  3335. weight: math.unit(150, "kg"),
  3336. name: "Angled (NSFW)",
  3337. image: {
  3338. source: "./media/characters/talan/angled-nsfw.svg",
  3339. bottom: 29 / 3734
  3340. }
  3341. },
  3342. frontNsfw: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Front (NSFW)",
  3346. image: {
  3347. source: "./media/characters/talan/front-nsfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. sideNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Side (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/side-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/talan/back.svg"
  3366. }
  3367. },
  3368. dickBottom: {
  3369. height: math.unit(0.621, "meter"),
  3370. name: "Dick (Bottom)",
  3371. image: {
  3372. source: "./media/characters/talan/dick-bottom.svg"
  3373. }
  3374. },
  3375. dickTop: {
  3376. height: math.unit(0.621, "meter"),
  3377. name: "Dick (Top)",
  3378. image: {
  3379. source: "./media/characters/talan/dick-top.svg"
  3380. }
  3381. },
  3382. dickSide: {
  3383. height: math.unit(0.305, "meter"),
  3384. name: "Dick (Side)",
  3385. image: {
  3386. source: "./media/characters/talan/dick-side.svg"
  3387. }
  3388. },
  3389. dickFront: {
  3390. height: math.unit(0.305, "meter"),
  3391. name: "Dick (Front)",
  3392. image: {
  3393. source: "./media/characters/talan/dick-front.svg"
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(4, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(100, "meters")
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(2, "miles"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5000, "miles")
  3414. },
  3415. {
  3416. name: "Teramacro",
  3417. height: math.unit(100, "parsecs")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt.svg"
  3438. }
  3439. },
  3440. frontAlt2: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt 2)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(9, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Large",
  3457. height: math.unit(25, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(0.25, "miles")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3471. {
  3472. side: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(140, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/sosha/side.svg",
  3478. bottom: 0.042
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(12, "feet"),
  3486. default: true
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(5 + 5 / 12, "feet"),
  3495. weight: math.unit(170, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/runnola/side.svg",
  3499. extra: 741 / 448,
  3500. bottom: 0.05
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(3, "feet")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(50, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/kurribird/front.svg",
  3529. bottom: 0.015
  3530. }
  3531. },
  3532. frontAlt: {
  3533. height: math.unit(1.5, "meter"),
  3534. weight: math.unit(50, "kg"),
  3535. name: "Front (Alt)",
  3536. image: {
  3537. source: "./media/characters/kurribird/front-alt.svg",
  3538. extra: 1.45
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(7, "feet")
  3546. },
  3547. {
  3548. name: "Big",
  3549. height: math.unit(12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(2, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(80, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/elbial/front.svg",
  3571. extra: 1643 / 1556,
  3572. bottom: 60.2 / 1696
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/elbial/side.svg",
  3581. extra: 1601/1528,
  3582. bottom: 97/1698
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(80, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/elbial/back.svg",
  3591. extra: 1653/1569,
  3592. bottom: 20/1673
  3593. }
  3594. },
  3595. frontDressed: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front (Dressed)",
  3599. image: {
  3600. source: "./media/characters/elbial/front-dressed.svg",
  3601. extra: 1638/1569,
  3602. bottom: 70/1708
  3603. }
  3604. },
  3605. genitals: {
  3606. height: math.unit(2 / 3.367, "meter"),
  3607. name: "Genitals",
  3608. image: {
  3609. source: "./media/characters/elbial/genitals.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Large",
  3616. height: math.unit(100, "feet")
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(500, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(10, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(25000, "miles")
  3630. },
  3631. {
  3632. name: "Full-Size",
  3633. height: math.unit(8000000, "gigaparsecs")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(60, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/noah/front.svg"
  3646. }
  3647. },
  3648. talons: {
  3649. height: math.unit(0.315, "meter"),
  3650. name: "Talons",
  3651. image: {
  3652. source: "./media/characters/noah/talons.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(50, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(750, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(50, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(100000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(3000000000, "miles")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/natalya/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natalya/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(5, "miles")
  3709. },
  3710. {
  3711. name: "Full-Size",
  3712. height: math.unit(600, "kiloparsecs")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(50, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/erestrebah/front.svg",
  3725. extra: 1262/1162,
  3726. bottom: 96/1358
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(50, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/erestrebah/back.svg",
  3735. extra: 1257/1139,
  3736. bottom: 13/1270
  3737. }
  3738. },
  3739. wing: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(50, "kg"),
  3742. name: "Wing",
  3743. image: {
  3744. source: "./media/characters/erestrebah/wing.svg",
  3745. extra: 1262/1162,
  3746. bottom: 96/1358
  3747. }
  3748. },
  3749. mouth: {
  3750. height: math.unit(0.39, "feet"),
  3751. name: "Mouth",
  3752. image: {
  3753. source: "./media/characters/erestrebah/mouth.svg"
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(10, "feet")
  3761. },
  3762. {
  3763. name: "Large",
  3764. height: math.unit(50, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(300, "feet")
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(750, "feet")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(3, "miles")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(80, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/jennifer/front.svg",
  3790. bottom: 0.11,
  3791. extra: 1.16
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/jennifer/front-alt.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Canon Height",
  3806. height: math.unit(120, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(300, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(20000, "feet")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/kalista/front.svg",
  3828. extra: 1314/1145,
  3829. bottom: 101/1415
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/kalista/back.svg",
  3838. extra: 1366 / 1156,
  3839. bottom: 33.9 / 1362.78
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Uncomfortably Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Small",
  3850. height: math.unit(30, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(100, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(2000, "feet")
  3860. },
  3861. {
  3862. name: "True Form",
  3863. height: math.unit(8924, "miles")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/ggv/front.svg"
  3876. }
  3877. },
  3878. side: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/ggv/side.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Extremely Puny",
  3890. height: math.unit(9 + 5 / 12, "feet")
  3891. },
  3892. {
  3893. name: "Horribly Small",
  3894. height: math.unit(47.7, "miles"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Reasonably Sized",
  3899. height: math.unit(25000, "parsecs")
  3900. },
  3901. {
  3902. name: "Slightly Uncompressed",
  3903. height: math.unit(7.77e31, "parsecs")
  3904. },
  3905. {
  3906. name: "Omniversal",
  3907. height: math.unit(1e300, "meters")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/napalm/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/napalm/back.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Standard",
  3934. height: math.unit(55, "feet"),
  3935. default: true
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(7 + 5 / 6, "feet"),
  3944. weight: math.unit(325, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/asana/front.svg",
  3948. extra: 1133 / 1060,
  3949. bottom: 15.2 / 1148.6
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(7 + 5 / 6, "feet"),
  3954. weight: math.unit(325, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/asana/back.svg",
  3958. extra: 1114 / 1043,
  3959. bottom: 5 / 1120
  3960. }
  3961. },
  3962. dressedDark: {
  3963. height: math.unit(7 + 5 / 6, "feet"),
  3964. weight: math.unit(325, "lb"),
  3965. name: "Dressed (Dark)",
  3966. image: {
  3967. source: "./media/characters/asana/dressed-dark.svg",
  3968. extra: 1133 / 1060,
  3969. bottom: 15.2 / 1148.6
  3970. }
  3971. },
  3972. dressedLight: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Dressed (Light)",
  3976. image: {
  3977. source: "./media/characters/asana/dressed-light.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Standard",
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Large",
  3991. height: math.unit(10, "meters")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(2500, "meters")
  3996. },
  3997. {
  3998. name: "Megamacro",
  3999. height: math.unit(5e6, "meters")
  4000. },
  4001. {
  4002. name: "Examacro",
  4003. height: math.unit(5e12, "lightyears")
  4004. },
  4005. {
  4006. name: "Max Size",
  4007. height: math.unit(1e31, "lightyears")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ebony/front.svg",
  4020. bottom: 0.03,
  4021. extra: 1045 / 810 + 0.03
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/ebony/side.svg",
  4030. bottom: 0.03,
  4031. extra: 1045 / 810 + 0.03
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(60, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/ebony/back.svg",
  4040. bottom: 0.01,
  4041. extra: 1045 / 810 + 0.01
  4042. }
  4043. },
  4044. },
  4045. [
  4046. // TODO check why I did this lol
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(200, "feet")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(13000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mountain/front.svg",
  4071. extra: 972 / 955,
  4072. bottom: 64 / 1036.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/mountain/back.svg",
  4081. extra: 970 / 950,
  4082. bottom: 28.25 / 999
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Large",
  4089. height: math.unit(20, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "meters")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(10000, "km"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Examacro",
  4102. height: math.unit(10e9, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(8, "feet"),
  4111. weight: math.unit(500, "lb"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/rick/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(8, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(5, "km")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/ona/front.svg"
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/ona/front-alt.svg"
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/ona/back.svg"
  4155. }
  4156. },
  4157. foot: {
  4158. height: math.unit(1.1, "feet"),
  4159. name: "Foot",
  4160. image: {
  4161. source: "./media/characters/ona/foot.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(70, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(681818, "miles")
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(3800000, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(12, "feet"),
  4186. weight: math.unit(3000, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/mech/front.svg",
  4190. extra: 2900 / 2770,
  4191. bottom: 110 / 3010
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(12, "feet"),
  4196. weight: math.unit(3000, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/mech/back.svg",
  4200. extra: 3011 / 2890,
  4201. bottom: 94 / 3105
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(3.07, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/mech/maw.svg"
  4209. }
  4210. },
  4211. head: {
  4212. height: math.unit(2.82, "feet"),
  4213. name: "Head",
  4214. image: {
  4215. source: "./media/characters/mech/head.svg"
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.43, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/mech/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(300, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(1500, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(1.3, "meter"),
  4247. weight: math.unit(30, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gregory/front.svg",
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.3, "meter"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(20, "meter")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2.8, "meter"),
  4271. weight: math.unit(200, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/elory/front.svg",
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(2.8, "meter"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(38, "meter")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(470, "feet"),
  4295. weight: math.unit(924, "tons"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/angelpatamon/front.svg",
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(470, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Deity Size I",
  4310. height: math.unit(28651.2, "km")
  4311. },
  4312. {
  4313. name: "Deity Size II",
  4314. height: math.unit(171907.2, "km")
  4315. }
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4320. {
  4321. side: {
  4322. height: math.unit(7.2, "meter"),
  4323. weight: math.unit(8.2, "tons"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/cryae/side.svg",
  4327. extra: 3500 / 1500
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(7.2, "meter"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/xera/front.svg",
  4348. extra: 2377 / 1972,
  4349. bottom: 75.5 / 2452
  4350. }
  4351. },
  4352. side: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(175, "lb"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/xera/side.svg",
  4358. extra: 2345 / 2019,
  4359. bottom: 39.7 / 2384
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(175, "lb"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/xera/back.svg",
  4368. extra: 2095 / 1984,
  4369. bottom: 67 / 2166
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Small",
  4376. height: math.unit(10, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(10, "km")
  4386. },
  4387. {
  4388. name: "Gigamacro",
  4389. height: math.unit(25000, "km")
  4390. },
  4391. {
  4392. name: "Teramacro",
  4393. height: math.unit(3e6, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/nebula/front.svg",
  4406. extra: 2566 / 2362,
  4407. bottom: 81 / 2644
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(4.5, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(1500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(150, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(27000, "km")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(225, "lb"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/abysgar/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Small",
  4446. height: math.unit(4.5, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(1250, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(125, "km")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(26000, "km")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(180, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/yakuz/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Small",
  4478. height: math.unit(5, "meters")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(1500, "meters"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(200, "km")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(100000, "km")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(175, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mirova/front.svg",
  4504. extra: 3334 / 3071,
  4505. bottom: 42 / 3375.6
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Small",
  4512. height: math.unit(5, "meters")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(900, "meters"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(135, "km")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(20000, "km")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4531. {
  4532. side: {
  4533. height: math.unit(28.35, "feet"),
  4534. weight: math.unit(99.75, "tons"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/asana-mech/side.svg",
  4538. extra: 923 / 699,
  4539. bottom: 50 / 975
  4540. }
  4541. },
  4542. chaingun: {
  4543. height: math.unit(7, "feet"),
  4544. weight: math.unit(2400, "lb"),
  4545. name: "Chaingun",
  4546. image: {
  4547. source: "./media/characters/asana-mech/chaingun.svg"
  4548. }
  4549. },
  4550. laser: {
  4551. height: math.unit(7.12, "feet"),
  4552. weight: math.unit(2000, "lb"),
  4553. name: "Laser",
  4554. image: {
  4555. source: "./media/characters/asana-mech/laser.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(28.35, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(2500, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(25, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(6e8, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(5, "meters"),
  4584. weight: math.unit(1000, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/asche/front.svg",
  4588. extra: 1258 / 1190,
  4589. bottom: 47 / 1305
  4590. }
  4591. },
  4592. frontUnderwear: {
  4593. height: math.unit(5, "meters"),
  4594. weight: math.unit(1000, "kg"),
  4595. name: "Front (Underwear)",
  4596. image: {
  4597. source: "./media/characters/asche/front-underwear.svg",
  4598. extra: 1258 / 1190,
  4599. bottom: 47 / 1305
  4600. }
  4601. },
  4602. frontDressed: {
  4603. height: math.unit(5, "meters"),
  4604. weight: math.unit(1000, "kg"),
  4605. name: "Front (Dressed)",
  4606. image: {
  4607. source: "./media/characters/asche/front-dressed.svg",
  4608. extra: 1258 / 1190,
  4609. bottom: 47 / 1305
  4610. }
  4611. },
  4612. frontArmor: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front (Armored)",
  4616. image: {
  4617. source: "./media/characters/asche/front-armored.svg",
  4618. extra: 1374 / 1308,
  4619. bottom: 23 / 1397
  4620. }
  4621. },
  4622. mp724: {
  4623. height: math.unit(0.96, "meters"),
  4624. weight: math.unit(38, "kg"),
  4625. name: "H&K MP724",
  4626. image: {
  4627. source: "./media/characters/asche/h&k-mp724.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asche/side.svg",
  4636. extra: 1717 / 1609,
  4637. bottom: 0.005
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/asche/back.svg",
  4646. extra: 1570 / 1501
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "DEFCON 5",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "DEFCON 4",
  4657. height: math.unit(500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "DEFCON 3",
  4662. height: math.unit(5, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 2",
  4666. height: math.unit(500, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 1",
  4670. height: math.unit(500000, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 0",
  4674. height: math.unit(3, "gigaparsecs")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gale/front.svg"
  4687. }
  4688. },
  4689. frontAlt1: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 1)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-1.svg"
  4695. }
  4696. },
  4697. frontAlt2: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 2)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-2.svg"
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(150, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5 + 10/12, "feet"),
  4727. weight: math.unit(67, "kg"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/draylen/front.svg",
  4731. extra: 832/777,
  4732. bottom: 85/917
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(5 + 10/12, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/chez/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/chez/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(7 + 9 / 12, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "God King",
  4776. height: math.unit(9750000, "meters")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(275, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/kaylum/front.svg",
  4789. bottom: 0.01,
  4790. extra: 1166 / 1031
  4791. }
  4792. },
  4793. frontWingless: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(275, "lbs"),
  4796. name: "Front (Wingless)",
  4797. image: {
  4798. source: "./media/characters/kaylum/front-wingless.svg",
  4799. bottom: 0.01,
  4800. extra: 1117 / 1031
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3.05, "meters")
  4808. },
  4809. {
  4810. name: "Master",
  4811. height: math.unit(5.5, "meters")
  4812. },
  4813. {
  4814. name: "Rampage",
  4815. height: math.unit(19, "meters")
  4816. },
  4817. {
  4818. name: "Macro Lite",
  4819. height: math.unit(37, "meters")
  4820. },
  4821. {
  4822. name: "Hyper Predator",
  4823. height: math.unit(61, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(138, "meters"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(150, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/geta/front.svg"
  4841. }
  4842. }
  4843. },
  4844. [
  4845. {
  4846. name: "Micro",
  4847. height: math.unit(3, "inches"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(5 + 5 / 12, "feet")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(300, "lbs"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/tyrnn/front.svg"
  4865. }
  4866. }
  4867. },
  4868. [
  4869. {
  4870. name: "Main Height",
  4871. height: math.unit(355, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Fave. Height",
  4876. height: math.unit(2400, "feet")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(300, "lbs"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/appledectomy/front.svg"
  4889. }
  4890. }
  4891. },
  4892. [
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(2500, "feet")
  4896. },
  4897. {
  4898. name: "Megamacro",
  4899. height: math.unit(50, "miles"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(5000, "miles")
  4905. },
  4906. {
  4907. name: "Teramacro",
  4908. height: math.unit(250000, "miles")
  4909. },
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(200, "lbs"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/vulpes/front.svg",
  4921. extra: 573 / 543,
  4922. bottom: 0.033
  4923. }
  4924. },
  4925. side: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(200, "lbs"),
  4928. name: "Side",
  4929. image: {
  4930. source: "./media/characters/vulpes/side.svg",
  4931. extra: 577 / 549,
  4932. bottom: 11 / 588
  4933. }
  4934. },
  4935. back: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(200, "lbs"),
  4938. name: "Back",
  4939. image: {
  4940. source: "./media/characters/vulpes/back.svg",
  4941. extra: 573 / 549,
  4942. bottom: 20 / 593
  4943. }
  4944. },
  4945. feet: {
  4946. height: math.unit(1.276, "feet"),
  4947. name: "Feet",
  4948. image: {
  4949. source: "./media/characters/vulpes/feet.svg"
  4950. }
  4951. },
  4952. maw: {
  4953. height: math.unit(1.18, "feet"),
  4954. name: "Maw",
  4955. image: {
  4956. source: "./media/characters/vulpes/maw.svg"
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Micro",
  4963. height: math.unit(2, "inches")
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(6.3, "feet")
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(850, "feet")
  4972. },
  4973. {
  4974. name: "Megamacro",
  4975. height: math.unit(7500, "feet"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Gigamacro",
  4980. height: math.unit(570000, "miles")
  4981. }
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4986. {
  4987. front: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(210, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/rain-fallen/front.svg"
  4993. }
  4994. },
  4995. side: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(210, "lbs"),
  4998. name: "Side",
  4999. image: {
  5000. source: "./media/characters/rain-fallen/side.svg"
  5001. }
  5002. },
  5003. back: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(210, "lbs"),
  5006. name: "Back",
  5007. image: {
  5008. source: "./media/characters/rain-fallen/back.svg"
  5009. }
  5010. },
  5011. feral: {
  5012. height: math.unit(9, "feet"),
  5013. weight: math.unit(700, "lbs"),
  5014. name: "Feral",
  5015. image: {
  5016. source: "./media/characters/rain-fallen/feral.svg"
  5017. }
  5018. },
  5019. },
  5020. [
  5021. {
  5022. name: "Meddling with Mortals",
  5023. height: math.unit(8 + 8/12, "feet")
  5024. },
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(5, "meter")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(150, "meter"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Megamacro",
  5036. height: math.unit(278e6, "meter")
  5037. },
  5038. {
  5039. name: "Gigamacro",
  5040. height: math.unit(2e9, "meter")
  5041. },
  5042. {
  5043. name: "Teramacro",
  5044. height: math.unit(8e12, "meter")
  5045. },
  5046. {
  5047. name: "Devourer",
  5048. height: math.unit(14, "zettameters")
  5049. },
  5050. {
  5051. name: "Scarlet King",
  5052. height: math.unit(18, "yottameters")
  5053. },
  5054. {
  5055. name: "Void",
  5056. height: math.unit(1e88, "yottameters")
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5062. {
  5063. standing: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(180, "lbs"),
  5066. name: "Standing",
  5067. image: {
  5068. source: "./media/characters/zaakira/standing.svg",
  5069. extra: 1599/1504,
  5070. bottom: 39/1638
  5071. }
  5072. },
  5073. laying: {
  5074. height: math.unit(3, "feet"),
  5075. weight: math.unit(180, "lbs"),
  5076. name: "Laying",
  5077. image: {
  5078. source: "./media/characters/zaakira/laying.svg"
  5079. }
  5080. },
  5081. },
  5082. [
  5083. {
  5084. name: "Normal",
  5085. height: math.unit(12, "feet")
  5086. },
  5087. {
  5088. name: "Macro",
  5089. height: math.unit(279, "feet"),
  5090. default: true
  5091. }
  5092. ]
  5093. ))
  5094. characterMakers.push(() => makeCharacter(
  5095. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5096. {
  5097. femSfw: {
  5098. height: math.unit(8, "feet"),
  5099. weight: math.unit(350, "lb"),
  5100. name: "Fem",
  5101. image: {
  5102. source: "./media/characters/sigvald/fem-sfw.svg",
  5103. extra: 182 / 164,
  5104. bottom: 8.7 / 190.5
  5105. }
  5106. },
  5107. femNsfw: {
  5108. height: math.unit(8, "feet"),
  5109. weight: math.unit(350, "lb"),
  5110. name: "Fem (NSFW)",
  5111. image: {
  5112. source: "./media/characters/sigvald/fem-nsfw.svg",
  5113. extra: 182 / 164,
  5114. bottom: 8.7 / 190.5
  5115. }
  5116. },
  5117. maleNsfw: {
  5118. height: math.unit(8, "feet"),
  5119. weight: math.unit(350, "lb"),
  5120. name: "Male (NSFW)",
  5121. image: {
  5122. source: "./media/characters/sigvald/male-nsfw.svg",
  5123. extra: 182 / 164,
  5124. bottom: 8.7 / 190.5
  5125. }
  5126. },
  5127. hermNsfw: {
  5128. height: math.unit(8, "feet"),
  5129. weight: math.unit(350, "lb"),
  5130. name: "Herm (NSFW)",
  5131. image: {
  5132. source: "./media/characters/sigvald/herm-nsfw.svg",
  5133. extra: 182 / 164,
  5134. bottom: 8.7 / 190.5
  5135. }
  5136. },
  5137. dick: {
  5138. height: math.unit(2.36, "feet"),
  5139. name: "Dick",
  5140. image: {
  5141. source: "./media/characters/sigvald/dick.svg"
  5142. }
  5143. },
  5144. eye: {
  5145. height: math.unit(0.31, "feet"),
  5146. name: "Eye",
  5147. image: {
  5148. source: "./media/characters/sigvald/eye.svg"
  5149. }
  5150. },
  5151. mouth: {
  5152. height: math.unit(0.92, "feet"),
  5153. name: "Mouth",
  5154. image: {
  5155. source: "./media/characters/sigvald/mouth.svg"
  5156. }
  5157. },
  5158. paws: {
  5159. height: math.unit(2.2, "feet"),
  5160. name: "Paws",
  5161. image: {
  5162. source: "./media/characters/sigvald/paws.svg"
  5163. }
  5164. }
  5165. },
  5166. [
  5167. {
  5168. name: "Normal",
  5169. height: math.unit(8, "feet")
  5170. },
  5171. {
  5172. name: "Large",
  5173. height: math.unit(12, "feet")
  5174. },
  5175. {
  5176. name: "Larger",
  5177. height: math.unit(20, "feet")
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(150, "feet")
  5182. },
  5183. {
  5184. name: "Macro+",
  5185. height: math.unit(200, "feet"),
  5186. default: true
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5192. {
  5193. side: {
  5194. height: math.unit(12, "feet"),
  5195. weight: math.unit(2000, "kg"),
  5196. name: "Side",
  5197. image: {
  5198. source: "./media/characters/scott/side.svg",
  5199. extra: 754 / 724,
  5200. bottom: 0.069
  5201. }
  5202. },
  5203. upright: {
  5204. height: math.unit(12, "feet"),
  5205. weight: math.unit(2000, "kg"),
  5206. name: "Upright",
  5207. image: {
  5208. source: "./media/characters/scott/upright.svg",
  5209. extra: 3881 / 3722,
  5210. bottom: 0.05
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(12, "feet"),
  5218. default: true
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5224. {
  5225. side: {
  5226. height: math.unit(8, "meters"),
  5227. weight: math.unit(84755, "lbs"),
  5228. name: "Side",
  5229. image: {
  5230. source: "./media/characters/tobias/side.svg",
  5231. extra: 1474 / 1096,
  5232. bottom: 38.9 / 1513.1235
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(8, "meters"),
  5240. default: true
  5241. },
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5246. {
  5247. front: {
  5248. height: math.unit(5.5, "feet"),
  5249. weight: math.unit(400, "lbs"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/kieran/front.svg",
  5253. extra: 2694 / 2364,
  5254. bottom: 217 / 2908
  5255. }
  5256. },
  5257. side: {
  5258. height: math.unit(5.5, "feet"),
  5259. weight: math.unit(400, "lbs"),
  5260. name: "Side",
  5261. image: {
  5262. source: "./media/characters/kieran/side.svg",
  5263. extra: 875 / 777,
  5264. bottom: 84.6 / 959
  5265. }
  5266. },
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(5.5, "feet"),
  5272. default: true
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5278. {
  5279. side: {
  5280. height: math.unit(2, "meters"),
  5281. weight: math.unit(70, "kg"),
  5282. name: "Side",
  5283. image: {
  5284. source: "./media/characters/sanya/side.svg",
  5285. bottom: 0.02,
  5286. extra: 1.02
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Small",
  5293. height: math.unit(2, "meters")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(3, "meters")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(16, "meters"),
  5302. default: true
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(2, "meters"),
  5311. weight: math.unit(120, "kg"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/miranda/front.svg",
  5315. extra: 195 / 185,
  5316. bottom: 10.9 / 206.5
  5317. }
  5318. },
  5319. back: {
  5320. height: math.unit(2, "meters"),
  5321. weight: math.unit(120, "kg"),
  5322. name: "Back",
  5323. image: {
  5324. source: "./media/characters/miranda/back.svg",
  5325. extra: 201 / 193,
  5326. bottom: 2.3 / 203.7
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(10, "feet"),
  5334. default: true
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "James", species: ["deer"], tags: ["anthro"] },
  5340. {
  5341. side: {
  5342. height: math.unit(2, "meters"),
  5343. weight: math.unit(100, "kg"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/james/front.svg",
  5347. extra: 10 / 8.5
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(8.5, "feet"),
  5355. default: true
  5356. }
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5361. {
  5362. side: {
  5363. height: math.unit(9.5, "feet"),
  5364. weight: math.unit(2500, "lbs"),
  5365. name: "Side",
  5366. image: {
  5367. source: "./media/characters/heather/side.svg"
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(9.5, "feet"),
  5375. default: true
  5376. }
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5381. {
  5382. side: {
  5383. height: math.unit(6.5, "feet"),
  5384. weight: math.unit(400, "lbs"),
  5385. name: "Side",
  5386. image: {
  5387. source: "./media/characters/lukas/side.svg",
  5388. extra: 7.25 / 6.5
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(6.5, "feet"),
  5396. default: true
  5397. }
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5402. {
  5403. side: {
  5404. height: math.unit(5, "feet"),
  5405. weight: math.unit(3000, "lbs"),
  5406. name: "Side",
  5407. image: {
  5408. source: "./media/characters/louise/side.svg"
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(5, "feet"),
  5416. default: true
  5417. }
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5422. {
  5423. side: {
  5424. height: math.unit(6, "feet"),
  5425. weight: math.unit(150, "lbs"),
  5426. name: "Side",
  5427. image: {
  5428. source: "./media/characters/ramona/side.svg",
  5429. extra: 871/854,
  5430. bottom: 41/912
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(5.3, "meters"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(20, "stories")
  5443. },
  5444. {
  5445. name: "Macro+",
  5446. height: math.unit(50, "stories")
  5447. },
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5452. {
  5453. standing: {
  5454. height: math.unit(5.75, "feet"),
  5455. weight: math.unit(160, "lbs"),
  5456. name: "Standing",
  5457. image: {
  5458. source: "./media/characters/deerpuff/standing.svg",
  5459. extra: 682 / 624
  5460. }
  5461. },
  5462. sitting: {
  5463. height: math.unit(5.75 / 1.79, "feet"),
  5464. weight: math.unit(160, "lbs"),
  5465. name: "Sitting",
  5466. image: {
  5467. source: "./media/characters/deerpuff/sitting.svg",
  5468. bottom: 44 / 400,
  5469. extra: 1
  5470. }
  5471. },
  5472. taurLaying: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(400, "lbs"),
  5475. name: "Taur (Laying)",
  5476. image: {
  5477. source: "./media/characters/deerpuff/taur-laying.svg"
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Puffball",
  5484. height: math.unit(6, "inches")
  5485. },
  5486. {
  5487. name: "Normalpuff",
  5488. height: math.unit(5.75, "feet")
  5489. },
  5490. {
  5491. name: "Macropuff",
  5492. height: math.unit(1500, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Megapuff",
  5497. height: math.unit(500, "miles")
  5498. },
  5499. {
  5500. name: "Gigapuff",
  5501. height: math.unit(250000, "miles")
  5502. },
  5503. {
  5504. name: "Omegapuff",
  5505. height: math.unit(1000, "lightyears")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5511. {
  5512. stomping: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(170, "lbs"),
  5515. name: "Stomping",
  5516. image: {
  5517. source: "./media/characters/vivian/stomping.svg"
  5518. }
  5519. },
  5520. sitting: {
  5521. height: math.unit(6 / 1.75, "feet"),
  5522. weight: math.unit(170, "lbs"),
  5523. name: "Sitting",
  5524. image: {
  5525. source: "./media/characters/vivian/sitting.svg",
  5526. bottom: 1 / 6.4,
  5527. extra: 1,
  5528. }
  5529. },
  5530. },
  5531. [
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(7, "feet"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "Macro",
  5539. height: math.unit(10, "stories")
  5540. },
  5541. {
  5542. name: "Macro+",
  5543. height: math.unit(30, "stories")
  5544. },
  5545. {
  5546. name: "Megamacro",
  5547. height: math.unit(10, "miles")
  5548. },
  5549. {
  5550. name: "Megamacro+",
  5551. height: math.unit(2750000, "meters")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(160, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/prince/front.svg",
  5564. extra: 3400 / 3000
  5565. }
  5566. },
  5567. jumping: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(160, "lbs"),
  5570. name: "Jumping",
  5571. image: {
  5572. source: "./media/characters/prince/jump.svg",
  5573. extra: 2555 / 2134
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(7.75, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Not cute",
  5585. height: math.unit(17, "feet")
  5586. },
  5587. {
  5588. name: "I said NOT",
  5589. height: math.unit(91, "feet")
  5590. },
  5591. {
  5592. name: "Please stop",
  5593. height: math.unit(560, "feet")
  5594. },
  5595. {
  5596. name: "What have you done",
  5597. height: math.unit(2200, "feet")
  5598. },
  5599. {
  5600. name: "Deer God",
  5601. height: math.unit(3.6, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5607. {
  5608. standing: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(300, "lbs"),
  5611. name: "Standing",
  5612. image: {
  5613. source: "./media/characters/psymon/standing.svg",
  5614. extra: 1888 / 1810,
  5615. bottom: 0.05
  5616. }
  5617. },
  5618. slithering: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(300, "lbs"),
  5621. name: "Slithering",
  5622. image: {
  5623. source: "./media/characters/psymon/slithering.svg",
  5624. extra: 1330 / 1224
  5625. }
  5626. },
  5627. slitheringAlt: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(300, "lbs"),
  5630. name: "Slithering (Alt)",
  5631. image: {
  5632. source: "./media/characters/psymon/slithering-alt.svg",
  5633. extra: 1330 / 1224
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(11.25, "feet"),
  5641. default: true
  5642. },
  5643. {
  5644. name: "Large",
  5645. height: math.unit(27, "feet")
  5646. },
  5647. {
  5648. name: "Giant",
  5649. height: math.unit(87, "feet")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(365, "feet")
  5654. },
  5655. {
  5656. name: "Megamacro",
  5657. height: math.unit(3, "miles")
  5658. },
  5659. {
  5660. name: "World Serpent",
  5661. height: math.unit(8000, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(180, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/daimos/front.svg",
  5674. extra: 4160 / 3897,
  5675. bottom: 0.021
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(8, "feet"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Big Dog",
  5687. height: math.unit(22, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(127, "feet")
  5692. },
  5693. {
  5694. name: "Megamacro",
  5695. height: math.unit(3600, "feet")
  5696. },
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5701. {
  5702. side: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(180, "lbs"),
  5705. name: "Side",
  5706. image: {
  5707. source: "./media/characters/blake/side.svg",
  5708. extra: 1212 / 1120,
  5709. bottom: 0.05
  5710. }
  5711. },
  5712. crouched: {
  5713. height: math.unit(6 * 0.57, "feet"),
  5714. weight: math.unit(180, "lbs"),
  5715. name: "Crouched",
  5716. image: {
  5717. source: "./media/characters/blake/crouched.svg",
  5718. extra: 840 / 587,
  5719. bottom: 0.04
  5720. }
  5721. },
  5722. bent: {
  5723. height: math.unit(6 * 0.75, "feet"),
  5724. weight: math.unit(180, "lbs"),
  5725. name: "Bent",
  5726. image: {
  5727. source: "./media/characters/blake/bent.svg",
  5728. extra: 592 / 544,
  5729. bottom: 0.035
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(8 + 1 / 6, "feet"),
  5737. default: true
  5738. },
  5739. {
  5740. name: "Big Backside",
  5741. height: math.unit(37, "feet")
  5742. },
  5743. {
  5744. name: "Subway Shredder",
  5745. height: math.unit(72, "feet")
  5746. },
  5747. {
  5748. name: "City Carver",
  5749. height: math.unit(1675, "feet")
  5750. },
  5751. {
  5752. name: "Tectonic Tweaker",
  5753. height: math.unit(2300, "miles")
  5754. },
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5759. {
  5760. front: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(180, "lbs"),
  5763. name: "Front",
  5764. image: {
  5765. source: "./media/characters/guisetto/front.svg",
  5766. extra: 856 / 817,
  5767. bottom: 0.06
  5768. }
  5769. },
  5770. airborne: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(180, "lbs"),
  5773. name: "Airborne",
  5774. image: {
  5775. source: "./media/characters/guisetto/airborne.svg",
  5776. extra: 584 / 525
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(10 + 11 / 12, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Large",
  5788. height: math.unit(35, "feet")
  5789. },
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(475, "feet")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(180, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/luxor/front.svg",
  5805. extra: 2940 / 2152
  5806. }
  5807. },
  5808. back: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(180, "lbs"),
  5811. name: "Back",
  5812. image: {
  5813. source: "./media/characters/luxor/back.svg",
  5814. extra: 1083 / 960
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(5 + 5 / 6, "feet"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Lamp",
  5826. height: math.unit(50, "feet")
  5827. },
  5828. {
  5829. name: "Lämp",
  5830. height: math.unit(300, "feet")
  5831. },
  5832. {
  5833. name: "The sun is a lamp",
  5834. height: math.unit(250000, "miles")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(50, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/huoyan/front.svg"
  5847. }
  5848. },
  5849. side: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(180, "lbs"),
  5852. name: "Side",
  5853. image: {
  5854. source: "./media/characters/huoyan/side.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Chef",
  5861. height: math.unit(9, "feet")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(65, "feet"),
  5866. default: true
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(780, "feet")
  5871. },
  5872. {
  5873. name: "Flaming Mountain",
  5874. height: math.unit(4.8, "miles")
  5875. },
  5876. {
  5877. name: "Celestial",
  5878. height: math.unit(765000, "miles")
  5879. },
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5884. {
  5885. front: {
  5886. height: math.unit(5 + 3 / 4, "feet"),
  5887. weight: math.unit(120, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/tails/front.svg"
  5891. }
  5892. }
  5893. },
  5894. [
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(5 + 3 / 4, "feet"),
  5898. default: true
  5899. }
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5904. {
  5905. front: {
  5906. height: math.unit(4, "feet"),
  5907. weight: math.unit(50, "lbs"),
  5908. name: "Front",
  5909. image: {
  5910. source: "./media/characters/rainy/front.svg"
  5911. }
  5912. }
  5913. },
  5914. [
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(800, "feet"),
  5918. default: true
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5924. {
  5925. front: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(150, "lbs"),
  5928. name: "Front",
  5929. image: {
  5930. source: "./media/characters/rainier/front.svg"
  5931. }
  5932. }
  5933. },
  5934. [
  5935. {
  5936. name: "Micro",
  5937. height: math.unit(2, "mm"),
  5938. default: true
  5939. }
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(8 + 4/12, "feet"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/andy-renard/front.svg",
  5950. extra: 1839/1726,
  5951. bottom: 134/1973
  5952. }
  5953. },
  5954. back: {
  5955. height: math.unit(8 + 4/12, "feet"),
  5956. name: "Back",
  5957. image: {
  5958. source: "./media/characters/andy-renard/back.svg",
  5959. extra: 1838/1710,
  5960. bottom: 105/1943
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Tall",
  5967. height: math.unit(8 + 4/12, "feet")
  5968. },
  5969. {
  5970. name: "Mini Macro",
  5971. height: math.unit(15, "feet"),
  5972. default: true
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(100, "feet")
  5977. },
  5978. {
  5979. name: "Mega Macro",
  5980. height: math.unit(1000, "feet")
  5981. },
  5982. {
  5983. name: "Giga Macro",
  5984. height: math.unit(10, "miles")
  5985. },
  5986. {
  5987. name: "God Macro",
  5988. height: math.unit(1, "multiverse")
  5989. },
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5994. {
  5995. front: {
  5996. height: math.unit(6, "feet"),
  5997. weight: math.unit(210, "lbs"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/cimmaron/front-sfw.svg",
  6001. extra: 701 / 676,
  6002. bottom: 0.046
  6003. }
  6004. },
  6005. back: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(210, "lbs"),
  6008. name: "Back",
  6009. image: {
  6010. source: "./media/characters/cimmaron/back-sfw.svg",
  6011. extra: 701 / 676,
  6012. bottom: 0.046
  6013. }
  6014. },
  6015. frontNsfw: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(210, "lbs"),
  6018. name: "Front (NSFW)",
  6019. image: {
  6020. source: "./media/characters/cimmaron/front-nsfw.svg",
  6021. extra: 701 / 676,
  6022. bottom: 0.046
  6023. }
  6024. },
  6025. backNsfw: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(210, "lbs"),
  6028. name: "Back (NSFW)",
  6029. image: {
  6030. source: "./media/characters/cimmaron/back-nsfw.svg",
  6031. extra: 701 / 676,
  6032. bottom: 0.046
  6033. }
  6034. },
  6035. dick: {
  6036. height: math.unit(1.714, "feet"),
  6037. name: "Dick",
  6038. image: {
  6039. source: "./media/characters/cimmaron/dick.svg"
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(6, "feet"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Macro Mayor",
  6051. height: math.unit(350, "meters")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(6, "feet"),
  6060. weight: math.unit(200, "lbs"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/akari/front.svg",
  6064. extra: 962 / 901,
  6065. bottom: 0.04
  6066. }
  6067. }
  6068. },
  6069. [
  6070. {
  6071. name: "Micro",
  6072. height: math.unit(5, "inches"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(7, "feet")
  6078. },
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6083. {
  6084. front: {
  6085. height: math.unit(6, "feet"),
  6086. weight: math.unit(140, "lbs"),
  6087. name: "Front",
  6088. image: {
  6089. source: "./media/characters/cynosura/front.svg",
  6090. extra: 896 / 847
  6091. }
  6092. },
  6093. back: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(140, "lbs"),
  6096. name: "Back",
  6097. image: {
  6098. source: "./media/characters/cynosura/back.svg",
  6099. extra: 1365 / 1250
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Micro",
  6106. height: math.unit(4, "inches")
  6107. },
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(5.75, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Tall",
  6115. height: math.unit(10, "feet")
  6116. },
  6117. {
  6118. name: "Big",
  6119. height: math.unit(20, "feet")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(50, "feet")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(13 + 2/12, "feet"),
  6132. weight: math.unit(800, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/gin/front.svg",
  6136. extra: 1312/1191,
  6137. bottom: 45/1357
  6138. }
  6139. },
  6140. mouth: {
  6141. height: math.unit(2.39 * 1.8, "feet"),
  6142. name: "Mouth",
  6143. image: {
  6144. source: "./media/characters/gin/mouth.svg"
  6145. }
  6146. },
  6147. hand: {
  6148. height: math.unit(1.57 * 2.19, "feet"),
  6149. name: "Hand",
  6150. image: {
  6151. source: "./media/characters/gin/hand.svg"
  6152. }
  6153. },
  6154. foot: {
  6155. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6156. name: "Foot",
  6157. image: {
  6158. source: "./media/characters/gin/foot.svg"
  6159. }
  6160. },
  6161. sole: {
  6162. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6163. name: "Sole",
  6164. image: {
  6165. source: "./media/characters/gin/sole.svg"
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Very Small",
  6172. height: math.unit(13 + 2 / 12, "feet")
  6173. },
  6174. {
  6175. name: "Micro",
  6176. height: math.unit(600, "miles")
  6177. },
  6178. {
  6179. name: "Regular",
  6180. height: math.unit(20, "earths"),
  6181. default: true
  6182. },
  6183. {
  6184. name: "Macro",
  6185. height: math.unit(2.2, "solarradii")
  6186. },
  6187. {
  6188. name: "Teramacro",
  6189. height: math.unit(1.2, "galaxies")
  6190. },
  6191. {
  6192. name: "Omegamacro",
  6193. height: math.unit(200, "universes")
  6194. },
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6199. {
  6200. front: {
  6201. height: math.unit(6 + 1 / 6, "feet"),
  6202. weight: math.unit(178, "lbs"),
  6203. name: "Front",
  6204. image: {
  6205. source: "./media/characters/guy/front.svg"
  6206. }
  6207. }
  6208. },
  6209. [
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(6 + 1 / 6, "feet"),
  6213. default: true
  6214. },
  6215. {
  6216. name: "Large",
  6217. height: math.unit(25 + 7 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(60 + 9 / 12, "feet")
  6222. },
  6223. {
  6224. name: "Macro+",
  6225. height: math.unit(246, "feet")
  6226. },
  6227. {
  6228. name: "Macro++",
  6229. height: math.unit(878, "feet")
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6235. {
  6236. front: {
  6237. height: math.unit(9, "feet"),
  6238. weight: math.unit(800, "lbs"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/tiberius/front.svg",
  6242. extra: 2295 / 2071
  6243. }
  6244. },
  6245. back: {
  6246. height: math.unit(9, "feet"),
  6247. weight: math.unit(800, "lbs"),
  6248. name: "Back",
  6249. image: {
  6250. source: "./media/characters/tiberius/back.svg",
  6251. extra: 2373 / 2160
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(9, "feet"),
  6259. default: true
  6260. }
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6265. {
  6266. front: {
  6267. height: math.unit(6, "feet"),
  6268. weight: math.unit(600, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/surgo/front.svg",
  6272. extra: 3591 / 2227
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(600, "lbs"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/surgo/back.svg",
  6281. extra: 3557 / 2228
  6282. }
  6283. },
  6284. laying: {
  6285. height: math.unit(6 * 0.85, "feet"),
  6286. weight: math.unit(600, "lbs"),
  6287. name: "Laying",
  6288. image: {
  6289. source: "./media/characters/surgo/laying.svg"
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(6, "feet"),
  6297. default: true
  6298. }
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6303. {
  6304. side: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(150, "lbs"),
  6307. name: "Side",
  6308. image: {
  6309. source: "./media/characters/cibus/side.svg",
  6310. extra: 800 / 400
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(6, "feet"),
  6318. default: true
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(240, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/nibbles/front.svg"
  6331. }
  6332. },
  6333. side: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(240, "lbs"),
  6336. name: "Side",
  6337. image: {
  6338. source: "./media/characters/nibbles/side.svg"
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(9, "feet"),
  6346. default: true
  6347. }
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6352. {
  6353. side: {
  6354. height: math.unit(5 + 1 / 6, "feet"),
  6355. weight: math.unit(130, "lbs"),
  6356. name: "Side",
  6357. image: {
  6358. source: "./media/characters/rikky/side.svg",
  6359. extra: 851 / 801
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(5 + 1 / 6, "feet")
  6367. },
  6368. {
  6369. name: "Macro",
  6370. height: math.unit(152, "feet"),
  6371. default: true
  6372. },
  6373. {
  6374. name: "Megamacro",
  6375. height: math.unit(7, "miles")
  6376. }
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6381. {
  6382. side: {
  6383. height: math.unit(370, "cm"),
  6384. weight: math.unit(350, "lbs"),
  6385. name: "Side",
  6386. image: {
  6387. source: "./media/characters/malfressa/side.svg"
  6388. }
  6389. },
  6390. walking: {
  6391. height: math.unit(370, "cm"),
  6392. weight: math.unit(350, "lbs"),
  6393. name: "Walking",
  6394. image: {
  6395. source: "./media/characters/malfressa/walking.svg"
  6396. }
  6397. },
  6398. feral: {
  6399. height: math.unit(2500, "cm"),
  6400. weight: math.unit(100000, "lbs"),
  6401. name: "Feral",
  6402. image: {
  6403. source: "./media/characters/malfressa/feral.svg",
  6404. extra: 2108 / 837,
  6405. bottom: 0.02
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(370, "cm")
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(300, "meters"),
  6417. default: true
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(6, "feet"),
  6426. weight: math.unit(60, "kg"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/jaro/front.svg",
  6430. extra: 845/817,
  6431. bottom: 45/890
  6432. }
  6433. },
  6434. back: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(60, "kg"),
  6437. name: "Back",
  6438. image: {
  6439. source: "./media/characters/jaro/back.svg",
  6440. extra: 847/817,
  6441. bottom: 34/881
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(7, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5.5, "feet"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Minimacro",
  6457. height: math.unit(20, "feet")
  6458. },
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(200, "meters")
  6462. }
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(195, "lb"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/rogue/front.svg"
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(90, "feet"),
  6481. default: true
  6482. },
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6487. {
  6488. front: {
  6489. height: math.unit(5 + 8 / 12, "feet"),
  6490. weight: math.unit(140, "lb"),
  6491. name: "Front",
  6492. image: {
  6493. source: "./media/characters/piper/front.svg",
  6494. extra: 3948/3655,
  6495. bottom: 0/3948
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Micro",
  6502. height: math.unit(2, "inches")
  6503. },
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(5 + 8 / 12, "feet")
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(250, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Megamacro",
  6515. height: math.unit(7, "miles")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(220, "lb"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/gemini/front.svg"
  6528. }
  6529. },
  6530. back: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(220, "lb"),
  6533. name: "Back",
  6534. image: {
  6535. source: "./media/characters/gemini/back.svg"
  6536. }
  6537. },
  6538. kneeling: {
  6539. height: math.unit(6 / 1.5, "feet"),
  6540. weight: math.unit(220, "lb"),
  6541. name: "Kneeling",
  6542. image: {
  6543. source: "./media/characters/gemini/kneeling.svg",
  6544. bottom: 0.02
  6545. }
  6546. },
  6547. },
  6548. [
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(300, "meters"),
  6552. default: true
  6553. },
  6554. {
  6555. name: "Megamacro",
  6556. height: math.unit(6900, "meters")
  6557. },
  6558. ]
  6559. ))
  6560. characterMakers.push(() => makeCharacter(
  6561. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6562. {
  6563. anthro: {
  6564. height: math.unit(2.35, "meters"),
  6565. weight: math.unit(73, "kg"),
  6566. name: "Anthro",
  6567. image: {
  6568. source: "./media/characters/alicia/anthro.svg",
  6569. extra: 2571 / 2385,
  6570. bottom: 75 / 2648
  6571. }
  6572. },
  6573. paw: {
  6574. height: math.unit(1.32, "feet"),
  6575. name: "Paw",
  6576. image: {
  6577. source: "./media/characters/alicia/paw.svg"
  6578. }
  6579. },
  6580. feral: {
  6581. height: math.unit(1.69, "meters"),
  6582. weight: math.unit(73, "kg"),
  6583. name: "Feral",
  6584. image: {
  6585. source: "./media/characters/alicia/feral.svg",
  6586. extra: 2123 / 1715,
  6587. bottom: 222 / 2349
  6588. }
  6589. },
  6590. },
  6591. [
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(2.35, "meters")
  6595. },
  6596. {
  6597. name: "Macro",
  6598. height: math.unit(60, "meters"),
  6599. default: true
  6600. },
  6601. {
  6602. name: "Megamacro",
  6603. height: math.unit(10000, "kilometers")
  6604. },
  6605. ]
  6606. ))
  6607. characterMakers.push(() => makeCharacter(
  6608. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6609. {
  6610. front: {
  6611. height: math.unit(7, "feet"),
  6612. weight: math.unit(250, "lbs"),
  6613. name: "Front",
  6614. image: {
  6615. source: "./media/characters/archy/front.svg"
  6616. }
  6617. }
  6618. },
  6619. [
  6620. {
  6621. name: "Micro",
  6622. height: math.unit(1, "inch")
  6623. },
  6624. {
  6625. name: "Shorty",
  6626. height: math.unit(5, "feet")
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(7, "feet")
  6631. },
  6632. {
  6633. name: "Macro",
  6634. height: math.unit(600, "meters"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Megamacro",
  6639. height: math.unit(1, "mile")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(1.65, "meters"),
  6648. weight: math.unit(74, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/berri/front.svg",
  6652. extra: 857 / 837,
  6653. bottom: 18 / 877
  6654. }
  6655. },
  6656. bum: {
  6657. height: math.unit(1.46, "feet"),
  6658. name: "Bum",
  6659. image: {
  6660. source: "./media/characters/berri/bum.svg"
  6661. }
  6662. },
  6663. mouth: {
  6664. height: math.unit(0.44, "feet"),
  6665. name: "Mouth",
  6666. image: {
  6667. source: "./media/characters/berri/mouth.svg"
  6668. }
  6669. },
  6670. paw: {
  6671. height: math.unit(0.826, "feet"),
  6672. name: "Paw",
  6673. image: {
  6674. source: "./media/characters/berri/paw.svg"
  6675. }
  6676. },
  6677. },
  6678. [
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(1.65, "meters")
  6682. },
  6683. {
  6684. name: "Macro",
  6685. height: math.unit(60, "m"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Megamacro",
  6690. height: math.unit(9.213, "km")
  6691. },
  6692. {
  6693. name: "Planet Eater",
  6694. height: math.unit(489, "megameters")
  6695. },
  6696. {
  6697. name: "Teramacro",
  6698. height: math.unit(2471635000000, "meters")
  6699. },
  6700. {
  6701. name: "Examacro",
  6702. height: math.unit(8.0624e+26, "meters")
  6703. }
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(1.72, "meters"),
  6711. weight: math.unit(68, "kg"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/lexi/front.svg"
  6715. }
  6716. }
  6717. },
  6718. [
  6719. {
  6720. name: "Very Smol",
  6721. height: math.unit(10, "mm")
  6722. },
  6723. {
  6724. name: "Micro",
  6725. height: math.unit(6.8, "cm"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(1.72, "m")
  6731. }
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(1.69, "meters"),
  6739. weight: math.unit(68, "kg"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/martin/front.svg",
  6743. extra: 596 / 581
  6744. }
  6745. }
  6746. },
  6747. [
  6748. {
  6749. name: "Micro",
  6750. height: math.unit(6.85, "cm"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(1.69, "m")
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(1.69, "meters"),
  6764. weight: math.unit(68, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/juno/front.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(7, "cm")
  6775. },
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(1.89, "m")
  6779. },
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(353, "meters"),
  6783. default: true
  6784. }
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(1.93, "meters"),
  6792. weight: math.unit(83, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/samantha/front.svg"
  6796. }
  6797. },
  6798. frontClothed: {
  6799. height: math.unit(1.93, "meters"),
  6800. weight: math.unit(83, "kg"),
  6801. name: "Front (Clothed)",
  6802. image: {
  6803. source: "./media/characters/samantha/front-clothed.svg"
  6804. }
  6805. },
  6806. back: {
  6807. height: math.unit(1.93, "meters"),
  6808. weight: math.unit(83, "kg"),
  6809. name: "Back",
  6810. image: {
  6811. source: "./media/characters/samantha/back.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(1.93, "m")
  6819. },
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(74, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Macro+",
  6827. height: math.unit(223, "meters"),
  6828. },
  6829. {
  6830. name: "Megamacro",
  6831. height: math.unit(8381, "meters"),
  6832. },
  6833. {
  6834. name: "Megamacro+",
  6835. height: math.unit(12000, "kilometers")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(1.92, "meters"),
  6844. weight: math.unit(80, "kg"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/dr-clay/front.svg"
  6848. }
  6849. },
  6850. frontClothed: {
  6851. height: math.unit(1.92, "meters"),
  6852. weight: math.unit(80, "kg"),
  6853. name: "Front (Clothed)",
  6854. image: {
  6855. source: "./media/characters/dr-clay/front-clothed.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(1.92, "m")
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(214, "meters"),
  6867. default: true
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(12.237, "meters"),
  6872. },
  6873. {
  6874. name: "Megamacro",
  6875. height: math.unit(557, "megameters"),
  6876. },
  6877. {
  6878. name: "Unimaginable",
  6879. height: math.unit(120e9, "lightyears")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(2, "meters"),
  6888. weight: math.unit(80, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6892. }
  6893. }
  6894. },
  6895. [
  6896. {
  6897. name: "Teramacro",
  6898. height: math.unit(500000, "lightyears"),
  6899. default: true
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6905. {
  6906. crux: {
  6907. height: math.unit(2, "meters"),
  6908. weight: math.unit(150, "kg"),
  6909. name: "Crux",
  6910. image: {
  6911. source: "./media/characters/vemus/crux.svg",
  6912. extra: 1074/936,
  6913. bottom: 23/1097
  6914. }
  6915. },
  6916. skunkTanuki: {
  6917. height: math.unit(2, "meters"),
  6918. weight: math.unit(150, "kg"),
  6919. name: "Skunk-Tanuki",
  6920. image: {
  6921. source: "./media/characters/vemus/skunk-tanuki.svg",
  6922. extra: 926/893,
  6923. bottom: 20/946
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(3.75, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Big",
  6935. height: math.unit(8, "meters")
  6936. },
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(100, "meters")
  6940. },
  6941. {
  6942. name: "Macro+",
  6943. height: math.unit(1500, "meters")
  6944. },
  6945. {
  6946. name: "Stellar",
  6947. height: math.unit(14e8, "meters")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(2, "meters"),
  6956. weight: math.unit(70, "kg"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/beherit/front.svg",
  6960. extra: 1234/1109,
  6961. bottom: 55/1289
  6962. }
  6963. }
  6964. },
  6965. [
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(6, "feet")
  6969. },
  6970. {
  6971. name: "Lorg",
  6972. height: math.unit(25, "feet"),
  6973. default: true
  6974. },
  6975. {
  6976. name: "Lorger",
  6977. height: math.unit(75, "feet")
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(200, "meters")
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(2, "meters"),
  6990. weight: math.unit(150, "kg"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/everett/front.svg",
  6994. extra: 1017/866,
  6995. bottom: 86/1103
  6996. }
  6997. },
  6998. paw: {
  6999. height: math.unit(2 / 3.6, "meters"),
  7000. name: "Paw",
  7001. image: {
  7002. source: "./media/characters/everett/paw.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(15, "feet"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Lorg",
  7014. height: math.unit(70, "feet"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Lorger",
  7019. height: math.unit(250, "feet")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(500, "meters")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(2, "meters"),
  7032. weight: math.unit(86, "kg"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/rose/front.svg",
  7036. extra: 1785/1636,
  7037. bottom: 30/1815
  7038. }
  7039. },
  7040. frontSporty: {
  7041. height: math.unit(2, "meters"),
  7042. weight: math.unit(86, "kg"),
  7043. name: "Front (Sporty)",
  7044. image: {
  7045. source: "./media/characters/rose/front-sporty.svg",
  7046. extra: 350/335,
  7047. bottom: 10/360
  7048. }
  7049. },
  7050. frontAlt: {
  7051. height: math.unit(1.6, "meters"),
  7052. weight: math.unit(86, "kg"),
  7053. name: "Front (Alt)",
  7054. image: {
  7055. source: "./media/characters/rose/front-alt.svg",
  7056. extra: 299/283,
  7057. bottom: 3/302
  7058. }
  7059. },
  7060. plush: {
  7061. height: math.unit(2, "meters"),
  7062. weight: math.unit(86/3, "kg"),
  7063. name: "Plush",
  7064. image: {
  7065. source: "./media/characters/rose/plush.svg",
  7066. extra: 361/337,
  7067. bottom: 11/372
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "True Micro",
  7074. height: math.unit(9, "cm")
  7075. },
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(16, "cm")
  7079. },
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(1.85, "meters"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Mini-Macro",
  7087. height: math.unit(5, "meters")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(15, "meters")
  7092. },
  7093. {
  7094. name: "True Macro",
  7095. height: math.unit(40, "meters")
  7096. },
  7097. {
  7098. name: "City Scale",
  7099. height: math.unit(1, "km")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(350, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/regal/front.svg"
  7112. }
  7113. },
  7114. back: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(350, "lbs"),
  7117. name: "Back",
  7118. image: {
  7119. source: "./media/characters/regal/back.svg"
  7120. }
  7121. },
  7122. },
  7123. [
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(350, "feet"),
  7127. default: true
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(4 + 11 / 12, "feet"),
  7136. weight: math.unit(100, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/opal/front.svg"
  7140. }
  7141. },
  7142. frontAlt: {
  7143. height: math.unit(4 + 11 / 12, "feet"),
  7144. weight: math.unit(100, "lbs"),
  7145. name: "Front (Alt)",
  7146. image: {
  7147. source: "./media/characters/opal/front-alt.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Small",
  7154. height: math.unit(4 + 11 / 12, "feet")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(20, "feet"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Macro",
  7163. height: math.unit(120, "feet")
  7164. },
  7165. {
  7166. name: "Megamacro",
  7167. height: math.unit(80, "miles")
  7168. },
  7169. {
  7170. name: "True Size",
  7171. height: math.unit(100000, "lightyears")
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(200, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/vector-wuff/front.svg"
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(2.8, "meters")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(450, "meters"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(15, "kilometers")
  7200. }
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(256, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/dannik/front.svg"
  7212. }
  7213. }
  7214. },
  7215. [
  7216. {
  7217. name: "Macro",
  7218. height: math.unit(69.57, "meters"),
  7219. default: true
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(120, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/azura-saharah/front.svg"
  7232. }
  7233. },
  7234. back: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(120, "lbs"),
  7237. name: "Back",
  7238. image: {
  7239. source: "./media/characters/azura-saharah/back.svg"
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(100, "feet"),
  7247. default: true
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7253. {
  7254. side: {
  7255. height: math.unit(5 + 4 / 12, "feet"),
  7256. weight: math.unit(163, "lbs"),
  7257. name: "Side",
  7258. image: {
  7259. source: "./media/characters/kennedy/side.svg"
  7260. }
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Standard Doggo",
  7266. height: math.unit(5 + 4 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Big Doggo",
  7270. height: math.unit(25 + 3 / 12, "feet"),
  7271. default: true
  7272. },
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(5 + 5/12, "feet"),
  7280. weight: math.unit(100, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/odios-de-lunar/front.svg",
  7284. extra: 1468/1323,
  7285. bottom: 22/1490
  7286. }
  7287. }
  7288. },
  7289. [
  7290. {
  7291. name: "Micro",
  7292. height: math.unit(3, "inches")
  7293. },
  7294. {
  7295. name: "Normal",
  7296. height: math.unit(5.5, "feet"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(100, "feet")
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7307. {
  7308. back: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(220, "lbs"),
  7311. name: "Back",
  7312. image: {
  7313. source: "./media/characters/mandake/back.svg"
  7314. }
  7315. }
  7316. },
  7317. [
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(7, "feet"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(78, "feet")
  7326. },
  7327. {
  7328. name: "Macro+",
  7329. height: math.unit(300, "meters")
  7330. },
  7331. {
  7332. name: "Macro++",
  7333. height: math.unit(2400, "feet")
  7334. },
  7335. {
  7336. name: "Megamacro",
  7337. height: math.unit(5167, "meters")
  7338. },
  7339. {
  7340. name: "Gigamacro",
  7341. height: math.unit(41769, "miles")
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(120, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/yozey/front.svg"
  7354. }
  7355. },
  7356. frontAlt: {
  7357. height: math.unit(6, "feet"),
  7358. weight: math.unit(120, "lbs"),
  7359. name: "Front (Alt)",
  7360. image: {
  7361. source: "./media/characters/yozey/front-alt.svg"
  7362. }
  7363. },
  7364. side: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(120, "lbs"),
  7367. name: "Side",
  7368. image: {
  7369. source: "./media/characters/yozey/side.svg"
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Micro",
  7376. height: math.unit(3, "inches"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(6, "feet")
  7382. }
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(6, "feet"),
  7390. weight: math.unit(103, "lbs"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/valeska-voss/front.svg"
  7394. }
  7395. }
  7396. },
  7397. [
  7398. {
  7399. name: "Mini-Sized Sub",
  7400. height: math.unit(3.1, "inches")
  7401. },
  7402. {
  7403. name: "Mid-Sized Sub",
  7404. height: math.unit(6.2, "inches")
  7405. },
  7406. {
  7407. name: "Full-Sized Sub",
  7408. height: math.unit(9.3, "inches")
  7409. },
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(5 + 2 / 12, "foot"),
  7413. default: true
  7414. },
  7415. ]
  7416. ))
  7417. characterMakers.push(() => makeCharacter(
  7418. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7419. {
  7420. front: {
  7421. height: math.unit(6, "feet"),
  7422. weight: math.unit(160, "lbs"),
  7423. name: "Front",
  7424. image: {
  7425. source: "./media/characters/gene-zeta/front.svg",
  7426. extra: 3006 / 2826,
  7427. bottom: 182 / 3188
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Micro",
  7434. height: math.unit(6, "inches")
  7435. },
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(5 + 11 / 12, "foot"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(140, "feet")
  7444. },
  7445. {
  7446. name: "Supercharged",
  7447. height: math.unit(2500, "feet")
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(350, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/razinox/front.svg",
  7460. extra: 1686 / 1548,
  7461. bottom: 28.2 / 1868
  7462. }
  7463. },
  7464. back: {
  7465. height: math.unit(6, "feet"),
  7466. weight: math.unit(350, "lbs"),
  7467. name: "Back",
  7468. image: {
  7469. source: "./media/characters/razinox/back.svg",
  7470. extra: 1660 / 1590,
  7471. bottom: 15 / 1665
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(10 + 8 / 12, "foot")
  7479. },
  7480. {
  7481. name: "Minimacro",
  7482. height: math.unit(15, "foot")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(60, "foot"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Megamacro",
  7491. height: math.unit(5, "miles")
  7492. },
  7493. {
  7494. name: "Gigamacro",
  7495. height: math.unit(6000, "miles")
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(150, "lbs"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/cobalt/front.svg"
  7508. }
  7509. }
  7510. },
  7511. [
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(8 + 1 / 12, "foot")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(111, "foot"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Supracosmic",
  7523. height: math.unit(1e42, "feet")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(6, "feet"),
  7532. weight: math.unit(140, "lbs"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/amanda/front.svg"
  7536. }
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Micro",
  7542. height: math.unit(5, "inches"),
  7543. default: true
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(2.75, "meters"),
  7552. weight: math.unit(1200, "lb"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/teal/front.svg",
  7556. extra: 2463 / 2320,
  7557. bottom: 166 / 2629
  7558. }
  7559. },
  7560. back: {
  7561. height: math.unit(2.75, "meters"),
  7562. weight: math.unit(1200, "lb"),
  7563. name: "Back",
  7564. image: {
  7565. source: "./media/characters/teal/back.svg",
  7566. extra: 2580 / 2489,
  7567. bottom: 151 / 2731
  7568. }
  7569. },
  7570. sitting: {
  7571. height: math.unit(1.9, "meters"),
  7572. weight: math.unit(1200, "lb"),
  7573. name: "Sitting",
  7574. image: {
  7575. source: "./media/characters/teal/sitting.svg",
  7576. extra: 623 / 590,
  7577. bottom: 121 / 744
  7578. }
  7579. },
  7580. standing: {
  7581. height: math.unit(2.75, "meters"),
  7582. weight: math.unit(1200, "lb"),
  7583. name: "Standing",
  7584. image: {
  7585. source: "./media/characters/teal/standing.svg",
  7586. extra: 923 / 893,
  7587. bottom: 60 / 983
  7588. }
  7589. },
  7590. stretching: {
  7591. height: math.unit(3.65, "meters"),
  7592. weight: math.unit(1200, "lb"),
  7593. name: "Stretching",
  7594. image: {
  7595. source: "./media/characters/teal/stretching.svg",
  7596. extra: 1276 / 1244,
  7597. bottom: 0 / 1276
  7598. }
  7599. },
  7600. legged: {
  7601. height: math.unit(1.3, "meters"),
  7602. weight: math.unit(100, "lb"),
  7603. name: "Legged",
  7604. image: {
  7605. source: "./media/characters/teal/legged.svg",
  7606. extra: 462 / 437,
  7607. bottom: 24 / 486
  7608. }
  7609. },
  7610. naga: {
  7611. height: math.unit(5.4, "meters"),
  7612. weight: math.unit(4000, "lb"),
  7613. name: "Naga",
  7614. image: {
  7615. source: "./media/characters/teal/naga.svg",
  7616. extra: 1902 / 1858,
  7617. bottom: 0 / 1902
  7618. }
  7619. },
  7620. hand: {
  7621. height: math.unit(0.52, "meters"),
  7622. name: "Hand",
  7623. image: {
  7624. source: "./media/characters/teal/hand.svg"
  7625. }
  7626. },
  7627. maw: {
  7628. height: math.unit(0.43, "meters"),
  7629. name: "Maw",
  7630. image: {
  7631. source: "./media/characters/teal/maw.svg"
  7632. }
  7633. },
  7634. slit: {
  7635. height: math.unit(0.25, "meters"),
  7636. name: "Slit",
  7637. image: {
  7638. source: "./media/characters/teal/slit.svg"
  7639. }
  7640. },
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(2.75, "meters"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(300, "feet")
  7651. },
  7652. {
  7653. name: "Macro+",
  7654. height: math.unit(2000, "feet")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7660. {
  7661. frontCat: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(180, "lbs"),
  7664. name: "Front (Cat)",
  7665. image: {
  7666. source: "./media/characters/ravin-amulet/front-cat.svg"
  7667. }
  7668. },
  7669. frontCatAlt: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(180, "lbs"),
  7672. name: "Front (Alt, Cat)",
  7673. image: {
  7674. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7675. }
  7676. },
  7677. frontWerewolf: {
  7678. height: math.unit(6 * 1.2, "feet"),
  7679. weight: math.unit(225, "lbs"),
  7680. name: "Front (Werewolf)",
  7681. image: {
  7682. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7683. }
  7684. },
  7685. backWerewolf: {
  7686. height: math.unit(6 * 1.2, "feet"),
  7687. weight: math.unit(225, "lbs"),
  7688. name: "Back (Werewolf)",
  7689. image: {
  7690. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Nano",
  7697. height: math.unit(1, "micrometer")
  7698. },
  7699. {
  7700. name: "Micro",
  7701. height: math.unit(1, "inch")
  7702. },
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(6, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(60, "feet")
  7711. }
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(165, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/fluoresce/front.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(6, "cm")
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(5 + 7 / 12, "feet"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(56, "feet")
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(1.9, "miles")
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(9 + 6 / 12, "feet"),
  7751. weight: math.unit(523, "lbs"),
  7752. name: "Side",
  7753. image: {
  7754. source: "./media/characters/aurora/side.svg"
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(9 + 6 / 12, "feet")
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(96, "feet"),
  7766. default: true
  7767. },
  7768. {
  7769. name: "Macro+",
  7770. height: math.unit(243, "feet")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(194, "cm"),
  7779. weight: math.unit(90, "kg"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/ranek/front.svg",
  7783. extra: 1862/1791,
  7784. bottom: 80/1942
  7785. }
  7786. },
  7787. back: {
  7788. height: math.unit(194, "cm"),
  7789. weight: math.unit(90, "kg"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/ranek/back.svg",
  7793. extra: 1853/1787,
  7794. bottom: 74/1927
  7795. }
  7796. },
  7797. feral: {
  7798. height: math.unit(30, "cm"),
  7799. weight: math.unit(1.6, "lbs"),
  7800. name: "Feral",
  7801. image: {
  7802. source: "./media/characters/ranek/feral.svg",
  7803. extra: 990/631,
  7804. bottom: 29/1019
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(194, "cm"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Macro",
  7816. height: math.unit(100, "meters")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(5 + 6 / 12, "feet"),
  7825. weight: math.unit(153, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/andrew-cooper/front.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Nano",
  7835. height: math.unit(1, "mm")
  7836. },
  7837. {
  7838. name: "Micro",
  7839. height: math.unit(2, "inches")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(5 + 6 / 12, "feet"),
  7844. default: true
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(180, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/akane-sato/front.svg",
  7857. extra: 1219 / 1140
  7858. }
  7859. },
  7860. back: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(180, "lbs"),
  7863. name: "Back",
  7864. image: {
  7865. source: "./media/characters/akane-sato/back.svg",
  7866. extra: 1219 / 1170
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(2.5, "meters")
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(250, "meters"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(25, "km")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(65, "kg"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/rook/front.svg",
  7895. extra: 960 / 950
  7896. }
  7897. }
  7898. },
  7899. [
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(8.8, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(88, "feet"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "Megamacro",
  7911. height: math.unit(8, "miles")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(12 + 2 / 12, "feet"),
  7920. weight: math.unit(808, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/prodigy/front.svg"
  7924. }
  7925. }
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(12 + 2 / 12, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Macro",
  7935. height: math.unit(143, "feet")
  7936. },
  7937. {
  7938. name: "Macro+",
  7939. height: math.unit(400, "feet")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(225, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/daniel/front.svg"
  7952. }
  7953. },
  7954. leaning: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(225, "lbs"),
  7957. name: "Leaning",
  7958. image: {
  7959. source: "./media/characters/daniel/leaning.svg"
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(1000, "feet"),
  7967. default: true
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7973. {
  7974. front: {
  7975. height: math.unit(6, "feet"),
  7976. weight: math.unit(88, "lbs"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/chiros/front.svg",
  7980. extra: 306 / 226
  7981. }
  7982. },
  7983. side: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(88, "lbs"),
  7986. name: "Side",
  7987. image: {
  7988. source: "./media/characters/chiros/side.svg",
  7989. extra: 306 / 226
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(6, "cm"),
  7997. default: true
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(100, "lbs"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/selka/front.svg",
  8010. extra: 947 / 887
  8011. }
  8012. }
  8013. },
  8014. [
  8015. {
  8016. name: "Normal",
  8017. height: math.unit(5, "cm"),
  8018. default: true
  8019. },
  8020. ]
  8021. ))
  8022. characterMakers.push(() => makeCharacter(
  8023. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8024. {
  8025. front: {
  8026. height: math.unit(8 + 3 / 12, "feet"),
  8027. weight: math.unit(424, "lbs"),
  8028. name: "Front",
  8029. image: {
  8030. source: "./media/characters/verin/front.svg",
  8031. extra: 1845 / 1550
  8032. }
  8033. },
  8034. frontArmored: {
  8035. height: math.unit(8 + 3 / 12, "feet"),
  8036. weight: math.unit(424, "lbs"),
  8037. name: "Front (Armored)",
  8038. image: {
  8039. source: "./media/characters/verin/front-armor.svg",
  8040. extra: 1845 / 1550,
  8041. bottom: 0.01
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(8 + 3 / 12, "feet"),
  8046. weight: math.unit(424, "lbs"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/verin/back.svg",
  8050. bottom: 0.1,
  8051. extra: 1
  8052. }
  8053. },
  8054. foot: {
  8055. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8056. name: "Foot",
  8057. image: {
  8058. source: "./media/characters/verin/foot.svg"
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(8 + 3 / 12, "feet")
  8066. },
  8067. {
  8068. name: "Minimacro",
  8069. height: math.unit(21, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(626, "feet")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(2.718, "meters"),
  8083. weight: math.unit(150, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/sovrim-terraquian/front.svg",
  8087. extra: 1752/1689,
  8088. bottom: 36/1788
  8089. }
  8090. },
  8091. back: {
  8092. height: math.unit(2.718, "meters"),
  8093. weight: math.unit(150, "lbs"),
  8094. name: "Back",
  8095. image: {
  8096. source: "./media/characters/sovrim-terraquian/back.svg",
  8097. extra: 1698/1657,
  8098. bottom: 58/1756
  8099. }
  8100. },
  8101. tongue: {
  8102. height: math.unit(2.865, "feet"),
  8103. name: "Tongue",
  8104. image: {
  8105. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8106. }
  8107. },
  8108. hand: {
  8109. height: math.unit(1.61, "feet"),
  8110. name: "Hand",
  8111. image: {
  8112. source: "./media/characters/sovrim-terraquian/hand.svg"
  8113. }
  8114. },
  8115. foot: {
  8116. height: math.unit(1.05, "feet"),
  8117. name: "Foot",
  8118. image: {
  8119. source: "./media/characters/sovrim-terraquian/foot.svg"
  8120. }
  8121. },
  8122. footAlt: {
  8123. height: math.unit(0.88, "feet"),
  8124. name: "Foot (Alt)",
  8125. image: {
  8126. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Micro",
  8133. height: math.unit(2, "inches")
  8134. },
  8135. {
  8136. name: "Small",
  8137. height: math.unit(1, "meter")
  8138. },
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(Math.E, "meters"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(20, "meters")
  8147. },
  8148. {
  8149. name: "Macro+",
  8150. height: math.unit(400, "meters")
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8156. {
  8157. front: {
  8158. height: math.unit(7, "feet"),
  8159. weight: math.unit(489, "lbs"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/reece-silvermane/front.svg",
  8163. bottom: 0.02,
  8164. extra: 1
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Macro",
  8171. height: math.unit(1.5, "miles"),
  8172. default: true
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(6, "feet"),
  8181. weight: math.unit(78, "kg"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/kane/front.svg",
  8185. extra: 978 / 899
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(2.1, "m"),
  8193. },
  8194. {
  8195. name: "Macro",
  8196. height: math.unit(1, "km"),
  8197. default: true
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(200, "kg"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/tegon/front.svg",
  8210. bottom: 0.01,
  8211. extra: 1
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(1, "inch")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(6 + 3 / 12, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(300, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(69, "miles")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8237. {
  8238. side: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(2304, "lbs"),
  8241. name: "Side",
  8242. image: {
  8243. source: "./media/characters/arcturax/side.svg",
  8244. extra: 790 / 376,
  8245. bottom: 0.01
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(2, "inch")
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(6, "feet")
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(39, "feet"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Megamacro",
  8265. height: math.unit(7, "miles")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(50, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/sentri/front.svg",
  8278. extra: 1750 / 1570,
  8279. bottom: 0.025
  8280. }
  8281. },
  8282. frontAlt: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(50, "lbs"),
  8285. name: "Front (Alt)",
  8286. image: {
  8287. source: "./media/characters/sentri/front-alt.svg",
  8288. extra: 1750 / 1570,
  8289. bottom: 0.025
  8290. }
  8291. },
  8292. },
  8293. [
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(15, "feet"),
  8297. default: true
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(2500, "feet")
  8302. }
  8303. ]
  8304. ))
  8305. characterMakers.push(() => makeCharacter(
  8306. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8307. {
  8308. front: {
  8309. height: math.unit(5 + 8 / 12, "feet"),
  8310. weight: math.unit(130, "lbs"),
  8311. name: "Front",
  8312. image: {
  8313. source: "./media/characters/corvin/front.svg",
  8314. extra: 1803 / 1629
  8315. }
  8316. },
  8317. frontShirt: {
  8318. height: math.unit(5 + 8 / 12, "feet"),
  8319. weight: math.unit(130, "lbs"),
  8320. name: "Front (Shirt)",
  8321. image: {
  8322. source: "./media/characters/corvin/front-shirt.svg",
  8323. extra: 1803 / 1629
  8324. }
  8325. },
  8326. frontPoncho: {
  8327. height: math.unit(5 + 8 / 12, "feet"),
  8328. weight: math.unit(130, "lbs"),
  8329. name: "Front (Poncho)",
  8330. image: {
  8331. source: "./media/characters/corvin/front-poncho.svg",
  8332. extra: 1803 / 1629
  8333. }
  8334. },
  8335. side: {
  8336. height: math.unit(5 + 8 / 12, "feet"),
  8337. weight: math.unit(130, "lbs"),
  8338. name: "Side",
  8339. image: {
  8340. source: "./media/characters/corvin/side.svg",
  8341. extra: 1012 / 945
  8342. }
  8343. },
  8344. back: {
  8345. height: math.unit(5 + 8 / 12, "feet"),
  8346. weight: math.unit(130, "lbs"),
  8347. name: "Back",
  8348. image: {
  8349. source: "./media/characters/corvin/back.svg",
  8350. extra: 1803 / 1629
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Micro",
  8357. height: math.unit(3, "inches")
  8358. },
  8359. {
  8360. name: "Normal",
  8361. height: math.unit(5 + 8 / 12, "feet")
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(300, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Megamacro",
  8370. height: math.unit(500, "miles")
  8371. }
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(135, "lbs"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/q/front.svg",
  8383. extra: 854 / 752,
  8384. bottom: 0.005
  8385. }
  8386. },
  8387. back: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(130, "lbs"),
  8390. name: "Back",
  8391. image: {
  8392. source: "./media/characters/q/back.svg",
  8393. extra: 854 / 752
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Macro",
  8400. height: math.unit(90, "feet"),
  8401. default: true
  8402. },
  8403. {
  8404. name: "Extra Macro",
  8405. height: math.unit(300, "feet"),
  8406. },
  8407. {
  8408. name: "BIG WALF",
  8409. height: math.unit(750, "feet"),
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(150, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/carley/front.svg",
  8422. extra: 3927 / 3540,
  8423. bottom: 29.2 / 735
  8424. }
  8425. }
  8426. },
  8427. [
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(6 + 3 / 12, "feet")
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(185, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Megamacro",
  8439. height: math.unit(8, "miles"),
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(3, "feet"),
  8448. weight: math.unit(28, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/citrine/front.svg"
  8452. }
  8453. }
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(3, "feet"),
  8459. default: true
  8460. }
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8465. {
  8466. front: {
  8467. height: math.unit(14, "feet"),
  8468. weight: math.unit(1450, "kg"),
  8469. capacity: math.unit(15, "people"),
  8470. name: "Front",
  8471. image: {
  8472. source: "./media/characters/aura-starwind/front.svg",
  8473. extra: 1440/1327,
  8474. bottom: 11/1451
  8475. }
  8476. },
  8477. side: {
  8478. height: math.unit(14, "feet"),
  8479. weight: math.unit(1450, "kg"),
  8480. capacity: math.unit(15, "people"),
  8481. name: "Side",
  8482. image: {
  8483. source: "./media/characters/aura-starwind/side.svg",
  8484. extra: 1654 / 1497
  8485. }
  8486. },
  8487. taur: {
  8488. height: math.unit(18, "feet"),
  8489. weight: math.unit(5500, "kg"),
  8490. capacity: math.unit(50, "people"),
  8491. name: "Taur",
  8492. image: {
  8493. source: "./media/characters/aura-starwind/taur.svg",
  8494. extra: 1760 / 1650
  8495. }
  8496. },
  8497. feral: {
  8498. height: math.unit(46, "feet"),
  8499. weight: math.unit(25000, "kg"),
  8500. capacity: math.unit(120, "people"),
  8501. name: "Feral",
  8502. image: {
  8503. source: "./media/characters/aura-starwind/feral.svg"
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(14, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(50, "meters")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(5000, "meters")
  8520. },
  8521. {
  8522. name: "Gigamacro",
  8523. height: math.unit(100000, "kilometers")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(2 + 7 / 12, "feet"),
  8532. weight: math.unit(32, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/rivet/front.svg",
  8536. extra: 1716 / 1658,
  8537. bottom: 0.03
  8538. }
  8539. },
  8540. foot: {
  8541. height: math.unit(0.551, "feet"),
  8542. name: "Rivet's Foot",
  8543. image: {
  8544. source: "./media/characters/rivet/foot.svg"
  8545. },
  8546. rename: true
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(1.5, "inches"),
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(2 + 7 / 12, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(85, "feet")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(2.2, "km")
  8566. }
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(5 + 9 / 12, "feet"),
  8574. weight: math.unit(150, "lbs"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/coffee/front.svg",
  8578. extra: 3666 / 3032,
  8579. bottom: 0.04
  8580. }
  8581. },
  8582. foot: {
  8583. height: math.unit(1.29, "feet"),
  8584. name: "Foot",
  8585. image: {
  8586. source: "./media/characters/coffee/foot.svg"
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Micro",
  8593. height: math.unit(2, "inches"),
  8594. },
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(5 + 9 / 12, "feet"),
  8598. default: true
  8599. },
  8600. {
  8601. name: "Macro",
  8602. height: math.unit(800, "feet")
  8603. },
  8604. {
  8605. name: "Megamacro",
  8606. height: math.unit(25, "miles")
  8607. }
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(6, "feet"),
  8615. weight: math.unit(200, "lbs"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/chari-gal/front.svg",
  8619. extra: 1568 / 1385,
  8620. bottom: 0.047
  8621. }
  8622. },
  8623. gigantamax: {
  8624. height: math.unit(6 * 16, "feet"),
  8625. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8626. name: "Gigantamax",
  8627. image: {
  8628. source: "./media/characters/chari-gal/gigantamax.svg",
  8629. extra: 1124 / 888,
  8630. bottom: 0.03
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(5 + 7 / 12, "feet")
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(200, "feet"),
  8642. default: true
  8643. }
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(150, "lbs"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/nova/front.svg",
  8655. extra: 5000 / 4722,
  8656. bottom: 0.02
  8657. }
  8658. }
  8659. },
  8660. [
  8661. {
  8662. name: "Micro-",
  8663. height: math.unit(0.8, "inches")
  8664. },
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(3 + 1 / 12, "feet"),
  8677. weight: math.unit(21.7, "lbs"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/argent/front.svg",
  8681. extra: 1471 / 1331,
  8682. bottom: 100.8 / 1575.5
  8683. }
  8684. }
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(2, "inches")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(3 + 1 / 12, "feet"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(120, "feet")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8704. {
  8705. lamp: {
  8706. height: math.unit(7 * 1559 / 989, "feet"),
  8707. name: "Magic Lamp",
  8708. image: {
  8709. source: "./media/characters/mira-al-cul/lamp.svg",
  8710. extra: 1617 / 1559
  8711. }
  8712. },
  8713. front: {
  8714. height: math.unit(7, "feet"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/mira-al-cul/front.svg",
  8718. extra: 1044 / 990
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Heavily Restricted",
  8725. height: math.unit(7 * 1559 / 989, "feet")
  8726. },
  8727. {
  8728. name: "Freshly Freed",
  8729. height: math.unit(50 * 1559 / 989, "feet")
  8730. },
  8731. {
  8732. name: "World Encompassing",
  8733. height: math.unit(10000 * 1559 / 989, "miles")
  8734. },
  8735. {
  8736. name: "Galactic",
  8737. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8738. },
  8739. {
  8740. name: "Palmed Universe",
  8741. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "Multiversal Matriarch",
  8746. height: math.unit(8.87e10, "yottameters")
  8747. },
  8748. {
  8749. name: "Void Mother",
  8750. height: math.unit(3.14e110, "yottaparsecs")
  8751. },
  8752. {
  8753. name: "Toying with Transcendence",
  8754. height: math.unit(1e307, "meters")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8760. {
  8761. front: {
  8762. height: math.unit(17 + 1 / 12, "feet"),
  8763. weight: math.unit(476.2 * 5, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/kuro-shi-uchū/front.svg",
  8767. extra: 2329 / 1835,
  8768. bottom: 0.02
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Micro",
  8775. height: math.unit(2, "inches")
  8776. },
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(12, "meters")
  8780. },
  8781. {
  8782. name: "Planetary",
  8783. height: math.unit(0.00929, "AU"),
  8784. default: true
  8785. },
  8786. {
  8787. name: "Universal",
  8788. height: math.unit(20, "gigaparsecs")
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(5 + 2 / 12, "feet"),
  8797. weight: math.unit(120, "lbs"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/katherine/front.svg",
  8801. extra: 2075 / 1969
  8802. }
  8803. },
  8804. dress: {
  8805. height: math.unit(5 + 2 / 12, "feet"),
  8806. weight: math.unit(120, "lbs"),
  8807. name: "Dress",
  8808. image: {
  8809. source: "./media/characters/katherine/dress.svg",
  8810. extra: 2258 / 2064
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(1, "inches"),
  8818. default: true
  8819. },
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(5 + 2 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(100, "meters")
  8827. },
  8828. {
  8829. name: "Megamacro",
  8830. height: math.unit(80, "miles")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(7 + 8 / 12, "feet"),
  8839. weight: math.unit(250, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/yevis/front.svg",
  8843. extra: 1938 / 1755
  8844. }
  8845. }
  8846. },
  8847. [
  8848. {
  8849. name: "Mortal",
  8850. height: math.unit(7 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Battle",
  8854. height: math.unit(25 + 11 / 12, "feet")
  8855. },
  8856. {
  8857. name: "Wrath",
  8858. height: math.unit(1654 + 11 / 12, "feet")
  8859. },
  8860. {
  8861. name: "Planet Destroyer",
  8862. height: math.unit(12000, "miles")
  8863. },
  8864. {
  8865. name: "Galaxy Conqueror",
  8866. height: math.unit(1.45, "zettameters"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Universal War",
  8871. height: math.unit(184, "gigaparsecs")
  8872. },
  8873. {
  8874. name: "Eternity War",
  8875. height: math.unit(1.98e55, "yottaparsecs")
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(5 + 8 / 12, "feet"),
  8884. weight: math.unit(63, "kg"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/xavier/front.svg",
  8888. extra: 944 / 883
  8889. }
  8890. },
  8891. frontStretch: {
  8892. height: math.unit(5 + 8 / 12, "feet"),
  8893. weight: math.unit(63, "kg"),
  8894. name: "Stretching",
  8895. image: {
  8896. source: "./media/characters/xavier/front-stretch.svg",
  8897. extra: 962 / 820
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(5 + 8 / 12, "feet")
  8905. },
  8906. {
  8907. name: "Macro",
  8908. height: math.unit(100, "meters"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "McLargeHuge",
  8913. height: math.unit(10, "miles")
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(5 + 5 / 12, "feet"),
  8922. weight: math.unit(150, "lb"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/joshii/front.svg",
  8926. extra: 765 / 653,
  8927. bottom: 51 / 816
  8928. }
  8929. },
  8930. foot: {
  8931. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8932. name: "Foot",
  8933. image: {
  8934. source: "./media/characters/joshii/foot.svg"
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Micro",
  8941. height: math.unit(2, "inches"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(5 + 5 / 12, "feet")
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(785, "feet")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(24.5, "miles")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(150, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/goddess-elizabeth/front.svg",
  8967. extra: 1800 / 1525,
  8968. bottom: 0.005
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/goddess-elizabeth/foot.svg"
  8976. }
  8977. },
  8978. mouth: {
  8979. height: math.unit(6, "feet"),
  8980. name: "Mouth",
  8981. image: {
  8982. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Micro",
  8989. height: math.unit(12, "feet")
  8990. },
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(80, "miles"),
  8994. default: true
  8995. },
  8996. {
  8997. name: "Macro",
  8998. height: math.unit(15000, "parsecs")
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9004. {
  9005. front: {
  9006. height: math.unit(5 + 9 / 12, "feet"),
  9007. weight: math.unit(144, "lb"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/kara/front.svg"
  9011. }
  9012. },
  9013. feet: {
  9014. height: math.unit(6 / 6.765, "feet"),
  9015. name: "Kara's Feet",
  9016. rename: true,
  9017. image: {
  9018. source: "./media/characters/kara/feet.svg"
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(5 + 9 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(174, "feet"),
  9030. default: true
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9036. {
  9037. front: {
  9038. height: math.unit(18, "feet"),
  9039. weight: math.unit(4050, "lb"),
  9040. name: "Front",
  9041. image: {
  9042. source: "./media/characters/tyrone/front.svg",
  9043. extra: 2405 / 2270,
  9044. bottom: 182 / 2587
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(18, "feet"),
  9052. default: true
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(300, "feet")
  9057. },
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(15, "km")
  9061. },
  9062. {
  9063. name: "Gigamacro",
  9064. height: math.unit(500, "km")
  9065. },
  9066. {
  9067. name: "Teramacro",
  9068. height: math.unit(0.5, "gigameters")
  9069. },
  9070. {
  9071. name: "Omnimacro",
  9072. height: math.unit(1e252, "yottauniverse")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(7 + 8 / 12, "feet"),
  9081. weight: math.unit(120, "lb"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/danny/front.svg",
  9085. extra: 1490 / 1350
  9086. }
  9087. },
  9088. back: {
  9089. height: math.unit(7 + 8 / 12, "feet"),
  9090. weight: math.unit(120, "lb"),
  9091. name: "Back",
  9092. image: {
  9093. source: "./media/characters/danny/back.svg",
  9094. extra: 1490 / 1350
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(7 + 8 / 12, "feet"),
  9102. default: true
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9108. {
  9109. front: {
  9110. height: math.unit(3.5, "inches"),
  9111. weight: math.unit(19, "grams"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/mallow/front.svg",
  9115. extra: 471 / 431
  9116. }
  9117. },
  9118. back: {
  9119. height: math.unit(3.5, "inches"),
  9120. weight: math.unit(19, "grams"),
  9121. name: "Back",
  9122. image: {
  9123. source: "./media/characters/mallow/back.svg",
  9124. extra: 471 / 431
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(3.5, "inches"),
  9132. default: true
  9133. },
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9138. {
  9139. front: {
  9140. height: math.unit(9, "feet"),
  9141. weight: math.unit(230, "kg"),
  9142. name: "Front",
  9143. image: {
  9144. source: "./media/characters/starry-aqua/front.svg"
  9145. }
  9146. },
  9147. back: {
  9148. height: math.unit(9, "feet"),
  9149. weight: math.unit(230, "kg"),
  9150. name: "Back",
  9151. image: {
  9152. source: "./media/characters/starry-aqua/back.svg"
  9153. }
  9154. },
  9155. hand: {
  9156. height: math.unit(9 * 0.1168, "feet"),
  9157. name: "Hand",
  9158. image: {
  9159. source: "./media/characters/starry-aqua/hand.svg"
  9160. }
  9161. },
  9162. foot: {
  9163. height: math.unit(9 * 0.18, "feet"),
  9164. name: "Foot",
  9165. image: {
  9166. source: "./media/characters/starry-aqua/foot.svg"
  9167. }
  9168. }
  9169. },
  9170. [
  9171. {
  9172. name: "Micro",
  9173. height: math.unit(3, "inches")
  9174. },
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(9, "feet")
  9178. },
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(300, "feet"),
  9182. default: true
  9183. },
  9184. {
  9185. name: "Megamacro",
  9186. height: math.unit(3200, "feet")
  9187. }
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9192. {
  9193. front: {
  9194. height: math.unit(15, "feet"),
  9195. weight: math.unit(5026, "lb"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/luka-towers/front.svg",
  9199. extra: 1269/1133,
  9200. bottom: 51/1320
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(15, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Minimacro",
  9212. height: math.unit(25, "feet")
  9213. },
  9214. {
  9215. name: "Macro",
  9216. height: math.unit(320, "feet")
  9217. },
  9218. {
  9219. name: "Megamacro",
  9220. height: math.unit(35000, "feet")
  9221. },
  9222. {
  9223. name: "Gigamacro",
  9224. height: math.unit(4000, "miles")
  9225. },
  9226. {
  9227. name: "Teramacro",
  9228. height: math.unit(15000, "miles")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(6, "feet"),
  9237. weight: math.unit(150, "lb"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/natalie-nightring/front.svg",
  9241. extra: 1,
  9242. bottom: 0.06
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Uh Oh",
  9249. height: math.unit(0.1, "mm")
  9250. },
  9251. {
  9252. name: "Small",
  9253. height: math.unit(3, "inches")
  9254. },
  9255. {
  9256. name: "Human Scale",
  9257. height: math.unit(6, "feet")
  9258. },
  9259. {
  9260. name: "Librarian",
  9261. height: math.unit(50, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Immense",
  9266. height: math.unit(200, "miles")
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(6, "feet"),
  9275. weight: math.unit(180, "lbs"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/danni-rosie/front.svg",
  9279. extra: 1260 / 1128,
  9280. bottom: 0.022
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Micro",
  9287. height: math.unit(2, "inches"),
  9288. default: true
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(5 + 9 / 12, "feet"),
  9297. weight: math.unit(220, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/samantha-kruse/front.svg",
  9301. extra: (985 / 935),
  9302. bottom: 0.03
  9303. }
  9304. },
  9305. frontUndressed: {
  9306. height: math.unit(5 + 9 / 12, "feet"),
  9307. weight: math.unit(220, "lb"),
  9308. name: "Front (Undressed)",
  9309. image: {
  9310. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9311. extra: (973 / 923),
  9312. bottom: 0.025
  9313. }
  9314. },
  9315. fat: {
  9316. height: math.unit(5 + 9 / 12, "feet"),
  9317. weight: math.unit(900, "lb"),
  9318. name: "Front (Fat)",
  9319. image: {
  9320. source: "./media/characters/samantha-kruse/fat.svg",
  9321. extra: 2688 / 2561
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(5 + 9 / 12, "feet"),
  9329. default: true
  9330. }
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9335. {
  9336. back: {
  9337. height: math.unit(5 + 4 / 12, "feet"),
  9338. weight: math.unit(4963, "lb"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/amelia-rosie/back.svg",
  9342. extra: 1113 / 963,
  9343. bottom: 0.01
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Level 0",
  9350. height: math.unit(5 + 4 / 12, "feet")
  9351. },
  9352. {
  9353. name: "Level 1",
  9354. height: math.unit(164597, "feet"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Level 2",
  9359. height: math.unit(956243, "miles")
  9360. },
  9361. {
  9362. name: "Level 3",
  9363. height: math.unit(29421709423, "miles")
  9364. },
  9365. {
  9366. name: "Level 4",
  9367. height: math.unit(154, "lightyears")
  9368. },
  9369. {
  9370. name: "Level 5",
  9371. height: math.unit(4738272, "lightyears")
  9372. },
  9373. {
  9374. name: "Level 6",
  9375. height: math.unit(145787152896, "lightyears")
  9376. },
  9377. ]
  9378. ))
  9379. characterMakers.push(() => makeCharacter(
  9380. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9381. {
  9382. front: {
  9383. height: math.unit(5 + 11 / 12, "feet"),
  9384. weight: math.unit(65, "kg"),
  9385. name: "Front",
  9386. image: {
  9387. source: "./media/characters/rook-kitara/front.svg",
  9388. extra: 1347 / 1274,
  9389. bottom: 0.005
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Totally Unfair",
  9396. height: math.unit(1.8, "mm")
  9397. },
  9398. {
  9399. name: "Lap Rookie",
  9400. height: math.unit(1.4, "feet")
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(5 + 11 / 12, "feet"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "How Did This Happen",
  9409. height: math.unit(80, "miles")
  9410. }
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(7, "feet"),
  9418. weight: math.unit(300, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/pisces/front.svg",
  9422. extra: 2255 / 2115,
  9423. bottom: 0.03
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(7, "feet"),
  9428. weight: math.unit(300, "lb"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/pisces/back.svg",
  9432. extra: 2146 / 2055,
  9433. bottom: 0.04
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(7, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Swimming Pool",
  9445. height: math.unit(12.2, "meters")
  9446. },
  9447. {
  9448. name: "Olympic Swimming Pool",
  9449. height: math.unit(56.3, "meters")
  9450. },
  9451. {
  9452. name: "Lake Superior",
  9453. height: math.unit(93900, "meters")
  9454. },
  9455. {
  9456. name: "Mediterranean Sea",
  9457. height: math.unit(644457, "meters")
  9458. },
  9459. {
  9460. name: "World's Oceans",
  9461. height: math.unit(4567491, "meters")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(2.3, "meters"),
  9470. weight: math.unit(120, "kg"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/zelas/front.svg"
  9474. }
  9475. },
  9476. side: {
  9477. height: math.unit(2.3, "meters"),
  9478. weight: math.unit(120, "kg"),
  9479. name: "Side",
  9480. image: {
  9481. source: "./media/characters/zelas/side.svg"
  9482. }
  9483. },
  9484. back: {
  9485. height: math.unit(2.3, "meters"),
  9486. weight: math.unit(120, "kg"),
  9487. name: "Back",
  9488. image: {
  9489. source: "./media/characters/zelas/back.svg"
  9490. }
  9491. },
  9492. foot: {
  9493. height: math.unit(1.116, "feet"),
  9494. name: "Foot",
  9495. image: {
  9496. source: "./media/characters/zelas/foot.svg"
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Normal",
  9503. height: math.unit(2.3, "meters")
  9504. },
  9505. {
  9506. name: "Macro",
  9507. height: math.unit(30, "meters"),
  9508. default: true
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9514. {
  9515. front: {
  9516. height: math.unit(1, "inch"),
  9517. weight: math.unit(0.21, "grams"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/talbot/front.svg",
  9521. extra: 594 / 544
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Micro",
  9528. height: math.unit(1, "inch"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9535. {
  9536. front: {
  9537. height: math.unit(3 + 3 / 12, "feet"),
  9538. weight: math.unit(51.8, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/fliss/front.svg",
  9542. extra: 840 / 640
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Teeny Tiny",
  9549. height: math.unit(1, "mm")
  9550. },
  9551. {
  9552. name: "Small",
  9553. height: math.unit(1, "inch"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Standard Sylveon",
  9558. height: math.unit(3 + 3 / 12, "feet")
  9559. },
  9560. {
  9561. name: "Large Nuisance",
  9562. height: math.unit(33, "feet")
  9563. },
  9564. {
  9565. name: "City Filler",
  9566. height: math.unit(3000, "feet")
  9567. },
  9568. {
  9569. name: "New Horizon",
  9570. height: math.unit(6000, "miles")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5, "cm"),
  9579. weight: math.unit(1.94, "g"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/fleta/front.svg",
  9583. extra: 835 / 803
  9584. }
  9585. },
  9586. back: {
  9587. height: math.unit(5, "cm"),
  9588. weight: math.unit(1.94, "g"),
  9589. name: "Back",
  9590. image: {
  9591. source: "./media/characters/fleta/back.svg",
  9592. extra: 835 / 803
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Micro",
  9599. height: math.unit(5, "cm"),
  9600. default: true
  9601. },
  9602. ]
  9603. ))
  9604. characterMakers.push(() => makeCharacter(
  9605. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9606. {
  9607. front: {
  9608. height: math.unit(6, "feet"),
  9609. weight: math.unit(225, "lb"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/dominic/front.svg",
  9613. extra: 1770 / 1620,
  9614. bottom: 0.025
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(6, "feet"),
  9619. weight: math.unit(225, "lb"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/dominic/back.svg",
  9623. extra: 1745 / 1620,
  9624. bottom: 0.065
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Nano",
  9631. height: math.unit(0.1, "mm")
  9632. },
  9633. {
  9634. name: "Micro-",
  9635. height: math.unit(1, "mm")
  9636. },
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(4, "inches")
  9640. },
  9641. {
  9642. name: "Normal",
  9643. height: math.unit(6 + 4 / 12, "feet"),
  9644. default: true
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(115, "feet")
  9649. },
  9650. {
  9651. name: "Macro+",
  9652. height: math.unit(955, "feet")
  9653. },
  9654. {
  9655. name: "Megamacro",
  9656. height: math.unit(8990, "feet")
  9657. },
  9658. {
  9659. name: "Gigmacro",
  9660. height: math.unit(9310, "miles")
  9661. },
  9662. {
  9663. name: "Teramacro",
  9664. height: math.unit(1567005010, "miles")
  9665. },
  9666. {
  9667. name: "Examacro",
  9668. height: math.unit(1425, "parsecs")
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(400, "feet"),
  9677. weight: math.unit(44444444, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/major-colonel/front.svg"
  9681. }
  9682. },
  9683. back: {
  9684. height: math.unit(400, "feet"),
  9685. weight: math.unit(44444444, "lb"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/major-colonel/back.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(400, "feet"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9702. {
  9703. catFront: {
  9704. height: math.unit(6, "feet"),
  9705. weight: math.unit(120, "lb"),
  9706. name: "Front (Cat Side)",
  9707. image: {
  9708. source: "./media/characters/axel-lycan/cat-front.svg",
  9709. extra: 430 / 402,
  9710. bottom: 43 / 472.35
  9711. }
  9712. },
  9713. catBack: {
  9714. height: math.unit(6, "feet"),
  9715. weight: math.unit(120, "lb"),
  9716. name: "Back (Cat Side)",
  9717. image: {
  9718. source: "./media/characters/axel-lycan/cat-back.svg",
  9719. extra: 447 / 419,
  9720. bottom: 23.3 / 469
  9721. }
  9722. },
  9723. wolfFront: {
  9724. height: math.unit(6, "feet"),
  9725. weight: math.unit(120, "lb"),
  9726. name: "Front (Wolf Side)",
  9727. image: {
  9728. source: "./media/characters/axel-lycan/wolf-front.svg",
  9729. extra: 485 / 456,
  9730. bottom: 19 / 504
  9731. }
  9732. },
  9733. wolfBack: {
  9734. height: math.unit(6, "feet"),
  9735. weight: math.unit(120, "lb"),
  9736. name: "Back (Wolf Side)",
  9737. image: {
  9738. source: "./media/characters/axel-lycan/wolf-back.svg",
  9739. extra: 475 / 438,
  9740. bottom: 39.2 / 514
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(1, "km"),
  9748. default: true
  9749. },
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(5 + 9 / 12, "feet"),
  9757. weight: math.unit(175, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/vanrel-hyena/front.svg",
  9761. extra: 1086 / 1010,
  9762. bottom: 0.04
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Normal",
  9769. height: math.unit(5 + 9 / 12, "feet"),
  9770. default: true
  9771. },
  9772. ]
  9773. ))
  9774. characterMakers.push(() => makeCharacter(
  9775. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9776. {
  9777. front: {
  9778. height: math.unit(6, "feet"),
  9779. weight: math.unit(103, "lb"),
  9780. name: "Front",
  9781. image: {
  9782. source: "./media/characters/abbott-absol/front.svg",
  9783. extra: 2010 / 1842
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Megamicro",
  9790. height: math.unit(0.1, "mm")
  9791. },
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(1, "inch")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(6, "feet"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(6, "feet"),
  9808. weight: math.unit(264, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/hector/front.svg",
  9812. extra: 2280 / 2130,
  9813. bottom: 0.07
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(12.25, "foot"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(160, "feet")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(150, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/sal/front.svg",
  9838. extra: 1846 / 1699,
  9839. bottom: 0.04
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Megamacro",
  9846. height: math.unit(10, "miles"),
  9847. default: true
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9853. {
  9854. front: {
  9855. height: math.unit(3, "meters"),
  9856. weight: math.unit(450, "kg"),
  9857. name: "front",
  9858. image: {
  9859. source: "./media/characters/ranger/front.svg",
  9860. extra: 2401 / 2243,
  9861. bottom: 0.05
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(3, "meters"),
  9869. default: true
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(14, "feet"),
  9878. weight: math.unit(800, "kg"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/theresa/front.svg",
  9882. extra: 3575 / 3346,
  9883. bottom: 0.03
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(14, "feet"),
  9891. default: true
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9897. {
  9898. front: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(3, "kg"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/ine/front.svg",
  9904. extra: 678 / 539,
  9905. bottom: 0.023
  9906. }
  9907. },
  9908. },
  9909. [
  9910. {
  9911. name: "Normal",
  9912. height: math.unit(2.265, "feet"),
  9913. default: true
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(5, "feet"),
  9922. weight: math.unit(30, "kg"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/vial/front.svg",
  9926. extra: 1365 / 1277,
  9927. bottom: 0.04
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(5, "feet"),
  9935. default: true
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9941. {
  9942. side: {
  9943. height: math.unit(3.4, "meters"),
  9944. weight: math.unit(1000, "lb"),
  9945. name: "Side",
  9946. image: {
  9947. source: "./media/characters/rovoska/side.svg",
  9948. extra: 4403 / 1515
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(3.4, "meters"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(8, "feet"),
  9965. weight: math.unit(315, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/gunner-rotthbauer/front.svg"
  9969. }
  9970. },
  9971. back: {
  9972. height: math.unit(8, "feet"),
  9973. weight: math.unit(315, "lb"),
  9974. name: "Back",
  9975. image: {
  9976. source: "./media/characters/gunner-rotthbauer/back.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(3.5, "inches")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(8, "feet"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(250, "feet")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(1, "AU")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(5 + 5 / 12, "feet"),
  10005. weight: math.unit(140, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/allatia/front.svg",
  10009. extra: 1227 / 1180,
  10010. bottom: 0.027
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(5 + 5 / 12, "feet")
  10018. },
  10019. {
  10020. name: "Macro",
  10021. height: math.unit(250, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(8, "miles")
  10027. }
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10032. {
  10033. front: {
  10034. height: math.unit(6, "feet"),
  10035. weight: math.unit(120, "lb"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/tene/front.svg",
  10039. extra: 814/750,
  10040. bottom: 36/850
  10041. }
  10042. },
  10043. stomping: {
  10044. height: math.unit(2.025, "meters"),
  10045. weight: math.unit(120, "lb"),
  10046. name: "Stomping",
  10047. image: {
  10048. source: "./media/characters/tene/stomping.svg",
  10049. extra: 885/821,
  10050. bottom: 15/900
  10051. }
  10052. },
  10053. sitting: {
  10054. height: math.unit(1, "meter"),
  10055. weight: math.unit(120, "lb"),
  10056. name: "Sitting",
  10057. image: {
  10058. source: "./media/characters/tene/sitting.svg",
  10059. extra: 396/366,
  10060. bottom: 79/475
  10061. }
  10062. },
  10063. smiling: {
  10064. height: math.unit(1.2, "feet"),
  10065. name: "Smiling",
  10066. image: {
  10067. source: "./media/characters/tene/smiling.svg",
  10068. extra: 1364/1071,
  10069. bottom: 0/1364
  10070. }
  10071. },
  10072. smug: {
  10073. height: math.unit(1.3, "feet"),
  10074. name: "Smug",
  10075. image: {
  10076. source: "./media/characters/tene/smug.svg",
  10077. extra: 1323/1082,
  10078. bottom: 0/1323
  10079. }
  10080. },
  10081. feral: {
  10082. height: math.unit(3.9, "feet"),
  10083. weight: math.unit(250, "lb"),
  10084. name: "Feral",
  10085. image: {
  10086. source: "./media/characters/tene/feral.svg",
  10087. extra: 717 / 458,
  10088. bottom: 0.179
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(6, "feet")
  10096. },
  10097. {
  10098. name: "Macro",
  10099. height: math.unit(300, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(5, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10110. {
  10111. side: {
  10112. height: math.unit(6, "feet"),
  10113. name: "Side",
  10114. image: {
  10115. source: "./media/characters/evander/side.svg",
  10116. extra: 877 / 477
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(0.83, "meters"),
  10124. default: true
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(12, "feet"),
  10133. weight: math.unit(1000, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10137. extra: 1762 / 1611
  10138. }
  10139. },
  10140. back: {
  10141. height: math.unit(12, "feet"),
  10142. weight: math.unit(1000, "lb"),
  10143. name: "Back",
  10144. image: {
  10145. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10146. extra: 1762 / 1611
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(12, "feet"),
  10154. default: true
  10155. },
  10156. {
  10157. name: "Kaiju",
  10158. height: math.unit(150, "feet")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/zero-alurus/front.svg"
  10171. }
  10172. },
  10173. back: {
  10174. height: math.unit(6, "feet"),
  10175. weight: math.unit(150, "lb"),
  10176. name: "Back",
  10177. image: {
  10178. source: "./media/characters/zero-alurus/back.svg"
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(5 + 10 / 12, "feet")
  10186. },
  10187. {
  10188. name: "Macro",
  10189. height: math.unit(60, "feet"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Macro+",
  10194. height: math.unit(450, "feet")
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(200, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/mega-shi/front.svg",
  10207. extra: 1279 / 1250,
  10208. bottom: 0.02
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(200, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/mega-shi/back.svg",
  10217. extra: 1279 / 1250,
  10218. bottom: 0.02
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Micro",
  10225. height: math.unit(16 + 6 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Third Dimension",
  10229. height: math.unit(40, "meters")
  10230. },
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(660, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Megamacro",
  10238. height: math.unit(10, "miles")
  10239. },
  10240. {
  10241. name: "Planetary Launch",
  10242. height: math.unit(500, "miles")
  10243. },
  10244. {
  10245. name: "Interstellar",
  10246. height: math.unit(1e9, "miles")
  10247. },
  10248. {
  10249. name: "Leaving the Universe",
  10250. height: math.unit(1, "gigaparsec")
  10251. },
  10252. {
  10253. name: "Travelling Universes",
  10254. height: math.unit(30e15, "parsecs")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(5 + 4/12, "feet"),
  10263. weight: math.unit(120, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/odyssey/front.svg",
  10267. extra: 1747/1571,
  10268. bottom: 47/1794
  10269. }
  10270. },
  10271. side: {
  10272. height: math.unit(5.1, "feet"),
  10273. weight: math.unit(120, "lb"),
  10274. name: "Side",
  10275. image: {
  10276. source: "./media/characters/odyssey/side.svg",
  10277. extra: 1847/1619,
  10278. bottom: 47/1894
  10279. }
  10280. },
  10281. lounging: {
  10282. height: math.unit(1.464, "feet"),
  10283. weight: math.unit(120, "lb"),
  10284. name: "Lounging",
  10285. image: {
  10286. source: "./media/characters/odyssey/lounging.svg",
  10287. extra: 1235/837,
  10288. bottom: 551/1786
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(5 + 4 / 12, "feet")
  10296. },
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(1, "km")
  10300. },
  10301. {
  10302. name: "Megamacro",
  10303. height: math.unit(3000, "km")
  10304. },
  10305. {
  10306. name: "Gigamacro",
  10307. height: math.unit(1, "AU"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Omniversal",
  10312. height: math.unit(100e14, "lightyears")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(300, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/mekuto/front.svg",
  10325. extra: 921 / 832,
  10326. bottom: 0.03
  10327. }
  10328. },
  10329. hand: {
  10330. height: math.unit(6 / 10.24, "feet"),
  10331. name: "Hand",
  10332. image: {
  10333. source: "./media/characters/mekuto/hand.svg"
  10334. }
  10335. },
  10336. foot: {
  10337. height: math.unit(6 / 5.05, "feet"),
  10338. name: "Foot",
  10339. image: {
  10340. source: "./media/characters/mekuto/foot.svg"
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Minimicro",
  10347. height: math.unit(0.2, "inches")
  10348. },
  10349. {
  10350. name: "Micro",
  10351. height: math.unit(1.5, "inches")
  10352. },
  10353. {
  10354. name: "Normal",
  10355. height: math.unit(5 + 11 / 12, "feet"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Minimacro",
  10360. height: math.unit(17 + 9 / 12, "feet")
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(177.5, "feet")
  10365. },
  10366. {
  10367. name: "Megamacro",
  10368. height: math.unit(152, "miles")
  10369. },
  10370. ]
  10371. ))
  10372. characterMakers.push(() => makeCharacter(
  10373. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10374. {
  10375. front: {
  10376. height: math.unit(6.5, "inches"),
  10377. weight: math.unit(13, "oz"),
  10378. name: "Front",
  10379. image: {
  10380. source: "./media/characters/dafydd-tomos/front.svg",
  10381. extra: 2990 / 2603,
  10382. bottom: 0.03
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(6.5, "inches"),
  10390. default: true
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(150, "lb"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/splinter/front.svg",
  10403. extra: 2990 / 2882,
  10404. bottom: 0.04
  10405. }
  10406. },
  10407. back: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(150, "lb"),
  10410. name: "Back",
  10411. image: {
  10412. source: "./media/characters/splinter/back.svg",
  10413. extra: 2990 / 2882,
  10414. bottom: 0.04
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(6, "feet")
  10422. },
  10423. {
  10424. name: "Macro",
  10425. height: math.unit(230, "meters"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(4 + 10 / 12, "feet"),
  10435. weight: math.unit(480, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/snow-gabumon/front.svg",
  10439. extra: 1140 / 963,
  10440. bottom: 0.058
  10441. }
  10442. },
  10443. back: {
  10444. height: math.unit(4 + 10 / 12, "feet"),
  10445. weight: math.unit(480, "lb"),
  10446. name: "Back",
  10447. image: {
  10448. source: "./media/characters/snow-gabumon/back.svg",
  10449. extra: 1115 / 962,
  10450. bottom: 0.041
  10451. }
  10452. },
  10453. frontUndresed: {
  10454. height: math.unit(4 + 10 / 12, "feet"),
  10455. weight: math.unit(480, "lb"),
  10456. name: "Front (Undressed)",
  10457. image: {
  10458. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10459. extra: 1061 / 960,
  10460. bottom: 0.045
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(1, "inch")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(4 + 10 / 12, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(200, "feet")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(120, "miles")
  10481. },
  10482. {
  10483. name: "Gigamacro",
  10484. height: math.unit(9800, "miles")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(1.7, "meters"),
  10493. weight: math.unit(140, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/moody/front.svg",
  10497. extra: 3226 / 3007,
  10498. bottom: 0.087
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Micro",
  10505. height: math.unit(1, "mm")
  10506. },
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(1.7, "meters"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(80, "meters")
  10515. },
  10516. {
  10517. name: "Macro+",
  10518. height: math.unit(500, "meters")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(150, "lb"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/zyas/front.svg",
  10531. extra: 1180 / 1120,
  10532. bottom: 0.045
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(10, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Macro",
  10544. height: math.unit(500, "feet")
  10545. },
  10546. {
  10547. name: "Megamacro",
  10548. height: math.unit(5, "miles")
  10549. },
  10550. {
  10551. name: "Teramacro",
  10552. height: math.unit(150000, "miles")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(150, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/cuon/front.svg",
  10565. extra: 1390 / 1320,
  10566. bottom: 0.008
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(3, "inches")
  10574. },
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(18 + 9 / 12, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(360, "feet")
  10583. },
  10584. {
  10585. name: "Megamacro",
  10586. height: math.unit(360, "miles")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(2.4, "meters"),
  10595. weight: math.unit(70, "kg"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/nyanuxk/front.svg",
  10599. extra: 1172 / 1084,
  10600. bottom: 0.065
  10601. }
  10602. },
  10603. side: {
  10604. height: math.unit(2.4, "meters"),
  10605. weight: math.unit(70, "kg"),
  10606. name: "Side",
  10607. image: {
  10608. source: "./media/characters/nyanuxk/side.svg",
  10609. extra: 1190 / 1132,
  10610. bottom: 0.007
  10611. }
  10612. },
  10613. back: {
  10614. height: math.unit(2.4, "meters"),
  10615. weight: math.unit(70, "kg"),
  10616. name: "Back",
  10617. image: {
  10618. source: "./media/characters/nyanuxk/back.svg",
  10619. extra: 1200 / 1141,
  10620. bottom: 0.015
  10621. }
  10622. },
  10623. foot: {
  10624. height: math.unit(0.52, "meters"),
  10625. name: "Foot",
  10626. image: {
  10627. source: "./media/characters/nyanuxk/foot.svg"
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Micro",
  10634. height: math.unit(2, "cm")
  10635. },
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(2.4, "meters"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Smaller Macro",
  10643. height: math.unit(120, "meters")
  10644. },
  10645. {
  10646. name: "Bigger Macro",
  10647. height: math.unit(1.2, "km")
  10648. },
  10649. {
  10650. name: "Megamacro",
  10651. height: math.unit(15, "kilometers")
  10652. },
  10653. {
  10654. name: "Gigamacro",
  10655. height: math.unit(2000, "km")
  10656. },
  10657. {
  10658. name: "Teramacro",
  10659. height: math.unit(500000, "km")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10665. {
  10666. side: {
  10667. height: math.unit(6, "feet"),
  10668. name: "Side",
  10669. image: {
  10670. source: "./media/characters/ailbhe/side.svg",
  10671. extra: 757 / 464,
  10672. bottom: 0.041
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(1.07, "meters"),
  10680. default: true
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(120, "kg"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/zevulfius/front.svg",
  10693. extra: 965 / 903
  10694. }
  10695. },
  10696. side: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(120, "kg"),
  10699. name: "Side",
  10700. image: {
  10701. source: "./media/characters/zevulfius/side.svg",
  10702. extra: 939 / 900
  10703. }
  10704. },
  10705. back: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(120, "kg"),
  10708. name: "Back",
  10709. image: {
  10710. source: "./media/characters/zevulfius/back.svg",
  10711. extra: 918 / 854,
  10712. bottom: 0.005
  10713. }
  10714. },
  10715. foot: {
  10716. height: math.unit(6 / 3.72, "feet"),
  10717. name: "Foot",
  10718. image: {
  10719. source: "./media/characters/zevulfius/foot.svg"
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(750, "meters")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(20, "km"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Gigamacro",
  10735. height: math.unit(2000, "km")
  10736. },
  10737. {
  10738. name: "Teramacro",
  10739. height: math.unit(250000, "km")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(100, "feet"),
  10748. weight: math.unit(350, "kg"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/rikes/front.svg",
  10752. extra: 1565 / 1483,
  10753. bottom: 0.017
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Macro",
  10760. height: math.unit(100, "feet"),
  10761. default: true
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(8, "feet"),
  10770. weight: math.unit(356, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/adam-silver-mane/front.svg",
  10774. extra: 1036/937,
  10775. bottom: 63/1099
  10776. }
  10777. },
  10778. side: {
  10779. height: math.unit(8, "feet"),
  10780. weight: math.unit(356, "lb"),
  10781. name: "Side",
  10782. image: {
  10783. source: "./media/characters/adam-silver-mane/side.svg",
  10784. extra: 997/901,
  10785. bottom: 59/1056
  10786. }
  10787. },
  10788. frontNsfw: {
  10789. height: math.unit(8, "feet"),
  10790. weight: math.unit(356, "lb"),
  10791. name: "Front (NSFW)",
  10792. image: {
  10793. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10794. extra: 1036/937,
  10795. bottom: 63/1099
  10796. }
  10797. },
  10798. sideNsfw: {
  10799. height: math.unit(8, "feet"),
  10800. weight: math.unit(356, "lb"),
  10801. name: "Side (NSFW)",
  10802. image: {
  10803. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10804. extra: 997/901,
  10805. bottom: 59/1056
  10806. }
  10807. },
  10808. dick: {
  10809. height: math.unit(2.1, "feet"),
  10810. name: "Dick",
  10811. image: {
  10812. source: "./media/characters/adam-silver-mane/dick.svg"
  10813. }
  10814. },
  10815. taur: {
  10816. height: math.unit(16, "feet"),
  10817. weight: math.unit(1500, "kg"),
  10818. name: "Taur",
  10819. image: {
  10820. source: "./media/characters/adam-silver-mane/taur.svg",
  10821. extra: 1713 / 1571,
  10822. bottom: 0.01
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(8, "feet")
  10830. },
  10831. {
  10832. name: "Minimacro",
  10833. height: math.unit(80, "feet")
  10834. },
  10835. {
  10836. name: "MDA",
  10837. height: math.unit(80, "meters")
  10838. },
  10839. {
  10840. name: "Macro",
  10841. height: math.unit(800, "feet"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(8000, "feet")
  10847. },
  10848. {
  10849. name: "Gigamacro",
  10850. height: math.unit(800, "miles")
  10851. },
  10852. {
  10853. name: "Teramacro",
  10854. height: math.unit(80000, "miles")
  10855. },
  10856. {
  10857. name: "Celestial",
  10858. height: math.unit(8e6, "miles")
  10859. },
  10860. {
  10861. name: "Star Dragon",
  10862. height: math.unit(800000, "parsecs")
  10863. },
  10864. {
  10865. name: "Godly",
  10866. height: math.unit(800, "teraparsecs")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/ky'owin/front.svg",
  10879. extra: 3888 / 3068,
  10880. bottom: 0.015
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Normal",
  10887. height: math.unit(6 + 8 / 12, "feet")
  10888. },
  10889. {
  10890. name: "Large",
  10891. height: math.unit(68, "feet")
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(132, "feet")
  10896. },
  10897. {
  10898. name: "Macro+",
  10899. height: math.unit(340, "feet")
  10900. },
  10901. {
  10902. name: "Macro++",
  10903. height: math.unit(680, "feet"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(1, "mile")
  10909. },
  10910. {
  10911. name: "Megamacro+",
  10912. height: math.unit(10, "miles")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(4, "feet"),
  10921. weight: math.unit(50, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/mal/front.svg",
  10925. extra: 785 / 724,
  10926. bottom: 0.07
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(4, "inches")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(4, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(200, "feet")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/jordan-deware/front.svg",
  10955. extra: 1191 / 1012
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Nano",
  10962. height: math.unit(0.01, "mm")
  10963. },
  10964. {
  10965. name: "Minimicro",
  10966. height: math.unit(1, "mm")
  10967. },
  10968. {
  10969. name: "Micro",
  10970. height: math.unit(0.5, "inches")
  10971. },
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(4, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Minimacro",
  10979. height: math.unit(40, "meters")
  10980. },
  10981. {
  10982. name: "Small Macro",
  10983. height: math.unit(400, "meters")
  10984. },
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(4, "miles")
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(40, "miles")
  10992. },
  10993. {
  10994. name: "Megamacro+",
  10995. height: math.unit(400, "miles")
  10996. },
  10997. {
  10998. name: "Gigamacro",
  10999. height: math.unit(400000, "miles")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11005. {
  11006. side: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(150, "lb"),
  11009. name: "Side",
  11010. image: {
  11011. source: "./media/characters/kimiko/side.svg",
  11012. extra: 600 / 358
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(15, "feet"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(220, "feet")
  11025. },
  11026. {
  11027. name: "Macro+",
  11028. height: math.unit(1450, "feet")
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(11500, "feet")
  11033. },
  11034. {
  11035. name: "Gigamacro",
  11036. height: math.unit(9500, "miles")
  11037. },
  11038. {
  11039. name: "Teramacro",
  11040. height: math.unit(2208005005, "miles")
  11041. },
  11042. {
  11043. name: "Examacro",
  11044. height: math.unit(2750, "parsecs")
  11045. },
  11046. {
  11047. name: "Zettamacro",
  11048. height: math.unit(101500, "parsecs")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(70, "kg"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/andrew-sleepy/front.svg"
  11061. }
  11062. },
  11063. side: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(70, "kg"),
  11066. name: "Side",
  11067. image: {
  11068. source: "./media/characters/andrew-sleepy/side.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(1, "mm"),
  11076. default: true
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(150, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/judio/front.svg",
  11089. extra: 1258 / 1110
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(5 + 6 / 12, "feet")
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(1000, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Megamacro",
  11105. height: math.unit(10, "miles")
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11111. {
  11112. frontDressed: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(68, "kg"),
  11115. name: "Front (Dressed)",
  11116. image: {
  11117. source: "./media/characters/nomaxice/front-dressed.svg",
  11118. extra: 1137/824,
  11119. bottom: 74/1211
  11120. }
  11121. },
  11122. frontShorts: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(68, "kg"),
  11125. name: "Front (Shorts)",
  11126. image: {
  11127. source: "./media/characters/nomaxice/front-shorts.svg",
  11128. extra: 1137/824,
  11129. bottom: 74/1211
  11130. }
  11131. },
  11132. back: {
  11133. height: math.unit(6, "feet"),
  11134. weight: math.unit(68, "kg"),
  11135. name: "Back",
  11136. image: {
  11137. source: "./media/characters/nomaxice/back.svg",
  11138. extra: 822/786,
  11139. bottom: 39/861
  11140. }
  11141. },
  11142. hand: {
  11143. height: math.unit(0.565, "feet"),
  11144. name: "Hand",
  11145. image: {
  11146. source: "./media/characters/nomaxice/hand.svg"
  11147. }
  11148. },
  11149. foot: {
  11150. height: math.unit(1, "feet"),
  11151. name: "Foot",
  11152. image: {
  11153. source: "./media/characters/nomaxice/foot.svg"
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Micro",
  11160. height: math.unit(8, "cm")
  11161. },
  11162. {
  11163. name: "Norm",
  11164. height: math.unit(1.82, "m")
  11165. },
  11166. {
  11167. name: "Norm+",
  11168. height: math.unit(8.8, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Big",
  11173. height: math.unit(8, "meters")
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(18, "meters")
  11178. },
  11179. {
  11180. name: "Macro+",
  11181. height: math.unit(88, "meters")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(12, "feet"),
  11190. weight: math.unit(1.5, "tons"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/dydros/front.svg",
  11194. extra: 863 / 800,
  11195. bottom: 0.015
  11196. }
  11197. },
  11198. back: {
  11199. height: math.unit(12, "feet"),
  11200. weight: math.unit(1.5, "tons"),
  11201. name: "Back",
  11202. image: {
  11203. source: "./media/characters/dydros/back.svg",
  11204. extra: 900 / 843,
  11205. bottom: 0.005
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(12, "feet"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(6, "feet"),
  11222. weight: math.unit(100, "kg"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/riggi/front.svg",
  11226. extra: 5787 / 5303
  11227. }
  11228. },
  11229. hyper: {
  11230. height: math.unit(6 * 5 / 3, "feet"),
  11231. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11232. name: "Hyper",
  11233. image: {
  11234. source: "./media/characters/riggi/hyper.svg",
  11235. extra: 3595 / 3485
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Small Macro",
  11242. height: math.unit(50, "feet")
  11243. },
  11244. {
  11245. name: "Default",
  11246. height: math.unit(200, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Loom",
  11251. height: math.unit(10000, "feet")
  11252. },
  11253. {
  11254. name: "Cruising Altitude",
  11255. height: math.unit(30000, "feet")
  11256. },
  11257. {
  11258. name: "Megamacro",
  11259. height: math.unit(100, "miles")
  11260. },
  11261. {
  11262. name: "Continent Sized",
  11263. height: math.unit(2800, "miles")
  11264. },
  11265. {
  11266. name: "Earth Sized",
  11267. height: math.unit(8000, "miles")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(250, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/alexi/front.svg",
  11280. extra: 3483 / 3291,
  11281. bottom: 0.04
  11282. }
  11283. },
  11284. back: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(250, "lb"),
  11287. name: "Back",
  11288. image: {
  11289. source: "./media/characters/alexi/back.svg",
  11290. extra: 3533 / 3356,
  11291. bottom: 0.021
  11292. }
  11293. },
  11294. frontTransforming: {
  11295. height: math.unit(8.58, "feet"),
  11296. weight: math.unit(1300, "lb"),
  11297. name: "Transforming",
  11298. image: {
  11299. source: "./media/characters/alexi/front-transforming.svg",
  11300. extra: 437 / 409,
  11301. bottom: 19 / 458.66
  11302. }
  11303. },
  11304. frontTransformed: {
  11305. height: math.unit(12.5, "feet"),
  11306. weight: math.unit(4000, "lb"),
  11307. name: "Transformed",
  11308. image: {
  11309. source: "./media/characters/alexi/front-transformed.svg",
  11310. extra: 639 / 614,
  11311. bottom: 30.55 / 671
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(14, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Minimacro",
  11323. height: math.unit(30, "meters")
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(500, "meters")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(9000, "km")
  11332. },
  11333. {
  11334. name: "Teramacro",
  11335. height: math.unit(384000, "km")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(150, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/kayroo/front.svg",
  11348. extra: 1153 / 1038,
  11349. bottom: 0.06
  11350. }
  11351. },
  11352. foot: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(150, "lb"),
  11355. name: "Foot",
  11356. image: {
  11357. source: "./media/characters/kayroo/foot.svg"
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(8, "feet"),
  11365. default: true
  11366. },
  11367. {
  11368. name: "Minimacro",
  11369. height: math.unit(250, "feet")
  11370. },
  11371. {
  11372. name: "Macro",
  11373. height: math.unit(2800, "feet")
  11374. },
  11375. {
  11376. name: "Megamacro",
  11377. height: math.unit(5200, "feet")
  11378. },
  11379. {
  11380. name: "Gigamacro",
  11381. height: math.unit(27000, "feet")
  11382. },
  11383. {
  11384. name: "Omega",
  11385. height: math.unit(45000, "feet")
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(18, "feet"),
  11394. weight: math.unit(5800, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/rhys/front.svg",
  11398. extra: 3386 / 3090,
  11399. bottom: 0.07
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(18, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Working Size",
  11411. height: math.unit(200, "feet")
  11412. },
  11413. {
  11414. name: "Demolition Size",
  11415. height: math.unit(2000, "feet")
  11416. },
  11417. {
  11418. name: "Maximum Licensed Size",
  11419. height: math.unit(5, "miles")
  11420. },
  11421. {
  11422. name: "Maximum Observed Size",
  11423. height: math.unit(10, "yottameters")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(250, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/toto/front.svg",
  11436. extra: 527 / 479,
  11437. bottom: 0.05
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "Micro",
  11444. height: math.unit(3, "feet")
  11445. },
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(10, "feet")
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(150, "feet"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Megamacro",
  11457. height: math.unit(1200, "feet")
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "King", species: ["lion"], tags: ["anthro"] },
  11463. {
  11464. back: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Back",
  11468. image: {
  11469. source: "./media/characters/king/back.svg"
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Micro",
  11476. height: math.unit(2, "inches")
  11477. },
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(8, "feet")
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(200, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Megamacro",
  11489. height: math.unit(50, "miles")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(11, "feet"),
  11498. weight: math.unit(1400, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/cordite/front.svg",
  11502. extra: 1919/1827,
  11503. bottom: 40/1959
  11504. }
  11505. },
  11506. side: {
  11507. height: math.unit(11, "feet"),
  11508. weight: math.unit(1400, "lb"),
  11509. name: "Side",
  11510. image: {
  11511. source: "./media/characters/cordite/side.svg",
  11512. extra: 1908/1793,
  11513. bottom: 38/1946
  11514. }
  11515. },
  11516. back: {
  11517. height: math.unit(11, "feet"),
  11518. weight: math.unit(1400, "lb"),
  11519. name: "Back",
  11520. image: {
  11521. source: "./media/characters/cordite/back.svg",
  11522. extra: 1938/1837,
  11523. bottom: 10/1948
  11524. }
  11525. },
  11526. feral: {
  11527. height: math.unit(2, "feet"),
  11528. weight: math.unit(90, "lb"),
  11529. name: "Feral",
  11530. image: {
  11531. source: "./media/characters/cordite/feral.svg",
  11532. extra: 1260 / 755,
  11533. bottom: 0.05
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(11, "feet"),
  11541. default: true
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11547. {
  11548. front: {
  11549. height: math.unit(6, "feet"),
  11550. weight: math.unit(150, "lb"),
  11551. name: "Front",
  11552. image: {
  11553. source: "./media/characters/pianostrong/front.svg",
  11554. extra: 6577 / 6254,
  11555. bottom: 0.02
  11556. }
  11557. },
  11558. side: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(150, "lb"),
  11561. name: "Side",
  11562. image: {
  11563. source: "./media/characters/pianostrong/side.svg",
  11564. extra: 6106 / 5730
  11565. }
  11566. },
  11567. back: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Back",
  11571. image: {
  11572. source: "./media/characters/pianostrong/back.svg",
  11573. extra: 6085 / 5733,
  11574. bottom: 0.01
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Macro",
  11581. height: math.unit(100, "feet")
  11582. },
  11583. {
  11584. name: "Macro+",
  11585. height: math.unit(300, "feet"),
  11586. default: true
  11587. },
  11588. {
  11589. name: "Macro++",
  11590. height: math.unit(1000, "feet")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(150, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/kona/front.svg",
  11603. extra: 2960 / 2629,
  11604. bottom: 0.005
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(11 + 8 / 12, "feet")
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(850, "feet"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Macro+",
  11620. height: math.unit(1.5, "km"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(80, "miles")
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(3500, "miles")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11635. {
  11636. side: {
  11637. height: math.unit(1.9, "meters"),
  11638. weight: math.unit(326, "kg"),
  11639. name: "Side",
  11640. image: {
  11641. source: "./media/characters/levi/side.svg",
  11642. extra: 1704 / 1334,
  11643. bottom: 0.02
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(1.9, "meters"),
  11651. default: true
  11652. },
  11653. {
  11654. name: "Macro",
  11655. height: math.unit(20, "meters")
  11656. },
  11657. {
  11658. name: "Macro+",
  11659. height: math.unit(200, "meters")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(2, "km")
  11664. },
  11665. {
  11666. name: "Megamacro+",
  11667. height: math.unit(20, "km")
  11668. },
  11669. {
  11670. name: "Gigamacro",
  11671. height: math.unit(2500, "km")
  11672. },
  11673. {
  11674. name: "Gigamacro+",
  11675. height: math.unit(120000, "km")
  11676. },
  11677. {
  11678. name: "Teramacro",
  11679. height: math.unit(7.77e6, "km")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(6 + 4/12, "feet"),
  11688. weight: math.unit(190, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/bmc/front.svg",
  11692. extra: 1626/1472,
  11693. bottom: 79/1705
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6 + 4/12, "feet"),
  11698. weight: math.unit(190, "lb"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/bmc/back.svg",
  11702. extra: 1640/1479,
  11703. bottom: 45/1685
  11704. }
  11705. },
  11706. frontArmor: {
  11707. height: math.unit(6 + 4/12, "feet"),
  11708. weight: math.unit(190, "lb"),
  11709. name: "Front-armor",
  11710. image: {
  11711. source: "./media/characters/bmc/front-armor.svg",
  11712. extra: 1538/1468,
  11713. bottom: 79/1617
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Human-sized",
  11720. height: math.unit(6 + 4 / 12, "feet")
  11721. },
  11722. {
  11723. name: "Interactive Size",
  11724. height: math.unit(25, "feet")
  11725. },
  11726. {
  11727. name: "Small",
  11728. height: math.unit(250, "feet")
  11729. },
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(1250, "feet"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Good Day",
  11737. height: math.unit(88, "miles")
  11738. },
  11739. {
  11740. name: "Largest Measured Size",
  11741. height: math.unit(105.960, "galaxies")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(20, "feet"),
  11750. weight: math.unit(2016, "kg"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/sven-the-kaiju/front.svg",
  11754. extra: 1277/1250,
  11755. bottom: 35/1312
  11756. }
  11757. },
  11758. mouth: {
  11759. height: math.unit(1.85, "feet"),
  11760. name: "Mouth",
  11761. image: {
  11762. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Fairy",
  11769. height: math.unit(6, "inches")
  11770. },
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(20, "feet"),
  11774. default: true
  11775. },
  11776. {
  11777. name: "Rampage",
  11778. height: math.unit(200, "feet")
  11779. },
  11780. {
  11781. name: "Archfey Forest Guardian",
  11782. height: math.unit(1, "mile")
  11783. },
  11784. ]
  11785. ))
  11786. characterMakers.push(() => makeCharacter(
  11787. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11788. {
  11789. front: {
  11790. height: math.unit(4, "meters"),
  11791. weight: math.unit(2, "tons"),
  11792. name: "Front",
  11793. image: {
  11794. source: "./media/characters/marik/front.svg",
  11795. extra: 1057 / 1003,
  11796. bottom: 0.08
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Normal",
  11803. height: math.unit(4, "meters"),
  11804. default: true
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(20, "meters")
  11809. },
  11810. {
  11811. name: "Megamacro",
  11812. height: math.unit(50, "km")
  11813. },
  11814. {
  11815. name: "Gigamacro",
  11816. height: math.unit(100, "km")
  11817. },
  11818. {
  11819. name: "Alpha Macro",
  11820. height: math.unit(7.88e7, "yottameters")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(110, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/mel/front.svg",
  11833. extra: 736 / 617,
  11834. bottom: 0.017
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Pico",
  11841. height: math.unit(3, "pm")
  11842. },
  11843. {
  11844. name: "Nano",
  11845. height: math.unit(3, "nm")
  11846. },
  11847. {
  11848. name: "Micro",
  11849. height: math.unit(0.3, "mm"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Micro+",
  11854. height: math.unit(3, "mm")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(5 + 10.5 / 12, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11864. {
  11865. kaiju: {
  11866. height: math.unit(1.75, "meters"),
  11867. weight: math.unit(55, "kg"),
  11868. name: "Kaiju",
  11869. image: {
  11870. source: "./media/characters/lykonous/kaiju.svg",
  11871. extra: 1055 / 946,
  11872. bottom: 0.135
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(2.5, "meters"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Kaiju Dragon",
  11884. height: math.unit(60, "meters")
  11885. },
  11886. {
  11887. name: "Mega Kaiju",
  11888. height: math.unit(120, "km")
  11889. },
  11890. {
  11891. name: "Giga Kaiju",
  11892. height: math.unit(200, "megameters")
  11893. },
  11894. {
  11895. name: "Terra Kaiju",
  11896. height: math.unit(400, "gigameters")
  11897. },
  11898. {
  11899. name: "Kaiju Dragon God",
  11900. height: math.unit(13000, "exaparsecs")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(150, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/blü/front.svg",
  11913. extra: 1883 / 1564,
  11914. bottom: 0.031
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Normal",
  11921. height: math.unit(13, "feet"),
  11922. default: true
  11923. },
  11924. {
  11925. name: "Big Boi",
  11926. height: math.unit(150, "meters")
  11927. },
  11928. {
  11929. name: "Mini Stomper",
  11930. height: math.unit(300, "meters")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(1000, "meters")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(11000, "meters")
  11939. },
  11940. {
  11941. name: "Gigamacro",
  11942. height: math.unit(11000, "km")
  11943. },
  11944. {
  11945. name: "Teramacro",
  11946. height: math.unit(420000, "km")
  11947. },
  11948. {
  11949. name: "Examacro",
  11950. height: math.unit(120, "parsecs")
  11951. },
  11952. {
  11953. name: "God Tho",
  11954. height: math.unit(98000000000, "parsecs")
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11960. {
  11961. taurFront: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(200, "lb"),
  11964. name: "Taur (Front)",
  11965. image: {
  11966. source: "./media/characters/scales/taur-front.svg",
  11967. extra: 1,
  11968. bottom: 0.05
  11969. }
  11970. },
  11971. taurBack: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(200, "lb"),
  11974. name: "Taur (Back)",
  11975. image: {
  11976. source: "./media/characters/scales/taur-back.svg",
  11977. extra: 1,
  11978. bottom: 0.08
  11979. }
  11980. },
  11981. anthro: {
  11982. height: math.unit(6 * 7 / 12, "feet"),
  11983. weight: math.unit(100, "lb"),
  11984. name: "Anthro",
  11985. image: {
  11986. source: "./media/characters/scales/anthro.svg",
  11987. extra: 1,
  11988. bottom: 0.06
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(12, "feet"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(6, "feet"),
  12005. weight: math.unit(150, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/koragos/front.svg",
  12009. extra: 841 / 794,
  12010. bottom: 0.035
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(6, "feet"),
  12015. weight: math.unit(150, "lb"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/koragos/back.svg",
  12019. extra: 841 / 810,
  12020. bottom: 0.022
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(6 + 11 / 12, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(490, "feet")
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(10, "miles")
  12037. },
  12038. {
  12039. name: "Gigamacro",
  12040. height: math.unit(50, "miles")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(250, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/xylrem/front.svg",
  12053. extra: 3323 / 3050,
  12054. bottom: 0.065
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Micro",
  12061. height: math.unit(4, "feet")
  12062. },
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(16, "feet"),
  12066. default: true
  12067. },
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(2720, "feet")
  12071. },
  12072. {
  12073. name: "Megamacro",
  12074. height: math.unit(25000, "miles")
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(8, "feet"),
  12083. weight: math.unit(250, "kg"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/ikideru/front.svg",
  12087. extra: 930 / 870,
  12088. bottom: 0.087
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(8, "feet"),
  12093. weight: math.unit(250, "kg"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/ikideru/back.svg",
  12097. extra: 919 / 852,
  12098. bottom: 0.055
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Rare",
  12105. height: math.unit(8, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Playful Loom",
  12110. height: math.unit(80, "feet")
  12111. },
  12112. {
  12113. name: "City Leaner",
  12114. height: math.unit(230, "feet")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(2500, "feet")
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(26400, "feet")
  12123. },
  12124. {
  12125. name: "Tectonic Shifter",
  12126. height: math.unit(1.7, "megameters")
  12127. },
  12128. {
  12129. name: "Planet Carer",
  12130. height: math.unit(21, "megameters")
  12131. },
  12132. {
  12133. name: "God",
  12134. height: math.unit(11157.22, "parsecs")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(120, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/neo/front.svg"
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Micro",
  12153. height: math.unit(2, "inches"),
  12154. default: true
  12155. },
  12156. {
  12157. name: "Human Size",
  12158. height: math.unit(5 + 8 / 12, "feet")
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(13 + 10 / 12, "feet"),
  12167. weight: math.unit(5320, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/chauncey-chantz/front.svg",
  12171. extra: 1587 / 1435,
  12172. bottom: 0.02
  12173. }
  12174. },
  12175. },
  12176. [
  12177. {
  12178. name: "Normal",
  12179. height: math.unit(13 + 10 / 12, "feet"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Macro",
  12184. height: math.unit(45, "feet")
  12185. },
  12186. {
  12187. name: "Megamacro",
  12188. height: math.unit(250, "miles")
  12189. },
  12190. {
  12191. name: "Planetary",
  12192. height: math.unit(10000, "miles")
  12193. },
  12194. {
  12195. name: "Galactic",
  12196. height: math.unit(40000, "parsecs")
  12197. },
  12198. {
  12199. name: "Universal",
  12200. height: math.unit(1, "yottameter")
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12206. {
  12207. front: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(150, "lb"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/epifox/front.svg",
  12213. extra: 1,
  12214. bottom: 0.075
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(6, "inches")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(12, "feet"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(3810, "feet")
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(500, "miles")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(1.8796, "m"),
  12243. weight: math.unit(230, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/colin-t/front.svg",
  12247. extra: 1272 / 1193,
  12248. bottom: 0.07
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Micro",
  12255. height: math.unit(0.571, "meters")
  12256. },
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(1.8796, "meters"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Tall",
  12264. height: math.unit(4, "meters")
  12265. },
  12266. {
  12267. name: "Macro",
  12268. height: math.unit(67.241, "meters")
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(371.856, "meters")
  12273. },
  12274. {
  12275. name: "Planetary",
  12276. height: math.unit(12631.5689, "km")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(1.85, "meters"),
  12285. weight: math.unit(80, "kg"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/matvei/front.svg",
  12289. extra: 614 / 594,
  12290. bottom: 0.01
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(1.85, "meters"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(5 + 9 / 12, "feet"),
  12307. weight: math.unit(70, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/quincy/front.svg",
  12311. extra: 3041 / 2751
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(5 + 9 / 12, "feet"),
  12316. weight: math.unit(70, "lb"),
  12317. name: "Back",
  12318. image: {
  12319. source: "./media/characters/quincy/back.svg",
  12320. extra: 3041 / 2751
  12321. }
  12322. },
  12323. flying: {
  12324. height: math.unit(5 + 4 / 12, "feet"),
  12325. weight: math.unit(70, "lb"),
  12326. name: "Flying",
  12327. image: {
  12328. source: "./media/characters/quincy/flying.svg",
  12329. extra: 1044 / 930
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Micro",
  12336. height: math.unit(3, "cm")
  12337. },
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(5 + 9 / 12, "feet")
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(200, "meters"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(1000, "meters")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(3 + 11/12, "feet"),
  12358. weight: math.unit(50, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/vanrel/front.svg",
  12362. extra: 1104/949,
  12363. bottom: 52/1156
  12364. }
  12365. },
  12366. back: {
  12367. height: math.unit(3 + 11/12, "feet"),
  12368. weight: math.unit(50, "lb"),
  12369. name: "Back",
  12370. image: {
  12371. source: "./media/characters/vanrel/back.svg",
  12372. extra: 1119/976,
  12373. bottom: 37/1156
  12374. }
  12375. },
  12376. tome: {
  12377. height: math.unit(1.35, "feet"),
  12378. weight: math.unit(10, "lb"),
  12379. name: "Vanrel's Tome",
  12380. rename: true,
  12381. image: {
  12382. source: "./media/characters/vanrel/tome.svg"
  12383. }
  12384. },
  12385. beans: {
  12386. height: math.unit(0.89, "feet"),
  12387. name: "Beans",
  12388. image: {
  12389. source: "./media/characters/vanrel/beans.svg"
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Normal",
  12396. height: math.unit(3 + 11/12, "feet"),
  12397. default: true
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(7 + 5 / 12, "feet"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/kuiper-vanrel/front.svg",
  12409. extra: 1219/1169,
  12410. bottom: 69/1288
  12411. }
  12412. },
  12413. back: {
  12414. height: math.unit(7 + 5 / 12, "feet"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/kuiper-vanrel/back.svg",
  12418. extra: 1236/1193,
  12419. bottom: 27/1263
  12420. }
  12421. },
  12422. foot: {
  12423. height: math.unit(0.55, "meters"),
  12424. name: "Foot",
  12425. image: {
  12426. source: "./media/characters/kuiper-vanrel/foot.svg",
  12427. }
  12428. },
  12429. battle: {
  12430. height: math.unit(6.824, "feet"),
  12431. name: "Battle",
  12432. image: {
  12433. source: "./media/characters/kuiper-vanrel/battle.svg",
  12434. extra: 1466 / 1327,
  12435. bottom: 29 / 1492.5
  12436. }
  12437. },
  12438. meerkui: {
  12439. height: math.unit(18, "inches"),
  12440. name: "Meerkui",
  12441. image: {
  12442. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12443. extra: 1354/1289,
  12444. bottom: 69/1423
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(7 + 5 / 12, "feet"),
  12452. default: true
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(8 + 5 / 12, "feet"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/keset-vanrel/front.svg",
  12464. extra: 1231/1148,
  12465. bottom: 82/1313
  12466. }
  12467. },
  12468. back: {
  12469. height: math.unit(8 + 5 / 12, "feet"),
  12470. name: "Back",
  12471. image: {
  12472. source: "./media/characters/keset-vanrel/back.svg",
  12473. extra: 1240/1174,
  12474. bottom: 33/1273
  12475. }
  12476. },
  12477. hand: {
  12478. height: math.unit(0.6, "meters"),
  12479. name: "Hand",
  12480. image: {
  12481. source: "./media/characters/keset-vanrel/hand.svg"
  12482. }
  12483. },
  12484. foot: {
  12485. height: math.unit(0.94978, "meters"),
  12486. name: "Foot",
  12487. image: {
  12488. source: "./media/characters/keset-vanrel/foot.svg"
  12489. }
  12490. },
  12491. battle: {
  12492. height: math.unit(7.408, "feet"),
  12493. name: "Battle",
  12494. image: {
  12495. source: "./media/characters/keset-vanrel/battle.svg",
  12496. extra: 1890 / 1386,
  12497. bottom: 73.28 / 1970
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(8 + 5 / 12, "feet"),
  12505. default: true
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(6, "feet"),
  12514. weight: math.unit(150, "lb"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/neos/front.svg",
  12518. extra: 1696 / 992,
  12519. bottom: 0.14
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Normal",
  12526. height: math.unit(54, "cm"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(100, "m")
  12532. },
  12533. {
  12534. name: "Megamacro",
  12535. height: math.unit(10, "km")
  12536. },
  12537. {
  12538. name: "Megamacro+",
  12539. height: math.unit(100, "km")
  12540. },
  12541. {
  12542. name: "Gigamacro",
  12543. height: math.unit(100, "Mm")
  12544. },
  12545. {
  12546. name: "Teramacro",
  12547. height: math.unit(100, "Gm")
  12548. },
  12549. {
  12550. name: "Examacro",
  12551. height: math.unit(100, "Em")
  12552. },
  12553. {
  12554. name: "Godly",
  12555. height: math.unit(10000, "Ym")
  12556. },
  12557. {
  12558. name: "Beyond Godly",
  12559. height: math.unit(25, "multiverses")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12565. {
  12566. feminine: {
  12567. height: math.unit(5, "feet"),
  12568. weight: math.unit(100, "lb"),
  12569. name: "Feminine",
  12570. image: {
  12571. source: "./media/characters/sammy-mouse/feminine.svg",
  12572. extra: 2526 / 2425,
  12573. bottom: 0.123
  12574. }
  12575. },
  12576. masculine: {
  12577. height: math.unit(5, "feet"),
  12578. weight: math.unit(100, "lb"),
  12579. name: "Masculine",
  12580. image: {
  12581. source: "./media/characters/sammy-mouse/masculine.svg",
  12582. extra: 2526 / 2425,
  12583. bottom: 0.123
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Micro",
  12590. height: math.unit(5, "inches")
  12591. },
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(5, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Macro",
  12599. height: math.unit(60, "feet")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12605. {
  12606. front: {
  12607. height: math.unit(4, "feet"),
  12608. weight: math.unit(50, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/kole/front.svg",
  12612. extra: 1423 / 1303,
  12613. bottom: 0.025
  12614. }
  12615. },
  12616. back: {
  12617. height: math.unit(4, "feet"),
  12618. weight: math.unit(50, "lb"),
  12619. name: "Back",
  12620. image: {
  12621. source: "./media/characters/kole/back.svg",
  12622. extra: 1426 / 1280,
  12623. bottom: 0.02
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(4, "feet"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(2.5, "feet"),
  12640. weight: math.unit(32, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/rufran/front.svg",
  12644. extra: 1313/885,
  12645. bottom: 94/1407
  12646. }
  12647. },
  12648. side: {
  12649. height: math.unit(2.5, "feet"),
  12650. weight: math.unit(32, "lb"),
  12651. name: "Side",
  12652. image: {
  12653. source: "./media/characters/rufran/side.svg",
  12654. extra: 1109/852,
  12655. bottom: 118/1227
  12656. }
  12657. },
  12658. back: {
  12659. height: math.unit(2.5, "feet"),
  12660. weight: math.unit(32, "lb"),
  12661. name: "Back",
  12662. image: {
  12663. source: "./media/characters/rufran/back.svg",
  12664. extra: 1280/878,
  12665. bottom: 131/1411
  12666. }
  12667. },
  12668. mouth: {
  12669. height: math.unit(1.13, "feet"),
  12670. name: "Mouth",
  12671. image: {
  12672. source: "./media/characters/rufran/mouth.svg"
  12673. }
  12674. },
  12675. foot: {
  12676. height: math.unit(1.33, "feet"),
  12677. name: "Foot",
  12678. image: {
  12679. source: "./media/characters/rufran/foot.svg"
  12680. }
  12681. },
  12682. koboldFront: {
  12683. height: math.unit(2 + 6 / 12, "feet"),
  12684. weight: math.unit(20, "lb"),
  12685. name: "Front (Kobold)",
  12686. image: {
  12687. source: "./media/characters/rufran/kobold-front.svg",
  12688. extra: 2041 / 1839,
  12689. bottom: 0.055
  12690. }
  12691. },
  12692. koboldBack: {
  12693. height: math.unit(2 + 6 / 12, "feet"),
  12694. weight: math.unit(20, "lb"),
  12695. name: "Back (Kobold)",
  12696. image: {
  12697. source: "./media/characters/rufran/kobold-back.svg",
  12698. extra: 2054 / 1839,
  12699. bottom: 0.01
  12700. }
  12701. },
  12702. koboldHand: {
  12703. height: math.unit(0.2166, "meters"),
  12704. name: "Hand (Kobold)",
  12705. image: {
  12706. source: "./media/characters/rufran/kobold-hand.svg"
  12707. }
  12708. },
  12709. koboldFoot: {
  12710. height: math.unit(0.185, "meters"),
  12711. name: "Foot (Kobold)",
  12712. image: {
  12713. source: "./media/characters/rufran/kobold-foot.svg"
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Micro",
  12720. height: math.unit(1, "inch")
  12721. },
  12722. {
  12723. name: "Normal",
  12724. height: math.unit(2 + 6 / 12, "feet"),
  12725. default: true
  12726. },
  12727. {
  12728. name: "Big",
  12729. height: math.unit(60, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(325, "feet")
  12734. },
  12735. ]
  12736. ))
  12737. characterMakers.push(() => makeCharacter(
  12738. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12739. {
  12740. front: {
  12741. height: math.unit(0.3, "meters"),
  12742. weight: math.unit(3.5, "kg"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/chip/front.svg",
  12746. extra: 748 / 674
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Micro",
  12753. height: math.unit(1, "inch"),
  12754. default: true
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12760. {
  12761. side: {
  12762. height: math.unit(2.3, "meters"),
  12763. weight: math.unit(3500, "lb"),
  12764. name: "Side",
  12765. image: {
  12766. source: "./media/characters/torvid/side.svg",
  12767. extra: 1972 / 722,
  12768. bottom: 0.035
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Normal",
  12775. height: math.unit(2.3, "meters"),
  12776. default: true
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(2, "meters"),
  12785. weight: math.unit(150.5, "kg"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/susan/front.svg",
  12789. extra: 693 / 635,
  12790. bottom: 0.05
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Megamacro",
  12797. height: math.unit(505, "miles"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/raindrops/front.svg",
  12811. extra: 2655 / 2461,
  12812. bottom: 49 / 2705
  12813. }
  12814. },
  12815. back: {
  12816. height: math.unit(6, "feet"),
  12817. weight: math.unit(150, "lb"),
  12818. name: "Back",
  12819. image: {
  12820. source: "./media/characters/raindrops/back.svg",
  12821. extra: 2574 / 2400,
  12822. bottom: 65 / 2634
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Micro",
  12829. height: math.unit(6, "inches")
  12830. },
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(6 + 2 / 12, "feet")
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(131, "feet"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Megamacro",
  12842. height: math.unit(15, "miles")
  12843. },
  12844. {
  12845. name: "Gigamacro",
  12846. height: math.unit(4000, "miles")
  12847. },
  12848. {
  12849. name: "Teramacro",
  12850. height: math.unit(315000, "miles")
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(2.794, "meters"),
  12859. weight: math.unit(325, "kg"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/tezwa/front.svg",
  12863. extra: 2083 / 1906,
  12864. bottom: 0.031
  12865. }
  12866. },
  12867. foot: {
  12868. height: math.unit(0.687, "meters"),
  12869. name: "Foot",
  12870. image: {
  12871. source: "./media/characters/tezwa/foot.svg"
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(9 + 2 / 12, "feet"),
  12879. default: true
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(58, "feet"),
  12888. weight: math.unit(89000, "lb"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/typhus/front.svg",
  12892. extra: 816 / 800,
  12893. bottom: 0.065
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(58, "feet"),
  12901. default: true
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(12, "feet"),
  12910. weight: math.unit(6, "tonnes"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/lyra-von-wulf/front.svg",
  12914. extra: 1,
  12915. bottom: 0.10
  12916. }
  12917. },
  12918. frontMecha: {
  12919. height: math.unit(12, "feet"),
  12920. weight: math.unit(12, "tonnes"),
  12921. name: "Front (Mecha)",
  12922. image: {
  12923. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12924. extra: 1,
  12925. bottom: 0.042
  12926. }
  12927. },
  12928. maw: {
  12929. height: math.unit(2.2, "feet"),
  12930. name: "Maw",
  12931. image: {
  12932. source: "./media/characters/lyra-von-wulf/maw.svg"
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Normal",
  12939. height: math.unit(12, "feet"),
  12940. default: true
  12941. },
  12942. {
  12943. name: "Classic",
  12944. height: math.unit(50, "feet")
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(500, "feet")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(1, "mile")
  12953. },
  12954. {
  12955. name: "Gigamacro",
  12956. height: math.unit(400, "miles")
  12957. },
  12958. {
  12959. name: "Teramacro",
  12960. height: math.unit(22000, "miles")
  12961. },
  12962. {
  12963. name: "Solarmacro",
  12964. height: math.unit(8600000, "miles")
  12965. },
  12966. {
  12967. name: "Galactic",
  12968. height: math.unit(1057000, "lightyears")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(6 + 10 / 12, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/dixon/front.svg",
  12981. extra: 3361 / 3209,
  12982. bottom: 0.01
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(6 + 10 / 12, "feet"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Big",
  12994. height: math.unit(12, "meters")
  12995. },
  12996. {
  12997. name: "Macro",
  12998. height: math.unit(500, "meters")
  12999. },
  13000. {
  13001. name: "Megamacro",
  13002. height: math.unit(2, "km")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(185, "cm"),
  13011. weight: math.unit(68, "kg"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/kauko/front.svg",
  13015. extra: 1455 / 1421,
  13016. bottom: 0.03
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(185, "cm"),
  13021. weight: math.unit(68, "kg"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/kauko/back.svg",
  13025. extra: 1455 / 1421,
  13026. bottom: 0.004
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(185, "cm"),
  13034. default: true
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "kg"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/varg/front.svg",
  13047. extra: 1108 / 1018,
  13048. bottom: 0.0375
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(5, "meters")
  13056. },
  13057. {
  13058. name: "Macro",
  13059. height: math.unit(200, "meters")
  13060. },
  13061. {
  13062. name: "Megamacro",
  13063. height: math.unit(20, "kilometers")
  13064. },
  13065. {
  13066. name: "True Size",
  13067. height: math.unit(211, "km"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Gigamacro",
  13072. height: math.unit(1000, "km")
  13073. },
  13074. {
  13075. name: "Gigamacro+",
  13076. height: math.unit(8000, "km")
  13077. },
  13078. {
  13079. name: "Teramacro",
  13080. height: math.unit(1000000, "km")
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(7 + 7 / 12, "feet"),
  13089. weight: math.unit(267, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/dayza/front.svg",
  13093. extra: 1262 / 1200,
  13094. bottom: 0.035
  13095. }
  13096. },
  13097. side: {
  13098. height: math.unit(7 + 7 / 12, "feet"),
  13099. weight: math.unit(267, "lb"),
  13100. name: "Side",
  13101. image: {
  13102. source: "./media/characters/dayza/side.svg",
  13103. extra: 1295 / 1245,
  13104. bottom: 0.05
  13105. }
  13106. },
  13107. back: {
  13108. height: math.unit(7 + 7 / 12, "feet"),
  13109. weight: math.unit(267, "lb"),
  13110. name: "Back",
  13111. image: {
  13112. source: "./media/characters/dayza/back.svg",
  13113. extra: 1241 / 1170
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(7 + 7 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(155, "feet")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6 + 5 / 12, "feet"),
  13134. weight: math.unit(160, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/xanthos/front.svg",
  13138. extra: 1,
  13139. bottom: 0.04
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(6 + 5 / 12, "feet"),
  13144. weight: math.unit(160, "lb"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/xanthos/back.svg",
  13148. extra: 1,
  13149. bottom: 0.03
  13150. }
  13151. },
  13152. hand: {
  13153. height: math.unit(0.928, "feet"),
  13154. name: "Hand",
  13155. image: {
  13156. source: "./media/characters/xanthos/hand.svg"
  13157. }
  13158. },
  13159. foot: {
  13160. height: math.unit(1.286, "feet"),
  13161. name: "Foot",
  13162. image: {
  13163. source: "./media/characters/xanthos/foot.svg"
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(6 + 5 / 12, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Normal+",
  13175. height: math.unit(6, "meters")
  13176. },
  13177. {
  13178. name: "Macro",
  13179. height: math.unit(40, "feet")
  13180. },
  13181. {
  13182. name: "Macro+",
  13183. height: math.unit(200, "meters")
  13184. },
  13185. {
  13186. name: "Megamacro",
  13187. height: math.unit(20, "km")
  13188. },
  13189. {
  13190. name: "Megamacro+",
  13191. height: math.unit(100, "km")
  13192. },
  13193. {
  13194. name: "Gigamacro",
  13195. height: math.unit(200, "megameters")
  13196. },
  13197. {
  13198. name: "Gigamacro+",
  13199. height: math.unit(1.5, "gigameters")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6 + 3 / 12, "feet"),
  13208. weight: math.unit(215, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/grynn/front.svg",
  13212. extra: 4627 / 4209,
  13213. bottom: 0.047
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Micro",
  13220. height: math.unit(6, "inches")
  13221. },
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(6 + 3 / 12, "feet"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Big",
  13229. height: math.unit(104, "feet")
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(944, "feet")
  13234. },
  13235. {
  13236. name: "Macro+",
  13237. height: math.unit(9480, "feet")
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(78752, "feet")
  13242. },
  13243. {
  13244. name: "Megamacro+",
  13245. height: math.unit(630128, "feet")
  13246. },
  13247. {
  13248. name: "Megamacro++",
  13249. height: math.unit(3150695, "feet")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(7 + 5 / 12, "feet"),
  13258. weight: math.unit(450, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/mocha-aura/front.svg",
  13262. extra: 1907 / 1817,
  13263. bottom: 0.04
  13264. }
  13265. },
  13266. back: {
  13267. height: math.unit(7 + 5 / 12, "feet"),
  13268. weight: math.unit(450, "lb"),
  13269. name: "Back",
  13270. image: {
  13271. source: "./media/characters/mocha-aura/back.svg",
  13272. extra: 1900 / 1825,
  13273. bottom: 0.045
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Nano",
  13280. height: math.unit(1, "nm")
  13281. },
  13282. {
  13283. name: "Megamicro",
  13284. height: math.unit(1, "mm")
  13285. },
  13286. {
  13287. name: "Micro",
  13288. height: math.unit(3, "inches")
  13289. },
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(7 + 5 / 12, "feet"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(30, "feet")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(3500, "feet")
  13302. },
  13303. {
  13304. name: "Teramacro",
  13305. height: math.unit(500000, "miles")
  13306. },
  13307. {
  13308. name: "Petamacro",
  13309. height: math.unit(50000000000000000, "parsecs")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/ilisha-devya/front.svg",
  13322. extra: 1053/1049,
  13323. bottom: 270/1323
  13324. }
  13325. },
  13326. back: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Back",
  13330. image: {
  13331. source: "./media/characters/ilisha-devya/back.svg",
  13332. extra: 1131/1128,
  13333. bottom: 39/1170
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Macro",
  13340. height: math.unit(500, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(10, "miles")
  13346. },
  13347. {
  13348. name: "Gigamacro",
  13349. height: math.unit(100000, "miles")
  13350. },
  13351. {
  13352. name: "Examacro",
  13353. height: math.unit(1e9, "lightyears")
  13354. },
  13355. {
  13356. name: "Omniversal",
  13357. height: math.unit(1e33, "lightyears")
  13358. },
  13359. {
  13360. name: "Beyond Infinite",
  13361. height: math.unit(1e100, "lightyears")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13367. {
  13368. Side: {
  13369. height: math.unit(6, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Side",
  13372. image: {
  13373. source: "./media/characters/mira/side.svg",
  13374. extra: 900 / 799,
  13375. bottom: 0.02
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Human Size",
  13382. height: math.unit(6, "feet")
  13383. },
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(100, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(10, "miles")
  13392. },
  13393. {
  13394. name: "Gigamacro",
  13395. height: math.unit(25000, "miles")
  13396. },
  13397. {
  13398. name: "Teramacro",
  13399. height: math.unit(300, "AU")
  13400. },
  13401. {
  13402. name: "Full Size",
  13403. height: math.unit(4.5e10, "lightyears")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(6, "feet"),
  13412. weight: math.unit(150, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/holly/front.svg",
  13416. extra: 639 / 606
  13417. }
  13418. },
  13419. back: {
  13420. height: math.unit(6, "feet"),
  13421. weight: math.unit(150, "lb"),
  13422. name: "Back",
  13423. image: {
  13424. source: "./media/characters/holly/back.svg",
  13425. extra: 623 / 598
  13426. }
  13427. },
  13428. frontWorking: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front (Working)",
  13432. image: {
  13433. source: "./media/characters/holly/front-working.svg",
  13434. extra: 607 / 577,
  13435. bottom: 0.048
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(12 + 3 / 12, "feet"),
  13443. default: true
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/porter/front.svg",
  13456. extra: 1,
  13457. bottom: 0.01
  13458. }
  13459. },
  13460. frontRobes: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "lb"),
  13463. name: "Front (Robes)",
  13464. image: {
  13465. source: "./media/characters/porter/front-robes.svg",
  13466. extra: 1.01,
  13467. bottom: 0.01
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(11 + 9 / 12, "feet"),
  13475. default: true
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13481. {
  13482. legendary: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Legendary",
  13486. image: {
  13487. source: "./media/characters/lucy/legendary.svg",
  13488. extra: 1355 / 1100,
  13489. bottom: 0.045
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Legendary",
  13496. height: math.unit(86882 * 2, "miles"),
  13497. default: true
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(6, "feet"),
  13506. weight: math.unit(150, "lb"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/drusilla/front.svg",
  13510. extra: 678 / 635,
  13511. bottom: 0.03
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/drusilla/back.svg",
  13520. extra: 678 / 635,
  13521. bottom: 0.005
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(100, "feet")
  13529. },
  13530. {
  13531. name: "Canon Height",
  13532. height: math.unit(2000, "feet"),
  13533. default: true
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(180, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/renard-thatch/front.svg",
  13546. extra: 2411 / 2275,
  13547. bottom: 0.01
  13548. }
  13549. },
  13550. frontPosing: {
  13551. height: math.unit(6, "feet"),
  13552. weight: math.unit(180, "lb"),
  13553. name: "Front (Posing)",
  13554. image: {
  13555. source: "./media/characters/renard-thatch/front-posing.svg",
  13556. extra: 2381 / 2261,
  13557. bottom: 0.01
  13558. }
  13559. },
  13560. back: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(180, "lb"),
  13563. name: "Back",
  13564. image: {
  13565. source: "./media/characters/renard-thatch/back.svg",
  13566. extra: 2428 / 2288
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Micro",
  13573. height: math.unit(3, "inches")
  13574. },
  13575. {
  13576. name: "Default",
  13577. height: math.unit(6, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Macro",
  13582. height: math.unit(75, "feet")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(1450, "feet"),
  13591. weight: math.unit(1.21e6, "tons"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/sekvra/front.svg",
  13595. extra: 1193/1190,
  13596. bottom: 78/1271
  13597. }
  13598. },
  13599. side: {
  13600. height: math.unit(1450, "feet"),
  13601. weight: math.unit(1.21e6, "tons"),
  13602. name: "Side",
  13603. image: {
  13604. source: "./media/characters/sekvra/side.svg",
  13605. extra: 1193/1190,
  13606. bottom: 52/1245
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(1450, "feet"),
  13611. weight: math.unit(1.21e6, "tons"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/sekvra/back.svg",
  13615. extra: 1219/1216,
  13616. bottom: 21/1240
  13617. }
  13618. },
  13619. frontClothed: {
  13620. height: math.unit(1450, "feet"),
  13621. weight: math.unit(1.21e6, "tons"),
  13622. name: "Front (Clothed)",
  13623. image: {
  13624. source: "./media/characters/sekvra/front-clothed.svg",
  13625. extra: 1192/1189,
  13626. bottom: 79/1271
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(1450, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Megamacro",
  13638. height: math.unit(15000, "feet")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/carmine/front.svg",
  13651. extra: 1,
  13652. bottom: 0.035
  13653. }
  13654. },
  13655. frontArmor: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front (Armor)",
  13659. image: {
  13660. source: "./media/characters/carmine/front-armor.svg",
  13661. extra: 1,
  13662. bottom: 0.035
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Large",
  13669. height: math.unit(1, "mile")
  13670. },
  13671. {
  13672. name: "Huge",
  13673. height: math.unit(40, "miles"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Colossal",
  13678. height: math.unit(2500, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/elyssia/front.svg",
  13691. extra: 2201 / 2035,
  13692. bottom: 0.05
  13693. }
  13694. },
  13695. frontClothed: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front (Clothed)",
  13699. image: {
  13700. source: "./media/characters/elyssia/front-clothed.svg",
  13701. extra: 2201 / 2035,
  13702. bottom: 0.05
  13703. }
  13704. },
  13705. back: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Back",
  13709. image: {
  13710. source: "./media/characters/elyssia/back.svg",
  13711. extra: 2201 / 2035,
  13712. bottom: 0.013
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Smaller",
  13719. height: math.unit(150, "feet")
  13720. },
  13721. {
  13722. name: "Standard",
  13723. height: math.unit(1400, "feet"),
  13724. default: true
  13725. },
  13726. {
  13727. name: "Distracted",
  13728. height: math.unit(15000, "feet")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(7 + 4/12, "feet"),
  13737. weight: math.unit(690, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/geno-maxwell/front.svg",
  13741. extra: 984/856,
  13742. bottom: 87/1071
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(7 + 4/12, "feet"),
  13747. weight: math.unit(690, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/geno-maxwell/back.svg",
  13751. extra: 981/854,
  13752. bottom: 57/1038
  13753. }
  13754. },
  13755. frontCostume: {
  13756. height: math.unit(7 + 4/12, "feet"),
  13757. weight: math.unit(690, "lb"),
  13758. name: "Front (Costume)",
  13759. image: {
  13760. source: "./media/characters/geno-maxwell/front-costume.svg",
  13761. extra: 984/856,
  13762. bottom: 87/1071
  13763. }
  13764. },
  13765. backcostume: {
  13766. height: math.unit(7 + 4/12, "feet"),
  13767. weight: math.unit(690, "lb"),
  13768. name: "Back (Costume)",
  13769. image: {
  13770. source: "./media/characters/geno-maxwell/back-costume.svg",
  13771. extra: 981/854,
  13772. bottom: 57/1038
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Micro",
  13779. height: math.unit(3, "inches")
  13780. },
  13781. {
  13782. name: "Normal",
  13783. height: math.unit(7 + 4 / 12, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Macro",
  13788. height: math.unit(220, "feet")
  13789. },
  13790. {
  13791. name: "Megamacro",
  13792. height: math.unit(11, "miles")
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(7 + 4/12, "feet"),
  13801. weight: math.unit(750, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/regena-maxwell/front.svg",
  13805. extra: 984/856,
  13806. bottom: 87/1071
  13807. }
  13808. },
  13809. back: {
  13810. height: math.unit(7 + 4/12, "feet"),
  13811. weight: math.unit(750, "lb"),
  13812. name: "Back",
  13813. image: {
  13814. source: "./media/characters/regena-maxwell/back.svg",
  13815. extra: 981/854,
  13816. bottom: 57/1038
  13817. }
  13818. },
  13819. frontCostume: {
  13820. height: math.unit(7 + 4/12, "feet"),
  13821. weight: math.unit(750, "lb"),
  13822. name: "Front (Costume)",
  13823. image: {
  13824. source: "./media/characters/regena-maxwell/front-costume.svg",
  13825. extra: 984/856,
  13826. bottom: 87/1071
  13827. }
  13828. },
  13829. backcostume: {
  13830. height: math.unit(7 + 4/12, "feet"),
  13831. weight: math.unit(750, "lb"),
  13832. name: "Back (Costume)",
  13833. image: {
  13834. source: "./media/characters/regena-maxwell/back-costume.svg",
  13835. extra: 981/854,
  13836. bottom: 57/1038
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(7 + 4 / 12, "feet"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(220, "feet")
  13849. },
  13850. {
  13851. name: "Megamacro",
  13852. height: math.unit(11, "miles")
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13865. extra: 860 / 690,
  13866. bottom: 0.03
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(1.7, "meters"),
  13874. default: true
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13880. {
  13881. front: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Front",
  13885. image: {
  13886. source: "./media/characters/quilly/front.svg",
  13887. extra: 890 / 776
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Gigamacro",
  13894. height: math.unit(404090, "miles"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(7 + 8 / 12, "feet"),
  13904. weight: math.unit(350, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/tempest/front.svg",
  13908. extra: 1175 / 1086,
  13909. bottom: 0.02
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(7 + 8 / 12, "feet"),
  13917. default: true
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13923. {
  13924. side: {
  13925. height: math.unit(4 + 5 / 12, "feet"),
  13926. weight: math.unit(80, "lb"),
  13927. name: "Side",
  13928. image: {
  13929. source: "./media/characters/rodger/side.svg",
  13930. extra: 1235 / 1118
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Micro",
  13937. height: math.unit(1, "inch")
  13938. },
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(4 + 5 / 12, "feet"),
  13942. default: true
  13943. },
  13944. {
  13945. name: "Macro",
  13946. height: math.unit(120, "feet")
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(150, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/danyel/front.svg",
  13959. extra: 1185 / 1123,
  13960. bottom: 0.05
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Shrunken",
  13967. height: math.unit(0.5, "mm")
  13968. },
  13969. {
  13970. name: "Micro",
  13971. height: math.unit(1, "mm"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Upsized",
  13976. height: math.unit(5 + 5 / 12, "feet")
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(5 + 6 / 12, "feet"),
  13985. weight: math.unit(200, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/vivian-bijoux/front.svg",
  13989. extra: 1217/1209,
  13990. bottom: 76/1293
  13991. }
  13992. },
  13993. back: {
  13994. height: math.unit(5 + 6 / 12, "feet"),
  13995. weight: math.unit(200, "lb"),
  13996. name: "Back",
  13997. image: {
  13998. source: "./media/characters/vivian-bijoux/back.svg",
  13999. extra: 1214/1208,
  14000. bottom: 51/1265
  14001. }
  14002. },
  14003. dressed: {
  14004. height: math.unit(5 + 6 / 12, "feet"),
  14005. weight: math.unit(200, "lb"),
  14006. name: "Dressed",
  14007. image: {
  14008. source: "./media/characters/vivian-bijoux/dressed.svg",
  14009. extra: 1217/1209,
  14010. bottom: 76/1293
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(5 + 6 / 12, "feet"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Bad Dream",
  14022. height: math.unit(500, "feet")
  14023. },
  14024. {
  14025. name: "Nightmare",
  14026. height: math.unit(500, "miles")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6 + 1 / 12, "feet"),
  14035. weight: math.unit(260, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/zeta/front.svg",
  14039. extra: 1968 / 1889,
  14040. bottom: 0.06
  14041. }
  14042. },
  14043. back: {
  14044. height: math.unit(6 + 1 / 12, "feet"),
  14045. weight: math.unit(260, "lb"),
  14046. name: "Back",
  14047. image: {
  14048. source: "./media/characters/zeta/back.svg",
  14049. extra: 1944 / 1858,
  14050. bottom: 0.03
  14051. }
  14052. },
  14053. hand: {
  14054. height: math.unit(1.112, "feet"),
  14055. name: "Hand",
  14056. image: {
  14057. source: "./media/characters/zeta/hand.svg"
  14058. }
  14059. },
  14060. foot: {
  14061. height: math.unit(1.48, "feet"),
  14062. name: "Foot",
  14063. image: {
  14064. source: "./media/characters/zeta/foot.svg"
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Micro",
  14071. height: math.unit(6, "inches")
  14072. },
  14073. {
  14074. name: "Normal",
  14075. height: math.unit(6 + 1 / 12, "feet"),
  14076. default: true
  14077. },
  14078. {
  14079. name: "Macro",
  14080. height: math.unit(20, "feet")
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(150, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/jamie-larsen/front.svg",
  14093. extra: 962 / 933,
  14094. bottom: 0.02
  14095. }
  14096. },
  14097. back: {
  14098. height: math.unit(6, "feet"),
  14099. weight: math.unit(150, "lb"),
  14100. name: "Back",
  14101. image: {
  14102. source: "./media/characters/jamie-larsen/back.svg",
  14103. extra: 997 / 946
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Macro",
  14110. height: math.unit(28 + 7 / 12, "feet"),
  14111. default: true
  14112. },
  14113. {
  14114. name: "Macro+",
  14115. height: math.unit(180, "feet")
  14116. },
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(10, "miles")
  14120. },
  14121. {
  14122. name: "Gigamacro",
  14123. height: math.unit(200000, "miles")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(6, "feet"),
  14132. weight: math.unit(120, "lb"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/vance/front.svg",
  14136. extra: 1980 / 1890,
  14137. bottom: 0.09
  14138. }
  14139. },
  14140. back: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(120, "lb"),
  14143. name: "Back",
  14144. image: {
  14145. source: "./media/characters/vance/back.svg",
  14146. extra: 2081 / 1994,
  14147. bottom: 0.014
  14148. }
  14149. },
  14150. hand: {
  14151. height: math.unit(0.88, "feet"),
  14152. name: "Hand",
  14153. image: {
  14154. source: "./media/characters/vance/hand.svg"
  14155. }
  14156. },
  14157. foot: {
  14158. height: math.unit(0.64, "feet"),
  14159. name: "Foot",
  14160. image: {
  14161. source: "./media/characters/vance/foot.svg"
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Small",
  14168. height: math.unit(90, "feet"),
  14169. default: true
  14170. },
  14171. {
  14172. name: "Macro",
  14173. height: math.unit(100, "meters")
  14174. },
  14175. {
  14176. name: "Megamacro",
  14177. height: math.unit(15, "miles")
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(180, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/xochitl/front.svg",
  14190. extra: 2297 / 2261,
  14191. bottom: 0.065
  14192. }
  14193. },
  14194. back: {
  14195. height: math.unit(6, "feet"),
  14196. weight: math.unit(180, "lb"),
  14197. name: "Back",
  14198. image: {
  14199. source: "./media/characters/xochitl/back.svg",
  14200. extra: 2386 / 2354,
  14201. bottom: 0.01
  14202. }
  14203. },
  14204. foot: {
  14205. height: math.unit(6 / 5 * 1.15, "feet"),
  14206. weight: math.unit(150, "lb"),
  14207. name: "Foot",
  14208. image: {
  14209. source: "./media/characters/xochitl/foot.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(80, "feet")
  14217. },
  14218. {
  14219. name: "Macro+",
  14220. height: math.unit(400, "feet"),
  14221. default: true
  14222. },
  14223. {
  14224. name: "Gigamacro",
  14225. height: math.unit(80000, "miles")
  14226. },
  14227. {
  14228. name: "Gigamacro+",
  14229. height: math.unit(400000, "miles")
  14230. },
  14231. {
  14232. name: "Teramacro",
  14233. height: math.unit(300, "AU")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(150, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/vincent/front.svg",
  14246. extra: 1130 / 1080,
  14247. bottom: 0.055
  14248. }
  14249. },
  14250. beak: {
  14251. height: math.unit(6 * 0.1, "feet"),
  14252. name: "Beak",
  14253. image: {
  14254. source: "./media/characters/vincent/beak.svg"
  14255. }
  14256. },
  14257. hand: {
  14258. height: math.unit(6 * 0.85, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Hand",
  14261. image: {
  14262. source: "./media/characters/vincent/hand.svg"
  14263. }
  14264. },
  14265. foot: {
  14266. height: math.unit(6 * 0.19, "feet"),
  14267. weight: math.unit(150, "lb"),
  14268. name: "Foot",
  14269. image: {
  14270. source: "./media/characters/vincent/foot.svg"
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Base",
  14277. height: math.unit(6 + 5 / 12, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(300, "feet")
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(2, "miles")
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(1000, "miles")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(2, "meters"),
  14299. weight: math.unit(500, "kg"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/coatl/front.svg",
  14303. extra: 3948 / 3500,
  14304. bottom: 0.082
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(4, "meters")
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(100, "meters"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Macro+",
  14320. height: math.unit(300, "meters")
  14321. },
  14322. {
  14323. name: "Megamacro",
  14324. height: math.unit(3, "gigameters")
  14325. },
  14326. {
  14327. name: "Megamacro+",
  14328. height: math.unit(300, "terameters")
  14329. },
  14330. {
  14331. name: "Megamacro++",
  14332. height: math.unit(3, "lightyears")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(50, "kg"),
  14342. name: "front",
  14343. image: {
  14344. source: "./media/characters/shiroryu/front.svg",
  14345. extra: 1990 / 1935
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Mortal Mingling",
  14352. height: math.unit(3, "meters")
  14353. },
  14354. {
  14355. name: "Kaiju-ish",
  14356. height: math.unit(250, "meters")
  14357. },
  14358. {
  14359. name: "Somewhat Godly",
  14360. height: math.unit(400, "km"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Planetary",
  14365. height: math.unit(300, "megameters")
  14366. },
  14367. {
  14368. name: "Galaxy-dwarfing",
  14369. height: math.unit(450, "kiloparsecs")
  14370. },
  14371. {
  14372. name: "Universe Eater",
  14373. height: math.unit(150, "gigaparsecs")
  14374. },
  14375. {
  14376. name: "Almost Immeasurable",
  14377. height: math.unit(1.3e266, "yottaparsecs")
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(6, "feet"),
  14386. weight: math.unit(150, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/umeko/front.svg",
  14390. extra: 1,
  14391. bottom: 0.019
  14392. }
  14393. },
  14394. frontArmored: {
  14395. height: math.unit(6, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Front (Armored)",
  14398. image: {
  14399. source: "./media/characters/umeko/front-armored.svg",
  14400. extra: 1,
  14401. bottom: 0.021
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Macro",
  14408. height: math.unit(220, "feet"),
  14409. default: true
  14410. },
  14411. {
  14412. name: "Guardian Dragon",
  14413. height: math.unit(50, "miles")
  14414. },
  14415. {
  14416. name: "Cosmic",
  14417. height: math.unit(800000, "miles")
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/cassidy/front.svg",
  14430. extra: 810/808,
  14431. bottom: 41/851
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Canon Height",
  14438. height: math.unit(120, "feet"),
  14439. default: true
  14440. },
  14441. {
  14442. name: "Macro+",
  14443. height: math.unit(400, "feet")
  14444. },
  14445. {
  14446. name: "Macro++",
  14447. height: math.unit(4000, "feet")
  14448. },
  14449. {
  14450. name: "Megamacro",
  14451. height: math.unit(3, "miles")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/isaac/front.svg",
  14464. extra: 896 / 815,
  14465. bottom: 0.11
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Human Size",
  14472. height: math.unit(8, "feet"),
  14473. default: true
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(400, "feet")
  14478. },
  14479. {
  14480. name: "Megamacro",
  14481. height: math.unit(50, "miles")
  14482. },
  14483. {
  14484. name: "Canon Height",
  14485. height: math.unit(200, "AU")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(72, "kg"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/sleekit/front.svg",
  14498. extra: 4693 / 4487,
  14499. bottom: 0.012
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Minimum Height",
  14506. height: math.unit(10, "meters")
  14507. },
  14508. {
  14509. name: "Smaller",
  14510. height: math.unit(25, "meters")
  14511. },
  14512. {
  14513. name: "Larger",
  14514. height: math.unit(38, "meters"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Maximum height",
  14519. height: math.unit(100, "meters")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6, "feet"),
  14528. weight: math.unit(150, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/nillia/front.svg",
  14532. extra: 2195 / 2037,
  14533. bottom: 0.005
  14534. }
  14535. },
  14536. back: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Back",
  14540. image: {
  14541. source: "./media/characters/nillia/back.svg",
  14542. extra: 2195 / 2037,
  14543. bottom: 0.005
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Canon Height",
  14550. height: math.unit(489, "feet"),
  14551. default: true
  14552. }
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(150, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/mesmyriza/front.svg",
  14564. extra: 2067 / 1784,
  14565. bottom: 0.035
  14566. }
  14567. },
  14568. foot: {
  14569. height: math.unit(6 / (250 / 35), "feet"),
  14570. name: "Foot",
  14571. image: {
  14572. source: "./media/characters/mesmyriza/foot.svg"
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Macro",
  14579. height: math.unit(457, "meters"),
  14580. default: true
  14581. },
  14582. {
  14583. name: "Megamacro",
  14584. height: math.unit(8, "megameters")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(250, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/saudade/front.svg",
  14597. extra: 1172 / 1139,
  14598. bottom: 0.035
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Micro",
  14605. height: math.unit(3, "inches")
  14606. },
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(6, "feet"),
  14610. default: true
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(50, "feet")
  14615. },
  14616. {
  14617. name: "Megamacro",
  14618. height: math.unit(2800, "feet")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5 + 4 / 12, "feet"),
  14627. weight: math.unit(100, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/keireer/front.svg",
  14631. extra: 716 / 666,
  14632. bottom: 0.05
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(5 + 4 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(90, "kg"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/mirja/front.svg",
  14653. extra: 1789 / 1683,
  14654. bottom: 0.05
  14655. }
  14656. },
  14657. frontDressed: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(90, "lb"),
  14660. name: "Front (Dressed)",
  14661. image: {
  14662. source: "./media/characters/mirja/front-dressed.svg",
  14663. extra: 1789 / 1683,
  14664. bottom: 0.05
  14665. }
  14666. },
  14667. back: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(90, "lb"),
  14670. name: "Back",
  14671. image: {
  14672. source: "./media/characters/mirja/back.svg",
  14673. extra: 953 / 917,
  14674. bottom: 0.017
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "\"Incognito\"",
  14681. height: math.unit(3, "meters")
  14682. },
  14683. {
  14684. name: "Strolling Size",
  14685. height: math.unit(15, "km")
  14686. },
  14687. {
  14688. name: "Larger Strolling Size",
  14689. height: math.unit(400, "km")
  14690. },
  14691. {
  14692. name: "Preferred Size",
  14693. height: math.unit(5000, "km")
  14694. },
  14695. {
  14696. name: "True Size",
  14697. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(15, "feet"),
  14707. weight: math.unit(880, "kg"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/nightraver/front.svg",
  14711. extra: 2444 / 2160,
  14712. bottom: 0.027
  14713. }
  14714. },
  14715. back: {
  14716. height: math.unit(15, "feet"),
  14717. weight: math.unit(880, "kg"),
  14718. name: "Back",
  14719. image: {
  14720. source: "./media/characters/nightraver/back.svg",
  14721. extra: 2309 / 2180,
  14722. bottom: 0.005
  14723. }
  14724. },
  14725. sole: {
  14726. height: math.unit(2.878, "feet"),
  14727. name: "Sole",
  14728. image: {
  14729. source: "./media/characters/nightraver/sole.svg"
  14730. }
  14731. },
  14732. foot: {
  14733. height: math.unit(2.285, "feet"),
  14734. name: "Foot",
  14735. image: {
  14736. source: "./media/characters/nightraver/foot.svg"
  14737. }
  14738. },
  14739. maw: {
  14740. height: math.unit(2.67, "feet"),
  14741. name: "Maw",
  14742. image: {
  14743. source: "./media/characters/nightraver/maw.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(1, "cm")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(15, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(300, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(300, "miles")
  14764. },
  14765. {
  14766. name: "Gigamacro",
  14767. height: math.unit(10000, "miles")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14773. {
  14774. side: {
  14775. height: math.unit(2, "inches"),
  14776. weight: math.unit(5, "grams"),
  14777. name: "Side",
  14778. image: {
  14779. source: "./media/characters/arc/side.svg"
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Micro",
  14786. height: math.unit(2, "inches"),
  14787. default: true
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(1.1938, "meters"),
  14796. weight: math.unit(54, "kg"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/nebula-shahar/front.svg",
  14800. extra: 1642 / 1436,
  14801. bottom: 0.06
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Megamicro",
  14808. height: math.unit(0.3, "mm")
  14809. },
  14810. {
  14811. name: "Micro",
  14812. height: math.unit(3, "cm")
  14813. },
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(138, "cm"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Macro",
  14821. height: math.unit(30, "m")
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(5.24, "feet"),
  14830. weight: math.unit(150, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/shayla/front.svg",
  14834. extra: 1512 / 1414,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. back: {
  14839. height: math.unit(5.24, "feet"),
  14840. weight: math.unit(150, "lb"),
  14841. name: "Back",
  14842. image: {
  14843. source: "./media/characters/shayla/back.svg",
  14844. extra: 1512 / 1414
  14845. }
  14846. },
  14847. hand: {
  14848. height: math.unit(0.7781496062992126, "feet"),
  14849. name: "Hand",
  14850. image: {
  14851. source: "./media/characters/shayla/hand.svg"
  14852. }
  14853. },
  14854. foot: {
  14855. height: math.unit(1.4206036745406823, "feet"),
  14856. name: "Foot",
  14857. image: {
  14858. source: "./media/characters/shayla/foot.svg"
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Micro",
  14865. height: math.unit(0.32, "feet")
  14866. },
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(5.24, "feet"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(492.12, "feet")
  14875. },
  14876. {
  14877. name: "Megamacro",
  14878. height: math.unit(186.41, "miles")
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(2.2, "m"),
  14887. weight: math.unit(120, "kg"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/pia-jr/front.svg",
  14891. extra: 1000 / 970,
  14892. bottom: 0.035
  14893. }
  14894. },
  14895. hand: {
  14896. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14897. name: "Hand",
  14898. image: {
  14899. source: "./media/characters/pia-jr/hand.svg"
  14900. }
  14901. },
  14902. paw: {
  14903. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14904. name: "Paw",
  14905. image: {
  14906. source: "./media/characters/pia-jr/paw.svg"
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Micro",
  14913. height: math.unit(1.2, "cm")
  14914. },
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(2.2, "m"),
  14918. default: true
  14919. },
  14920. {
  14921. name: "Macro",
  14922. height: math.unit(180, "m")
  14923. },
  14924. {
  14925. name: "Megamacro",
  14926. height: math.unit(420, "km")
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(2, "m"),
  14935. weight: math.unit(115, "kg"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/pia-sr/front.svg",
  14939. extra: 760 / 730,
  14940. bottom: 0.015
  14941. }
  14942. },
  14943. back: {
  14944. height: math.unit(2, "m"),
  14945. weight: math.unit(115, "kg"),
  14946. name: "Back",
  14947. image: {
  14948. source: "./media/characters/pia-sr/back.svg",
  14949. extra: 760 / 730,
  14950. bottom: 0.01
  14951. }
  14952. },
  14953. hand: {
  14954. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14955. name: "Hand",
  14956. image: {
  14957. source: "./media/characters/pia-sr/hand.svg"
  14958. }
  14959. },
  14960. foot: {
  14961. height: math.unit(1.83, "feet"),
  14962. name: "Foot",
  14963. image: {
  14964. source: "./media/characters/pia-sr/foot.svg"
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Micro",
  14971. height: math.unit(88, "mm")
  14972. },
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(2, "m"),
  14976. default: true
  14977. },
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(200, "m")
  14981. },
  14982. {
  14983. name: "Megamacro",
  14984. height: math.unit(420, "km")
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(8 + 2 / 12, "feet"),
  14993. weight: math.unit(300, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/kibibyte/front.svg",
  14997. extra: 2221 / 2098,
  14998. bottom: 0.04
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(8 + 2 / 12, "feet"),
  15006. default: true
  15007. },
  15008. {
  15009. name: "Socialable Macro",
  15010. height: math.unit(50, "feet")
  15011. },
  15012. {
  15013. name: "Macro",
  15014. height: math.unit(300, "feet")
  15015. },
  15016. {
  15017. name: "Megamacro",
  15018. height: math.unit(500, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/felix/front.svg",
  15031. extra: 762 / 722,
  15032. bottom: 0.02
  15033. }
  15034. },
  15035. frontClothed: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(150, "lb"),
  15038. name: "Front (Clothed)",
  15039. image: {
  15040. source: "./media/characters/felix/front-clothed.svg",
  15041. extra: 762 / 722,
  15042. bottom: 0.02
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(6 + 8 / 12, "feet"),
  15050. default: true
  15051. },
  15052. {
  15053. name: "Macro",
  15054. height: math.unit(2600, "feet")
  15055. },
  15056. {
  15057. name: "Megamacro",
  15058. height: math.unit(450, "miles")
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(6 + 1 / 12, "feet"),
  15067. weight: math.unit(250, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/tobo/front.svg",
  15071. extra: 608 / 586,
  15072. bottom: 0.023
  15073. }
  15074. },
  15075. back: {
  15076. height: math.unit(6 + 1 / 12, "feet"),
  15077. weight: math.unit(250, "lb"),
  15078. name: "Back",
  15079. image: {
  15080. source: "./media/characters/tobo/back.svg",
  15081. extra: 608 / 586
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Nano",
  15088. height: math.unit(2, "nm")
  15089. },
  15090. {
  15091. name: "Megamicro",
  15092. height: math.unit(0.1, "mm")
  15093. },
  15094. {
  15095. name: "Micro",
  15096. height: math.unit(1, "inch"),
  15097. default: true
  15098. },
  15099. {
  15100. name: "Human-sized",
  15101. height: math.unit(6 + 1 / 12, "feet")
  15102. },
  15103. {
  15104. name: "Macro",
  15105. height: math.unit(250, "feet")
  15106. },
  15107. {
  15108. name: "Megamacro",
  15109. height: math.unit(75, "miles")
  15110. },
  15111. {
  15112. name: "Texas-sized",
  15113. height: math.unit(750, "miles")
  15114. },
  15115. {
  15116. name: "Teramacro",
  15117. height: math.unit(50000, "miles")
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(269, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/danny-kapowsky/front.svg",
  15130. extra: 766 / 736,
  15131. bottom: 0.044
  15132. }
  15133. },
  15134. back: {
  15135. height: math.unit(6, "feet"),
  15136. weight: math.unit(269, "lb"),
  15137. name: "Back",
  15138. image: {
  15139. source: "./media/characters/danny-kapowsky/back.svg",
  15140. extra: 797 / 760,
  15141. bottom: 0.025
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(150, "feet"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Macro+",
  15153. height: math.unit(200, "feet")
  15154. },
  15155. {
  15156. name: "Macro++",
  15157. height: math.unit(300, "feet")
  15158. },
  15159. {
  15160. name: "Macro+++",
  15161. height: math.unit(400, "feet")
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15167. {
  15168. side: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(170, "lb"),
  15171. name: "Side",
  15172. image: {
  15173. source: "./media/characters/finn/side.svg",
  15174. extra: 1953 / 1807,
  15175. bottom: 0.057
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Megamacro",
  15182. height: math.unit(14445, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(5 + 6 / 12, "feet"),
  15192. weight: math.unit(125, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/roy/front.svg",
  15196. extra: 1,
  15197. bottom: 0.11
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Micro",
  15204. height: math.unit(3, "inches"),
  15205. default: true
  15206. },
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(5 + 6 / 12, "feet")
  15210. },
  15211. {
  15212. name: "Lesser Macro",
  15213. height: math.unit(60, "feet")
  15214. },
  15215. {
  15216. name: "Greater Macro",
  15217. height: math.unit(120, "feet")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(100, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/aevsivs/front.svg",
  15230. extra: 1,
  15231. bottom: 0.03
  15232. }
  15233. },
  15234. back: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(100, "lb"),
  15237. name: "Back",
  15238. image: {
  15239. source: "./media/characters/aevsivs/back.svg"
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Micro",
  15246. height: math.unit(2, "inches"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(5, "feet")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(5 + 7 / 12, "feet"),
  15260. weight: math.unit(159, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/hildegard/front.svg",
  15264. extra: 289 / 269,
  15265. bottom: 7.63 / 297.8
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(5 + 7 / 12, "feet"),
  15270. weight: math.unit(159, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/hildegard/back.svg",
  15274. extra: 280 / 260,
  15275. bottom: 2.3 / 282
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(5 + 7 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15289. {
  15290. bernard: {
  15291. height: math.unit(2 + 7 / 12, "feet"),
  15292. weight: math.unit(66, "lb"),
  15293. name: "Bernard",
  15294. rename: true,
  15295. image: {
  15296. source: "./media/characters/bernard-wilder/bernard.svg",
  15297. extra: 192 / 128,
  15298. bottom: 0.05
  15299. }
  15300. },
  15301. wilder: {
  15302. height: math.unit(5 + 8 / 12, "feet"),
  15303. weight: math.unit(143, "lb"),
  15304. name: "Wilder",
  15305. rename: true,
  15306. image: {
  15307. source: "./media/characters/bernard-wilder/wilder.svg",
  15308. extra: 361 / 312,
  15309. bottom: 0.02
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(2 + 7 / 12, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15323. {
  15324. anthro: {
  15325. height: math.unit(6 + 1 / 12, "feet"),
  15326. weight: math.unit(155, "lb"),
  15327. name: "Anthro",
  15328. image: {
  15329. source: "./media/characters/hearth/anthro.svg",
  15330. extra: 1178/1136,
  15331. bottom: 28/1206
  15332. }
  15333. },
  15334. feral: {
  15335. height: math.unit(3.78, "feet"),
  15336. weight: math.unit(35, "kg"),
  15337. name: "Feral",
  15338. image: {
  15339. source: "./media/characters/hearth/feral.svg",
  15340. extra: 153 / 135,
  15341. bottom: 0.03
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 1 / 12, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(182, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/ingrid/front.svg",
  15362. extra: 294 / 268,
  15363. bottom: 0.027
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(6, "feet"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15377. {
  15378. eevee: {
  15379. height: math.unit(2 + 10 / 12, "feet"),
  15380. weight: math.unit(86, "lb"),
  15381. name: "Malgam",
  15382. image: {
  15383. source: "./media/characters/malgam/eevee.svg",
  15384. extra: 952/784,
  15385. bottom: 38/990
  15386. }
  15387. },
  15388. sylveon: {
  15389. height: math.unit(4, "feet"),
  15390. weight: math.unit(101, "lb"),
  15391. name: "Future Malgam",
  15392. rename: true,
  15393. image: {
  15394. source: "./media/characters/malgam/sylveon.svg",
  15395. extra: 371 / 325,
  15396. bottom: 0.015
  15397. }
  15398. },
  15399. gigantamax: {
  15400. height: math.unit(50, "feet"),
  15401. name: "Gigantamax Malgam",
  15402. rename: true,
  15403. image: {
  15404. source: "./media/characters/malgam/gigantamax.svg"
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(2 + 10 / 12, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(5 + 11 / 12, "feet"),
  15421. weight: math.unit(188, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/fleur/front.svg",
  15425. extra: 309 / 283,
  15426. bottom: 0.007
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(5 + 11 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(5 + 4 / 12, "feet"),
  15443. weight: math.unit(122, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/jude/front.svg",
  15447. extra: 288 / 273,
  15448. bottom: 0.03
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5 + 4 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(5 + 11 / 12, "feet"),
  15465. weight: math.unit(190, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/seara/front.svg",
  15469. extra: 1,
  15470. bottom: 0.05
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(5 + 11 / 12, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(16 + 5 / 12, "feet"),
  15487. weight: math.unit(524, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/caspian/front.svg",
  15491. extra: 1,
  15492. bottom: 0.04
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(16 + 5 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(5 + 7 / 12, "feet"),
  15509. weight: math.unit(170, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/mika/front.svg",
  15513. extra: 1,
  15514. bottom: 0.016
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(5 + 7 / 12, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6 + 2 / 12, "feet"),
  15531. weight: math.unit(268, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/sol/front.svg",
  15535. extra: 247 / 231,
  15536. bottom: 0.05
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(6 + 2 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15550. {
  15551. buizel: {
  15552. height: math.unit(2 + 5 / 12, "feet"),
  15553. weight: math.unit(87, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/umiko/buizel.svg",
  15557. extra: 172 / 157,
  15558. bottom: 0.01
  15559. },
  15560. form: "buizel",
  15561. default: true
  15562. },
  15563. floatzel: {
  15564. height: math.unit(5 + 9 / 12, "feet"),
  15565. weight: math.unit(250, "lb"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/umiko/floatzel.svg",
  15569. extra: 1076/1006,
  15570. bottom: 15/1091
  15571. },
  15572. form: "floatzel",
  15573. default: true
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(2 + 5 / 12, "feet"),
  15580. form: "buizel",
  15581. default: true
  15582. },
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(5 + 9 / 12, "feet"),
  15586. form: "floatzel",
  15587. default: true
  15588. },
  15589. ],
  15590. {
  15591. "buizel": {
  15592. name: "Buizel"
  15593. },
  15594. "floatzel": {
  15595. name: "Floatzel",
  15596. default: true
  15597. }
  15598. }
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6 + 2 / 12, "feet"),
  15605. weight: math.unit(146, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/iliac/front.svg",
  15609. extra: 389 / 365,
  15610. bottom: 0.035
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(6 + 2 / 12, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(170, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/topaz/front.svg",
  15631. extra: 317 / 303,
  15632. bottom: 0.055
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(6, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(5 + 11 / 12, "feet"),
  15649. weight: math.unit(144, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/gabriel/front.svg",
  15653. extra: 285 / 262,
  15654. bottom: 0.004
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(5 + 11 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15668. {
  15669. side: {
  15670. height: math.unit(6 + 5 / 12, "feet"),
  15671. weight: math.unit(300, "lb"),
  15672. name: "Side",
  15673. image: {
  15674. source: "./media/characters/tempest-suicune/side.svg",
  15675. extra: 195 / 154,
  15676. bottom: 0.04
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(6 + 5 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(7 + 2 / 12, "feet"),
  15693. weight: math.unit(322, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/vulcan/front.svg",
  15697. extra: 154 / 147,
  15698. bottom: 0.04
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(7 + 2 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(5 + 10 / 12, "feet"),
  15715. weight: math.unit(264, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/gault/front.svg",
  15719. extra: 161 / 140,
  15720. bottom: 0.028
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(5 + 10 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6, "feet"),
  15737. weight: math.unit(150, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/shard/front.svg",
  15741. extra: 273 / 238,
  15742. bottom: 0.02
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(3 + 6 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 11 / 12, "feet"),
  15759. weight: math.unit(146, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/ashe/front.svg",
  15763. extra: 400 / 373,
  15764. bottom: 0.01
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 11 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(5 + 5 / 12, "feet"),
  15781. weight: math.unit(135, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/beatrix/front.svg",
  15785. extra: 392 / 379,
  15786. bottom: 0.01
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6 + 2/12, "feet"),
  15803. weight: math.unit(135, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/ignatius/front.svg",
  15807. extra: 1380/1259,
  15808. bottom: 27/1407
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(6 + 2/12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(6 + 2 / 12, "feet"),
  15825. weight: math.unit(138, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/mei-li/front.svg",
  15829. extra: 237 / 229,
  15830. bottom: 0.03
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(6 + 2 / 12, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(2 + 4 / 12, "feet"),
  15847. weight: math.unit(62, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/puru/front.svg",
  15851. extra: 206 / 149,
  15852. bottom: 0.06
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(2 + 4 / 12, "feet"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15866. {
  15867. anthro: {
  15868. height: math.unit(5 + 8/12, "feet"),
  15869. weight: math.unit(200, "lb"),
  15870. energyNeed: math.unit(2000, "kcal"),
  15871. name: "Anthro",
  15872. image: {
  15873. source: "./media/characters/kee/anthro.svg",
  15874. extra: 3251/3184,
  15875. bottom: 250/3501
  15876. }
  15877. },
  15878. taur: {
  15879. height: math.unit(11, "feet"),
  15880. weight: math.unit(500, "lb"),
  15881. energyNeed: math.unit(5000, "kcal"),
  15882. name: "Taur",
  15883. image: {
  15884. source: "./media/characters/kee/taur.svg",
  15885. extra: 1362/1320,
  15886. bottom: 83/1445
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(5 + 8/12, "feet"),
  15894. default: true
  15895. },
  15896. {
  15897. name: "Macro",
  15898. height: math.unit(35, "feet")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15904. {
  15905. anthro: {
  15906. height: math.unit(7, "feet"),
  15907. weight: math.unit(190, "lb"),
  15908. name: "Anthro",
  15909. image: {
  15910. source: "./media/characters/cobalt-dracha/anthro.svg",
  15911. extra: 231 / 225,
  15912. bottom: 0.04
  15913. }
  15914. },
  15915. feral: {
  15916. height: math.unit(9 + 7 / 12, "feet"),
  15917. weight: math.unit(294, "lb"),
  15918. name: "Feral",
  15919. image: {
  15920. source: "./media/characters/cobalt-dracha/feral.svg",
  15921. extra: 692 / 633,
  15922. bottom: 0.05
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(7, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15936. {
  15937. fallen: {
  15938. height: math.unit(11 + 8 / 12, "feet"),
  15939. weight: math.unit(485, "lb"),
  15940. name: "Java (Fallen)",
  15941. rename: true,
  15942. image: {
  15943. source: "./media/characters/java/fallen.svg",
  15944. extra: 226 / 208,
  15945. bottom: 0.005
  15946. }
  15947. },
  15948. godkin: {
  15949. height: math.unit(10 + 6 / 12, "feet"),
  15950. weight: math.unit(328, "lb"),
  15951. name: "Java (Godkin)",
  15952. rename: true,
  15953. image: {
  15954. source: "./media/characters/java/godkin.svg",
  15955. extra: 1104/1068,
  15956. bottom: 36/1140
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(11 + 8 / 12, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(5 + 9 / 12, "feet"),
  15973. weight: math.unit(170, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/purna/front.svg",
  15977. extra: 239 / 229,
  15978. bottom: 0.01
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(5 + 9 / 12, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15992. {
  15993. front: {
  15994. height: math.unit(5 + 9 / 12, "feet"),
  15995. weight: math.unit(142, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/kuva/front.svg",
  15999. extra: 281 / 271,
  16000. bottom: 0.006
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Normal",
  16007. height: math.unit(5 + 9 / 12, "feet"),
  16008. default: true
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16014. {
  16015. anthro: {
  16016. height: math.unit(9 + 2 / 12, "feet"),
  16017. weight: math.unit(270, "lb"),
  16018. name: "Anthro",
  16019. image: {
  16020. source: "./media/characters/embra/anthro.svg",
  16021. extra: 200 / 187,
  16022. bottom: 0.02
  16023. }
  16024. },
  16025. feral: {
  16026. height: math.unit(18 + 8 / 12, "feet"),
  16027. weight: math.unit(576, "lb"),
  16028. name: "Feral",
  16029. image: {
  16030. source: "./media/characters/embra/feral.svg",
  16031. extra: 152 / 137,
  16032. bottom: 0.037
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(9 + 2 / 12, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16046. {
  16047. anthro: {
  16048. height: math.unit(10 + 9 / 12, "feet"),
  16049. weight: math.unit(224, "lb"),
  16050. name: "Anthro",
  16051. image: {
  16052. source: "./media/characters/grottos/anthro.svg",
  16053. extra: 350 / 332,
  16054. bottom: 0.045
  16055. }
  16056. },
  16057. feral: {
  16058. height: math.unit(20 + 7 / 12, "feet"),
  16059. weight: math.unit(629, "lb"),
  16060. name: "Feral",
  16061. image: {
  16062. source: "./media/characters/grottos/feral.svg",
  16063. extra: 207 / 190,
  16064. bottom: 0.05
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(10 + 9 / 12, "feet"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16078. {
  16079. anthro: {
  16080. height: math.unit(9 + 6 / 12, "feet"),
  16081. weight: math.unit(298, "lb"),
  16082. name: "Anthro",
  16083. image: {
  16084. source: "./media/characters/frifna/anthro.svg",
  16085. extra: 282 / 269,
  16086. bottom: 0.015
  16087. }
  16088. },
  16089. feral: {
  16090. height: math.unit(16 + 2 / 12, "feet"),
  16091. weight: math.unit(624, "lb"),
  16092. name: "Feral",
  16093. image: {
  16094. source: "./media/characters/frifna/feral.svg"
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(9 + 6 / 12, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6 + 2 / 12, "feet"),
  16111. weight: math.unit(168, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/elise/front.svg",
  16115. extra: 276 / 271
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(6 + 2 / 12, "feet"),
  16123. default: true
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(5 + 10 / 12, "feet"),
  16132. weight: math.unit(210, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/glade/front.svg",
  16136. extra: 258 / 247,
  16137. bottom: 0.008
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(5 + 10 / 12, "feet"),
  16145. default: true
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16151. {
  16152. front: {
  16153. height: math.unit(5 + 10 / 12, "feet"),
  16154. weight: math.unit(129, "lb"),
  16155. name: "Front",
  16156. image: {
  16157. source: "./media/characters/rina/front.svg",
  16158. extra: 266 / 255,
  16159. bottom: 0.005
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(5 + 10 / 12, "feet"),
  16167. default: true
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16173. {
  16174. front: {
  16175. height: math.unit(6 + 1 / 12, "feet"),
  16176. weight: math.unit(192, "lb"),
  16177. name: "Front",
  16178. image: {
  16179. source: "./media/characters/veronica/front.svg",
  16180. extra: 319 / 309,
  16181. bottom: 0.005
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(6 + 1 / 12, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(9 + 3 / 12, "feet"),
  16198. weight: math.unit(1100, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/braxton/front.svg",
  16202. extra: 1057 / 984,
  16203. bottom: 0.05
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(9 + 3 / 12, "feet")
  16211. },
  16212. {
  16213. name: "Giant",
  16214. height: math.unit(300, "feet"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Macro",
  16219. height: math.unit(700, "feet")
  16220. },
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(6000, "feet")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6 + 7 / 12, "feet"),
  16232. weight: math.unit(150, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/blue-feyonics/front.svg",
  16236. extra: 1403 / 1306,
  16237. bottom: 0.047
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(6 + 7 / 12, "feet"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(1.8, "meters"),
  16254. weight: math.unit(60, "kg"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/maxwell/front.svg",
  16258. extra: 2060 / 1873
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(1, "mm")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(1.8, "meter"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(30, "meters")
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(10, "km")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/jack/front.svg",
  16291. extra: 1754 / 1640,
  16292. bottom: 0.01
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(80000, "feet"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Max size",
  16304. height: math.unit(10, "lightyears")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16310. {
  16311. urban: {
  16312. height: math.unit(5, "feet"),
  16313. weight: math.unit(240, "lb"),
  16314. name: "Urban",
  16315. image: {
  16316. source: "./media/characters/cafat/urban.svg",
  16317. extra: 1223/1126,
  16318. bottom: 205/1428
  16319. }
  16320. },
  16321. summer: {
  16322. height: math.unit(5, "feet"),
  16323. weight: math.unit(240, "lb"),
  16324. name: "Summer",
  16325. image: {
  16326. source: "./media/characters/cafat/summer.svg",
  16327. extra: 1223/1126,
  16328. bottom: 205/1428
  16329. }
  16330. },
  16331. winter: {
  16332. height: math.unit(5, "feet"),
  16333. weight: math.unit(240, "lb"),
  16334. name: "Winter",
  16335. image: {
  16336. source: "./media/characters/cafat/winter.svg",
  16337. extra: 1223/1126,
  16338. bottom: 205/1428
  16339. }
  16340. },
  16341. lingerie: {
  16342. height: math.unit(5, "feet"),
  16343. weight: math.unit(240, "lb"),
  16344. name: "Lingerie",
  16345. image: {
  16346. source: "./media/characters/cafat/lingerie.svg",
  16347. extra: 1223/1126,
  16348. bottom: 205/1428
  16349. }
  16350. },
  16351. upright: {
  16352. height: math.unit(6.3, "feet"),
  16353. weight: math.unit(240, "lb"),
  16354. name: "Upright",
  16355. image: {
  16356. source: "./media/characters/cafat/upright.svg",
  16357. bottom: 0.01
  16358. }
  16359. },
  16360. uprightFull: {
  16361. height: math.unit(6.3, "feet"),
  16362. weight: math.unit(240, "lb"),
  16363. name: "Upright (Full)",
  16364. image: {
  16365. source: "./media/characters/cafat/upright-full.svg",
  16366. bottom: 0.01
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Small",
  16373. height: math.unit(5, "feet"),
  16374. default: true
  16375. },
  16376. {
  16377. name: "Large",
  16378. height: math.unit(13, "feet")
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(150, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/verin-raharra/front.svg",
  16391. extra: 5019 / 4835,
  16392. bottom: 0.023
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(7 + 5 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Upsized",
  16404. height: math.unit(20, "feet")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(7, "feet"),
  16413. weight: math.unit(230, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/nakata/front.svg",
  16417. extra: 1.005,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(7, "feet"),
  16426. default: true
  16427. },
  16428. {
  16429. name: "Big",
  16430. height: math.unit(14, "feet")
  16431. },
  16432. {
  16433. name: "Macro",
  16434. height: math.unit(400, "feet")
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(4.91, "feet"),
  16443. weight: math.unit(100, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/lily/front.svg",
  16447. extra: 1585 / 1415,
  16448. bottom: 0.02
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(4.91, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16462. {
  16463. laying: {
  16464. height: math.unit(4 + 4 / 12, "feet"),
  16465. weight: math.unit(600, "lb"),
  16466. name: "Laying",
  16467. image: {
  16468. source: "./media/characters/sheila/laying.svg",
  16469. extra: 1333 / 1265,
  16470. bottom: 0.16
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(4 + 4 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6, "feet"),
  16487. weight: math.unit(190, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/sax/front.svg",
  16491. extra: 1187 / 973,
  16492. bottom: 0.042
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Micro",
  16499. height: math.unit(4, "inches"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(150, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/pandora/front.svg",
  16513. extra: 2720 / 2556,
  16514. bottom: 0.015
  16515. }
  16516. },
  16517. back: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Back",
  16521. image: {
  16522. source: "./media/characters/pandora/back.svg",
  16523. extra: 2720 / 2556,
  16524. bottom: 0.01
  16525. }
  16526. },
  16527. beans: {
  16528. height: math.unit(6 / 8, "feet"),
  16529. name: "Beans",
  16530. image: {
  16531. source: "./media/characters/pandora/beans.svg"
  16532. }
  16533. },
  16534. collar: {
  16535. height: math.unit(0.31, "feet"),
  16536. name: "Collar",
  16537. image: {
  16538. source: "./media/characters/pandora/collar.svg"
  16539. }
  16540. },
  16541. skirt: {
  16542. height: math.unit(6, "feet"),
  16543. weight: math.unit(150, "lb"),
  16544. name: "Skirt",
  16545. image: {
  16546. source: "./media/characters/pandora/skirt.svg",
  16547. extra: 1622 / 1525,
  16548. bottom: 0.015
  16549. }
  16550. },
  16551. hoodie: {
  16552. height: math.unit(6, "feet"),
  16553. weight: math.unit(150, "lb"),
  16554. name: "Hoodie",
  16555. image: {
  16556. source: "./media/characters/pandora/hoodie.svg",
  16557. extra: 1622 / 1525,
  16558. bottom: 0.015
  16559. }
  16560. },
  16561. casual: {
  16562. height: math.unit(6, "feet"),
  16563. weight: math.unit(150, "lb"),
  16564. name: "Casual",
  16565. image: {
  16566. source: "./media/characters/pandora/casual.svg",
  16567. extra: 1622 / 1525,
  16568. bottom: 0.015
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(6, "feet")
  16576. },
  16577. {
  16578. name: "Big Steppy",
  16579. height: math.unit(1, "km"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Galactic Steppy",
  16584. height: math.unit(2, "gigameters")
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16590. {
  16591. side: {
  16592. height: math.unit(10, "feet"),
  16593. weight: math.unit(800, "kg"),
  16594. name: "Side",
  16595. image: {
  16596. source: "./media/characters/venio-darcony/side.svg",
  16597. extra: 1373 / 1003,
  16598. bottom: 0.037
  16599. }
  16600. },
  16601. front: {
  16602. height: math.unit(19, "feet"),
  16603. weight: math.unit(800, "kg"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/venio-darcony/front.svg"
  16607. }
  16608. },
  16609. back: {
  16610. height: math.unit(19, "feet"),
  16611. weight: math.unit(800, "kg"),
  16612. name: "Back",
  16613. image: {
  16614. source: "./media/characters/venio-darcony/back.svg"
  16615. }
  16616. },
  16617. sideNsfw: {
  16618. height: math.unit(10, "feet"),
  16619. weight: math.unit(800, "kg"),
  16620. name: "Side (NSFW)",
  16621. image: {
  16622. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16623. extra: 1373 / 1003,
  16624. bottom: 0.037
  16625. }
  16626. },
  16627. frontNsfw: {
  16628. height: math.unit(19, "feet"),
  16629. weight: math.unit(800, "kg"),
  16630. name: "Front (NSFW)",
  16631. image: {
  16632. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16633. }
  16634. },
  16635. backNsfw: {
  16636. height: math.unit(19, "feet"),
  16637. weight: math.unit(800, "kg"),
  16638. name: "Back (NSFW)",
  16639. image: {
  16640. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16641. }
  16642. },
  16643. sideArmored: {
  16644. height: math.unit(10, "feet"),
  16645. weight: math.unit(800, "kg"),
  16646. name: "Side (Armored)",
  16647. image: {
  16648. source: "./media/characters/venio-darcony/side-armored.svg",
  16649. extra: 1373 / 1003,
  16650. bottom: 0.037
  16651. }
  16652. },
  16653. frontArmored: {
  16654. height: math.unit(19, "feet"),
  16655. weight: math.unit(900, "kg"),
  16656. name: "Front (Armored)",
  16657. image: {
  16658. source: "./media/characters/venio-darcony/front-armored.svg"
  16659. }
  16660. },
  16661. backArmored: {
  16662. height: math.unit(19, "feet"),
  16663. weight: math.unit(900, "kg"),
  16664. name: "Back (Armored)",
  16665. image: {
  16666. source: "./media/characters/venio-darcony/back-armored.svg"
  16667. }
  16668. },
  16669. sword: {
  16670. height: math.unit(10, "feet"),
  16671. weight: math.unit(50, "lb"),
  16672. name: "Sword",
  16673. image: {
  16674. source: "./media/characters/venio-darcony/sword.svg"
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(10, "feet")
  16682. },
  16683. {
  16684. name: "Macro",
  16685. height: math.unit(130, "feet"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Macro+",
  16690. height: math.unit(240, "feet")
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(6, "feet"),
  16699. weight: math.unit(150, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/veski/front.svg",
  16703. extra: 1299 / 1225,
  16704. bottom: 0.04
  16705. }
  16706. },
  16707. back: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(150, "lb"),
  16710. name: "Back",
  16711. image: {
  16712. source: "./media/characters/veski/back.svg",
  16713. extra: 1299 / 1225,
  16714. bottom: 0.008
  16715. }
  16716. },
  16717. maw: {
  16718. height: math.unit(1.5 * 1.21, "feet"),
  16719. name: "Maw",
  16720. image: {
  16721. source: "./media/characters/veski/maw.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Macro",
  16728. height: math.unit(2, "km"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(5 + 7 / 12, "feet"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/isabelle/front.svg",
  16741. extra: 2130 / 1976,
  16742. bottom: 0.05
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Supermicro",
  16749. height: math.unit(10, "micrometers")
  16750. },
  16751. {
  16752. name: "Micro",
  16753. height: math.unit(1, "inch")
  16754. },
  16755. {
  16756. name: "Tiny",
  16757. height: math.unit(5, "inches")
  16758. },
  16759. {
  16760. name: "Standard",
  16761. height: math.unit(5 + 7 / 12, "inches")
  16762. },
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(80, "meters"),
  16766. default: true
  16767. },
  16768. {
  16769. name: "Megamacro",
  16770. height: math.unit(250, "meters")
  16771. },
  16772. {
  16773. name: "Gigamacro",
  16774. height: math.unit(5, "km")
  16775. },
  16776. {
  16777. name: "Cosmic",
  16778. height: math.unit(2.5e6, "miles")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(6, "feet"),
  16787. weight: math.unit(150, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/hanzo/front.svg",
  16791. extra: 374 / 344,
  16792. bottom: 0.02
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(8, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(7, "feet"),
  16809. weight: math.unit(130, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/anna/front.svg",
  16813. extra: 169 / 145,
  16814. bottom: 0.06
  16815. }
  16816. },
  16817. full: {
  16818. height: math.unit(4.96, "feet"),
  16819. weight: math.unit(220, "lb"),
  16820. name: "Full",
  16821. image: {
  16822. source: "./media/characters/anna/full.svg",
  16823. extra: 138 / 114,
  16824. bottom: 0.15
  16825. }
  16826. },
  16827. tongue: {
  16828. height: math.unit(2.53, "feet"),
  16829. name: "Tongue",
  16830. image: {
  16831. source: "./media/characters/anna/tongue.svg"
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(7, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(7, "feet"),
  16848. weight: math.unit(150, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/ian-corvid/front.svg",
  16852. extra: 150 / 142,
  16853. bottom: 0.02
  16854. }
  16855. },
  16856. back: {
  16857. height: math.unit(7, "feet"),
  16858. weight: math.unit(150, "lb"),
  16859. name: "Back",
  16860. image: {
  16861. source: "./media/characters/ian-corvid/back.svg",
  16862. extra: 150 / 143,
  16863. bottom: 0.01
  16864. }
  16865. },
  16866. stomping: {
  16867. height: math.unit(7, "feet"),
  16868. weight: math.unit(150, "lb"),
  16869. name: "Stomping",
  16870. image: {
  16871. source: "./media/characters/ian-corvid/stomping.svg",
  16872. extra: 76 / 72
  16873. }
  16874. },
  16875. sitting: {
  16876. height: math.unit(7 / 1.8, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Sitting",
  16879. image: {
  16880. source: "./media/characters/ian-corvid/sitting.svg",
  16881. extra: 1400 / 1269,
  16882. bottom: 0.15
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Tiny Microw",
  16889. height: math.unit(1, "inch")
  16890. },
  16891. {
  16892. name: "Microw",
  16893. height: math.unit(6, "inches")
  16894. },
  16895. {
  16896. name: "Crow",
  16897. height: math.unit(7 + 1 / 12, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Macrow",
  16902. height: math.unit(176, "feet")
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(5 + 7 / 12, "feet"),
  16911. weight: math.unit(147, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/natalie-kellon/front.svg",
  16915. extra: 1214 / 1141,
  16916. bottom: 0.02
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Micro",
  16923. height: math.unit(1 / 16, "inch")
  16924. },
  16925. {
  16926. name: "Tiny",
  16927. height: math.unit(4, "inches")
  16928. },
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(5 + 7 / 12, "feet"),
  16932. default: true
  16933. },
  16934. {
  16935. name: "Amazon",
  16936. height: math.unit(12, "feet")
  16937. },
  16938. {
  16939. name: "Giantess",
  16940. height: math.unit(160, "meters")
  16941. },
  16942. {
  16943. name: "Titaness",
  16944. height: math.unit(800, "meters")
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6, "feet"),
  16953. weight: math.unit(150, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/alluria/front.svg",
  16957. extra: 806 / 738,
  16958. bottom: 0.01
  16959. }
  16960. },
  16961. side: {
  16962. height: math.unit(6, "feet"),
  16963. weight: math.unit(150, "lb"),
  16964. name: "Side",
  16965. image: {
  16966. source: "./media/characters/alluria/side.svg",
  16967. extra: 800 / 750,
  16968. }
  16969. },
  16970. back: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Back",
  16974. image: {
  16975. source: "./media/characters/alluria/back.svg",
  16976. extra: 806 / 738,
  16977. }
  16978. },
  16979. frontMaid: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Front (Maid)",
  16983. image: {
  16984. source: "./media/characters/alluria/front-maid.svg",
  16985. extra: 806 / 738,
  16986. bottom: 0.01
  16987. }
  16988. },
  16989. sideMaid: {
  16990. height: math.unit(6, "feet"),
  16991. weight: math.unit(150, "lb"),
  16992. name: "Side (Maid)",
  16993. image: {
  16994. source: "./media/characters/alluria/side-maid.svg",
  16995. extra: 800 / 750,
  16996. bottom: 0.005
  16997. }
  16998. },
  16999. backMaid: {
  17000. height: math.unit(6, "feet"),
  17001. weight: math.unit(150, "lb"),
  17002. name: "Back (Maid)",
  17003. image: {
  17004. source: "./media/characters/alluria/back-maid.svg",
  17005. extra: 806 / 738,
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Micro",
  17012. height: math.unit(6, "inches"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(6, "feet"),
  17022. weight: math.unit(150, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/kyle/front.svg",
  17026. extra: 1069 / 962,
  17027. bottom: 77.228 / 1727.45
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Macro",
  17034. height: math.unit(150, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(6, "feet"),
  17044. weight: math.unit(300, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/duncan/front.svg",
  17048. extra: 1650 / 1482,
  17049. bottom: 0.05
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Macro",
  17056. height: math.unit(100, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 4 / 12, "feet"),
  17066. weight: math.unit(220, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/memory/front.svg",
  17070. extra: 3641 / 3545,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(5 + 4 / 12, "feet"),
  17076. weight: math.unit(220, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/memory/back.svg",
  17080. extra: 3641 / 3545,
  17081. bottom: 0.025
  17082. }
  17083. },
  17084. frontSkirt: {
  17085. height: math.unit(5 + 4 / 12, "feet"),
  17086. weight: math.unit(220, "lb"),
  17087. name: "Front (Skirt)",
  17088. image: {
  17089. source: "./media/characters/memory/front-skirt.svg",
  17090. extra: 3641 / 3545,
  17091. bottom: 0.03
  17092. }
  17093. },
  17094. frontDress: {
  17095. height: math.unit(5 + 4 / 12, "feet"),
  17096. weight: math.unit(220, "lb"),
  17097. name: "Front (Dress)",
  17098. image: {
  17099. source: "./media/characters/memory/front-dress.svg",
  17100. extra: 3641 / 3545,
  17101. bottom: 0.03
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Micro",
  17108. height: math.unit(6, "inches"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(5 + 4 / 12, "feet")
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(4 + 11 / 12, "feet"),
  17122. weight: math.unit(100, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/luno/front.svg",
  17126. extra: 1535 / 1487,
  17127. bottom: 0.03
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Micro",
  17134. height: math.unit(3, "inches")
  17135. },
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(4 + 11 / 12, "feet"),
  17139. default: true
  17140. },
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(300, "feet")
  17144. },
  17145. {
  17146. name: "Megamacro",
  17147. height: math.unit(700, "miles")
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(6 + 2 / 12, "feet"),
  17156. weight: math.unit(170, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/jamesy/front.svg",
  17160. extra: 440 / 382,
  17161. bottom: 0.005
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Micro",
  17168. height: math.unit(3, "inches")
  17169. },
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(6 + 2 / 12, "feet"),
  17173. default: true
  17174. },
  17175. {
  17176. name: "Macro",
  17177. height: math.unit(300, "feet")
  17178. },
  17179. {
  17180. name: "Megamacro",
  17181. height: math.unit(700, "miles")
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(6, "feet"),
  17190. weight: math.unit(160, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/mark/front.svg",
  17194. extra: 3300 / 3100,
  17195. bottom: 136.42 / 3440.47
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(120, "meters")
  17203. },
  17204. {
  17205. name: "Bigger Macro",
  17206. height: math.unit(350, "meters")
  17207. },
  17208. {
  17209. name: "Megamacro",
  17210. height: math.unit(8, "km"),
  17211. default: true
  17212. },
  17213. {
  17214. name: "Continental",
  17215. height: math.unit(4550, "km")
  17216. },
  17217. {
  17218. name: "Planetary",
  17219. height: math.unit(65000, "km")
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(6, "feet"),
  17228. weight: math.unit(400, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/mac/front.svg",
  17232. extra: 1048 / 987.7,
  17233. bottom: 60 / 1107.6,
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(500, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(5 + 2 / 12, "feet"),
  17250. weight: math.unit(190, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/bari/front.svg",
  17254. extra: 3156 / 2880,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. back: {
  17259. height: math.unit(5 + 2 / 12, "feet"),
  17260. weight: math.unit(190, "lb"),
  17261. name: "Back",
  17262. image: {
  17263. source: "./media/characters/bari/back.svg",
  17264. extra: 3260 / 2834,
  17265. bottom: 0.025
  17266. }
  17267. },
  17268. frontPlush: {
  17269. height: math.unit(5 + 2 / 12, "feet"),
  17270. weight: math.unit(190, "lb"),
  17271. name: "Front (Plush)",
  17272. image: {
  17273. source: "./media/characters/bari/front-plush.svg",
  17274. extra: 1112 / 1061,
  17275. bottom: 0.002
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Micro",
  17282. height: math.unit(3, "inches")
  17283. },
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(5 + 2 / 12, "feet"),
  17287. default: true
  17288. },
  17289. {
  17290. name: "Macro",
  17291. height: math.unit(20, "feet")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6 + 1 / 12, "feet"),
  17300. weight: math.unit(275, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/hunter-misha-raven/front.svg"
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Mortal",
  17310. height: math.unit(6 + 1 / 12, "feet")
  17311. },
  17312. {
  17313. name: "Divine",
  17314. height: math.unit(1.12134e34, "parsecs"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(6 + 3 / 12, "feet"),
  17324. weight: math.unit(220, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/max-calore/front.svg",
  17328. extra: 1700 / 1648,
  17329. bottom: 0.01
  17330. }
  17331. },
  17332. back: {
  17333. height: math.unit(6 + 3 / 12, "feet"),
  17334. weight: math.unit(220, "lb"),
  17335. name: "Back",
  17336. image: {
  17337. source: "./media/characters/max-calore/back.svg",
  17338. extra: 1700 / 1648,
  17339. bottom: 0.01
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(6 + 3 / 12, "feet"),
  17347. default: true
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17353. {
  17354. side: {
  17355. height: math.unit(2 + 8 / 12, "feet"),
  17356. weight: math.unit(99, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/aspen/side.svg",
  17360. extra: 152 / 138,
  17361. bottom: 0.032
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(2 + 8 / 12, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17375. {
  17376. side: {
  17377. height: math.unit(3 + 2 / 12, "feet"),
  17378. weight: math.unit(224, "lb"),
  17379. name: "Side",
  17380. image: {
  17381. source: "./media/characters/sheila-feral-wolf/side.svg",
  17382. extra: 179 / 166,
  17383. bottom: 0.03
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(3 + 2 / 12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17397. {
  17398. side: {
  17399. height: math.unit(1 + 9 / 12, "feet"),
  17400. weight: math.unit(38, "lb"),
  17401. name: "Side",
  17402. image: {
  17403. source: "./media/characters/michelle/side.svg",
  17404. extra: 147 / 136.7,
  17405. bottom: 0.03
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(1 + 9 / 12, "feet"),
  17413. default: true
  17414. },
  17415. ]
  17416. ))
  17417. characterMakers.push(() => makeCharacter(
  17418. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17419. {
  17420. front: {
  17421. height: math.unit(1.54, "feet"),
  17422. weight: math.unit(50, "lb"),
  17423. name: "Front",
  17424. image: {
  17425. source: "./media/characters/nino/front.svg"
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(1.54, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(1.49, "feet"),
  17442. weight: math.unit(45, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/viola/front.svg"
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(1.49, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 5 / 12, "feet"),
  17462. weight: math.unit(580, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/atlas/front.svg",
  17466. extra: 298.5 / 290,
  17467. bottom: 0.015
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(6 + 5 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17481. {
  17482. side: {
  17483. height: math.unit(15.6, "inches"),
  17484. weight: math.unit(10, "lb"),
  17485. name: "Side",
  17486. image: {
  17487. source: "./media/characters/davy/side.svg",
  17488. extra: 200 / 170,
  17489. bottom: 0.01
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(15.6, "inches"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17503. {
  17504. side: {
  17505. height: math.unit(4 + 8 / 12, "feet"),
  17506. weight: math.unit(166, "lb"),
  17507. name: "Side",
  17508. image: {
  17509. source: "./media/characters/fiona/side.svg",
  17510. extra: 232 / 220,
  17511. bottom: 0.03
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(4 + 8 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17525. {
  17526. front: {
  17527. height: math.unit(26, "inches"),
  17528. weight: math.unit(35, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/lyla/front.svg",
  17532. bottom: 0.1
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(3, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17546. {
  17547. side: {
  17548. height: math.unit(1.8, "feet"),
  17549. weight: math.unit(44, "lb"),
  17550. name: "Side",
  17551. image: {
  17552. source: "./media/characters/perseus/side.svg",
  17553. bottom: 0.21
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(1.8, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17567. {
  17568. side: {
  17569. height: math.unit(4 + 2 / 12, "feet"),
  17570. weight: math.unit(20, "lb"),
  17571. name: "Side",
  17572. image: {
  17573. source: "./media/characters/remus/side.svg"
  17574. }
  17575. },
  17576. },
  17577. [
  17578. {
  17579. name: "Normal",
  17580. height: math.unit(4 + 2 / 12, "feet"),
  17581. default: true
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17587. {
  17588. front: {
  17589. height: math.unit(4 + 11 / 12, "feet"),
  17590. weight: math.unit(114, "lb"),
  17591. name: "Front",
  17592. image: {
  17593. source: "./media/characters/raf/front.svg",
  17594. extra: 1504/1339,
  17595. bottom: 26/1530
  17596. }
  17597. },
  17598. side: {
  17599. height: math.unit(4 + 11 / 12, "feet"),
  17600. weight: math.unit(114, "lb"),
  17601. name: "Side",
  17602. image: {
  17603. source: "./media/characters/raf/side.svg",
  17604. extra: 1466/1316,
  17605. bottom: 29/1495
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Micro",
  17612. height: math.unit(2, "inches")
  17613. },
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(4 + 11 / 12, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(70, "feet")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(1.5, "meters"),
  17630. weight: math.unit(68, "kg"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/liam-einarr/front.svg",
  17634. extra: 2822 / 2666
  17635. }
  17636. },
  17637. back: {
  17638. height: math.unit(1.5, "meters"),
  17639. weight: math.unit(68, "kg"),
  17640. name: "Back",
  17641. image: {
  17642. source: "./media/characters/liam-einarr/back.svg",
  17643. extra: 2822 / 2666,
  17644. bottom: 0.015
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(1.5, "meters"),
  17652. default: true
  17653. },
  17654. {
  17655. name: "Macro",
  17656. height: math.unit(150, "meters")
  17657. },
  17658. {
  17659. name: "Megamacro",
  17660. height: math.unit(35, "km")
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(6, "feet"),
  17669. weight: math.unit(75, "kg"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/linda/front.svg",
  17673. extra: 930 / 874,
  17674. bottom: 0.004
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(6, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(6 + 8 / 12, "feet"),
  17691. weight: math.unit(220, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/caylex/front.svg",
  17695. extra: 821 / 772,
  17696. bottom: 0.07
  17697. }
  17698. },
  17699. back: {
  17700. height: math.unit(6 + 8 / 12, "feet"),
  17701. weight: math.unit(220, "lb"),
  17702. name: "Back",
  17703. image: {
  17704. source: "./media/characters/caylex/back.svg",
  17705. extra: 821 / 772,
  17706. bottom: 0.022
  17707. }
  17708. },
  17709. hand: {
  17710. height: math.unit(1.25, "feet"),
  17711. name: "Hand",
  17712. image: {
  17713. source: "./media/characters/caylex/hand.svg"
  17714. }
  17715. },
  17716. foot: {
  17717. height: math.unit(1.6, "feet"),
  17718. name: "Foot",
  17719. image: {
  17720. source: "./media/characters/caylex/foot.svg"
  17721. }
  17722. },
  17723. armored: {
  17724. height: math.unit(6 + 8 / 12, "feet"),
  17725. weight: math.unit(250, "lb"),
  17726. name: "Armored",
  17727. image: {
  17728. source: "./media/characters/caylex/armored.svg",
  17729. extra: 1420 / 1310,
  17730. bottom: 0.045
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(6 + 8 / 12, "feet"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Normal+",
  17742. height: math.unit(12, "feet")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(7 + 6 / 12, "feet"),
  17751. weight: math.unit(288, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/alana/front.svg",
  17755. extra: 679 / 653,
  17756. bottom: 22.5 / 701
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(7 + 6 / 12, "feet")
  17764. },
  17765. {
  17766. name: "Large",
  17767. height: math.unit(50, "feet")
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(100, "feet"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Macro+",
  17776. height: math.unit(200, "feet")
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17782. {
  17783. front: {
  17784. height: math.unit(6 + 1 / 12, "feet"),
  17785. weight: math.unit(210, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/hasani/front.svg",
  17789. extra: 244 / 232,
  17790. bottom: 0.01
  17791. }
  17792. },
  17793. back: {
  17794. height: math.unit(6 + 1 / 12, "feet"),
  17795. weight: math.unit(210, "lb"),
  17796. name: "Back",
  17797. image: {
  17798. source: "./media/characters/hasani/back.svg",
  17799. extra: 244 / 232,
  17800. bottom: 0.01
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(6 + 1 / 12, "feet")
  17808. },
  17809. {
  17810. name: "Macro",
  17811. height: math.unit(175, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(1.82, "meters"),
  17821. weight: math.unit(140, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/nita/front.svg",
  17825. extra: 2473 / 2363,
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1.82, "m")
  17834. },
  17835. {
  17836. name: "Macro",
  17837. height: math.unit(300, "m")
  17838. },
  17839. {
  17840. name: "Mistake Canon",
  17841. height: math.unit(0.5, "miles"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Big Mistake",
  17846. height: math.unit(13, "miles")
  17847. },
  17848. {
  17849. name: "Playing God",
  17850. height: math.unit(2450, "miles")
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(4, "feet"),
  17859. weight: math.unit(120, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/shiriko/front.svg",
  17863. extra: 970/934,
  17864. bottom: 5/975
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(4, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6, "feet"),
  17881. name: "front",
  17882. image: {
  17883. source: "./media/characters/deja/front.svg",
  17884. extra: 926 / 840,
  17885. bottom: 0.07
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Planck Length",
  17892. height: math.unit(1.6e-35, "meters")
  17893. },
  17894. {
  17895. name: "Normal",
  17896. height: math.unit(30.48, "meters"),
  17897. default: true
  17898. },
  17899. {
  17900. name: "Universal",
  17901. height: math.unit(8.8e26, "meters")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17907. {
  17908. side: {
  17909. height: math.unit(8, "feet"),
  17910. weight: math.unit(6300, "lb"),
  17911. name: "Side",
  17912. image: {
  17913. source: "./media/characters/anima/side.svg",
  17914. bottom: 0.035
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(8, "feet"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(8, "feet"),
  17931. weight: math.unit(350, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/bianca/front.svg",
  17935. extra: 234 / 225,
  17936. bottom: 0.03
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(8, "feet"),
  17944. default: true
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(6, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/adinia/front.svg",
  17957. extra: 1845 / 1672,
  17958. bottom: 0.02
  17959. }
  17960. },
  17961. back: {
  17962. height: math.unit(6, "feet"),
  17963. weight: math.unit(150, "lb"),
  17964. name: "Back",
  17965. image: {
  17966. source: "./media/characters/adinia/back.svg",
  17967. extra: 1845 / 1672,
  17968. bottom: 0.002
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(11 + 5 / 12, "feet"),
  17976. default: true
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(3, "meters"),
  17985. weight: math.unit(200, "kg"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/lykasa/front.svg",
  17989. extra: 1076 / 976,
  17990. bottom: 0.06
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(3, "meters")
  17998. },
  17999. {
  18000. name: "Kaiju",
  18001. height: math.unit(120, "meters"),
  18002. default: true
  18003. },
  18004. {
  18005. name: "Mega Kaiju",
  18006. height: math.unit(240, "km")
  18007. },
  18008. {
  18009. name: "Giga Kaiju",
  18010. height: math.unit(400, "megameters")
  18011. },
  18012. {
  18013. name: "Tera Kaiju",
  18014. height: math.unit(800, "gigameters")
  18015. },
  18016. {
  18017. name: "Kaiju Dragon Goddess",
  18018. height: math.unit(26, "zettaparsecs")
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18024. {
  18025. side: {
  18026. height: math.unit(283 / 124 * 6, "feet"),
  18027. weight: math.unit(35000, "lb"),
  18028. name: "Side",
  18029. image: {
  18030. source: "./media/characters/malfaren/side.svg",
  18031. extra: 1310/529,
  18032. bottom: 24/1334
  18033. }
  18034. },
  18035. front: {
  18036. height: math.unit(22.36, "feet"),
  18037. weight: math.unit(35000, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/malfaren/front.svg",
  18041. extra: 1237/1115,
  18042. bottom: 32/1269
  18043. }
  18044. },
  18045. maw: {
  18046. height: math.unit(6.9, "feet"),
  18047. name: "Maw",
  18048. image: {
  18049. source: "./media/characters/malfaren/maw.svg"
  18050. }
  18051. },
  18052. dick: {
  18053. height: math.unit(6.19, "feet"),
  18054. name: "Dick",
  18055. image: {
  18056. source: "./media/characters/malfaren/dick.svg"
  18057. }
  18058. },
  18059. eye: {
  18060. height: math.unit(0.69, "feet"),
  18061. name: "Eye",
  18062. image: {
  18063. source: "./media/characters/malfaren/eye.svg"
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Big",
  18070. height: math.unit(283 / 162 * 6, "feet"),
  18071. },
  18072. {
  18073. name: "Bigger",
  18074. height: math.unit(283 / 124 * 6, "feet")
  18075. },
  18076. {
  18077. name: "Massive",
  18078. height: math.unit(283 / 92 * 6, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "👀💦",
  18083. height: math.unit(283 / 73 * 6, "feet"),
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(1.7, "m"),
  18092. weight: math.unit(70, "kg"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/kernel/front.svg",
  18096. extra: 222 / 210,
  18097. bottom: 0.007
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Nano",
  18104. height: math.unit(17, "micrometers")
  18105. },
  18106. {
  18107. name: "Micro",
  18108. height: math.unit(1.7, "mm")
  18109. },
  18110. {
  18111. name: "Small",
  18112. height: math.unit(1.7, "cm")
  18113. },
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(1.7, "m"),
  18117. default: true
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(1.75, "meters"),
  18126. weight: math.unit(65, "kg"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/jayne-folest/front.svg",
  18130. extra: 2115 / 2007,
  18131. bottom: 0.02
  18132. }
  18133. },
  18134. back: {
  18135. height: math.unit(1.75, "meters"),
  18136. weight: math.unit(65, "kg"),
  18137. name: "Back",
  18138. image: {
  18139. source: "./media/characters/jayne-folest/back.svg",
  18140. extra: 2115 / 2007,
  18141. bottom: 0.005
  18142. }
  18143. },
  18144. frontClothed: {
  18145. height: math.unit(1.75, "meters"),
  18146. weight: math.unit(65, "kg"),
  18147. name: "Front (Clothed)",
  18148. image: {
  18149. source: "./media/characters/jayne-folest/front-clothed.svg",
  18150. extra: 2115 / 2007,
  18151. bottom: 0.035
  18152. }
  18153. },
  18154. hand: {
  18155. height: math.unit(1 / 1.260, "feet"),
  18156. name: "Hand",
  18157. image: {
  18158. source: "./media/characters/jayne-folest/hand.svg"
  18159. }
  18160. },
  18161. foot: {
  18162. height: math.unit(1 / 0.918, "feet"),
  18163. name: "Foot",
  18164. image: {
  18165. source: "./media/characters/jayne-folest/foot.svg"
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Micro",
  18172. height: math.unit(4, "cm")
  18173. },
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(1.75, "meters")
  18177. },
  18178. {
  18179. name: "Macro",
  18180. height: math.unit(47.5, "meters"),
  18181. default: true
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(180, "cm"),
  18190. weight: math.unit(70, "kg"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/algier/front.svg",
  18194. extra: 596 / 572,
  18195. bottom: 0.04
  18196. }
  18197. },
  18198. back: {
  18199. height: math.unit(180, "cm"),
  18200. weight: math.unit(70, "kg"),
  18201. name: "Back",
  18202. image: {
  18203. source: "./media/characters/algier/back.svg",
  18204. extra: 596 / 572,
  18205. bottom: 0.025
  18206. }
  18207. },
  18208. frontdressed: {
  18209. height: math.unit(180, "cm"),
  18210. weight: math.unit(150, "kg"),
  18211. name: "Front-dressed",
  18212. image: {
  18213. source: "./media/characters/algier/front-dressed.svg",
  18214. extra: 596 / 572,
  18215. bottom: 0.038
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Micro",
  18222. height: math.unit(5, "cm")
  18223. },
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(180, "cm"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(64, "m")
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18237. {
  18238. upright: {
  18239. height: math.unit(7, "feet"),
  18240. weight: math.unit(300, "lb"),
  18241. name: "Upright",
  18242. image: {
  18243. source: "./media/characters/pretzel/upright.svg",
  18244. extra: 534 / 522,
  18245. bottom: 0.065
  18246. }
  18247. },
  18248. sprawling: {
  18249. height: math.unit(3.75, "feet"),
  18250. weight: math.unit(300, "lb"),
  18251. name: "Sprawling",
  18252. image: {
  18253. source: "./media/characters/pretzel/sprawling.svg",
  18254. extra: 314 / 281,
  18255. bottom: 0.1
  18256. }
  18257. },
  18258. tongue: {
  18259. height: math.unit(2, "feet"),
  18260. name: "Tongue",
  18261. image: {
  18262. source: "./media/characters/pretzel/tongue.svg"
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Normal",
  18269. height: math.unit(7, "feet"),
  18270. default: true
  18271. },
  18272. {
  18273. name: "Oversized",
  18274. height: math.unit(15, "feet")
  18275. },
  18276. {
  18277. name: "Huge",
  18278. height: math.unit(30, "feet")
  18279. },
  18280. {
  18281. name: "Macro",
  18282. height: math.unit(250, "feet")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18288. {
  18289. sideFront: {
  18290. height: math.unit(5 + 2 / 12, "feet"),
  18291. weight: math.unit(120, "lb"),
  18292. name: "Front Side",
  18293. image: {
  18294. source: "./media/characters/roxi/side-front.svg",
  18295. extra: 2924 / 2717,
  18296. bottom: 0.08
  18297. }
  18298. },
  18299. sideBack: {
  18300. height: math.unit(5 + 2 / 12, "feet"),
  18301. weight: math.unit(120, "lb"),
  18302. name: "Back Side",
  18303. image: {
  18304. source: "./media/characters/roxi/side-back.svg",
  18305. extra: 2904 / 2693,
  18306. bottom: 0.06
  18307. }
  18308. },
  18309. front: {
  18310. height: math.unit(5 + 2 / 12, "feet"),
  18311. weight: math.unit(120, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/roxi/front.svg",
  18315. extra: 2028 / 1907,
  18316. bottom: 0.01
  18317. }
  18318. },
  18319. frontAlt: {
  18320. height: math.unit(5 + 2 / 12, "feet"),
  18321. weight: math.unit(120, "lb"),
  18322. name: "Front (Alt)",
  18323. image: {
  18324. source: "./media/characters/roxi/front-alt.svg",
  18325. extra: 1828 / 1798,
  18326. bottom: 0.01
  18327. }
  18328. },
  18329. sitting: {
  18330. height: math.unit(2.8, "feet"),
  18331. weight: math.unit(120, "lb"),
  18332. name: "Sitting",
  18333. image: {
  18334. source: "./media/characters/roxi/sitting.svg",
  18335. extra: 2660 / 2462,
  18336. bottom: 0.1
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(5 + 2 / 12, "feet"),
  18344. default: true
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18350. {
  18351. side: {
  18352. height: math.unit(55, "feet"),
  18353. weight: math.unit(153, "tons"),
  18354. name: "Side",
  18355. image: {
  18356. source: "./media/characters/shadow/side.svg",
  18357. extra: 701 / 628,
  18358. bottom: 0.02
  18359. }
  18360. },
  18361. flying: {
  18362. height: math.unit(145, "feet"),
  18363. weight: math.unit(153, "tons"),
  18364. name: "Flying",
  18365. image: {
  18366. source: "./media/characters/shadow/flying.svg"
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(55, "feet"),
  18374. default: true
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(6, "feet"),
  18383. weight: math.unit(200, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/marcie/front.svg",
  18387. extra: 960 / 876,
  18388. bottom: 58 / 1017.87
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Macro",
  18395. height: math.unit(1, "mile"),
  18396. default: true
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(7, "feet"),
  18405. weight: math.unit(200, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/kachina/front.svg",
  18409. extra: 1290.68 / 1119,
  18410. bottom: 36.5 / 1327.18
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(7, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18424. {
  18425. looking: {
  18426. height: math.unit(2, "meters"),
  18427. weight: math.unit(300, "kg"),
  18428. name: "Looking",
  18429. image: {
  18430. source: "./media/characters/kash/looking.svg",
  18431. extra: 474 / 344,
  18432. bottom: 0.03
  18433. }
  18434. },
  18435. side: {
  18436. height: math.unit(2, "meters"),
  18437. weight: math.unit(300, "kg"),
  18438. name: "Side",
  18439. image: {
  18440. source: "./media/characters/kash/side.svg",
  18441. extra: 302 / 251,
  18442. bottom: 0.03
  18443. }
  18444. },
  18445. front: {
  18446. height: math.unit(2, "meters"),
  18447. weight: math.unit(300, "kg"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/kash/front.svg",
  18451. extra: 495 / 360,
  18452. bottom: 0.015
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(2, "meters"),
  18460. default: true
  18461. },
  18462. {
  18463. name: "Big",
  18464. height: math.unit(3, "meters")
  18465. },
  18466. {
  18467. name: "Large",
  18468. height: math.unit(5, "meters")
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18474. {
  18475. feeding: {
  18476. height: math.unit(6.7, "feet"),
  18477. weight: math.unit(350, "lb"),
  18478. name: "Feeding",
  18479. image: {
  18480. source: "./media/characters/lalim/feeding.svg",
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(6.7, "feet"),
  18488. default: true
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(9.5, "feet"),
  18497. weight: math.unit(600, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/de'vout/front.svg",
  18501. extra: 1443 / 1328,
  18502. bottom: 0.025
  18503. }
  18504. },
  18505. back: {
  18506. height: math.unit(9.5, "feet"),
  18507. weight: math.unit(600, "lb"),
  18508. name: "Back",
  18509. image: {
  18510. source: "./media/characters/de'vout/back.svg",
  18511. extra: 1443 / 1328
  18512. }
  18513. },
  18514. frontDressed: {
  18515. height: math.unit(9.5, "feet"),
  18516. weight: math.unit(600, "lb"),
  18517. name: "Front (Dressed",
  18518. image: {
  18519. source: "./media/characters/de'vout/front-dressed.svg",
  18520. extra: 1443 / 1328,
  18521. bottom: 0.025
  18522. }
  18523. },
  18524. backDressed: {
  18525. height: math.unit(9.5, "feet"),
  18526. weight: math.unit(600, "lb"),
  18527. name: "Back (Dressed",
  18528. image: {
  18529. source: "./media/characters/de'vout/back-dressed.svg",
  18530. extra: 1443 / 1328
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(9.5, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(8, "feet"),
  18547. weight: math.unit(225, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/talana/front.svg",
  18551. extra: 1410 / 1300,
  18552. bottom: 0.015
  18553. }
  18554. },
  18555. frontDressed: {
  18556. height: math.unit(8, "feet"),
  18557. weight: math.unit(225, "lb"),
  18558. name: "Front (Dressed",
  18559. image: {
  18560. source: "./media/characters/talana/front-dressed.svg",
  18561. extra: 1410 / 1300,
  18562. bottom: 0.015
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(8, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18576. {
  18577. side: {
  18578. height: math.unit(7.2, "feet"),
  18579. weight: math.unit(150, "lb"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/xeauvok/side.svg",
  18583. extra: 1975 / 1523,
  18584. bottom: 0.07
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(7.2, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18598. {
  18599. side: {
  18600. height: math.unit(10, "feet"),
  18601. weight: math.unit(900, "kg"),
  18602. name: "Side",
  18603. image: {
  18604. source: "./media/characters/zara/side.svg",
  18605. extra: 504 / 498
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(10, "feet"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18619. {
  18620. side: {
  18621. height: math.unit(6, "feet"),
  18622. weight: math.unit(150, "lb"),
  18623. name: "Side",
  18624. image: {
  18625. source: "./media/characters/richard-dragon/side.svg",
  18626. extra: 845 / 340,
  18627. bottom: 0.017
  18628. }
  18629. },
  18630. maw: {
  18631. height: math.unit(2.97, "feet"),
  18632. name: "Maw",
  18633. image: {
  18634. source: "./media/characters/richard-dragon/maw.svg"
  18635. }
  18636. },
  18637. },
  18638. [
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18643. {
  18644. front: {
  18645. height: math.unit(4, "feet"),
  18646. weight: math.unit(100, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/richard-smeargle/front.svg",
  18650. extra: 2952 / 2820,
  18651. bottom: 0.028
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(4, "feet"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Dynamax",
  18663. height: math.unit(20, "meters")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6, "feet"),
  18672. weight: math.unit(110, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/klay/front.svg",
  18676. extra: 962 / 883,
  18677. bottom: 0.04
  18678. }
  18679. },
  18680. back: {
  18681. height: math.unit(6, "feet"),
  18682. weight: math.unit(110, "lb"),
  18683. name: "Back",
  18684. image: {
  18685. source: "./media/characters/klay/back.svg",
  18686. extra: 962 / 883
  18687. }
  18688. },
  18689. beans: {
  18690. height: math.unit(1.15, "feet"),
  18691. name: "Beans",
  18692. image: {
  18693. source: "./media/characters/klay/beans.svg"
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Micro",
  18700. height: math.unit(6, "inches")
  18701. },
  18702. {
  18703. name: "Mini",
  18704. height: math.unit(3, "feet")
  18705. },
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(6, "feet"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Big",
  18713. height: math.unit(25, "feet")
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(100, "feet")
  18718. },
  18719. {
  18720. name: "Megamacro",
  18721. height: math.unit(400, "feet")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(6, "feet"),
  18730. weight: math.unit(160, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/marcus/front.svg",
  18734. extra: 734 / 676,
  18735. bottom: 0.03
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Little",
  18742. height: math.unit(6, "feet")
  18743. },
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(110, "feet"),
  18747. default: true
  18748. },
  18749. {
  18750. name: "Macro",
  18751. height: math.unit(250, "feet")
  18752. },
  18753. {
  18754. name: "Megamacro",
  18755. height: math.unit(1000, "feet")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(7, "feet"),
  18764. weight: math.unit(275, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/claude-delroute/front.svg",
  18768. extra: 902/827,
  18769. bottom: 26/928
  18770. }
  18771. },
  18772. side: {
  18773. height: math.unit(7, "feet"),
  18774. weight: math.unit(275, "lb"),
  18775. name: "Side",
  18776. image: {
  18777. source: "./media/characters/claude-delroute/side.svg",
  18778. extra: 908/853,
  18779. bottom: 16/924
  18780. }
  18781. },
  18782. back: {
  18783. height: math.unit(7, "feet"),
  18784. weight: math.unit(275, "lb"),
  18785. name: "Back",
  18786. image: {
  18787. source: "./media/characters/claude-delroute/back.svg",
  18788. extra: 911/829,
  18789. bottom: 18/929
  18790. }
  18791. },
  18792. maw: {
  18793. height: math.unit(0.6407, "meters"),
  18794. name: "Maw",
  18795. image: {
  18796. source: "./media/characters/claude-delroute/maw.svg"
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(7, "feet"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Lorge",
  18808. height: math.unit(20, "feet")
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(8 + 4 / 12, "feet"),
  18817. weight: math.unit(600, "lb"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/dragonien/front.svg",
  18821. extra: 100 / 94,
  18822. bottom: 3.3 / 103.3445
  18823. }
  18824. },
  18825. back: {
  18826. height: math.unit(8 + 4 / 12, "feet"),
  18827. weight: math.unit(600, "lb"),
  18828. name: "Back",
  18829. image: {
  18830. source: "./media/characters/dragonien/back.svg",
  18831. extra: 776 / 746,
  18832. bottom: 6.4 / 782.0616
  18833. }
  18834. },
  18835. foot: {
  18836. height: math.unit(1.54, "feet"),
  18837. name: "Foot",
  18838. image: {
  18839. source: "./media/characters/dragonien/foot.svg",
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(8 + 4 / 12, "feet"),
  18847. default: true
  18848. },
  18849. {
  18850. name: "Macro",
  18851. height: math.unit(200, "feet")
  18852. },
  18853. {
  18854. name: "Megamacro",
  18855. height: math.unit(1, "mile")
  18856. },
  18857. {
  18858. name: "Gigamacro",
  18859. height: math.unit(1000, "miles")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(5 + 2 / 12, "feet"),
  18868. weight: math.unit(110, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/desta/front.svg",
  18872. extra: 767 / 726,
  18873. bottom: 11.7 / 779
  18874. }
  18875. },
  18876. back: {
  18877. height: math.unit(5 + 2 / 12, "feet"),
  18878. weight: math.unit(110, "lb"),
  18879. name: "Back",
  18880. image: {
  18881. source: "./media/characters/desta/back.svg",
  18882. extra: 777 / 728,
  18883. bottom: 6 / 784
  18884. }
  18885. },
  18886. frontAlt: {
  18887. height: math.unit(5 + 2 / 12, "feet"),
  18888. weight: math.unit(110, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/desta/front-alt.svg",
  18892. extra: 1482 / 1417
  18893. }
  18894. },
  18895. side: {
  18896. height: math.unit(5 + 2 / 12, "feet"),
  18897. weight: math.unit(110, "lb"),
  18898. name: "Side",
  18899. image: {
  18900. source: "./media/characters/desta/side.svg",
  18901. extra: 2579 / 2491,
  18902. bottom: 0.053
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Micro",
  18909. height: math.unit(6, "inches")
  18910. },
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(5 + 2 / 12, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(62, "feet")
  18919. },
  18920. {
  18921. name: "Megamacro",
  18922. height: math.unit(1800, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(10, "feet"),
  18931. weight: math.unit(700, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/storm-alystar/front.svg",
  18935. extra: 2112 / 1898,
  18936. bottom: 0.034
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(3.5, "inches")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(10, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Macro",
  18952. height: math.unit(400, "feet")
  18953. },
  18954. {
  18955. name: "Deific",
  18956. height: math.unit(60, "miles")
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(2.35, "meters"),
  18965. weight: math.unit(119, "kg"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/ilia/front.svg",
  18969. extra: 1285 / 1255,
  18970. bottom: 0.06
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(2.35, "meters")
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(140, "meters"),
  18982. default: true
  18983. },
  18984. {
  18985. name: "Megamacro",
  18986. height: math.unit(100, "miles")
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(6 + 5 / 12, "feet"),
  18995. weight: math.unit(190, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/kingdead/front.svg",
  18999. extra: 1228 / 1177
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Micro",
  19006. height: math.unit(7, "inches")
  19007. },
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(6 + 5 / 12, "feet")
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(150, "feet"),
  19015. default: true
  19016. },
  19017. {
  19018. name: "Megamacro",
  19019. height: math.unit(200, "miles")
  19020. },
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19025. {
  19026. front: {
  19027. height: math.unit(8, "feet"),
  19028. weight: math.unit(600, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/kyrehx/front.svg",
  19032. extra: 1195 / 1095,
  19033. bottom: 0.034
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Micro",
  19040. height: math.unit(2, "inches")
  19041. },
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(8, "feet"),
  19045. default: true
  19046. },
  19047. {
  19048. name: "Macro",
  19049. height: math.unit(255, "feet")
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19058. weight: math.unit(184, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/xang/front.svg",
  19062. extra: 845 / 755
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19070. default: true
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(0.935 * 146, "feet")
  19075. },
  19076. {
  19077. name: "Megamacro",
  19078. height: math.unit(0.935 * 3, "miles")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19084. {
  19085. frontDressed: {
  19086. height: math.unit(5 + 7 / 12, "feet"),
  19087. weight: math.unit(140, "lb"),
  19088. name: "Front (Dressed)",
  19089. image: {
  19090. source: "./media/characters/doc-weardno/front-dressed.svg",
  19091. extra: 263 / 234
  19092. }
  19093. },
  19094. backDressed: {
  19095. height: math.unit(5 + 7 / 12, "feet"),
  19096. weight: math.unit(140, "lb"),
  19097. name: "Back (Dressed)",
  19098. image: {
  19099. source: "./media/characters/doc-weardno/back-dressed.svg",
  19100. extra: 266 / 238
  19101. }
  19102. },
  19103. front: {
  19104. height: math.unit(5 + 7 / 12, "feet"),
  19105. weight: math.unit(140, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/doc-weardno/front.svg",
  19109. extra: 254 / 233
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Micro",
  19116. height: math.unit(3, "inches")
  19117. },
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(5 + 7 / 12, "feet"),
  19121. default: true
  19122. },
  19123. {
  19124. name: "Macro",
  19125. height: math.unit(25, "feet")
  19126. },
  19127. {
  19128. name: "Megamacro",
  19129. height: math.unit(2, "miles")
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(6 + 2 / 12, "feet"),
  19138. weight: math.unit(153, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/seth-whilst/front.svg",
  19142. bottom: 0.07
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Micro",
  19149. height: math.unit(5, "inches")
  19150. },
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(6 + 2 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(3, "inches"),
  19163. weight: math.unit(8, "grams"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/pocket-jabari/front.svg",
  19167. extra: 1024 / 974,
  19168. bottom: 0.039
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Minimicro",
  19175. height: math.unit(8, "mm")
  19176. },
  19177. {
  19178. name: "Micro",
  19179. height: math.unit(3, "inches"),
  19180. default: true
  19181. },
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(3, "feet")
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(15, "feet"),
  19193. weight: math.unit(3280, "lb"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/sapphy/front.svg",
  19197. extra: 671 / 577,
  19198. bottom: 0.085
  19199. }
  19200. },
  19201. back: {
  19202. height: math.unit(15, "feet"),
  19203. weight: math.unit(3280, "lb"),
  19204. name: "Back",
  19205. image: {
  19206. source: "./media/characters/sapphy/back.svg",
  19207. extra: 631 / 607,
  19208. bottom: 0.045
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(15, "feet")
  19216. },
  19217. {
  19218. name: "Casual Macro",
  19219. height: math.unit(120, "feet")
  19220. },
  19221. {
  19222. name: "Macro",
  19223. height: math.unit(2150, "feet"),
  19224. default: true
  19225. },
  19226. {
  19227. name: "Megamacro",
  19228. height: math.unit(8, "miles")
  19229. },
  19230. {
  19231. name: "Galaxy Mom",
  19232. height: math.unit(6, "megalightyears")
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(6, "feet"),
  19241. weight: math.unit(170, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/kiro/front.svg",
  19245. extra: 1064 / 1012,
  19246. bottom: 0.052
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Micro",
  19253. height: math.unit(6, "inches")
  19254. },
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(6, "feet"),
  19258. default: true
  19259. },
  19260. {
  19261. name: "Macro",
  19262. height: math.unit(72, "feet")
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(5 + 9 / 12, "feet"),
  19271. weight: math.unit(175, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/irishfox/front.svg",
  19275. extra: 1912 / 1680,
  19276. bottom: 0.02
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Nano",
  19283. height: math.unit(1, "mm")
  19284. },
  19285. {
  19286. name: "Micro",
  19287. height: math.unit(2, "inches")
  19288. },
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(5 + 9 / 12, "feet"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Macro",
  19296. height: math.unit(45, "feet")
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6 + 1 / 12, "feet"),
  19305. weight: math.unit(75, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/aronai-sieyes/front.svg",
  19309. extra: 1532/1450,
  19310. bottom: 42/1574
  19311. }
  19312. },
  19313. side: {
  19314. height: math.unit(6 + 1 / 12, "feet"),
  19315. weight: math.unit(75, "lb"),
  19316. name: "Side",
  19317. image: {
  19318. source: "./media/characters/aronai-sieyes/side.svg",
  19319. extra: 1422/1365,
  19320. bottom: 148/1570
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(6 + 1 / 12, "feet"),
  19325. weight: math.unit(75, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/aronai-sieyes/back.svg",
  19329. extra: 1526/1464,
  19330. bottom: 51/1577
  19331. }
  19332. },
  19333. dressed: {
  19334. height: math.unit(6 + 1 / 12, "feet"),
  19335. weight: math.unit(75, "lb"),
  19336. name: "Dressed",
  19337. image: {
  19338. source: "./media/characters/aronai-sieyes/dressed.svg",
  19339. extra: 1559/1483,
  19340. bottom: 39/1598
  19341. }
  19342. },
  19343. slit: {
  19344. height: math.unit(1.3, "feet"),
  19345. name: "Slit",
  19346. image: {
  19347. source: "./media/characters/aronai-sieyes/slit.svg"
  19348. }
  19349. },
  19350. slitSpread: {
  19351. height: math.unit(0.9, "feet"),
  19352. name: "Slit (Spread)",
  19353. image: {
  19354. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19355. }
  19356. },
  19357. rump: {
  19358. height: math.unit(1.3, "feet"),
  19359. name: "Rump",
  19360. image: {
  19361. source: "./media/characters/aronai-sieyes/rump.svg"
  19362. }
  19363. },
  19364. maw: {
  19365. height: math.unit(1.25, "feet"),
  19366. name: "Maw",
  19367. image: {
  19368. source: "./media/characters/aronai-sieyes/maw.svg"
  19369. }
  19370. },
  19371. feral: {
  19372. height: math.unit(18, "feet"),
  19373. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19374. name: "Feral",
  19375. image: {
  19376. source: "./media/characters/aronai-sieyes/feral.svg",
  19377. extra: 1530 / 1240,
  19378. bottom: 0.035
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Micro",
  19385. height: math.unit(2, "inches")
  19386. },
  19387. {
  19388. name: "Normal",
  19389. height: math.unit(6 + 1 / 12, "feet"),
  19390. default: true
  19391. }
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19396. {
  19397. front: {
  19398. height: math.unit(12, "feet"),
  19399. weight: math.unit(410, "kg"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/xuna/front.svg",
  19403. extra: 2184 / 1980
  19404. }
  19405. },
  19406. side: {
  19407. height: math.unit(12, "feet"),
  19408. weight: math.unit(410, "kg"),
  19409. name: "Side",
  19410. image: {
  19411. source: "./media/characters/xuna/side.svg",
  19412. extra: 2184 / 1980
  19413. }
  19414. },
  19415. back: {
  19416. height: math.unit(12, "feet"),
  19417. weight: math.unit(410, "kg"),
  19418. name: "Back",
  19419. image: {
  19420. source: "./media/characters/xuna/back.svg",
  19421. extra: 2184 / 1980
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Nano glow",
  19428. height: math.unit(10, "nm")
  19429. },
  19430. {
  19431. name: "Micro floof",
  19432. height: math.unit(0.3, "m")
  19433. },
  19434. {
  19435. name: "Huggable softy boi",
  19436. height: math.unit(3.6576, "m"),
  19437. default: true
  19438. },
  19439. {
  19440. name: "Admirable floof",
  19441. height: math.unit(80, "meters")
  19442. },
  19443. {
  19444. name: "Gentle macro",
  19445. height: math.unit(300, "meters")
  19446. },
  19447. {
  19448. name: "Very careful floof",
  19449. height: math.unit(3200, "meters")
  19450. },
  19451. {
  19452. name: "The mega floof",
  19453. height: math.unit(36000, "meters")
  19454. },
  19455. {
  19456. name: "Giga-fur-Wicker",
  19457. height: math.unit(4800000, "meters")
  19458. },
  19459. {
  19460. name: "Licky world",
  19461. height: math.unit(20000000, "meters")
  19462. },
  19463. {
  19464. name: "Floofy cyan sun",
  19465. height: math.unit(1500000000, "meters")
  19466. },
  19467. {
  19468. name: "Milky Wicker",
  19469. height: math.unit(1000000000000000000000, "meters")
  19470. },
  19471. {
  19472. name: "The observing Wicker",
  19473. height: math.unit(999999999999999999999999999, "meters")
  19474. },
  19475. ]
  19476. ))
  19477. characterMakers.push(() => makeCharacter(
  19478. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19479. {
  19480. front: {
  19481. height: math.unit(5 + 9 / 12, "feet"),
  19482. weight: math.unit(150, "lb"),
  19483. name: "Front",
  19484. image: {
  19485. source: "./media/characters/arokha-sieyes/front.svg",
  19486. extra: 1425 / 1284,
  19487. bottom: 0.05
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(5 + 9 / 12, "feet")
  19495. },
  19496. {
  19497. name: "Macro",
  19498. height: math.unit(30, "meters"),
  19499. default: true
  19500. },
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19505. {
  19506. front: {
  19507. height: math.unit(6, "feet"),
  19508. weight: math.unit(180, "lb"),
  19509. name: "Front",
  19510. image: {
  19511. source: "./media/characters/arokh-sieyes/front.svg",
  19512. extra: 1830 / 1769,
  19513. bottom: 0.01
  19514. }
  19515. },
  19516. },
  19517. [
  19518. {
  19519. name: "Normal",
  19520. height: math.unit(6, "feet")
  19521. },
  19522. {
  19523. name: "Macro",
  19524. height: math.unit(30, "meters"),
  19525. default: true
  19526. },
  19527. ]
  19528. ))
  19529. characterMakers.push(() => makeCharacter(
  19530. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19531. {
  19532. side: {
  19533. height: math.unit(13 + 1 / 12, "feet"),
  19534. weight: math.unit(8.5, "tonnes"),
  19535. name: "Side",
  19536. image: {
  19537. source: "./media/characters/goldeneye/side.svg",
  19538. extra: 1182 / 778,
  19539. bottom: 0.067
  19540. }
  19541. },
  19542. paw: {
  19543. height: math.unit(3.4, "feet"),
  19544. name: "Paw",
  19545. image: {
  19546. source: "./media/characters/goldeneye/paw.svg"
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(13 + 1 / 12, "feet"),
  19554. default: true
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19560. {
  19561. front: {
  19562. height: math.unit(6 + 1 / 12, "feet"),
  19563. weight: math.unit(210, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/leonardo-lycheborne/front.svg",
  19567. extra: 776/723,
  19568. bottom: 34/810
  19569. }
  19570. },
  19571. side: {
  19572. height: math.unit(6 + 1 / 12, "feet"),
  19573. weight: math.unit(210, "lb"),
  19574. name: "Side",
  19575. image: {
  19576. source: "./media/characters/leonardo-lycheborne/side.svg",
  19577. extra: 780/728,
  19578. bottom: 12/792
  19579. }
  19580. },
  19581. back: {
  19582. height: math.unit(6 + 1 / 12, "feet"),
  19583. weight: math.unit(210, "lb"),
  19584. name: "Back",
  19585. image: {
  19586. source: "./media/characters/leonardo-lycheborne/back.svg",
  19587. extra: 775/721,
  19588. bottom: 17/792
  19589. }
  19590. },
  19591. hand: {
  19592. height: math.unit(1.08, "feet"),
  19593. name: "Hand",
  19594. image: {
  19595. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19596. }
  19597. },
  19598. foot: {
  19599. height: math.unit(1.32, "feet"),
  19600. name: "Foot",
  19601. image: {
  19602. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19603. }
  19604. },
  19605. maw: {
  19606. height: math.unit(1, "feet"),
  19607. name: "Maw",
  19608. image: {
  19609. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19610. }
  19611. },
  19612. were: {
  19613. height: math.unit(20, "feet"),
  19614. weight: math.unit(7800, "lb"),
  19615. name: "Were",
  19616. image: {
  19617. source: "./media/characters/leonardo-lycheborne/were.svg",
  19618. extra: 1224/1165,
  19619. bottom: 72/1296
  19620. }
  19621. },
  19622. feral: {
  19623. height: math.unit(7.5, "feet"),
  19624. weight: math.unit(600, "lb"),
  19625. name: "Feral",
  19626. image: {
  19627. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19628. extra: 797/702,
  19629. bottom: 139/936
  19630. }
  19631. },
  19632. taur: {
  19633. height: math.unit(11, "feet"),
  19634. weight: math.unit(3300, "lb"),
  19635. name: "Taur",
  19636. image: {
  19637. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19638. extra: 1271/1197,
  19639. bottom: 47/1318
  19640. }
  19641. },
  19642. barghest: {
  19643. height: math.unit(11, "feet"),
  19644. weight: math.unit(1300, "lb"),
  19645. name: "Barghest",
  19646. image: {
  19647. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19648. extra: 1291/1204,
  19649. bottom: 37/1328
  19650. }
  19651. },
  19652. dick: {
  19653. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19654. name: "Dick",
  19655. image: {
  19656. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19657. }
  19658. },
  19659. dickWere: {
  19660. height: math.unit((20) / 3.8, "feet"),
  19661. name: "Dick (Were)",
  19662. image: {
  19663. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(6 + 1 / 12, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(10, "feet"),
  19680. weight: math.unit(350, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/jet/front.svg",
  19684. extra: 2050 / 1980,
  19685. bottom: 0.013
  19686. }
  19687. },
  19688. back: {
  19689. height: math.unit(10, "feet"),
  19690. weight: math.unit(350, "lb"),
  19691. name: "Back",
  19692. image: {
  19693. source: "./media/characters/jet/back.svg",
  19694. extra: 2050 / 1980,
  19695. bottom: 0.013
  19696. }
  19697. },
  19698. },
  19699. [
  19700. {
  19701. name: "Micro",
  19702. height: math.unit(6, "inches")
  19703. },
  19704. {
  19705. name: "Normal",
  19706. height: math.unit(10, "feet"),
  19707. default: true
  19708. },
  19709. {
  19710. name: "Macro",
  19711. height: math.unit(100, "feet")
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19717. {
  19718. front: {
  19719. height: math.unit(15, "feet"),
  19720. weight: math.unit(2800, "lb"),
  19721. name: "Front",
  19722. image: {
  19723. source: "./media/characters/tanarath/front.svg",
  19724. extra: 2392 / 2220,
  19725. bottom: 0.03
  19726. }
  19727. },
  19728. back: {
  19729. height: math.unit(15, "feet"),
  19730. weight: math.unit(2800, "lb"),
  19731. name: "Back",
  19732. image: {
  19733. source: "./media/characters/tanarath/back.svg",
  19734. extra: 2392 / 2220,
  19735. bottom: 0.03
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(15, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(7 + 1 / 12, "feet"),
  19752. weight: math.unit(175, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/patty-cattybatty/front.svg",
  19756. extra: 908 / 874,
  19757. bottom: 0.025
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Micro",
  19764. height: math.unit(1, "inch")
  19765. },
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(7 + 1 / 12, "feet")
  19769. },
  19770. {
  19771. name: "Mini Macro",
  19772. height: math.unit(155, "feet")
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(1077, "feet")
  19777. },
  19778. {
  19779. name: "Mega Macro",
  19780. height: math.unit(47650, "feet"),
  19781. default: true
  19782. },
  19783. {
  19784. name: "Giga Macro",
  19785. height: math.unit(440, "miles")
  19786. },
  19787. {
  19788. name: "Tera Macro",
  19789. height: math.unit(8700, "miles")
  19790. },
  19791. {
  19792. name: "Planetary Macro",
  19793. height: math.unit(32700, "miles")
  19794. },
  19795. {
  19796. name: "Solar Macro",
  19797. height: math.unit(550000, "miles")
  19798. },
  19799. {
  19800. name: "Celestial Macro",
  19801. height: math.unit(2.5, "AU")
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(4 + 5 / 12, "feet"),
  19810. weight: math.unit(90, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/cappu/front.svg",
  19814. extra: 1247 / 1152,
  19815. bottom: 0.012
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(4 + 5 / 12, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19829. {
  19830. frontDressed: {
  19831. height: math.unit(70, "cm"),
  19832. weight: math.unit(6, "kg"),
  19833. name: "Front (Dressed)",
  19834. image: {
  19835. source: "./media/characters/sebi/front-dressed.svg",
  19836. extra: 713.5 / 686.5,
  19837. bottom: 0.003
  19838. }
  19839. },
  19840. front: {
  19841. height: math.unit(70, "cm"),
  19842. weight: math.unit(5, "kg"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/sebi/front.svg",
  19846. extra: 713.5 / 686.5,
  19847. bottom: 0.003
  19848. }
  19849. }
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(70, "cm"),
  19855. default: true
  19856. },
  19857. {
  19858. name: "Macro",
  19859. height: math.unit(8, "meters")
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(6, "feet"),
  19868. weight: math.unit(150, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/typhek/front.svg",
  19872. extra: 1948 / 1929,
  19873. bottom: 0.025
  19874. }
  19875. },
  19876. side: {
  19877. height: math.unit(6, "feet"),
  19878. weight: math.unit(150, "lb"),
  19879. name: "Side",
  19880. image: {
  19881. source: "./media/characters/typhek/side.svg",
  19882. extra: 2034 / 2010,
  19883. bottom: 0.003
  19884. }
  19885. },
  19886. back: {
  19887. height: math.unit(6, "feet"),
  19888. weight: math.unit(150, "lb"),
  19889. name: "Back",
  19890. image: {
  19891. source: "./media/characters/typhek/back.svg",
  19892. extra: 2005 / 1978,
  19893. bottom: 0.004
  19894. }
  19895. },
  19896. palm: {
  19897. height: math.unit(1.2, "feet"),
  19898. name: "Palm",
  19899. image: {
  19900. source: "./media/characters/typhek/palm.svg"
  19901. }
  19902. },
  19903. fist: {
  19904. height: math.unit(1.1, "feet"),
  19905. name: "Fist",
  19906. image: {
  19907. source: "./media/characters/typhek/fist.svg"
  19908. }
  19909. },
  19910. foot: {
  19911. height: math.unit(1.57, "feet"),
  19912. name: "Foot",
  19913. image: {
  19914. source: "./media/characters/typhek/foot.svg"
  19915. }
  19916. },
  19917. sole: {
  19918. height: math.unit(2.05, "feet"),
  19919. name: "Sole",
  19920. image: {
  19921. source: "./media/characters/typhek/sole.svg"
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Macro",
  19928. height: math.unit(40, "stories"),
  19929. default: true
  19930. },
  19931. {
  19932. name: "Megamacro",
  19933. height: math.unit(1, "mile")
  19934. },
  19935. {
  19936. name: "Gigamacro",
  19937. height: math.unit(4000, "solarradii")
  19938. },
  19939. {
  19940. name: "Universal",
  19941. height: math.unit(1.1, "universes")
  19942. }
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19947. {
  19948. side: {
  19949. height: math.unit(5 + 7 / 12, "feet"),
  19950. weight: math.unit(150, "lb"),
  19951. name: "Side",
  19952. image: {
  19953. source: "./media/characters/kassy/side.svg",
  19954. extra: 1280 / 1225,
  19955. bottom: 0.002
  19956. }
  19957. },
  19958. front: {
  19959. height: math.unit(5 + 7 / 12, "feet"),
  19960. weight: math.unit(150, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/kassy/front.svg",
  19964. extra: 1280 / 1225,
  19965. bottom: 0.025
  19966. }
  19967. },
  19968. back: {
  19969. height: math.unit(5 + 7 / 12, "feet"),
  19970. weight: math.unit(150, "lb"),
  19971. name: "Back",
  19972. image: {
  19973. source: "./media/characters/kassy/back.svg",
  19974. extra: 1280 / 1225,
  19975. bottom: 0.002
  19976. }
  19977. },
  19978. foot: {
  19979. height: math.unit(1.266, "feet"),
  19980. name: "Foot",
  19981. image: {
  19982. source: "./media/characters/kassy/foot.svg"
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(5 + 7 / 12, "feet")
  19990. },
  19991. {
  19992. name: "Macro",
  19993. height: math.unit(137, "feet"),
  19994. default: true
  19995. },
  19996. {
  19997. name: "Megamacro",
  19998. height: math.unit(1, "mile")
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(6 + 1 / 12, "feet"),
  20007. weight: math.unit(200, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/neil/front.svg",
  20011. extra: 1326 / 1250,
  20012. bottom: 0.023
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(6 + 1 / 12, "feet"),
  20020. default: true
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(200, "feet")
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(5 + 9 / 12, "feet"),
  20033. weight: math.unit(190, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/atticus/front.svg",
  20037. extra: 2934 / 2785,
  20038. bottom: 0.025
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(5 + 9 / 12, "feet"),
  20046. default: true
  20047. },
  20048. {
  20049. name: "Macro",
  20050. height: math.unit(180, "feet")
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20056. {
  20057. side: {
  20058. height: math.unit(9, "feet"),
  20059. weight: math.unit(650, "lb"),
  20060. name: "Side",
  20061. image: {
  20062. source: "./media/characters/milo/side.svg",
  20063. extra: 2644 / 2310,
  20064. bottom: 0.032
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(9, "feet"),
  20072. default: true
  20073. },
  20074. {
  20075. name: "Macro",
  20076. height: math.unit(300, "feet")
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20082. {
  20083. side: {
  20084. height: math.unit(8, "meters"),
  20085. weight: math.unit(90000, "kg"),
  20086. name: "Side",
  20087. image: {
  20088. source: "./media/characters/ijzer/side.svg",
  20089. extra: 2756 / 1600,
  20090. bottom: 0.01
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Small",
  20097. height: math.unit(3, "meters")
  20098. },
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(8, "meters"),
  20102. default: true
  20103. },
  20104. {
  20105. name: "Normal+",
  20106. height: math.unit(10, "meters")
  20107. },
  20108. {
  20109. name: "Bigger",
  20110. height: math.unit(24, "meters")
  20111. },
  20112. {
  20113. name: "Huge",
  20114. height: math.unit(80, "meters")
  20115. },
  20116. ]
  20117. ))
  20118. characterMakers.push(() => makeCharacter(
  20119. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20120. {
  20121. front: {
  20122. height: math.unit(6 + 2 / 12, "feet"),
  20123. weight: math.unit(153, "lb"),
  20124. name: "Front",
  20125. image: {
  20126. source: "./media/characters/luca-cervicum/front.svg",
  20127. extra: 370 / 327,
  20128. bottom: 0.015
  20129. }
  20130. },
  20131. back: {
  20132. height: math.unit(6 + 2 / 12, "feet"),
  20133. weight: math.unit(153, "lb"),
  20134. name: "Back",
  20135. image: {
  20136. source: "./media/characters/luca-cervicum/back.svg",
  20137. extra: 367 / 333,
  20138. bottom: 0.005
  20139. }
  20140. },
  20141. frontGear: {
  20142. height: math.unit(6 + 2 / 12, "feet"),
  20143. weight: math.unit(173, "lb"),
  20144. name: "Front (Gear)",
  20145. image: {
  20146. source: "./media/characters/luca-cervicum/front-gear.svg",
  20147. extra: 377 / 333,
  20148. bottom: 0.006
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(6 + 2 / 12, "feet"),
  20156. default: true
  20157. },
  20158. ]
  20159. ))
  20160. characterMakers.push(() => makeCharacter(
  20161. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20162. {
  20163. front: {
  20164. height: math.unit(6 + 1 / 12, "feet"),
  20165. weight: math.unit(304, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/oliver/front.svg",
  20169. extra: 157 / 143,
  20170. bottom: 0.08
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(6 + 1 / 12, "feet"),
  20178. default: true
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(5 + 7 / 12, "feet"),
  20187. weight: math.unit(140, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/shane/front.svg",
  20191. extra: 304 / 289,
  20192. bottom: 0.005
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 7 / 12, "feet"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20206. {
  20207. front: {
  20208. height: math.unit(5 + 9 / 12, "feet"),
  20209. weight: math.unit(178, "lb"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/shin/front.svg",
  20213. extra: 159 / 151,
  20214. bottom: 0.015
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(5 + 9 / 12, "feet"),
  20222. default: true
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20228. {
  20229. front: {
  20230. height: math.unit(5 + 10 / 12, "feet"),
  20231. weight: math.unit(168, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/xerxes/front.svg",
  20235. extra: 282 / 260,
  20236. bottom: 0.045
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Normal",
  20243. height: math.unit(5 + 10 / 12, "feet"),
  20244. default: true
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(6 + 7 / 12, "feet"),
  20253. weight: math.unit(208, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/chaska/front.svg",
  20257. extra: 332 / 319,
  20258. bottom: 0.015
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(6 + 7 / 12, "feet"),
  20266. default: true
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(5 + 8 / 12, "feet"),
  20275. weight: math.unit(208, "lb"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/enuk/front.svg",
  20279. extra: 437 / 406,
  20280. bottom: 0.02
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(5 + 8 / 12, "feet"),
  20288. default: true
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20294. {
  20295. front: {
  20296. height: math.unit(5 + 10 / 12, "feet"),
  20297. weight: math.unit(252, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/bruun/front.svg",
  20301. extra: 197 / 187,
  20302. bottom: 0.012
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(5 + 10 / 12, "feet"),
  20310. default: true
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(6 + 10 / 12, "feet"),
  20319. weight: math.unit(255, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/alexeev/front.svg",
  20323. extra: 213 / 200,
  20324. bottom: 0.05
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(6 + 10 / 12, "feet"),
  20332. default: true
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(2 + 8 / 12, "feet"),
  20341. weight: math.unit(22, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/evelyn/front.svg",
  20345. extra: 208 / 180
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(2 + 8 / 12, "feet"),
  20353. default: true
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(5 + 9 / 12, "feet"),
  20362. weight: math.unit(139, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/inca/front.svg",
  20366. extra: 294 / 291,
  20367. bottom: 0.03
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(5 + 9 / 12, "feet"),
  20375. default: true
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20381. {
  20382. front: {
  20383. height: math.unit(6 + 3 / 12, "feet"),
  20384. weight: math.unit(185, "lb"),
  20385. name: "Front",
  20386. image: {
  20387. source: "./media/characters/mera/front.svg",
  20388. extra: 291 / 277,
  20389. bottom: 0.03
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(6 + 3 / 12, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20403. {
  20404. front: {
  20405. height: math.unit(6 + 7 / 12, "feet"),
  20406. weight: math.unit(160, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/ceres/front.svg",
  20410. extra: 1023 / 950,
  20411. bottom: 0.027
  20412. }
  20413. },
  20414. back: {
  20415. height: math.unit(6 + 7 / 12, "feet"),
  20416. weight: math.unit(160, "lb"),
  20417. name: "Back",
  20418. image: {
  20419. source: "./media/characters/ceres/back.svg",
  20420. extra: 1023 / 950
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Normal",
  20427. height: math.unit(6 + 7 / 12, "feet"),
  20428. default: true
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(5 + 10 / 12, "feet"),
  20437. weight: math.unit(150, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/kris/front.svg",
  20441. extra: 885 / 803,
  20442. bottom: 0.03
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(5 + 10 / 12, "feet"),
  20450. default: true
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(7, "feet"),
  20459. weight: math.unit(120, "kg"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/taluthus/front.svg",
  20463. extra: 903 / 833,
  20464. bottom: 0.015
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(7, "feet"),
  20472. default: true
  20473. },
  20474. {
  20475. name: "Macro",
  20476. height: math.unit(300, "feet")
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20482. {
  20483. front: {
  20484. height: math.unit(5 + 9 / 12, "feet"),
  20485. weight: math.unit(145, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/dawn/front.svg",
  20489. extra: 2094 / 2016,
  20490. bottom: 0.025
  20491. }
  20492. },
  20493. back: {
  20494. height: math.unit(5 + 9 / 12, "feet"),
  20495. weight: math.unit(160, "lb"),
  20496. name: "Back",
  20497. image: {
  20498. source: "./media/characters/dawn/back.svg",
  20499. extra: 2112 / 2080,
  20500. bottom: 0.005
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(6 + 7 / 12, "feet"),
  20508. default: true
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20514. {
  20515. anthro: {
  20516. height: math.unit(8 + 3 / 12, "feet"),
  20517. weight: math.unit(450, "lb"),
  20518. name: "Anthro",
  20519. image: {
  20520. source: "./media/characters/arador/anthro.svg",
  20521. extra: 1835 / 1718,
  20522. bottom: 0.025
  20523. }
  20524. },
  20525. feral: {
  20526. height: math.unit(4, "feet"),
  20527. weight: math.unit(200, "lb"),
  20528. name: "Feral",
  20529. image: {
  20530. source: "./media/characters/arador/feral.svg",
  20531. extra: 1683 / 1514,
  20532. bottom: 0.07
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(8 + 3 / 12, "feet")
  20540. },
  20541. {
  20542. name: "Macro",
  20543. height: math.unit(82.5, "feet"),
  20544. default: true
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20550. {
  20551. front: {
  20552. height: math.unit(5 + 10 / 12, "feet"),
  20553. weight: math.unit(125, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/dharsi/front.svg",
  20557. extra: 716 / 630,
  20558. bottom: 0.035
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Nano",
  20565. height: math.unit(100, "nm")
  20566. },
  20567. {
  20568. name: "Micro",
  20569. height: math.unit(2, "inches")
  20570. },
  20571. {
  20572. name: "Normal",
  20573. height: math.unit(5 + 10 / 12, "feet"),
  20574. default: true
  20575. },
  20576. {
  20577. name: "Macro",
  20578. height: math.unit(1000, "feet")
  20579. },
  20580. {
  20581. name: "Megamacro",
  20582. height: math.unit(10, "miles")
  20583. },
  20584. {
  20585. name: "Gigamacro",
  20586. height: math.unit(3000, "miles")
  20587. },
  20588. {
  20589. name: "Teramacro",
  20590. height: math.unit(500000, "miles")
  20591. },
  20592. {
  20593. name: "Teramacro+",
  20594. height: math.unit(30, "galaxies")
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(6, "feet"),
  20603. weight: math.unit(150, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/deathy/front.svg",
  20607. extra: 1552 / 1463,
  20608. bottom: 0.025
  20609. }
  20610. },
  20611. side: {
  20612. height: math.unit(6, "feet"),
  20613. weight: math.unit(150, "lb"),
  20614. name: "Side",
  20615. image: {
  20616. source: "./media/characters/deathy/side.svg",
  20617. extra: 1604 / 1455,
  20618. bottom: 0.025
  20619. }
  20620. },
  20621. back: {
  20622. height: math.unit(6, "feet"),
  20623. weight: math.unit(150, "lb"),
  20624. name: "Back",
  20625. image: {
  20626. source: "./media/characters/deathy/back.svg",
  20627. extra: 1580 / 1463,
  20628. bottom: 0.005
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Micro",
  20635. height: math.unit(5, "millimeters")
  20636. },
  20637. {
  20638. name: "Normal",
  20639. height: math.unit(6 + 5 / 12, "feet"),
  20640. default: true
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20646. {
  20647. front: {
  20648. height: math.unit(16, "feet"),
  20649. weight: math.unit(4000, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/juniper/front.svg",
  20653. bottom: 0.04
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(16, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(6, "feet"),
  20670. weight: math.unit(150, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/hipster/front.svg",
  20674. extra: 1312 / 1209,
  20675. bottom: 0.025
  20676. }
  20677. },
  20678. back: {
  20679. height: math.unit(6, "feet"),
  20680. weight: math.unit(150, "lb"),
  20681. name: "Back",
  20682. image: {
  20683. source: "./media/characters/hipster/back.svg",
  20684. extra: 1281 / 1196,
  20685. bottom: 0.01
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Micro",
  20692. height: math.unit(1, "mm")
  20693. },
  20694. {
  20695. name: "Normal",
  20696. height: math.unit(4, "inches"),
  20697. default: true
  20698. },
  20699. {
  20700. name: "Macro",
  20701. height: math.unit(500, "feet")
  20702. },
  20703. {
  20704. name: "Megamacro",
  20705. height: math.unit(1000, "miles")
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(6, "feet"),
  20714. weight: math.unit(150, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/tendirmuldr/front.svg",
  20718. extra: 1878 / 1772,
  20719. bottom: 0.015
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Megamacro",
  20726. height: math.unit(1500, "miles"),
  20727. default: true
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20733. {
  20734. front: {
  20735. height: math.unit(14, "feet"),
  20736. weight: math.unit(12000, "lb"),
  20737. name: "Front",
  20738. image: {
  20739. source: "./media/characters/mort/front.svg",
  20740. extra: 365 / 318,
  20741. bottom: 0.01
  20742. }
  20743. },
  20744. side: {
  20745. height: math.unit(14, "feet"),
  20746. weight: math.unit(12000, "lb"),
  20747. name: "Side",
  20748. image: {
  20749. source: "./media/characters/mort/side.svg",
  20750. extra: 365 / 318,
  20751. bottom: 0.052
  20752. },
  20753. default: true
  20754. },
  20755. back: {
  20756. height: math.unit(14, "feet"),
  20757. weight: math.unit(12000, "lb"),
  20758. name: "Back",
  20759. image: {
  20760. source: "./media/characters/mort/back.svg",
  20761. extra: 371 / 332,
  20762. bottom: 0.18
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(14, "feet"),
  20770. default: true
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20776. {
  20777. front: {
  20778. height: math.unit(8, "feet"),
  20779. weight: math.unit(1, "ton"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/lycoa/front.svg",
  20783. extra: 1836/1728,
  20784. bottom: 81/1917
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(8, "feet"),
  20789. weight: math.unit(1, "ton"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/lycoa/back.svg",
  20793. extra: 1785/1720,
  20794. bottom: 91/1876
  20795. }
  20796. },
  20797. head: {
  20798. height: math.unit(1.6243, "feet"),
  20799. name: "Head",
  20800. image: {
  20801. source: "./media/characters/lycoa/head.svg",
  20802. extra: 1011/782,
  20803. bottom: 0/1011
  20804. }
  20805. },
  20806. tailmaw: {
  20807. height: math.unit(1.9, "feet"),
  20808. name: "Tailmaw",
  20809. image: {
  20810. source: "./media/characters/lycoa/tailmaw.svg"
  20811. }
  20812. },
  20813. tentacles: {
  20814. height: math.unit(2.1, "feet"),
  20815. name: "Tentacles",
  20816. image: {
  20817. source: "./media/characters/lycoa/tentacles.svg"
  20818. }
  20819. },
  20820. dick: {
  20821. height: math.unit(1.73, "feet"),
  20822. name: "Dick",
  20823. image: {
  20824. source: "./media/characters/lycoa/dick.svg"
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(8, "feet"),
  20832. default: true
  20833. },
  20834. {
  20835. name: "Macro",
  20836. height: math.unit(30, "feet")
  20837. },
  20838. ]
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20842. {
  20843. front: {
  20844. height: math.unit(4 + 2 / 12, "feet"),
  20845. weight: math.unit(70, "lb"),
  20846. name: "Front",
  20847. image: {
  20848. source: "./media/characters/naldara/front.svg",
  20849. extra: 1664/1387,
  20850. bottom: 81/1745
  20851. },
  20852. form: "anthro",
  20853. default: true
  20854. },
  20855. naga: {
  20856. height: math.unit(20, "feet"),
  20857. weight: math.unit(15000, "kg"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/naldara/naga.svg",
  20861. extra: 1590/1396,
  20862. bottom: 285/1875
  20863. },
  20864. form: "naga",
  20865. default: true
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(4 + 2 / 12, "feet"),
  20872. form: "anthro",
  20873. default: true
  20874. },
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(20, "feet"),
  20878. form: "naga",
  20879. default: true
  20880. },
  20881. ],
  20882. {
  20883. "anthro": {
  20884. name: "Anthro",
  20885. default: true
  20886. },
  20887. "naga": {
  20888. name: "Naga"
  20889. }
  20890. }
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(13 + 7 / 12, "feet"),
  20897. weight: math.unit(1500, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/briar/front.svg",
  20901. extra: 1223/1157,
  20902. bottom: 123/1346
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(13 + 7 / 12, "feet"),
  20910. default: true
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20916. {
  20917. side: {
  20918. height: math.unit(16, "feet"),
  20919. weight: math.unit(500, "lb"),
  20920. name: "Side",
  20921. image: {
  20922. source: "./media/characters/vanguard/side.svg",
  20923. extra: 1022/914,
  20924. bottom: 30/1052
  20925. }
  20926. },
  20927. sideAlt: {
  20928. height: math.unit(10, "feet"),
  20929. weight: math.unit(500, "lb"),
  20930. name: "Side (Alt)",
  20931. image: {
  20932. source: "./media/characters/vanguard/side-alt.svg",
  20933. extra: 502 / 425,
  20934. bottom: 0.087
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(17.71, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(7.5, "feet"),
  20951. weight: math.unit(2, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/artemis/work-safe-front.svg",
  20955. extra: 1192 / 1075,
  20956. bottom: 0.07
  20957. },
  20958. form: "work-safe",
  20959. default: true
  20960. },
  20961. frontNsfw: {
  20962. height: math.unit(7.5, "feet"),
  20963. weight: math.unit(2, "lb"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/artemis/calibrating-front.svg",
  20967. extra: 1192 / 1075,
  20968. bottom: 0.07
  20969. },
  20970. form: "calibrating",
  20971. default: true
  20972. },
  20973. frontNsfwer: {
  20974. height: math.unit(7.5, "feet"),
  20975. weight: math.unit(2, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/artemis/oversize-load-front.svg",
  20979. extra: 1192 / 1075,
  20980. bottom: 0.07
  20981. },
  20982. form: "oversize-load",
  20983. default: true
  20984. },
  20985. side: {
  20986. height: math.unit(7.5, "feet"),
  20987. weight: math.unit(2, "lb"),
  20988. name: "Side",
  20989. image: {
  20990. source: "./media/characters/artemis/work-safe-side.svg",
  20991. extra: 1192 / 1075,
  20992. bottom: 0.07
  20993. },
  20994. form: "work-safe"
  20995. },
  20996. sideNsfw: {
  20997. height: math.unit(7.5, "feet"),
  20998. weight: math.unit(2, "lb"),
  20999. name: "Side",
  21000. image: {
  21001. source: "./media/characters/artemis/calibrating-side.svg",
  21002. extra: 1192 / 1075,
  21003. bottom: 0.07
  21004. },
  21005. form: "calibrating"
  21006. },
  21007. sideNsfwer: {
  21008. height: math.unit(7.5, "feet"),
  21009. weight: math.unit(2, "lb"),
  21010. name: "Side",
  21011. image: {
  21012. source: "./media/characters/artemis/oversize-load-side.svg",
  21013. extra: 1192 / 1075,
  21014. bottom: 0.07
  21015. },
  21016. form: "oversize-load"
  21017. },
  21018. maw: {
  21019. height: math.unit(1.1, "feet"),
  21020. name: "Maw",
  21021. image: {
  21022. source: "./media/characters/artemis/maw.svg"
  21023. },
  21024. form: "work-safe"
  21025. },
  21026. stomach: {
  21027. height: math.unit(0.95, "feet"),
  21028. name: "Stomach",
  21029. image: {
  21030. source: "./media/characters/artemis/stomach.svg"
  21031. },
  21032. form: "work-safe"
  21033. },
  21034. dickCanine: {
  21035. height: math.unit(1, "feet"),
  21036. name: "Dick (Canine)",
  21037. image: {
  21038. source: "./media/characters/artemis/dick-canine.svg"
  21039. },
  21040. form: "calibrating"
  21041. },
  21042. dickEquine: {
  21043. height: math.unit(0.85, "feet"),
  21044. name: "Dick (Equine)",
  21045. image: {
  21046. source: "./media/characters/artemis/dick-equine.svg"
  21047. },
  21048. form: "calibrating"
  21049. },
  21050. dickExotic: {
  21051. height: math.unit(0.85, "feet"),
  21052. name: "Dick (Exotic)",
  21053. image: {
  21054. source: "./media/characters/artemis/dick-exotic.svg"
  21055. },
  21056. form: "calibrating"
  21057. },
  21058. dickCanineBigger: {
  21059. height: math.unit(1 * 1.33, "feet"),
  21060. name: "Dick (Canine)",
  21061. image: {
  21062. source: "./media/characters/artemis/dick-canine.svg"
  21063. },
  21064. form: "oversize-load"
  21065. },
  21066. dickEquineBigger: {
  21067. height: math.unit(0.85 * 1.33, "feet"),
  21068. name: "Dick (Equine)",
  21069. image: {
  21070. source: "./media/characters/artemis/dick-equine.svg"
  21071. },
  21072. form: "oversize-load"
  21073. },
  21074. dickExoticBigger: {
  21075. height: math.unit(0.85 * 1.33, "feet"),
  21076. name: "Dick (Exotic)",
  21077. image: {
  21078. source: "./media/characters/artemis/dick-exotic.svg"
  21079. },
  21080. form: "oversize-load"
  21081. },
  21082. },
  21083. [
  21084. {
  21085. name: "Normal",
  21086. height: math.unit(7.5, "feet"),
  21087. form: "work-safe",
  21088. default: true
  21089. },
  21090. {
  21091. name: "Normal",
  21092. height: math.unit(7.5, "feet"),
  21093. form: "calibrating",
  21094. default: true
  21095. },
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(7.5, "feet"),
  21099. form: "oversize-load",
  21100. default: true
  21101. },
  21102. {
  21103. name: "Enlarged",
  21104. height: math.unit(12, "feet"),
  21105. form: "work-safe",
  21106. },
  21107. {
  21108. name: "Enlarged",
  21109. height: math.unit(12, "feet"),
  21110. form: "calibrating",
  21111. },
  21112. {
  21113. name: "Enlarged",
  21114. height: math.unit(12, "feet"),
  21115. form: "oversize-load",
  21116. },
  21117. ],
  21118. {
  21119. "work-safe": {
  21120. name: "Work-Safe",
  21121. default: true
  21122. },
  21123. "calibrating": {
  21124. name: "Calibrating"
  21125. },
  21126. "oversize-load": {
  21127. name: "Oversize Load"
  21128. }
  21129. }
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(5 + 3 / 12, "feet"),
  21136. weight: math.unit(160, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/kira/front.svg",
  21140. extra: 906 / 786,
  21141. bottom: 0.01
  21142. }
  21143. },
  21144. back: {
  21145. height: math.unit(5 + 3 / 12, "feet"),
  21146. weight: math.unit(160, "lb"),
  21147. name: "Back",
  21148. image: {
  21149. source: "./media/characters/kira/back.svg",
  21150. extra: 882 / 757,
  21151. bottom: 0.005
  21152. }
  21153. },
  21154. frontDressed: {
  21155. height: math.unit(5 + 3 / 12, "feet"),
  21156. weight: math.unit(160, "lb"),
  21157. name: "Front (Dressed)",
  21158. image: {
  21159. source: "./media/characters/kira/front-dressed.svg",
  21160. extra: 906 / 786,
  21161. bottom: 0.01
  21162. }
  21163. },
  21164. beans: {
  21165. height: math.unit(0.92, "feet"),
  21166. name: "Beans",
  21167. image: {
  21168. source: "./media/characters/kira/beans.svg"
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(5 + 3 / 12, "feet"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(5 + 4 / 12, "feet"),
  21185. weight: math.unit(145, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/scramble/front.svg",
  21189. extra: 763 / 727,
  21190. bottom: 0.05
  21191. }
  21192. },
  21193. back: {
  21194. height: math.unit(5 + 4 / 12, "feet"),
  21195. weight: math.unit(145, "lb"),
  21196. name: "Back",
  21197. image: {
  21198. source: "./media/characters/scramble/back.svg",
  21199. extra: 826 / 737,
  21200. bottom: 0.002
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(5 + 4 / 12, "feet"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21214. {
  21215. side: {
  21216. height: math.unit(6 + 2 / 12, "feet"),
  21217. weight: math.unit(190, "lb"),
  21218. name: "Side",
  21219. image: {
  21220. source: "./media/characters/biscuit/side.svg",
  21221. extra: 858 / 791,
  21222. bottom: 0.044
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(6 + 2 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(5 + 2 / 12, "feet"),
  21239. weight: math.unit(120, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/poffin/front.svg",
  21243. extra: 786 / 680,
  21244. bottom: 0.005
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(5 + 2 / 12, "feet"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(6 + 3 / 12, "feet"),
  21261. weight: math.unit(519, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/dhari/front.svg",
  21265. extra: 1048 / 946,
  21266. bottom: 0.015
  21267. }
  21268. },
  21269. back: {
  21270. height: math.unit(6 + 3 / 12, "feet"),
  21271. weight: math.unit(519, "lb"),
  21272. name: "Back",
  21273. image: {
  21274. source: "./media/characters/dhari/back.svg",
  21275. extra: 1048 / 931,
  21276. bottom: 0.005
  21277. }
  21278. },
  21279. frontDressed: {
  21280. height: math.unit(6 + 3 / 12, "feet"),
  21281. weight: math.unit(519, "lb"),
  21282. name: "Front (Dressed)",
  21283. image: {
  21284. source: "./media/characters/dhari/front-dressed.svg",
  21285. extra: 1713 / 1546,
  21286. bottom: 0.02
  21287. }
  21288. },
  21289. backDressed: {
  21290. height: math.unit(6 + 3 / 12, "feet"),
  21291. weight: math.unit(519, "lb"),
  21292. name: "Back (Dressed)",
  21293. image: {
  21294. source: "./media/characters/dhari/back-dressed.svg",
  21295. extra: 1699 / 1537,
  21296. bottom: 0.01
  21297. }
  21298. },
  21299. maw: {
  21300. height: math.unit(0.95, "feet"),
  21301. name: "Maw",
  21302. image: {
  21303. source: "./media/characters/dhari/maw.svg"
  21304. }
  21305. },
  21306. wereFront: {
  21307. height: math.unit(12 + 8 / 12, "feet"),
  21308. weight: math.unit(4000, "lb"),
  21309. name: "Front (Were)",
  21310. image: {
  21311. source: "./media/characters/dhari/were-front.svg",
  21312. extra: 1065 / 969,
  21313. bottom: 0.015
  21314. }
  21315. },
  21316. wereBack: {
  21317. height: math.unit(12 + 8 / 12, "feet"),
  21318. weight: math.unit(4000, "lb"),
  21319. name: "Back (Were)",
  21320. image: {
  21321. source: "./media/characters/dhari/were-back.svg",
  21322. extra: 1065 / 969,
  21323. bottom: 0.012
  21324. }
  21325. },
  21326. wereMaw: {
  21327. height: math.unit(0.625, "meters"),
  21328. name: "Maw (Were)",
  21329. image: {
  21330. source: "./media/characters/dhari/were-maw.svg"
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(6 + 3 / 12, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21344. {
  21345. anthro: {
  21346. height: math.unit(5 + 7 / 12, "feet"),
  21347. weight: math.unit(175, "lb"),
  21348. name: "Anthro",
  21349. image: {
  21350. source: "./media/characters/rena-dyne/anthro.svg",
  21351. extra: 1849 / 1785,
  21352. bottom: 0.005
  21353. }
  21354. },
  21355. taur: {
  21356. height: math.unit(15 + 6 / 12, "feet"),
  21357. weight: math.unit(8000, "lb"),
  21358. name: "Taur",
  21359. image: {
  21360. source: "./media/characters/rena-dyne/taur.svg",
  21361. extra: 2315 / 2234,
  21362. bottom: 0.033
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(5 + 7 / 12, "feet"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(8, "feet"),
  21379. weight: math.unit(600, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/weremeep/front.svg",
  21383. extra: 967 / 862,
  21384. bottom: 0.01
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Normal",
  21391. height: math.unit(8, "feet"),
  21392. default: true
  21393. },
  21394. {
  21395. name: "Lorg",
  21396. height: math.unit(12, "feet")
  21397. },
  21398. {
  21399. name: "Oh Lawd She Comin'",
  21400. height: math.unit(20, "feet")
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21406. {
  21407. front: {
  21408. height: math.unit(4, "feet"),
  21409. weight: math.unit(90, "lb"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/reza/front.svg",
  21413. extra: 1183 / 1111,
  21414. bottom: 0.017
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(4, "feet"),
  21419. weight: math.unit(90, "lb"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/reza/back.svg",
  21423. extra: 1183 / 1111,
  21424. bottom: 0.01
  21425. }
  21426. },
  21427. drake: {
  21428. height: math.unit(30, "feet"),
  21429. weight: math.unit(246960, "lb"),
  21430. name: "Drake",
  21431. image: {
  21432. source: "./media/characters/reza/drake.svg",
  21433. extra: 2350 / 2024,
  21434. bottom: 60.7 / 2403
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Normal",
  21441. height: math.unit(4, "feet"),
  21442. default: true
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21448. {
  21449. side: {
  21450. height: math.unit(15, "feet"),
  21451. weight: math.unit(14, "tons"),
  21452. name: "Side",
  21453. image: {
  21454. source: "./media/characters/athea/side.svg",
  21455. extra: 960 / 540,
  21456. bottom: 0.003
  21457. }
  21458. },
  21459. sitting: {
  21460. height: math.unit(6 * 2.85, "feet"),
  21461. weight: math.unit(14, "tons"),
  21462. name: "Sitting",
  21463. image: {
  21464. source: "./media/characters/athea/sitting.svg",
  21465. extra: 621 / 581,
  21466. bottom: 0.075
  21467. }
  21468. },
  21469. maw: {
  21470. height: math.unit(7.59498031496063, "feet"),
  21471. name: "Maw",
  21472. image: {
  21473. source: "./media/characters/athea/maw.svg"
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Lap Cat",
  21480. height: math.unit(2.5, "feet")
  21481. },
  21482. {
  21483. name: "Minimacro",
  21484. height: math.unit(15, "feet"),
  21485. default: true
  21486. },
  21487. {
  21488. name: "Macro",
  21489. height: math.unit(120, "feet")
  21490. },
  21491. {
  21492. name: "Macro+",
  21493. height: math.unit(640, "feet")
  21494. },
  21495. {
  21496. name: "Colossus",
  21497. height: math.unit(2.2, "miles")
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(8 + 8 / 12, "feet"),
  21506. weight: math.unit(130, "kg"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/seroko/front.svg",
  21510. extra: 1385 / 1280,
  21511. bottom: 0.025
  21512. }
  21513. },
  21514. back: {
  21515. height: math.unit(8 + 8 / 12, "feet"),
  21516. weight: math.unit(130, "kg"),
  21517. name: "Back",
  21518. image: {
  21519. source: "./media/characters/seroko/back.svg",
  21520. extra: 1369 / 1238,
  21521. bottom: 0.018
  21522. }
  21523. },
  21524. frontDressed: {
  21525. height: math.unit(8 + 8 / 12, "feet"),
  21526. weight: math.unit(130, "kg"),
  21527. name: "Front (Dressed)",
  21528. image: {
  21529. source: "./media/characters/seroko/front-dressed.svg",
  21530. extra: 1366 / 1275,
  21531. bottom: 0.03
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(8 + 8 / 12, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(5.5, "feet"),
  21548. weight: math.unit(160, "lb"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/quatzi/front.svg",
  21552. extra: 2346 / 2242,
  21553. bottom: 0.015
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(5.5, "feet"),
  21561. default: true
  21562. },
  21563. {
  21564. name: "Big",
  21565. height: math.unit(7.7, "feet")
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(5 + 11 / 12, "feet"),
  21574. weight: math.unit(180, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/sen/front.svg",
  21578. extra: 1321 / 1254,
  21579. bottom: 0.015
  21580. }
  21581. },
  21582. side: {
  21583. height: math.unit(5 + 11 / 12, "feet"),
  21584. weight: math.unit(180, "lb"),
  21585. name: "Side",
  21586. image: {
  21587. source: "./media/characters/sen/side.svg",
  21588. extra: 1321 / 1254,
  21589. bottom: 0.007
  21590. }
  21591. },
  21592. back: {
  21593. height: math.unit(5 + 11 / 12, "feet"),
  21594. weight: math.unit(180, "lb"),
  21595. name: "Back",
  21596. image: {
  21597. source: "./media/characters/sen/back.svg",
  21598. extra: 1321 / 1254
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(5 + 11 / 12, "feet"),
  21606. default: true
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(166.6, "cm"),
  21615. weight: math.unit(66.6, "kg"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/fruity/front.svg",
  21619. extra: 1510 / 1386,
  21620. bottom: 0.04
  21621. }
  21622. },
  21623. back: {
  21624. height: math.unit(166.6, "cm"),
  21625. weight: math.unit(66.6, "lb"),
  21626. name: "Back",
  21627. image: {
  21628. source: "./media/characters/fruity/back.svg",
  21629. extra: 1563 / 1435,
  21630. bottom: 0.005
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(166.6, "cm"),
  21638. default: true
  21639. },
  21640. {
  21641. name: "Demonic",
  21642. height: math.unit(166.6, "feet")
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21648. {
  21649. side: {
  21650. height: math.unit(10, "feet"),
  21651. weight: math.unit(500, "lb"),
  21652. name: "Side",
  21653. image: {
  21654. source: "./media/characters/zost/side.svg",
  21655. extra: 2870/2533,
  21656. bottom: 252/3122
  21657. }
  21658. },
  21659. mawFront: {
  21660. height: math.unit(1.08, "meters"),
  21661. name: "Maw (Front)",
  21662. image: {
  21663. source: "./media/characters/zost/maw-front.svg"
  21664. }
  21665. },
  21666. mawSide: {
  21667. height: math.unit(2.66, "feet"),
  21668. name: "Maw (Side)",
  21669. image: {
  21670. source: "./media/characters/zost/maw-side.svg"
  21671. }
  21672. },
  21673. wingspan: {
  21674. height: math.unit(7.4, "feet"),
  21675. name: "Wingspan",
  21676. image: {
  21677. source: "./media/characters/zost/wingspan.svg"
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(10, "feet"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21691. {
  21692. front: {
  21693. height: math.unit(5 + 4 / 12, "feet"),
  21694. weight: math.unit(120, "lb"),
  21695. name: "Front",
  21696. image: {
  21697. source: "./media/characters/luci/front.svg",
  21698. extra: 1985 / 1884,
  21699. bottom: 0.04
  21700. }
  21701. },
  21702. back: {
  21703. height: math.unit(5 + 4 / 12, "feet"),
  21704. weight: math.unit(120, "lb"),
  21705. name: "Back",
  21706. image: {
  21707. source: "./media/characters/luci/back.svg",
  21708. extra: 1892 / 1791,
  21709. bottom: 0.002
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(5 + 4 / 12, "feet"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(1500, "feet"),
  21726. weight: math.unit(3.8e6, "tons"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/2th/front.svg",
  21730. extra: 3489 / 3350,
  21731. bottom: 0.1
  21732. }
  21733. },
  21734. foot: {
  21735. height: math.unit(461, "feet"),
  21736. name: "Foot",
  21737. image: {
  21738. source: "./media/characters/2th/foot.svg"
  21739. }
  21740. },
  21741. },
  21742. [
  21743. {
  21744. name: "\"Micro\"",
  21745. height: math.unit(15 + 7 / 12, "feet")
  21746. },
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(1500, "feet"),
  21750. default: true
  21751. },
  21752. {
  21753. name: "Macro",
  21754. height: math.unit(5000, "feet")
  21755. },
  21756. {
  21757. name: "Megamacro",
  21758. height: math.unit(15, "miles")
  21759. },
  21760. {
  21761. name: "Gigamacro",
  21762. height: math.unit(4000, "miles")
  21763. },
  21764. {
  21765. name: "Galactic",
  21766. height: math.unit(50, "AU")
  21767. },
  21768. ]
  21769. ))
  21770. characterMakers.push(() => makeCharacter(
  21771. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21772. {
  21773. front: {
  21774. height: math.unit(5 + 6 / 12, "feet"),
  21775. weight: math.unit(220, "lb"),
  21776. name: "Front",
  21777. image: {
  21778. source: "./media/characters/amethyst/front.svg",
  21779. extra: 2078 / 2040,
  21780. bottom: 0.045
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(5 + 6 / 12, "feet"),
  21785. weight: math.unit(220, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/amethyst/back.svg",
  21789. extra: 2021 / 1989,
  21790. bottom: 0.02
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(5 + 6 / 12, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(4 + 11 / 12, "feet"),
  21807. weight: math.unit(120, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/yumi-akiyama/front.svg",
  21811. extra: 1327 / 1235,
  21812. bottom: 0.02
  21813. }
  21814. },
  21815. back: {
  21816. height: math.unit(4 + 11 / 12, "feet"),
  21817. weight: math.unit(120, "lb"),
  21818. name: "Back",
  21819. image: {
  21820. source: "./media/characters/yumi-akiyama/back.svg",
  21821. extra: 1287 / 1245,
  21822. bottom: 0.002
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Galactic",
  21829. height: math.unit(50, "galaxies"),
  21830. default: true
  21831. },
  21832. {
  21833. name: "Universal",
  21834. height: math.unit(100, "universes")
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(8, "feet"),
  21843. weight: math.unit(500, "lb"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/rifter-yrmori/front.svg",
  21847. extra: 1180 / 1125,
  21848. bottom: 0.02
  21849. }
  21850. },
  21851. back: {
  21852. height: math.unit(8, "feet"),
  21853. weight: math.unit(500, "lb"),
  21854. name: "Back",
  21855. image: {
  21856. source: "./media/characters/rifter-yrmori/back.svg",
  21857. extra: 1190 / 1145,
  21858. bottom: 0.001
  21859. }
  21860. },
  21861. wings: {
  21862. height: math.unit(7.75, "feet"),
  21863. weight: math.unit(500, "lb"),
  21864. name: "Wings",
  21865. image: {
  21866. source: "./media/characters/rifter-yrmori/wings.svg",
  21867. extra: 1357 / 1285
  21868. }
  21869. },
  21870. maw: {
  21871. height: math.unit(0.8, "feet"),
  21872. name: "Maw",
  21873. image: {
  21874. source: "./media/characters/rifter-yrmori/maw.svg"
  21875. }
  21876. },
  21877. mawfront: {
  21878. height: math.unit(1.45, "feet"),
  21879. name: "Maw (Front)",
  21880. image: {
  21881. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(8, "feet"),
  21889. default: true
  21890. },
  21891. {
  21892. name: "Macro",
  21893. height: math.unit(42, "meters")
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21899. {
  21900. were: {
  21901. height: math.unit(25 + 6 / 12, "feet"),
  21902. weight: math.unit(10000, "lb"),
  21903. name: "Were",
  21904. image: {
  21905. source: "./media/characters/tahajin/were.svg",
  21906. extra: 801 / 770,
  21907. bottom: 0.042
  21908. }
  21909. },
  21910. aquatic: {
  21911. height: math.unit(6 + 4 / 12, "feet"),
  21912. weight: math.unit(160, "lb"),
  21913. name: "Aquatic",
  21914. image: {
  21915. source: "./media/characters/tahajin/aquatic.svg",
  21916. extra: 572 / 542,
  21917. bottom: 0.04
  21918. }
  21919. },
  21920. chow: {
  21921. height: math.unit(8 + 11 / 12, "feet"),
  21922. weight: math.unit(450, "lb"),
  21923. name: "Chow",
  21924. image: {
  21925. source: "./media/characters/tahajin/chow.svg",
  21926. extra: 660 / 640,
  21927. bottom: 0.015
  21928. }
  21929. },
  21930. demiNaga: {
  21931. height: math.unit(6 + 8 / 12, "feet"),
  21932. weight: math.unit(300, "lb"),
  21933. name: "Demi Naga",
  21934. image: {
  21935. source: "./media/characters/tahajin/demi-naga.svg",
  21936. extra: 643 / 615,
  21937. bottom: 0.1
  21938. }
  21939. },
  21940. data: {
  21941. height: math.unit(5, "inches"),
  21942. weight: math.unit(0.1, "lb"),
  21943. name: "Data",
  21944. image: {
  21945. source: "./media/characters/tahajin/data.svg"
  21946. }
  21947. },
  21948. fluu: {
  21949. height: math.unit(5 + 7 / 12, "feet"),
  21950. weight: math.unit(140, "lb"),
  21951. name: "Fluu",
  21952. image: {
  21953. source: "./media/characters/tahajin/fluu.svg",
  21954. extra: 628 / 592,
  21955. bottom: 0.02
  21956. }
  21957. },
  21958. starWarrior: {
  21959. height: math.unit(4 + 5 / 12, "feet"),
  21960. weight: math.unit(50, "lb"),
  21961. name: "Star Warrior",
  21962. image: {
  21963. source: "./media/characters/tahajin/star-warrior.svg"
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Normal",
  21970. height: math.unit(25 + 6 / 12, "feet"),
  21971. default: true
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21977. {
  21978. front: {
  21979. height: math.unit(8, "feet"),
  21980. weight: math.unit(350, "lb"),
  21981. name: "Front",
  21982. image: {
  21983. source: "./media/characters/gabira/front.svg",
  21984. extra: 608 / 580,
  21985. bottom: 0.03
  21986. }
  21987. },
  21988. back: {
  21989. height: math.unit(8, "feet"),
  21990. weight: math.unit(350, "lb"),
  21991. name: "Back",
  21992. image: {
  21993. source: "./media/characters/gabira/back.svg",
  21994. extra: 608 / 580,
  21995. bottom: 0.03
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(8, "feet"),
  22003. default: true
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(5 + 3 / 12, "feet"),
  22012. weight: math.unit(137, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/sasha-katraine/front.svg",
  22016. extra: 1745/1694,
  22017. bottom: 37/1782
  22018. }
  22019. },
  22020. back: {
  22021. height: math.unit(5 + 3 / 12, "feet"),
  22022. weight: math.unit(137, "lb"),
  22023. name: "Back",
  22024. image: {
  22025. source: "./media/characters/sasha-katraine/back.svg",
  22026. extra: 1776/1699,
  22027. bottom: 26/1802
  22028. }
  22029. },
  22030. },
  22031. [
  22032. {
  22033. name: "Micro",
  22034. height: math.unit(5, "inches")
  22035. },
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(5 + 3 / 12, "feet"),
  22039. default: true
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22045. {
  22046. side: {
  22047. height: math.unit(4, "inches"),
  22048. weight: math.unit(200, "grams"),
  22049. name: "Side",
  22050. image: {
  22051. source: "./media/characters/der/side.svg",
  22052. extra: 719 / 400,
  22053. bottom: 30.6 / 749.9187
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Micro",
  22060. height: math.unit(4, "inches"),
  22061. default: true
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22067. {
  22068. side: {
  22069. height: math.unit(30, "meters"),
  22070. weight: math.unit(700, "tonnes"),
  22071. name: "Side",
  22072. image: {
  22073. source: "./media/characters/fixerdragon/side.svg",
  22074. extra: (1293.0514 - 116.03) / 1106.86,
  22075. bottom: 116.03 / 1293.0514
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Planck",
  22082. height: math.unit(1.6e-35, "meters")
  22083. },
  22084. {
  22085. name: "Micro",
  22086. height: math.unit(0.4, "meters")
  22087. },
  22088. {
  22089. name: "Normal",
  22090. height: math.unit(30, "meters"),
  22091. default: true
  22092. },
  22093. {
  22094. name: "Megamacro",
  22095. height: math.unit(1.2, "megameters")
  22096. },
  22097. {
  22098. name: "Teramacro",
  22099. height: math.unit(130, "terameters")
  22100. },
  22101. {
  22102. name: "Yottamacro",
  22103. height: math.unit(6200, "yottameters")
  22104. },
  22105. ]
  22106. ));
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(8, "feet"),
  22112. weight: math.unit(250, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/kite/front.svg",
  22116. extra: 2796 / 2659,
  22117. bottom: 0.002
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(8, "feet"),
  22125. default: true
  22126. },
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(360, "feet")
  22130. },
  22131. {
  22132. name: "Megamacro",
  22133. height: math.unit(1500, "feet")
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(5 + 11/12, "feet"),
  22142. weight: math.unit(170, "lb"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/poojawa-vynar/front.svg",
  22146. extra: 1735/1585,
  22147. bottom: 96/1831
  22148. }
  22149. },
  22150. back: {
  22151. height: math.unit(5 + 11/12, "feet"),
  22152. weight: math.unit(170, "lb"),
  22153. name: "Back",
  22154. image: {
  22155. source: "./media/characters/poojawa-vynar/back.svg",
  22156. extra: 1749/1607,
  22157. bottom: 28/1777
  22158. }
  22159. },
  22160. male: {
  22161. height: math.unit(5 + 11/12, "feet"),
  22162. weight: math.unit(170, "lb"),
  22163. name: "Male",
  22164. image: {
  22165. source: "./media/characters/poojawa-vynar/male.svg",
  22166. extra: 1855/1713,
  22167. bottom: 63/1918
  22168. }
  22169. },
  22170. taur: {
  22171. height: math.unit(5 + 11/12, "feet"),
  22172. weight: math.unit(170, "lb"),
  22173. name: "Taur",
  22174. image: {
  22175. source: "./media/characters/poojawa-vynar/taur.svg",
  22176. extra: 1151/1059,
  22177. bottom: 356/1507
  22178. }
  22179. },
  22180. frontDressed: {
  22181. height: math.unit(5 + 11/12, "feet"),
  22182. weight: math.unit(170, "lb"),
  22183. name: "Front (Dressed)",
  22184. image: {
  22185. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22186. extra: 1735/1585,
  22187. bottom: 96/1831
  22188. }
  22189. },
  22190. backDressed: {
  22191. height: math.unit(5 + 11/12, "feet"),
  22192. weight: math.unit(170, "lb"),
  22193. name: "Back (Dressed)",
  22194. image: {
  22195. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22196. extra: 1749/1607,
  22197. bottom: 28/1777
  22198. }
  22199. },
  22200. maleDressed: {
  22201. height: math.unit(5 + 11/12, "feet"),
  22202. weight: math.unit(170, "lb"),
  22203. name: "Male (Dressed)",
  22204. image: {
  22205. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22206. extra: 1855/1713,
  22207. bottom: 63/1918
  22208. }
  22209. },
  22210. taurDressed: {
  22211. height: math.unit(5 + 11/12, "feet"),
  22212. weight: math.unit(170, "lb"),
  22213. name: "Taur (Dressed)",
  22214. image: {
  22215. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22216. extra: 1151/1059,
  22217. bottom: 356/1507
  22218. }
  22219. },
  22220. maw: {
  22221. height: math.unit(1.46, "feet"),
  22222. name: "Maw",
  22223. image: {
  22224. source: "./media/characters/poojawa-vynar/maw.svg"
  22225. }
  22226. },
  22227. head: {
  22228. height: math.unit(2.34, "feet"),
  22229. name: "Head",
  22230. image: {
  22231. source: "./media/characters/poojawa-vynar/head.svg"
  22232. }
  22233. },
  22234. paw: {
  22235. height: math.unit(1.61, "feet"),
  22236. name: "Paw",
  22237. image: {
  22238. source: "./media/characters/poojawa-vynar/paw.svg"
  22239. }
  22240. },
  22241. pawToering: {
  22242. height: math.unit(1.72, "feet"),
  22243. name: "Paw (Toering)",
  22244. image: {
  22245. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22246. }
  22247. },
  22248. toering: {
  22249. height: math.unit(2.9, "inches"),
  22250. name: "Toering",
  22251. image: {
  22252. source: "./media/characters/poojawa-vynar/toering.svg"
  22253. }
  22254. },
  22255. shaft: {
  22256. height: math.unit(0.625, "feet"),
  22257. name: "Shaft",
  22258. image: {
  22259. source: "./media/characters/poojawa-vynar/shaft.svg"
  22260. }
  22261. },
  22262. spade: {
  22263. height: math.unit(0.42, "feet"),
  22264. name: "Spade",
  22265. image: {
  22266. source: "./media/characters/poojawa-vynar/spade.svg"
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Shortstack",
  22273. height: math.unit(4, "feet")
  22274. },
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(5 + 11 / 12, "feet"),
  22278. default: true
  22279. },
  22280. {
  22281. name: "Tauric",
  22282. height: math.unit(4, "meters")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(293, "meters"),
  22291. weight: math.unit(70400, "tons"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/violette/front.svg",
  22295. extra: 1227 / 1180,
  22296. bottom: 0.005
  22297. }
  22298. },
  22299. back: {
  22300. height: math.unit(293, "meters"),
  22301. weight: math.unit(70400, "tons"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/violette/back.svg",
  22305. extra: 1227 / 1180,
  22306. bottom: 0.005
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Macro",
  22313. height: math.unit(293, "meters"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(1050, "feet"),
  22323. weight: math.unit(200000, "tons"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/alessandra/front.svg",
  22327. extra: 960 / 912,
  22328. bottom: 0.06
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Macro",
  22335. height: math.unit(1050, "feet")
  22336. },
  22337. {
  22338. name: "Macro+",
  22339. height: math.unit(900, "meters"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(5, "feet"),
  22349. weight: math.unit(187, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/person/front.svg",
  22353. extra: 3087 / 2945,
  22354. bottom: 91 / 3181
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Micro",
  22361. height: math.unit(3, "inches")
  22362. },
  22363. {
  22364. name: "Normal",
  22365. height: math.unit(5, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Macro",
  22370. height: math.unit(90, "feet")
  22371. },
  22372. {
  22373. name: "Max Size",
  22374. height: math.unit(280, "feet")
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22380. {
  22381. front: {
  22382. height: math.unit(4.5, "meters"),
  22383. weight: math.unit(3200, "lb"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/ty/front.svg",
  22387. extra: 1038 / 960,
  22388. bottom: 31.156 / 1068
  22389. }
  22390. },
  22391. back: {
  22392. height: math.unit(4.5, "meters"),
  22393. weight: math.unit(3200, "lb"),
  22394. name: "Back",
  22395. image: {
  22396. source: "./media/characters/ty/back.svg",
  22397. extra: 1044 / 966,
  22398. bottom: 7.48 / 1049
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(4.5, "meters"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(5 + 4 / 12, "feet"),
  22415. weight: math.unit(115, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/rocky/front.svg",
  22419. extra: 1012 / 975,
  22420. bottom: 54 / 1066
  22421. }
  22422. },
  22423. },
  22424. [
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(5 + 4 / 12, "feet"),
  22428. default: true
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22434. {
  22435. upright: {
  22436. height: math.unit(6, "meters"),
  22437. weight: math.unit(4000, "kg"),
  22438. name: "Upright",
  22439. image: {
  22440. source: "./media/characters/ruin/upright.svg",
  22441. extra: 668 / 661,
  22442. bottom: 42 / 799.8396
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(6, "meters"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(5, "feet"),
  22459. weight: math.unit(106, "lb"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/robin/front.svg",
  22463. extra: 862 / 799,
  22464. bottom: 42.4 / 914.8856
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Normal",
  22471. height: math.unit(5, "feet"),
  22472. default: true
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22478. {
  22479. side: {
  22480. height: math.unit(3, "feet"),
  22481. weight: math.unit(225, "lb"),
  22482. name: "Side",
  22483. image: {
  22484. source: "./media/characters/saian/side.svg",
  22485. extra: 566 / 356,
  22486. bottom: 79.7 / 643
  22487. }
  22488. },
  22489. maw: {
  22490. height: math.unit(2.85, "feet"),
  22491. name: "Maw",
  22492. image: {
  22493. source: "./media/characters/saian/maw.svg"
  22494. }
  22495. },
  22496. },
  22497. [
  22498. {
  22499. name: "Normal",
  22500. height: math.unit(3, "feet"),
  22501. default: true
  22502. },
  22503. ]
  22504. ))
  22505. characterMakers.push(() => makeCharacter(
  22506. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22507. {
  22508. side: {
  22509. height: math.unit(8, "feet"),
  22510. weight: math.unit(300, "lb"),
  22511. name: "Side",
  22512. image: {
  22513. source: "./media/characters/equus-silvermane/side.svg",
  22514. extra: 2176 / 2050,
  22515. bottom: 65.7 / 2245
  22516. }
  22517. },
  22518. front: {
  22519. height: math.unit(8, "feet"),
  22520. weight: math.unit(300, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/equus-silvermane/front.svg",
  22524. extra: 4633 / 4400,
  22525. bottom: 71.3 / 4706.915
  22526. }
  22527. },
  22528. sideStepping: {
  22529. height: math.unit(8, "feet"),
  22530. weight: math.unit(300, "lb"),
  22531. name: "Side (Stepping)",
  22532. image: {
  22533. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22534. extra: 1968 / 1860,
  22535. bottom: 16.4 / 1989
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(8, "feet")
  22543. },
  22544. {
  22545. name: "Minimacro",
  22546. height: math.unit(75, "feet"),
  22547. default: true
  22548. },
  22549. {
  22550. name: "Macro",
  22551. height: math.unit(150, "feet")
  22552. },
  22553. {
  22554. name: "Macro+",
  22555. height: math.unit(1000, "feet")
  22556. },
  22557. {
  22558. name: "Megamacro",
  22559. height: math.unit(1, "mile")
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22565. {
  22566. side: {
  22567. height: math.unit(20, "feet"),
  22568. weight: math.unit(30000, "kg"),
  22569. name: "Side",
  22570. image: {
  22571. source: "./media/characters/windar/side.svg",
  22572. extra: 1491 / 1248,
  22573. bottom: 82.56 / 1568
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Normal",
  22580. height: math.unit(20, "feet"),
  22581. default: true
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22587. {
  22588. side: {
  22589. height: math.unit(15.66, "feet"),
  22590. weight: math.unit(150, "lb"),
  22591. name: "Side",
  22592. image: {
  22593. source: "./media/characters/melody/side.svg",
  22594. extra: 1097 / 944,
  22595. bottom: 11.8 / 1109
  22596. }
  22597. },
  22598. sideOutfit: {
  22599. height: math.unit(15.66, "feet"),
  22600. weight: math.unit(150, "lb"),
  22601. name: "Side (Outfit)",
  22602. image: {
  22603. source: "./media/characters/melody/side-outfit.svg",
  22604. extra: 1097 / 944,
  22605. bottom: 11.8 / 1109
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(15.66, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22619. {
  22620. front: {
  22621. height: math.unit(8, "feet"),
  22622. weight: math.unit(325, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/windera/front.svg",
  22626. extra: 3180 / 2845,
  22627. bottom: 178 / 3365
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(8, "feet"),
  22635. default: true
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22641. {
  22642. front: {
  22643. height: math.unit(28.75, "feet"),
  22644. weight: math.unit(2000, "kg"),
  22645. name: "Front",
  22646. image: {
  22647. source: "./media/characters/sonear/front.svg",
  22648. extra: 1041.1 / 964.9,
  22649. bottom: 53.7 / 1096.6
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(28.75, "feet"),
  22657. default: true
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22663. {
  22664. side: {
  22665. height: math.unit(25.5, "feet"),
  22666. weight: math.unit(23000, "kg"),
  22667. name: "Side",
  22668. image: {
  22669. source: "./media/characters/kanara/side.svg"
  22670. }
  22671. },
  22672. },
  22673. [
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(25.5, "feet"),
  22677. default: true
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22683. {
  22684. side: {
  22685. height: math.unit(10, "feet"),
  22686. weight: math.unit(1000, "kg"),
  22687. name: "Side",
  22688. image: {
  22689. source: "./media/characters/ereus/side.svg",
  22690. extra: 1157 / 959,
  22691. bottom: 153 / 1312.5
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Normal",
  22698. height: math.unit(10, "feet"),
  22699. default: true
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22705. {
  22706. side: {
  22707. height: math.unit(4.5, "feet"),
  22708. weight: math.unit(500, "lb"),
  22709. name: "Side",
  22710. image: {
  22711. source: "./media/characters/e-ter/side.svg",
  22712. extra: 1550 / 1248,
  22713. bottom: 146 / 1694
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Normal",
  22720. height: math.unit(4.5, "feet"),
  22721. default: true
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22727. {
  22728. side: {
  22729. height: math.unit(9.7, "feet"),
  22730. weight: math.unit(4000, "kg"),
  22731. name: "Side",
  22732. image: {
  22733. source: "./media/characters/yamie/side.svg"
  22734. }
  22735. },
  22736. },
  22737. [
  22738. {
  22739. name: "Normal",
  22740. height: math.unit(9.7, "feet"),
  22741. default: true
  22742. },
  22743. ]
  22744. ))
  22745. characterMakers.push(() => makeCharacter(
  22746. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22747. {
  22748. front: {
  22749. height: math.unit(50, "feet"),
  22750. weight: math.unit(50000, "kg"),
  22751. name: "Front",
  22752. image: {
  22753. source: "./media/characters/anders/front.svg",
  22754. extra: 570 / 539,
  22755. bottom: 14.7 / 586.7
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "Large",
  22762. height: math.unit(50, "feet")
  22763. },
  22764. {
  22765. name: "Macro",
  22766. height: math.unit(2000, "feet"),
  22767. default: true
  22768. },
  22769. {
  22770. name: "Megamacro",
  22771. height: math.unit(12, "miles")
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(7 + 2 / 12, "feet"),
  22780. weight: math.unit(300, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/reban/front.svg",
  22784. extra: 1287/1212,
  22785. bottom: 148/1435
  22786. }
  22787. },
  22788. head: {
  22789. height: math.unit(1.95, "feet"),
  22790. name: "Head",
  22791. image: {
  22792. source: "./media/characters/reban/head.svg"
  22793. }
  22794. },
  22795. maw: {
  22796. height: math.unit(0.95, "feet"),
  22797. name: "Maw",
  22798. image: {
  22799. source: "./media/characters/reban/maw.svg"
  22800. }
  22801. },
  22802. foot: {
  22803. height: math.unit(1.65, "feet"),
  22804. name: "Foot",
  22805. image: {
  22806. source: "./media/characters/reban/foot.svg"
  22807. }
  22808. },
  22809. dick: {
  22810. height: math.unit(7 / 5, "feet"),
  22811. name: "Dick",
  22812. image: {
  22813. source: "./media/characters/reban/dick.svg"
  22814. }
  22815. },
  22816. },
  22817. [
  22818. {
  22819. name: "Natural Height",
  22820. height: math.unit(7 + 2 / 12, "feet")
  22821. },
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(500, "feet"),
  22825. default: true
  22826. },
  22827. {
  22828. name: "Canon Height",
  22829. height: math.unit(50, "AU")
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22835. {
  22836. front: {
  22837. height: math.unit(6, "feet"),
  22838. weight: math.unit(150, "lb"),
  22839. name: "Front",
  22840. image: {
  22841. source: "./media/characters/terrance-keayes/front.svg",
  22842. extra: 1.005,
  22843. bottom: 151 / 1615
  22844. }
  22845. },
  22846. side: {
  22847. height: math.unit(6, "feet"),
  22848. weight: math.unit(150, "lb"),
  22849. name: "Side",
  22850. image: {
  22851. source: "./media/characters/terrance-keayes/side.svg",
  22852. extra: 1.005,
  22853. bottom: 129.4 / 1544
  22854. }
  22855. },
  22856. back: {
  22857. height: math.unit(6, "feet"),
  22858. weight: math.unit(150, "lb"),
  22859. name: "Back",
  22860. image: {
  22861. source: "./media/characters/terrance-keayes/back.svg",
  22862. extra: 1.005,
  22863. bottom: 58.4 / 1557.3
  22864. }
  22865. },
  22866. dick: {
  22867. height: math.unit(6 * 0.208, "feet"),
  22868. name: "Dick",
  22869. image: {
  22870. source: "./media/characters/terrance-keayes/dick.svg"
  22871. }
  22872. },
  22873. },
  22874. [
  22875. {
  22876. name: "Canon Height",
  22877. height: math.unit(35, "miles"),
  22878. default: true
  22879. },
  22880. ]
  22881. ))
  22882. characterMakers.push(() => makeCharacter(
  22883. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22884. {
  22885. front: {
  22886. height: math.unit(6, "feet"),
  22887. weight: math.unit(150, "lb"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/ofelia/front.svg",
  22891. extra: 1130/1117,
  22892. bottom: 91/1221
  22893. }
  22894. },
  22895. back: {
  22896. height: math.unit(6, "feet"),
  22897. weight: math.unit(150, "lb"),
  22898. name: "Back",
  22899. image: {
  22900. source: "./media/characters/ofelia/back.svg",
  22901. extra: 1172/1159,
  22902. bottom: 28/1200
  22903. }
  22904. },
  22905. maw: {
  22906. height: math.unit(1, "feet"),
  22907. name: "Maw",
  22908. image: {
  22909. source: "./media/characters/ofelia/maw.svg"
  22910. }
  22911. },
  22912. foot: {
  22913. height: math.unit(1.949, "feet"),
  22914. name: "Foot",
  22915. image: {
  22916. source: "./media/characters/ofelia/foot.svg"
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Canon Height",
  22923. height: math.unit(2000, "miles"),
  22924. default: true
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(6, "feet"),
  22933. weight: math.unit(150, "lb"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/samuel/front.svg",
  22937. extra: 265 / 258,
  22938. bottom: 2 / 266.1566
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Macro",
  22945. height: math.unit(100, "feet"),
  22946. default: true
  22947. },
  22948. {
  22949. name: "Full Size",
  22950. height: math.unit(1000, "miles")
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(6, "feet"),
  22959. weight: math.unit(300, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/beishir-kiel/front.svg",
  22963. extra: 569 / 547,
  22964. bottom: 41.9 / 609
  22965. }
  22966. },
  22967. maw: {
  22968. height: math.unit(6 * 0.202, "feet"),
  22969. name: "Maw",
  22970. image: {
  22971. source: "./media/characters/beishir-kiel/maw.svg"
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Macro",
  22978. height: math.unit(300, "feet"),
  22979. default: true
  22980. },
  22981. ]
  22982. ))
  22983. characterMakers.push(() => makeCharacter(
  22984. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22985. {
  22986. front: {
  22987. height: math.unit(5 + 7/12, "feet"),
  22988. weight: math.unit(120, "lb"),
  22989. name: "Front",
  22990. image: {
  22991. source: "./media/characters/logan-grey/front.svg",
  22992. extra: 1836/1738,
  22993. bottom: 108/1944
  22994. }
  22995. },
  22996. back: {
  22997. height: math.unit(5 + 7/12, "feet"),
  22998. weight: math.unit(120, "lb"),
  22999. name: "Back",
  23000. image: {
  23001. source: "./media/characters/logan-grey/back.svg",
  23002. extra: 1880/1794,
  23003. bottom: 24/1904
  23004. }
  23005. },
  23006. frontSfw: {
  23007. height: math.unit(5 + 7/12, "feet"),
  23008. weight: math.unit(120, "lb"),
  23009. name: "Front (SFW)",
  23010. image: {
  23011. source: "./media/characters/logan-grey/front-sfw.svg",
  23012. extra: 1836/1738,
  23013. bottom: 108/1944
  23014. }
  23015. },
  23016. backSfw: {
  23017. height: math.unit(5 + 7/12, "feet"),
  23018. weight: math.unit(120, "lb"),
  23019. name: "Back (SFW)",
  23020. image: {
  23021. source: "./media/characters/logan-grey/back-sfw.svg",
  23022. extra: 1880/1794,
  23023. bottom: 24/1904
  23024. }
  23025. },
  23026. hands: {
  23027. height: math.unit(0.84, "feet"),
  23028. name: "Hands",
  23029. image: {
  23030. source: "./media/characters/logan-grey/hands.svg"
  23031. }
  23032. },
  23033. paws: {
  23034. height: math.unit(0.72, "feet"),
  23035. name: "Paws",
  23036. image: {
  23037. source: "./media/characters/logan-grey/paws.svg"
  23038. }
  23039. },
  23040. cock: {
  23041. height: math.unit(1.45, "feet"),
  23042. name: "Cock",
  23043. image: {
  23044. source: "./media/characters/logan-grey/cock.svg"
  23045. }
  23046. },
  23047. cockAlt: {
  23048. height: math.unit(1.437, "feet"),
  23049. name: "Cock (alt)",
  23050. image: {
  23051. source: "./media/characters/logan-grey/cock-alt.svg"
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(5 + 8 / 12, "feet")
  23059. },
  23060. {
  23061. name: "The 500 Foot Femboy",
  23062. height: math.unit(500, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Megmacro",
  23067. height: math.unit(20, "miles")
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(8 + 2 / 12, "feet"),
  23076. weight: math.unit(275, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/draganta/front.svg",
  23080. extra: 1177 / 1135,
  23081. bottom: 33.46 / 1212.1
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Normal",
  23088. height: math.unit(8 + 6 / 12, "feet"),
  23089. default: true
  23090. },
  23091. {
  23092. name: "Macro",
  23093. height: math.unit(150, "feet")
  23094. },
  23095. {
  23096. name: "Megamacro",
  23097. height: math.unit(1000, "miles")
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(1.72, "m"),
  23106. weight: math.unit(80, "lb"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/voski/front.svg",
  23110. extra: 2076.22 / 2022.4,
  23111. bottom: 102.7 / 2177.3866
  23112. }
  23113. },
  23114. frontFlaccid: {
  23115. height: math.unit(1.72, "m"),
  23116. weight: math.unit(80, "lb"),
  23117. name: "Front (Flaccid)",
  23118. image: {
  23119. source: "./media/characters/voski/front-flaccid.svg",
  23120. extra: 2076.22 / 2022.4,
  23121. bottom: 102.7 / 2177.3866
  23122. }
  23123. },
  23124. frontErect: {
  23125. height: math.unit(1.72, "m"),
  23126. weight: math.unit(80, "lb"),
  23127. name: "Front (Erect)",
  23128. image: {
  23129. source: "./media/characters/voski/front-erect.svg",
  23130. extra: 2076.22 / 2022.4,
  23131. bottom: 102.7 / 2177.3866
  23132. }
  23133. },
  23134. back: {
  23135. height: math.unit(1.72, "m"),
  23136. weight: math.unit(80, "lb"),
  23137. name: "Back",
  23138. image: {
  23139. source: "./media/characters/voski/back.svg",
  23140. extra: 2104 / 2051,
  23141. bottom: 10.45 / 2113.63
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Normal",
  23148. height: math.unit(1.72, "m")
  23149. },
  23150. {
  23151. name: "Macro",
  23152. height: math.unit(55, "m"),
  23153. default: true
  23154. },
  23155. {
  23156. name: "Macro+",
  23157. height: math.unit(300, "m")
  23158. },
  23159. {
  23160. name: "Macro++",
  23161. height: math.unit(700, "m")
  23162. },
  23163. {
  23164. name: "Macro+++",
  23165. height: math.unit(4500, "m")
  23166. },
  23167. {
  23168. name: "Macro++++",
  23169. height: math.unit(45, "km")
  23170. },
  23171. {
  23172. name: "Macro+++++",
  23173. height: math.unit(1220, "km")
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(2.3, "m"),
  23182. weight: math.unit(304, "kg"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/icowom-lee/front.svg",
  23186. extra: 985 / 955,
  23187. bottom: 25.4 / 1012
  23188. }
  23189. },
  23190. fronttentacles: {
  23191. height: math.unit(2.3, "m"),
  23192. weight: math.unit(304, "kg"),
  23193. name: "Front-tentacles",
  23194. image: {
  23195. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23196. extra: 985 / 955,
  23197. bottom: 25.4 / 1012
  23198. }
  23199. },
  23200. back: {
  23201. height: math.unit(2.3, "m"),
  23202. weight: math.unit(304, "kg"),
  23203. name: "Back",
  23204. image: {
  23205. source: "./media/characters/icowom-lee/back.svg",
  23206. extra: 975 / 954,
  23207. bottom: 9.5 / 985
  23208. }
  23209. },
  23210. backtentacles: {
  23211. height: math.unit(2.3, "m"),
  23212. weight: math.unit(304, "kg"),
  23213. name: "Back-tentacles",
  23214. image: {
  23215. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23216. extra: 975 / 954,
  23217. bottom: 9.5 / 985
  23218. }
  23219. },
  23220. frontDressed: {
  23221. height: math.unit(2.3, "m"),
  23222. weight: math.unit(304, "kg"),
  23223. name: "Front (Dressed)",
  23224. image: {
  23225. source: "./media/characters/icowom-lee/front-dressed.svg",
  23226. extra: 3076 / 2933,
  23227. bottom: 51.4 / 3125.1889
  23228. }
  23229. },
  23230. rump: {
  23231. height: math.unit(0.776, "meters"),
  23232. name: "Rump",
  23233. image: {
  23234. source: "./media/characters/icowom-lee/rump.svg"
  23235. }
  23236. },
  23237. genitals: {
  23238. height: math.unit(0.78, "meters"),
  23239. name: "Genitals",
  23240. image: {
  23241. source: "./media/characters/icowom-lee/genitals.svg"
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(2.3, "meters"),
  23249. default: true
  23250. },
  23251. {
  23252. name: "Macro",
  23253. height: math.unit(94, "meters"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23260. {
  23261. front: {
  23262. height: math.unit(22, "meters"),
  23263. weight: math.unit(21000, "kg"),
  23264. name: "Front",
  23265. image: {
  23266. source: "./media/characters/shock-diamond/front.svg",
  23267. extra: 2204 / 2053,
  23268. bottom: 65 / 2239.47
  23269. }
  23270. },
  23271. frontNude: {
  23272. height: math.unit(22, "meters"),
  23273. weight: math.unit(21000, "kg"),
  23274. name: "Front (Nude)",
  23275. image: {
  23276. source: "./media/characters/shock-diamond/front-nude.svg",
  23277. extra: 2514 / 2285,
  23278. bottom: 13 / 2527.56
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(3, "meters")
  23286. },
  23287. {
  23288. name: "Macro",
  23289. height: math.unit(22, "meters"),
  23290. default: true
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(5 + 4 / 12, "feet"),
  23299. weight: math.unit(120, "lb"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/rory/front.svg",
  23303. extra: 1318/1241,
  23304. bottom: 42/1360
  23305. }
  23306. },
  23307. back: {
  23308. height: math.unit(5 + 4 / 12, "feet"),
  23309. weight: math.unit(120, "lb"),
  23310. name: "Back",
  23311. image: {
  23312. source: "./media/characters/rory/back.svg",
  23313. extra: 1318/1241,
  23314. bottom: 42/1360
  23315. }
  23316. },
  23317. butt: {
  23318. height: math.unit(1.74, "feet"),
  23319. name: "Butt",
  23320. image: {
  23321. source: "./media/characters/rory/butt.svg"
  23322. }
  23323. },
  23324. dick: {
  23325. height: math.unit(1.02, "feet"),
  23326. name: "Dick",
  23327. image: {
  23328. source: "./media/characters/rory/dick.svg"
  23329. }
  23330. },
  23331. paws: {
  23332. height: math.unit(1, "feet"),
  23333. name: "Paws",
  23334. image: {
  23335. source: "./media/characters/rory/paws.svg"
  23336. }
  23337. },
  23338. frontAlt: {
  23339. height: math.unit(5 + 4 / 12, "feet"),
  23340. weight: math.unit(120, "lb"),
  23341. name: "Front (Alt)",
  23342. image: {
  23343. source: "./media/characters/rory/front-alt.svg",
  23344. extra: 589 / 556,
  23345. bottom: 45.7 / 635.76
  23346. }
  23347. },
  23348. frontAltNude: {
  23349. height: math.unit(5 + 4 / 12, "feet"),
  23350. weight: math.unit(120, "lb"),
  23351. name: "Front (Alt, Nude)",
  23352. image: {
  23353. source: "./media/characters/rory/front-alt-nude.svg",
  23354. extra: 589 / 556,
  23355. bottom: 45.7 / 635.76
  23356. }
  23357. },
  23358. side: {
  23359. height: math.unit(5 + 4 / 12, "feet"),
  23360. weight: math.unit(120, "lb"),
  23361. name: "Side",
  23362. image: {
  23363. source: "./media/characters/rory/side.svg",
  23364. extra: 597 / 564,
  23365. bottom: 55 / 653
  23366. }
  23367. },
  23368. backAlt: {
  23369. height: math.unit(5 + 4 / 12, "feet"),
  23370. weight: math.unit(120, "lb"),
  23371. name: "Back (Alt)",
  23372. image: {
  23373. source: "./media/characters/rory/back-alt.svg",
  23374. extra: 620 / 585,
  23375. bottom: 8.86 / 630.43
  23376. }
  23377. },
  23378. dickAlt: {
  23379. height: math.unit(0.86, "feet"),
  23380. name: "Dick (Alt)",
  23381. image: {
  23382. source: "./media/characters/rory/dick-alt.svg"
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Normal",
  23389. height: math.unit(5 + 4 / 12, "feet"),
  23390. default: true
  23391. },
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(100, "feet")
  23395. },
  23396. {
  23397. name: "Macro+",
  23398. height: math.unit(140, "feet")
  23399. },
  23400. {
  23401. name: "Macro++",
  23402. height: math.unit(300, "feet")
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23408. {
  23409. front: {
  23410. height: math.unit(5 + 9 / 12, "feet"),
  23411. weight: math.unit(190, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/sprisk/front.svg",
  23415. extra: 1225 / 1180,
  23416. bottom: 42.7 / 1266.4
  23417. }
  23418. },
  23419. frontNsfw: {
  23420. height: math.unit(5 + 9 / 12, "feet"),
  23421. weight: math.unit(190, "lb"),
  23422. name: "Front (NSFW)",
  23423. image: {
  23424. source: "./media/characters/sprisk/front-nsfw.svg",
  23425. extra: 1225 / 1180,
  23426. bottom: 42.7 / 1266.4
  23427. }
  23428. },
  23429. back: {
  23430. height: math.unit(5 + 9 / 12, "feet"),
  23431. weight: math.unit(190, "lb"),
  23432. name: "Back",
  23433. image: {
  23434. source: "./media/characters/sprisk/back.svg",
  23435. extra: 1247 / 1200,
  23436. bottom: 5.6 / 1253.04
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Tiny",
  23443. height: math.unit(2, "inches")
  23444. },
  23445. {
  23446. name: "Normal",
  23447. height: math.unit(5 + 9 / 12, "feet"),
  23448. default: true
  23449. },
  23450. {
  23451. name: "Mini Macro",
  23452. height: math.unit(18, "feet")
  23453. },
  23454. {
  23455. name: "Macro",
  23456. height: math.unit(100, "feet")
  23457. },
  23458. {
  23459. name: "MACRO",
  23460. height: math.unit(50, "miles")
  23461. },
  23462. {
  23463. name: "M A C R O",
  23464. height: math.unit(300, "miles")
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23470. {
  23471. side: {
  23472. height: math.unit(15.6, "meters"),
  23473. weight: math.unit(700000, "kg"),
  23474. name: "Side",
  23475. image: {
  23476. source: "./media/characters/bunsen/side.svg",
  23477. extra: 1644 / 358
  23478. }
  23479. },
  23480. foot: {
  23481. height: math.unit(1.611 * 1644 / 358, "meter"),
  23482. name: "Foot",
  23483. image: {
  23484. source: "./media/characters/bunsen/foot.svg"
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Small",
  23491. height: math.unit(10, "feet")
  23492. },
  23493. {
  23494. name: "Normal",
  23495. height: math.unit(15.6, "meters"),
  23496. default: true
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(4 + 11 / 12, "feet"),
  23505. weight: math.unit(140, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/sesh/front.svg",
  23509. extra: 3420 / 3231,
  23510. bottom: 72 / 3949.5
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(4 + 11 / 12, "feet")
  23518. },
  23519. {
  23520. name: "Grown",
  23521. height: math.unit(15, "feet"),
  23522. default: true
  23523. },
  23524. {
  23525. name: "Macro",
  23526. height: math.unit(1500, "feet")
  23527. },
  23528. {
  23529. name: "Megamacro",
  23530. height: math.unit(30, "miles")
  23531. },
  23532. {
  23533. name: "Continental",
  23534. height: math.unit(3000, "miles")
  23535. },
  23536. {
  23537. name: "Gravity Mass",
  23538. height: math.unit(300000, "miles")
  23539. },
  23540. {
  23541. name: "Planet Buster",
  23542. height: math.unit(30000000, "miles")
  23543. },
  23544. {
  23545. name: "Big",
  23546. height: math.unit(3000000000, "miles")
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(9, "feet"),
  23555. weight: math.unit(350, "lb"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/pepper/front.svg",
  23559. extra: 1448 / 1312,
  23560. bottom: 9.4 / 1457.88
  23561. }
  23562. },
  23563. back: {
  23564. height: math.unit(9, "feet"),
  23565. weight: math.unit(350, "lb"),
  23566. name: "Back",
  23567. image: {
  23568. source: "./media/characters/pepper/back.svg",
  23569. extra: 1423 / 1300,
  23570. bottom: 4.6 / 1429
  23571. }
  23572. },
  23573. maw: {
  23574. height: math.unit(0.932, "feet"),
  23575. name: "Maw",
  23576. image: {
  23577. source: "./media/characters/pepper/maw.svg"
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(9, "feet"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(6, "feet"),
  23594. weight: math.unit(150, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/maelstrom/front.svg",
  23598. extra: 2100 / 1883,
  23599. bottom: 94 / 2196.7
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Less Kaiju",
  23606. height: math.unit(200, "feet")
  23607. },
  23608. {
  23609. name: "Kaiju",
  23610. height: math.unit(400, "feet"),
  23611. default: true
  23612. },
  23613. {
  23614. name: "Kaiju-er",
  23615. height: math.unit(600, "feet")
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(6 + 5 / 12, "feet"),
  23624. weight: math.unit(180, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/lexir/front.svg",
  23628. extra: 180 / 172,
  23629. bottom: 12 / 192
  23630. }
  23631. },
  23632. back: {
  23633. height: math.unit(6 + 5 / 12, "feet"),
  23634. weight: math.unit(180, "lb"),
  23635. name: "Back",
  23636. image: {
  23637. source: "./media/characters/lexir/back.svg",
  23638. extra: 1273/1201,
  23639. bottom: 39/1312
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Very Smal",
  23646. height: math.unit(1, "nm")
  23647. },
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(6 + 5 / 12, "feet"),
  23651. default: true
  23652. },
  23653. {
  23654. name: "Macro",
  23655. height: math.unit(1, "mile")
  23656. },
  23657. {
  23658. name: "Megamacro",
  23659. height: math.unit(50, "miles")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(1.5, "meters"),
  23668. weight: math.unit(100, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/maksio/front.svg",
  23672. extra: 1549 / 1531,
  23673. bottom: 123.7 / 1674.5429
  23674. }
  23675. },
  23676. back: {
  23677. height: math.unit(1.5, "meters"),
  23678. weight: math.unit(100, "lb"),
  23679. name: "Back",
  23680. image: {
  23681. source: "./media/characters/maksio/back.svg",
  23682. extra: 1541 / 1509,
  23683. bottom: 97 / 1639
  23684. }
  23685. },
  23686. hand: {
  23687. height: math.unit(0.621, "feet"),
  23688. name: "Hand",
  23689. image: {
  23690. source: "./media/characters/maksio/hand.svg"
  23691. }
  23692. },
  23693. foot: {
  23694. height: math.unit(1.611, "feet"),
  23695. name: "Foot",
  23696. image: {
  23697. source: "./media/characters/maksio/foot.svg"
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Shrunken",
  23704. height: math.unit(10, "cm")
  23705. },
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(150, "cm"),
  23709. default: true
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(100, "feet"),
  23718. name: "Front",
  23719. image: {
  23720. source: "./media/characters/erza-bear/front.svg",
  23721. extra: 2449 / 2390,
  23722. bottom: 46 / 2494
  23723. }
  23724. },
  23725. back: {
  23726. height: math.unit(100, "feet"),
  23727. name: "Back",
  23728. image: {
  23729. source: "./media/characters/erza-bear/back.svg",
  23730. extra: 2489 / 2430,
  23731. bottom: 85.4 / 2480
  23732. }
  23733. },
  23734. tail: {
  23735. height: math.unit(42, "feet"),
  23736. name: "Tail",
  23737. image: {
  23738. source: "./media/characters/erza-bear/tail.svg"
  23739. }
  23740. },
  23741. tongue: {
  23742. height: math.unit(8, "feet"),
  23743. name: "Tongue",
  23744. image: {
  23745. source: "./media/characters/erza-bear/tongue.svg"
  23746. }
  23747. },
  23748. dick: {
  23749. height: math.unit(10.5, "feet"),
  23750. name: "Dick",
  23751. image: {
  23752. source: "./media/characters/erza-bear/dick.svg"
  23753. }
  23754. },
  23755. dickVertical: {
  23756. height: math.unit(16.9, "feet"),
  23757. name: "Dick (Vertical)",
  23758. image: {
  23759. source: "./media/characters/erza-bear/dick-vertical.svg"
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Macro",
  23766. height: math.unit(100, "feet"),
  23767. default: true
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(172, "cm"),
  23776. weight: math.unit(73, "kg"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/violet-flor/front.svg",
  23780. extra: 1530 / 1442,
  23781. bottom: 61.9 / 1588.8
  23782. }
  23783. },
  23784. back: {
  23785. height: math.unit(180, "cm"),
  23786. weight: math.unit(73, "kg"),
  23787. name: "Back",
  23788. image: {
  23789. source: "./media/characters/violet-flor/back.svg",
  23790. extra: 1692 / 1630,
  23791. bottom: 20 / 1712
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Normal",
  23798. height: math.unit(172, "cm"),
  23799. default: true
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(6, "feet"),
  23808. weight: math.unit(220, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/lynn-rhea/front.svg",
  23812. extra: 310 / 273
  23813. }
  23814. },
  23815. back: {
  23816. height: math.unit(6, "feet"),
  23817. weight: math.unit(220, "lb"),
  23818. name: "Back",
  23819. image: {
  23820. source: "./media/characters/lynn-rhea/back.svg",
  23821. extra: 310 / 273
  23822. }
  23823. },
  23824. dicks: {
  23825. height: math.unit(0.9, "feet"),
  23826. name: "Dicks",
  23827. image: {
  23828. source: "./media/characters/lynn-rhea/dicks.svg"
  23829. }
  23830. },
  23831. slit: {
  23832. height: math.unit(0.4, "feet"),
  23833. name: "Slit",
  23834. image: {
  23835. source: "./media/characters/lynn-rhea/slit.svg"
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Micro",
  23842. height: math.unit(1, "inch")
  23843. },
  23844. {
  23845. name: "Macro",
  23846. height: math.unit(60, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Megamacro",
  23851. height: math.unit(2, "miles")
  23852. },
  23853. {
  23854. name: "Gigamacro",
  23855. height: math.unit(3, "earths")
  23856. },
  23857. {
  23858. name: "Galactic",
  23859. height: math.unit(0.8, "galaxies")
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23865. {
  23866. front: {
  23867. height: math.unit(1600, "feet"),
  23868. weight: math.unit(85758785169, "kg"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/valathos/front.svg",
  23872. extra: 1451 / 1339
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(1600, "feet"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23886. {
  23887. front: {
  23888. height: math.unit(7 + 5 / 12, "feet"),
  23889. weight: math.unit(300, "lb"),
  23890. name: "Front",
  23891. image: {
  23892. source: "./media/characters/azula/front.svg",
  23893. extra: 3208 / 2880,
  23894. bottom: 80.2 / 3277
  23895. }
  23896. },
  23897. back: {
  23898. height: math.unit(7 + 5 / 12, "feet"),
  23899. weight: math.unit(300, "lb"),
  23900. name: "Back",
  23901. image: {
  23902. source: "./media/characters/azula/back.svg",
  23903. extra: 3169 / 2822,
  23904. bottom: 150.6 / 3321
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(7 + 5 / 12, "feet"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Big",
  23916. height: math.unit(20, "feet")
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(5 + 1 / 12, "feet"),
  23925. weight: math.unit(110, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/rupert/front.svg",
  23929. extra: 1549 / 1495,
  23930. bottom: 54.2 / 1604.4
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(5 + 1 / 12, "feet"),
  23938. default: true
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23944. {
  23945. front: {
  23946. height: math.unit(8 + 4 / 12, "feet"),
  23947. weight: math.unit(350, "lb"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/sheera-castellar/front.svg",
  23951. extra: 1957 / 1894,
  23952. bottom: 26.97 / 1975.017
  23953. }
  23954. },
  23955. side: {
  23956. height: math.unit(8 + 4 / 12, "feet"),
  23957. weight: math.unit(350, "lb"),
  23958. name: "Side",
  23959. image: {
  23960. source: "./media/characters/sheera-castellar/side.svg",
  23961. extra: 1957 / 1894
  23962. }
  23963. },
  23964. back: {
  23965. height: math.unit(8 + 4 / 12, "feet"),
  23966. weight: math.unit(350, "lb"),
  23967. name: "Back",
  23968. image: {
  23969. source: "./media/characters/sheera-castellar/back.svg",
  23970. extra: 1957 / 1894
  23971. }
  23972. },
  23973. angled: {
  23974. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23975. weight: math.unit(350, "lb"),
  23976. name: "Angled",
  23977. image: {
  23978. source: "./media/characters/sheera-castellar/angled.svg",
  23979. extra: 1807 / 1707,
  23980. bottom: 68 / 1875
  23981. }
  23982. },
  23983. genitals: {
  23984. height: math.unit(2.2, "feet"),
  23985. name: "Genitals",
  23986. image: {
  23987. source: "./media/characters/sheera-castellar/genitals.svg"
  23988. }
  23989. },
  23990. taur: {
  23991. height: math.unit(10 + 6/12, "feet"),
  23992. name: "Taur",
  23993. image: {
  23994. source: "./media/characters/sheera-castellar/taur.svg",
  23995. extra: 2017/1909,
  23996. bottom: 185/2202
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Normal",
  24003. height: math.unit(8 + 4 / 12, "feet")
  24004. },
  24005. {
  24006. name: "Macro",
  24007. height: math.unit(150, "feet"),
  24008. default: true
  24009. },
  24010. {
  24011. name: "Macro+",
  24012. height: math.unit(800, "feet")
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(6, "feet"),
  24021. weight: math.unit(150, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/jaipur/front.svg",
  24025. extra: 3860 / 3731,
  24026. bottom: 287 / 4140
  24027. }
  24028. },
  24029. back: {
  24030. height: math.unit(6, "feet"),
  24031. weight: math.unit(150, "lb"),
  24032. name: "Back",
  24033. image: {
  24034. source: "./media/characters/jaipur/back.svg",
  24035. extra: 1637/1561,
  24036. bottom: 154/1791
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Normal",
  24043. height: math.unit(1.85, "meters"),
  24044. default: true
  24045. },
  24046. {
  24047. name: "Macro",
  24048. height: math.unit(150, "meters")
  24049. },
  24050. {
  24051. name: "Macro+",
  24052. height: math.unit(0.5, "miles")
  24053. },
  24054. {
  24055. name: "Macro++",
  24056. height: math.unit(2.5, "miles")
  24057. },
  24058. {
  24059. name: "Macro+++",
  24060. height: math.unit(12, "miles")
  24061. },
  24062. {
  24063. name: "Macro++++",
  24064. height: math.unit(120, "miles")
  24065. },
  24066. {
  24067. name: "Macro+++++",
  24068. height: math.unit(1200, "miles")
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24074. {
  24075. front: {
  24076. height: math.unit(6, "feet"),
  24077. weight: math.unit(150, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/sheila-wolf/front.svg",
  24081. extra: 1931 / 1808,
  24082. bottom: 29.5 / 1960
  24083. }
  24084. },
  24085. dick: {
  24086. height: math.unit(1.464, "feet"),
  24087. name: "Dick",
  24088. image: {
  24089. source: "./media/characters/sheila-wolf/dick.svg"
  24090. }
  24091. },
  24092. muzzle: {
  24093. height: math.unit(0.513, "feet"),
  24094. name: "Muzzle",
  24095. image: {
  24096. source: "./media/characters/sheila-wolf/muzzle.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Macro",
  24103. height: math.unit(70, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(32, "meters"),
  24113. weight: math.unit(300000, "kg"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/almor/front.svg",
  24117. extra: 1408 / 1322,
  24118. bottom: 94.6 / 1506.5
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Macro",
  24125. height: math.unit(32, "meters"),
  24126. default: true
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24132. {
  24133. front: {
  24134. height: math.unit(7, "feet"),
  24135. weight: math.unit(200, "lb"),
  24136. name: "Front",
  24137. image: {
  24138. source: "./media/characters/silver/front.svg",
  24139. extra: 472.1 / 450.5,
  24140. bottom: 26.5 / 499.424
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(7, "feet"),
  24148. default: true
  24149. },
  24150. {
  24151. name: "Macro",
  24152. height: math.unit(800, "feet")
  24153. },
  24154. {
  24155. name: "Megamacro",
  24156. height: math.unit(250, "miles")
  24157. },
  24158. ]
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24162. {
  24163. front: {
  24164. height: math.unit(6, "feet"),
  24165. weight: math.unit(150, "lb"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/pliskin/front.svg",
  24169. extra: 1469 / 1359,
  24170. bottom: 70 / 1540
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Micro",
  24177. height: math.unit(3, "inches")
  24178. },
  24179. {
  24180. name: "Normal",
  24181. height: math.unit(5 + 11 / 12, "feet"),
  24182. default: true
  24183. },
  24184. {
  24185. name: "Macro",
  24186. height: math.unit(120, "feet")
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(6, "feet"),
  24195. weight: math.unit(150, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/sammy/front.svg",
  24199. extra: 1193 / 1089,
  24200. bottom: 30.5 / 1226
  24201. }
  24202. },
  24203. },
  24204. [
  24205. {
  24206. name: "Macro",
  24207. height: math.unit(1700, "feet"),
  24208. default: true
  24209. },
  24210. {
  24211. name: "Examacro",
  24212. height: math.unit(2.5e9, "lightyears")
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(21, "meters"),
  24221. weight: math.unit(12, "tonnes"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/kuru/front.svg",
  24225. extra: 4301 / 3785,
  24226. bottom: 371.3 / 4691
  24227. }
  24228. },
  24229. },
  24230. [
  24231. {
  24232. name: "Macro",
  24233. height: math.unit(21, "meters"),
  24234. default: true
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24240. {
  24241. front: {
  24242. height: math.unit(23, "meters"),
  24243. weight: math.unit(12.2, "tonnes"),
  24244. name: "Front",
  24245. image: {
  24246. source: "./media/characters/rakka/front.svg",
  24247. extra: 4670 / 4169,
  24248. bottom: 301 / 4968.7
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(23, "meters"),
  24256. default: true
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(6, "feet"),
  24265. weight: math.unit(150, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/rhys-feline/front.svg",
  24269. extra: 2488 / 2308,
  24270. bottom: 35.67 / 2519.19
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Really Small",
  24277. height: math.unit(1, "nm")
  24278. },
  24279. {
  24280. name: "Micro",
  24281. height: math.unit(4, "inches")
  24282. },
  24283. {
  24284. name: "Normal",
  24285. height: math.unit(4 + 10 / 12, "feet"),
  24286. default: true
  24287. },
  24288. {
  24289. name: "Macro",
  24290. height: math.unit(100, "feet")
  24291. },
  24292. {
  24293. name: "Megamacto",
  24294. height: math.unit(50, "miles")
  24295. },
  24296. ]
  24297. ))
  24298. characterMakers.push(() => makeCharacter(
  24299. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24300. {
  24301. side: {
  24302. height: math.unit(30, "feet"),
  24303. weight: math.unit(35000, "kg"),
  24304. name: "Side",
  24305. image: {
  24306. source: "./media/characters/alydar/side.svg",
  24307. extra: 234 / 222,
  24308. bottom: 6.5 / 241
  24309. }
  24310. },
  24311. front: {
  24312. height: math.unit(30, "feet"),
  24313. weight: math.unit(35000, "kg"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/alydar/front.svg",
  24317. extra: 223.37 / 210.2,
  24318. bottom: 22.3 / 246.76
  24319. }
  24320. },
  24321. top: {
  24322. height: math.unit(64.54, "feet"),
  24323. weight: math.unit(35000, "kg"),
  24324. name: "Top",
  24325. image: {
  24326. source: "./media/characters/alydar/top.svg"
  24327. }
  24328. },
  24329. anthro: {
  24330. height: math.unit(30, "feet"),
  24331. weight: math.unit(9000, "kg"),
  24332. name: "Anthro",
  24333. image: {
  24334. source: "./media/characters/alydar/anthro.svg",
  24335. extra: 432 / 421,
  24336. bottom: 7.18 / 440
  24337. }
  24338. },
  24339. maw: {
  24340. height: math.unit(11.693, "feet"),
  24341. name: "Maw",
  24342. image: {
  24343. source: "./media/characters/alydar/maw.svg"
  24344. }
  24345. },
  24346. head: {
  24347. height: math.unit(11.693, "feet"),
  24348. name: "Head",
  24349. image: {
  24350. source: "./media/characters/alydar/head.svg"
  24351. }
  24352. },
  24353. headAlt: {
  24354. height: math.unit(12.861, "feet"),
  24355. name: "Head (Alt)",
  24356. image: {
  24357. source: "./media/characters/alydar/head-alt.svg"
  24358. }
  24359. },
  24360. wing: {
  24361. height: math.unit(20.712, "feet"),
  24362. name: "Wing",
  24363. image: {
  24364. source: "./media/characters/alydar/wing.svg"
  24365. }
  24366. },
  24367. wingFeather: {
  24368. height: math.unit(9.662, "feet"),
  24369. name: "Wing Feather",
  24370. image: {
  24371. source: "./media/characters/alydar/wing-feather.svg"
  24372. }
  24373. },
  24374. countourFeather: {
  24375. height: math.unit(4.154, "feet"),
  24376. name: "Contour Feather",
  24377. image: {
  24378. source: "./media/characters/alydar/contour-feather.svg"
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Diplomatic",
  24385. height: math.unit(13, "feet"),
  24386. default: true
  24387. },
  24388. {
  24389. name: "Small",
  24390. height: math.unit(30, "feet")
  24391. },
  24392. {
  24393. name: "Normal",
  24394. height: math.unit(95, "feet"),
  24395. default: true
  24396. },
  24397. {
  24398. name: "Large",
  24399. height: math.unit(285, "feet")
  24400. },
  24401. {
  24402. name: "Incomprehensible",
  24403. height: math.unit(450, "megameters")
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24409. {
  24410. side: {
  24411. height: math.unit(11, "feet"),
  24412. weight: math.unit(1750, "kg"),
  24413. name: "Side",
  24414. image: {
  24415. source: "./media/characters/selicia/side.svg",
  24416. extra: 440 / 396,
  24417. bottom: 24.8 / 465.979
  24418. }
  24419. },
  24420. maw: {
  24421. height: math.unit(4.665, "feet"),
  24422. name: "Maw",
  24423. image: {
  24424. source: "./media/characters/selicia/maw.svg"
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(11, "feet"),
  24432. default: true
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24438. {
  24439. side: {
  24440. height: math.unit(2 + 6 / 12, "feet"),
  24441. weight: math.unit(30, "lb"),
  24442. name: "Side",
  24443. image: {
  24444. source: "./media/characters/layla/side.svg",
  24445. extra: 244 / 188,
  24446. bottom: 18.2 / 262.1
  24447. }
  24448. },
  24449. back: {
  24450. height: math.unit(2 + 6 / 12, "feet"),
  24451. weight: math.unit(30, "lb"),
  24452. name: "Back",
  24453. image: {
  24454. source: "./media/characters/layla/back.svg",
  24455. extra: 308 / 241.5,
  24456. bottom: 8.9 / 316.8
  24457. }
  24458. },
  24459. cumming: {
  24460. height: math.unit(2 + 6 / 12, "feet"),
  24461. weight: math.unit(30, "lb"),
  24462. name: "Cumming",
  24463. image: {
  24464. source: "./media/characters/layla/cumming.svg",
  24465. extra: 342 / 279,
  24466. bottom: 595 / 938
  24467. }
  24468. },
  24469. dickFlaccid: {
  24470. height: math.unit(2.595, "feet"),
  24471. name: "Flaccid Genitals",
  24472. image: {
  24473. source: "./media/characters/layla/dick-flaccid.svg"
  24474. }
  24475. },
  24476. dickErect: {
  24477. height: math.unit(2.359, "feet"),
  24478. name: "Erect Genitals",
  24479. image: {
  24480. source: "./media/characters/layla/dick-erect.svg"
  24481. }
  24482. },
  24483. dragon: {
  24484. height: math.unit(40, "feet"),
  24485. name: "Dragon",
  24486. image: {
  24487. source: "./media/characters/layla/dragon.svg",
  24488. extra: 610/535,
  24489. bottom: 367/977
  24490. }
  24491. },
  24492. taur: {
  24493. height: math.unit(30, "feet"),
  24494. name: "Taur",
  24495. image: {
  24496. source: "./media/characters/layla/taur.svg",
  24497. extra: 1268/1199,
  24498. bottom: 112/1380
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Micro",
  24505. height: math.unit(1, "inch")
  24506. },
  24507. {
  24508. name: "Small",
  24509. height: math.unit(1, "foot")
  24510. },
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(2 + 6 / 12, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "Macro",
  24518. height: math.unit(200, "feet")
  24519. },
  24520. {
  24521. name: "Megamacro",
  24522. height: math.unit(1000, "miles")
  24523. },
  24524. {
  24525. name: "Planetary",
  24526. height: math.unit(8000, "miles")
  24527. },
  24528. {
  24529. name: "True Layla",
  24530. height: math.unit(200000 * 7, "multiverses")
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24536. {
  24537. back: {
  24538. height: math.unit(10.5, "feet"),
  24539. weight: math.unit(800, "lb"),
  24540. name: "Back",
  24541. image: {
  24542. source: "./media/characters/knox/back.svg",
  24543. extra: 1486 / 1089,
  24544. bottom: 107 / 1601.4
  24545. }
  24546. },
  24547. side: {
  24548. height: math.unit(10.5, "feet"),
  24549. weight: math.unit(800, "lb"),
  24550. name: "Side",
  24551. image: {
  24552. source: "./media/characters/knox/side.svg",
  24553. extra: 244 / 218,
  24554. bottom: 14 / 260
  24555. }
  24556. },
  24557. },
  24558. [
  24559. {
  24560. name: "Compact",
  24561. height: math.unit(10.5, "feet"),
  24562. default: true
  24563. },
  24564. {
  24565. name: "Dynamax",
  24566. height: math.unit(210, "feet")
  24567. },
  24568. {
  24569. name: "Full Macro",
  24570. height: math.unit(850, "feet")
  24571. },
  24572. ]
  24573. ))
  24574. characterMakers.push(() => makeCharacter(
  24575. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24576. {
  24577. front: {
  24578. height: math.unit(28, "feet"),
  24579. weight: math.unit(10500, "lb"),
  24580. name: "Front",
  24581. image: {
  24582. source: "./media/characters/kayda/front.svg",
  24583. extra: 1536 / 1428,
  24584. bottom: 68.7 / 1603
  24585. }
  24586. },
  24587. back: {
  24588. height: math.unit(28, "feet"),
  24589. weight: math.unit(10500, "lb"),
  24590. name: "Back",
  24591. image: {
  24592. source: "./media/characters/kayda/back.svg",
  24593. extra: 1557 / 1464,
  24594. bottom: 39.5 / 1597.49
  24595. }
  24596. },
  24597. dick: {
  24598. height: math.unit(3.858, "feet"),
  24599. name: "Dick",
  24600. image: {
  24601. source: "./media/characters/kayda/dick.svg"
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Macro",
  24608. height: math.unit(28, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(10 + 11 / 12, "feet"),
  24618. weight: math.unit(1400, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/brian/front.svg",
  24622. extra: 737 / 692,
  24623. bottom: 55.4 / 785
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(10 + 11 / 12, "feet"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(5 + 8 / 12, "feet"),
  24640. weight: math.unit(140, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/khemri/front.svg",
  24644. extra: 4780 / 4059,
  24645. bottom: 80.1 / 4859.25
  24646. }
  24647. },
  24648. },
  24649. [
  24650. {
  24651. name: "Micro",
  24652. height: math.unit(6, "inches")
  24653. },
  24654. {
  24655. name: "Normal",
  24656. height: math.unit(5 + 8 / 12, "feet"),
  24657. default: true
  24658. },
  24659. ]
  24660. ))
  24661. characterMakers.push(() => makeCharacter(
  24662. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24663. {
  24664. front: {
  24665. height: math.unit(13, "feet"),
  24666. weight: math.unit(1700, "lb"),
  24667. name: "Front",
  24668. image: {
  24669. source: "./media/characters/felix-braveheart/front.svg",
  24670. extra: 1222 / 1157,
  24671. bottom: 53.2 / 1280
  24672. }
  24673. },
  24674. back: {
  24675. height: math.unit(13, "feet"),
  24676. weight: math.unit(1700, "lb"),
  24677. name: "Back",
  24678. image: {
  24679. source: "./media/characters/felix-braveheart/back.svg",
  24680. extra: 1277 / 1203,
  24681. bottom: 50.2 / 1327
  24682. }
  24683. },
  24684. feral: {
  24685. height: math.unit(6, "feet"),
  24686. weight: math.unit(400, "lb"),
  24687. name: "Feral",
  24688. image: {
  24689. source: "./media/characters/felix-braveheart/feral.svg",
  24690. extra: 682 / 625,
  24691. bottom: 6.9 / 688
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(13, "feet"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24705. {
  24706. side: {
  24707. height: math.unit(5 + 11 / 12, "feet"),
  24708. weight: math.unit(1400, "lb"),
  24709. name: "Side",
  24710. image: {
  24711. source: "./media/characters/shadow-blade/side.svg",
  24712. extra: 1726 / 1267,
  24713. bottom: 58.4 / 1785
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Normal",
  24720. height: math.unit(5 + 11 / 12, "feet"),
  24721. default: true
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(1 + 6 / 12, "feet"),
  24730. weight: math.unit(25, "lb"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/karla-halldor/front.svg",
  24734. extra: 1459 / 1383,
  24735. bottom: 12 / 1472
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(1 + 6 / 12, "feet"),
  24743. default: true
  24744. },
  24745. ]
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24749. {
  24750. front: {
  24751. height: math.unit(6 + 2 / 12, "feet"),
  24752. weight: math.unit(160, "lb"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/ariam/front.svg",
  24756. extra: 1073/976,
  24757. bottom: 52/1125
  24758. }
  24759. },
  24760. back: {
  24761. height: math.unit(6 + 2/12, "feet"),
  24762. weight: math.unit(160, "lb"),
  24763. name: "Back",
  24764. image: {
  24765. source: "./media/characters/ariam/back.svg",
  24766. extra: 1103/1023,
  24767. bottom: 9/1112
  24768. }
  24769. },
  24770. dressed: {
  24771. height: math.unit(6 + 2/12, "feet"),
  24772. weight: math.unit(160, "lb"),
  24773. name: "Dressed",
  24774. image: {
  24775. source: "./media/characters/ariam/dressed.svg",
  24776. extra: 1099/1009,
  24777. bottom: 25/1124
  24778. }
  24779. },
  24780. squatting: {
  24781. height: math.unit(4.1, "feet"),
  24782. weight: math.unit(160, "lb"),
  24783. name: "Squatting",
  24784. image: {
  24785. source: "./media/characters/ariam/squatting.svg",
  24786. extra: 2617 / 2112,
  24787. bottom: 61.2 / 2681,
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(6 + 2 / 12, "feet"),
  24795. default: true
  24796. },
  24797. {
  24798. name: "Normal+",
  24799. height: math.unit(4, "meters")
  24800. },
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(50, "meters")
  24804. },
  24805. {
  24806. name: "Macro+",
  24807. height: math.unit(100, "meters")
  24808. },
  24809. {
  24810. name: "Megamacro",
  24811. height: math.unit(20, "km")
  24812. },
  24813. {
  24814. name: "Caretaker",
  24815. height: math.unit(444, "megameters")
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(1.67, "meters"),
  24824. weight: math.unit(140, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24828. extra: 438 / 410,
  24829. bottom: 0.75 / 439
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Shrunken",
  24836. height: math.unit(7.6, "cm")
  24837. },
  24838. {
  24839. name: "Human Scale",
  24840. height: math.unit(1.67, "meters")
  24841. },
  24842. {
  24843. name: "Wolxi Scale",
  24844. height: math.unit(36.7, "meters"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(1.73, "meters"),
  24854. weight: math.unit(240, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/izue-two-mothers/front.svg",
  24858. extra: 469 / 437,
  24859. bottom: 1.24 / 470.6
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Shrunken",
  24866. height: math.unit(7.86, "cm")
  24867. },
  24868. {
  24869. name: "Human Scale",
  24870. height: math.unit(1.73, "meters")
  24871. },
  24872. {
  24873. name: "Wolxi Scale",
  24874. height: math.unit(38, "meters"),
  24875. default: true
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24881. {
  24882. front: {
  24883. height: math.unit(1.55, "meters"),
  24884. weight: math.unit(120, "lb"),
  24885. name: "Front",
  24886. image: {
  24887. source: "./media/characters/teeku-love-shack/front.svg",
  24888. extra: 387 / 362,
  24889. bottom: 1.51 / 388
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Shrunken",
  24896. height: math.unit(7, "cm")
  24897. },
  24898. {
  24899. name: "Human Scale",
  24900. height: math.unit(1.55, "meters")
  24901. },
  24902. {
  24903. name: "Wolxi Scale",
  24904. height: math.unit(34.1, "meters"),
  24905. default: true
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24911. {
  24912. front: {
  24913. height: math.unit(1.83, "meters"),
  24914. weight: math.unit(135, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/dejma-the-red/front.svg",
  24918. extra: 480 / 458,
  24919. bottom: 1.8 / 482
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Shrunken",
  24926. height: math.unit(8.3, "cm")
  24927. },
  24928. {
  24929. name: "Human Scale",
  24930. height: math.unit(1.83, "meters")
  24931. },
  24932. {
  24933. name: "Wolxi Scale",
  24934. height: math.unit(40, "meters"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(1.78, "meters"),
  24944. weight: math.unit(65, "kg"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/aki/front.svg",
  24948. extra: 452 / 415
  24949. }
  24950. },
  24951. frontNsfw: {
  24952. height: math.unit(1.78, "meters"),
  24953. weight: math.unit(65, "kg"),
  24954. name: "Front (NSFW)",
  24955. image: {
  24956. source: "./media/characters/aki/front-nsfw.svg",
  24957. extra: 452 / 415
  24958. }
  24959. },
  24960. back: {
  24961. height: math.unit(1.78, "meters"),
  24962. weight: math.unit(65, "kg"),
  24963. name: "Back",
  24964. image: {
  24965. source: "./media/characters/aki/back.svg",
  24966. extra: 452 / 415
  24967. }
  24968. },
  24969. rump: {
  24970. height: math.unit(2.05, "feet"),
  24971. name: "Rump",
  24972. image: {
  24973. source: "./media/characters/aki/rump.svg"
  24974. }
  24975. },
  24976. dick: {
  24977. height: math.unit(0.95, "feet"),
  24978. name: "Dick",
  24979. image: {
  24980. source: "./media/characters/aki/dick.svg"
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Micro",
  24987. height: math.unit(15, "cm")
  24988. },
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(178, "cm"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Macro",
  24996. height: math.unit(214, "m")
  24997. },
  24998. {
  24999. name: "Macro+",
  25000. height: math.unit(534, "m")
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(5 + 5 / 12, "feet"),
  25009. weight: math.unit(120, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/ari/front.svg",
  25013. extra: 1550/1471,
  25014. bottom: 39/1589
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(5 + 5 / 12, "feet")
  25022. },
  25023. {
  25024. name: "Macro",
  25025. height: math.unit(100, "feet"),
  25026. default: true
  25027. },
  25028. {
  25029. name: "Megamacro",
  25030. height: math.unit(100, "miles")
  25031. },
  25032. {
  25033. name: "Gigamacro",
  25034. height: math.unit(80000, "miles")
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25040. {
  25041. side: {
  25042. height: math.unit(9, "feet"),
  25043. weight: math.unit(400, "kg"),
  25044. name: "Side",
  25045. image: {
  25046. source: "./media/characters/bolt/side.svg",
  25047. extra: 1126 / 896,
  25048. bottom: 60 / 1187.3,
  25049. }
  25050. },
  25051. },
  25052. [
  25053. {
  25054. name: "Micro",
  25055. height: math.unit(5, "inches")
  25056. },
  25057. {
  25058. name: "Normal",
  25059. height: math.unit(9, "feet"),
  25060. default: true
  25061. },
  25062. {
  25063. name: "Macro",
  25064. height: math.unit(700, "feet")
  25065. },
  25066. {
  25067. name: "Max Size",
  25068. height: math.unit(1.52e22, "yottameters")
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(4.3, "meters"),
  25077. weight: math.unit(3, "tons"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/draekon-sylviar/front.svg",
  25081. extra: 2072/1512,
  25082. bottom: 74/2146
  25083. }
  25084. },
  25085. back: {
  25086. height: math.unit(4.3, "meters"),
  25087. weight: math.unit(3, "tons"),
  25088. name: "Back",
  25089. image: {
  25090. source: "./media/characters/draekon-sylviar/back.svg",
  25091. extra: 1639/1483,
  25092. bottom: 41/1680
  25093. }
  25094. },
  25095. feral: {
  25096. height: math.unit(1.15, "meters"),
  25097. weight: math.unit(3, "tons"),
  25098. name: "Feral",
  25099. image: {
  25100. source: "./media/characters/draekon-sylviar/feral.svg",
  25101. extra: 1033/395,
  25102. bottom: 130/1163
  25103. }
  25104. },
  25105. maw: {
  25106. height: math.unit(1.3, "meters"),
  25107. name: "Maw",
  25108. image: {
  25109. source: "./media/characters/draekon-sylviar/maw.svg"
  25110. }
  25111. },
  25112. mawSeparated: {
  25113. height: math.unit(1.53, "meters"),
  25114. name: "Separated Maw",
  25115. image: {
  25116. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25117. }
  25118. },
  25119. tail: {
  25120. height: math.unit(1.15, "meters"),
  25121. name: "Tail",
  25122. image: {
  25123. source: "./media/characters/draekon-sylviar/tail.svg"
  25124. }
  25125. },
  25126. tailDick: {
  25127. height: math.unit(1.15, "meters"),
  25128. name: "Tail (Dick)",
  25129. image: {
  25130. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25131. }
  25132. },
  25133. tailDickSeparated: {
  25134. height: math.unit(1.19, "meters"),
  25135. name: "Tail (Separated Dick)",
  25136. image: {
  25137. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25138. }
  25139. },
  25140. slit: {
  25141. height: math.unit(1, "meters"),
  25142. name: "Slit",
  25143. image: {
  25144. source: "./media/characters/draekon-sylviar/slit.svg"
  25145. }
  25146. },
  25147. dick: {
  25148. height: math.unit(1.15, "meters"),
  25149. name: "Dick",
  25150. image: {
  25151. source: "./media/characters/draekon-sylviar/dick.svg"
  25152. }
  25153. },
  25154. dickSeparated: {
  25155. height: math.unit(1.1, "meters"),
  25156. name: "Separated Dick",
  25157. image: {
  25158. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25159. }
  25160. },
  25161. sheath: {
  25162. height: math.unit(1.15, "meters"),
  25163. name: "Sheath",
  25164. image: {
  25165. source: "./media/characters/draekon-sylviar/sheath.svg"
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Small",
  25172. height: math.unit(4.53 / 2, "meters"),
  25173. default: true
  25174. },
  25175. {
  25176. name: "Normal",
  25177. height: math.unit(4.53, "meters"),
  25178. default: true
  25179. },
  25180. {
  25181. name: "Large",
  25182. height: math.unit(4.53 * 2, "meters"),
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(6 + 2 / 12, "feet"),
  25191. weight: math.unit(180, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/brawler/front.svg",
  25195. extra: 3301 / 3027,
  25196. bottom: 138 / 3439
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(6 + 2 / 12, "feet"),
  25204. default: true
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25210. {
  25211. front: {
  25212. height: math.unit(11, "feet"),
  25213. weight: math.unit(1000, "lb"),
  25214. name: "Front",
  25215. image: {
  25216. source: "./media/characters/alex/front.svg",
  25217. bottom: 44.5 / 620
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Micro",
  25224. height: math.unit(5, "inches")
  25225. },
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(11, "feet"),
  25229. default: true
  25230. },
  25231. {
  25232. name: "Macro",
  25233. height: math.unit(9.5e9, "feet")
  25234. },
  25235. {
  25236. name: "Max Size",
  25237. height: math.unit(1.4e283, "yottameters")
  25238. },
  25239. ]
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25243. {
  25244. female: {
  25245. height: math.unit(29.9, "m"),
  25246. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25247. name: "Female",
  25248. image: {
  25249. source: "./media/characters/zenari/female.svg",
  25250. extra: 3281.6 / 3217,
  25251. bottom: 72.2 / 3353
  25252. }
  25253. },
  25254. male: {
  25255. height: math.unit(27.7, "m"),
  25256. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25257. name: "Male",
  25258. image: {
  25259. source: "./media/characters/zenari/male.svg",
  25260. extra: 3008 / 2991,
  25261. bottom: 54.6 / 3069
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Macro",
  25268. height: math.unit(29.7, "meters"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25275. {
  25276. female: {
  25277. height: math.unit(23.8, "m"),
  25278. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25279. name: "Female",
  25280. image: {
  25281. source: "./media/characters/mactarian/female.svg",
  25282. extra: 2662 / 2569,
  25283. bottom: 73 / 2736
  25284. }
  25285. },
  25286. male: {
  25287. height: math.unit(23.8, "m"),
  25288. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25289. name: "Male",
  25290. image: {
  25291. source: "./media/characters/mactarian/male.svg",
  25292. extra: 2673 / 2600,
  25293. bottom: 76 / 2750
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "Macro",
  25300. height: math.unit(23.8, "meters"),
  25301. default: true
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25307. {
  25308. female: {
  25309. height: math.unit(19.3, "m"),
  25310. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25311. name: "Female",
  25312. image: {
  25313. source: "./media/characters/umok/female.svg",
  25314. extra: 2186 / 2078,
  25315. bottom: 87 / 2277
  25316. }
  25317. },
  25318. male: {
  25319. height: math.unit(19.5, "m"),
  25320. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25321. name: "Male",
  25322. image: {
  25323. source: "./media/characters/umok/male.svg",
  25324. extra: 2233 / 2140,
  25325. bottom: 24.4 / 2258
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Macro",
  25332. height: math.unit(19.3, "meters"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25339. {
  25340. female: {
  25341. height: math.unit(26.15, "m"),
  25342. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25343. name: "Female",
  25344. image: {
  25345. source: "./media/characters/joraxian/female.svg",
  25346. extra: 2912 / 2824,
  25347. bottom: 36 / 2956
  25348. }
  25349. },
  25350. male: {
  25351. height: math.unit(25.4, "m"),
  25352. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25353. name: "Male",
  25354. image: {
  25355. source: "./media/characters/joraxian/male.svg",
  25356. extra: 2877 / 2721,
  25357. bottom: 82 / 2967
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(26.15, "meters"),
  25365. default: true
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25371. {
  25372. female: {
  25373. height: math.unit(21.6, "m"),
  25374. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25375. name: "Female",
  25376. image: {
  25377. source: "./media/characters/sthara/female.svg",
  25378. extra: 2516 / 2347,
  25379. bottom: 21.5 / 2537
  25380. }
  25381. },
  25382. male: {
  25383. height: math.unit(24, "m"),
  25384. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25385. name: "Male",
  25386. image: {
  25387. source: "./media/characters/sthara/male.svg",
  25388. extra: 2732 / 2607,
  25389. bottom: 23 / 2732
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Macro",
  25396. height: math.unit(21.6, "meters"),
  25397. default: true
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(6 + 4 / 12, "feet"),
  25406. weight: math.unit(175, "lb"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/luka-bryzant/front.svg",
  25410. extra: 311 / 289,
  25411. bottom: 4 / 315
  25412. }
  25413. },
  25414. back: {
  25415. height: math.unit(6 + 4 / 12, "feet"),
  25416. weight: math.unit(175, "lb"),
  25417. name: "Back",
  25418. image: {
  25419. source: "./media/characters/luka-bryzant/back.svg",
  25420. extra: 311 / 289,
  25421. bottom: 3.8 / 313.7
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Micro",
  25428. height: math.unit(10, "inches")
  25429. },
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(6 + 4 / 12, "feet"),
  25433. default: true
  25434. },
  25435. {
  25436. name: "Large",
  25437. height: math.unit(12, "feet")
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(5 + 7 / 12, "feet"),
  25446. weight: math.unit(185, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/aman-aquila/front.svg",
  25450. extra: 1013 / 976,
  25451. bottom: 45.6 / 1057
  25452. }
  25453. },
  25454. side: {
  25455. height: math.unit(5 + 7 / 12, "feet"),
  25456. weight: math.unit(185, "lb"),
  25457. name: "Side",
  25458. image: {
  25459. source: "./media/characters/aman-aquila/side.svg",
  25460. extra: 1054 / 1011,
  25461. bottom: 15 / 1070
  25462. }
  25463. },
  25464. back: {
  25465. height: math.unit(5 + 7 / 12, "feet"),
  25466. weight: math.unit(185, "lb"),
  25467. name: "Back",
  25468. image: {
  25469. source: "./media/characters/aman-aquila/back.svg",
  25470. extra: 1026 / 970,
  25471. bottom: 12 / 1039
  25472. }
  25473. },
  25474. head: {
  25475. height: math.unit(1.211, "feet"),
  25476. name: "Head",
  25477. image: {
  25478. source: "./media/characters/aman-aquila/head.svg",
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Minimicro",
  25485. height: math.unit(0.057, "inches")
  25486. },
  25487. {
  25488. name: "Micro",
  25489. height: math.unit(7, "inches")
  25490. },
  25491. {
  25492. name: "Mini",
  25493. height: math.unit(3 + 7 / 12, "feet")
  25494. },
  25495. {
  25496. name: "Normal",
  25497. height: math.unit(5 + 7 / 12, "feet"),
  25498. default: true
  25499. },
  25500. {
  25501. name: "Macro",
  25502. height: math.unit(157 + 7 / 12, "feet")
  25503. },
  25504. {
  25505. name: "Megamacro",
  25506. height: math.unit(1557 + 7 / 12, "feet")
  25507. },
  25508. {
  25509. name: "Gigamacro",
  25510. height: math.unit(15557 + 7 / 12, "feet")
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25516. {
  25517. front: {
  25518. height: math.unit(3 + 2 / 12, "inches"),
  25519. weight: math.unit(0.3, "ounces"),
  25520. name: "Front",
  25521. image: {
  25522. source: "./media/characters/hiphae/front.svg",
  25523. extra: 1931 / 1683,
  25524. bottom: 24 / 1955
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(3 + 1 / 2, "inches"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(5 + 10 / 12, "feet"),
  25541. weight: math.unit(165, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/nicky/front.svg",
  25545. extra: 3144 / 2886,
  25546. bottom: 45.6 / 3192
  25547. }
  25548. },
  25549. back: {
  25550. height: math.unit(5 + 10 / 12, "feet"),
  25551. weight: math.unit(165, "lb"),
  25552. name: "Back",
  25553. image: {
  25554. source: "./media/characters/nicky/back.svg",
  25555. extra: 3055 / 2804,
  25556. bottom: 28.4 / 3087
  25557. }
  25558. },
  25559. frontclothed: {
  25560. height: math.unit(5 + 10 / 12, "feet"),
  25561. weight: math.unit(165, "lb"),
  25562. name: "Front-clothed",
  25563. image: {
  25564. source: "./media/characters/nicky/front-clothed.svg",
  25565. extra: 3184.9 / 2926.9,
  25566. bottom: 86.5 / 3239.9
  25567. }
  25568. },
  25569. foot: {
  25570. height: math.unit(1.16, "feet"),
  25571. name: "Foot",
  25572. image: {
  25573. source: "./media/characters/nicky/foot.svg"
  25574. }
  25575. },
  25576. feet: {
  25577. height: math.unit(1.34, "feet"),
  25578. name: "Feet",
  25579. image: {
  25580. source: "./media/characters/nicky/feet.svg"
  25581. }
  25582. },
  25583. maw: {
  25584. height: math.unit(0.9, "feet"),
  25585. name: "Maw",
  25586. image: {
  25587. source: "./media/characters/nicky/maw.svg"
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(5 + 10 / 12, "feet"),
  25595. default: true
  25596. },
  25597. {
  25598. name: "Macro",
  25599. height: math.unit(60, "feet")
  25600. },
  25601. {
  25602. name: "Megamacro",
  25603. height: math.unit(1, "mile")
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25609. {
  25610. side: {
  25611. height: math.unit(10, "feet"),
  25612. weight: math.unit(600, "lb"),
  25613. name: "Side",
  25614. image: {
  25615. source: "./media/characters/blair/side.svg",
  25616. bottom: 16.6 / 475,
  25617. extra: 458 / 431
  25618. }
  25619. },
  25620. },
  25621. [
  25622. {
  25623. name: "Micro",
  25624. height: math.unit(8, "inches")
  25625. },
  25626. {
  25627. name: "Normal",
  25628. height: math.unit(10, "feet"),
  25629. default: true
  25630. },
  25631. {
  25632. name: "Macro",
  25633. height: math.unit(180, "feet")
  25634. },
  25635. ]
  25636. ))
  25637. characterMakers.push(() => makeCharacter(
  25638. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25639. {
  25640. front: {
  25641. height: math.unit(5 + 4 / 12, "feet"),
  25642. weight: math.unit(125, "lb"),
  25643. name: "Front",
  25644. image: {
  25645. source: "./media/characters/fisher/front.svg",
  25646. extra: 444 / 390,
  25647. bottom: 2 / 444.8
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Micro",
  25654. height: math.unit(4, "inches")
  25655. },
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(5 + 4 / 12, "feet"),
  25659. default: true
  25660. },
  25661. {
  25662. name: "Macro",
  25663. height: math.unit(100, "feet")
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25669. {
  25670. front: {
  25671. height: math.unit(6.71, "feet"),
  25672. weight: math.unit(200, "lb"),
  25673. capacity: math.unit(1000000, "people"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/gliss/front.svg",
  25677. extra: 2347 / 2231,
  25678. bottom: 113 / 2462
  25679. }
  25680. },
  25681. hammerspaceSize: {
  25682. height: math.unit(6.71 * 717, "feet"),
  25683. weight: math.unit(200, "lb"),
  25684. capacity: math.unit(1000000, "people"),
  25685. name: "Hammerspace Size",
  25686. image: {
  25687. source: "./media/characters/gliss/front.svg",
  25688. extra: 2347 / 2231,
  25689. bottom: 113 / 2462
  25690. }
  25691. },
  25692. },
  25693. [
  25694. {
  25695. name: "Normal",
  25696. height: math.unit(6.71, "feet"),
  25697. default: true
  25698. },
  25699. ]
  25700. ))
  25701. characterMakers.push(() => makeCharacter(
  25702. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25703. {
  25704. side: {
  25705. height: math.unit(1.44, "m"),
  25706. weight: math.unit(80, "kg"),
  25707. name: "Side",
  25708. image: {
  25709. source: "./media/characters/dune-anderson/side.svg",
  25710. bottom: 49 / 1426
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Wolf-sized",
  25717. height: math.unit(1.44, "meters")
  25718. },
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(5.05, "meters"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Big",
  25726. height: math.unit(14.4, "meters")
  25727. },
  25728. {
  25729. name: "Huge",
  25730. height: math.unit(144, "meters")
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(7, "feet"),
  25739. weight: math.unit(425, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/hind/front.svg",
  25743. extra: 2091 / 1860,
  25744. bottom: 129 / 2220
  25745. }
  25746. },
  25747. back: {
  25748. height: math.unit(7, "feet"),
  25749. weight: math.unit(425, "lb"),
  25750. name: "Back",
  25751. image: {
  25752. source: "./media/characters/hind/back.svg",
  25753. extra: 2091 / 1860,
  25754. bottom: 24.6 / 2309
  25755. }
  25756. },
  25757. tail: {
  25758. height: math.unit(2.8, "feet"),
  25759. name: "Tail",
  25760. image: {
  25761. source: "./media/characters/hind/tail.svg"
  25762. }
  25763. },
  25764. head: {
  25765. height: math.unit(2.55, "feet"),
  25766. name: "Head",
  25767. image: {
  25768. source: "./media/characters/hind/head.svg"
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "XS",
  25775. height: math.unit(0.7, "feet")
  25776. },
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(7, "feet"),
  25780. default: true
  25781. },
  25782. {
  25783. name: "XL",
  25784. height: math.unit(70, "feet")
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(2.1, "meters"),
  25793. weight: math.unit(150, "lb"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/tharquench-sizestealer/front.svg",
  25797. extra: 1605/1470,
  25798. bottom: 36/1641
  25799. }
  25800. },
  25801. frontAlt: {
  25802. height: math.unit(2.1, "meters"),
  25803. weight: math.unit(150, "lb"),
  25804. name: "Front (Alt)",
  25805. image: {
  25806. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25807. extra: 2318 / 2063,
  25808. bottom: 93.4 / 2410
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Nano",
  25815. height: math.unit(1, "mm")
  25816. },
  25817. {
  25818. name: "Micro",
  25819. height: math.unit(1, "cm")
  25820. },
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(2.1, "meters"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(7 + 5 / 12, "feet"),
  25833. weight: math.unit(357, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/solex-draconov/front.svg",
  25837. extra: 1993 / 1865,
  25838. bottom: 117 / 2111
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Natural Height",
  25845. height: math.unit(7 + 5 / 12, "feet"),
  25846. default: true
  25847. },
  25848. {
  25849. name: "Macro",
  25850. height: math.unit(350, "feet")
  25851. },
  25852. {
  25853. name: "Macro+",
  25854. height: math.unit(1000, "feet")
  25855. },
  25856. {
  25857. name: "Megamacro",
  25858. height: math.unit(20, "km")
  25859. },
  25860. {
  25861. name: "Megamacro+",
  25862. height: math.unit(1000, "km")
  25863. },
  25864. {
  25865. name: "Gigamacro",
  25866. height: math.unit(2.5, "Gm")
  25867. },
  25868. {
  25869. name: "Teramacro",
  25870. height: math.unit(15, "Tm")
  25871. },
  25872. {
  25873. name: "Galactic",
  25874. height: math.unit(30, "Zm")
  25875. },
  25876. {
  25877. name: "Universal",
  25878. height: math.unit(21000, "Ym")
  25879. },
  25880. {
  25881. name: "Omniversal",
  25882. height: math.unit(9.861e50, "Ym")
  25883. },
  25884. {
  25885. name: "Existential",
  25886. height: math.unit(1e300, "meters")
  25887. },
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25892. {
  25893. side: {
  25894. height: math.unit(25, "feet"),
  25895. weight: math.unit(90000, "lb"),
  25896. name: "Side",
  25897. image: {
  25898. source: "./media/characters/mandarax/side.svg",
  25899. extra: 614 / 332,
  25900. bottom: 55 / 630
  25901. }
  25902. },
  25903. lounging: {
  25904. height: math.unit(15.4, "feet"),
  25905. weight: math.unit(90000, "lb"),
  25906. name: "Lounging",
  25907. image: {
  25908. source: "./media/characters/mandarax/lounging.svg",
  25909. extra: 817/609,
  25910. bottom: 685/1502
  25911. }
  25912. },
  25913. head: {
  25914. height: math.unit(11.4, "feet"),
  25915. name: "Head",
  25916. image: {
  25917. source: "./media/characters/mandarax/head.svg"
  25918. }
  25919. },
  25920. belly: {
  25921. height: math.unit(33, "feet"),
  25922. name: "Belly",
  25923. capacity: math.unit(500, "people"),
  25924. image: {
  25925. source: "./media/characters/mandarax/belly.svg"
  25926. }
  25927. },
  25928. dick: {
  25929. height: math.unit(8.46, "feet"),
  25930. name: "Dick",
  25931. image: {
  25932. source: "./media/characters/mandarax/dick.svg"
  25933. }
  25934. },
  25935. top: {
  25936. height: math.unit(28, "meters"),
  25937. name: "Top",
  25938. image: {
  25939. source: "./media/characters/mandarax/top.svg"
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Normal",
  25946. height: math.unit(25, "feet"),
  25947. default: true
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25953. {
  25954. front: {
  25955. height: math.unit(5, "feet"),
  25956. weight: math.unit(90, "lb"),
  25957. name: "Front",
  25958. image: {
  25959. source: "./media/characters/pixil/front.svg",
  25960. extra: 2000 / 1618,
  25961. bottom: 12.3 / 2011
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(5, "feet"),
  25969. default: true
  25970. },
  25971. {
  25972. name: "Megamacro",
  25973. height: math.unit(10, "miles"),
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25979. {
  25980. front: {
  25981. height: math.unit(7 + 2 / 12, "feet"),
  25982. weight: math.unit(200, "lb"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/angel/front.svg",
  25986. extra: 1830 / 1737,
  25987. bottom: 22.6 / 1854,
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(7 + 2 / 12, "feet"),
  25995. default: true
  25996. },
  25997. {
  25998. name: "Macro",
  25999. height: math.unit(1000, "feet")
  26000. },
  26001. {
  26002. name: "Megamacro",
  26003. height: math.unit(2, "miles")
  26004. },
  26005. {
  26006. name: "Gigamacro",
  26007. height: math.unit(20, "earths")
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26013. {
  26014. front: {
  26015. height: math.unit(5, "feet"),
  26016. weight: math.unit(180, "lb"),
  26017. name: "Front",
  26018. image: {
  26019. source: "./media/characters/mekana/front.svg",
  26020. extra: 1671 / 1605,
  26021. bottom: 3.5 / 1691
  26022. }
  26023. },
  26024. side: {
  26025. height: math.unit(5, "feet"),
  26026. weight: math.unit(180, "lb"),
  26027. name: "Side",
  26028. image: {
  26029. source: "./media/characters/mekana/side.svg",
  26030. extra: 1671 / 1605,
  26031. bottom: 3.5 / 1691
  26032. }
  26033. },
  26034. back: {
  26035. height: math.unit(5, "feet"),
  26036. weight: math.unit(180, "lb"),
  26037. name: "Back",
  26038. image: {
  26039. source: "./media/characters/mekana/back.svg",
  26040. extra: 1671 / 1605,
  26041. bottom: 3.5 / 1691
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Normal",
  26048. height: math.unit(5, "feet"),
  26049. default: true
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26055. {
  26056. front: {
  26057. height: math.unit(4 + 6 / 12, "feet"),
  26058. weight: math.unit(80, "lb"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/pixie/front.svg",
  26062. extra: 1924 / 1825,
  26063. bottom: 22.4 / 1946
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(4 + 6 / 12, "feet"),
  26071. default: true
  26072. },
  26073. {
  26074. name: "Macro",
  26075. height: math.unit(40, "feet")
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26081. {
  26082. front: {
  26083. height: math.unit(2.1, "meters"),
  26084. weight: math.unit(200, "lb"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/the-lascivious/front.svg",
  26088. extra: 1 / 0.893,
  26089. bottom: 3.5 / 573.7
  26090. }
  26091. },
  26092. },
  26093. [
  26094. {
  26095. name: "Human Scale",
  26096. height: math.unit(2.1, "meters")
  26097. },
  26098. {
  26099. name: "Wolxi Scale",
  26100. height: math.unit(46.2, "m"),
  26101. default: true
  26102. },
  26103. {
  26104. name: "Boinker of Buildings",
  26105. height: math.unit(10, "km")
  26106. },
  26107. {
  26108. name: "Shagger of Skyscrapers",
  26109. height: math.unit(40, "km")
  26110. },
  26111. {
  26112. name: "Banger of Boroughs",
  26113. height: math.unit(4000, "km")
  26114. },
  26115. {
  26116. name: "Screwer of States",
  26117. height: math.unit(100000, "km")
  26118. },
  26119. {
  26120. name: "Pounder of Planets",
  26121. height: math.unit(2000000, "km")
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26127. {
  26128. front: {
  26129. height: math.unit(6, "feet"),
  26130. weight: math.unit(150, "lb"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/aj/front.svg",
  26134. extra: 2039 / 1562,
  26135. bottom: 40 / 2079
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(11 + 6 / 12, "feet"),
  26143. default: true
  26144. },
  26145. {
  26146. name: "Megamacro",
  26147. height: math.unit(60, "megameters")
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26153. {
  26154. side: {
  26155. height: math.unit(31 + 8 / 12, "feet"),
  26156. weight: math.unit(75000, "kg"),
  26157. name: "Side",
  26158. image: {
  26159. source: "./media/characters/koros/side.svg",
  26160. extra: 1442 / 1297,
  26161. bottom: 122.7 / 1562
  26162. }
  26163. },
  26164. dicksKingsCrown: {
  26165. height: math.unit(6, "feet"),
  26166. name: "Dicks (King's Crown)",
  26167. image: {
  26168. source: "./media/characters/koros/dicks-kings-crown.svg"
  26169. }
  26170. },
  26171. dicksTailSet: {
  26172. height: math.unit(3, "feet"),
  26173. name: "Dicks (Tail Set)",
  26174. image: {
  26175. source: "./media/characters/koros/dicks-tail-set.svg"
  26176. }
  26177. },
  26178. dickCumming: {
  26179. height: math.unit(7.98, "feet"),
  26180. name: "Dick (Cumming)",
  26181. image: {
  26182. source: "./media/characters/koros/dick-cumming.svg"
  26183. }
  26184. },
  26185. dicksBack: {
  26186. height: math.unit(5.9, "feet"),
  26187. name: "Dicks (Back)",
  26188. image: {
  26189. source: "./media/characters/koros/dicks-back.svg"
  26190. }
  26191. },
  26192. dicksFront: {
  26193. height: math.unit(3.72, "feet"),
  26194. name: "Dicks (Front)",
  26195. image: {
  26196. source: "./media/characters/koros/dicks-front.svg"
  26197. }
  26198. },
  26199. dicksPeeking: {
  26200. height: math.unit(3.0, "feet"),
  26201. name: "Dicks (Peeking)",
  26202. image: {
  26203. source: "./media/characters/koros/dicks-peeking.svg"
  26204. }
  26205. },
  26206. eye: {
  26207. height: math.unit(1.7, "feet"),
  26208. name: "Eye",
  26209. image: {
  26210. source: "./media/characters/koros/eye.svg"
  26211. }
  26212. },
  26213. headFront: {
  26214. height: math.unit(11.69, "feet"),
  26215. name: "Head (Front)",
  26216. image: {
  26217. source: "./media/characters/koros/head-front.svg"
  26218. }
  26219. },
  26220. headSide: {
  26221. height: math.unit(14, "feet"),
  26222. name: "Head (Side)",
  26223. image: {
  26224. source: "./media/characters/koros/head-side.svg"
  26225. }
  26226. },
  26227. leg: {
  26228. height: math.unit(17, "feet"),
  26229. name: "Leg",
  26230. image: {
  26231. source: "./media/characters/koros/leg.svg"
  26232. }
  26233. },
  26234. mawSide: {
  26235. height: math.unit(12.8, "feet"),
  26236. name: "Maw (Side)",
  26237. image: {
  26238. source: "./media/characters/koros/maw-side.svg"
  26239. }
  26240. },
  26241. mawSpitting: {
  26242. height: math.unit(17, "feet"),
  26243. name: "Maw (Spitting)",
  26244. image: {
  26245. source: "./media/characters/koros/maw-spitting.svg"
  26246. }
  26247. },
  26248. slit: {
  26249. height: math.unit(2.8, "feet"),
  26250. name: "Slit",
  26251. image: {
  26252. source: "./media/characters/koros/slit.svg"
  26253. }
  26254. },
  26255. stomach: {
  26256. height: math.unit(6.8, "feet"),
  26257. capacity: math.unit(20, "people"),
  26258. name: "Stomach",
  26259. image: {
  26260. source: "./media/characters/koros/stomach.svg"
  26261. }
  26262. },
  26263. wingspanBottom: {
  26264. height: math.unit(114, "feet"),
  26265. name: "Wingspan (Bottom)",
  26266. image: {
  26267. source: "./media/characters/koros/wingspan-bottom.svg"
  26268. }
  26269. },
  26270. wingspanTop: {
  26271. height: math.unit(104, "feet"),
  26272. name: "Wingspan (Top)",
  26273. image: {
  26274. source: "./media/characters/koros/wingspan-top.svg"
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(31 + 8 / 12, "feet"),
  26282. default: true
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(18 + 5 / 12, "feet"),
  26291. weight: math.unit(3750, "kg"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/vexx/front.svg",
  26295. extra: 426 / 396,
  26296. bottom: 31.5 / 458
  26297. }
  26298. },
  26299. maw: {
  26300. height: math.unit(6, "feet"),
  26301. name: "Maw",
  26302. image: {
  26303. source: "./media/characters/vexx/maw.svg"
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(18 + 5 / 12, "feet"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(17 + 6 / 12, "feet"),
  26320. weight: math.unit(150, "lb"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/baadra/front.svg",
  26324. extra: 1694/1553,
  26325. bottom: 179/1873
  26326. }
  26327. },
  26328. frontAlt: {
  26329. height: math.unit(17 + 6 / 12, "feet"),
  26330. weight: math.unit(150, "lb"),
  26331. name: "Front (Alt)",
  26332. image: {
  26333. source: "./media/characters/baadra/front-alt.svg",
  26334. extra: 3137 / 2890,
  26335. bottom: 168.4 / 3305
  26336. }
  26337. },
  26338. back: {
  26339. height: math.unit(17 + 6 / 12, "feet"),
  26340. weight: math.unit(150, "lb"),
  26341. name: "Back",
  26342. image: {
  26343. source: "./media/characters/baadra/back.svg",
  26344. extra: 3142 / 2890,
  26345. bottom: 220 / 3371
  26346. }
  26347. },
  26348. head: {
  26349. height: math.unit(5.45, "feet"),
  26350. name: "Head",
  26351. image: {
  26352. source: "./media/characters/baadra/head.svg"
  26353. }
  26354. },
  26355. headAngry: {
  26356. height: math.unit(4.95, "feet"),
  26357. name: "Head (Angry)",
  26358. image: {
  26359. source: "./media/characters/baadra/head-angry.svg"
  26360. }
  26361. },
  26362. headOpen: {
  26363. height: math.unit(6, "feet"),
  26364. name: "Head (Open)",
  26365. image: {
  26366. source: "./media/characters/baadra/head-open.svg"
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(17 + 6 / 12, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(7 + 3 / 12, "feet"),
  26383. weight: math.unit(180, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/juri/front.svg",
  26387. extra: 1401 / 1237,
  26388. bottom: 18.5 / 1418
  26389. }
  26390. },
  26391. side: {
  26392. height: math.unit(7 + 3 / 12, "feet"),
  26393. weight: math.unit(180, "lb"),
  26394. name: "Side",
  26395. image: {
  26396. source: "./media/characters/juri/side.svg",
  26397. extra: 1424 / 1242,
  26398. bottom: 18.5 / 1447
  26399. }
  26400. },
  26401. sitting: {
  26402. height: math.unit(6, "feet"),
  26403. weight: math.unit(180, "lb"),
  26404. name: "Sitting",
  26405. image: {
  26406. source: "./media/characters/juri/sitting.svg",
  26407. extra: 1270 / 1143,
  26408. bottom: 100 / 1343
  26409. }
  26410. },
  26411. back: {
  26412. height: math.unit(7 + 3 / 12, "feet"),
  26413. weight: math.unit(180, "lb"),
  26414. name: "Back",
  26415. image: {
  26416. source: "./media/characters/juri/back.svg",
  26417. extra: 1377 / 1240,
  26418. bottom: 23.7 / 1405
  26419. }
  26420. },
  26421. maw: {
  26422. height: math.unit(2.8, "feet"),
  26423. name: "Maw",
  26424. image: {
  26425. source: "./media/characters/juri/maw.svg"
  26426. }
  26427. },
  26428. stomach: {
  26429. height: math.unit(0.89, "feet"),
  26430. capacity: math.unit(4, "liters"),
  26431. name: "Stomach",
  26432. image: {
  26433. source: "./media/characters/juri/stomach.svg"
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(7 + 3 / 12, "feet"),
  26441. default: true
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26447. {
  26448. fox: {
  26449. height: math.unit(5 + 6 / 12, "feet"),
  26450. weight: math.unit(140, "lb"),
  26451. name: "Fox",
  26452. image: {
  26453. source: "./media/characters/maxene-sita/fox.svg",
  26454. extra: 146 / 138,
  26455. bottom: 2.1 / 148.19
  26456. }
  26457. },
  26458. foxLaying: {
  26459. height: math.unit(1.70, "feet"),
  26460. weight: math.unit(140, "lb"),
  26461. name: "Fox (Laying)",
  26462. image: {
  26463. source: "./media/characters/maxene-sita/fox-laying.svg",
  26464. extra: 910 / 572,
  26465. bottom: 71 / 981
  26466. }
  26467. },
  26468. kitsune: {
  26469. height: math.unit(10, "feet"),
  26470. weight: math.unit(800, "lb"),
  26471. name: "Kitsune",
  26472. image: {
  26473. source: "./media/characters/maxene-sita/kitsune.svg",
  26474. extra: 185 / 176,
  26475. bottom: 4.7 / 189.9
  26476. }
  26477. },
  26478. hellhound: {
  26479. height: math.unit(10, "feet"),
  26480. weight: math.unit(700, "lb"),
  26481. name: "Hellhound",
  26482. image: {
  26483. source: "./media/characters/maxene-sita/hellhound.svg",
  26484. extra: 1600 / 1545,
  26485. bottom: 81 / 1681
  26486. }
  26487. },
  26488. },
  26489. [
  26490. {
  26491. name: "Normal",
  26492. height: math.unit(5 + 6 / 12, "feet"),
  26493. default: true
  26494. },
  26495. ]
  26496. ))
  26497. characterMakers.push(() => makeCharacter(
  26498. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26499. {
  26500. front: {
  26501. height: math.unit(3 + 4 / 12, "feet"),
  26502. weight: math.unit(70, "lb"),
  26503. name: "Front",
  26504. image: {
  26505. source: "./media/characters/maia/front.svg",
  26506. extra: 227 / 219.5,
  26507. bottom: 40 / 267
  26508. }
  26509. },
  26510. back: {
  26511. height: math.unit(3 + 4 / 12, "feet"),
  26512. weight: math.unit(70, "lb"),
  26513. name: "Back",
  26514. image: {
  26515. source: "./media/characters/maia/back.svg",
  26516. extra: 237 / 225
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(3 + 4 / 12, "feet"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(5 + 10 / 12, "feet"),
  26533. weight: math.unit(197, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/jabaro/front.svg",
  26537. extra: 225 / 216,
  26538. bottom: 5.06 / 230
  26539. }
  26540. },
  26541. back: {
  26542. height: math.unit(5 + 10 / 12, "feet"),
  26543. weight: math.unit(197, "lb"),
  26544. name: "Back",
  26545. image: {
  26546. source: "./media/characters/jabaro/back.svg",
  26547. extra: 225 / 219,
  26548. bottom: 1.9 / 227
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(5 + 10 / 12, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(5 + 8 / 12, "feet"),
  26565. weight: math.unit(139, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/risa/front.svg",
  26569. extra: 270 / 260,
  26570. bottom: 11.2 / 282
  26571. }
  26572. },
  26573. back: {
  26574. height: math.unit(5 + 8 / 12, "feet"),
  26575. weight: math.unit(139, "lb"),
  26576. name: "Back",
  26577. image: {
  26578. source: "./media/characters/risa/back.svg",
  26579. extra: 264 / 255,
  26580. bottom: 4 / 268
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(5 + 8 / 12, "feet"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26594. {
  26595. front: {
  26596. height: math.unit(2 + 11 / 12, "feet"),
  26597. weight: math.unit(30, "lb"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/weatley/front.svg",
  26601. bottom: 10.7 / 414,
  26602. extra: 403.5 / 362
  26603. }
  26604. },
  26605. back: {
  26606. height: math.unit(2 + 11 / 12, "feet"),
  26607. weight: math.unit(30, "lb"),
  26608. name: "Back",
  26609. image: {
  26610. source: "./media/characters/weatley/back.svg",
  26611. bottom: 10.7 / 414,
  26612. extra: 403.5 / 362
  26613. }
  26614. },
  26615. },
  26616. [
  26617. {
  26618. name: "Normal",
  26619. height: math.unit(2 + 11 / 12, "feet"),
  26620. default: true
  26621. },
  26622. ]
  26623. ))
  26624. characterMakers.push(() => makeCharacter(
  26625. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26626. {
  26627. front: {
  26628. height: math.unit(5 + 2 / 12, "feet"),
  26629. weight: math.unit(50, "kg"),
  26630. name: "Front",
  26631. image: {
  26632. source: "./media/characters/mercury-crescent/front.svg",
  26633. extra: 1088 / 1033,
  26634. bottom: 18.9 / 1109
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Normal",
  26641. height: math.unit(5 + 2 / 12, "feet"),
  26642. default: true
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26648. {
  26649. front: {
  26650. height: math.unit(2, "feet"),
  26651. weight: math.unit(15, "kg"),
  26652. name: "Front",
  26653. image: {
  26654. source: "./media/characters/diamond-jones/front.svg",
  26655. extra: 727/723,
  26656. bottom: 46/773
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(2, "feet"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(3, "feet"),
  26673. weight: math.unit(30, "kg"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/sweet-bit/front.svg",
  26677. extra: 675 / 567,
  26678. bottom: 27.7 / 703
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(3, "feet"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26692. {
  26693. side: {
  26694. height: math.unit(9.178, "feet"),
  26695. weight: math.unit(500, "lb"),
  26696. name: "Side",
  26697. image: {
  26698. source: "./media/characters/umbrazen/side.svg",
  26699. extra: 1730 / 1473,
  26700. bottom: 34.6 / 1765
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(9.178, "feet"),
  26708. default: true
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(10, "feet"),
  26717. weight: math.unit(750, "lb"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/arlist/front.svg",
  26721. extra: 961 / 778,
  26722. bottom: 6.2 / 986
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(10, "feet"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(5 + 1 / 12, "feet"),
  26739. weight: math.unit(110, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/aradel/front.svg",
  26743. extra: 324 / 303,
  26744. bottom: 3.6 / 329.4
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(5 + 1 / 12, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26758. {
  26759. dressed: {
  26760. height: math.unit(3 + 8 / 12, "feet"),
  26761. weight: math.unit(50, "lb"),
  26762. name: "Dressed",
  26763. image: {
  26764. source: "./media/characters/serryn/dressed.svg",
  26765. extra: 1792 / 1656,
  26766. bottom: 43.5 / 1840
  26767. }
  26768. },
  26769. nude: {
  26770. height: math.unit(3 + 8 / 12, "feet"),
  26771. weight: math.unit(50, "lb"),
  26772. name: "Nude",
  26773. image: {
  26774. source: "./media/characters/serryn/nude.svg",
  26775. extra: 1792 / 1656,
  26776. bottom: 43.5 / 1840
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Normal",
  26783. height: math.unit(3 + 8 / 12, "feet"),
  26784. default: true
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(7 + 10 / 12, "feet"),
  26793. weight: math.unit(255, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/xavier-thyme/front.svg",
  26797. extra: 3733 / 3642,
  26798. bottom: 131 / 3869
  26799. }
  26800. },
  26801. frontRaven: {
  26802. height: math.unit(7 + 10 / 12, "feet"),
  26803. weight: math.unit(255, "lb"),
  26804. name: "Front (Raven)",
  26805. image: {
  26806. source: "./media/characters/xavier-thyme/front-raven.svg",
  26807. extra: 4385 / 3642,
  26808. bottom: 131 / 4517
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(7 + 10 / 12, "feet"),
  26816. default: true
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26822. {
  26823. front: {
  26824. height: math.unit(1.6, "m"),
  26825. weight: math.unit(50, "kg"),
  26826. name: "Front",
  26827. image: {
  26828. source: "./media/characters/kiki/front.svg",
  26829. extra: 4682 / 3610,
  26830. bottom: 115 / 4777
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Normal",
  26837. height: math.unit(1.6, "meters"),
  26838. default: true
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26844. {
  26845. front: {
  26846. height: math.unit(50, "m"),
  26847. weight: math.unit(500, "tonnes"),
  26848. name: "Front",
  26849. image: {
  26850. source: "./media/characters/ryoko/front.svg",
  26851. extra: 4632 / 3926,
  26852. bottom: 193 / 4823
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(50, "meters"),
  26860. default: true
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26866. {
  26867. front: {
  26868. height: math.unit(30, "m"),
  26869. weight: math.unit(22, "tonnes"),
  26870. name: "Front",
  26871. image: {
  26872. source: "./media/characters/elio/front.svg",
  26873. extra: 4582 / 3720,
  26874. bottom: 236 / 4828
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(30, "meters"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(6 + 3 / 12, "feet"),
  26891. weight: math.unit(120, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/azura/front.svg",
  26895. extra: 1149 / 1135,
  26896. bottom: 45 / 1194
  26897. }
  26898. },
  26899. frontClothed: {
  26900. height: math.unit(6 + 3 / 12, "feet"),
  26901. weight: math.unit(120, "lb"),
  26902. name: "Front (Clothed)",
  26903. image: {
  26904. source: "./media/characters/azura/front-clothed.svg",
  26905. extra: 1149 / 1135,
  26906. bottom: 45 / 1194
  26907. }
  26908. },
  26909. },
  26910. [
  26911. {
  26912. name: "Normal",
  26913. height: math.unit(6 + 3 / 12, "feet"),
  26914. default: true
  26915. },
  26916. {
  26917. name: "Macro",
  26918. height: math.unit(20 + 6 / 12, "feet")
  26919. },
  26920. {
  26921. name: "Megamacro",
  26922. height: math.unit(12, "miles")
  26923. },
  26924. {
  26925. name: "Gigamacro",
  26926. height: math.unit(10000, "miles")
  26927. },
  26928. {
  26929. name: "Teramacro",
  26930. height: math.unit(900000, "miles")
  26931. },
  26932. ]
  26933. ))
  26934. characterMakers.push(() => makeCharacter(
  26935. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26936. {
  26937. front: {
  26938. height: math.unit(12, "feet"),
  26939. weight: math.unit(1, "ton"),
  26940. capacity: math.unit(660000, "gallons"),
  26941. name: "Front",
  26942. image: {
  26943. source: "./media/characters/zeus/front.svg",
  26944. extra: 5005 / 4717,
  26945. bottom: 363 / 5388
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(12, "feet")
  26953. },
  26954. {
  26955. name: "Preferred Size",
  26956. height: math.unit(0.5, "miles"),
  26957. default: true
  26958. },
  26959. {
  26960. name: "Giga Horse",
  26961. height: math.unit(300, "miles")
  26962. },
  26963. {
  26964. name: "Riding Planets",
  26965. height: math.unit(30, "megameters")
  26966. },
  26967. {
  26968. name: "Cosmic Giant",
  26969. height: math.unit(3, "zettameters")
  26970. },
  26971. {
  26972. name: "Breeding God",
  26973. height: math.unit(9.92e22, "yottameters")
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26979. {
  26980. side: {
  26981. height: math.unit(9, "feet"),
  26982. weight: math.unit(1500, "kg"),
  26983. name: "Side",
  26984. image: {
  26985. source: "./media/characters/fang/side.svg",
  26986. extra: 924 / 866,
  26987. bottom: 47.5 / 972.3
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(9, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "Macro",
  26999. height: math.unit(75 + 6 / 12, "feet")
  27000. },
  27001. {
  27002. name: "Teramacro",
  27003. height: math.unit(50000, "miles")
  27004. },
  27005. ]
  27006. ))
  27007. characterMakers.push(() => makeCharacter(
  27008. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27009. {
  27010. front: {
  27011. height: math.unit(10, "feet"),
  27012. weight: math.unit(2, "tons"),
  27013. name: "Front",
  27014. image: {
  27015. source: "./media/characters/rekhit/front.svg",
  27016. extra: 2796 / 2590,
  27017. bottom: 225 / 3022
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Normal",
  27024. height: math.unit(10, "feet"),
  27025. default: true
  27026. },
  27027. {
  27028. name: "Macro",
  27029. height: math.unit(500, "feet")
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27035. {
  27036. front: {
  27037. height: math.unit(7 + 6.451 / 12, "feet"),
  27038. weight: math.unit(310, "lb"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/dahlia-verrick/front.svg",
  27042. extra: 1488 / 1365,
  27043. bottom: 6.2 / 1495
  27044. }
  27045. },
  27046. back: {
  27047. height: math.unit(7 + 6.451 / 12, "feet"),
  27048. weight: math.unit(310, "lb"),
  27049. name: "Back",
  27050. image: {
  27051. source: "./media/characters/dahlia-verrick/back.svg",
  27052. extra: 1472 / 1351,
  27053. bottom: 5.28 / 1477
  27054. }
  27055. },
  27056. frontBusiness: {
  27057. height: math.unit(7 + 6.451 / 12, "feet"),
  27058. weight: math.unit(200, "lb"),
  27059. name: "Front (Business)",
  27060. image: {
  27061. source: "./media/characters/dahlia-verrick/front-business.svg",
  27062. extra: 1478 / 1381,
  27063. bottom: 5.5 / 1484
  27064. }
  27065. },
  27066. frontCasual: {
  27067. height: math.unit(7 + 6.451 / 12, "feet"),
  27068. weight: math.unit(200, "lb"),
  27069. name: "Front (Casual)",
  27070. image: {
  27071. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27072. extra: 1478 / 1381,
  27073. bottom: 5.5 / 1484
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Travel-Sized",
  27080. height: math.unit(7.45, "inches")
  27081. },
  27082. {
  27083. name: "Normal",
  27084. height: math.unit(7 + 6.451 / 12, "feet"),
  27085. default: true
  27086. },
  27087. {
  27088. name: "Hitting the Town",
  27089. height: math.unit(37 + 8 / 12, "feet")
  27090. },
  27091. {
  27092. name: "Stomp in the Suburbs",
  27093. height: math.unit(964 + 9.728 / 12, "feet")
  27094. },
  27095. {
  27096. name: "Sit on the City",
  27097. height: math.unit(61747 + 10.592 / 12, "feet")
  27098. },
  27099. {
  27100. name: "Glomp the Globe",
  27101. height: math.unit(252919327 + 4.832 / 12, "feet")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27107. {
  27108. front: {
  27109. height: math.unit(6 + 4 / 12, "feet"),
  27110. weight: math.unit(320, "lb"),
  27111. name: "Front",
  27112. image: {
  27113. source: "./media/characters/balina-mahigan/front.svg",
  27114. extra: 447 / 428,
  27115. bottom: 18 / 466
  27116. }
  27117. },
  27118. back: {
  27119. height: math.unit(6 + 4 / 12, "feet"),
  27120. weight: math.unit(320, "lb"),
  27121. name: "Back",
  27122. image: {
  27123. source: "./media/characters/balina-mahigan/back.svg",
  27124. extra: 445 / 428,
  27125. bottom: 4.07 / 448
  27126. }
  27127. },
  27128. arm: {
  27129. height: math.unit(1.88, "feet"),
  27130. name: "Arm",
  27131. image: {
  27132. source: "./media/characters/balina-mahigan/arm.svg"
  27133. }
  27134. },
  27135. backPort: {
  27136. height: math.unit(0.685, "feet"),
  27137. name: "Back Port",
  27138. image: {
  27139. source: "./media/characters/balina-mahigan/back-port.svg"
  27140. }
  27141. },
  27142. hoofpaw: {
  27143. height: math.unit(1.41, "feet"),
  27144. name: "Hoofpaw",
  27145. image: {
  27146. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27147. }
  27148. },
  27149. leftHandBack: {
  27150. height: math.unit(0.938, "feet"),
  27151. name: "Left Hand (Back)",
  27152. image: {
  27153. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27154. }
  27155. },
  27156. leftHandFront: {
  27157. height: math.unit(0.938, "feet"),
  27158. name: "Left Hand (Front)",
  27159. image: {
  27160. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27161. }
  27162. },
  27163. rightHandBack: {
  27164. height: math.unit(0.95, "feet"),
  27165. name: "Right Hand (Back)",
  27166. image: {
  27167. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27168. }
  27169. },
  27170. rightHandFront: {
  27171. height: math.unit(0.95, "feet"),
  27172. name: "Right Hand (Front)",
  27173. image: {
  27174. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(6 + 4 / 12, "feet"),
  27182. default: true
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(6, "feet"),
  27191. weight: math.unit(320, "lb"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/balina-mejeri/front.svg",
  27195. extra: 517 / 488,
  27196. bottom: 44.2 / 561
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(6 + 4 / 12, "feet")
  27204. },
  27205. {
  27206. name: "Business",
  27207. height: math.unit(155, "feet"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27214. {
  27215. kneeling: {
  27216. height: math.unit(6 + 4 / 12, "feet"),
  27217. weight: math.unit(300 * 20, "lb"),
  27218. name: "Kneeling",
  27219. image: {
  27220. source: "./media/characters/balbarian/kneeling.svg",
  27221. extra: 922 / 862,
  27222. bottom: 42.4 / 965
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(6 + 4 / 12, "feet")
  27230. },
  27231. {
  27232. name: "Treasured",
  27233. height: math.unit(18 + 9 / 12, "feet"),
  27234. default: true
  27235. },
  27236. {
  27237. name: "Macro",
  27238. height: math.unit(900, "feet")
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(6 + 4 / 12, "feet"),
  27247. weight: math.unit(325, "lb"),
  27248. name: "Front",
  27249. image: {
  27250. source: "./media/characters/balina-amarini/front.svg",
  27251. extra: 415 / 403,
  27252. bottom: 19 / 433.4
  27253. }
  27254. },
  27255. back: {
  27256. height: math.unit(6 + 4 / 12, "feet"),
  27257. weight: math.unit(325, "lb"),
  27258. name: "Back",
  27259. image: {
  27260. source: "./media/characters/balina-amarini/back.svg",
  27261. extra: 415 / 403,
  27262. bottom: 13.5 / 432
  27263. }
  27264. },
  27265. overdrive: {
  27266. height: math.unit(6 + 4 / 12, "feet"),
  27267. weight: math.unit(400, "lb"),
  27268. name: "Overdrive",
  27269. image: {
  27270. source: "./media/characters/balina-amarini/overdrive.svg",
  27271. extra: 269 / 259,
  27272. bottom: 12 / 282
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Boom",
  27279. height: math.unit(9 + 10 / 12, "feet"),
  27280. default: true
  27281. },
  27282. {
  27283. name: "Macro",
  27284. height: math.unit(280, "feet")
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27290. {
  27291. goddess: {
  27292. height: math.unit(600, "feet"),
  27293. weight: math.unit(2000000, "tons"),
  27294. name: "Goddess",
  27295. image: {
  27296. source: "./media/characters/lady-kubwa/goddess.svg",
  27297. extra: 1240.5 / 1223,
  27298. bottom: 22 / 1263
  27299. }
  27300. },
  27301. goddesser: {
  27302. height: math.unit(900, "feet"),
  27303. weight: math.unit(20000000, "lb"),
  27304. name: "Goddess-er",
  27305. image: {
  27306. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27307. extra: 899 / 888,
  27308. bottom: 12.6 / 912
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Macro",
  27315. height: math.unit(600, "feet"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Megamacro",
  27320. height: math.unit(250, "miles")
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27326. {
  27327. front: {
  27328. height: math.unit(7 + 7 / 12, "feet"),
  27329. weight: math.unit(250, "lb"),
  27330. name: "Front",
  27331. image: {
  27332. source: "./media/characters/tala-grovehorn/front.svg",
  27333. extra: 2636 / 2525,
  27334. bottom: 147 / 2781
  27335. }
  27336. },
  27337. back: {
  27338. height: math.unit(7 + 7 / 12, "feet"),
  27339. weight: math.unit(250, "lb"),
  27340. name: "Back",
  27341. image: {
  27342. source: "./media/characters/tala-grovehorn/back.svg",
  27343. extra: 2635 / 2539,
  27344. bottom: 100 / 2732.8
  27345. }
  27346. },
  27347. mouth: {
  27348. height: math.unit(1.15, "feet"),
  27349. name: "Mouth",
  27350. image: {
  27351. source: "./media/characters/tala-grovehorn/mouth.svg"
  27352. }
  27353. },
  27354. dick: {
  27355. height: math.unit(2.36, "feet"),
  27356. name: "Dick",
  27357. image: {
  27358. source: "./media/characters/tala-grovehorn/dick.svg"
  27359. }
  27360. },
  27361. slit: {
  27362. height: math.unit(0.61, "feet"),
  27363. name: "Slit",
  27364. image: {
  27365. source: "./media/characters/tala-grovehorn/slit.svg"
  27366. }
  27367. },
  27368. },
  27369. [
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(7 + 7 / 12, "feet"),
  27377. weight: math.unit(225, "lb"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/epona/front.svg",
  27381. extra: 2445 / 2290,
  27382. bottom: 251 / 2696
  27383. }
  27384. },
  27385. back: {
  27386. height: math.unit(7 + 7 / 12, "feet"),
  27387. weight: math.unit(225, "lb"),
  27388. name: "Back",
  27389. image: {
  27390. source: "./media/characters/epona/back.svg",
  27391. extra: 2546 / 2408,
  27392. bottom: 44 / 2589
  27393. }
  27394. },
  27395. genitals: {
  27396. height: math.unit(1.5, "feet"),
  27397. name: "Genitals",
  27398. image: {
  27399. source: "./media/characters/epona/genitals.svg"
  27400. }
  27401. },
  27402. },
  27403. [
  27404. {
  27405. name: "Normal",
  27406. height: math.unit(7 + 7 / 12, "feet"),
  27407. default: true
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(7, "feet"),
  27416. weight: math.unit(518, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/avia-bloodbourn/front.svg",
  27420. extra: 1466 / 1350,
  27421. bottom: 65 / 1527
  27422. }
  27423. },
  27424. },
  27425. [
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(9.35, "feet"),
  27433. weight: math.unit(600, "lb"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/amera/front.svg",
  27437. extra: 891 / 818,
  27438. bottom: 30 / 922.7
  27439. }
  27440. },
  27441. back: {
  27442. height: math.unit(9.35, "feet"),
  27443. weight: math.unit(600, "lb"),
  27444. name: "Back",
  27445. image: {
  27446. source: "./media/characters/amera/back.svg",
  27447. extra: 876 / 824,
  27448. bottom: 6.8 / 884
  27449. }
  27450. },
  27451. dick: {
  27452. height: math.unit(2.14, "feet"),
  27453. name: "Dick",
  27454. image: {
  27455. source: "./media/characters/amera/dick.svg"
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Normal",
  27462. height: math.unit(9.35, "feet"),
  27463. default: true
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27469. {
  27470. kneeling: {
  27471. height: math.unit(3 + 4 / 12, "feet"),
  27472. weight: math.unit(90, "lb"),
  27473. name: "Kneeling",
  27474. image: {
  27475. source: "./media/characters/rosewen/kneeling.svg",
  27476. extra: 1835 / 1571,
  27477. bottom: 27.7 / 1862
  27478. }
  27479. },
  27480. },
  27481. [
  27482. {
  27483. name: "Normal",
  27484. height: math.unit(3 + 4 / 12, "feet"),
  27485. default: true
  27486. },
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27491. {
  27492. front: {
  27493. height: math.unit(5 + 10 / 12, "feet"),
  27494. weight: math.unit(200, "lb"),
  27495. name: "Front",
  27496. image: {
  27497. source: "./media/characters/sabah/front.svg",
  27498. extra: 849 / 763,
  27499. bottom: 33.9 / 881
  27500. }
  27501. },
  27502. },
  27503. [
  27504. {
  27505. name: "Normal",
  27506. height: math.unit(5 + 10 / 12, "feet"),
  27507. default: true
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27513. {
  27514. front: {
  27515. height: math.unit(3 + 5 / 12, "feet"),
  27516. weight: math.unit(40, "kg"),
  27517. name: "Front",
  27518. image: {
  27519. source: "./media/characters/purple-flame/front.svg",
  27520. extra: 1577 / 1412,
  27521. bottom: 97 / 1694
  27522. }
  27523. },
  27524. frontDressed: {
  27525. height: math.unit(3 + 5 / 12, "feet"),
  27526. weight: math.unit(40, "kg"),
  27527. name: "Front (Dressed)",
  27528. image: {
  27529. source: "./media/characters/purple-flame/front-dressed.svg",
  27530. extra: 1577 / 1412,
  27531. bottom: 97 / 1694
  27532. }
  27533. },
  27534. headphones: {
  27535. height: math.unit(0.85, "feet"),
  27536. name: "Headphones",
  27537. image: {
  27538. source: "./media/characters/purple-flame/headphones.svg"
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Really Small",
  27545. height: math.unit(5, "cm")
  27546. },
  27547. {
  27548. name: "Micro",
  27549. height: math.unit(1 + 5 / 12, "feet")
  27550. },
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(3 + 5 / 12, "feet"),
  27554. default: true
  27555. },
  27556. {
  27557. name: "Minimacro",
  27558. height: math.unit(125, "feet")
  27559. },
  27560. {
  27561. name: "Macro",
  27562. height: math.unit(0.5, "miles")
  27563. },
  27564. {
  27565. name: "Megamacro",
  27566. height: math.unit(50, "miles")
  27567. },
  27568. {
  27569. name: "Gigantic",
  27570. height: math.unit(750, "miles")
  27571. },
  27572. {
  27573. name: "Planetary",
  27574. height: math.unit(15000, "miles")
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27580. {
  27581. front: {
  27582. height: math.unit(14, "feet"),
  27583. weight: math.unit(959, "lb"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/arsenal/front.svg",
  27587. extra: 2357 / 2157,
  27588. bottom: 93 / 2458
  27589. }
  27590. },
  27591. },
  27592. [
  27593. {
  27594. name: "Normal",
  27595. height: math.unit(14, "feet"),
  27596. default: true
  27597. },
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27602. {
  27603. front: {
  27604. height: math.unit(6, "feet"),
  27605. weight: math.unit(150, "lb"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/adira/front.svg",
  27609. extra: 1078 / 1029,
  27610. bottom: 87 / 1166
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Micro",
  27617. height: math.unit(4, "inches"),
  27618. default: true
  27619. },
  27620. {
  27621. name: "Macro",
  27622. height: math.unit(50, "feet")
  27623. },
  27624. ]
  27625. ))
  27626. characterMakers.push(() => makeCharacter(
  27627. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27628. {
  27629. front: {
  27630. height: math.unit(16, "feet"),
  27631. weight: math.unit(1000, "lb"),
  27632. name: "Front",
  27633. image: {
  27634. source: "./media/characters/grim/front.svg",
  27635. extra: 622 / 614,
  27636. bottom: 18.1 / 642
  27637. }
  27638. },
  27639. back: {
  27640. height: math.unit(16, "feet"),
  27641. weight: math.unit(1000, "lb"),
  27642. name: "Back",
  27643. image: {
  27644. source: "./media/characters/grim/back.svg",
  27645. extra: 610.6 / 602,
  27646. bottom: 40.8 / 652
  27647. }
  27648. },
  27649. hunched: {
  27650. height: math.unit(9.75, "feet"),
  27651. weight: math.unit(1000, "lb"),
  27652. name: "Hunched",
  27653. image: {
  27654. source: "./media/characters/grim/hunched.svg",
  27655. extra: 304 / 297,
  27656. bottom: 35.4 / 394
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(16, "feet"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(2.3, "meters"),
  27673. weight: math.unit(300, "lb"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/sinja/front-sfw.svg",
  27677. extra: 1393 / 1294,
  27678. bottom: 70 / 1463
  27679. }
  27680. },
  27681. frontNsfw: {
  27682. height: math.unit(2.3, "meters"),
  27683. weight: math.unit(300, "lb"),
  27684. name: "Front (NSFW)",
  27685. image: {
  27686. source: "./media/characters/sinja/front-nsfw.svg",
  27687. extra: 1393 / 1294,
  27688. bottom: 70 / 1463
  27689. }
  27690. },
  27691. back: {
  27692. height: math.unit(2.3, "meters"),
  27693. weight: math.unit(300, "lb"),
  27694. name: "Back",
  27695. image: {
  27696. source: "./media/characters/sinja/back.svg",
  27697. extra: 1393 / 1294,
  27698. bottom: 70 / 1463
  27699. }
  27700. },
  27701. head: {
  27702. height: math.unit(1.771, "feet"),
  27703. name: "Head",
  27704. image: {
  27705. source: "./media/characters/sinja/head.svg"
  27706. }
  27707. },
  27708. slit: {
  27709. height: math.unit(0.8, "feet"),
  27710. name: "Slit",
  27711. image: {
  27712. source: "./media/characters/sinja/slit.svg"
  27713. }
  27714. },
  27715. },
  27716. [
  27717. {
  27718. name: "Normal",
  27719. height: math.unit(2.3, "meters")
  27720. },
  27721. {
  27722. name: "Macro",
  27723. height: math.unit(91, "meters"),
  27724. default: true
  27725. },
  27726. {
  27727. name: "Megamacro",
  27728. height: math.unit(91440, "meters")
  27729. },
  27730. {
  27731. name: "Gigamacro",
  27732. height: math.unit(60960000, "meters")
  27733. },
  27734. {
  27735. name: "Teramacro",
  27736. height: math.unit(9144000000, "meters")
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(1.7, "meters"),
  27745. weight: math.unit(130, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/kyu/front.svg",
  27749. extra: 415 / 395,
  27750. bottom: 5 / 420
  27751. }
  27752. },
  27753. head: {
  27754. height: math.unit(1.75, "feet"),
  27755. name: "Head",
  27756. image: {
  27757. source: "./media/characters/kyu/head.svg"
  27758. }
  27759. },
  27760. foot: {
  27761. height: math.unit(0.81, "feet"),
  27762. name: "Foot",
  27763. image: {
  27764. source: "./media/characters/kyu/foot.svg"
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Normal",
  27771. height: math.unit(1.7, "meters")
  27772. },
  27773. {
  27774. name: "Macro",
  27775. height: math.unit(131, "feet"),
  27776. default: true
  27777. },
  27778. {
  27779. name: "Megamacro",
  27780. height: math.unit(91440, "meters")
  27781. },
  27782. {
  27783. name: "Gigamacro",
  27784. height: math.unit(60960000, "meters")
  27785. },
  27786. {
  27787. name: "Teramacro",
  27788. height: math.unit(9144000000, "meters")
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(7 + 1 / 12, "feet"),
  27797. weight: math.unit(250, "lb"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/joey/front.svg",
  27801. extra: 1791 / 1537,
  27802. bottom: 28 / 1816
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Micro",
  27809. height: math.unit(3, "inches")
  27810. },
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(7 + 1 / 12, "feet"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27820. {
  27821. front: {
  27822. height: math.unit(165, "cm"),
  27823. weight: math.unit(140, "lb"),
  27824. name: "Front",
  27825. image: {
  27826. source: "./media/characters/sam-evans/front.svg",
  27827. extra: 3417 / 3230,
  27828. bottom: 41.3 / 3417
  27829. }
  27830. },
  27831. frontSixTails: {
  27832. height: math.unit(165, "cm"),
  27833. weight: math.unit(140, "lb"),
  27834. name: "Front-six-tails",
  27835. image: {
  27836. source: "./media/characters/sam-evans/front-six-tails.svg",
  27837. extra: 3417 / 3230,
  27838. bottom: 41.3 / 3417
  27839. }
  27840. },
  27841. back: {
  27842. height: math.unit(165, "cm"),
  27843. weight: math.unit(140, "lb"),
  27844. name: "Back",
  27845. image: {
  27846. source: "./media/characters/sam-evans/back.svg",
  27847. extra: 3227 / 3032,
  27848. bottom: 6.8 / 3234
  27849. }
  27850. },
  27851. face: {
  27852. height: math.unit(0.68, "feet"),
  27853. name: "Face",
  27854. image: {
  27855. source: "./media/characters/sam-evans/face.svg"
  27856. }
  27857. },
  27858. },
  27859. [
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(165, "cm"),
  27863. default: true
  27864. },
  27865. {
  27866. name: "Macro",
  27867. height: math.unit(100, "meters")
  27868. },
  27869. {
  27870. name: "Macro+",
  27871. height: math.unit(800, "meters")
  27872. },
  27873. {
  27874. name: "Macro++",
  27875. height: math.unit(3, "km")
  27876. },
  27877. {
  27878. name: "Macro+++",
  27879. height: math.unit(30, "km")
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(10, "feet"),
  27888. weight: math.unit(750, "lb"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/juliet-a/front.svg",
  27892. extra: 1766 / 1720,
  27893. bottom: 43 / 1809
  27894. }
  27895. },
  27896. back: {
  27897. height: math.unit(10, "feet"),
  27898. weight: math.unit(750, "lb"),
  27899. name: "Back",
  27900. image: {
  27901. source: "./media/characters/juliet-a/back.svg",
  27902. extra: 1781 / 1734,
  27903. bottom: 35 / 1810,
  27904. }
  27905. },
  27906. },
  27907. [
  27908. {
  27909. name: "Normal",
  27910. height: math.unit(10, "feet"),
  27911. default: true
  27912. },
  27913. {
  27914. name: "Dragon Form",
  27915. height: math.unit(250, "feet")
  27916. },
  27917. {
  27918. name: "Macro",
  27919. height: math.unit(1000, "feet")
  27920. },
  27921. {
  27922. name: "Megamacro",
  27923. height: math.unit(10000, "feet")
  27924. }
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27929. {
  27930. regular: {
  27931. height: math.unit(7 + 3 / 12, "feet"),
  27932. weight: math.unit(260, "lb"),
  27933. name: "Regular",
  27934. image: {
  27935. source: "./media/characters/wild/regular.svg",
  27936. extra: 97.45 / 92,
  27937. bottom: 6.8 / 104.3
  27938. }
  27939. },
  27940. biggums: {
  27941. height: math.unit(8 + 6 / 12, "feet"),
  27942. weight: math.unit(425, "lb"),
  27943. name: "Biggums",
  27944. image: {
  27945. source: "./media/characters/wild/biggums.svg",
  27946. extra: 97.45 / 92,
  27947. bottom: 7.5 / 132.34
  27948. }
  27949. },
  27950. mawRegular: {
  27951. height: math.unit(1.24, "feet"),
  27952. name: "Maw (Regular)",
  27953. image: {
  27954. source: "./media/characters/wild/maw.svg"
  27955. }
  27956. },
  27957. mawBiggums: {
  27958. height: math.unit(1.47, "feet"),
  27959. name: "Maw (Biggums)",
  27960. image: {
  27961. source: "./media/characters/wild/maw.svg"
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(7 + 3 / 12, "feet"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27975. {
  27976. front: {
  27977. height: math.unit(2.5, "meters"),
  27978. weight: math.unit(200, "kg"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/vidar/front.svg",
  27982. extra: 2994 / 2795,
  27983. bottom: 56 / 3061
  27984. }
  27985. },
  27986. back: {
  27987. height: math.unit(2.5, "meters"),
  27988. weight: math.unit(200, "kg"),
  27989. name: "Back",
  27990. image: {
  27991. source: "./media/characters/vidar/back.svg",
  27992. extra: 3131 / 2928,
  27993. bottom: 13.5 / 3141.5
  27994. }
  27995. },
  27996. feral: {
  27997. height: math.unit(2.5, "meters"),
  27998. weight: math.unit(2000, "kg"),
  27999. name: "Feral",
  28000. image: {
  28001. source: "./media/characters/vidar/feral.svg",
  28002. extra: 2790 / 1765,
  28003. bottom: 6 / 2796
  28004. }
  28005. },
  28006. },
  28007. [
  28008. {
  28009. name: "Normal",
  28010. height: math.unit(2.5, "meters"),
  28011. default: true
  28012. },
  28013. {
  28014. name: "Macro",
  28015. height: math.unit(100, "meters")
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(5 + 9 / 12, "feet"),
  28024. weight: math.unit(120, "lb"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/ash/front.svg",
  28028. extra: 2189 / 1961,
  28029. bottom: 5.2 / 2194
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(5 + 9 / 12, "feet"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28043. {
  28044. front: {
  28045. height: math.unit(9, "feet"),
  28046. weight: math.unit(10000, "lb"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/gygabite/front.svg",
  28050. bottom: 31.7 / 537.8,
  28051. extra: 505 / 370
  28052. }
  28053. },
  28054. },
  28055. [
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(9, "feet"),
  28059. default: true
  28060. },
  28061. ]
  28062. ))
  28063. characterMakers.push(() => makeCharacter(
  28064. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28065. {
  28066. front: {
  28067. height: math.unit(12, "feet"),
  28068. weight: math.unit(35000, "lb"),
  28069. name: "Front",
  28070. image: {
  28071. source: "./media/characters/p0tat0/front.svg",
  28072. extra: 1065 / 921,
  28073. bottom: 55.7 / 1121.25
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(12, "feet"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28087. {
  28088. side: {
  28089. height: math.unit(6.5, "feet"),
  28090. weight: math.unit(800, "lb"),
  28091. name: "Side",
  28092. image: {
  28093. source: "./media/characters/dusk/side.svg",
  28094. extra: 615 / 373,
  28095. bottom: 53 / 664
  28096. }
  28097. },
  28098. sitting: {
  28099. height: math.unit(7, "feet"),
  28100. weight: math.unit(800, "lb"),
  28101. name: "Sitting",
  28102. image: {
  28103. source: "./media/characters/dusk/sitting.svg",
  28104. extra: 753 / 425,
  28105. bottom: 33 / 774
  28106. }
  28107. },
  28108. head: {
  28109. height: math.unit(6.1, "feet"),
  28110. name: "Head",
  28111. image: {
  28112. source: "./media/characters/dusk/head.svg"
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(7, "feet"),
  28120. default: true
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(15, "feet"),
  28129. weight: math.unit(7000, "lb"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/jay-direwolf/front.svg",
  28133. extra: 1810 / 1732,
  28134. bottom: 66 / 1892
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Normal",
  28141. height: math.unit(15, "feet"),
  28142. default: true
  28143. },
  28144. ]
  28145. ))
  28146. characterMakers.push(() => makeCharacter(
  28147. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28148. {
  28149. front: {
  28150. height: math.unit(4 + 9 / 12, "feet"),
  28151. weight: math.unit(130, "lb"),
  28152. name: "Front",
  28153. image: {
  28154. source: "./media/characters/anchovie/front.svg",
  28155. extra: 382 / 350,
  28156. bottom: 25 / 409
  28157. }
  28158. },
  28159. back: {
  28160. height: math.unit(4 + 9 / 12, "feet"),
  28161. weight: math.unit(130, "lb"),
  28162. name: "Back",
  28163. image: {
  28164. source: "./media/characters/anchovie/back.svg",
  28165. extra: 385 / 352,
  28166. bottom: 16.6 / 402
  28167. }
  28168. },
  28169. frontDressed: {
  28170. height: math.unit(4 + 9 / 12, "feet"),
  28171. weight: math.unit(130, "lb"),
  28172. name: "Front (Dressed)",
  28173. image: {
  28174. source: "./media/characters/anchovie/front-dressed.svg",
  28175. extra: 382 / 350,
  28176. bottom: 25 / 409
  28177. }
  28178. },
  28179. backDressed: {
  28180. height: math.unit(4 + 9 / 12, "feet"),
  28181. weight: math.unit(130, "lb"),
  28182. name: "Back (Dressed)",
  28183. image: {
  28184. source: "./media/characters/anchovie/back-dressed.svg",
  28185. extra: 385 / 352,
  28186. bottom: 16.6 / 402
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Micro",
  28193. height: math.unit(6.4, "inches")
  28194. },
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(4 + 9 / 12, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(2, "meters"),
  28207. weight: math.unit(180, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/acidrenamon/front.svg",
  28211. extra: 987 / 890,
  28212. bottom: 22.8 / 1009
  28213. }
  28214. },
  28215. back: {
  28216. height: math.unit(2, "meters"),
  28217. weight: math.unit(180, "lb"),
  28218. name: "Back",
  28219. image: {
  28220. source: "./media/characters/acidrenamon/back.svg",
  28221. extra: 983 / 891,
  28222. bottom: 8.4 / 992
  28223. }
  28224. },
  28225. head: {
  28226. height: math.unit(1.92, "feet"),
  28227. name: "Head",
  28228. image: {
  28229. source: "./media/characters/acidrenamon/head.svg"
  28230. }
  28231. },
  28232. rump: {
  28233. height: math.unit(1.72, "feet"),
  28234. name: "Rump",
  28235. image: {
  28236. source: "./media/characters/acidrenamon/rump.svg"
  28237. }
  28238. },
  28239. tail: {
  28240. height: math.unit(4.2, "feet"),
  28241. name: "Tail",
  28242. image: {
  28243. source: "./media/characters/acidrenamon/tail.svg"
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(2, "meters"),
  28251. default: true
  28252. },
  28253. {
  28254. name: "Minimacro",
  28255. height: math.unit(7, "meters")
  28256. },
  28257. {
  28258. name: "Macro",
  28259. height: math.unit(200, "meters")
  28260. },
  28261. {
  28262. name: "Gigamacro",
  28263. height: math.unit(0.2, "earths")
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28269. {
  28270. front: {
  28271. height: math.unit(152, "feet"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/kenzie-lee/front.svg",
  28275. extra: 1869/1774,
  28276. bottom: 128/1997
  28277. }
  28278. },
  28279. side: {
  28280. height: math.unit(86, "feet"),
  28281. name: "Side",
  28282. image: {
  28283. source: "./media/characters/kenzie-lee/side.svg",
  28284. extra: 930/815,
  28285. bottom: 177/1107
  28286. }
  28287. },
  28288. paw: {
  28289. height: math.unit(15, "feet"),
  28290. name: "Paw",
  28291. image: {
  28292. source: "./media/characters/kenzie-lee/paw.svg"
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Micro",
  28299. height: math.unit(1.5, "inches")
  28300. },
  28301. {
  28302. name: "Normal",
  28303. height: math.unit(152, "feet"),
  28304. default: true
  28305. },
  28306. {
  28307. name: "Megamacro",
  28308. height: math.unit(7, "miles")
  28309. },
  28310. {
  28311. name: "Gigamacro",
  28312. height: math.unit(8000, "miles")
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28318. {
  28319. side: {
  28320. height: math.unit(6, "feet"),
  28321. weight: math.unit(150, "lb"),
  28322. name: "Side",
  28323. image: {
  28324. source: "./media/characters/withers/side.svg",
  28325. extra: 1830 / 1728,
  28326. bottom: 96 / 1927
  28327. }
  28328. },
  28329. front: {
  28330. height: math.unit(6, "feet"),
  28331. weight: math.unit(150, "lb"),
  28332. name: "Front",
  28333. image: {
  28334. source: "./media/characters/withers/front.svg",
  28335. extra: 1514 / 1438,
  28336. bottom: 118 / 1632
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Macro",
  28343. height: math.unit(168, "feet"),
  28344. default: true
  28345. },
  28346. {
  28347. name: "Megamacro",
  28348. height: math.unit(15, "miles")
  28349. }
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(6 + 7 / 12, "feet"),
  28357. weight: math.unit(250, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/nemoskii/front.svg",
  28361. extra: 2270 / 1734,
  28362. bottom: 86 / 2354
  28363. }
  28364. },
  28365. back: {
  28366. height: math.unit(6 + 7 / 12, "feet"),
  28367. weight: math.unit(250, "lb"),
  28368. name: "Back",
  28369. image: {
  28370. source: "./media/characters/nemoskii/back.svg",
  28371. extra: 1845 / 1788,
  28372. bottom: 10.5 / 1852
  28373. }
  28374. },
  28375. head: {
  28376. height: math.unit(1.31, "feet"),
  28377. name: "Head",
  28378. image: {
  28379. source: "./media/characters/nemoskii/head.svg"
  28380. }
  28381. },
  28382. },
  28383. [
  28384. {
  28385. name: "Micro",
  28386. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28387. },
  28388. {
  28389. name: "Normal",
  28390. height: math.unit(6 + 7 / 12, "feet"),
  28391. default: true
  28392. },
  28393. {
  28394. name: "Macro",
  28395. height: math.unit((6 + 7 / 12) * 150, "feet")
  28396. },
  28397. {
  28398. name: "Macro+",
  28399. height: math.unit((6 + 7 / 12) * 500, "feet")
  28400. },
  28401. {
  28402. name: "Megamacro",
  28403. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28404. },
  28405. ]
  28406. ))
  28407. characterMakers.push(() => makeCharacter(
  28408. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28409. {
  28410. front: {
  28411. height: math.unit(1, "mile"),
  28412. weight: math.unit(265261.9, "lb"),
  28413. name: "Front",
  28414. image: {
  28415. source: "./media/characters/shui/front.svg",
  28416. extra: 1633 / 1564,
  28417. bottom: 91.5 / 1726
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Macro",
  28424. height: math.unit(1, "mile"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(12 + 6 / 12, "feet"),
  28434. weight: math.unit(1342, "lb"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/arokh-takakura/front.svg",
  28438. extra: 1089 / 1043,
  28439. bottom: 77.4 / 1176.7
  28440. }
  28441. },
  28442. back: {
  28443. height: math.unit(12 + 6 / 12, "feet"),
  28444. weight: math.unit(1342, "lb"),
  28445. name: "Back",
  28446. image: {
  28447. source: "./media/characters/arokh-takakura/back.svg",
  28448. extra: 1046 / 1019,
  28449. bottom: 102 / 1150
  28450. }
  28451. },
  28452. },
  28453. [
  28454. {
  28455. name: "Big",
  28456. height: math.unit(12 + 6 / 12, "feet"),
  28457. default: true
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(5 + 6 / 12, "feet"),
  28466. weight: math.unit(150, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/theo/front.svg",
  28470. extra: 1184 / 1131,
  28471. bottom: 7.4 / 1191
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Micro",
  28478. height: math.unit(5, "inches")
  28479. },
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(5 + 6 / 12, "feet"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(5 + 9 / 12, "feet"),
  28492. weight: math.unit(130, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/cecelia-swift/front.svg",
  28496. extra: 502 / 484,
  28497. bottom: 23 / 523
  28498. }
  28499. },
  28500. back: {
  28501. height: math.unit(5 + 9 / 12, "feet"),
  28502. weight: math.unit(130, "lb"),
  28503. name: "Back",
  28504. image: {
  28505. source: "./media/characters/cecelia-swift/back.svg",
  28506. extra: 499 / 485,
  28507. bottom: 12 / 511
  28508. }
  28509. },
  28510. head: {
  28511. height: math.unit(0.90, "feet"),
  28512. name: "Head",
  28513. image: {
  28514. source: "./media/characters/cecelia-swift/head.svg"
  28515. }
  28516. },
  28517. rump: {
  28518. height: math.unit(1.75, "feet"),
  28519. name: "Rump",
  28520. image: {
  28521. source: "./media/characters/cecelia-swift/rump.svg"
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Normal",
  28528. height: math.unit(5 + 9 / 12, "feet"),
  28529. default: true
  28530. },
  28531. {
  28532. name: "Big",
  28533. height: math.unit(50, "feet")
  28534. },
  28535. {
  28536. name: "Macro",
  28537. height: math.unit(100, "feet")
  28538. },
  28539. {
  28540. name: "Macro+",
  28541. height: math.unit(500, "feet")
  28542. },
  28543. {
  28544. name: "Macro++",
  28545. height: math.unit(1000, "feet")
  28546. },
  28547. ]
  28548. ))
  28549. characterMakers.push(() => makeCharacter(
  28550. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28551. {
  28552. front: {
  28553. height: math.unit(6, "feet"),
  28554. weight: math.unit(150, "lb"),
  28555. name: "Front",
  28556. image: {
  28557. source: "./media/characters/kaunan/front.svg",
  28558. extra: 2890 / 2523,
  28559. bottom: 49 / 2939
  28560. }
  28561. },
  28562. },
  28563. [
  28564. {
  28565. name: "Macro",
  28566. height: math.unit(150, "feet"),
  28567. default: true
  28568. },
  28569. ]
  28570. ))
  28571. characterMakers.push(() => makeCharacter(
  28572. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28573. {
  28574. front: {
  28575. height: math.unit(175, "cm"),
  28576. weight: math.unit(60, "kg"),
  28577. name: "Front",
  28578. image: {
  28579. source: "./media/characters/fei/front.svg",
  28580. extra: 1873/1723,
  28581. bottom: 53/1926
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Mortal",
  28588. height: math.unit(175, "cm")
  28589. },
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(3500, "m"),
  28593. default: true
  28594. },
  28595. {
  28596. name: "Stroll",
  28597. height: math.unit(17.5, "km")
  28598. },
  28599. {
  28600. name: "Showoff",
  28601. height: math.unit(175, "km")
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(7, "feet"),
  28610. weight: math.unit(1000, "kg"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/edrax/front.svg",
  28614. extra: 2838 / 2550,
  28615. bottom: 130 / 2968
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Small",
  28622. height: math.unit(7, "feet")
  28623. },
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(1500, "meters")
  28627. },
  28628. {
  28629. name: "Mega",
  28630. height: math.unit(12000000, "km"),
  28631. default: true
  28632. },
  28633. {
  28634. name: "Megamacro",
  28635. height: math.unit(10600000, "lightyears")
  28636. },
  28637. {
  28638. name: "Hypermacro",
  28639. height: math.unit(256, "yottameters")
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(10, "feet"),
  28648. weight: math.unit(750, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/clove/front.svg",
  28652. extra: 1918/1751,
  28653. bottom: 52/1970
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(10, "feet"),
  28658. weight: math.unit(750, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/clove/back.svg",
  28662. extra: 1912/1747,
  28663. bottom: 50/1962
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Normal",
  28670. height: math.unit(10, "feet"),
  28671. default: true
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28677. {
  28678. front: {
  28679. height: math.unit(4, "feet"),
  28680. weight: math.unit(50, "lb"),
  28681. name: "Front",
  28682. image: {
  28683. source: "./media/characters/alex-rabbit/front.svg",
  28684. extra: 507 / 458,
  28685. bottom: 18.5 / 527
  28686. }
  28687. },
  28688. back: {
  28689. height: math.unit(4, "feet"),
  28690. weight: math.unit(50, "lb"),
  28691. name: "Back",
  28692. image: {
  28693. source: "./media/characters/alex-rabbit/back.svg",
  28694. extra: 502 / 460,
  28695. bottom: 18.9 / 521
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Normal",
  28702. height: math.unit(4, "feet"),
  28703. default: true
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(1 + 3 / 12, "feet"),
  28712. weight: math.unit(80, "lb"),
  28713. name: "Front",
  28714. image: {
  28715. source: "./media/characters/zander-rose/front.svg",
  28716. extra: 916 / 797,
  28717. bottom: 17 / 933
  28718. }
  28719. },
  28720. back: {
  28721. height: math.unit(1 + 3 / 12, "feet"),
  28722. weight: math.unit(80, "lb"),
  28723. name: "Back",
  28724. image: {
  28725. source: "./media/characters/zander-rose/back.svg",
  28726. extra: 903 / 779,
  28727. bottom: 31 / 934
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Normal",
  28734. height: math.unit(1 + 3 / 12, "feet"),
  28735. default: true
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28741. {
  28742. anthro: {
  28743. height: math.unit(6, "feet"),
  28744. weight: math.unit(150, "lb"),
  28745. name: "Anthro",
  28746. image: {
  28747. source: "./media/characters/razz/anthro.svg",
  28748. extra: 1437 / 1343,
  28749. bottom: 48 / 1485
  28750. }
  28751. },
  28752. feral: {
  28753. height: math.unit(6, "feet"),
  28754. weight: math.unit(150, "lb"),
  28755. name: "Feral",
  28756. image: {
  28757. source: "./media/characters/razz/feral.svg",
  28758. extra: 2569 / 1385,
  28759. bottom: 95 / 2664
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Normal",
  28766. height: math.unit(6, "feet"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(9 + 4 / 12, "feet"),
  28776. weight: math.unit(500, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/morrigan/front.svg",
  28780. extra: 2707 / 2579,
  28781. bottom: 156 / 2863
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Normal",
  28788. height: math.unit(9 + 4 / 12, "feet"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(5, "stories"),
  28798. weight: math.unit(4000, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/jenene/front.svg",
  28802. extra: 1780 / 1710,
  28803. bottom: 57 / 1837
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(5, "stories"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28817. {
  28818. taurSfw: {
  28819. height: math.unit(10, "meters"),
  28820. weight: math.unit(17500, "kg"),
  28821. name: "Taur",
  28822. image: {
  28823. source: "./media/characters/faey/taur-sfw.svg",
  28824. extra: 1200 / 968,
  28825. bottom: 41 / 1241
  28826. }
  28827. },
  28828. chestmaw: {
  28829. height: math.unit(2.01, "meters"),
  28830. name: "Chestmaw",
  28831. image: {
  28832. source: "./media/characters/faey/chestmaw.svg"
  28833. }
  28834. },
  28835. foot: {
  28836. height: math.unit(2.43, "meters"),
  28837. name: "Foot",
  28838. image: {
  28839. source: "./media/characters/faey/foot.svg"
  28840. }
  28841. },
  28842. jaws: {
  28843. height: math.unit(1.66, "meters"),
  28844. name: "Jaws",
  28845. image: {
  28846. source: "./media/characters/faey/jaws.svg"
  28847. }
  28848. },
  28849. tongues: {
  28850. height: math.unit(2.01, "meters"),
  28851. name: "Tongues",
  28852. image: {
  28853. source: "./media/characters/faey/tongues.svg"
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Small",
  28860. height: math.unit(10, "meters"),
  28861. default: true
  28862. },
  28863. {
  28864. name: "Big",
  28865. height: math.unit(500000, "km")
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(7, "feet"),
  28874. weight: math.unit(275, "lb"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/roku/front.svg",
  28878. extra: 903 / 878,
  28879. bottom: 37 / 940
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(7, "feet"),
  28887. default: true
  28888. },
  28889. {
  28890. name: "Macro",
  28891. height: math.unit(500, "feet")
  28892. },
  28893. {
  28894. name: "Megamacro",
  28895. height: math.unit(200, "miles")
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28901. {
  28902. front: {
  28903. height: math.unit(6 + 2 / 12, "feet"),
  28904. weight: math.unit(150, "lb"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/lira/front.svg",
  28908. extra: 1727 / 1605,
  28909. bottom: 26 / 1753
  28910. }
  28911. },
  28912. back: {
  28913. height: math.unit(6 + 2 / 12, "feet"),
  28914. weight: math.unit(150, "lb"),
  28915. name: "Back",
  28916. image: {
  28917. source: "./media/characters/lira/back.svg",
  28918. extra: 1713/1621,
  28919. bottom: 20/1733
  28920. }
  28921. },
  28922. hand: {
  28923. height: math.unit(0.75, "feet"),
  28924. name: "Hand",
  28925. image: {
  28926. source: "./media/characters/lira/hand.svg"
  28927. }
  28928. },
  28929. maw: {
  28930. height: math.unit(0.65, "feet"),
  28931. name: "Maw",
  28932. image: {
  28933. source: "./media/characters/lira/maw.svg"
  28934. }
  28935. },
  28936. pawDigi: {
  28937. height: math.unit(1.6, "feet"),
  28938. name: "Paw Digi",
  28939. image: {
  28940. source: "./media/characters/lira/paw-digi.svg"
  28941. }
  28942. },
  28943. pawPlanti: {
  28944. height: math.unit(1.4, "feet"),
  28945. name: "Paw Planti",
  28946. image: {
  28947. source: "./media/characters/lira/paw-planti.svg"
  28948. }
  28949. },
  28950. },
  28951. [
  28952. {
  28953. name: "Normal",
  28954. height: math.unit(6 + 2 / 12, "feet"),
  28955. default: true
  28956. },
  28957. {
  28958. name: "Macro",
  28959. height: math.unit(100, "feet")
  28960. },
  28961. {
  28962. name: "Macro²",
  28963. height: math.unit(1600, "feet")
  28964. },
  28965. {
  28966. name: "Planetary",
  28967. height: math.unit(20, "earths")
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(6, "feet"),
  28976. weight: math.unit(150, "lb"),
  28977. name: "Front",
  28978. image: {
  28979. source: "./media/characters/hadjet/front.svg",
  28980. extra: 1480 / 1346,
  28981. bottom: 26 / 1506
  28982. }
  28983. },
  28984. frontNsfw: {
  28985. height: math.unit(6, "feet"),
  28986. weight: math.unit(150, "lb"),
  28987. name: "Front (NSFW)",
  28988. image: {
  28989. source: "./media/characters/hadjet/front-nsfw.svg",
  28990. extra: 1440 / 1358,
  28991. bottom: 52 / 1492
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Macro",
  28998. height: math.unit(10, "stories"),
  28999. default: true
  29000. },
  29001. {
  29002. name: "Megamacro",
  29003. height: math.unit(1.5, "miles")
  29004. },
  29005. {
  29006. name: "Megamacro+",
  29007. height: math.unit(5, "miles")
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29013. {
  29014. side: {
  29015. height: math.unit(106, "feet"),
  29016. weight: math.unit(500, "tonnes"),
  29017. name: "Side",
  29018. image: {
  29019. source: "./media/characters/kodran/side.svg",
  29020. extra: 553 / 480,
  29021. bottom: 33 / 586
  29022. }
  29023. },
  29024. front: {
  29025. height: math.unit(132, "feet"),
  29026. weight: math.unit(500, "tonnes"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/kodran/front.svg",
  29030. extra: 667 / 643,
  29031. bottom: 42 / 709
  29032. }
  29033. },
  29034. flying: {
  29035. height: math.unit(350, "feet"),
  29036. weight: math.unit(500, "tonnes"),
  29037. name: "Flying",
  29038. image: {
  29039. source: "./media/characters/kodran/flying.svg"
  29040. }
  29041. },
  29042. foot: {
  29043. height: math.unit(33, "feet"),
  29044. name: "Foot",
  29045. image: {
  29046. source: "./media/characters/kodran/foot.svg"
  29047. }
  29048. },
  29049. footFront: {
  29050. height: math.unit(19, "feet"),
  29051. name: "Foot (Front)",
  29052. image: {
  29053. source: "./media/characters/kodran/foot-front.svg",
  29054. extra: 261 / 261,
  29055. bottom: 91 / 352
  29056. }
  29057. },
  29058. headFront: {
  29059. height: math.unit(53, "feet"),
  29060. name: "Head (Front)",
  29061. image: {
  29062. source: "./media/characters/kodran/head-front.svg"
  29063. }
  29064. },
  29065. headSide: {
  29066. height: math.unit(65, "feet"),
  29067. name: "Head (Side)",
  29068. image: {
  29069. source: "./media/characters/kodran/head-side.svg"
  29070. }
  29071. },
  29072. throat: {
  29073. height: math.unit(79, "feet"),
  29074. name: "Throat",
  29075. image: {
  29076. source: "./media/characters/kodran/throat.svg"
  29077. }
  29078. },
  29079. },
  29080. [
  29081. {
  29082. name: "Large",
  29083. height: math.unit(106, "feet"),
  29084. default: true
  29085. },
  29086. ]
  29087. ))
  29088. characterMakers.push(() => makeCharacter(
  29089. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29090. {
  29091. side: {
  29092. height: math.unit(11, "feet"),
  29093. weight: math.unit(150, "lb"),
  29094. name: "Side",
  29095. image: {
  29096. source: "./media/characters/pyxaron/side.svg",
  29097. extra: 305 / 195,
  29098. bottom: 17 / 322
  29099. }
  29100. },
  29101. },
  29102. [
  29103. {
  29104. name: "Normal",
  29105. height: math.unit(11, "feet"),
  29106. default: true
  29107. },
  29108. ]
  29109. ))
  29110. characterMakers.push(() => makeCharacter(
  29111. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29112. {
  29113. front: {
  29114. height: math.unit(6, "feet"),
  29115. weight: math.unit(150, "lb"),
  29116. name: "Front",
  29117. image: {
  29118. source: "./media/characters/meep/front.svg",
  29119. extra: 88 / 80,
  29120. bottom: 6 / 94
  29121. }
  29122. },
  29123. },
  29124. [
  29125. {
  29126. name: "Fun Sized",
  29127. height: math.unit(2, "inches"),
  29128. default: true
  29129. },
  29130. {
  29131. name: "Friend Sized",
  29132. height: math.unit(8, "inches")
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(15, "feet"),
  29141. weight: math.unit(2500, "lb"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/holly-rabbit/front.svg",
  29145. extra: 1433 / 1233,
  29146. bottom: 125 / 1558
  29147. }
  29148. },
  29149. dick: {
  29150. height: math.unit(4.6, "feet"),
  29151. name: "Dick",
  29152. image: {
  29153. source: "./media/characters/holly-rabbit/dick.svg"
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Normal",
  29160. height: math.unit(15, "feet"),
  29161. default: true
  29162. },
  29163. {
  29164. name: "Macro",
  29165. height: math.unit(250, "feet")
  29166. },
  29167. {
  29168. name: "Macro+",
  29169. height: math.unit(2500, "feet")
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(3.02, "meters"),
  29178. weight: math.unit(500, "kg"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/drena/front.svg",
  29182. extra: 282 / 243,
  29183. bottom: 8 / 290
  29184. }
  29185. },
  29186. side: {
  29187. height: math.unit(3.02, "meters"),
  29188. weight: math.unit(500, "kg"),
  29189. name: "Side",
  29190. image: {
  29191. source: "./media/characters/drena/side.svg",
  29192. extra: 280 / 245,
  29193. bottom: 10 / 290
  29194. }
  29195. },
  29196. back: {
  29197. height: math.unit(3.02, "meters"),
  29198. weight: math.unit(500, "kg"),
  29199. name: "Back",
  29200. image: {
  29201. source: "./media/characters/drena/back.svg",
  29202. extra: 278 / 243,
  29203. bottom: 2 / 280
  29204. }
  29205. },
  29206. foot: {
  29207. height: math.unit(0.75, "meters"),
  29208. name: "Foot",
  29209. image: {
  29210. source: "./media/characters/drena/foot.svg"
  29211. }
  29212. },
  29213. maw: {
  29214. height: math.unit(0.82, "meters"),
  29215. name: "Maw",
  29216. image: {
  29217. source: "./media/characters/drena/maw.svg"
  29218. }
  29219. },
  29220. eating: {
  29221. height: math.unit(0.75, "meters"),
  29222. name: "Eating",
  29223. image: {
  29224. source: "./media/characters/drena/eating.svg"
  29225. }
  29226. },
  29227. rump: {
  29228. height: math.unit(0.93, "meters"),
  29229. name: "Rump",
  29230. image: {
  29231. source: "./media/characters/drena/rump.svg"
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(3.02, "meters"),
  29239. default: true
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(6 + 4 / 12, "feet"),
  29248. weight: math.unit(250, "lb"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/remmyzilla/front.svg",
  29252. extra: 4033 / 3588,
  29253. bottom: 123 / 4156
  29254. }
  29255. },
  29256. back: {
  29257. height: math.unit(6 + 4 / 12, "feet"),
  29258. weight: math.unit(250, "lb"),
  29259. name: "Back",
  29260. image: {
  29261. source: "./media/characters/remmyzilla/back.svg",
  29262. extra: 2687 / 2555,
  29263. bottom: 48 / 2735
  29264. }
  29265. },
  29266. paw: {
  29267. height: math.unit(1.73, "feet"),
  29268. name: "Paw",
  29269. image: {
  29270. source: "./media/characters/remmyzilla/paw.svg"
  29271. }
  29272. },
  29273. maw: {
  29274. height: math.unit(1.73, "feet"),
  29275. name: "Maw",
  29276. image: {
  29277. source: "./media/characters/remmyzilla/maw.svg"
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Normal",
  29284. height: math.unit(6 + 4 / 12, "feet")
  29285. },
  29286. {
  29287. name: "Minimacro",
  29288. height: math.unit(12 + 8 / 12, "feet")
  29289. },
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(640, "feet"),
  29293. default: true
  29294. },
  29295. {
  29296. name: "Megamacro",
  29297. height: math.unit(6400, "feet")
  29298. },
  29299. {
  29300. name: "Gigamacro",
  29301. height: math.unit(64000, "miles")
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(2.5, "meters"),
  29310. weight: math.unit(300, "lb"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/lawrence/front.svg",
  29314. extra: 357 / 335,
  29315. bottom: 30 / 387
  29316. }
  29317. },
  29318. back: {
  29319. height: math.unit(2.5, "meters"),
  29320. weight: math.unit(300, "lb"),
  29321. name: "Back",
  29322. image: {
  29323. source: "./media/characters/lawrence/back.svg",
  29324. extra: 357 / 338,
  29325. bottom: 16 / 373
  29326. }
  29327. },
  29328. head: {
  29329. height: math.unit(0.9, "meter"),
  29330. name: "Head",
  29331. image: {
  29332. source: "./media/characters/lawrence/head.svg"
  29333. }
  29334. },
  29335. maw: {
  29336. height: math.unit(0.7, "meter"),
  29337. name: "Maw",
  29338. image: {
  29339. source: "./media/characters/lawrence/maw.svg"
  29340. }
  29341. },
  29342. footBottom: {
  29343. height: math.unit(0.5, "meter"),
  29344. name: "Foot (Bottom)",
  29345. image: {
  29346. source: "./media/characters/lawrence/foot-bottom.svg"
  29347. }
  29348. },
  29349. footTop: {
  29350. height: math.unit(0.5, "meter"),
  29351. name: "Foot (Top)",
  29352. image: {
  29353. source: "./media/characters/lawrence/foot-top.svg"
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(2.5, "meters"),
  29361. default: true
  29362. },
  29363. {
  29364. name: "Macro",
  29365. height: math.unit(95, "meters")
  29366. },
  29367. {
  29368. name: "Megamacro",
  29369. height: math.unit(150, "km")
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29375. {
  29376. front: {
  29377. height: math.unit(4.2, "meters"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/sydney/front.svg",
  29381. extra: 1323 / 1277,
  29382. bottom: 111 / 1434
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Normal",
  29389. height: math.unit(4.2, "meters"),
  29390. default: true
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29396. {
  29397. back: {
  29398. height: math.unit(201, "feet"),
  29399. name: "Back",
  29400. image: {
  29401. source: "./media/characters/jessica/back.svg",
  29402. extra: 273 / 259,
  29403. bottom: 7 / 280
  29404. }
  29405. },
  29406. },
  29407. [
  29408. {
  29409. name: "Normal",
  29410. height: math.unit(201, "feet"),
  29411. default: true
  29412. },
  29413. {
  29414. name: "Megamacro",
  29415. height: math.unit(8, "miles")
  29416. },
  29417. ]
  29418. ))
  29419. characterMakers.push(() => makeCharacter(
  29420. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29421. {
  29422. side: {
  29423. height: math.unit(5.6, "m"),
  29424. weight: math.unit(8000, "kg"),
  29425. name: "Side",
  29426. image: {
  29427. source: "./media/characters/victoria/side.svg",
  29428. extra: 1542/1229,
  29429. bottom: 124/1666
  29430. }
  29431. },
  29432. maw: {
  29433. height: math.unit(7.14, "feet"),
  29434. name: "Maw",
  29435. image: {
  29436. source: "./media/characters/victoria/maw.svg"
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Normal",
  29443. height: math.unit(5.6, "m"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29450. {
  29451. front: {
  29452. height: math.unit(5 + 6 / 12, "feet"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/cat/front.svg",
  29456. extra: 1449/1295,
  29457. bottom: 34/1483
  29458. },
  29459. form: "cat",
  29460. default: true
  29461. },
  29462. back: {
  29463. height: math.unit(5 + 6 / 12, "feet"),
  29464. name: "Back",
  29465. image: {
  29466. source: "./media/characters/cat/back.svg",
  29467. extra: 1466/1301,
  29468. bottom: 19/1485
  29469. },
  29470. form: "cat"
  29471. },
  29472. taur: {
  29473. height: math.unit(7, "feet"),
  29474. name: "Taur",
  29475. image: {
  29476. source: "./media/characters/cat/taur.svg",
  29477. extra: 1389/1233,
  29478. bottom: 83/1472
  29479. },
  29480. form: "taur",
  29481. default: true
  29482. },
  29483. lucarioFront: {
  29484. height: math.unit(4, "feet"),
  29485. name: "Lucario (Front)",
  29486. image: {
  29487. source: "./media/characters/cat/lucario-front.svg",
  29488. extra: 1149/1019,
  29489. bottom: 84/1233
  29490. },
  29491. form: "lucario",
  29492. default: true
  29493. },
  29494. lucarioBack: {
  29495. height: math.unit(4, "feet"),
  29496. name: "Lucario (Back)",
  29497. image: {
  29498. source: "./media/characters/cat/lucario-back.svg",
  29499. extra: 1190/1059,
  29500. bottom: 33/1223
  29501. },
  29502. form: "lucario"
  29503. },
  29504. megaLucario: {
  29505. height: math.unit(4, "feet"),
  29506. name: "Mega Lucario",
  29507. image: {
  29508. source: "./media/characters/cat/mega-lucario.svg",
  29509. extra: 1515 / 1319,
  29510. bottom: 63 / 1578
  29511. },
  29512. form: "lucario"
  29513. },
  29514. nickit: {
  29515. height: math.unit(2, "feet"),
  29516. name: "Nickit",
  29517. image: {
  29518. source: "./media/characters/cat/nickit.svg",
  29519. extra: 1980 / 1585,
  29520. bottom: 102 / 2082
  29521. },
  29522. form: "nickit",
  29523. default: true
  29524. },
  29525. lopunnyFront: {
  29526. height: math.unit(5, "feet"),
  29527. name: "Lopunny (Front)",
  29528. image: {
  29529. source: "./media/characters/cat/lopunny-front.svg",
  29530. extra: 1782 / 1469,
  29531. bottom: 38 / 1820
  29532. },
  29533. form: "lopunny",
  29534. default: true
  29535. },
  29536. lopunnyBack: {
  29537. height: math.unit(5, "feet"),
  29538. name: "Lopunny (Back)",
  29539. image: {
  29540. source: "./media/characters/cat/lopunny-back.svg",
  29541. extra: 1660 / 1490,
  29542. bottom: 25 / 1685
  29543. },
  29544. form: "lopunny"
  29545. },
  29546. },
  29547. [
  29548. {
  29549. name: "Really small",
  29550. height: math.unit(1, "nm")
  29551. },
  29552. {
  29553. name: "Micro",
  29554. height: math.unit(5, "inches")
  29555. },
  29556. {
  29557. name: "Normal",
  29558. height: math.unit(5 + 6 / 12, "feet"),
  29559. default: true
  29560. },
  29561. {
  29562. name: "Macro",
  29563. height: math.unit(50, "feet")
  29564. },
  29565. {
  29566. name: "Macro+",
  29567. height: math.unit(150, "feet")
  29568. },
  29569. {
  29570. name: "Megamacro",
  29571. height: math.unit(100, "miles")
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(63.4, "meters"),
  29580. weight: math.unit(3.28349e+6, "kilograms"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/kirina-violet/front.svg",
  29584. extra: 2812 / 2725,
  29585. bottom: 0 / 2812
  29586. }
  29587. },
  29588. back: {
  29589. height: math.unit(63.4, "meters"),
  29590. weight: math.unit(3.28349e+6, "kilograms"),
  29591. name: "Back",
  29592. image: {
  29593. source: "./media/characters/kirina-violet/back.svg",
  29594. extra: 2812 / 2725,
  29595. bottom: 0 / 2812
  29596. }
  29597. },
  29598. mouth: {
  29599. height: math.unit(4.35, "meters"),
  29600. name: "Mouth",
  29601. image: {
  29602. source: "./media/characters/kirina-violet/mouth.svg"
  29603. }
  29604. },
  29605. paw: {
  29606. height: math.unit(5.6, "meters"),
  29607. name: "Paw",
  29608. image: {
  29609. source: "./media/characters/kirina-violet/paw.svg"
  29610. }
  29611. },
  29612. tail: {
  29613. height: math.unit(18, "meters"),
  29614. name: "Tail",
  29615. image: {
  29616. source: "./media/characters/kirina-violet/tail.svg"
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Macro",
  29623. height: math.unit(63.4, "meters"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(75, "feet"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/cat-gigachu/front.svg",
  29636. extra: 1239/1027,
  29637. bottom: 32/1271
  29638. }
  29639. },
  29640. back: {
  29641. height: math.unit(75, "feet"),
  29642. name: "Back",
  29643. image: {
  29644. source: "./media/characters/cat-gigachu/back.svg",
  29645. extra: 1229/1030,
  29646. bottom: 9/1238
  29647. }
  29648. },
  29649. },
  29650. [
  29651. {
  29652. name: "Dynamax",
  29653. height: math.unit(75, "feet"),
  29654. default: true
  29655. },
  29656. ]
  29657. ))
  29658. characterMakers.push(() => makeCharacter(
  29659. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29660. {
  29661. front: {
  29662. height: math.unit(6, "feet"),
  29663. weight: math.unit(150, "lb"),
  29664. name: "Front",
  29665. image: {
  29666. source: "./media/characters/sfaiyan/front.svg",
  29667. extra: 999 / 978,
  29668. bottom: 5 / 1004
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(1.82, "meters")
  29676. },
  29677. {
  29678. name: "Giant",
  29679. height: math.unit(2.27, "km"),
  29680. default: true
  29681. },
  29682. ]
  29683. ))
  29684. characterMakers.push(() => makeCharacter(
  29685. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29686. {
  29687. front: {
  29688. height: math.unit(179, "cm"),
  29689. weight: math.unit(100, "kg"),
  29690. name: "Front",
  29691. image: {
  29692. source: "./media/characters/raunehkeli/front.svg",
  29693. extra: 1934 / 1926,
  29694. bottom: 0 / 1934
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(179, "cm")
  29702. },
  29703. {
  29704. name: "Maximum",
  29705. height: math.unit(575, "meters"),
  29706. default: true
  29707. },
  29708. ]
  29709. ))
  29710. characterMakers.push(() => makeCharacter(
  29711. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29712. {
  29713. front: {
  29714. height: math.unit(6, "feet"),
  29715. weight: math.unit(150, "lb"),
  29716. name: "Front",
  29717. image: {
  29718. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29719. extra: 2625 / 2518,
  29720. bottom: 60 / 2685
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Normal",
  29727. height: math.unit(6 + 2 / 12, "feet")
  29728. },
  29729. {
  29730. name: "Macro",
  29731. height: math.unit(1180, "feet"),
  29732. default: true
  29733. },
  29734. ]
  29735. ))
  29736. characterMakers.push(() => makeCharacter(
  29737. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29738. {
  29739. front: {
  29740. height: math.unit(5 + 6 / 12, "feet"),
  29741. weight: math.unit(108, "lb"),
  29742. name: "Front",
  29743. image: {
  29744. source: "./media/characters/lilith-zott/front.svg",
  29745. extra: 2510 / 2238,
  29746. bottom: 100 / 2610
  29747. }
  29748. },
  29749. frontDressed: {
  29750. height: math.unit(5 + 6 / 12, "feet"),
  29751. weight: math.unit(108, "lb"),
  29752. name: "Front (Dressed)",
  29753. image: {
  29754. source: "./media/characters/lilith-zott/front-dressed.svg",
  29755. extra: 2510 / 2238,
  29756. bottom: 100 / 2610
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(5 + 6 / 12, "feet")
  29764. },
  29765. {
  29766. name: "Macro",
  29767. height: math.unit(1030, "feet"),
  29768. default: true
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29774. {
  29775. front: {
  29776. height: math.unit(6, "feet"),
  29777. weight: math.unit(150, "lb"),
  29778. name: "Front",
  29779. image: {
  29780. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29781. extra: 2567 / 2435,
  29782. bottom: 39 / 2606
  29783. }
  29784. },
  29785. frontSuper: {
  29786. height: math.unit(6, "feet"),
  29787. name: "Front (Super)",
  29788. image: {
  29789. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29790. extra: 2567 / 2435,
  29791. bottom: 39 / 2606
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Normal",
  29798. height: math.unit(5 + 10 / 12, "feet")
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(1100, "feet"),
  29803. default: true
  29804. },
  29805. ]
  29806. ))
  29807. characterMakers.push(() => makeCharacter(
  29808. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29809. {
  29810. front: {
  29811. height: math.unit(100, "miles"),
  29812. name: "Front",
  29813. image: {
  29814. source: "./media/characters/sona/front.svg",
  29815. extra: 2433 / 2201,
  29816. bottom: 53 / 2486
  29817. }
  29818. },
  29819. foot: {
  29820. height: math.unit(16.1, "miles"),
  29821. name: "Foot",
  29822. image: {
  29823. source: "./media/characters/sona/foot.svg"
  29824. }
  29825. },
  29826. },
  29827. [
  29828. {
  29829. name: "Macro",
  29830. height: math.unit(100, "miles"),
  29831. default: true
  29832. },
  29833. ]
  29834. ))
  29835. characterMakers.push(() => makeCharacter(
  29836. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29837. {
  29838. front: {
  29839. height: math.unit(6, "feet"),
  29840. weight: math.unit(150, "lb"),
  29841. name: "Front",
  29842. image: {
  29843. source: "./media/characters/bailey/front.svg",
  29844. extra: 1778 / 1724,
  29845. bottom: 30 / 1808
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Micro",
  29852. height: math.unit(4, "inches")
  29853. },
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(5 + 5 / 12, "feet"),
  29857. default: true
  29858. },
  29859. {
  29860. name: "Macro",
  29861. height: math.unit(250, "feet")
  29862. },
  29863. {
  29864. name: "Megamacro",
  29865. height: math.unit(100, "miles")
  29866. },
  29867. ]
  29868. ))
  29869. characterMakers.push(() => makeCharacter(
  29870. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29871. {
  29872. front: {
  29873. height: math.unit(5 + 2 / 12, "feet"),
  29874. weight: math.unit(120, "lb"),
  29875. name: "Front",
  29876. image: {
  29877. source: "./media/characters/snaps/front.svg",
  29878. extra: 2370 / 2177,
  29879. bottom: 48 / 2418
  29880. }
  29881. },
  29882. back: {
  29883. height: math.unit(5 + 2 / 12, "feet"),
  29884. weight: math.unit(120, "lb"),
  29885. name: "Back",
  29886. image: {
  29887. source: "./media/characters/snaps/back.svg",
  29888. extra: 2408 / 2258,
  29889. bottom: 15 / 2423
  29890. }
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Micro",
  29896. height: math.unit(9, "inches")
  29897. },
  29898. {
  29899. name: "Normal",
  29900. height: math.unit(5 + 2 / 12, "feet"),
  29901. default: true
  29902. },
  29903. {
  29904. name: "Mini Macro",
  29905. height: math.unit(10, "feet")
  29906. },
  29907. ]
  29908. ))
  29909. characterMakers.push(() => makeCharacter(
  29910. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29911. {
  29912. front: {
  29913. height: math.unit(1.8, "meters"),
  29914. weight: math.unit(85, "kg"),
  29915. name: "Front",
  29916. image: {
  29917. source: "./media/characters/azteck/front.svg",
  29918. extra: 2815 / 2625,
  29919. bottom: 89 / 2904
  29920. }
  29921. },
  29922. back: {
  29923. height: math.unit(1.8, "meters"),
  29924. weight: math.unit(85, "kg"),
  29925. name: "Back",
  29926. image: {
  29927. source: "./media/characters/azteck/back.svg",
  29928. extra: 2856 / 2648,
  29929. bottom: 85 / 2941
  29930. }
  29931. },
  29932. frontDressed: {
  29933. height: math.unit(1.8, "meters"),
  29934. weight: math.unit(85, "kg"),
  29935. name: "Front (Dressed)",
  29936. image: {
  29937. source: "./media/characters/azteck/front-dressed.svg",
  29938. extra: 2147 / 2003,
  29939. bottom: 68 / 2215
  29940. }
  29941. },
  29942. head: {
  29943. height: math.unit(0.47, "meters"),
  29944. weight: math.unit(85, "kg"),
  29945. name: "Head",
  29946. image: {
  29947. source: "./media/characters/azteck/head.svg"
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Bite sized",
  29954. height: math.unit(16, "cm")
  29955. },
  29956. {
  29957. name: "Normal",
  29958. height: math.unit(1.8, "meters"),
  29959. default: true
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(6, "feet"),
  29968. weight: math.unit(150, "lb"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/pidge/front.svg",
  29972. extra: 620 / 588,
  29973. bottom: 9 / 629
  29974. }
  29975. },
  29976. back: {
  29977. height: math.unit(6, "feet"),
  29978. weight: math.unit(150, "lb"),
  29979. name: "Back",
  29980. image: {
  29981. source: "./media/characters/pidge/back.svg",
  29982. extra: 620 / 588,
  29983. bottom: 9 / 629
  29984. }
  29985. },
  29986. },
  29987. [
  29988. {
  29989. name: "Macro",
  29990. height: math.unit(1, "mile"),
  29991. default: true
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29997. {
  29998. front: {
  29999. height: math.unit(6, "feet"),
  30000. weight: math.unit(150, "lb"),
  30001. name: "Front",
  30002. image: {
  30003. source: "./media/characters/en/front.svg",
  30004. extra: 1697 / 1563,
  30005. bottom: 103 / 1800
  30006. }
  30007. },
  30008. back: {
  30009. height: math.unit(6, "feet"),
  30010. weight: math.unit(150, "lb"),
  30011. name: "Back",
  30012. image: {
  30013. source: "./media/characters/en/back.svg",
  30014. extra: 1700 / 1570,
  30015. bottom: 51 / 1751
  30016. }
  30017. },
  30018. frontDressed: {
  30019. height: math.unit(6, "feet"),
  30020. weight: math.unit(150, "lb"),
  30021. name: "Front (Dressed)",
  30022. image: {
  30023. source: "./media/characters/en/front-dressed.svg",
  30024. extra: 1697 / 1563,
  30025. bottom: 103 / 1800
  30026. }
  30027. },
  30028. backDressed: {
  30029. height: math.unit(6, "feet"),
  30030. weight: math.unit(150, "lb"),
  30031. name: "Back (Dressed)",
  30032. image: {
  30033. source: "./media/characters/en/back-dressed.svg",
  30034. extra: 1700 / 1570,
  30035. bottom: 51 / 1751
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(210, "feet"),
  30043. default: true
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(6, "feet"),
  30052. weight: math.unit(150, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/haze-orris/front.svg",
  30056. extra: 3975 / 3525,
  30057. bottom: 137 / 4112
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Micro",
  30064. height: math.unit(150, "mm"),
  30065. default: true
  30066. },
  30067. ]
  30068. ))
  30069. characterMakers.push(() => makeCharacter(
  30070. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30071. {
  30072. front: {
  30073. height: math.unit(6, "feet"),
  30074. weight: math.unit(150, "lb"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/casselene-yaro/front.svg",
  30078. extra: 4721 / 4541,
  30079. bottom: 82 / 4803
  30080. }
  30081. },
  30082. back: {
  30083. height: math.unit(6, "feet"),
  30084. weight: math.unit(150, "lb"),
  30085. name: "Back",
  30086. image: {
  30087. source: "./media/characters/casselene-yaro/back.svg",
  30088. extra: 4569 / 4377,
  30089. bottom: 69 / 4638
  30090. }
  30091. },
  30092. frontDressed: {
  30093. height: math.unit(6, "feet"),
  30094. weight: math.unit(150, "lb"),
  30095. name: "Front-dressed",
  30096. image: {
  30097. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30098. extra: 4721 / 4541,
  30099. bottom: 82 / 4803
  30100. }
  30101. },
  30102. },
  30103. [
  30104. {
  30105. name: "Macro",
  30106. height: math.unit(190, "feet"),
  30107. default: true
  30108. },
  30109. ]
  30110. ))
  30111. characterMakers.push(() => makeCharacter(
  30112. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30113. {
  30114. front: {
  30115. height: math.unit(6, "feet"),
  30116. weight: math.unit(150, "lb"),
  30117. name: "Front",
  30118. image: {
  30119. source: "./media/characters/myra-rue-delore/front.svg",
  30120. extra: 1340 / 1308,
  30121. bottom: 67 / 1407
  30122. }
  30123. },
  30124. back: {
  30125. height: math.unit(6, "feet"),
  30126. weight: math.unit(150, "lb"),
  30127. name: "Back",
  30128. image: {
  30129. source: "./media/characters/myra-rue-delore/back.svg",
  30130. extra: 1341 / 1310,
  30131. bottom: 40 / 1381
  30132. }
  30133. },
  30134. frontDressed: {
  30135. height: math.unit(6, "feet"),
  30136. weight: math.unit(150, "lb"),
  30137. name: "Front (Dressed)",
  30138. image: {
  30139. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30140. extra: 1340 / 1308,
  30141. bottom: 67 / 1407
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Macro",
  30148. height: math.unit(150, "feet"),
  30149. default: true
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30155. {
  30156. front: {
  30157. height: math.unit(10, "feet"),
  30158. weight: math.unit(15015, "lb"),
  30159. name: "Front",
  30160. image: {
  30161. source: "./media/characters/fem!plat/front.svg",
  30162. extra: 2799 / 2604,
  30163. bottom: 149 / 2948
  30164. }
  30165. },
  30166. },
  30167. [
  30168. {
  30169. name: "Normal",
  30170. height: math.unit(10, "feet"),
  30171. default: true
  30172. },
  30173. {
  30174. name: "Macro",
  30175. height: math.unit(100, "feet")
  30176. },
  30177. {
  30178. name: "Megamacro",
  30179. height: math.unit(1000, "feet")
  30180. },
  30181. ]
  30182. ))
  30183. characterMakers.push(() => makeCharacter(
  30184. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30185. {
  30186. front: {
  30187. height: math.unit(15 + 5 / 12, "feet"),
  30188. weight: math.unit(4600, "lb"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/neapolitan-ananassa/front.svg",
  30192. extra: 2903 / 2736,
  30193. bottom: 0 / 2903
  30194. }
  30195. },
  30196. side: {
  30197. height: math.unit(15 + 5 / 12, "feet"),
  30198. weight: math.unit(4600, "lb"),
  30199. name: "Side",
  30200. image: {
  30201. source: "./media/characters/neapolitan-ananassa/side.svg",
  30202. extra: 2925 / 2719,
  30203. bottom: 0 / 2925
  30204. }
  30205. },
  30206. back: {
  30207. height: math.unit(15 + 5 / 12, "feet"),
  30208. weight: math.unit(4600, "lb"),
  30209. name: "Back",
  30210. image: {
  30211. source: "./media/characters/neapolitan-ananassa/back.svg",
  30212. extra: 2903 / 2736,
  30213. bottom: 0 / 2903
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Normal",
  30220. height: math.unit(15 + 5 / 12, "feet"),
  30221. default: true
  30222. },
  30223. {
  30224. name: "Post-Millenium",
  30225. height: math.unit(35 + 5 / 12, "feet")
  30226. },
  30227. {
  30228. name: "Post-Era",
  30229. height: math.unit(450 + 5 / 12, "feet")
  30230. },
  30231. ]
  30232. ))
  30233. characterMakers.push(() => makeCharacter(
  30234. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30235. {
  30236. front: {
  30237. height: math.unit(300, "meters"),
  30238. weight: math.unit(125000, "tonnes"),
  30239. name: "Front",
  30240. image: {
  30241. source: "./media/characters/pazuzu/front.svg",
  30242. extra: 877 / 794,
  30243. bottom: 47 / 924
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Macro",
  30250. height: math.unit(300, "meters"),
  30251. default: true
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30257. {
  30258. side: {
  30259. height: math.unit(10 + 7 / 12, "feet"),
  30260. weight: math.unit(2.5, "tons"),
  30261. name: "Side",
  30262. image: {
  30263. source: "./media/characters/aasha/side.svg",
  30264. extra: 1345 / 1245,
  30265. bottom: 111 / 1456
  30266. }
  30267. },
  30268. back: {
  30269. height: math.unit(10 + 7 / 12, "feet"),
  30270. weight: math.unit(2.5, "tons"),
  30271. name: "Back",
  30272. image: {
  30273. source: "./media/characters/aasha/back.svg",
  30274. extra: 1133 / 1057,
  30275. bottom: 257 / 1390
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Normal",
  30282. height: math.unit(10 + 7 / 12, "feet"),
  30283. default: true
  30284. },
  30285. ]
  30286. ))
  30287. characterMakers.push(() => makeCharacter(
  30288. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30289. {
  30290. front: {
  30291. height: math.unit(6 + 3 / 12, "feet"),
  30292. name: "Front",
  30293. image: {
  30294. source: "./media/characters/nevan/front.svg",
  30295. extra: 704 / 704,
  30296. bottom: 28 / 732
  30297. }
  30298. },
  30299. back: {
  30300. height: math.unit(6 + 3 / 12, "feet"),
  30301. name: "Back",
  30302. image: {
  30303. source: "./media/characters/nevan/back.svg",
  30304. extra: 714 / 714,
  30305. bottom: 21 / 735
  30306. }
  30307. },
  30308. frontFlaccid: {
  30309. height: math.unit(6 + 3 / 12, "feet"),
  30310. name: "Front (Flaccid)",
  30311. image: {
  30312. source: "./media/characters/nevan/front-flaccid.svg",
  30313. extra: 704 / 704,
  30314. bottom: 28 / 732
  30315. }
  30316. },
  30317. frontErect: {
  30318. height: math.unit(6 + 3 / 12, "feet"),
  30319. name: "Front (Erect)",
  30320. image: {
  30321. source: "./media/characters/nevan/front-erect.svg",
  30322. extra: 704 / 704,
  30323. bottom: 28 / 732
  30324. }
  30325. },
  30326. backFlaccid: {
  30327. height: math.unit(6 + 3 / 12, "feet"),
  30328. name: "Back (Flaccid)",
  30329. image: {
  30330. source: "./media/characters/nevan/back-flaccid.svg",
  30331. extra: 714 / 714,
  30332. bottom: 21 / 735
  30333. }
  30334. },
  30335. },
  30336. [
  30337. {
  30338. name: "Normal",
  30339. height: math.unit(6 + 3 / 12, "feet"),
  30340. default: true
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(4, "feet"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/arhan/front.svg",
  30352. extra: 3368 / 3133,
  30353. bottom: 0 / 3368
  30354. }
  30355. },
  30356. side: {
  30357. height: math.unit(4, "feet"),
  30358. name: "Side",
  30359. image: {
  30360. source: "./media/characters/arhan/side.svg",
  30361. extra: 3347 / 3105,
  30362. bottom: 0 / 3347
  30363. }
  30364. },
  30365. tongue: {
  30366. height: math.unit(1.42, "feet"),
  30367. name: "Tongue",
  30368. image: {
  30369. source: "./media/characters/arhan/tongue.svg"
  30370. }
  30371. },
  30372. head: {
  30373. height: math.unit(0.85, "feet"),
  30374. name: "Head",
  30375. image: {
  30376. source: "./media/characters/arhan/head.svg"
  30377. }
  30378. },
  30379. },
  30380. [
  30381. {
  30382. name: "Normal",
  30383. height: math.unit(4, "feet"),
  30384. default: true
  30385. },
  30386. ]
  30387. ))
  30388. characterMakers.push(() => makeCharacter(
  30389. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30390. {
  30391. front: {
  30392. height: math.unit(5 + 7.5 / 12, "feet"),
  30393. weight: math.unit(120, "lb"),
  30394. name: "Front",
  30395. image: {
  30396. source: "./media/characters/digi-duncan/front.svg",
  30397. extra: 330 / 326,
  30398. bottom: 16 / 346
  30399. }
  30400. },
  30401. side: {
  30402. height: math.unit(5 + 7.5 / 12, "feet"),
  30403. weight: math.unit(120, "lb"),
  30404. name: "Side",
  30405. image: {
  30406. source: "./media/characters/digi-duncan/side.svg",
  30407. extra: 341 / 337,
  30408. bottom: 1 / 342
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(5 + 7.5 / 12, "feet"),
  30413. weight: math.unit(120, "lb"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/digi-duncan/back.svg",
  30417. extra: 330 / 326,
  30418. bottom: 12 / 342
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Speck",
  30425. height: math.unit(0.25, "mm")
  30426. },
  30427. {
  30428. name: "Micro",
  30429. height: math.unit(5, "mm")
  30430. },
  30431. {
  30432. name: "Tiny",
  30433. height: math.unit(0.5, "inches"),
  30434. default: true
  30435. },
  30436. {
  30437. name: "Human",
  30438. height: math.unit(5 + 7.5 / 12, "feet")
  30439. },
  30440. {
  30441. name: "Minigiant",
  30442. height: math.unit(8 + 5.25, "feet")
  30443. },
  30444. {
  30445. name: "Giant",
  30446. height: math.unit(2000, "feet")
  30447. },
  30448. {
  30449. name: "Mega",
  30450. height: math.unit(371.1, "miles")
  30451. },
  30452. ]
  30453. ))
  30454. characterMakers.push(() => makeCharacter(
  30455. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30456. {
  30457. front: {
  30458. height: math.unit(2, "meters"),
  30459. weight: math.unit(350, "kg"),
  30460. name: "Front",
  30461. image: {
  30462. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30463. extra: 898 / 838,
  30464. bottom: 9 / 907
  30465. }
  30466. },
  30467. },
  30468. [
  30469. {
  30470. name: "Micro",
  30471. height: math.unit(8, "meters")
  30472. },
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(50, "meters"),
  30476. default: true
  30477. },
  30478. {
  30479. name: "Macro",
  30480. height: math.unit(500, "meters")
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(6 + 6 / 12, "feet"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/khardesh/front.svg",
  30492. extra: 1788/1596,
  30493. bottom: 66/1854
  30494. }
  30495. },
  30496. back: {
  30497. height: math.unit(6 + 6 / 12, "feet"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/khardesh/back.svg",
  30501. extra: 1781/1584,
  30502. bottom: 68/1849
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Normal",
  30509. height: math.unit(6 + 6 / 12, "feet"),
  30510. default: true
  30511. },
  30512. {
  30513. name: "Normal+",
  30514. height: math.unit(4, "meters")
  30515. },
  30516. {
  30517. name: "Macro",
  30518. height: math.unit(50, "meters")
  30519. },
  30520. {
  30521. name: "Macro+",
  30522. height: math.unit(100, "meters")
  30523. },
  30524. {
  30525. name: "Megamacro",
  30526. height: math.unit(20, "km")
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(6, "feet"),
  30535. weight: math.unit(150, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/kosho/front.svg",
  30539. extra: 1847 / 1847,
  30540. bottom: 86 / 1933
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Second-stage micro",
  30547. height: math.unit(0.5, "inches")
  30548. },
  30549. {
  30550. name: "First-stage micro",
  30551. height: math.unit(6, "inches")
  30552. },
  30553. {
  30554. name: "Normal",
  30555. height: math.unit(6, "feet"),
  30556. default: true
  30557. },
  30558. {
  30559. name: "First-stage macro",
  30560. height: math.unit(72, "feet")
  30561. },
  30562. {
  30563. name: "Second-stage macro",
  30564. height: math.unit(864, "feet")
  30565. },
  30566. ]
  30567. ))
  30568. characterMakers.push(() => makeCharacter(
  30569. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30570. {
  30571. normal: {
  30572. height: math.unit(4 + 6 / 12, "feet"),
  30573. name: "Normal",
  30574. image: {
  30575. source: "./media/characters/hydra/normal.svg",
  30576. extra: 2833 / 2634,
  30577. bottom: 68 / 2901
  30578. }
  30579. },
  30580. smol: {
  30581. height: math.unit(0.705, "inches"),
  30582. name: "Smol",
  30583. image: {
  30584. source: "./media/characters/hydra/smol.svg",
  30585. extra: 2715 / 2540,
  30586. bottom: 0 / 2715
  30587. }
  30588. },
  30589. },
  30590. [
  30591. {
  30592. name: "Normal",
  30593. height: math.unit(4 + 6 / 12, "feet"),
  30594. default: true
  30595. }
  30596. ]
  30597. ))
  30598. characterMakers.push(() => makeCharacter(
  30599. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30600. {
  30601. front: {
  30602. height: math.unit(0.6, "cm"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/daz/front.svg",
  30606. extra: 1682 / 1164,
  30607. bottom: 42 / 1724
  30608. }
  30609. },
  30610. },
  30611. [
  30612. {
  30613. name: "Normal",
  30614. height: math.unit(0.6, "cm"),
  30615. default: true
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30621. {
  30622. front: {
  30623. height: math.unit(6, "feet"),
  30624. weight: math.unit(235, "lb"),
  30625. name: "Front",
  30626. image: {
  30627. source: "./media/characters/theo-pangolin/front.svg",
  30628. extra: 1996 / 1969,
  30629. bottom: 115 / 2111
  30630. }
  30631. },
  30632. back: {
  30633. height: math.unit(6, "feet"),
  30634. weight: math.unit(235, "lb"),
  30635. name: "Back",
  30636. image: {
  30637. source: "./media/characters/theo-pangolin/back.svg",
  30638. extra: 1979 / 1979,
  30639. bottom: 40 / 2019
  30640. }
  30641. },
  30642. feral: {
  30643. height: math.unit(2, "feet"),
  30644. weight: math.unit(30, "lb"),
  30645. name: "Feral",
  30646. image: {
  30647. source: "./media/characters/theo-pangolin/feral.svg",
  30648. extra: 803 / 791,
  30649. bottom: 181 / 984
  30650. }
  30651. },
  30652. footFive: {
  30653. height: math.unit(1.43, "feet"),
  30654. name: "Foot (Five Toes)",
  30655. image: {
  30656. source: "./media/characters/theo-pangolin/foot-five.svg"
  30657. }
  30658. },
  30659. footFour: {
  30660. height: math.unit(1.43, "feet"),
  30661. name: "Foot (Four Toes)",
  30662. image: {
  30663. source: "./media/characters/theo-pangolin/foot-four.svg"
  30664. }
  30665. },
  30666. handFour: {
  30667. height: math.unit(0.81, "feet"),
  30668. name: "Hand (Four Fingers)",
  30669. image: {
  30670. source: "./media/characters/theo-pangolin/hand-four.svg"
  30671. }
  30672. },
  30673. handThree: {
  30674. height: math.unit(0.81, "feet"),
  30675. name: "Hand (Three Fingers)",
  30676. image: {
  30677. source: "./media/characters/theo-pangolin/hand-three.svg"
  30678. }
  30679. },
  30680. headFront: {
  30681. height: math.unit(1.37, "feet"),
  30682. name: "Head (Front)",
  30683. image: {
  30684. source: "./media/characters/theo-pangolin/head-front.svg"
  30685. }
  30686. },
  30687. headSide: {
  30688. height: math.unit(1.43, "feet"),
  30689. name: "Head (Side)",
  30690. image: {
  30691. source: "./media/characters/theo-pangolin/head-side.svg"
  30692. }
  30693. },
  30694. tongue: {
  30695. height: math.unit(2.29, "feet"),
  30696. name: "Tongue",
  30697. image: {
  30698. source: "./media/characters/theo-pangolin/tongue.svg"
  30699. }
  30700. },
  30701. },
  30702. [
  30703. {
  30704. name: "Normal",
  30705. height: math.unit(6, "feet")
  30706. },
  30707. {
  30708. name: "Macro",
  30709. height: math.unit(400, "feet"),
  30710. default: true
  30711. },
  30712. ]
  30713. ))
  30714. characterMakers.push(() => makeCharacter(
  30715. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30716. {
  30717. front: {
  30718. height: math.unit(6, "inches"),
  30719. weight: math.unit(0.036, "kg"),
  30720. name: "Front",
  30721. image: {
  30722. source: "./media/characters/renée/front.svg",
  30723. extra: 900 / 886,
  30724. bottom: 8 / 908
  30725. }
  30726. },
  30727. },
  30728. [
  30729. {
  30730. name: "Nano",
  30731. height: math.unit(1, "nm")
  30732. },
  30733. {
  30734. name: "Micro",
  30735. height: math.unit(1, "mm")
  30736. },
  30737. {
  30738. name: "Normal",
  30739. height: math.unit(6, "inches")
  30740. },
  30741. {
  30742. name: "Macro",
  30743. height: math.unit(2000, "feet"),
  30744. default: true
  30745. },
  30746. {
  30747. name: "Megamacro",
  30748. height: math.unit(2, "km")
  30749. },
  30750. {
  30751. name: "Gigamacro",
  30752. height: math.unit(2000, "km")
  30753. },
  30754. {
  30755. name: "Teramacro",
  30756. height: math.unit(250000, "km")
  30757. },
  30758. ]
  30759. ))
  30760. characterMakers.push(() => makeCharacter(
  30761. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30762. {
  30763. front: {
  30764. height: math.unit(4, "meters"),
  30765. weight: math.unit(150, "kg"),
  30766. name: "Front",
  30767. image: {
  30768. source: "./media/characters/caledvwlch/front.svg",
  30769. extra: 1760 / 1551,
  30770. bottom: 28 / 1788
  30771. }
  30772. },
  30773. side: {
  30774. height: math.unit(4, "meters"),
  30775. weight: math.unit(150, "kg"),
  30776. name: "Side",
  30777. image: {
  30778. source: "./media/characters/caledvwlch/side.svg",
  30779. extra: 1605 / 1536,
  30780. bottom: 31 / 1636
  30781. }
  30782. },
  30783. back: {
  30784. height: math.unit(4, "meters"),
  30785. weight: math.unit(150, "kg"),
  30786. name: "Back",
  30787. image: {
  30788. source: "./media/characters/caledvwlch/back.svg",
  30789. extra: 1635 / 1565,
  30790. bottom: 27 / 1662
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "\"Incognito\"",
  30797. height: math.unit(4, "meters")
  30798. },
  30799. {
  30800. name: "Small rampage",
  30801. height: math.unit(600, "meters")
  30802. },
  30803. {
  30804. name: "Mega",
  30805. height: math.unit(30, "km")
  30806. },
  30807. {
  30808. name: "Home-size",
  30809. height: math.unit(50, "km"),
  30810. default: true
  30811. },
  30812. {
  30813. name: "Giga",
  30814. height: math.unit(300, "km")
  30815. },
  30816. {
  30817. name: "Lounging",
  30818. height: math.unit(11000, "km")
  30819. },
  30820. {
  30821. name: "Planet snacking",
  30822. height: math.unit(2000000, "km")
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30828. {
  30829. front: {
  30830. height: math.unit(6, "feet"),
  30831. weight: math.unit(215, "lb"),
  30832. name: "Front",
  30833. image: {
  30834. source: "./media/characters/sapphire-svell/front.svg",
  30835. extra: 495 / 455,
  30836. bottom: 20 / 515
  30837. }
  30838. },
  30839. back: {
  30840. height: math.unit(6, "feet"),
  30841. weight: math.unit(216, "lb"),
  30842. name: "Back",
  30843. image: {
  30844. source: "./media/characters/sapphire-svell/back.svg",
  30845. extra: 497 / 477,
  30846. bottom: 7 / 504
  30847. }
  30848. },
  30849. maw: {
  30850. height: math.unit(1.57, "feet"),
  30851. name: "Maw",
  30852. image: {
  30853. source: "./media/characters/sapphire-svell/maw.svg"
  30854. }
  30855. },
  30856. foot: {
  30857. height: math.unit(1.07, "feet"),
  30858. name: "Foot",
  30859. image: {
  30860. source: "./media/characters/sapphire-svell/foot.svg"
  30861. }
  30862. },
  30863. toering: {
  30864. height: math.unit(1.7, "inch"),
  30865. name: "Toering",
  30866. image: {
  30867. source: "./media/characters/sapphire-svell/toering.svg"
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(300, "feet"),
  30875. default: true
  30876. },
  30877. {
  30878. name: "Augmented",
  30879. height: math.unit(1250, "feet")
  30880. },
  30881. {
  30882. name: "Unleashed",
  30883. height: math.unit(3000, "feet")
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30889. {
  30890. side: {
  30891. height: math.unit(2 + 3 / 12, "feet"),
  30892. weight: math.unit(110, "lb"),
  30893. name: "Side",
  30894. image: {
  30895. source: "./media/characters/glitch-flux/side.svg",
  30896. extra: 997 / 805,
  30897. bottom: 20 / 1017
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(2 + 3 / 12, "feet"),
  30905. default: true
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30911. {
  30912. front: {
  30913. height: math.unit(4, "meters"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/mid/front.svg",
  30917. extra: 507 / 476,
  30918. bottom: 17 / 524
  30919. }
  30920. },
  30921. back: {
  30922. height: math.unit(4, "meters"),
  30923. name: "Back",
  30924. image: {
  30925. source: "./media/characters/mid/back.svg",
  30926. extra: 519 / 487,
  30927. bottom: 7 / 526
  30928. }
  30929. },
  30930. stuck: {
  30931. height: math.unit(2.2, "meters"),
  30932. name: "Stuck",
  30933. image: {
  30934. source: "./media/characters/mid/stuck.svg",
  30935. extra: 1951 / 1869,
  30936. bottom: 88 / 2039
  30937. }
  30938. }
  30939. },
  30940. [
  30941. {
  30942. name: "Normal",
  30943. height: math.unit(4, "meters"),
  30944. default: true
  30945. },
  30946. {
  30947. name: "Big",
  30948. height: math.unit(10, "meters")
  30949. },
  30950. {
  30951. name: "Macro",
  30952. height: math.unit(800, "meters")
  30953. },
  30954. {
  30955. name: "Megamacro",
  30956. height: math.unit(100, "km")
  30957. },
  30958. {
  30959. name: "Overgrown",
  30960. height: math.unit(1, "parsec")
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30966. {
  30967. front: {
  30968. height: math.unit(2.5, "meters"),
  30969. weight: math.unit(225, "kg"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/iris/front.svg",
  30973. extra: 3348 / 3251,
  30974. bottom: 205 / 3553
  30975. }
  30976. },
  30977. maw: {
  30978. height: math.unit(0.56, "meter"),
  30979. name: "Maw",
  30980. image: {
  30981. source: "./media/characters/iris/maw.svg"
  30982. }
  30983. },
  30984. },
  30985. [
  30986. {
  30987. name: "Mewter cat",
  30988. height: math.unit(1.2, "meters")
  30989. },
  30990. {
  30991. name: "Minimacro",
  30992. height: math.unit(2.5, "meters"),
  30993. default: true
  30994. },
  30995. {
  30996. name: "Macro",
  30997. height: math.unit(180, "meters")
  30998. },
  30999. {
  31000. name: "Megamacro",
  31001. height: math.unit(2746, "meters")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(6, "feet"),
  31010. weight: math.unit(135, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/axel/front.svg",
  31014. extra: 908 / 908,
  31015. bottom: 58 / 966
  31016. }
  31017. },
  31018. side: {
  31019. height: math.unit(6, "feet"),
  31020. weight: math.unit(135, "lb"),
  31021. name: "Side",
  31022. image: {
  31023. source: "./media/characters/axel/side.svg",
  31024. extra: 958 / 958,
  31025. bottom: 11 / 969
  31026. }
  31027. },
  31028. back: {
  31029. height: math.unit(6, "feet"),
  31030. weight: math.unit(135, "lb"),
  31031. name: "Back",
  31032. image: {
  31033. source: "./media/characters/axel/back.svg",
  31034. extra: 887 / 887,
  31035. bottom: 34 / 921
  31036. }
  31037. },
  31038. head: {
  31039. height: math.unit(1.07, "feet"),
  31040. name: "Head",
  31041. image: {
  31042. source: "./media/characters/axel/head.svg"
  31043. }
  31044. },
  31045. beak: {
  31046. height: math.unit(1.4, "feet"),
  31047. name: "Beak",
  31048. image: {
  31049. source: "./media/characters/axel/beak.svg"
  31050. }
  31051. },
  31052. beakSide: {
  31053. height: math.unit(1.4, "feet"),
  31054. name: "Beak Side",
  31055. image: {
  31056. source: "./media/characters/axel/beak-side.svg"
  31057. }
  31058. },
  31059. sheath: {
  31060. height: math.unit(0.5, "feet"),
  31061. name: "Sheath",
  31062. image: {
  31063. source: "./media/characters/axel/sheath.svg"
  31064. }
  31065. },
  31066. dick: {
  31067. height: math.unit(0.98, "feet"),
  31068. name: "Dick",
  31069. image: {
  31070. source: "./media/characters/axel/dick.svg"
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Macro",
  31077. height: math.unit(68, "meters"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(3.5, "meters"),
  31087. weight: math.unit(1200, "kg"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/joanna/front.svg",
  31091. extra: 1596 / 1488,
  31092. bottom: 29 / 1625
  31093. }
  31094. },
  31095. back: {
  31096. height: math.unit(3.5, "meters"),
  31097. weight: math.unit(1200, "kg"),
  31098. name: "Back",
  31099. image: {
  31100. source: "./media/characters/joanna/back.svg",
  31101. extra: 1594 / 1495,
  31102. bottom: 26 / 1620
  31103. }
  31104. },
  31105. frontShorts: {
  31106. height: math.unit(3.5, "meters"),
  31107. weight: math.unit(1200, "kg"),
  31108. name: "Front (Shorts)",
  31109. image: {
  31110. source: "./media/characters/joanna/front-shorts.svg",
  31111. extra: 1596 / 1488,
  31112. bottom: 29 / 1625
  31113. }
  31114. },
  31115. frontBiker: {
  31116. height: math.unit(3.5, "meters"),
  31117. weight: math.unit(1200, "kg"),
  31118. name: "Front (Biker)",
  31119. image: {
  31120. source: "./media/characters/joanna/front-biker.svg",
  31121. extra: 1596 / 1488,
  31122. bottom: 29 / 1625
  31123. }
  31124. },
  31125. backBiker: {
  31126. height: math.unit(3.5, "meters"),
  31127. weight: math.unit(1200, "kg"),
  31128. name: "Back (Biker)",
  31129. image: {
  31130. source: "./media/characters/joanna/back-biker.svg",
  31131. extra: 1594 / 1495,
  31132. bottom: 88 / 1682
  31133. }
  31134. },
  31135. bikeLeft: {
  31136. height: math.unit(2.4, "meters"),
  31137. weight: math.unit(1600, "kg"),
  31138. name: "Bike (Left)",
  31139. image: {
  31140. source: "./media/characters/joanna/bike-left.svg",
  31141. extra: 720 / 720,
  31142. bottom: 8 / 728
  31143. }
  31144. },
  31145. bikeRight: {
  31146. height: math.unit(2.4, "meters"),
  31147. weight: math.unit(1600, "kg"),
  31148. name: "Bike (Right)",
  31149. image: {
  31150. source: "./media/characters/joanna/bike-right.svg",
  31151. extra: 720 / 720,
  31152. bottom: 8 / 728
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Incognito",
  31159. height: math.unit(3.5, "meters")
  31160. },
  31161. {
  31162. name: "Casual Big",
  31163. height: math.unit(200, "meters")
  31164. },
  31165. {
  31166. name: "Macro",
  31167. height: math.unit(600, "meters")
  31168. },
  31169. {
  31170. name: "Original",
  31171. height: math.unit(20, "km"),
  31172. default: true
  31173. },
  31174. {
  31175. name: "Giga",
  31176. height: math.unit(400, "km")
  31177. },
  31178. {
  31179. name: "Lounging",
  31180. height: math.unit(1500, "km")
  31181. },
  31182. {
  31183. name: "Planetary",
  31184. height: math.unit(200000, "km")
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(6, "feet"),
  31193. weight: math.unit(150, "lb"),
  31194. name: "Front",
  31195. image: {
  31196. source: "./media/characters/hugo-sigil/front.svg",
  31197. extra: 522 / 500,
  31198. bottom: 2 / 524
  31199. }
  31200. },
  31201. back: {
  31202. height: math.unit(6, "feet"),
  31203. weight: math.unit(150, "lb"),
  31204. name: "Back",
  31205. image: {
  31206. source: "./media/characters/hugo-sigil/back.svg",
  31207. extra: 519 / 495,
  31208. bottom: 5 / 524
  31209. }
  31210. },
  31211. maw: {
  31212. height: math.unit(1.4, "feet"),
  31213. weight: math.unit(150, "lb"),
  31214. name: "Maw",
  31215. image: {
  31216. source: "./media/characters/hugo-sigil/maw.svg"
  31217. }
  31218. },
  31219. feet: {
  31220. height: math.unit(1.56, "feet"),
  31221. weight: math.unit(150, "lb"),
  31222. name: "Feet",
  31223. image: {
  31224. source: "./media/characters/hugo-sigil/feet.svg",
  31225. extra: 177 / 177,
  31226. bottom: 12 / 189
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(6, "feet")
  31234. },
  31235. {
  31236. name: "Macro",
  31237. height: math.unit(200, "feet"),
  31238. default: true
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(150, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/peri/front.svg",
  31251. extra: 2354 / 2233,
  31252. bottom: 49 / 2403
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Really Small",
  31259. height: math.unit(1, "nm")
  31260. },
  31261. {
  31262. name: "Micro",
  31263. height: math.unit(4, "inches")
  31264. },
  31265. {
  31266. name: "Normal",
  31267. height: math.unit(7, "inches"),
  31268. default: true
  31269. },
  31270. {
  31271. name: "Macro",
  31272. height: math.unit(400, "feet")
  31273. },
  31274. {
  31275. name: "Megamacro",
  31276. height: math.unit(100, "miles")
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31282. {
  31283. frontSlim: {
  31284. height: math.unit(7, "feet"),
  31285. name: "Front (Slim)",
  31286. image: {
  31287. source: "./media/characters/issilora/front-slim.svg",
  31288. extra: 529 / 449,
  31289. bottom: 53 / 582
  31290. }
  31291. },
  31292. sideSlim: {
  31293. height: math.unit(7, "feet"),
  31294. name: "Side (Slim)",
  31295. image: {
  31296. source: "./media/characters/issilora/side-slim.svg",
  31297. extra: 570 / 480,
  31298. bottom: 30 / 600
  31299. }
  31300. },
  31301. backSlim: {
  31302. height: math.unit(7, "feet"),
  31303. name: "Back (Slim)",
  31304. image: {
  31305. source: "./media/characters/issilora/back-slim.svg",
  31306. extra: 537 / 455,
  31307. bottom: 46 / 583
  31308. }
  31309. },
  31310. frontBuff: {
  31311. height: math.unit(7, "feet"),
  31312. name: "Front (Buff)",
  31313. image: {
  31314. source: "./media/characters/issilora/front-buff.svg",
  31315. extra: 2310 / 2035,
  31316. bottom: 335 / 2645
  31317. }
  31318. },
  31319. head: {
  31320. height: math.unit(1.94, "feet"),
  31321. name: "Head",
  31322. image: {
  31323. source: "./media/characters/issilora/head.svg"
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Minimum",
  31330. height: math.unit(7, "feet")
  31331. },
  31332. {
  31333. name: "Comfortable",
  31334. height: math.unit(17, "feet")
  31335. },
  31336. {
  31337. name: "Fun Size",
  31338. height: math.unit(47, "feet")
  31339. },
  31340. {
  31341. name: "Natural Macro",
  31342. height: math.unit(137, "feet"),
  31343. default: true
  31344. },
  31345. {
  31346. name: "Maximum Kaiju",
  31347. height: math.unit(397, "feet")
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31353. {
  31354. front: {
  31355. height: math.unit(50 + 9/12, "feet"),
  31356. weight: math.unit(32.8, "tons"),
  31357. name: "Front",
  31358. image: {
  31359. source: "./media/characters/irb'iiritaahn/front.svg",
  31360. extra: 1878/1826,
  31361. bottom: 326/2204
  31362. }
  31363. },
  31364. back: {
  31365. height: math.unit(50 + 9/12, "feet"),
  31366. weight: math.unit(32.8, "tons"),
  31367. name: "Back",
  31368. image: {
  31369. source: "./media/characters/irb'iiritaahn/back.svg",
  31370. extra: 2052/2018,
  31371. bottom: 152/2204
  31372. }
  31373. },
  31374. head: {
  31375. height: math.unit(12.86, "feet"),
  31376. name: "Head",
  31377. image: {
  31378. source: "./media/characters/irb'iiritaahn/head.svg"
  31379. }
  31380. },
  31381. maw: {
  31382. height: math.unit(9.66, "feet"),
  31383. name: "Maw",
  31384. image: {
  31385. source: "./media/characters/irb'iiritaahn/maw.svg"
  31386. }
  31387. },
  31388. frontDick: {
  31389. height: math.unit(8.78461, "feet"),
  31390. name: "Front Dick",
  31391. image: {
  31392. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31393. }
  31394. },
  31395. rearDick: {
  31396. height: math.unit(8.78461, "feet"),
  31397. name: "Rear Dick",
  31398. image: {
  31399. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31400. }
  31401. },
  31402. rearDickUnfolded: {
  31403. height: math.unit(8.78, "feet"),
  31404. name: "Rear Dick (Unfolded)",
  31405. image: {
  31406. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31407. }
  31408. },
  31409. wings: {
  31410. height: math.unit(43, "feet"),
  31411. name: "Wings",
  31412. image: {
  31413. source: "./media/characters/irb'iiritaahn/wings.svg"
  31414. }
  31415. },
  31416. },
  31417. [
  31418. {
  31419. name: "Macro",
  31420. height: math.unit(50 + 9/12, "feet"),
  31421. default: true
  31422. },
  31423. ]
  31424. ))
  31425. characterMakers.push(() => makeCharacter(
  31426. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31427. {
  31428. front: {
  31429. height: math.unit(205, "cm"),
  31430. weight: math.unit(102, "kg"),
  31431. name: "Front",
  31432. image: {
  31433. source: "./media/characters/irbisgreif/front.svg",
  31434. extra: 785/706,
  31435. bottom: 13/798
  31436. }
  31437. },
  31438. back: {
  31439. height: math.unit(205, "cm"),
  31440. weight: math.unit(102, "kg"),
  31441. name: "Back",
  31442. image: {
  31443. source: "./media/characters/irbisgreif/back.svg",
  31444. extra: 713/701,
  31445. bottom: 26/739
  31446. }
  31447. },
  31448. frontDressed: {
  31449. height: math.unit(216, "cm"),
  31450. weight: math.unit(102, "kg"),
  31451. name: "Front-dressed",
  31452. image: {
  31453. source: "./media/characters/irbisgreif/front-dressed.svg",
  31454. extra: 902/776,
  31455. bottom: 14/916
  31456. }
  31457. },
  31458. sideDressed: {
  31459. height: math.unit(195, "cm"),
  31460. weight: math.unit(102, "kg"),
  31461. name: "Side-dressed",
  31462. image: {
  31463. source: "./media/characters/irbisgreif/side-dressed.svg",
  31464. extra: 788/688,
  31465. bottom: 21/809
  31466. }
  31467. },
  31468. backDressed: {
  31469. height: math.unit(216, "cm"),
  31470. weight: math.unit(102, "kg"),
  31471. name: "Back-dressed",
  31472. image: {
  31473. source: "./media/characters/irbisgreif/back-dressed.svg",
  31474. extra: 901/783,
  31475. bottom: 10/911
  31476. }
  31477. },
  31478. dick: {
  31479. height: math.unit(0.49, "feet"),
  31480. name: "Dick",
  31481. image: {
  31482. source: "./media/characters/irbisgreif/dick.svg"
  31483. }
  31484. },
  31485. wingTop: {
  31486. height: math.unit(1.93 , "feet"),
  31487. name: "Wing-top",
  31488. image: {
  31489. source: "./media/characters/irbisgreif/wing-top.svg"
  31490. }
  31491. },
  31492. wingBottom: {
  31493. height: math.unit(1.93 , "feet"),
  31494. name: "Wing-bottom",
  31495. image: {
  31496. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Normal",
  31503. height: math.unit(216, "cm"),
  31504. default: true
  31505. },
  31506. ]
  31507. ))
  31508. characterMakers.push(() => makeCharacter(
  31509. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31510. {
  31511. front: {
  31512. height: math.unit(6, "feet"),
  31513. weight: math.unit(150, "lb"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/pride/front.svg",
  31517. extra: 1299/1230,
  31518. bottom: 18/1317
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(7, "feet")
  31526. },
  31527. {
  31528. name: "Mini-macro",
  31529. height: math.unit(11, "feet")
  31530. },
  31531. {
  31532. name: "Macro",
  31533. height: math.unit(15, "meters"),
  31534. default: true
  31535. },
  31536. {
  31537. name: "Macro+",
  31538. height: math.unit(40, "meters")
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31544. {
  31545. front: {
  31546. height: math.unit(4 + 2 / 12, "feet"),
  31547. weight: math.unit(95, "lb"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/vaelophis-nyx/front.svg",
  31551. extra: 2532/2330,
  31552. bottom: 0/2532
  31553. }
  31554. },
  31555. back: {
  31556. height: math.unit(4 + 2 / 12, "feet"),
  31557. weight: math.unit(95, "lb"),
  31558. name: "Back",
  31559. image: {
  31560. source: "./media/characters/vaelophis-nyx/back.svg",
  31561. extra: 2484/2361,
  31562. bottom: 0/2484
  31563. }
  31564. },
  31565. feralSide: {
  31566. height: math.unit(2 + 1/12, "feet"),
  31567. weight: math.unit(20, "lb"),
  31568. name: "Feral (Side)",
  31569. image: {
  31570. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31571. extra: 1721/1581,
  31572. bottom: 70/1791
  31573. }
  31574. },
  31575. feralLazing: {
  31576. height: math.unit(1.08, "feet"),
  31577. weight: math.unit(20, "lb"),
  31578. name: "Feral (Lazing)",
  31579. image: {
  31580. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31581. extra: 822/822,
  31582. bottom: 248/1070
  31583. }
  31584. },
  31585. ear: {
  31586. height: math.unit(0.416, "feet"),
  31587. name: "Ear",
  31588. image: {
  31589. source: "./media/characters/vaelophis-nyx/ear.svg"
  31590. }
  31591. },
  31592. eye: {
  31593. height: math.unit(0.0748, "feet"),
  31594. name: "Eye",
  31595. image: {
  31596. source: "./media/characters/vaelophis-nyx/eye.svg"
  31597. }
  31598. },
  31599. mouth: {
  31600. height: math.unit(0.378, "feet"),
  31601. name: "Mouth",
  31602. image: {
  31603. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31604. }
  31605. },
  31606. spade: {
  31607. height: math.unit(0.55, "feet"),
  31608. name: "Spade",
  31609. image: {
  31610. source: "./media/characters/vaelophis-nyx/spade.svg"
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Normal",
  31617. height: math.unit(4 + 2/12, "feet"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31624. {
  31625. front: {
  31626. height: math.unit(7, "feet"),
  31627. weight: math.unit(231, "lb"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/flux/front.svg",
  31631. extra: 919/871,
  31632. bottom: 0/919
  31633. }
  31634. },
  31635. back: {
  31636. height: math.unit(7, "feet"),
  31637. weight: math.unit(231, "lb"),
  31638. name: "Back",
  31639. image: {
  31640. source: "./media/characters/flux/back.svg",
  31641. extra: 1040/992,
  31642. bottom: 0/1040
  31643. }
  31644. },
  31645. frontDressed: {
  31646. height: math.unit(7, "feet"),
  31647. weight: math.unit(231, "lb"),
  31648. name: "Front (Dressed)",
  31649. image: {
  31650. source: "./media/characters/flux/front-dressed.svg",
  31651. extra: 919/871,
  31652. bottom: 0/919
  31653. }
  31654. },
  31655. feralSide: {
  31656. height: math.unit(5, "feet"),
  31657. weight: math.unit(150, "lb"),
  31658. name: "Feral (Side)",
  31659. image: {
  31660. source: "./media/characters/flux/feral-side.svg",
  31661. extra: 598/528,
  31662. bottom: 28/626
  31663. }
  31664. },
  31665. head: {
  31666. height: math.unit(1.585, "feet"),
  31667. name: "Head",
  31668. image: {
  31669. source: "./media/characters/flux/head.svg"
  31670. }
  31671. },
  31672. headSide: {
  31673. height: math.unit(1.74, "feet"),
  31674. name: "Head (Side)",
  31675. image: {
  31676. source: "./media/characters/flux/head-side.svg"
  31677. }
  31678. },
  31679. headSideFire: {
  31680. height: math.unit(1.76, "feet"),
  31681. name: "Head (Side, Fire)",
  31682. image: {
  31683. source: "./media/characters/flux/head-side-fire.svg"
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Normal",
  31690. height: math.unit(7, "feet"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(9, "feet"),
  31700. weight: math.unit(1012, "lb"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/ulfra-lupae/front.svg",
  31704. extra: 1083/1011,
  31705. bottom: 67/1150
  31706. }
  31707. },
  31708. },
  31709. [
  31710. {
  31711. name: "Micro",
  31712. height: math.unit(6, "inches")
  31713. },
  31714. {
  31715. name: "Socializing",
  31716. height: math.unit(6 + 5/12, "feet")
  31717. },
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(9, "feet"),
  31721. default: true
  31722. },
  31723. {
  31724. name: "Macro",
  31725. height: math.unit(150, "feet")
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(5 + 2/12, "feet"),
  31734. weight: math.unit(120, "lb"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/timber/front.svg",
  31738. extra: 2814/2705,
  31739. bottom: 181/2995
  31740. }
  31741. },
  31742. },
  31743. [
  31744. {
  31745. name: "Normal",
  31746. height: math.unit(5 + 2/12, "feet"),
  31747. default: true
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(9, "feet"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/nicki/front.svg",
  31759. extra: 1240/990,
  31760. bottom: 45/1285
  31761. },
  31762. form: "anthro",
  31763. default: true
  31764. },
  31765. side: {
  31766. height: math.unit(9, "feet"),
  31767. name: "Side",
  31768. image: {
  31769. source: "./media/characters/nicki/side.svg",
  31770. extra: 1047/973,
  31771. bottom: 61/1108
  31772. },
  31773. form: "anthro"
  31774. },
  31775. back: {
  31776. height: math.unit(9, "feet"),
  31777. name: "Back",
  31778. image: {
  31779. source: "./media/characters/nicki/back.svg",
  31780. extra: 1006/965,
  31781. bottom: 39/1045
  31782. },
  31783. form: "anthro"
  31784. },
  31785. taur: {
  31786. height: math.unit(15, "feet"),
  31787. name: "Taur",
  31788. image: {
  31789. source: "./media/characters/nicki/taur.svg",
  31790. extra: 1592/1347,
  31791. bottom: 0/1592
  31792. },
  31793. form: "taur",
  31794. default: true
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Normal",
  31800. height: math.unit(9, "feet"),
  31801. form: "anthro",
  31802. default: true
  31803. },
  31804. {
  31805. name: "Normal",
  31806. height: math.unit(15, "feet"),
  31807. form: "taur",
  31808. default: true
  31809. }
  31810. ],
  31811. {
  31812. "anthro": {
  31813. name: "Anthro",
  31814. default: true
  31815. },
  31816. "taur": {
  31817. name: "Taur"
  31818. }
  31819. }
  31820. ))
  31821. characterMakers.push(() => makeCharacter(
  31822. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31823. {
  31824. front: {
  31825. height: math.unit(7 + 10/12, "feet"),
  31826. weight: math.unit(3.5, "tons"),
  31827. name: "Front",
  31828. image: {
  31829. source: "./media/characters/lee/front.svg",
  31830. extra: 1773/1615,
  31831. bottom: 86/1859
  31832. }
  31833. },
  31834. hand: {
  31835. height: math.unit(1.78, "feet"),
  31836. name: "Hand",
  31837. image: {
  31838. source: "./media/characters/lee/hand.svg"
  31839. }
  31840. },
  31841. maw: {
  31842. height: math.unit(1.18, "feet"),
  31843. name: "Maw",
  31844. image: {
  31845. source: "./media/characters/lee/maw.svg"
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Normal",
  31852. height: math.unit(7 + 10/12, "feet"),
  31853. default: true
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31859. {
  31860. front: {
  31861. height: math.unit(9, "feet"),
  31862. name: "Front",
  31863. image: {
  31864. source: "./media/characters/guti/front.svg",
  31865. extra: 4551/4355,
  31866. bottom: 123/4674
  31867. }
  31868. },
  31869. tongue: {
  31870. height: math.unit(1, "feet"),
  31871. name: "Tongue",
  31872. image: {
  31873. source: "./media/characters/guti/tongue.svg"
  31874. }
  31875. },
  31876. paw: {
  31877. height: math.unit(1.18, "feet"),
  31878. name: "Paw",
  31879. image: {
  31880. source: "./media/characters/guti/paw.svg"
  31881. }
  31882. },
  31883. },
  31884. [
  31885. {
  31886. name: "Normal",
  31887. height: math.unit(9, "feet"),
  31888. default: true
  31889. },
  31890. ]
  31891. ))
  31892. characterMakers.push(() => makeCharacter(
  31893. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31894. {
  31895. side: {
  31896. height: math.unit(5, "meters"),
  31897. name: "Side",
  31898. image: {
  31899. source: "./media/characters/vesper/side.svg",
  31900. extra: 1605/1518,
  31901. bottom: 0/1605
  31902. }
  31903. },
  31904. },
  31905. [
  31906. {
  31907. name: "Small",
  31908. height: math.unit(5, "meters")
  31909. },
  31910. {
  31911. name: "Sage",
  31912. height: math.unit(100, "meters"),
  31913. default: true
  31914. },
  31915. {
  31916. name: "Fun Size",
  31917. height: math.unit(600, "meters")
  31918. },
  31919. {
  31920. name: "Goddess",
  31921. height: math.unit(20000, "km")
  31922. },
  31923. {
  31924. name: "Maximum",
  31925. height: math.unit(5, "galaxies")
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31931. {
  31932. front: {
  31933. height: math.unit(6 + 3/12, "feet"),
  31934. weight: math.unit(190, "lb"),
  31935. name: "Front",
  31936. image: {
  31937. source: "./media/characters/gawain/front.svg",
  31938. extra: 2222/2139,
  31939. bottom: 90/2312
  31940. }
  31941. },
  31942. back: {
  31943. height: math.unit(6 + 3/12, "feet"),
  31944. weight: math.unit(190, "lb"),
  31945. name: "Back",
  31946. image: {
  31947. source: "./media/characters/gawain/back.svg",
  31948. extra: 2199/2111,
  31949. bottom: 73/2272
  31950. }
  31951. },
  31952. },
  31953. [
  31954. {
  31955. name: "Normal",
  31956. height: math.unit(6 + 3/12, "feet"),
  31957. default: true
  31958. },
  31959. ]
  31960. ))
  31961. characterMakers.push(() => makeCharacter(
  31962. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31963. {
  31964. side: {
  31965. height: math.unit(3.5, "meters"),
  31966. weight: math.unit(16000, "lb"),
  31967. name: "Side",
  31968. image: {
  31969. source: "./media/characters/dascalti/side.svg",
  31970. extra: 392/273,
  31971. bottom: 47/439
  31972. }
  31973. },
  31974. breath: {
  31975. height: math.unit(7.4, "feet"),
  31976. name: "Breath",
  31977. image: {
  31978. source: "./media/characters/dascalti/breath.svg"
  31979. }
  31980. },
  31981. fed: {
  31982. height: math.unit(3.6, "meters"),
  31983. weight: math.unit(16000, "lb"),
  31984. name: "Fed",
  31985. image: {
  31986. source: "./media/characters/dascalti/fed.svg",
  31987. extra: 1419/820,
  31988. bottom: 95/1514
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(3.5, "meters"),
  31996. default: true
  31997. },
  31998. ]
  31999. ))
  32000. characterMakers.push(() => makeCharacter(
  32001. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32002. {
  32003. front: {
  32004. height: math.unit(3 + 5/12, "feet"),
  32005. name: "Front",
  32006. image: {
  32007. source: "./media/characters/mauve/front.svg",
  32008. extra: 1126/1033,
  32009. bottom: 65/1191
  32010. }
  32011. },
  32012. side: {
  32013. height: math.unit(3 + 5/12, "feet"),
  32014. name: "Side",
  32015. image: {
  32016. source: "./media/characters/mauve/side.svg",
  32017. extra: 1089/1001,
  32018. bottom: 29/1118
  32019. }
  32020. },
  32021. back: {
  32022. height: math.unit(3 + 5/12, "feet"),
  32023. name: "Back",
  32024. image: {
  32025. source: "./media/characters/mauve/back.svg",
  32026. extra: 1173/1053,
  32027. bottom: 109/1282
  32028. }
  32029. },
  32030. },
  32031. [
  32032. {
  32033. name: "Normal",
  32034. height: math.unit(3 + 5/12, "feet"),
  32035. default: true
  32036. },
  32037. ]
  32038. ))
  32039. characterMakers.push(() => makeCharacter(
  32040. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32041. {
  32042. front: {
  32043. height: math.unit(6 + 3/12, "feet"),
  32044. weight: math.unit(430, "lb"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/carlos/front.svg",
  32048. extra: 1964/1913,
  32049. bottom: 70/2034
  32050. }
  32051. },
  32052. },
  32053. [
  32054. {
  32055. name: "Normal",
  32056. height: math.unit(6 + 3/12, "feet"),
  32057. default: true
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32063. {
  32064. back: {
  32065. height: math.unit(5 + 10/12, "feet"),
  32066. weight: math.unit(200, "lb"),
  32067. name: "Back",
  32068. image: {
  32069. source: "./media/characters/jax/back.svg",
  32070. extra: 764/739,
  32071. bottom: 25/789
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Normal",
  32078. height: math.unit(5 + 10/12, "feet"),
  32079. default: true
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32085. {
  32086. front: {
  32087. height: math.unit(8, "feet"),
  32088. weight: math.unit(250, "lb"),
  32089. name: "Front",
  32090. image: {
  32091. source: "./media/characters/eikthynir/front.svg",
  32092. extra: 1332/1166,
  32093. bottom: 82/1414
  32094. }
  32095. },
  32096. back: {
  32097. height: math.unit(8, "feet"),
  32098. weight: math.unit(250, "lb"),
  32099. name: "Back",
  32100. image: {
  32101. source: "./media/characters/eikthynir/back.svg",
  32102. extra: 1342/1190,
  32103. bottom: 19/1361
  32104. }
  32105. },
  32106. dick: {
  32107. height: math.unit(2.35, "feet"),
  32108. name: "Dick",
  32109. image: {
  32110. source: "./media/characters/eikthynir/dick.svg"
  32111. }
  32112. },
  32113. },
  32114. [
  32115. {
  32116. name: "Normal",
  32117. height: math.unit(8, "feet"),
  32118. default: true
  32119. },
  32120. ]
  32121. ))
  32122. characterMakers.push(() => makeCharacter(
  32123. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32124. {
  32125. front: {
  32126. height: math.unit(99, "meters"),
  32127. weight: math.unit(13000, "tons"),
  32128. name: "Front",
  32129. image: {
  32130. source: "./media/characters/zlmos/front.svg",
  32131. extra: 2202/1992,
  32132. bottom: 315/2517
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Macro",
  32139. height: math.unit(99, "meters"),
  32140. default: true
  32141. },
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32146. {
  32147. front: {
  32148. height: math.unit(6 + 5/12, "feet"),
  32149. name: "Front",
  32150. image: {
  32151. source: "./media/characters/purri/front.svg",
  32152. extra: 1698/1610,
  32153. bottom: 32/1730
  32154. }
  32155. },
  32156. frontAlt: {
  32157. height: math.unit(6 + 5/12, "feet"),
  32158. name: "Front (Alt)",
  32159. image: {
  32160. source: "./media/characters/purri/front-alt.svg",
  32161. extra: 450/420,
  32162. bottom: 26/476
  32163. }
  32164. },
  32165. boots: {
  32166. height: math.unit(5.5, "feet"),
  32167. name: "Boots",
  32168. image: {
  32169. source: "./media/characters/purri/boots.svg",
  32170. extra: 905/853,
  32171. bottom: 18/923
  32172. }
  32173. },
  32174. lying: {
  32175. height: math.unit(2, "feet"),
  32176. name: "Lying",
  32177. image: {
  32178. source: "./media/characters/purri/lying.svg",
  32179. extra: 940/843,
  32180. bottom: 146/1086
  32181. }
  32182. },
  32183. devious: {
  32184. height: math.unit(1.77, "feet"),
  32185. name: "Devious",
  32186. image: {
  32187. source: "./media/characters/purri/devious.svg",
  32188. extra: 1440/1155,
  32189. bottom: 147/1587
  32190. }
  32191. },
  32192. bean: {
  32193. height: math.unit(1.94, "feet"),
  32194. name: "Bean",
  32195. image: {
  32196. source: "./media/characters/purri/bean.svg"
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Micro",
  32203. height: math.unit(1, "mm")
  32204. },
  32205. {
  32206. name: "Normal",
  32207. height: math.unit(6 + 5/12, "feet"),
  32208. default: true
  32209. },
  32210. {
  32211. name: "Macro :3c",
  32212. height: math.unit(2, "miles")
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32218. {
  32219. front: {
  32220. height: math.unit(6 + 2/12, "feet"),
  32221. weight: math.unit(250, "lb"),
  32222. name: "Front",
  32223. image: {
  32224. source: "./media/characters/moonlight/front.svg",
  32225. extra: 1044/908,
  32226. bottom: 56/1100
  32227. }
  32228. },
  32229. feral: {
  32230. height: math.unit(3 + 1/12, "feet"),
  32231. weight: math.unit(50, "kg"),
  32232. name: "Feral",
  32233. image: {
  32234. source: "./media/characters/moonlight/feral.svg",
  32235. extra: 3705/2791,
  32236. bottom: 145/3850
  32237. }
  32238. },
  32239. paw: {
  32240. height: math.unit(1, "feet"),
  32241. name: "Paw",
  32242. image: {
  32243. source: "./media/characters/moonlight/paw.svg"
  32244. }
  32245. },
  32246. paws: {
  32247. height: math.unit(0.98, "feet"),
  32248. name: "Paws",
  32249. image: {
  32250. source: "./media/characters/moonlight/paws.svg",
  32251. extra: 939/939,
  32252. bottom: 50/989
  32253. }
  32254. },
  32255. mouth: {
  32256. height: math.unit(0.48, "feet"),
  32257. name: "Mouth",
  32258. image: {
  32259. source: "./media/characters/moonlight/mouth.svg"
  32260. }
  32261. },
  32262. dick: {
  32263. height: math.unit(1.46, "feet"),
  32264. name: "Dick",
  32265. image: {
  32266. source: "./media/characters/moonlight/dick.svg"
  32267. }
  32268. },
  32269. },
  32270. [
  32271. {
  32272. name: "Normal",
  32273. height: math.unit(6 + 2/12, "feet"),
  32274. default: true
  32275. },
  32276. {
  32277. name: "Macro",
  32278. height: math.unit(300, "feet")
  32279. },
  32280. {
  32281. name: "Macro+",
  32282. height: math.unit(1, "mile")
  32283. },
  32284. {
  32285. name: "Mt. Moon",
  32286. height: math.unit(5, "miles")
  32287. },
  32288. {
  32289. name: "Megamacro",
  32290. height: math.unit(15, "miles")
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32296. {
  32297. back: {
  32298. height: math.unit(6, "feet"),
  32299. weight: math.unit(150, "lb"),
  32300. name: "Back",
  32301. image: {
  32302. source: "./media/characters/sylen/back.svg",
  32303. extra: 1335/1273,
  32304. bottom: 107/1442
  32305. }
  32306. },
  32307. },
  32308. [
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(5 + 5/12, "feet")
  32312. },
  32313. {
  32314. name: "Megamacro",
  32315. height: math.unit(3, "miles"),
  32316. default: true
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32322. {
  32323. front: {
  32324. height: math.unit(6, "feet"),
  32325. weight: math.unit(190, "lb"),
  32326. name: "Front",
  32327. image: {
  32328. source: "./media/characters/huttser/front.svg",
  32329. extra: 1152/1058,
  32330. bottom: 23/1175
  32331. }
  32332. },
  32333. side: {
  32334. height: math.unit(6, "feet"),
  32335. weight: math.unit(190, "lb"),
  32336. name: "Side",
  32337. image: {
  32338. source: "./media/characters/huttser/side.svg",
  32339. extra: 1174/1065,
  32340. bottom: 18/1192
  32341. }
  32342. },
  32343. back: {
  32344. height: math.unit(6, "feet"),
  32345. weight: math.unit(190, "lb"),
  32346. name: "Back",
  32347. image: {
  32348. source: "./media/characters/huttser/back.svg",
  32349. extra: 1158/1056,
  32350. bottom: 12/1170
  32351. }
  32352. },
  32353. },
  32354. [
  32355. ]
  32356. ))
  32357. characterMakers.push(() => makeCharacter(
  32358. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32359. {
  32360. side: {
  32361. height: math.unit(12 + 9/12, "feet"),
  32362. weight: math.unit(15000, "lb"),
  32363. name: "Side",
  32364. image: {
  32365. source: "./media/characters/faan/side.svg",
  32366. extra: 2747/2697,
  32367. bottom: 0/2747
  32368. }
  32369. },
  32370. front: {
  32371. height: math.unit(12 + 9/12, "feet"),
  32372. weight: math.unit(15000, "lb"),
  32373. name: "Front",
  32374. image: {
  32375. source: "./media/characters/faan/front.svg",
  32376. extra: 607/571,
  32377. bottom: 24/631
  32378. }
  32379. },
  32380. head: {
  32381. height: math.unit(2.85, "feet"),
  32382. name: "Head",
  32383. image: {
  32384. source: "./media/characters/faan/head.svg"
  32385. }
  32386. },
  32387. headAlt: {
  32388. height: math.unit(3.13, "feet"),
  32389. name: "Head-alt",
  32390. image: {
  32391. source: "./media/characters/faan/head-alt.svg"
  32392. }
  32393. },
  32394. },
  32395. [
  32396. {
  32397. name: "Normal",
  32398. height: math.unit(12 + 9/12, "feet"),
  32399. default: true
  32400. },
  32401. ]
  32402. ))
  32403. characterMakers.push(() => makeCharacter(
  32404. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32405. {
  32406. front: {
  32407. height: math.unit(6, "feet"),
  32408. weight: math.unit(300, "lb"),
  32409. name: "Front",
  32410. image: {
  32411. source: "./media/characters/tanio/front.svg",
  32412. extra: 711/673,
  32413. bottom: 25/736
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Normal",
  32420. height: math.unit(6, "feet"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32427. {
  32428. front: {
  32429. height: math.unit(3, "inches"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/noboru/front.svg",
  32433. extra: 1039/932,
  32434. bottom: 18/1057
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Micro",
  32441. height: math.unit(3, "inches"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32448. {
  32449. front: {
  32450. height: math.unit(1.85, "meters"),
  32451. weight: math.unit(80, "kg"),
  32452. name: "Front",
  32453. image: {
  32454. source: "./media/characters/daniel-barrett/front.svg",
  32455. extra: 355/337,
  32456. bottom: 9/364
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Pico",
  32463. height: math.unit(0.0433, "mm")
  32464. },
  32465. {
  32466. name: "Nano",
  32467. height: math.unit(1.5, "mm")
  32468. },
  32469. {
  32470. name: "Micro",
  32471. height: math.unit(5.3, "cm"),
  32472. default: true
  32473. },
  32474. {
  32475. name: "Normal",
  32476. height: math.unit(1.85, "meters")
  32477. },
  32478. {
  32479. name: "Macro",
  32480. height: math.unit(64.7, "meters")
  32481. },
  32482. {
  32483. name: "Megamacro",
  32484. height: math.unit(2.26, "km")
  32485. },
  32486. {
  32487. name: "Gigamacro",
  32488. height: math.unit(79, "km")
  32489. },
  32490. {
  32491. name: "Teramacro",
  32492. height: math.unit(2765, "km")
  32493. },
  32494. {
  32495. name: "Petamacro",
  32496. height: math.unit(96678, "km")
  32497. },
  32498. ]
  32499. ))
  32500. characterMakers.push(() => makeCharacter(
  32501. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32502. {
  32503. front: {
  32504. height: math.unit(30, "meters"),
  32505. weight: math.unit(400, "tons"),
  32506. name: "Front",
  32507. image: {
  32508. source: "./media/characters/zeel/front.svg",
  32509. extra: 2599/2599,
  32510. bottom: 226/2825
  32511. }
  32512. },
  32513. },
  32514. [
  32515. {
  32516. name: "Macro",
  32517. height: math.unit(30, "meters"),
  32518. default: true
  32519. },
  32520. ]
  32521. ))
  32522. characterMakers.push(() => makeCharacter(
  32523. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32524. {
  32525. front: {
  32526. height: math.unit(6 + 7/12, "feet"),
  32527. weight: math.unit(210, "lb"),
  32528. name: "Front",
  32529. image: {
  32530. source: "./media/characters/tarn/front.svg",
  32531. extra: 3517/3220,
  32532. bottom: 91/3608
  32533. }
  32534. },
  32535. back: {
  32536. height: math.unit(6 + 7/12, "feet"),
  32537. weight: math.unit(210, "lb"),
  32538. name: "Back",
  32539. image: {
  32540. source: "./media/characters/tarn/back.svg",
  32541. extra: 3566/3241,
  32542. bottom: 34/3600
  32543. }
  32544. },
  32545. dick: {
  32546. height: math.unit(1.65, "feet"),
  32547. name: "Dick",
  32548. image: {
  32549. source: "./media/characters/tarn/dick.svg"
  32550. }
  32551. },
  32552. paw: {
  32553. height: math.unit(1.80, "feet"),
  32554. name: "Paw",
  32555. image: {
  32556. source: "./media/characters/tarn/paw.svg"
  32557. }
  32558. },
  32559. tongue: {
  32560. height: math.unit(0.97, "feet"),
  32561. name: "Tongue",
  32562. image: {
  32563. source: "./media/characters/tarn/tongue.svg"
  32564. }
  32565. },
  32566. },
  32567. [
  32568. {
  32569. name: "Micro",
  32570. height: math.unit(4, "inches")
  32571. },
  32572. {
  32573. name: "Normal",
  32574. height: math.unit(6 + 7/12, "feet"),
  32575. default: true
  32576. },
  32577. {
  32578. name: "Macro",
  32579. height: math.unit(300, "feet")
  32580. },
  32581. ]
  32582. ))
  32583. characterMakers.push(() => makeCharacter(
  32584. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32585. {
  32586. front: {
  32587. height: math.unit(5 + 7/12, "feet"),
  32588. weight: math.unit(80, "kg"),
  32589. name: "Front",
  32590. image: {
  32591. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32592. extra: 3023/2865,
  32593. bottom: 33/3056
  32594. }
  32595. },
  32596. back: {
  32597. height: math.unit(5 + 7/12, "feet"),
  32598. weight: math.unit(80, "kg"),
  32599. name: "Back",
  32600. image: {
  32601. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32602. extra: 3020/2886,
  32603. bottom: 30/3050
  32604. }
  32605. },
  32606. dick: {
  32607. height: math.unit(0.98, "feet"),
  32608. name: "Dick",
  32609. image: {
  32610. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32611. }
  32612. },
  32613. anatomy: {
  32614. height: math.unit(2.86, "feet"),
  32615. name: "Anatomy",
  32616. image: {
  32617. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32618. }
  32619. },
  32620. },
  32621. [
  32622. {
  32623. name: "Really Small",
  32624. height: math.unit(2, "inches")
  32625. },
  32626. {
  32627. name: "Micro",
  32628. height: math.unit(5.583, "inches")
  32629. },
  32630. {
  32631. name: "Normal",
  32632. height: math.unit(5 + 7/12, "feet"),
  32633. default: true
  32634. },
  32635. {
  32636. name: "Macro",
  32637. height: math.unit(67, "feet")
  32638. },
  32639. {
  32640. name: "Megamacro",
  32641. height: math.unit(134, "feet")
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32647. {
  32648. front: {
  32649. height: math.unit(9, "feet"),
  32650. weight: math.unit(120, "lb"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/sally/front.svg",
  32654. extra: 1506/1349,
  32655. bottom: 66/1572
  32656. }
  32657. },
  32658. },
  32659. [
  32660. {
  32661. name: "Normal",
  32662. height: math.unit(9, "feet"),
  32663. default: true
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32669. {
  32670. front: {
  32671. height: math.unit(8, "feet"),
  32672. weight: math.unit(900, "lb"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/owen/front.svg",
  32676. extra: 1761/1657,
  32677. bottom: 74/1835
  32678. }
  32679. },
  32680. side: {
  32681. height: math.unit(8, "feet"),
  32682. weight: math.unit(900, "lb"),
  32683. name: "Side",
  32684. image: {
  32685. source: "./media/characters/owen/side.svg",
  32686. extra: 1797/1734,
  32687. bottom: 30/1827
  32688. }
  32689. },
  32690. back: {
  32691. height: math.unit(8, "feet"),
  32692. weight: math.unit(900, "lb"),
  32693. name: "Back",
  32694. image: {
  32695. source: "./media/characters/owen/back.svg",
  32696. extra: 1796/1706,
  32697. bottom: 59/1855
  32698. }
  32699. },
  32700. maw: {
  32701. height: math.unit(1.76, "feet"),
  32702. name: "Maw",
  32703. image: {
  32704. source: "./media/characters/owen/maw.svg"
  32705. }
  32706. },
  32707. },
  32708. [
  32709. {
  32710. name: "Normal",
  32711. height: math.unit(8, "feet"),
  32712. default: true
  32713. },
  32714. ]
  32715. ))
  32716. characterMakers.push(() => makeCharacter(
  32717. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32718. {
  32719. front: {
  32720. height: math.unit(4, "feet"),
  32721. weight: math.unit(400, "lb"),
  32722. name: "Front",
  32723. image: {
  32724. source: "./media/characters/ryth/front.svg",
  32725. extra: 1920/1748,
  32726. bottom: 42/1962
  32727. }
  32728. },
  32729. back: {
  32730. height: math.unit(4, "feet"),
  32731. weight: math.unit(400, "lb"),
  32732. name: "Back",
  32733. image: {
  32734. source: "./media/characters/ryth/back.svg",
  32735. extra: 1897/1690,
  32736. bottom: 89/1986
  32737. }
  32738. },
  32739. mouth: {
  32740. height: math.unit(1.39, "feet"),
  32741. name: "Mouth",
  32742. image: {
  32743. source: "./media/characters/ryth/mouth.svg"
  32744. }
  32745. },
  32746. tailmaw: {
  32747. height: math.unit(1.23, "feet"),
  32748. name: "Tailmaw",
  32749. image: {
  32750. source: "./media/characters/ryth/tailmaw.svg"
  32751. }
  32752. },
  32753. goia: {
  32754. height: math.unit(4, "meters"),
  32755. weight: math.unit(10800, "lb"),
  32756. name: "Goia",
  32757. image: {
  32758. source: "./media/characters/ryth/goia.svg",
  32759. extra: 745/640,
  32760. bottom: 107/852
  32761. }
  32762. },
  32763. goiaFront: {
  32764. height: math.unit(4, "meters"),
  32765. weight: math.unit(10800, "lb"),
  32766. name: "Goia (Front)",
  32767. image: {
  32768. source: "./media/characters/ryth/goia-front.svg",
  32769. extra: 750/586,
  32770. bottom: 114/864
  32771. }
  32772. },
  32773. goiaMaw: {
  32774. height: math.unit(5.55, "feet"),
  32775. name: "Goia Maw",
  32776. image: {
  32777. source: "./media/characters/ryth/goia-maw.svg"
  32778. }
  32779. },
  32780. goiaForepaw: {
  32781. height: math.unit(3.5, "feet"),
  32782. name: "Goia Forepaw",
  32783. image: {
  32784. source: "./media/characters/ryth/goia-forepaw.svg"
  32785. }
  32786. },
  32787. goiaHindpaw: {
  32788. height: math.unit(5.55, "feet"),
  32789. name: "Goia Hindpaw",
  32790. image: {
  32791. source: "./media/characters/ryth/goia-hindpaw.svg"
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(4, "feet"),
  32799. default: true
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32805. {
  32806. front: {
  32807. height: math.unit(7, "feet"),
  32808. weight: math.unit(180, "lb"),
  32809. name: "Front",
  32810. image: {
  32811. source: "./media/characters/necrolance/front.svg",
  32812. extra: 1062/947,
  32813. bottom: 41/1103
  32814. }
  32815. },
  32816. back: {
  32817. height: math.unit(7, "feet"),
  32818. weight: math.unit(180, "lb"),
  32819. name: "Back",
  32820. image: {
  32821. source: "./media/characters/necrolance/back.svg",
  32822. extra: 1045/984,
  32823. bottom: 14/1059
  32824. }
  32825. },
  32826. wing: {
  32827. height: math.unit(2.67, "feet"),
  32828. name: "Wing",
  32829. image: {
  32830. source: "./media/characters/necrolance/wing.svg"
  32831. }
  32832. },
  32833. },
  32834. [
  32835. {
  32836. name: "Normal",
  32837. height: math.unit(7, "feet"),
  32838. default: true
  32839. },
  32840. ]
  32841. ))
  32842. characterMakers.push(() => makeCharacter(
  32843. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32844. {
  32845. front: {
  32846. height: math.unit(76, "meters"),
  32847. weight: math.unit(30000, "tons"),
  32848. name: "Front",
  32849. image: {
  32850. source: "./media/characters/tyler/front.svg",
  32851. extra: 1640/1640,
  32852. bottom: 114/1754
  32853. }
  32854. },
  32855. },
  32856. [
  32857. {
  32858. name: "Macro",
  32859. height: math.unit(76, "meters"),
  32860. default: true
  32861. },
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32866. {
  32867. front: {
  32868. height: math.unit(4 + 11/12, "feet"),
  32869. weight: math.unit(132, "lb"),
  32870. name: "Front",
  32871. image: {
  32872. source: "./media/characters/icey/front.svg",
  32873. extra: 2750/2550,
  32874. bottom: 33/2783
  32875. }
  32876. },
  32877. back: {
  32878. height: math.unit(4 + 11/12, "feet"),
  32879. weight: math.unit(132, "lb"),
  32880. name: "Back",
  32881. image: {
  32882. source: "./media/characters/icey/back.svg",
  32883. extra: 2624/2481,
  32884. bottom: 35/2659
  32885. }
  32886. },
  32887. },
  32888. [
  32889. {
  32890. name: "Normal",
  32891. height: math.unit(4 + 11/12, "feet"),
  32892. default: true
  32893. },
  32894. ]
  32895. ))
  32896. characterMakers.push(() => makeCharacter(
  32897. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32898. {
  32899. front: {
  32900. height: math.unit(100, "feet"),
  32901. weight: math.unit(0, "lb"),
  32902. name: "Front",
  32903. image: {
  32904. source: "./media/characters/smile/front.svg",
  32905. extra: 2983/2912,
  32906. bottom: 162/3145
  32907. }
  32908. },
  32909. back: {
  32910. height: math.unit(100, "feet"),
  32911. weight: math.unit(0, "lb"),
  32912. name: "Back",
  32913. image: {
  32914. source: "./media/characters/smile/back.svg",
  32915. extra: 3143/3031,
  32916. bottom: 91/3234
  32917. }
  32918. },
  32919. head: {
  32920. height: math.unit(26.3, "feet"),
  32921. weight: math.unit(0, "lb"),
  32922. name: "Head",
  32923. image: {
  32924. source: "./media/characters/smile/head.svg"
  32925. }
  32926. },
  32927. collar: {
  32928. height: math.unit(5.3, "feet"),
  32929. weight: math.unit(0, "lb"),
  32930. name: "Collar",
  32931. image: {
  32932. source: "./media/characters/smile/collar.svg"
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Macro",
  32939. height: math.unit(100, "feet"),
  32940. default: true
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32946. {
  32947. dragon: {
  32948. height: math.unit(26, "feet"),
  32949. weight: math.unit(36, "tons"),
  32950. name: "Dragon",
  32951. image: {
  32952. source: "./media/characters/arimphae/dragon.svg",
  32953. extra: 1574/983,
  32954. bottom: 357/1931
  32955. }
  32956. },
  32957. drake: {
  32958. height: math.unit(9, "feet"),
  32959. weight: math.unit(1.5, "tons"),
  32960. name: "Drake",
  32961. image: {
  32962. source: "./media/characters/arimphae/drake.svg",
  32963. extra: 1120/925,
  32964. bottom: 435/1555
  32965. }
  32966. },
  32967. },
  32968. [
  32969. {
  32970. name: "Small",
  32971. height: math.unit(26*5/9, "feet")
  32972. },
  32973. {
  32974. name: "Normal",
  32975. height: math.unit(26, "feet"),
  32976. default: true
  32977. },
  32978. ]
  32979. ))
  32980. characterMakers.push(() => makeCharacter(
  32981. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32982. {
  32983. front: {
  32984. height: math.unit(8 + 9/12, "feet"),
  32985. name: "Front",
  32986. image: {
  32987. source: "./media/characters/xander/front.svg",
  32988. extra: 1237/974,
  32989. bottom: 94/1331
  32990. }
  32991. },
  32992. },
  32993. [
  32994. {
  32995. name: "Normal",
  32996. height: math.unit(8 + 9/12, "feet"),
  32997. default: true
  32998. },
  32999. {
  33000. name: "Gaze Grabber",
  33001. height: math.unit(13 + 8/12, "feet")
  33002. },
  33003. {
  33004. name: "Jaw Dropper",
  33005. height: math.unit(27, "feet")
  33006. },
  33007. {
  33008. name: "Show Stopper",
  33009. height: math.unit(136, "feet")
  33010. },
  33011. {
  33012. name: "Superstar",
  33013. height: math.unit(1.9e6, "miles")
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33019. {
  33020. side: {
  33021. height: math.unit(2100, "feet"),
  33022. name: "Side",
  33023. image: {
  33024. source: "./media/characters/osiris/side.svg",
  33025. extra: 1105/939,
  33026. bottom: 167/1272
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Macro",
  33033. height: math.unit(2100, "feet"),
  33034. default: true
  33035. },
  33036. ]
  33037. ))
  33038. characterMakers.push(() => makeCharacter(
  33039. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33040. {
  33041. front: {
  33042. height: math.unit(6 + 8/12, "feet"),
  33043. weight: math.unit(225, "lb"),
  33044. name: "Front",
  33045. image: {
  33046. source: "./media/characters/rhys-londe/front.svg",
  33047. extra: 2258/2141,
  33048. bottom: 188/2446
  33049. }
  33050. },
  33051. back: {
  33052. height: math.unit(6 + 8/12, "feet"),
  33053. weight: math.unit(225, "lb"),
  33054. name: "Back",
  33055. image: {
  33056. source: "./media/characters/rhys-londe/back.svg",
  33057. extra: 2237/2137,
  33058. bottom: 63/2300
  33059. }
  33060. },
  33061. frontNsfw: {
  33062. height: math.unit(6 + 8/12, "feet"),
  33063. weight: math.unit(225, "lb"),
  33064. name: "Front (NSFW)",
  33065. image: {
  33066. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33067. extra: 2258/2141,
  33068. bottom: 188/2446
  33069. }
  33070. },
  33071. backNsfw: {
  33072. height: math.unit(6 + 8/12, "feet"),
  33073. weight: math.unit(225, "lb"),
  33074. name: "Back (NSFW)",
  33075. image: {
  33076. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33077. extra: 2237/2137,
  33078. bottom: 63/2300
  33079. }
  33080. },
  33081. dick: {
  33082. height: math.unit(30, "inches"),
  33083. name: "Dick",
  33084. image: {
  33085. source: "./media/characters/rhys-londe/dick.svg"
  33086. }
  33087. },
  33088. maw: {
  33089. height: math.unit(1.6, "feet"),
  33090. name: "Maw",
  33091. image: {
  33092. source: "./media/characters/rhys-londe/maw.svg"
  33093. }
  33094. },
  33095. },
  33096. [
  33097. {
  33098. name: "Normal",
  33099. height: math.unit(6 + 8/12, "feet"),
  33100. default: true
  33101. },
  33102. ]
  33103. ))
  33104. characterMakers.push(() => makeCharacter(
  33105. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33106. {
  33107. front: {
  33108. height: math.unit(3 + 10/12, "feet"),
  33109. weight: math.unit(90, "lb"),
  33110. name: "Front",
  33111. image: {
  33112. source: "./media/characters/taivas-ensim/front.svg",
  33113. extra: 1327/1216,
  33114. bottom: 96/1423
  33115. }
  33116. },
  33117. back: {
  33118. height: math.unit(3 + 10/12, "feet"),
  33119. weight: math.unit(90, "lb"),
  33120. name: "Back",
  33121. image: {
  33122. source: "./media/characters/taivas-ensim/back.svg",
  33123. extra: 1355/1247,
  33124. bottom: 11/1366
  33125. }
  33126. },
  33127. frontNsfw: {
  33128. height: math.unit(3 + 10/12, "feet"),
  33129. weight: math.unit(90, "lb"),
  33130. name: "Front (NSFW)",
  33131. image: {
  33132. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33133. extra: 1327/1216,
  33134. bottom: 96/1423
  33135. }
  33136. },
  33137. backNsfw: {
  33138. height: math.unit(3 + 10/12, "feet"),
  33139. weight: math.unit(90, "lb"),
  33140. name: "Back (NSFW)",
  33141. image: {
  33142. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33143. extra: 1355/1247,
  33144. bottom: 11/1366
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Normal",
  33151. height: math.unit(3 + 10/12, "feet"),
  33152. default: true
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(9 + 6/12, "feet"),
  33161. weight: math.unit(940, "lb"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/byliss/front.svg",
  33165. extra: 1327/1290,
  33166. bottom: 82/1409
  33167. }
  33168. },
  33169. back: {
  33170. height: math.unit(9 + 6/12, "feet"),
  33171. weight: math.unit(940, "lb"),
  33172. name: "Back",
  33173. image: {
  33174. source: "./media/characters/byliss/back.svg",
  33175. extra: 1376/1349,
  33176. bottom: 9/1385
  33177. }
  33178. },
  33179. frontNsfw: {
  33180. height: math.unit(9 + 6/12, "feet"),
  33181. weight: math.unit(940, "lb"),
  33182. name: "Front (NSFW)",
  33183. image: {
  33184. source: "./media/characters/byliss/front-nsfw.svg",
  33185. extra: 1327/1290,
  33186. bottom: 82/1409
  33187. }
  33188. },
  33189. backNsfw: {
  33190. height: math.unit(9 + 6/12, "feet"),
  33191. weight: math.unit(940, "lb"),
  33192. name: "Back (NSFW)",
  33193. image: {
  33194. source: "./media/characters/byliss/back-nsfw.svg",
  33195. extra: 1376/1349,
  33196. bottom: 9/1385
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(9 + 6/12, "feet"),
  33204. default: true
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33210. {
  33211. front: {
  33212. height: math.unit(5 + 2/12, "feet"),
  33213. weight: math.unit(200, "lb"),
  33214. name: "Front",
  33215. image: {
  33216. source: "./media/characters/noraly/front.svg",
  33217. extra: 4985/4773,
  33218. bottom: 150/5135
  33219. }
  33220. },
  33221. full: {
  33222. height: math.unit(5 + 2/12, "feet"),
  33223. weight: math.unit(164, "lb"),
  33224. name: "Full",
  33225. image: {
  33226. source: "./media/characters/noraly/full.svg",
  33227. extra: 1114/1059,
  33228. bottom: 35/1149
  33229. }
  33230. },
  33231. fuller: {
  33232. height: math.unit(5 + 2/12, "feet"),
  33233. weight: math.unit(230, "lb"),
  33234. name: "Fuller",
  33235. image: {
  33236. source: "./media/characters/noraly/fuller.svg",
  33237. extra: 1114/1059,
  33238. bottom: 35/1149
  33239. }
  33240. },
  33241. fullest: {
  33242. height: math.unit(5 + 2/12, "feet"),
  33243. weight: math.unit(300, "lb"),
  33244. name: "Fullest",
  33245. image: {
  33246. source: "./media/characters/noraly/fullest.svg",
  33247. extra: 1114/1059,
  33248. bottom: 35/1149
  33249. }
  33250. },
  33251. },
  33252. [
  33253. {
  33254. name: "Normal",
  33255. height: math.unit(5 + 2/12, "feet"),
  33256. default: true
  33257. },
  33258. ]
  33259. ))
  33260. characterMakers.push(() => makeCharacter(
  33261. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33262. {
  33263. front: {
  33264. height: math.unit(5 + 2/12, "feet"),
  33265. weight: math.unit(210, "lb"),
  33266. name: "Front",
  33267. image: {
  33268. source: "./media/characters/pera/front.svg",
  33269. extra: 1560/1531,
  33270. bottom: 165/1725
  33271. }
  33272. },
  33273. back: {
  33274. height: math.unit(5 + 2/12, "feet"),
  33275. weight: math.unit(210, "lb"),
  33276. name: "Back",
  33277. image: {
  33278. source: "./media/characters/pera/back.svg",
  33279. extra: 1523/1493,
  33280. bottom: 152/1675
  33281. }
  33282. },
  33283. dick: {
  33284. height: math.unit(2.4, "feet"),
  33285. name: "Dick",
  33286. image: {
  33287. source: "./media/characters/pera/dick.svg"
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(5 + 2/12, "feet"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(12, "feet"),
  33304. weight: math.unit(3200, "lb"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/julian/front.svg",
  33308. extra: 2962/2701,
  33309. bottom: 184/3146
  33310. }
  33311. },
  33312. maw: {
  33313. height: math.unit(5.35, "feet"),
  33314. name: "Maw",
  33315. image: {
  33316. source: "./media/characters/julian/maw.svg"
  33317. }
  33318. },
  33319. paw: {
  33320. height: math.unit(3.07, "feet"),
  33321. name: "Paw",
  33322. image: {
  33323. source: "./media/characters/julian/paw.svg"
  33324. }
  33325. },
  33326. },
  33327. [
  33328. {
  33329. name: "Default",
  33330. height: math.unit(12, "feet"),
  33331. default: true
  33332. },
  33333. {
  33334. name: "Big",
  33335. height: math.unit(50, "feet")
  33336. },
  33337. {
  33338. name: "Really Big",
  33339. height: math.unit(1, "mile")
  33340. },
  33341. {
  33342. name: "Extremely Big",
  33343. height: math.unit(100, "miles")
  33344. },
  33345. {
  33346. name: "Planet Hugger",
  33347. height: math.unit(200, "megameters")
  33348. },
  33349. {
  33350. name: "Unreasonably Big",
  33351. height: math.unit(1e300, "meters")
  33352. },
  33353. ]
  33354. ))
  33355. characterMakers.push(() => makeCharacter(
  33356. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33357. {
  33358. solgooleo: {
  33359. height: math.unit(4, "meters"),
  33360. weight: math.unit(6000*1.5, "kg"),
  33361. volume: math.unit(6000, "liters"),
  33362. name: "Solgooleo",
  33363. image: {
  33364. source: "./media/characters/pi/solgooleo.svg",
  33365. extra: 388/331,
  33366. bottom: 29/417
  33367. }
  33368. },
  33369. },
  33370. [
  33371. {
  33372. name: "Normal",
  33373. height: math.unit(4, "meters"),
  33374. default: true
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33380. {
  33381. front: {
  33382. height: math.unit(8, "feet"),
  33383. weight: math.unit(4, "tons"),
  33384. name: "Front",
  33385. image: {
  33386. source: "./media/characters/shaun/front.svg",
  33387. extra: 503/495,
  33388. bottom: 20/523
  33389. }
  33390. },
  33391. back: {
  33392. height: math.unit(8, "feet"),
  33393. weight: math.unit(4, "tons"),
  33394. name: "Back",
  33395. image: {
  33396. source: "./media/characters/shaun/back.svg",
  33397. extra: 487/480,
  33398. bottom: 20/507
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Lorg",
  33405. height: math.unit(8, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33412. {
  33413. frontAnthro: {
  33414. height: math.unit(7, "feet"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/sini/front-anthro.svg",
  33418. extra: 726/678,
  33419. bottom: 35/761
  33420. },
  33421. form: "anthro",
  33422. default: true
  33423. },
  33424. backAnthro: {
  33425. height: math.unit(7, "feet"),
  33426. name: "Back",
  33427. image: {
  33428. source: "./media/characters/sini/back-anthro.svg",
  33429. extra: 743/701,
  33430. bottom: 12/755
  33431. },
  33432. form: "anthro",
  33433. },
  33434. frontAnthroNsfw: {
  33435. height: math.unit(7, "feet"),
  33436. name: "Front (NSFW)",
  33437. image: {
  33438. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33439. extra: 726/678,
  33440. bottom: 35/761
  33441. },
  33442. form: "anthro"
  33443. },
  33444. backAnthroNsfw: {
  33445. height: math.unit(7, "feet"),
  33446. name: "Back (NSFW)",
  33447. image: {
  33448. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33449. extra: 743/701,
  33450. bottom: 12/755
  33451. },
  33452. form: "anthro",
  33453. },
  33454. mawAnthro: {
  33455. height: math.unit(2.14, "feet"),
  33456. name: "Maw",
  33457. image: {
  33458. source: "./media/characters/sini/maw-anthro.svg"
  33459. },
  33460. form: "anthro"
  33461. },
  33462. dick: {
  33463. height: math.unit(1.45, "feet"),
  33464. name: "Dick",
  33465. image: {
  33466. source: "./media/characters/sini/dick-anthro.svg"
  33467. },
  33468. form: "anthro"
  33469. },
  33470. feral: {
  33471. height: math.unit(16, "feet"),
  33472. name: "Feral",
  33473. image: {
  33474. source: "./media/characters/sini/feral.svg",
  33475. extra: 814/605,
  33476. bottom: 11/825
  33477. },
  33478. form: "feral",
  33479. default: true
  33480. },
  33481. feralNsfw: {
  33482. height: math.unit(16, "feet"),
  33483. name: "Feral (NSFW)",
  33484. image: {
  33485. source: "./media/characters/sini/feral-nsfw.svg",
  33486. extra: 814/605,
  33487. bottom: 11/825
  33488. },
  33489. form: "feral"
  33490. },
  33491. mawFeral: {
  33492. height: math.unit(5.66, "feet"),
  33493. name: "Maw",
  33494. image: {
  33495. source: "./media/characters/sini/maw-feral.svg"
  33496. },
  33497. form: "feral",
  33498. },
  33499. pawFeral: {
  33500. height: math.unit(5.17, "feet"),
  33501. name: "Paw",
  33502. image: {
  33503. source: "./media/characters/sini/paw-feral.svg"
  33504. },
  33505. form: "feral",
  33506. },
  33507. rumpFeral: {
  33508. height: math.unit(13.11, "feet"),
  33509. name: "Rump",
  33510. image: {
  33511. source: "./media/characters/sini/rump-feral.svg"
  33512. },
  33513. form: "feral",
  33514. },
  33515. dickFeral: {
  33516. height: math.unit(1, "feet"),
  33517. name: "Dick",
  33518. image: {
  33519. source: "./media/characters/sini/dick-feral.svg"
  33520. },
  33521. form: "feral",
  33522. },
  33523. eyeFeral: {
  33524. height: math.unit(1.23, "feet"),
  33525. name: "Eye",
  33526. image: {
  33527. source: "./media/characters/sini/eye-feral.svg"
  33528. },
  33529. form: "feral",
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(7, "feet"),
  33536. default: true,
  33537. form: "anthro"
  33538. },
  33539. {
  33540. name: "Normal",
  33541. height: math.unit(16, "feet"),
  33542. default: true,
  33543. form: "feral"
  33544. },
  33545. ],
  33546. {
  33547. "anthro": {
  33548. name: "Anthro",
  33549. default: true
  33550. },
  33551. "feral": {
  33552. name: "Feral",
  33553. }
  33554. }
  33555. ))
  33556. characterMakers.push(() => makeCharacter(
  33557. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33558. {
  33559. side: {
  33560. height: math.unit(13, "meters"),
  33561. weight: math.unit(9072, "kg"),
  33562. name: "Side",
  33563. image: {
  33564. source: "./media/characters/raylldo/side.svg",
  33565. extra: 403/344,
  33566. bottom: 42/445
  33567. }
  33568. },
  33569. leaping: {
  33570. height: math.unit(12.3, "meters"),
  33571. weight: math.unit(9072, "kg"),
  33572. name: "Leaping",
  33573. image: {
  33574. source: "./media/characters/raylldo/leaping.svg",
  33575. extra: 470/249,
  33576. bottom: 13/483
  33577. }
  33578. },
  33579. flying: {
  33580. height: math.unit(18, "meters"),
  33581. weight: math.unit(9072, "kg"),
  33582. name: "Flying",
  33583. image: {
  33584. source: "./media/characters/raylldo/flying.svg"
  33585. }
  33586. },
  33587. head: {
  33588. height: math.unit(5.85, "meters"),
  33589. name: "Head",
  33590. image: {
  33591. source: "./media/characters/raylldo/head.svg"
  33592. }
  33593. },
  33594. maw: {
  33595. height: math.unit(5.32, "meters"),
  33596. name: "Maw",
  33597. image: {
  33598. source: "./media/characters/raylldo/maw.svg"
  33599. }
  33600. },
  33601. eye: {
  33602. height: math.unit(0.54, "meters"),
  33603. name: "Eye",
  33604. image: {
  33605. source: "./media/characters/raylldo/eye.svg"
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Normal",
  33612. height: math.unit(13, "meters"),
  33613. default: true
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33619. {
  33620. anthroFront: {
  33621. height: math.unit(9, "feet"),
  33622. weight: math.unit(600, "lb"),
  33623. name: "Anthro (Front)",
  33624. image: {
  33625. source: "./media/characters/glint/anthro-front.svg",
  33626. extra: 1097/1018,
  33627. bottom: 28/1125
  33628. }
  33629. },
  33630. anthroBack: {
  33631. height: math.unit(9, "feet"),
  33632. weight: math.unit(600, "lb"),
  33633. name: "Anthro (Back)",
  33634. image: {
  33635. source: "./media/characters/glint/anthro-back.svg",
  33636. extra: 1154/997,
  33637. bottom: 36/1190
  33638. }
  33639. },
  33640. feral: {
  33641. height: math.unit(11, "feet"),
  33642. weight: math.unit(50000, "lb"),
  33643. name: "Feral",
  33644. image: {
  33645. source: "./media/characters/glint/feral.svg",
  33646. extra: 3035/1585,
  33647. bottom: 1169/4204
  33648. }
  33649. },
  33650. dickAnthro: {
  33651. height: math.unit(0.7, "meters"),
  33652. name: "Dick (Anthro)",
  33653. image: {
  33654. source: "./media/characters/glint/dick-anthro.svg"
  33655. }
  33656. },
  33657. dickFeral: {
  33658. height: math.unit(2.65, "meters"),
  33659. name: "Dick (Feral)",
  33660. image: {
  33661. source: "./media/characters/glint/dick-feral.svg"
  33662. }
  33663. },
  33664. slitHidden: {
  33665. height: math.unit(5.85, "meters"),
  33666. name: "Slit (Hidden)",
  33667. image: {
  33668. source: "./media/characters/glint/slit-hidden.svg"
  33669. }
  33670. },
  33671. slitErect: {
  33672. height: math.unit(5.85, "meters"),
  33673. name: "Slit (Erect)",
  33674. image: {
  33675. source: "./media/characters/glint/slit-erect.svg"
  33676. }
  33677. },
  33678. mawAnthro: {
  33679. height: math.unit(0.63, "meters"),
  33680. name: "Maw (Anthro)",
  33681. image: {
  33682. source: "./media/characters/glint/maw.svg"
  33683. }
  33684. },
  33685. mawFeral: {
  33686. height: math.unit(2.89, "meters"),
  33687. name: "Maw (Feral)",
  33688. image: {
  33689. source: "./media/characters/glint/maw.svg"
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Normal",
  33696. height: math.unit(9, "feet"),
  33697. default: true
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33703. {
  33704. side: {
  33705. height: math.unit(15, "feet"),
  33706. weight: math.unit(5000, "kg"),
  33707. name: "Side",
  33708. image: {
  33709. source: "./media/characters/kairne/side.svg",
  33710. extra: 979/811,
  33711. bottom: 13/992
  33712. }
  33713. },
  33714. front: {
  33715. height: math.unit(15, "feet"),
  33716. weight: math.unit(5000, "kg"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/kairne/front.svg",
  33720. extra: 908/814,
  33721. bottom: 26/934
  33722. }
  33723. },
  33724. sideNsfw: {
  33725. height: math.unit(15, "feet"),
  33726. weight: math.unit(5000, "kg"),
  33727. name: "Side (NSFW)",
  33728. image: {
  33729. source: "./media/characters/kairne/side-nsfw.svg",
  33730. extra: 979/811,
  33731. bottom: 13/992
  33732. }
  33733. },
  33734. frontNsfw: {
  33735. height: math.unit(15, "feet"),
  33736. weight: math.unit(5000, "kg"),
  33737. name: "Front (NSFW)",
  33738. image: {
  33739. source: "./media/characters/kairne/front-nsfw.svg",
  33740. extra: 908/814,
  33741. bottom: 26/934
  33742. }
  33743. },
  33744. dickCaged: {
  33745. height: math.unit(0.65, "meters"),
  33746. name: "Dick-caged",
  33747. image: {
  33748. source: "./media/characters/kairne/dick-caged.svg"
  33749. }
  33750. },
  33751. dick: {
  33752. height: math.unit(0.79, "meters"),
  33753. name: "Dick",
  33754. image: {
  33755. source: "./media/characters/kairne/dick.svg"
  33756. }
  33757. },
  33758. genitals: {
  33759. height: math.unit(1.29, "meters"),
  33760. name: "Genitals",
  33761. image: {
  33762. source: "./media/characters/kairne/genitals.svg"
  33763. }
  33764. },
  33765. maw: {
  33766. height: math.unit(1.73, "meters"),
  33767. name: "Maw",
  33768. image: {
  33769. source: "./media/characters/kairne/maw.svg"
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(15, "feet"),
  33777. default: true
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33783. {
  33784. front: {
  33785. height: math.unit(5 + 8/12, "feet"),
  33786. weight: math.unit(139, "lb"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/biscuit-jackal/front.svg",
  33790. extra: 2106/1961,
  33791. bottom: 58/2164
  33792. }
  33793. },
  33794. back: {
  33795. height: math.unit(5 + 8/12, "feet"),
  33796. weight: math.unit(139, "lb"),
  33797. name: "Back",
  33798. image: {
  33799. source: "./media/characters/biscuit-jackal/back.svg",
  33800. extra: 2132/1976,
  33801. bottom: 57/2189
  33802. }
  33803. },
  33804. werejackal: {
  33805. height: math.unit(6 + 3/12, "feet"),
  33806. weight: math.unit(188, "lb"),
  33807. name: "Werejackal",
  33808. image: {
  33809. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33810. extra: 2373/2178,
  33811. bottom: 53/2426
  33812. }
  33813. },
  33814. },
  33815. [
  33816. {
  33817. name: "Normal",
  33818. height: math.unit(5 + 8/12, "feet"),
  33819. default: true
  33820. },
  33821. ]
  33822. ))
  33823. characterMakers.push(() => makeCharacter(
  33824. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33825. {
  33826. front: {
  33827. height: math.unit(140, "cm"),
  33828. weight: math.unit(45, "kg"),
  33829. name: "Front",
  33830. image: {
  33831. source: "./media/characters/tayra-white/front.svg",
  33832. extra: 2229/2192,
  33833. bottom: 75/2304
  33834. }
  33835. },
  33836. },
  33837. [
  33838. {
  33839. name: "Normal",
  33840. height: math.unit(140, "cm"),
  33841. default: true
  33842. },
  33843. ]
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33847. {
  33848. front: {
  33849. height: math.unit(4 + 5/12, "feet"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/scoop/front.svg",
  33853. extra: 1257/1136,
  33854. bottom: 69/1326
  33855. }
  33856. },
  33857. back: {
  33858. height: math.unit(4 + 5/12, "feet"),
  33859. name: "Back",
  33860. image: {
  33861. source: "./media/characters/scoop/back.svg",
  33862. extra: 1321/1152,
  33863. bottom: 32/1353
  33864. }
  33865. },
  33866. maw: {
  33867. height: math.unit(0.68, "feet"),
  33868. name: "Maw",
  33869. image: {
  33870. source: "./media/characters/scoop/maw.svg"
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Really Small",
  33877. height: math.unit(1, "mm")
  33878. },
  33879. {
  33880. name: "Micro",
  33881. height: math.unit(1, "inch")
  33882. },
  33883. {
  33884. name: "Normal",
  33885. height: math.unit(4 + 5/12, "feet"),
  33886. default: true
  33887. },
  33888. {
  33889. name: "Macro",
  33890. height: math.unit(200, "feet")
  33891. },
  33892. {
  33893. name: "Megamacro",
  33894. height: math.unit(3240, "feet")
  33895. },
  33896. {
  33897. name: "Teramacro",
  33898. height: math.unit(2500, "miles")
  33899. },
  33900. ]
  33901. ))
  33902. characterMakers.push(() => makeCharacter(
  33903. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33904. {
  33905. front: {
  33906. height: math.unit(15 + 7/12, "feet"),
  33907. weight: math.unit(1150, "tons"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/saphinara/front.svg",
  33911. extra: 1837/1643,
  33912. bottom: 84/1921
  33913. },
  33914. form: "normal",
  33915. default: true
  33916. },
  33917. side: {
  33918. height: math.unit(15 + 7/12, "feet"),
  33919. weight: math.unit(1150, "tons"),
  33920. name: "Side",
  33921. image: {
  33922. source: "./media/characters/saphinara/side.svg",
  33923. extra: 605/547,
  33924. bottom: 6/611
  33925. },
  33926. form: "normal"
  33927. },
  33928. back: {
  33929. height: math.unit(15 + 7/12, "feet"),
  33930. weight: math.unit(1150, "tons"),
  33931. name: "Back",
  33932. image: {
  33933. source: "./media/characters/saphinara/back.svg",
  33934. extra: 591/531,
  33935. bottom: 13/604
  33936. },
  33937. form: "normal"
  33938. },
  33939. frontTail: {
  33940. height: math.unit(15 + 7/12, "feet"),
  33941. weight: math.unit(1150, "tons"),
  33942. name: "Front (Full Tail)",
  33943. image: {
  33944. source: "./media/characters/saphinara/front-tail.svg",
  33945. extra: 2256/1630,
  33946. bottom: 261/2517
  33947. },
  33948. form: "normal"
  33949. },
  33950. insides: {
  33951. height: math.unit(11.92, "feet"),
  33952. name: "Insides",
  33953. image: {
  33954. source: "./media/characters/saphinara/insides.svg"
  33955. },
  33956. form: "normal"
  33957. },
  33958. head: {
  33959. height: math.unit(4.17, "feet"),
  33960. name: "Head",
  33961. image: {
  33962. source: "./media/characters/saphinara/head.svg"
  33963. },
  33964. form: "normal"
  33965. },
  33966. tongue: {
  33967. height: math.unit(4.60, "feet"),
  33968. name: "Tongue",
  33969. image: {
  33970. source: "./media/characters/saphinara/tongue.svg"
  33971. },
  33972. form: "normal"
  33973. },
  33974. headEnraged: {
  33975. height: math.unit(5.55, "feet"),
  33976. name: "Head (Enraged)",
  33977. image: {
  33978. source: "./media/characters/saphinara/head-enraged.svg"
  33979. },
  33980. form: "normal"
  33981. },
  33982. wings: {
  33983. height: math.unit(11.95, "feet"),
  33984. name: "Wings",
  33985. image: {
  33986. source: "./media/characters/saphinara/wings.svg"
  33987. },
  33988. form: "normal"
  33989. },
  33990. feathers: {
  33991. height: math.unit(8.92, "feet"),
  33992. name: "Feathers",
  33993. image: {
  33994. source: "./media/characters/saphinara/feathers.svg"
  33995. },
  33996. form: "normal"
  33997. },
  33998. shackles: {
  33999. height: math.unit(2, "feet"),
  34000. name: "Shackles",
  34001. image: {
  34002. source: "./media/characters/saphinara/shackles.svg"
  34003. },
  34004. form: "normal"
  34005. },
  34006. eyes: {
  34007. height: math.unit(1.331, "feet"),
  34008. name: "Eyes",
  34009. image: {
  34010. source: "./media/characters/saphinara/eyes.svg"
  34011. },
  34012. form: "normal"
  34013. },
  34014. eyesEnraged: {
  34015. height: math.unit(1.331, "feet"),
  34016. name: "Eyes (Enraged)",
  34017. image: {
  34018. source: "./media/characters/saphinara/eyes-enraged.svg"
  34019. },
  34020. form: "normal"
  34021. },
  34022. trueFormSide: {
  34023. height: math.unit(200, "feet"),
  34024. weight: math.unit(1e7, "tons"),
  34025. name: "Side",
  34026. image: {
  34027. source: "./media/characters/saphinara/true-form-side.svg",
  34028. extra: 1399/770,
  34029. bottom: 97/1496
  34030. },
  34031. form: "true-form",
  34032. default: true
  34033. },
  34034. trueFormMaw: {
  34035. height: math.unit(71.5, "feet"),
  34036. name: "Maw",
  34037. image: {
  34038. source: "./media/characters/saphinara/true-form-maw.svg",
  34039. extra: 2302/1453,
  34040. bottom: 0/2302
  34041. },
  34042. form: "true-form"
  34043. },
  34044. },
  34045. [
  34046. {
  34047. name: "Normal",
  34048. height: math.unit(15 + 7/12, "feet"),
  34049. default: true,
  34050. form: "normal"
  34051. },
  34052. {
  34053. name: "Angry",
  34054. height: math.unit(30 + 6/12, "feet"),
  34055. form: "normal"
  34056. },
  34057. {
  34058. name: "Enraged",
  34059. height: math.unit(102 + 1/12, "feet"),
  34060. form: "normal"
  34061. },
  34062. {
  34063. name: "True",
  34064. height: math.unit(200, "feet"),
  34065. default: true,
  34066. form: "true-form"
  34067. }
  34068. ],
  34069. {
  34070. "normal": {
  34071. name: "Normal",
  34072. default: true
  34073. },
  34074. "true-form": {
  34075. name: "True Form"
  34076. }
  34077. }
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34081. {
  34082. front: {
  34083. height: math.unit(6 + 8/12, "feet"),
  34084. weight: math.unit(300, "lb"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/jrain/front.svg",
  34088. extra: 3039/2865,
  34089. bottom: 399/3438
  34090. }
  34091. },
  34092. back: {
  34093. height: math.unit(6 + 8/12, "feet"),
  34094. weight: math.unit(300, "lb"),
  34095. name: "Back",
  34096. image: {
  34097. source: "./media/characters/jrain/back.svg",
  34098. extra: 3089/2938,
  34099. bottom: 172/3261
  34100. }
  34101. },
  34102. head: {
  34103. height: math.unit(2.14, "feet"),
  34104. name: "Head",
  34105. image: {
  34106. source: "./media/characters/jrain/head.svg"
  34107. }
  34108. },
  34109. maw: {
  34110. height: math.unit(1.77, "feet"),
  34111. name: "Maw",
  34112. image: {
  34113. source: "./media/characters/jrain/maw.svg"
  34114. }
  34115. },
  34116. leftHand: {
  34117. height: math.unit(1.1, "feet"),
  34118. name: "Left Hand",
  34119. image: {
  34120. source: "./media/characters/jrain/left-hand.svg"
  34121. }
  34122. },
  34123. rightHand: {
  34124. height: math.unit(1.1, "feet"),
  34125. name: "Right Hand",
  34126. image: {
  34127. source: "./media/characters/jrain/right-hand.svg"
  34128. }
  34129. },
  34130. eye: {
  34131. height: math.unit(0.35, "feet"),
  34132. name: "Eye",
  34133. image: {
  34134. source: "./media/characters/jrain/eye.svg"
  34135. }
  34136. },
  34137. },
  34138. [
  34139. {
  34140. name: "Normal",
  34141. height: math.unit(6 + 8/12, "feet"),
  34142. default: true
  34143. },
  34144. {
  34145. name: "Casually Large",
  34146. height: math.unit(25, "feet")
  34147. },
  34148. {
  34149. name: "Giant",
  34150. height: math.unit(100, "feet")
  34151. },
  34152. {
  34153. name: "Kaiju",
  34154. height: math.unit(300, "feet")
  34155. },
  34156. ]
  34157. ))
  34158. characterMakers.push(() => makeCharacter(
  34159. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34160. {
  34161. dragon: {
  34162. height: math.unit(5, "meters"),
  34163. name: "Dragon",
  34164. image: {
  34165. source: "./media/characters/sabrina/dragon.svg",
  34166. extra: 3670 / 2365,
  34167. bottom: 333 / 4003
  34168. }
  34169. },
  34170. gryphon: {
  34171. height: math.unit(3, "meters"),
  34172. name: "Gryphon",
  34173. image: {
  34174. source: "./media/characters/sabrina/gryphon.svg",
  34175. extra: 1576 / 945,
  34176. bottom: 71 / 1647
  34177. }
  34178. },
  34179. snake: {
  34180. height: math.unit(12, "meters"),
  34181. name: "Snake",
  34182. image: {
  34183. source: "./media/characters/sabrina/snake.svg",
  34184. extra: 1758 / 1320,
  34185. bottom: 186 / 1944
  34186. }
  34187. },
  34188. collar: {
  34189. height: math.unit(1.86, "meters"),
  34190. name: "Collar",
  34191. image: {
  34192. source: "./media/characters/sabrina/collar.svg"
  34193. }
  34194. },
  34195. eye: {
  34196. height: math.unit(0.53, "meters"),
  34197. name: "Eye",
  34198. image: {
  34199. source: "./media/characters/sabrina/eye.svg"
  34200. }
  34201. },
  34202. foot: {
  34203. height: math.unit(1.86, "meters"),
  34204. name: "Foot",
  34205. image: {
  34206. source: "./media/characters/sabrina/foot.svg"
  34207. }
  34208. },
  34209. hand: {
  34210. height: math.unit(1.32, "meters"),
  34211. name: "Hand",
  34212. image: {
  34213. source: "./media/characters/sabrina/hand.svg"
  34214. }
  34215. },
  34216. head: {
  34217. height: math.unit(2.44, "meters"),
  34218. name: "Head",
  34219. image: {
  34220. source: "./media/characters/sabrina/head.svg"
  34221. }
  34222. },
  34223. headAngry: {
  34224. height: math.unit(2.44, "meters"),
  34225. name: "Head (Angry))",
  34226. image: {
  34227. source: "./media/characters/sabrina/head-angry.svg"
  34228. }
  34229. },
  34230. maw: {
  34231. height: math.unit(1.65, "meters"),
  34232. name: "Maw",
  34233. image: {
  34234. source: "./media/characters/sabrina/maw.svg"
  34235. }
  34236. },
  34237. spikes: {
  34238. height: math.unit(1.69, "meters"),
  34239. name: "Spikes",
  34240. image: {
  34241. source: "./media/characters/sabrina/spikes.svg"
  34242. }
  34243. },
  34244. stomach: {
  34245. height: math.unit(1.15, "meters"),
  34246. name: "Stomach",
  34247. image: {
  34248. source: "./media/characters/sabrina/stomach.svg"
  34249. }
  34250. },
  34251. tongue: {
  34252. height: math.unit(1.27, "meters"),
  34253. name: "Tongue",
  34254. image: {
  34255. source: "./media/characters/sabrina/tongue.svg"
  34256. }
  34257. },
  34258. wingDorsal: {
  34259. height: math.unit(4.85, "meters"),
  34260. name: "Wing (Dorsal)",
  34261. image: {
  34262. source: "./media/characters/sabrina/wing-dorsal.svg"
  34263. }
  34264. },
  34265. wingVentral: {
  34266. height: math.unit(4.85, "meters"),
  34267. name: "Wing (Ventral)",
  34268. image: {
  34269. source: "./media/characters/sabrina/wing-ventral.svg"
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(5, "meters"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34283. {
  34284. frontMaid: {
  34285. height: math.unit(5 + 5/12, "feet"),
  34286. weight: math.unit(130, "lb"),
  34287. name: "Front (Maid)",
  34288. image: {
  34289. source: "./media/characters/midnight-tales/front-maid.svg",
  34290. extra: 489/454,
  34291. bottom: 61/550
  34292. }
  34293. },
  34294. frontFormal: {
  34295. height: math.unit(5 + 5/12, "feet"),
  34296. weight: math.unit(130, "lb"),
  34297. name: "Front (Formal)",
  34298. image: {
  34299. source: "./media/characters/midnight-tales/front-formal.svg",
  34300. extra: 489/454,
  34301. bottom: 61/550
  34302. }
  34303. },
  34304. back: {
  34305. height: math.unit(5 + 5/12, "feet"),
  34306. weight: math.unit(130, "lb"),
  34307. name: "Back",
  34308. image: {
  34309. source: "./media/characters/midnight-tales/back.svg",
  34310. extra: 498/456,
  34311. bottom: 33/531
  34312. }
  34313. },
  34314. frontBeast: {
  34315. height: math.unit(40, "feet"),
  34316. weight: math.unit(64000, "lb"),
  34317. name: "Front (Beast)",
  34318. image: {
  34319. source: "./media/characters/midnight-tales/front-beast.svg",
  34320. extra: 927/860,
  34321. bottom: 53/980
  34322. }
  34323. },
  34324. backBeast: {
  34325. height: math.unit(40, "feet"),
  34326. weight: math.unit(64000, "lb"),
  34327. name: "Back (Beast)",
  34328. image: {
  34329. source: "./media/characters/midnight-tales/back-beast.svg",
  34330. extra: 929/855,
  34331. bottom: 16/945
  34332. }
  34333. },
  34334. footBeast: {
  34335. height: math.unit(6.7, "feet"),
  34336. name: "Foot (Beast)",
  34337. image: {
  34338. source: "./media/characters/midnight-tales/foot-beast.svg"
  34339. }
  34340. },
  34341. headBeast: {
  34342. height: math.unit(8, "feet"),
  34343. name: "Head (Beast)",
  34344. image: {
  34345. source: "./media/characters/midnight-tales/head-beast.svg"
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "Normal",
  34352. height: math.unit(5 + 5 / 12, "feet"),
  34353. default: true
  34354. },
  34355. {
  34356. name: "Macro",
  34357. height: math.unit(25, "feet")
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(5 + 10/12, "feet"),
  34366. name: "Front",
  34367. image: {
  34368. source: "./media/characters/argon/front.svg",
  34369. extra: 2009/1935,
  34370. bottom: 118/2127
  34371. }
  34372. },
  34373. back: {
  34374. height: math.unit(5 + 10/12, "feet"),
  34375. name: "Back",
  34376. image: {
  34377. source: "./media/characters/argon/back.svg",
  34378. extra: 2047/1992,
  34379. bottom: 20/2067
  34380. }
  34381. },
  34382. frontDressed: {
  34383. height: math.unit(5 + 10/12, "feet"),
  34384. name: "Front (Dressed)",
  34385. image: {
  34386. source: "./media/characters/argon/front-dressed.svg",
  34387. extra: 2009/1935,
  34388. bottom: 118/2127
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Normal",
  34395. height: math.unit(5 + 10/12, "feet"),
  34396. default: true
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34402. {
  34403. front: {
  34404. height: math.unit(8 + 6/12, "feet"),
  34405. weight: math.unit(1150, "lb"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/kichi/front.svg",
  34409. extra: 1267/1164,
  34410. bottom: 61/1328
  34411. }
  34412. },
  34413. back: {
  34414. height: math.unit(8 + 6/12, "feet"),
  34415. weight: math.unit(1150, "lb"),
  34416. name: "Back",
  34417. image: {
  34418. source: "./media/characters/kichi/back.svg",
  34419. extra: 1273/1166,
  34420. bottom: 33/1306
  34421. }
  34422. },
  34423. },
  34424. [
  34425. {
  34426. name: "Normal",
  34427. height: math.unit(8 + 6/12, "feet"),
  34428. default: true
  34429. },
  34430. ]
  34431. ))
  34432. characterMakers.push(() => makeCharacter(
  34433. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34434. {
  34435. front: {
  34436. height: math.unit(6, "feet"),
  34437. weight: math.unit(210, "lb"),
  34438. name: "Front",
  34439. image: {
  34440. source: "./media/characters/manetel-greyscale/front.svg",
  34441. extra: 350/312,
  34442. bottom: 8/358
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "Micro",
  34449. height: math.unit(2, "inches")
  34450. },
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(6, "feet"),
  34454. default: true
  34455. },
  34456. {
  34457. name: "Minimacro",
  34458. height: math.unit(17, "feet")
  34459. },
  34460. {
  34461. name: "Macro",
  34462. height: math.unit(117, "feet")
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34468. {
  34469. side: {
  34470. height: math.unit(5 + 1/12, "feet"),
  34471. weight: math.unit(418, "lb"),
  34472. name: "Side",
  34473. image: {
  34474. source: "./media/characters/softpurr/side.svg",
  34475. extra: 1993/1945,
  34476. bottom: 134/2127
  34477. }
  34478. },
  34479. front: {
  34480. height: math.unit(5 + 1/12, "feet"),
  34481. weight: math.unit(418, "lb"),
  34482. name: "Front",
  34483. image: {
  34484. source: "./media/characters/softpurr/front.svg",
  34485. extra: 1950/1856,
  34486. bottom: 174/2124
  34487. }
  34488. },
  34489. paw: {
  34490. height: math.unit(1, "feet"),
  34491. name: "Paw",
  34492. image: {
  34493. source: "./media/characters/softpurr/paw.svg"
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(5 + 1/12, "feet"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(260, "meters"),
  34510. name: "Front",
  34511. image: {
  34512. source: "./media/characters/anahita/front.svg",
  34513. extra: 665/635,
  34514. bottom: 89/754
  34515. }
  34516. },
  34517. },
  34518. [
  34519. {
  34520. name: "Macro",
  34521. height: math.unit(260, "meters"),
  34522. default: true
  34523. },
  34524. ]
  34525. ))
  34526. characterMakers.push(() => makeCharacter(
  34527. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34528. {
  34529. front: {
  34530. height: math.unit(4 + 10/12, "feet"),
  34531. weight: math.unit(160, "lb"),
  34532. name: "Front",
  34533. image: {
  34534. source: "./media/characters/chip-mouse/front.svg",
  34535. extra: 3528/3408,
  34536. bottom: 0/3528
  34537. }
  34538. },
  34539. frontNsfw: {
  34540. height: math.unit(4 + 10/12, "feet"),
  34541. weight: math.unit(160, "lb"),
  34542. name: "Front (NSFW)",
  34543. image: {
  34544. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34545. extra: 3528/3408,
  34546. bottom: 0/3528
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Normal",
  34553. height: math.unit(4 + 10/12, "feet"),
  34554. default: true
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34560. {
  34561. side: {
  34562. height: math.unit(10, "feet"),
  34563. weight: math.unit(14000, "lb"),
  34564. name: "Side",
  34565. image: {
  34566. source: "./media/characters/kremm/side.svg",
  34567. extra: 1390/1053,
  34568. bottom: 90/1480
  34569. }
  34570. },
  34571. gut: {
  34572. height: math.unit(5.8, "feet"),
  34573. name: "Gut",
  34574. image: {
  34575. source: "./media/characters/kremm/gut.svg"
  34576. }
  34577. },
  34578. ass: {
  34579. height: math.unit(6.1, "feet"),
  34580. name: "Ass",
  34581. image: {
  34582. source: "./media/characters/kremm/ass.svg"
  34583. }
  34584. },
  34585. jaws: {
  34586. height: math.unit(2.2, "feet"),
  34587. name: "Jaws",
  34588. image: {
  34589. source: "./media/characters/kremm/jaws.svg"
  34590. }
  34591. },
  34592. dick: {
  34593. height: math.unit(4.26, "feet"),
  34594. name: "Dick",
  34595. image: {
  34596. source: "./media/characters/kremm/dick.svg"
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Normal",
  34603. height: math.unit(10, "feet"),
  34604. default: true
  34605. },
  34606. ]
  34607. ))
  34608. characterMakers.push(() => makeCharacter(
  34609. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34610. {
  34611. front: {
  34612. height: math.unit(30, "stories"),
  34613. name: "Front",
  34614. image: {
  34615. source: "./media/characters/kai/front.svg",
  34616. extra: 1892/1718,
  34617. bottom: 162/2054
  34618. }
  34619. },
  34620. },
  34621. [
  34622. {
  34623. name: "Macro",
  34624. height: math.unit(30, "stories"),
  34625. default: true
  34626. },
  34627. ]
  34628. ))
  34629. characterMakers.push(() => makeCharacter(
  34630. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34631. {
  34632. front: {
  34633. height: math.unit(6 + 4/12, "feet"),
  34634. weight: math.unit(145, "lb"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/sykes/front.svg",
  34638. extra: 1321 / 1187,
  34639. bottom: 66 / 1387
  34640. }
  34641. },
  34642. back: {
  34643. height: math.unit(6 + 4/12, "feet"),
  34644. weight: math.unit(145, "lb"),
  34645. name: "Back",
  34646. image: {
  34647. source: "./media/characters/sykes/back.svg",
  34648. extra: 1326/1181,
  34649. bottom: 31/1357
  34650. }
  34651. },
  34652. traditionalOutfit: {
  34653. height: math.unit(6 + 4/12, "feet"),
  34654. weight: math.unit(145, "lb"),
  34655. name: "Traditional Outfit",
  34656. image: {
  34657. source: "./media/characters/sykes/traditional-outfit.svg",
  34658. extra: 1321 / 1187,
  34659. bottom: 66 / 1387
  34660. }
  34661. },
  34662. adventureOutfit: {
  34663. height: math.unit(6 + 4/12, "feet"),
  34664. weight: math.unit(145, "lb"),
  34665. name: "Adventure Outfit",
  34666. image: {
  34667. source: "./media/characters/sykes/adventure-outfit.svg",
  34668. extra: 1321 / 1187,
  34669. bottom: 66 / 1387
  34670. }
  34671. },
  34672. handLeft: {
  34673. height: math.unit(0.9, "feet"),
  34674. name: "Hand (Left)",
  34675. image: {
  34676. source: "./media/characters/sykes/hand-left.svg"
  34677. }
  34678. },
  34679. handRight: {
  34680. height: math.unit(0.839, "feet"),
  34681. name: "Hand (Right)",
  34682. image: {
  34683. source: "./media/characters/sykes/hand-right.svg"
  34684. }
  34685. },
  34686. leftFoot: {
  34687. height: math.unit(1.2, "feet"),
  34688. name: "Foot (Left)",
  34689. image: {
  34690. source: "./media/characters/sykes/foot-left.svg"
  34691. }
  34692. },
  34693. rightFoot: {
  34694. height: math.unit(1.2, "feet"),
  34695. name: "Foot (Right)",
  34696. image: {
  34697. source: "./media/characters/sykes/foot-right.svg"
  34698. }
  34699. },
  34700. maw: {
  34701. height: math.unit(1.93, "feet"),
  34702. name: "Maw",
  34703. image: {
  34704. source: "./media/characters/sykes/maw.svg"
  34705. }
  34706. },
  34707. teeth: {
  34708. height: math.unit(0.51, "feet"),
  34709. name: "Teeth",
  34710. image: {
  34711. source: "./media/characters/sykes/teeth.svg"
  34712. }
  34713. },
  34714. tongue: {
  34715. height: math.unit(2.13, "feet"),
  34716. name: "Tongue",
  34717. image: {
  34718. source: "./media/characters/sykes/tongue.svg"
  34719. }
  34720. },
  34721. uvula: {
  34722. height: math.unit(0.16, "feet"),
  34723. name: "Uvula",
  34724. image: {
  34725. source: "./media/characters/sykes/uvula.svg"
  34726. }
  34727. },
  34728. collar: {
  34729. height: math.unit(0.287, "feet"),
  34730. name: "Collar",
  34731. image: {
  34732. source: "./media/characters/sykes/collar.svg"
  34733. }
  34734. },
  34735. tail: {
  34736. height: math.unit(3.8, "feet"),
  34737. name: "Tail",
  34738. image: {
  34739. source: "./media/characters/sykes/tail.svg"
  34740. }
  34741. },
  34742. },
  34743. [
  34744. {
  34745. name: "Shrunken",
  34746. height: math.unit(5, "inches")
  34747. },
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(6 + 4 / 12, "feet"),
  34751. default: true
  34752. },
  34753. {
  34754. name: "Big",
  34755. height: math.unit(15, "feet")
  34756. },
  34757. ]
  34758. ))
  34759. characterMakers.push(() => makeCharacter(
  34760. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34761. {
  34762. front: {
  34763. height: math.unit(5 + 8/12, "feet"),
  34764. weight: math.unit(190, "lb"),
  34765. name: "Front",
  34766. image: {
  34767. source: "./media/characters/oven-otter/front.svg",
  34768. extra: 1809/1740,
  34769. bottom: 181/1990
  34770. }
  34771. },
  34772. back: {
  34773. height: math.unit(5 + 8/12, "feet"),
  34774. weight: math.unit(190, "lb"),
  34775. name: "Back",
  34776. image: {
  34777. source: "./media/characters/oven-otter/back.svg",
  34778. extra: 1709/1635,
  34779. bottom: 118/1827
  34780. }
  34781. },
  34782. hand: {
  34783. height: math.unit(1.07, "feet"),
  34784. name: "Hand",
  34785. image: {
  34786. source: "./media/characters/oven-otter/hand.svg"
  34787. }
  34788. },
  34789. beans: {
  34790. height: math.unit(1.74, "feet"),
  34791. name: "Beans",
  34792. image: {
  34793. source: "./media/characters/oven-otter/beans.svg"
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Micro",
  34800. height: math.unit(0.5, "inches")
  34801. },
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(5 + 8/12, "feet"),
  34805. default: true
  34806. },
  34807. {
  34808. name: "Macro",
  34809. height: math.unit(250, "feet")
  34810. },
  34811. {
  34812. name: "Really High",
  34813. height: math.unit(420, "feet")
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34819. {
  34820. front: {
  34821. height: math.unit(5, "meters"),
  34822. weight: math.unit(292000000000000, "kg"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/devourer/front.svg",
  34826. extra: 1800/1733,
  34827. bottom: 211/2011
  34828. }
  34829. },
  34830. maw: {
  34831. height: math.unit(1.1, "meter"),
  34832. name: "Maw",
  34833. image: {
  34834. source: "./media/characters/devourer/maw.svg"
  34835. }
  34836. },
  34837. },
  34838. [
  34839. {
  34840. name: "Small",
  34841. height: math.unit(3, "meters")
  34842. },
  34843. {
  34844. name: "Large",
  34845. height: math.unit(5, "meters"),
  34846. default: true
  34847. },
  34848. ]
  34849. ))
  34850. characterMakers.push(() => makeCharacter(
  34851. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34852. {
  34853. front: {
  34854. height: math.unit(6, "feet"),
  34855. weight: math.unit(400, "lb"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/ellarby/front.svg",
  34859. extra: 1909/1763,
  34860. bottom: 80/1989
  34861. }
  34862. },
  34863. back: {
  34864. height: math.unit(6, "feet"),
  34865. weight: math.unit(400, "lb"),
  34866. name: "Back",
  34867. image: {
  34868. source: "./media/characters/ellarby/back.svg",
  34869. extra: 1914/1784,
  34870. bottom: 172/2086
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Mischief",
  34877. height: math.unit(18, "inches")
  34878. },
  34879. {
  34880. name: "Trouble",
  34881. height: math.unit(12, "feet")
  34882. },
  34883. {
  34884. name: "Havoc",
  34885. height: math.unit(200, "feet"),
  34886. default: true
  34887. },
  34888. {
  34889. name: "Pandemonium",
  34890. height: math.unit(1, "mile")
  34891. },
  34892. {
  34893. name: "Catastrophe",
  34894. height: math.unit(100, "miles")
  34895. },
  34896. ]
  34897. ))
  34898. characterMakers.push(() => makeCharacter(
  34899. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34900. {
  34901. front: {
  34902. height: math.unit(4.7, "meters"),
  34903. weight: math.unit(6500, "kg"),
  34904. name: "Front",
  34905. image: {
  34906. source: "./media/characters/vex/front.svg",
  34907. extra: 1288/1140,
  34908. bottom: 100/1388
  34909. }
  34910. },
  34911. },
  34912. [
  34913. {
  34914. name: "Normal",
  34915. height: math.unit(4.7, "meters"),
  34916. default: true
  34917. },
  34918. ]
  34919. ))
  34920. characterMakers.push(() => makeCharacter(
  34921. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34922. {
  34923. normal: {
  34924. height: math.unit(6, "feet"),
  34925. weight: math.unit(350, "lb"),
  34926. name: "Normal",
  34927. image: {
  34928. source: "./media/characters/teshy/normal.svg",
  34929. extra: 1795/1735,
  34930. bottom: 16/1811
  34931. }
  34932. },
  34933. monsterFront: {
  34934. height: math.unit(12, "feet"),
  34935. weight: math.unit(4700, "lb"),
  34936. name: "Monster (Front)",
  34937. image: {
  34938. source: "./media/characters/teshy/monster-front.svg",
  34939. extra: 2042/2034,
  34940. bottom: 128/2170
  34941. }
  34942. },
  34943. monsterSide: {
  34944. height: math.unit(12, "feet"),
  34945. weight: math.unit(4700, "lb"),
  34946. name: "Monster (Side)",
  34947. image: {
  34948. source: "./media/characters/teshy/monster-side.svg",
  34949. extra: 2067/2056,
  34950. bottom: 70/2137
  34951. }
  34952. },
  34953. monsterBack: {
  34954. height: math.unit(12, "feet"),
  34955. weight: math.unit(4700, "lb"),
  34956. name: "Monster (Back)",
  34957. image: {
  34958. source: "./media/characters/teshy/monster-back.svg",
  34959. extra: 1921/1914,
  34960. bottom: 171/2092
  34961. }
  34962. },
  34963. },
  34964. [
  34965. {
  34966. name: "Normal",
  34967. height: math.unit(6, "feet"),
  34968. default: true
  34969. },
  34970. ]
  34971. ))
  34972. characterMakers.push(() => makeCharacter(
  34973. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34974. {
  34975. front: {
  34976. height: math.unit(6, "feet"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/ramey/front.svg",
  34980. extra: 790/787,
  34981. bottom: 27/817
  34982. }
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Normal",
  34988. height: math.unit(6, "feet"),
  34989. default: true
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34995. {
  34996. front: {
  34997. height: math.unit(5 + 5/12, "feet"),
  34998. weight: math.unit(120, "lb"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/phirae/front.svg",
  35002. extra: 2491/2436,
  35003. bottom: 38/2529
  35004. }
  35005. },
  35006. },
  35007. [
  35008. {
  35009. name: "Normal",
  35010. height: math.unit(5 + 5/12, "feet"),
  35011. default: true
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35017. {
  35018. front: {
  35019. height: math.unit(5 + 3/12, "feet"),
  35020. name: "Front",
  35021. image: {
  35022. source: "./media/characters/stagglas/front.svg",
  35023. extra: 962/882,
  35024. bottom: 53/1015
  35025. }
  35026. },
  35027. feral: {
  35028. height: math.unit(335, "cm"),
  35029. name: "Feral",
  35030. image: {
  35031. source: "./media/characters/stagglas/feral.svg",
  35032. extra: 1732/1090,
  35033. bottom: 48/1780
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(5 + 3/12, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(5 + 4/12, "feet"),
  35050. weight: math.unit(145, "lb"),
  35051. name: "Front",
  35052. image: {
  35053. source: "./media/characters/starra/front.svg",
  35054. extra: 1790/1691,
  35055. bottom: 91/1881
  35056. }
  35057. },
  35058. },
  35059. [
  35060. {
  35061. name: "Normal",
  35062. height: math.unit(5 + 4/12, "feet"),
  35063. default: true
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35069. {
  35070. front: {
  35071. height: math.unit(2.2, "meters"),
  35072. name: "Front",
  35073. image: {
  35074. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35075. extra: 1194/1005,
  35076. bottom: 25/1219
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Normal",
  35083. height: math.unit(2.2, "meters"),
  35084. default: true
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35090. {
  35091. side: {
  35092. height: math.unit(8 + 2/12, "feet"),
  35093. weight: math.unit(1240, "lb"),
  35094. name: "Side",
  35095. image: {
  35096. source: "./media/characters/mika-valentine/side.svg",
  35097. extra: 2670/2501,
  35098. bottom: 250/2920
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Normal",
  35105. height: math.unit(8 + 2/12, "feet"),
  35106. default: true
  35107. },
  35108. ]
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35112. {
  35113. front: {
  35114. height: math.unit(7 + 2/12, "feet"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/xoltol/front.svg",
  35118. extra: 2212/2124,
  35119. bottom: 84/2296
  35120. }
  35121. },
  35122. side: {
  35123. height: math.unit(7 + 2/12, "feet"),
  35124. name: "Side",
  35125. image: {
  35126. source: "./media/characters/xoltol/side.svg",
  35127. extra: 2273/2197,
  35128. bottom: 26/2299
  35129. }
  35130. },
  35131. hand: {
  35132. height: math.unit(2.5, "feet"),
  35133. name: "Hand",
  35134. image: {
  35135. source: "./media/characters/xoltol/hand.svg"
  35136. }
  35137. },
  35138. },
  35139. [
  35140. {
  35141. name: "Small-ish",
  35142. height: math.unit(5 + 11/12, "feet")
  35143. },
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(7 + 2/12, "feet")
  35147. },
  35148. {
  35149. name: "\"Macro\"",
  35150. height: math.unit(14 + 9/12, "feet"),
  35151. default: true
  35152. },
  35153. {
  35154. name: "Alternate Height",
  35155. height: math.unit(20, "feet")
  35156. },
  35157. {
  35158. name: "Actually Macro",
  35159. height: math.unit(100, "feet")
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(5 + 2/12, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/kotetsu-redwood/front.svg",
  35171. extra: 1053/942,
  35172. bottom: 60/1113
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(5 + 2/12, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(2.4, "meters"),
  35189. weight: math.unit(125, "kg"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/lilith/front.svg",
  35193. extra: 1590/1513,
  35194. bottom: 203/1793
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Humanoid",
  35201. height: math.unit(2.4, "meters")
  35202. },
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(6, "meters"),
  35206. default: true
  35207. },
  35208. {
  35209. name: "Largest",
  35210. height: math.unit(55, "meters")
  35211. },
  35212. ]
  35213. ))
  35214. characterMakers.push(() => makeCharacter(
  35215. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35216. {
  35217. front: {
  35218. height: math.unit(8 + 4/12, "feet"),
  35219. weight: math.unit(535, "lb"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/beh'kah-bolger/front.svg",
  35223. extra: 1660/1603,
  35224. bottom: 37/1697
  35225. }
  35226. },
  35227. },
  35228. [
  35229. {
  35230. name: "Normal",
  35231. height: math.unit(8 + 4/12, "feet"),
  35232. default: true
  35233. },
  35234. {
  35235. name: "Kaiju",
  35236. height: math.unit(250, "feet")
  35237. },
  35238. {
  35239. name: "Still Growing",
  35240. height: math.unit(10, "miles")
  35241. },
  35242. {
  35243. name: "Continental",
  35244. height: math.unit(5000, "miles")
  35245. },
  35246. {
  35247. name: "Final Form",
  35248. height: math.unit(2500000, "miles")
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35254. {
  35255. front: {
  35256. height: math.unit(7 + 2/12, "feet"),
  35257. weight: math.unit(230, "kg"),
  35258. name: "Front",
  35259. image: {
  35260. source: "./media/characters/tatyana-milewska/front.svg",
  35261. extra: 1199/1150,
  35262. bottom: 86/1285
  35263. }
  35264. },
  35265. },
  35266. [
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(7 + 2/12, "feet"),
  35270. default: true
  35271. },
  35272. {
  35273. name: "Big",
  35274. height: math.unit(12, "feet")
  35275. },
  35276. {
  35277. name: "Minimacro",
  35278. height: math.unit(20, "feet")
  35279. },
  35280. {
  35281. name: "Macro",
  35282. height: math.unit(120, "feet")
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(7 + 8/12, "feet"),
  35291. weight: math.unit(152, "kg"),
  35292. name: "Front",
  35293. image: {
  35294. source: "./media/characters/helen-arri/front.svg",
  35295. extra: 440/423,
  35296. bottom: 14/454
  35297. }
  35298. },
  35299. back: {
  35300. height: math.unit(7 + 8/12, "feet"),
  35301. weight: math.unit(152, "kg"),
  35302. name: "Back",
  35303. image: {
  35304. source: "./media/characters/helen-arri/back.svg",
  35305. extra: 443/426,
  35306. bottom: 8/451
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(7 + 8/12, "feet"),
  35314. default: true
  35315. },
  35316. {
  35317. name: "Big",
  35318. height: math.unit(14, "feet")
  35319. },
  35320. {
  35321. name: "Minimacro",
  35322. height: math.unit(24, "feet")
  35323. },
  35324. {
  35325. name: "Macro",
  35326. height: math.unit(140, "feet")
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35332. {
  35333. front: {
  35334. height: math.unit(6, "meters"),
  35335. name: "Front",
  35336. image: {
  35337. source: "./media/characters/ehanu-rehu/front.svg",
  35338. extra: 1800/1800,
  35339. bottom: 59/1859
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(6, "meters"),
  35347. default: true
  35348. },
  35349. ]
  35350. ))
  35351. characterMakers.push(() => makeCharacter(
  35352. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35353. {
  35354. front: {
  35355. height: math.unit(7 + 3/12, "feet"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/renholder/front.svg",
  35359. extra: 3096/2960,
  35360. bottom: 250/3346
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Normal Bat",
  35367. height: math.unit(7 + 3/12, "feet"),
  35368. default: true
  35369. },
  35370. {
  35371. name: "Slightly Tall Bat",
  35372. height: math.unit(100, "feet")
  35373. },
  35374. {
  35375. name: "Big Bat",
  35376. height: math.unit(1000, "feet")
  35377. },
  35378. {
  35379. name: "City-Sized Bat",
  35380. height: math.unit(200000, "feet")
  35381. },
  35382. {
  35383. name: "Bigger Bat",
  35384. height: math.unit(10000, "miles")
  35385. },
  35386. {
  35387. name: "Solar Sized Bat",
  35388. height: math.unit(100, "AU")
  35389. },
  35390. {
  35391. name: "Galactic Bat",
  35392. height: math.unit(200000, "lightyears")
  35393. },
  35394. {
  35395. name: "Universally Known Bat",
  35396. height: math.unit(1, "universe")
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35402. {
  35403. front: {
  35404. height: math.unit(6 + 11/12, "feet"),
  35405. weight: math.unit(250, "lb"),
  35406. name: "Front",
  35407. image: {
  35408. source: "./media/characters/cookiecat/front.svg",
  35409. extra: 893/827,
  35410. bottom: 14/907
  35411. }
  35412. },
  35413. },
  35414. [
  35415. {
  35416. name: "Micro",
  35417. height: math.unit(3, "inches")
  35418. },
  35419. {
  35420. name: "Normal",
  35421. height: math.unit(6 + 11/12, "feet"),
  35422. default: true
  35423. },
  35424. {
  35425. name: "Macro",
  35426. height: math.unit(100, "feet")
  35427. },
  35428. {
  35429. name: "Macro+",
  35430. height: math.unit(404, "feet")
  35431. },
  35432. {
  35433. name: "Megamacro",
  35434. height: math.unit(165, "miles")
  35435. },
  35436. {
  35437. name: "Planetary",
  35438. height: math.unit(4600, "miles")
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(10 + 3/12, "feet"),
  35447. weight: math.unit(1500, "lb"),
  35448. name: "Front",
  35449. image: {
  35450. source: "./media/characters/tux-kusanagi/front.svg",
  35451. extra: 944/840,
  35452. bottom: 39/983
  35453. }
  35454. },
  35455. back: {
  35456. height: math.unit(10 + 3/12, "feet"),
  35457. weight: math.unit(1500, "lb"),
  35458. name: "Back",
  35459. image: {
  35460. source: "./media/characters/tux-kusanagi/back.svg",
  35461. extra: 941/842,
  35462. bottom: 28/969
  35463. }
  35464. },
  35465. rump: {
  35466. height: math.unit(5.25, "feet"),
  35467. name: "Rump",
  35468. image: {
  35469. source: "./media/characters/tux-kusanagi/rump.svg"
  35470. }
  35471. },
  35472. beak: {
  35473. height: math.unit(1.54, "feet"),
  35474. name: "Beak",
  35475. image: {
  35476. source: "./media/characters/tux-kusanagi/beak.svg"
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(10 + 3/12, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(58, "feet"),
  35493. weight: math.unit(200, "tons"),
  35494. name: "Front",
  35495. image: {
  35496. source: "./media/characters/uzarmazari/front.svg",
  35497. extra: 1575/1455,
  35498. bottom: 152/1727
  35499. }
  35500. },
  35501. back: {
  35502. height: math.unit(58, "feet"),
  35503. weight: math.unit(200, "tons"),
  35504. name: "Back",
  35505. image: {
  35506. source: "./media/characters/uzarmazari/back.svg",
  35507. extra: 1585/1510,
  35508. bottom: 157/1742
  35509. }
  35510. },
  35511. head: {
  35512. height: math.unit(26, "feet"),
  35513. name: "Head",
  35514. image: {
  35515. source: "./media/characters/uzarmazari/head.svg"
  35516. }
  35517. },
  35518. },
  35519. [
  35520. {
  35521. name: "Normal",
  35522. height: math.unit(58, "feet"),
  35523. default: true
  35524. },
  35525. ]
  35526. ))
  35527. characterMakers.push(() => makeCharacter(
  35528. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35529. {
  35530. side: {
  35531. height: math.unit(15, "feet"),
  35532. name: "Side",
  35533. image: {
  35534. source: "./media/characters/akitu/side.svg",
  35535. extra: 1421/1321,
  35536. bottom: 157/1578
  35537. }
  35538. },
  35539. front: {
  35540. height: math.unit(15, "feet"),
  35541. name: "Front",
  35542. image: {
  35543. source: "./media/characters/akitu/front.svg",
  35544. extra: 1435/1326,
  35545. bottom: 232/1667
  35546. }
  35547. },
  35548. },
  35549. [
  35550. {
  35551. name: "Normal",
  35552. height: math.unit(15, "feet"),
  35553. default: true
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(10 + 8/12, "feet"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/azalie-croixland/front.svg",
  35565. extra: 1972/1856,
  35566. bottom: 31/2003
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Original Height",
  35573. height: math.unit(5 + 4/12, "feet")
  35574. },
  35575. {
  35576. name: "Normal Height",
  35577. height: math.unit(10 + 8/12, "feet"),
  35578. default: true
  35579. },
  35580. ]
  35581. ))
  35582. characterMakers.push(() => makeCharacter(
  35583. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35584. {
  35585. side: {
  35586. height: math.unit(7 + 1/12, "feet"),
  35587. weight: math.unit(245, "lb"),
  35588. name: "Side",
  35589. image: {
  35590. source: "./media/characters/kavus-kazian/side.svg",
  35591. extra: 349/342,
  35592. bottom: 15/364
  35593. }
  35594. },
  35595. },
  35596. [
  35597. {
  35598. name: "Normal",
  35599. height: math.unit(7 + 1/12, "feet"),
  35600. default: true
  35601. },
  35602. ]
  35603. ))
  35604. characterMakers.push(() => makeCharacter(
  35605. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35606. {
  35607. normalFront: {
  35608. height: math.unit(5 + 11/12, "feet"),
  35609. name: "Front",
  35610. image: {
  35611. source: "./media/characters/moonlight-rose/normal-front.svg",
  35612. extra: 1980/1825,
  35613. bottom: 18/1998
  35614. },
  35615. form: "normal",
  35616. default: true
  35617. },
  35618. normalBack: {
  35619. height: math.unit(5 + 11/12, "feet"),
  35620. name: "Back",
  35621. image: {
  35622. source: "./media/characters/moonlight-rose/normal-back.svg",
  35623. extra: 2010/1839,
  35624. bottom: 10/2020
  35625. },
  35626. form: "normal"
  35627. },
  35628. demonFront: {
  35629. height: math.unit(1.5, "earths"),
  35630. name: "Front",
  35631. image: {
  35632. source: "./media/characters/moonlight-rose/demon.svg",
  35633. extra: 1400/1294,
  35634. bottom: 45/1445
  35635. },
  35636. form: "demon",
  35637. default: true
  35638. },
  35639. terraFront: {
  35640. height: math.unit(1.5, "earths"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/moonlight-rose/terra.svg"
  35644. },
  35645. form: "terra",
  35646. default: true
  35647. },
  35648. jupiterFront: {
  35649. height: math.unit(69911*2, "km"),
  35650. name: "Front",
  35651. image: {
  35652. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35653. extra: 1367/1286,
  35654. bottom: 55/1422
  35655. },
  35656. form: "jupiter",
  35657. default: true
  35658. },
  35659. neptuneFront: {
  35660. height: math.unit(24622*2, "feet"),
  35661. name: "Front",
  35662. image: {
  35663. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35664. extra: 1851/1712,
  35665. bottom: 0/1851
  35666. },
  35667. form: "neptune",
  35668. default: true
  35669. },
  35670. },
  35671. [
  35672. {
  35673. name: "\"Natural\" Height",
  35674. height: math.unit(5 + 11/12, "feet"),
  35675. form: "normal"
  35676. },
  35677. {
  35678. name: "Smallest comfortable size",
  35679. height: math.unit(40, "meters"),
  35680. form: "normal"
  35681. },
  35682. {
  35683. name: "Common size",
  35684. height: math.unit(50, "km"),
  35685. form: "normal",
  35686. default: true
  35687. },
  35688. {
  35689. name: "Normal",
  35690. height: math.unit(1.5, "earths"),
  35691. form: "demon",
  35692. default: true
  35693. },
  35694. {
  35695. name: "Universal",
  35696. height: math.unit(15, "universes"),
  35697. form: "demon"
  35698. },
  35699. {
  35700. name: "Earth",
  35701. height: math.unit(1.5, "earths"),
  35702. form: "terra",
  35703. default: true
  35704. },
  35705. {
  35706. name: "Super Earth",
  35707. height: math.unit(67.5, "earths"),
  35708. form: "terra"
  35709. },
  35710. {
  35711. name: "Doesn't fit in a solar system...",
  35712. height: math.unit(1, "galaxy"),
  35713. form: "terra"
  35714. },
  35715. {
  35716. name: "Saturn",
  35717. height: math.unit(58232*2, "km"),
  35718. form: "jupiter"
  35719. },
  35720. {
  35721. name: "Jupiter",
  35722. height: math.unit(69911*2, "km"),
  35723. form: "jupiter",
  35724. default: true
  35725. },
  35726. {
  35727. name: "HD 100546 b",
  35728. height: math.unit(482938, "km"),
  35729. form: "jupiter"
  35730. },
  35731. {
  35732. name: "Enceladus",
  35733. height: math.unit(513*2, "km"),
  35734. form: "neptune"
  35735. },
  35736. {
  35737. name: "Europe",
  35738. height: math.unit(1560*2, "km"),
  35739. form: "neptune"
  35740. },
  35741. {
  35742. name: "Neptune",
  35743. height: math.unit(24622*2, "km"),
  35744. form: "neptune",
  35745. default: true
  35746. },
  35747. {
  35748. name: "CoRoT-9b",
  35749. height: math.unit(75067*2, "km"),
  35750. form: "neptune"
  35751. },
  35752. ],
  35753. {
  35754. "normal": {
  35755. name: "Normal",
  35756. default: true
  35757. },
  35758. "demon": {
  35759. name: "Demon"
  35760. },
  35761. "terra": {
  35762. name: "Terra"
  35763. },
  35764. "jupiter": {
  35765. name: "Jupiter"
  35766. },
  35767. "neptune": {
  35768. name: "Neptune"
  35769. }
  35770. }
  35771. ))
  35772. characterMakers.push(() => makeCharacter(
  35773. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35774. {
  35775. front: {
  35776. height: math.unit(16, "feet"),
  35777. weight: math.unit(610, "kg"),
  35778. name: "Front",
  35779. image: {
  35780. source: "./media/characters/huckle/front.svg",
  35781. extra: 1731/1625,
  35782. bottom: 33/1764
  35783. }
  35784. },
  35785. back: {
  35786. height: math.unit(16, "feet"),
  35787. weight: math.unit(610, "kg"),
  35788. name: "Back",
  35789. image: {
  35790. source: "./media/characters/huckle/back.svg",
  35791. extra: 1738/1651,
  35792. bottom: 37/1775
  35793. }
  35794. },
  35795. laughing: {
  35796. height: math.unit(3.75, "feet"),
  35797. name: "Laughing",
  35798. image: {
  35799. source: "./media/characters/huckle/laughing.svg"
  35800. }
  35801. },
  35802. angry: {
  35803. height: math.unit(4.15, "feet"),
  35804. name: "Angry",
  35805. image: {
  35806. source: "./media/characters/huckle/angry.svg"
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(16, "feet"),
  35814. default: true
  35815. },
  35816. {
  35817. name: "Mini Macro",
  35818. height: math.unit(463, "feet")
  35819. },
  35820. {
  35821. name: "Macro",
  35822. height: math.unit(1680, "meters")
  35823. },
  35824. {
  35825. name: "Mega Macro",
  35826. height: math.unit(175, "km")
  35827. },
  35828. {
  35829. name: "Terra Macro",
  35830. height: math.unit(32, "gigameters")
  35831. },
  35832. {
  35833. name: "Multiverse+",
  35834. height: math.unit(2.56e23, "yottameters")
  35835. },
  35836. ]
  35837. ))
  35838. characterMakers.push(() => makeCharacter(
  35839. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35840. {
  35841. front: {
  35842. height: math.unit(6 + 9/12, "feet"),
  35843. weight: math.unit(280, "lb"),
  35844. name: "Front",
  35845. image: {
  35846. source: "./media/characters/candy/front.svg",
  35847. extra: 234/217,
  35848. bottom: 11/245
  35849. }
  35850. },
  35851. },
  35852. [
  35853. {
  35854. name: "Really Small",
  35855. height: math.unit(0.1, "nm")
  35856. },
  35857. {
  35858. name: "Micro",
  35859. height: math.unit(2, "inches")
  35860. },
  35861. {
  35862. name: "Normal",
  35863. height: math.unit(6 + 9/12, "feet"),
  35864. default: true
  35865. },
  35866. {
  35867. name: "Small Macro",
  35868. height: math.unit(69, "feet")
  35869. },
  35870. {
  35871. name: "Macro",
  35872. height: math.unit(160, "feet")
  35873. },
  35874. {
  35875. name: "Megamacro",
  35876. height: math.unit(22000, "miles")
  35877. },
  35878. {
  35879. name: "Gigamacro",
  35880. height: math.unit(50000, "miles")
  35881. },
  35882. ]
  35883. ))
  35884. characterMakers.push(() => makeCharacter(
  35885. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35886. {
  35887. front: {
  35888. height: math.unit(4, "feet"),
  35889. weight: math.unit(90, "lb"),
  35890. name: "Front",
  35891. image: {
  35892. source: "./media/characters/joey-mcdonald/front.svg",
  35893. extra: 1059/852,
  35894. bottom: 33/1092
  35895. }
  35896. },
  35897. back: {
  35898. height: math.unit(4, "feet"),
  35899. weight: math.unit(90, "lb"),
  35900. name: "Back",
  35901. image: {
  35902. source: "./media/characters/joey-mcdonald/back.svg",
  35903. extra: 1077/879,
  35904. bottom: 5/1082
  35905. }
  35906. },
  35907. frontKobold: {
  35908. height: math.unit(4, "feet"),
  35909. weight: math.unit(100, "lb"),
  35910. name: "Front-kobold",
  35911. image: {
  35912. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35913. extra: 1480/1367,
  35914. bottom: 0/1480
  35915. }
  35916. },
  35917. backKobold: {
  35918. height: math.unit(4, "feet"),
  35919. weight: math.unit(100, "lb"),
  35920. name: "Back-kobold",
  35921. image: {
  35922. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35923. extra: 1449/1361,
  35924. bottom: 0/1449
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(4, "feet"),
  35932. default: true
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35938. {
  35939. front: {
  35940. height: math.unit(12 + 6/12, "feet"),
  35941. name: "Front",
  35942. image: {
  35943. source: "./media/characters/kass-lockheed/front.svg",
  35944. extra: 354/343,
  35945. bottom: 9/363
  35946. }
  35947. },
  35948. back: {
  35949. height: math.unit(12 + 6/12, "feet"),
  35950. name: "Back",
  35951. image: {
  35952. source: "./media/characters/kass-lockheed/back.svg",
  35953. extra: 364/352,
  35954. bottom: 3/367
  35955. }
  35956. },
  35957. dick: {
  35958. height: math.unit(3.12, "feet"),
  35959. name: "Dick",
  35960. image: {
  35961. source: "./media/characters/kass-lockheed/dick.svg"
  35962. }
  35963. },
  35964. head: {
  35965. height: math.unit(2.6, "feet"),
  35966. name: "Head",
  35967. image: {
  35968. source: "./media/characters/kass-lockheed/head.svg"
  35969. }
  35970. },
  35971. bleh: {
  35972. height: math.unit(2.85, "feet"),
  35973. name: "Bleh",
  35974. image: {
  35975. source: "./media/characters/kass-lockheed/bleh.svg"
  35976. }
  35977. },
  35978. smug: {
  35979. height: math.unit(2.85, "feet"),
  35980. name: "Smug",
  35981. image: {
  35982. source: "./media/characters/kass-lockheed/smug.svg"
  35983. }
  35984. },
  35985. },
  35986. [
  35987. {
  35988. name: "Normal",
  35989. height: math.unit(12 + 6/12, "feet"),
  35990. default: true
  35991. },
  35992. ]
  35993. ))
  35994. characterMakers.push(() => makeCharacter(
  35995. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35996. {
  35997. front: {
  35998. height: math.unit(6 + 2/12, "feet"),
  35999. name: "Front",
  36000. image: {
  36001. source: "./media/characters/taylor/front.svg",
  36002. extra: 639/495,
  36003. bottom: 12/651
  36004. }
  36005. },
  36006. },
  36007. [
  36008. {
  36009. name: "Normal",
  36010. height: math.unit(6 + 2/12, "feet"),
  36011. default: true
  36012. },
  36013. {
  36014. name: "Big",
  36015. height: math.unit(15, "feet")
  36016. },
  36017. {
  36018. name: "Lorg",
  36019. height: math.unit(80, "feet")
  36020. },
  36021. {
  36022. name: "Too Lorg",
  36023. height: math.unit(120, "feet")
  36024. },
  36025. ]
  36026. ))
  36027. characterMakers.push(() => makeCharacter(
  36028. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36029. {
  36030. front: {
  36031. height: math.unit(15, "feet"),
  36032. name: "Front",
  36033. image: {
  36034. source: "./media/characters/kaizer/front.svg",
  36035. extra: 1612/1436,
  36036. bottom: 43/1655
  36037. }
  36038. },
  36039. },
  36040. [
  36041. {
  36042. name: "Normal",
  36043. height: math.unit(15, "feet"),
  36044. default: true
  36045. },
  36046. ]
  36047. ))
  36048. characterMakers.push(() => makeCharacter(
  36049. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36050. {
  36051. front: {
  36052. height: math.unit(2, "feet"),
  36053. weight: math.unit(30, "lb"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/sandy/front.svg",
  36057. extra: 1439/1307,
  36058. bottom: 194/1633
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(2, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(3, "feet"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/mellvi/front.svg",
  36078. extra: 1831/1630,
  36079. bottom: 58/1889
  36080. }
  36081. },
  36082. },
  36083. [
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(3, "feet"),
  36087. default: true
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36093. {
  36094. front: {
  36095. height: math.unit(5 + 11/12, "feet"),
  36096. weight: math.unit(200, "lb"),
  36097. name: "Front",
  36098. image: {
  36099. source: "./media/characters/shirou/front.svg",
  36100. extra: 2491/2383,
  36101. bottom: 189/2680
  36102. }
  36103. },
  36104. back: {
  36105. height: math.unit(5 + 11/12, "feet"),
  36106. weight: math.unit(200, "lb"),
  36107. name: "Back",
  36108. image: {
  36109. source: "./media/characters/shirou/back.svg",
  36110. extra: 2554/2450,
  36111. bottom: 76/2630
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(5 + 11/12, "feet"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36125. {
  36126. front: {
  36127. height: math.unit(6 + 3/12, "feet"),
  36128. weight: math.unit(177, "lb"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/noryu/front.svg",
  36132. extra: 973/885,
  36133. bottom: 10/983
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(6 + 3/12, "feet"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36147. {
  36148. front: {
  36149. height: math.unit(5 + 6/12, "feet"),
  36150. weight: math.unit(170, "lb"),
  36151. name: "Front",
  36152. image: {
  36153. source: "./media/characters/mevolas-rubenido/front.svg",
  36154. extra: 2109/1901,
  36155. bottom: 96/2205
  36156. }
  36157. },
  36158. },
  36159. [
  36160. {
  36161. name: "Normal",
  36162. height: math.unit(5 + 6/12, "feet"),
  36163. default: true
  36164. },
  36165. ]
  36166. ))
  36167. characterMakers.push(() => makeCharacter(
  36168. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36169. {
  36170. front: {
  36171. height: math.unit(100, "feet"),
  36172. name: "Front",
  36173. image: {
  36174. source: "./media/characters/dee/front.svg",
  36175. extra: 2153/2036,
  36176. bottom: 59/2212
  36177. }
  36178. },
  36179. back: {
  36180. height: math.unit(100, "feet"),
  36181. name: "Back",
  36182. image: {
  36183. source: "./media/characters/dee/back.svg",
  36184. extra: 2183/2058,
  36185. bottom: 75/2258
  36186. }
  36187. },
  36188. foot: {
  36189. height: math.unit(19.43, "feet"),
  36190. name: "Foot",
  36191. image: {
  36192. source: "./media/characters/dee/foot.svg"
  36193. }
  36194. },
  36195. hoof: {
  36196. height: math.unit(20.6, "feet"),
  36197. name: "Hoof",
  36198. image: {
  36199. source: "./media/characters/dee/hoof.svg"
  36200. }
  36201. },
  36202. },
  36203. [
  36204. {
  36205. name: "Macro",
  36206. height: math.unit(100, "feet"),
  36207. default: true
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36213. {
  36214. front: {
  36215. height: math.unit(5 + 6/12, "feet"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/teh/front.svg",
  36219. extra: 1002/847,
  36220. bottom: 62/1064
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Normal",
  36227. height: math.unit(5 + 6/12, "feet"),
  36228. default: true
  36229. },
  36230. ]
  36231. ))
  36232. characterMakers.push(() => makeCharacter(
  36233. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36234. {
  36235. side: {
  36236. height: math.unit(6 + 1/12, "feet"),
  36237. weight: math.unit(204, "lb"),
  36238. name: "Side",
  36239. image: {
  36240. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36241. extra: 974/775,
  36242. bottom: 169/1143
  36243. }
  36244. },
  36245. sitting: {
  36246. height: math.unit(6 + 2/12, "feet"),
  36247. weight: math.unit(204, "lb"),
  36248. name: "Sitting",
  36249. image: {
  36250. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36251. extra: 1175/964,
  36252. bottom: 378/1553
  36253. }
  36254. },
  36255. },
  36256. [
  36257. {
  36258. name: "Normal",
  36259. height: math.unit(6 + 1/12, "feet"),
  36260. default: true
  36261. },
  36262. ]
  36263. ))
  36264. characterMakers.push(() => makeCharacter(
  36265. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36266. {
  36267. front: {
  36268. height: math.unit(6, "inches"),
  36269. name: "Front",
  36270. image: {
  36271. source: "./media/characters/tululi/front.svg",
  36272. extra: 1997/1876,
  36273. bottom: 20/2017
  36274. }
  36275. },
  36276. },
  36277. [
  36278. {
  36279. name: "Normal",
  36280. height: math.unit(6, "inches"),
  36281. default: true
  36282. },
  36283. ]
  36284. ))
  36285. characterMakers.push(() => makeCharacter(
  36286. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36287. {
  36288. front: {
  36289. height: math.unit(4 + 1/12, "feet"),
  36290. name: "Front",
  36291. image: {
  36292. source: "./media/characters/star/front.svg",
  36293. extra: 1493/1189,
  36294. bottom: 48/1541
  36295. }
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "Normal",
  36301. height: math.unit(4 + 1/12, "feet"),
  36302. default: true
  36303. },
  36304. ]
  36305. ))
  36306. characterMakers.push(() => makeCharacter(
  36307. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36308. {
  36309. front: {
  36310. height: math.unit(6 + 3/12, "feet"),
  36311. name: "Front",
  36312. image: {
  36313. source: "./media/characters/comet/front.svg",
  36314. extra: 1681/1462,
  36315. bottom: 26/1707
  36316. }
  36317. },
  36318. },
  36319. [
  36320. {
  36321. name: "Normal",
  36322. height: math.unit(6 + 3/12, "feet"),
  36323. default: true
  36324. },
  36325. ]
  36326. ))
  36327. characterMakers.push(() => makeCharacter(
  36328. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36329. {
  36330. front: {
  36331. height: math.unit(950, "feet"),
  36332. name: "Front",
  36333. image: {
  36334. source: "./media/characters/vortex/front.svg",
  36335. extra: 1497/1434,
  36336. bottom: 56/1553
  36337. }
  36338. },
  36339. maw: {
  36340. height: math.unit(285, "feet"),
  36341. name: "Maw",
  36342. image: {
  36343. source: "./media/characters/vortex/maw.svg"
  36344. }
  36345. },
  36346. },
  36347. [
  36348. {
  36349. name: "Macro",
  36350. height: math.unit(950, "feet"),
  36351. default: true
  36352. },
  36353. ]
  36354. ))
  36355. characterMakers.push(() => makeCharacter(
  36356. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36357. {
  36358. front: {
  36359. height: math.unit(600, "feet"),
  36360. weight: math.unit(0.02, "grams"),
  36361. name: "Front",
  36362. image: {
  36363. source: "./media/characters/doodle/front.svg",
  36364. extra: 1578/1413,
  36365. bottom: 37/1615
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Macro",
  36372. height: math.unit(600, "feet"),
  36373. default: true
  36374. },
  36375. ]
  36376. ))
  36377. characterMakers.push(() => makeCharacter(
  36378. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36379. {
  36380. front: {
  36381. height: math.unit(6 + 6/12, "feet"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/jai/front.svg",
  36385. extra: 1645/1534,
  36386. bottom: 115/1760
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(6 + 6/12, "feet"),
  36394. default: true
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36400. {
  36401. front: {
  36402. height: math.unit(6 + 8/12, "feet"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/pixel/front.svg",
  36406. extra: 1900/1735,
  36407. bottom: 63/1963
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(6 + 8/12, "feet"),
  36415. default: true
  36416. },
  36417. ]
  36418. ))
  36419. characterMakers.push(() => makeCharacter(
  36420. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36421. {
  36422. back: {
  36423. height: math.unit(4 + 1/12, "feet"),
  36424. weight: math.unit(75, "lb"),
  36425. name: "Back",
  36426. image: {
  36427. source: "./media/characters/rhett/back.svg",
  36428. extra: 930/878,
  36429. bottom: 25/955
  36430. }
  36431. },
  36432. front: {
  36433. height: math.unit(4 + 1/12, "feet"),
  36434. weight: math.unit(75, "lb"),
  36435. name: "Front",
  36436. image: {
  36437. source: "./media/characters/rhett/front.svg",
  36438. extra: 1682/1586,
  36439. bottom: 92/1774
  36440. }
  36441. },
  36442. },
  36443. [
  36444. {
  36445. name: "Micro",
  36446. height: math.unit(8, "inches")
  36447. },
  36448. {
  36449. name: "Tiny",
  36450. height: math.unit(2, "feet")
  36451. },
  36452. {
  36453. name: "Normal",
  36454. height: math.unit(4 + 1/12, "feet"),
  36455. default: true
  36456. },
  36457. ]
  36458. ))
  36459. characterMakers.push(() => makeCharacter(
  36460. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36461. {
  36462. front: {
  36463. height: math.unit(3 + 3/12, "feet"),
  36464. name: "Front",
  36465. image: {
  36466. source: "./media/characters/penny/front.svg",
  36467. extra: 1406/1311,
  36468. bottom: 26/1432
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(3 + 3/12, "feet"),
  36476. default: true
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(4 + 11/12, "feet"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/monty/front.svg",
  36488. extra: 1479/1209,
  36489. bottom: 0/1479
  36490. }
  36491. },
  36492. },
  36493. [
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(4 + 11/12, "feet"),
  36497. default: true
  36498. },
  36499. ]
  36500. ))
  36501. characterMakers.push(() => makeCharacter(
  36502. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36503. {
  36504. front: {
  36505. height: math.unit(8 + 4/12, "feet"),
  36506. name: "Front",
  36507. image: {
  36508. source: "./media/characters/sterling/front.svg",
  36509. extra: 1420/1236,
  36510. bottom: 27/1447
  36511. }
  36512. },
  36513. },
  36514. [
  36515. {
  36516. name: "Normal",
  36517. height: math.unit(8 + 4/12, "feet"),
  36518. default: true
  36519. },
  36520. ]
  36521. ))
  36522. characterMakers.push(() => makeCharacter(
  36523. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36524. {
  36525. front: {
  36526. height: math.unit(15, "feet"),
  36527. name: "Front",
  36528. image: {
  36529. source: "./media/characters/marble/front.svg",
  36530. extra: 973/937,
  36531. bottom: 32/1005
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(15, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36545. {
  36546. front: {
  36547. height: math.unit(3, "inches"),
  36548. name: "Front",
  36549. image: {
  36550. source: "./media/characters/powder/front.svg",
  36551. extra: 1504/1334,
  36552. bottom: 518/2022
  36553. }
  36554. },
  36555. },
  36556. [
  36557. {
  36558. name: "Normal",
  36559. height: math.unit(3, "inches"),
  36560. default: true
  36561. },
  36562. ]
  36563. ))
  36564. characterMakers.push(() => makeCharacter(
  36565. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36566. {
  36567. front: {
  36568. height: math.unit(4 + 5/12, "feet"),
  36569. name: "Front",
  36570. image: {
  36571. source: "./media/characters/joey-raccoon/front.svg",
  36572. extra: 1273/1197,
  36573. bottom: 0/1273
  36574. }
  36575. },
  36576. },
  36577. [
  36578. {
  36579. name: "Normal",
  36580. height: math.unit(4 + 5/12, "feet"),
  36581. default: true
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36587. {
  36588. front: {
  36589. height: math.unit(8 + 4/12, "feet"),
  36590. name: "Front",
  36591. image: {
  36592. source: "./media/characters/vick/front.svg",
  36593. extra: 2187/2118,
  36594. bottom: 47/2234
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(8 + 4/12, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(5 + 5/12, "feet"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/mitsy/front.svg",
  36614. extra: 1842/1695,
  36615. bottom: 0/1842
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(5 + 5/12, "feet"),
  36623. default: true
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(6 + 3/12, "feet"),
  36632. name: "Front",
  36633. image: {
  36634. source: "./media/characters/silvy/front.svg",
  36635. extra: 1995/1836,
  36636. bottom: 225/2220
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Normal",
  36643. height: math.unit(6 + 3/12, "feet"),
  36644. default: true
  36645. },
  36646. ]
  36647. ))
  36648. characterMakers.push(() => makeCharacter(
  36649. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36650. {
  36651. front: {
  36652. height: math.unit(3 + 8/12, "feet"),
  36653. name: "Front",
  36654. image: {
  36655. source: "./media/characters/rodney/front.svg",
  36656. extra: 1956/1747,
  36657. bottom: 31/1987
  36658. }
  36659. },
  36660. frontDressed: {
  36661. height: math.unit(2.9, "feet"),
  36662. name: "Front (Dressed)",
  36663. image: {
  36664. source: "./media/characters/rodney/front-dressed.svg",
  36665. extra: 1382/1241,
  36666. bottom: 385/1767
  36667. }
  36668. },
  36669. },
  36670. [
  36671. {
  36672. name: "Normal",
  36673. height: math.unit(3 + 8/12, "feet"),
  36674. default: true
  36675. },
  36676. ]
  36677. ))
  36678. characterMakers.push(() => makeCharacter(
  36679. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36680. {
  36681. front: {
  36682. height: math.unit(5 + 9/12, "feet"),
  36683. weight: math.unit(194, "lbs"),
  36684. name: "Front",
  36685. image: {
  36686. source: "./media/characters/zakail-sudekai/front.svg",
  36687. extra: 2696/2533,
  36688. bottom: 248/2944
  36689. }
  36690. },
  36691. maw: {
  36692. height: math.unit(1.35, "feet"),
  36693. name: "Maw",
  36694. image: {
  36695. source: "./media/characters/zakail-sudekai/maw.svg"
  36696. }
  36697. },
  36698. },
  36699. [
  36700. {
  36701. name: "Normal",
  36702. height: math.unit(5 + 9/12, "feet"),
  36703. default: true
  36704. },
  36705. ]
  36706. ))
  36707. characterMakers.push(() => makeCharacter(
  36708. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36709. {
  36710. front: {
  36711. height: math.unit(8 + 4/12, "feet"),
  36712. weight: math.unit(1200, "lb"),
  36713. name: "Front",
  36714. image: {
  36715. source: "./media/characters/eleanor/front.svg",
  36716. extra: 1226/1192,
  36717. bottom: 52/1278
  36718. }
  36719. },
  36720. back: {
  36721. height: math.unit(8 + 4/12, "feet"),
  36722. weight: math.unit(1200, "lb"),
  36723. name: "Back",
  36724. image: {
  36725. source: "./media/characters/eleanor/back.svg",
  36726. extra: 1242/1184,
  36727. bottom: 60/1302
  36728. }
  36729. },
  36730. head: {
  36731. height: math.unit(2.62, "feet"),
  36732. name: "Head",
  36733. image: {
  36734. source: "./media/characters/eleanor/head.svg"
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(8 + 4/12, "feet"),
  36742. default: true
  36743. },
  36744. ]
  36745. ))
  36746. characterMakers.push(() => makeCharacter(
  36747. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36748. {
  36749. front: {
  36750. height: math.unit(8 + 4/12, "feet"),
  36751. weight: math.unit(750, "lb"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/tanya/front.svg",
  36755. extra: 1749/1615,
  36756. bottom: 33/1782
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(8 + 4/12, "feet"),
  36764. default: true
  36765. },
  36766. ]
  36767. ))
  36768. characterMakers.push(() => makeCharacter(
  36769. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36770. {
  36771. front: {
  36772. height: math.unit(5, "feet"),
  36773. weight: math.unit(225, "lb"),
  36774. name: "Front",
  36775. image: {
  36776. source: "./media/characters/cindy/front.svg",
  36777. extra: 1320/1250,
  36778. bottom: 42/1362
  36779. }
  36780. },
  36781. frontDressed: {
  36782. height: math.unit(5, "feet"),
  36783. weight: math.unit(225, "lb"),
  36784. name: "Front (Dressed)",
  36785. image: {
  36786. source: "./media/characters/cindy/front-dressed.svg",
  36787. extra: 1320/1250,
  36788. bottom: 42/1362
  36789. }
  36790. },
  36791. back: {
  36792. height: math.unit(5, "feet"),
  36793. weight: math.unit(225, "lb"),
  36794. name: "Back",
  36795. image: {
  36796. source: "./media/characters/cindy/back.svg",
  36797. extra: 1384/1346,
  36798. bottom: 14/1398
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(5, "feet"),
  36806. default: true
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(6 + 9/12, "feet"),
  36815. weight: math.unit(440, "lb"),
  36816. name: "Front",
  36817. image: {
  36818. source: "./media/characters/wilbur-owen/front.svg",
  36819. extra: 1575/1448,
  36820. bottom: 72/1647
  36821. }
  36822. },
  36823. back: {
  36824. height: math.unit(6 + 9/12, "feet"),
  36825. weight: math.unit(440, "lb"),
  36826. name: "Back",
  36827. image: {
  36828. source: "./media/characters/wilbur-owen/back.svg",
  36829. extra: 1578/1445,
  36830. bottom: 36/1614
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(6 + 9/12, "feet"),
  36838. default: true
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(6 + 5/12, "feet"),
  36847. weight: math.unit(650, "lb"),
  36848. name: "Front",
  36849. image: {
  36850. source: "./media/characters/keegan/front.svg",
  36851. extra: 2387/2198,
  36852. bottom: 33/2420
  36853. }
  36854. },
  36855. side: {
  36856. height: math.unit(6 + 5/12, "feet"),
  36857. weight: math.unit(650, "lb"),
  36858. name: "Side",
  36859. image: {
  36860. source: "./media/characters/keegan/side.svg",
  36861. extra: 2390/2202,
  36862. bottom: 47/2437
  36863. }
  36864. },
  36865. back: {
  36866. height: math.unit(6 + 5/12, "feet"),
  36867. weight: math.unit(650, "lb"),
  36868. name: "Back",
  36869. image: {
  36870. source: "./media/characters/keegan/back.svg",
  36871. extra: 2418/2268,
  36872. bottom: 15/2433
  36873. }
  36874. },
  36875. frontSfw: {
  36876. height: math.unit(6 + 5/12, "feet"),
  36877. weight: math.unit(650, "lb"),
  36878. name: "Front (SFW)",
  36879. image: {
  36880. source: "./media/characters/keegan/front-sfw.svg",
  36881. extra: 2387/2198,
  36882. bottom: 33/2420
  36883. }
  36884. },
  36885. beans: {
  36886. height: math.unit(1.85, "feet"),
  36887. name: "Beans",
  36888. image: {
  36889. source: "./media/characters/keegan/beans.svg"
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Normal",
  36896. height: math.unit(6 + 5/12, "feet"),
  36897. default: true
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36903. {
  36904. front: {
  36905. height: math.unit(9, "feet"),
  36906. name: "Front",
  36907. image: {
  36908. source: "./media/characters/colton/front.svg",
  36909. extra: 1589/1326,
  36910. bottom: 139/1728
  36911. }
  36912. },
  36913. },
  36914. [
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(9, "feet"),
  36918. default: true
  36919. },
  36920. ]
  36921. ))
  36922. characterMakers.push(() => makeCharacter(
  36923. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36924. {
  36925. front: {
  36926. height: math.unit(2 + 9/12, "feet"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/bora/front.svg",
  36930. extra: 1265/1250,
  36931. bottom: 24/1289
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(2 + 9/12, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(8, "feet"),
  36948. name: "Front",
  36949. image: {
  36950. source: "./media/characters/myu-myu/front.svg",
  36951. extra: 1949/1857,
  36952. bottom: 90/2039
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(8, "feet"),
  36960. default: true
  36961. },
  36962. {
  36963. name: "Big",
  36964. height: math.unit(15, "feet")
  36965. },
  36966. {
  36967. name: "BIG",
  36968. height: math.unit(25, "feet")
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36974. {
  36975. side: {
  36976. height: math.unit(7 + 5/12, "feet"),
  36977. weight: math.unit(2800, "lb"),
  36978. name: "Side",
  36979. image: {
  36980. source: "./media/characters/haloren/side.svg",
  36981. extra: 1793/409,
  36982. bottom: 59/1852
  36983. }
  36984. },
  36985. frontPaw: {
  36986. height: math.unit(2.36, "feet"),
  36987. name: "Front paw",
  36988. image: {
  36989. source: "./media/characters/haloren/front-paw.svg"
  36990. }
  36991. },
  36992. hindPaw: {
  36993. height: math.unit(3.18, "feet"),
  36994. name: "Hind paw",
  36995. image: {
  36996. source: "./media/characters/haloren/hind-paw.svg"
  36997. }
  36998. },
  36999. maw: {
  37000. height: math.unit(5.05, "feet"),
  37001. name: "Maw",
  37002. image: {
  37003. source: "./media/characters/haloren/maw.svg"
  37004. }
  37005. },
  37006. dick: {
  37007. height: math.unit(2.90, "feet"),
  37008. name: "Dick",
  37009. image: {
  37010. source: "./media/characters/haloren/dick.svg"
  37011. }
  37012. },
  37013. },
  37014. [
  37015. {
  37016. name: "Normal",
  37017. height: math.unit(7 + 5/12, "feet"),
  37018. default: true
  37019. },
  37020. {
  37021. name: "Enhanced",
  37022. height: math.unit(14 + 3/12, "feet")
  37023. },
  37024. ]
  37025. ))
  37026. characterMakers.push(() => makeCharacter(
  37027. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37028. {
  37029. front: {
  37030. height: math.unit(171, "cm"),
  37031. name: "Front",
  37032. image: {
  37033. source: "./media/characters/kimmy/front.svg",
  37034. extra: 1491/1435,
  37035. bottom: 53/1544
  37036. }
  37037. },
  37038. },
  37039. [
  37040. {
  37041. name: "Small",
  37042. height: math.unit(9, "cm")
  37043. },
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(171, "cm"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37053. {
  37054. front: {
  37055. height: math.unit(8, "feet"),
  37056. weight: math.unit(300, "lb"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/galeboomer/front.svg",
  37060. extra: 4651/4415,
  37061. bottom: 162/4813
  37062. }
  37063. },
  37064. back: {
  37065. height: math.unit(8, "feet"),
  37066. weight: math.unit(300, "lb"),
  37067. name: "Back",
  37068. image: {
  37069. source: "./media/characters/galeboomer/back.svg",
  37070. extra: 4544/4314,
  37071. bottom: 16/4560
  37072. }
  37073. },
  37074. frontAlt: {
  37075. height: math.unit(8, "feet"),
  37076. weight: math.unit(300, "lb"),
  37077. name: "Front (Alt)",
  37078. image: {
  37079. source: "./media/characters/galeboomer/front-alt.svg",
  37080. extra: 4458/4228,
  37081. bottom: 68/4526
  37082. }
  37083. },
  37084. maw: {
  37085. height: math.unit(1.2, "feet"),
  37086. name: "Maw",
  37087. image: {
  37088. source: "./media/characters/galeboomer/maw.svg"
  37089. }
  37090. },
  37091. },
  37092. [
  37093. {
  37094. name: "Normal",
  37095. height: math.unit(8, "feet"),
  37096. default: true
  37097. },
  37098. ]
  37099. ))
  37100. characterMakers.push(() => makeCharacter(
  37101. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37102. {
  37103. front: {
  37104. height: math.unit(5 + 9/12, "feet"),
  37105. weight: math.unit(120, "lb"),
  37106. name: "Front",
  37107. image: {
  37108. source: "./media/characters/chyr/front.svg",
  37109. extra: 1323/1254,
  37110. bottom: 63/1386
  37111. }
  37112. },
  37113. back: {
  37114. height: math.unit(5 + 9/12, "feet"),
  37115. weight: math.unit(120, "lb"),
  37116. name: "Back",
  37117. image: {
  37118. source: "./media/characters/chyr/back.svg",
  37119. extra: 1323/1252,
  37120. bottom: 48/1371
  37121. }
  37122. },
  37123. },
  37124. [
  37125. {
  37126. name: "Normal",
  37127. height: math.unit(5 + 9/12, "feet"),
  37128. default: true
  37129. },
  37130. ]
  37131. ))
  37132. characterMakers.push(() => makeCharacter(
  37133. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37134. {
  37135. front: {
  37136. height: math.unit(7, "feet"),
  37137. weight: math.unit(310, "lb"),
  37138. name: "Front",
  37139. image: {
  37140. source: "./media/characters/solarus/front.svg",
  37141. extra: 2415/2021,
  37142. bottom: 103/2518
  37143. }
  37144. },
  37145. back: {
  37146. height: math.unit(7, "feet"),
  37147. weight: math.unit(310, "lb"),
  37148. name: "Back",
  37149. image: {
  37150. source: "./media/characters/solarus/back.svg",
  37151. extra: 2463/2089,
  37152. bottom: 79/2542
  37153. }
  37154. },
  37155. },
  37156. [
  37157. {
  37158. name: "Normal",
  37159. height: math.unit(7, "feet"),
  37160. default: true
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37166. {
  37167. front: {
  37168. height: math.unit(16, "feet"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37172. extra: 1844/1780,
  37173. bottom: 58/1902
  37174. }
  37175. },
  37176. winterCoat: {
  37177. height: math.unit(16, "feet"),
  37178. name: "Winter Coat",
  37179. image: {
  37180. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37181. extra: 1807/1775,
  37182. bottom: 69/1876
  37183. }
  37184. },
  37185. },
  37186. [
  37187. {
  37188. name: "Normal",
  37189. height: math.unit(16, "feet"),
  37190. default: true
  37191. },
  37192. {
  37193. name: "Chicago Size",
  37194. height: math.unit(560, "feet")
  37195. },
  37196. ]
  37197. ))
  37198. characterMakers.push(() => makeCharacter(
  37199. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37200. {
  37201. front: {
  37202. height: math.unit(11 + 6/12, "feet"),
  37203. weight: math.unit(1366, "lb"),
  37204. name: "Front",
  37205. image: {
  37206. source: "./media/characters/lexor/front.svg",
  37207. extra: 1560/1481,
  37208. bottom: 211/1771
  37209. }
  37210. },
  37211. back: {
  37212. height: math.unit(11 + 6/12, "feet"),
  37213. weight: math.unit(1366, "lb"),
  37214. name: "Back",
  37215. image: {
  37216. source: "./media/characters/lexor/back.svg",
  37217. extra: 1614/1533,
  37218. bottom: 76/1690
  37219. }
  37220. },
  37221. maw: {
  37222. height: math.unit(3, "feet"),
  37223. name: "Maw",
  37224. image: {
  37225. source: "./media/characters/lexor/maw.svg"
  37226. }
  37227. },
  37228. dick: {
  37229. height: math.unit(2.59, "feet"),
  37230. name: "Dick",
  37231. image: {
  37232. source: "./media/characters/lexor/dick.svg"
  37233. }
  37234. },
  37235. },
  37236. [
  37237. {
  37238. name: "Normal",
  37239. height: math.unit(11 + 6/12, "feet"),
  37240. default: true
  37241. },
  37242. ]
  37243. ))
  37244. characterMakers.push(() => makeCharacter(
  37245. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37246. {
  37247. front: {
  37248. height: math.unit(5 + 8/12, "feet"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/magnum/front.svg",
  37252. extra: 942/855,
  37253. bottom: 26/968
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(5 + 8/12, "feet"),
  37261. default: true
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(18 + 4/12, "feet"),
  37270. weight: math.unit(1500, "kg"),
  37271. name: "Front",
  37272. image: {
  37273. source: "./media/characters/solas-sharpsman/front.svg",
  37274. extra: 1698/1589,
  37275. bottom: 0/1698
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(18 + 4/12, "feet"),
  37283. default: true
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(5 + 5/12, "feet"),
  37292. weight: math.unit(180, "lb"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/october/front.svg",
  37296. extra: 1800/1650,
  37297. bottom: 0/1800
  37298. }
  37299. },
  37300. frontNsfw: {
  37301. height: math.unit(5 + 5/12, "feet"),
  37302. weight: math.unit(180, "lb"),
  37303. name: "Front (NSFW)",
  37304. image: {
  37305. source: "./media/characters/october/front-nsfw.svg",
  37306. extra: 1392/1307,
  37307. bottom: 42/1434
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Normal",
  37314. height: math.unit(5 + 5/12, "feet"),
  37315. default: true
  37316. },
  37317. ]
  37318. ))
  37319. characterMakers.push(() => makeCharacter(
  37320. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37321. {
  37322. front: {
  37323. height: math.unit(8 + 6/12, "feet"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/essynkardi/front.svg",
  37327. extra: 1914/1846,
  37328. bottom: 22/1936
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(8 + 6/12, "feet"),
  37336. default: true
  37337. },
  37338. ]
  37339. ))
  37340. characterMakers.push(() => makeCharacter(
  37341. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37342. {
  37343. front: {
  37344. height: math.unit(6 + 6/12, "feet"),
  37345. weight: math.unit(7, "lb"),
  37346. name: "Front",
  37347. image: {
  37348. source: "./media/characters/icky/front.svg",
  37349. extra: 813/782,
  37350. bottom: 66/879
  37351. }
  37352. },
  37353. back: {
  37354. height: math.unit(6 + 6/12, "feet"),
  37355. weight: math.unit(7, "lb"),
  37356. name: "Back",
  37357. image: {
  37358. source: "./media/characters/icky/back.svg",
  37359. extra: 754/735,
  37360. bottom: 56/810
  37361. }
  37362. },
  37363. },
  37364. [
  37365. {
  37366. name: "Normal",
  37367. height: math.unit(6 + 6/12, "feet"),
  37368. default: true
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37374. {
  37375. front: {
  37376. height: math.unit(15, "feet"),
  37377. name: "Front",
  37378. image: {
  37379. source: "./media/characters/rojas/front.svg",
  37380. extra: 1462/1408,
  37381. bottom: 95/1557
  37382. }
  37383. },
  37384. back: {
  37385. height: math.unit(15, "feet"),
  37386. name: "Back",
  37387. image: {
  37388. source: "./media/characters/rojas/back.svg",
  37389. extra: 1023/954,
  37390. bottom: 28/1051
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(15, "feet"),
  37398. default: true
  37399. },
  37400. ]
  37401. ))
  37402. characterMakers.push(() => makeCharacter(
  37403. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37404. {
  37405. frontHuman: {
  37406. height: math.unit(5 + 7/12, "feet"),
  37407. name: "Front (Human)",
  37408. image: {
  37409. source: "./media/characters/alek-dryagan/front-human.svg",
  37410. extra: 1687/1667,
  37411. bottom: 69/1756
  37412. }
  37413. },
  37414. backHuman: {
  37415. height: math.unit(5 + 7/12, "feet"),
  37416. name: "Back (Human)",
  37417. image: {
  37418. source: "./media/characters/alek-dryagan/back-human.svg",
  37419. extra: 1670/1649,
  37420. bottom: 65/1735
  37421. }
  37422. },
  37423. frontDemi: {
  37424. height: math.unit(65, "feet"),
  37425. name: "Front (Demi)",
  37426. image: {
  37427. source: "./media/characters/alek-dryagan/front-demi.svg",
  37428. extra: 1669/1642,
  37429. bottom: 49/1718
  37430. }
  37431. },
  37432. backDemi: {
  37433. height: math.unit(65, "feet"),
  37434. name: "Back (Demi)",
  37435. image: {
  37436. source: "./media/characters/alek-dryagan/back-demi.svg",
  37437. extra: 1658/1637,
  37438. bottom: 40/1698
  37439. }
  37440. },
  37441. mawHuman: {
  37442. height: math.unit(0.3, "feet"),
  37443. name: "Maw (Human)",
  37444. image: {
  37445. source: "./media/characters/alek-dryagan/maw-human.svg"
  37446. }
  37447. },
  37448. mawDemi: {
  37449. height: math.unit(3.8, "feet"),
  37450. name: "Maw (Demi)",
  37451. image: {
  37452. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(5 + 7/12, "feet"),
  37460. default: true
  37461. },
  37462. ]
  37463. ))
  37464. characterMakers.push(() => makeCharacter(
  37465. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37466. {
  37467. frontHuman: {
  37468. height: math.unit(5 + 2/12, "feet"),
  37469. name: "Front (Human)",
  37470. image: {
  37471. source: "./media/characters/gen/front-human.svg",
  37472. extra: 1627/1538,
  37473. bottom: 71/1698
  37474. }
  37475. },
  37476. backHuman: {
  37477. height: math.unit(5 + 2/12, "feet"),
  37478. name: "Back (Human)",
  37479. image: {
  37480. source: "./media/characters/gen/back-human.svg",
  37481. extra: 1638/1548,
  37482. bottom: 69/1707
  37483. }
  37484. },
  37485. frontDemi: {
  37486. height: math.unit(5 + 2/12, "feet"),
  37487. name: "Front (Demi)",
  37488. image: {
  37489. source: "./media/characters/gen/front-demi.svg",
  37490. extra: 1627/1538,
  37491. bottom: 71/1698
  37492. }
  37493. },
  37494. backDemi: {
  37495. height: math.unit(5 + 2/12, "feet"),
  37496. name: "Back (Demi)",
  37497. image: {
  37498. source: "./media/characters/gen/back-demi.svg",
  37499. extra: 1638/1548,
  37500. bottom: 69/1707
  37501. }
  37502. },
  37503. },
  37504. [
  37505. {
  37506. name: "Normal",
  37507. height: math.unit(5 + 2/12, "feet"),
  37508. default: true
  37509. },
  37510. ]
  37511. ))
  37512. characterMakers.push(() => makeCharacter(
  37513. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37514. {
  37515. frontImp: {
  37516. height: math.unit(1 + 11/12, "feet"),
  37517. name: "Front (Imp)",
  37518. image: {
  37519. source: "./media/characters/max-kobold/front-imp.svg",
  37520. extra: 1238/1134,
  37521. bottom: 81/1319
  37522. }
  37523. },
  37524. backImp: {
  37525. height: math.unit(1 + 11/12, "feet"),
  37526. name: "Back (Imp)",
  37527. image: {
  37528. source: "./media/characters/max-kobold/back-imp.svg",
  37529. extra: 1334/1175,
  37530. bottom: 34/1368
  37531. }
  37532. },
  37533. frontDemi: {
  37534. height: math.unit(5 + 9/12, "feet"),
  37535. name: "Front (Demi)",
  37536. image: {
  37537. source: "./media/characters/max-kobold/front-demi.svg",
  37538. extra: 1715/1685,
  37539. bottom: 54/1769
  37540. }
  37541. },
  37542. backDemi: {
  37543. height: math.unit(5 + 9/12, "feet"),
  37544. name: "Back (Demi)",
  37545. image: {
  37546. source: "./media/characters/max-kobold/back-demi.svg",
  37547. extra: 1752/1729,
  37548. bottom: 41/1793
  37549. }
  37550. },
  37551. handImp: {
  37552. height: math.unit(0.45, "feet"),
  37553. name: "Hand (Imp)",
  37554. image: {
  37555. source: "./media/characters/max-kobold/hand.svg"
  37556. }
  37557. },
  37558. pawImp: {
  37559. height: math.unit(0.46, "feet"),
  37560. name: "Paw (Imp)",
  37561. image: {
  37562. source: "./media/characters/max-kobold/paw.svg"
  37563. }
  37564. },
  37565. handDemi: {
  37566. height: math.unit(0.80, "feet"),
  37567. name: "Hand (Demi)",
  37568. image: {
  37569. source: "./media/characters/max-kobold/hand.svg"
  37570. }
  37571. },
  37572. pawDemi: {
  37573. height: math.unit(1.1, "feet"),
  37574. name: "Paw (Demi)",
  37575. image: {
  37576. source: "./media/characters/max-kobold/paw.svg"
  37577. }
  37578. },
  37579. headImp: {
  37580. height: math.unit(1.33, "feet"),
  37581. name: "Head (Imp)",
  37582. image: {
  37583. source: "./media/characters/max-kobold/head-imp.svg"
  37584. }
  37585. },
  37586. mawImp: {
  37587. height: math.unit(0.75, "feet"),
  37588. name: "Maw (Imp)",
  37589. image: {
  37590. source: "./media/characters/max-kobold/maw-imp.svg"
  37591. }
  37592. },
  37593. mawDemi: {
  37594. height: math.unit(0.42, "feet"),
  37595. name: "Maw (Demi)",
  37596. image: {
  37597. source: "./media/characters/max-kobold/maw-demi.svg"
  37598. }
  37599. },
  37600. },
  37601. [
  37602. {
  37603. name: "Normal",
  37604. height: math.unit(1 + 11/12, "feet"),
  37605. default: true
  37606. },
  37607. ]
  37608. ))
  37609. characterMakers.push(() => makeCharacter(
  37610. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37611. {
  37612. front: {
  37613. height: math.unit(7 + 5/12, "feet"),
  37614. name: "Front",
  37615. image: {
  37616. source: "./media/characters/carbon/front.svg",
  37617. extra: 1754/1689,
  37618. bottom: 65/1819
  37619. }
  37620. },
  37621. back: {
  37622. height: math.unit(7 + 5/12, "feet"),
  37623. name: "Back",
  37624. image: {
  37625. source: "./media/characters/carbon/back.svg",
  37626. extra: 1762/1695,
  37627. bottom: 24/1786
  37628. }
  37629. },
  37630. frontGigantamax: {
  37631. height: math.unit(150, "feet"),
  37632. name: "Front (Gigantamax)",
  37633. image: {
  37634. source: "./media/characters/carbon/front-gigantamax.svg",
  37635. extra: 1826/1669,
  37636. bottom: 59/1885
  37637. }
  37638. },
  37639. backGigantamax: {
  37640. height: math.unit(150, "feet"),
  37641. name: "Back (Gigantamax)",
  37642. image: {
  37643. source: "./media/characters/carbon/back-gigantamax.svg",
  37644. extra: 1796/1653,
  37645. bottom: 53/1849
  37646. }
  37647. },
  37648. maw: {
  37649. height: math.unit(0.48, "feet"),
  37650. name: "Maw",
  37651. image: {
  37652. source: "./media/characters/carbon/maw.svg"
  37653. }
  37654. },
  37655. mawGigantamax: {
  37656. height: math.unit(7.5, "feet"),
  37657. name: "Maw (Gigantamax)",
  37658. image: {
  37659. source: "./media/characters/carbon/maw-gigantamax.svg"
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Normal",
  37666. height: math.unit(7 + 5/12, "feet"),
  37667. default: true
  37668. },
  37669. ]
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37673. {
  37674. front: {
  37675. height: math.unit(6, "feet"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/maverick/front.svg",
  37679. extra: 1672/1661,
  37680. bottom: 85/1757
  37681. }
  37682. },
  37683. back: {
  37684. height: math.unit(6, "feet"),
  37685. name: "Back",
  37686. image: {
  37687. source: "./media/characters/maverick/back.svg",
  37688. extra: 1642/1631,
  37689. bottom: 38/1680
  37690. }
  37691. },
  37692. },
  37693. [
  37694. {
  37695. name: "Normal",
  37696. height: math.unit(6, "feet"),
  37697. default: true
  37698. },
  37699. ]
  37700. ))
  37701. characterMakers.push(() => makeCharacter(
  37702. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37703. {
  37704. front: {
  37705. height: math.unit(15, "feet"),
  37706. weight: math.unit(615, "lb"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/grockle/front.svg",
  37710. extra: 1535/1427,
  37711. bottom: 56/1591
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(15, "feet"),
  37719. default: true
  37720. },
  37721. {
  37722. name: "Large",
  37723. height: math.unit(150, "feet")
  37724. },
  37725. {
  37726. name: "Macro",
  37727. height: math.unit(1876, "feet")
  37728. },
  37729. {
  37730. name: "Mega Macro",
  37731. height: math.unit(121940, "feet")
  37732. },
  37733. {
  37734. name: "Giga Macro",
  37735. height: math.unit(750, "km")
  37736. },
  37737. {
  37738. name: "Tera Macro",
  37739. height: math.unit(750000, "km")
  37740. },
  37741. {
  37742. name: "Galactic",
  37743. height: math.unit(1.4e5, "km")
  37744. },
  37745. {
  37746. name: "Godlike",
  37747. height: math.unit(9.8e280, "galaxies")
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37753. {
  37754. front: {
  37755. height: math.unit(11, "meters"),
  37756. weight: math.unit(20, "tonnes"),
  37757. name: "Front",
  37758. image: {
  37759. source: "./media/characters/alistair/front.svg",
  37760. extra: 1265/1009,
  37761. bottom: 93/1358
  37762. }
  37763. },
  37764. },
  37765. [
  37766. {
  37767. name: "Normal",
  37768. height: math.unit(11, "meters"),
  37769. default: true
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(5 + 8/12, "feet"),
  37778. name: "Front",
  37779. image: {
  37780. source: "./media/characters/haruka/front.svg",
  37781. extra: 2012/1952,
  37782. bottom: 0/2012
  37783. }
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "Normal",
  37789. height: math.unit(5 + 8/12, "feet"),
  37790. default: true
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37796. {
  37797. back: {
  37798. height: math.unit(9, "feet"),
  37799. name: "Back",
  37800. image: {
  37801. source: "./media/characters/vivian-sylveon/back.svg",
  37802. extra: 1853/1714,
  37803. bottom: 0/1853
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Normal",
  37810. height: math.unit(9, "feet"),
  37811. default: true
  37812. },
  37813. {
  37814. name: "Macro",
  37815. height: math.unit(500, "feet")
  37816. },
  37817. {
  37818. name: "Megamacro",
  37819. height: math.unit(600, "miles")
  37820. },
  37821. {
  37822. name: "Gigamacro",
  37823. height: math.unit(30000, "miles")
  37824. },
  37825. ]
  37826. ))
  37827. characterMakers.push(() => makeCharacter(
  37828. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37829. {
  37830. anthro: {
  37831. height: math.unit(5 + 10/12, "feet"),
  37832. weight: math.unit(100, "lb"),
  37833. name: "Anthro",
  37834. image: {
  37835. source: "./media/characters/daiki/anthro.svg",
  37836. extra: 1115/1027,
  37837. bottom: 69/1184
  37838. }
  37839. },
  37840. feral: {
  37841. height: math.unit(200, "feet"),
  37842. name: "Feral",
  37843. image: {
  37844. source: "./media/characters/daiki/feral.svg",
  37845. extra: 1256/313,
  37846. bottom: 39/1295
  37847. }
  37848. },
  37849. feralHead: {
  37850. height: math.unit(171, "feet"),
  37851. name: "Feral Head",
  37852. image: {
  37853. source: "./media/characters/daiki/feral-head.svg"
  37854. }
  37855. },
  37856. manaDragon: {
  37857. height: math.unit(170, "meters"),
  37858. name: "Mana-dragon",
  37859. image: {
  37860. source: "./media/characters/daiki/mana-dragon.svg",
  37861. extra: 763/420,
  37862. bottom: 97/860
  37863. }
  37864. },
  37865. },
  37866. [
  37867. {
  37868. name: "Normal",
  37869. height: math.unit(5 + 10/12, "feet"),
  37870. default: true
  37871. },
  37872. ]
  37873. ))
  37874. characterMakers.push(() => makeCharacter(
  37875. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37876. {
  37877. fullyEquippedFront: {
  37878. height: math.unit(3 + 1/12, "feet"),
  37879. weight: math.unit(24, "lb"),
  37880. name: "Fully Equipped (Front)",
  37881. image: {
  37882. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37883. extra: 687/605,
  37884. bottom: 18/705
  37885. }
  37886. },
  37887. fullyEquippedBack: {
  37888. height: math.unit(3 + 1/12, "feet"),
  37889. weight: math.unit(24, "lb"),
  37890. name: "Fully Equipped (Back)",
  37891. image: {
  37892. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37893. extra: 689/590,
  37894. bottom: 18/707
  37895. }
  37896. },
  37897. dailyWear: {
  37898. height: math.unit(3 + 1/12, "feet"),
  37899. weight: math.unit(24, "lb"),
  37900. name: "Daily Wear",
  37901. image: {
  37902. source: "./media/characters/tea-spot/daily-wear.svg",
  37903. extra: 701/620,
  37904. bottom: 21/722
  37905. }
  37906. },
  37907. maidWork: {
  37908. height: math.unit(3 + 1/12, "feet"),
  37909. weight: math.unit(24, "lb"),
  37910. name: "Maid Work",
  37911. image: {
  37912. source: "./media/characters/tea-spot/maid-work.svg",
  37913. extra: 693/609,
  37914. bottom: 15/708
  37915. }
  37916. },
  37917. },
  37918. [
  37919. {
  37920. name: "Normal",
  37921. height: math.unit(3 + 1/12, "feet"),
  37922. default: true
  37923. },
  37924. ]
  37925. ))
  37926. characterMakers.push(() => makeCharacter(
  37927. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37928. {
  37929. front: {
  37930. height: math.unit(175, "cm"),
  37931. weight: math.unit(75, "kg"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/chee/front.svg",
  37935. extra: 1796/1740,
  37936. bottom: 40/1836
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Micro-Micro",
  37943. height: math.unit(1, "nm")
  37944. },
  37945. {
  37946. name: "Micro-erst",
  37947. height: math.unit(1, "micrometer")
  37948. },
  37949. {
  37950. name: "Micro-er",
  37951. height: math.unit(1, "cm")
  37952. },
  37953. {
  37954. name: "Normal",
  37955. height: math.unit(175, "cm"),
  37956. default: true
  37957. },
  37958. {
  37959. name: "Macro",
  37960. height: math.unit(100, "m")
  37961. },
  37962. {
  37963. name: "Macro-er",
  37964. height: math.unit(1, "km")
  37965. },
  37966. {
  37967. name: "Macro-erst",
  37968. height: math.unit(10, "km")
  37969. },
  37970. {
  37971. name: "Macro-Macro",
  37972. height: math.unit(100, "km")
  37973. },
  37974. ]
  37975. ))
  37976. characterMakers.push(() => makeCharacter(
  37977. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37978. {
  37979. front: {
  37980. height: math.unit(11 + 9/12, "feet"),
  37981. weight: math.unit(935, "lb"),
  37982. name: "Front",
  37983. image: {
  37984. source: "./media/characters/kingsley/front.svg",
  37985. extra: 1803/1674,
  37986. bottom: 127/1930
  37987. }
  37988. },
  37989. frontNude: {
  37990. height: math.unit(11 + 9/12, "feet"),
  37991. weight: math.unit(935, "lb"),
  37992. name: "Front (Nude)",
  37993. image: {
  37994. source: "./media/characters/kingsley/front-nude.svg",
  37995. extra: 1803/1674,
  37996. bottom: 127/1930
  37997. }
  37998. },
  37999. },
  38000. [
  38001. {
  38002. name: "Normal",
  38003. height: math.unit(11 + 9/12, "feet"),
  38004. default: true
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38010. {
  38011. side: {
  38012. height: math.unit(9, "feet"),
  38013. name: "Side",
  38014. image: {
  38015. source: "./media/characters/rymel/side.svg",
  38016. extra: 792/469,
  38017. bottom: 121/913
  38018. }
  38019. },
  38020. maw: {
  38021. height: math.unit(2.4, "meters"),
  38022. name: "Maw",
  38023. image: {
  38024. source: "./media/characters/rymel/maw.svg"
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "House Drake",
  38031. height: math.unit(2, "feet")
  38032. },
  38033. {
  38034. name: "Reduced",
  38035. height: math.unit(4.5, "feet")
  38036. },
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(9, "feet"),
  38040. default: true
  38041. },
  38042. ]
  38043. ))
  38044. characterMakers.push(() => makeCharacter(
  38045. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38046. {
  38047. front: {
  38048. height: math.unit(1.74, "meters"),
  38049. weight: math.unit(55, "kg"),
  38050. name: "Front",
  38051. image: {
  38052. source: "./media/characters/rubus/front.svg",
  38053. extra: 1894/1742,
  38054. bottom: 44/1938
  38055. }
  38056. },
  38057. },
  38058. [
  38059. {
  38060. name: "Normal",
  38061. height: math.unit(1.74, "meters"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(5 + 2/12, "feet"),
  38071. weight: math.unit(112, "lb"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/cassie-kingston/front.svg",
  38075. extra: 1438/1390,
  38076. bottom: 47/1485
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Normal",
  38083. height: math.unit(5 + 2/12, "feet"),
  38084. default: true
  38085. },
  38086. {
  38087. name: "Macro",
  38088. height: math.unit(128, "feet")
  38089. },
  38090. {
  38091. name: "Megamacro",
  38092. height: math.unit(2.56, "miles")
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38098. {
  38099. front: {
  38100. height: math.unit(7, "feet"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/fox/front.svg",
  38104. extra: 1798/1703,
  38105. bottom: 55/1853
  38106. }
  38107. },
  38108. back: {
  38109. height: math.unit(7, "feet"),
  38110. name: "Back",
  38111. image: {
  38112. source: "./media/characters/fox/back.svg",
  38113. extra: 1748/1649,
  38114. bottom: 32/1780
  38115. }
  38116. },
  38117. head: {
  38118. height: math.unit(1.95, "feet"),
  38119. name: "Head",
  38120. image: {
  38121. source: "./media/characters/fox/head.svg"
  38122. }
  38123. },
  38124. dick: {
  38125. height: math.unit(1.33, "feet"),
  38126. name: "Dick",
  38127. image: {
  38128. source: "./media/characters/fox/dick.svg"
  38129. }
  38130. },
  38131. foot: {
  38132. height: math.unit(1, "feet"),
  38133. name: "Foot",
  38134. image: {
  38135. source: "./media/characters/fox/foot.svg"
  38136. }
  38137. },
  38138. paw: {
  38139. height: math.unit(0.92, "feet"),
  38140. name: "Paw",
  38141. image: {
  38142. source: "./media/characters/fox/paw.svg"
  38143. }
  38144. },
  38145. },
  38146. [
  38147. {
  38148. name: "Small",
  38149. height: math.unit(3, "inches")
  38150. },
  38151. {
  38152. name: "\"Realistic\"",
  38153. height: math.unit(7, "feet")
  38154. },
  38155. {
  38156. name: "Normal",
  38157. height: math.unit(150, "feet"),
  38158. default: true
  38159. },
  38160. {
  38161. name: "BIG",
  38162. height: math.unit(1200, "feet")
  38163. },
  38164. {
  38165. name: "👀",
  38166. height: math.unit(5, "miles")
  38167. },
  38168. {
  38169. name: "👀👀👀",
  38170. height: math.unit(64, "miles")
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(625, "feet"),
  38179. name: "Front",
  38180. image: {
  38181. source: "./media/characters/asonja-rossa/front.svg",
  38182. extra: 1833/1686,
  38183. bottom: 24/1857
  38184. }
  38185. },
  38186. back: {
  38187. height: math.unit(625, "feet"),
  38188. name: "Back",
  38189. image: {
  38190. source: "./media/characters/asonja-rossa/back.svg",
  38191. extra: 1852/1753,
  38192. bottom: 26/1878
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Macro",
  38199. height: math.unit(625, "feet"),
  38200. default: true
  38201. },
  38202. ]
  38203. ))
  38204. characterMakers.push(() => makeCharacter(
  38205. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38206. {
  38207. side: {
  38208. height: math.unit(8, "feet"),
  38209. name: "Side",
  38210. image: {
  38211. source: "./media/characters/rezukii/side.svg",
  38212. extra: 979/542,
  38213. bottom: 87/1066
  38214. }
  38215. },
  38216. sitting: {
  38217. height: math.unit(14.6, "feet"),
  38218. name: "Sitting",
  38219. image: {
  38220. source: "./media/characters/rezukii/sitting.svg",
  38221. extra: 1023/813,
  38222. bottom: 45/1068
  38223. }
  38224. },
  38225. },
  38226. [
  38227. {
  38228. name: "Tiny",
  38229. height: math.unit(2, "feet")
  38230. },
  38231. {
  38232. name: "Smol",
  38233. height: math.unit(4, "feet")
  38234. },
  38235. {
  38236. name: "Normal",
  38237. height: math.unit(8, "feet"),
  38238. default: true
  38239. },
  38240. {
  38241. name: "Big",
  38242. height: math.unit(12, "feet")
  38243. },
  38244. {
  38245. name: "Macro",
  38246. height: math.unit(30, "feet")
  38247. },
  38248. ]
  38249. ))
  38250. characterMakers.push(() => makeCharacter(
  38251. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38252. {
  38253. front: {
  38254. height: math.unit(14, "feet"),
  38255. weight: math.unit(9.5, "tonnes"),
  38256. name: "Front",
  38257. image: {
  38258. source: "./media/characters/dawnheart/front.svg",
  38259. extra: 2792/2675,
  38260. bottom: 64/2856
  38261. }
  38262. },
  38263. },
  38264. [
  38265. {
  38266. name: "Normal",
  38267. height: math.unit(14, "feet"),
  38268. default: true
  38269. },
  38270. ]
  38271. ))
  38272. characterMakers.push(() => makeCharacter(
  38273. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38274. {
  38275. front: {
  38276. height: math.unit(1.7, "m"),
  38277. name: "Front",
  38278. image: {
  38279. source: "./media/characters/gladi/front.svg",
  38280. extra: 1460/1362,
  38281. bottom: 19/1479
  38282. }
  38283. },
  38284. back: {
  38285. height: math.unit(1.7, "m"),
  38286. name: "Back",
  38287. image: {
  38288. source: "./media/characters/gladi/back.svg",
  38289. extra: 1459/1357,
  38290. bottom: 12/1471
  38291. }
  38292. },
  38293. feral: {
  38294. height: math.unit(2.05, "m"),
  38295. name: "Feral",
  38296. image: {
  38297. source: "./media/characters/gladi/feral.svg",
  38298. extra: 821/557,
  38299. bottom: 91/912
  38300. }
  38301. },
  38302. },
  38303. [
  38304. {
  38305. name: "Shortest",
  38306. height: math.unit(70, "cm")
  38307. },
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(1.7, "m")
  38311. },
  38312. {
  38313. name: "Macro",
  38314. height: math.unit(10, "m"),
  38315. default: true
  38316. },
  38317. {
  38318. name: "Tallest",
  38319. height: math.unit(200, "m")
  38320. },
  38321. ]
  38322. ))
  38323. characterMakers.push(() => makeCharacter(
  38324. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38325. {
  38326. front: {
  38327. height: math.unit(5 + 7/12, "feet"),
  38328. weight: math.unit(2, "tons"),
  38329. name: "Front",
  38330. image: {
  38331. source: "./media/characters/erdno/front.svg",
  38332. extra: 1234/1129,
  38333. bottom: 35/1269
  38334. }
  38335. },
  38336. angled: {
  38337. height: math.unit(5 + 7/12, "feet"),
  38338. weight: math.unit(2, "tons"),
  38339. name: "Angled",
  38340. image: {
  38341. source: "./media/characters/erdno/angled.svg",
  38342. extra: 1185/1139,
  38343. bottom: 36/1221
  38344. }
  38345. },
  38346. side: {
  38347. height: math.unit(5 + 7/12, "feet"),
  38348. weight: math.unit(2, "tons"),
  38349. name: "Side",
  38350. image: {
  38351. source: "./media/characters/erdno/side.svg",
  38352. extra: 1191/1144,
  38353. bottom: 40/1231
  38354. }
  38355. },
  38356. back: {
  38357. height: math.unit(5 + 7/12, "feet"),
  38358. weight: math.unit(2, "tons"),
  38359. name: "Back",
  38360. image: {
  38361. source: "./media/characters/erdno/back.svg",
  38362. extra: 1202/1146,
  38363. bottom: 17/1219
  38364. }
  38365. },
  38366. frontNsfw: {
  38367. height: math.unit(5 + 7/12, "feet"),
  38368. weight: math.unit(2, "tons"),
  38369. name: "Front (NSFW)",
  38370. image: {
  38371. source: "./media/characters/erdno/front-nsfw.svg",
  38372. extra: 1234/1129,
  38373. bottom: 35/1269
  38374. }
  38375. },
  38376. angledNsfw: {
  38377. height: math.unit(5 + 7/12, "feet"),
  38378. weight: math.unit(2, "tons"),
  38379. name: "Angled (NSFW)",
  38380. image: {
  38381. source: "./media/characters/erdno/angled-nsfw.svg",
  38382. extra: 1185/1139,
  38383. bottom: 36/1221
  38384. }
  38385. },
  38386. sideNsfw: {
  38387. height: math.unit(5 + 7/12, "feet"),
  38388. weight: math.unit(2, "tons"),
  38389. name: "Side (NSFW)",
  38390. image: {
  38391. source: "./media/characters/erdno/side-nsfw.svg",
  38392. extra: 1191/1144,
  38393. bottom: 40/1231
  38394. }
  38395. },
  38396. backNsfw: {
  38397. height: math.unit(5 + 7/12, "feet"),
  38398. weight: math.unit(2, "tons"),
  38399. name: "Back (NSFW)",
  38400. image: {
  38401. source: "./media/characters/erdno/back-nsfw.svg",
  38402. extra: 1202/1146,
  38403. bottom: 17/1219
  38404. }
  38405. },
  38406. frontHyper: {
  38407. height: math.unit(5 + 7/12, "feet"),
  38408. weight: math.unit(2, "tons"),
  38409. name: "Front (Hyper)",
  38410. image: {
  38411. source: "./media/characters/erdno/front-hyper.svg",
  38412. extra: 1298/1136,
  38413. bottom: 35/1333
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(5 + 7/12, "feet"),
  38421. default: true
  38422. },
  38423. {
  38424. name: "Big",
  38425. height: math.unit(5.7, "meters")
  38426. },
  38427. {
  38428. name: "Macro",
  38429. height: math.unit(5.7, "kilometers")
  38430. },
  38431. {
  38432. name: "Megamacro",
  38433. height: math.unit(5.7, "earths")
  38434. },
  38435. ]
  38436. ))
  38437. characterMakers.push(() => makeCharacter(
  38438. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38439. {
  38440. front: {
  38441. height: math.unit(5 + 10/12, "feet"),
  38442. weight: math.unit(150, "lb"),
  38443. name: "Front",
  38444. image: {
  38445. source: "./media/characters/jamie/front.svg",
  38446. extra: 1908/1768,
  38447. bottom: 19/1927
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Minimum",
  38454. height: math.unit(2, "cm")
  38455. },
  38456. {
  38457. name: "Micro",
  38458. height: math.unit(3, "inches")
  38459. },
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(5 + 10/12, "feet"),
  38463. default: true
  38464. },
  38465. {
  38466. name: "Macro",
  38467. height: math.unit(150, "feet")
  38468. },
  38469. {
  38470. name: "Megamacro",
  38471. height: math.unit(10000, "m")
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38477. {
  38478. front: {
  38479. height: math.unit(2, "meters"),
  38480. weight: math.unit(100, "kg"),
  38481. name: "Front",
  38482. image: {
  38483. source: "./media/characters/shiron/front.svg",
  38484. extra: 2103/1985,
  38485. bottom: 98/2201
  38486. }
  38487. },
  38488. back: {
  38489. height: math.unit(2, "meters"),
  38490. weight: math.unit(100, "kg"),
  38491. name: "Back",
  38492. image: {
  38493. source: "./media/characters/shiron/back.svg",
  38494. extra: 2110/2015,
  38495. bottom: 89/2199
  38496. }
  38497. },
  38498. hand: {
  38499. height: math.unit(0.96, "feet"),
  38500. name: "Hand",
  38501. image: {
  38502. source: "./media/characters/shiron/hand.svg"
  38503. }
  38504. },
  38505. foot: {
  38506. height: math.unit(1.464, "feet"),
  38507. name: "Foot",
  38508. image: {
  38509. source: "./media/characters/shiron/foot.svg"
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(2, "meters")
  38517. },
  38518. {
  38519. name: "Macro",
  38520. height: math.unit(500, "meters"),
  38521. default: true
  38522. },
  38523. {
  38524. name: "Megamacro",
  38525. height: math.unit(20, "km")
  38526. },
  38527. ]
  38528. ))
  38529. characterMakers.push(() => makeCharacter(
  38530. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38531. {
  38532. front: {
  38533. height: math.unit(6, "feet"),
  38534. name: "Front",
  38535. image: {
  38536. source: "./media/characters/sam/front.svg",
  38537. extra: 849/826,
  38538. bottom: 19/868
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Normal",
  38545. height: math.unit(6, "feet"),
  38546. default: true
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(8 + 4/12, "feet"),
  38555. weight: math.unit(122, "kg"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/namori-kurogawa/front.svg",
  38559. extra: 1894/1576,
  38560. bottom: 34/1928
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(8 + 4/12, "feet"),
  38568. default: true
  38569. },
  38570. ]
  38571. ))
  38572. characterMakers.push(() => makeCharacter(
  38573. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38574. {
  38575. front: {
  38576. height: math.unit(9, "feet"),
  38577. weight: math.unit(621, "lb"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/unmru/front.svg",
  38581. extra: 1853/1747,
  38582. bottom: 73/1926
  38583. }
  38584. },
  38585. side: {
  38586. height: math.unit(9, "feet"),
  38587. weight: math.unit(621, "lb"),
  38588. name: "Side",
  38589. image: {
  38590. source: "./media/characters/unmru/side.svg",
  38591. extra: 1781/1671,
  38592. bottom: 127/1908
  38593. }
  38594. },
  38595. back: {
  38596. height: math.unit(9, "feet"),
  38597. weight: math.unit(621, "lb"),
  38598. name: "Back",
  38599. image: {
  38600. source: "./media/characters/unmru/back.svg",
  38601. extra: 1894/1765,
  38602. bottom: 75/1969
  38603. }
  38604. },
  38605. dick: {
  38606. height: math.unit(3, "feet"),
  38607. weight: math.unit(35, "lb"),
  38608. name: "Dick",
  38609. image: {
  38610. source: "./media/characters/unmru/dick.svg"
  38611. }
  38612. },
  38613. },
  38614. [
  38615. {
  38616. name: "Normal",
  38617. height: math.unit(9, "feet")
  38618. },
  38619. {
  38620. name: "Natural",
  38621. height: math.unit(27, "feet"),
  38622. default: true
  38623. },
  38624. {
  38625. name: "Giant",
  38626. height: math.unit(90, "feet")
  38627. },
  38628. {
  38629. name: "Kaiju",
  38630. height: math.unit(270, "feet")
  38631. },
  38632. {
  38633. name: "Macro",
  38634. height: math.unit(900, "feet")
  38635. },
  38636. {
  38637. name: "Macro+",
  38638. height: math.unit(2700, "feet")
  38639. },
  38640. {
  38641. name: "Megamacro",
  38642. height: math.unit(9000, "feet")
  38643. },
  38644. {
  38645. name: "City-Crushing",
  38646. height: math.unit(27000, "feet")
  38647. },
  38648. {
  38649. name: "Mountain-Mashing",
  38650. height: math.unit(90000, "feet")
  38651. },
  38652. {
  38653. name: "Earth-Eclipsing",
  38654. height: math.unit(2.7e8, "feet")
  38655. },
  38656. {
  38657. name: "Sol-Swallowing",
  38658. height: math.unit(9e10, "feet")
  38659. },
  38660. {
  38661. name: "Majoris-Munching",
  38662. height: math.unit(2.7e13, "feet")
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38668. {
  38669. front: {
  38670. height: math.unit(1, "inch"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/squeaks-mouse/front.svg",
  38674. extra: 352/308,
  38675. bottom: 25/377
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Micro",
  38682. height: math.unit(1, "inch"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38689. {
  38690. side: {
  38691. height: math.unit(35, "feet"),
  38692. name: "Side",
  38693. image: {
  38694. source: "./media/characters/sayko/side.svg",
  38695. extra: 1697/1021,
  38696. bottom: 82/1779
  38697. }
  38698. },
  38699. head: {
  38700. height: math.unit(16, "feet"),
  38701. name: "Head",
  38702. image: {
  38703. source: "./media/characters/sayko/head.svg"
  38704. }
  38705. },
  38706. forepaw: {
  38707. height: math.unit(7.85, "feet"),
  38708. name: "Forepaw",
  38709. image: {
  38710. source: "./media/characters/sayko/forepaw.svg"
  38711. }
  38712. },
  38713. hindpaw: {
  38714. height: math.unit(8.8, "feet"),
  38715. name: "Hindpaw",
  38716. image: {
  38717. source: "./media/characters/sayko/hindpaw.svg"
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(35, "feet"),
  38725. default: true
  38726. },
  38727. {
  38728. name: "Colossus",
  38729. height: math.unit(100, "meters")
  38730. },
  38731. {
  38732. name: "\"Small\" Deity",
  38733. height: math.unit(1, "km")
  38734. },
  38735. {
  38736. name: "\"Large\" Deity",
  38737. height: math.unit(15, "km")
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38743. {
  38744. front: {
  38745. height: math.unit(6, "feet"),
  38746. weight: math.unit(250, "lb"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/mukiro/front.svg",
  38750. extra: 1368/1310,
  38751. bottom: 34/1402
  38752. }
  38753. },
  38754. },
  38755. [
  38756. {
  38757. name: "Normal",
  38758. height: math.unit(6, "feet"),
  38759. default: true
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(12 + 4/12, "feet"),
  38768. name: "Front",
  38769. image: {
  38770. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38771. extra: 1346/1311,
  38772. bottom: 65/1411
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Base",
  38779. height: math.unit(12 + 4/12, "feet"),
  38780. default: true
  38781. },
  38782. {
  38783. name: "Macro",
  38784. height: math.unit(150, "feet")
  38785. },
  38786. {
  38787. name: "Mega",
  38788. height: math.unit(2, "miles")
  38789. },
  38790. {
  38791. name: "Demi God",
  38792. height: math.unit(4, "AU")
  38793. },
  38794. {
  38795. name: "God Size",
  38796. height: math.unit(1, "universe")
  38797. },
  38798. ]
  38799. ))
  38800. characterMakers.push(() => makeCharacter(
  38801. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38802. {
  38803. front: {
  38804. height: math.unit(3 + 3/12, "feet"),
  38805. weight: math.unit(88, "lb"),
  38806. name: "Front",
  38807. image: {
  38808. source: "./media/characters/trey/front.svg",
  38809. extra: 1815/1509,
  38810. bottom: 60/1875
  38811. }
  38812. },
  38813. },
  38814. [
  38815. {
  38816. name: "Normal",
  38817. height: math.unit(3 + 3/12, "feet"),
  38818. default: true
  38819. },
  38820. ]
  38821. ))
  38822. characterMakers.push(() => makeCharacter(
  38823. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38824. {
  38825. front: {
  38826. height: math.unit(4, "meters"),
  38827. name: "Front",
  38828. image: {
  38829. source: "./media/characters/adelonda/front.svg",
  38830. extra: 1077/982,
  38831. bottom: 39/1116
  38832. }
  38833. },
  38834. back: {
  38835. height: math.unit(4, "meters"),
  38836. name: "Back",
  38837. image: {
  38838. source: "./media/characters/adelonda/back.svg",
  38839. extra: 1105/1003,
  38840. bottom: 25/1130
  38841. }
  38842. },
  38843. feral: {
  38844. height: math.unit(40/1.5, "meters"),
  38845. name: "Feral",
  38846. image: {
  38847. source: "./media/characters/adelonda/feral.svg",
  38848. extra: 597/271,
  38849. bottom: 387/984
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Normal",
  38856. height: math.unit(4, "meters"),
  38857. default: true
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(8 + 4/12, "feet"),
  38866. weight: math.unit(670, "lb"),
  38867. name: "Front",
  38868. image: {
  38869. source: "./media/characters/acadiel/front.svg",
  38870. extra: 1901/1595,
  38871. bottom: 142/2043
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(8 + 4/12, "feet"),
  38879. default: true
  38880. },
  38881. {
  38882. name: "Macro",
  38883. height: math.unit(200, "feet")
  38884. },
  38885. ]
  38886. ))
  38887. characterMakers.push(() => makeCharacter(
  38888. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38889. {
  38890. front: {
  38891. height: math.unit(6 + 2/12, "feet"),
  38892. weight: math.unit(185, "lb"),
  38893. name: "Front",
  38894. image: {
  38895. source: "./media/characters/kayne-ein/front.svg",
  38896. extra: 1780/1560,
  38897. bottom: 81/1861
  38898. }
  38899. },
  38900. },
  38901. [
  38902. {
  38903. name: "Normal",
  38904. height: math.unit(6 + 2/12, "feet"),
  38905. default: true
  38906. },
  38907. {
  38908. name: "Transformation Stage",
  38909. height: math.unit(15, "feet")
  38910. },
  38911. {
  38912. name: "Macro",
  38913. height: math.unit(150, "feet")
  38914. },
  38915. {
  38916. name: "Earth's Shadow",
  38917. height: math.unit(6200, "miles")
  38918. },
  38919. {
  38920. name: "Universal Demon",
  38921. height: math.unit(28e9, "parsecs")
  38922. },
  38923. {
  38924. name: "Multiverse God",
  38925. height: math.unit(3, "multiverses")
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(5 + 5/12, "feet"),
  38934. name: "Front",
  38935. image: {
  38936. source: "./media/characters/fawn/front.svg",
  38937. extra: 1873/1731,
  38938. bottom: 95/1968
  38939. }
  38940. },
  38941. back: {
  38942. height: math.unit(5 + 5/12, "feet"),
  38943. name: "Back",
  38944. image: {
  38945. source: "./media/characters/fawn/back.svg",
  38946. extra: 1813/1700,
  38947. bottom: 14/1827
  38948. }
  38949. },
  38950. hoof: {
  38951. height: math.unit(1.45, "feet"),
  38952. name: "Hoof",
  38953. image: {
  38954. source: "./media/characters/fawn/hoof.svg"
  38955. }
  38956. },
  38957. },
  38958. [
  38959. {
  38960. name: "Normal",
  38961. height: math.unit(5 + 5/12, "feet"),
  38962. default: true
  38963. },
  38964. ]
  38965. ))
  38966. characterMakers.push(() => makeCharacter(
  38967. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38968. {
  38969. front: {
  38970. height: math.unit(2 + 5/12, "feet"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/orion/front.svg",
  38974. extra: 1366/1304,
  38975. bottom: 43/1409
  38976. }
  38977. },
  38978. paw: {
  38979. height: math.unit(0.52, "feet"),
  38980. name: "Paw",
  38981. image: {
  38982. source: "./media/characters/orion/paw.svg"
  38983. }
  38984. },
  38985. },
  38986. [
  38987. {
  38988. name: "Normal",
  38989. height: math.unit(2 + 5/12, "feet"),
  38990. default: true
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(5 + 10/12, "feet"),
  38999. name: "Front",
  39000. image: {
  39001. source: "./media/characters/vera/front.svg",
  39002. extra: 1680/1575,
  39003. bottom: 49/1729
  39004. }
  39005. },
  39006. back: {
  39007. height: math.unit(5 + 10/12, "feet"),
  39008. name: "Back",
  39009. image: {
  39010. source: "./media/characters/vera/back.svg",
  39011. extra: 1700/1588,
  39012. bottom: 18/1718
  39013. }
  39014. },
  39015. arcanine: {
  39016. height: math.unit(6 + 8/12, "feet"),
  39017. name: "Arcanine",
  39018. image: {
  39019. source: "./media/characters/vera/arcanine.svg",
  39020. extra: 1590/1511,
  39021. bottom: 71/1661
  39022. }
  39023. },
  39024. maw: {
  39025. height: math.unit(0.82, "feet"),
  39026. name: "Maw",
  39027. image: {
  39028. source: "./media/characters/vera/maw.svg"
  39029. }
  39030. },
  39031. mawArcanine: {
  39032. height: math.unit(0.97, "feet"),
  39033. name: "Maw (Arcanine)",
  39034. image: {
  39035. source: "./media/characters/vera/maw-arcanine.svg"
  39036. }
  39037. },
  39038. paw: {
  39039. height: math.unit(0.75, "feet"),
  39040. name: "Paw",
  39041. image: {
  39042. source: "./media/characters/vera/paw.svg"
  39043. }
  39044. },
  39045. pawprint: {
  39046. height: math.unit(0.52, "feet"),
  39047. name: "Pawprint",
  39048. image: {
  39049. source: "./media/characters/vera/pawprint.svg"
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(5 + 10/12, "feet"),
  39057. default: true
  39058. },
  39059. {
  39060. name: "Macro",
  39061. height: math.unit(75, "feet")
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(4, "feet"),
  39070. weight: math.unit(40, "lb"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/orvan-rabbit/front.svg",
  39074. extra: 1896/1642,
  39075. bottom: 29/1925
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(4, "feet"),
  39083. default: true
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39089. {
  39090. front: {
  39091. height: math.unit(6, "feet"),
  39092. weight: math.unit(168, "lb"),
  39093. name: "Front",
  39094. image: {
  39095. source: "./media/characters/lisa/front.svg",
  39096. extra: 2065/1867,
  39097. bottom: 46/2111
  39098. }
  39099. },
  39100. back: {
  39101. height: math.unit(6, "feet"),
  39102. weight: math.unit(168, "lb"),
  39103. name: "Back",
  39104. image: {
  39105. source: "./media/characters/lisa/back.svg",
  39106. extra: 1982/1838,
  39107. bottom: 29/2011
  39108. }
  39109. },
  39110. maw: {
  39111. height: math.unit(0.81, "feet"),
  39112. name: "Maw",
  39113. image: {
  39114. source: "./media/characters/lisa/maw.svg"
  39115. }
  39116. },
  39117. paw: {
  39118. height: math.unit(0.9, "feet"),
  39119. name: "Paw",
  39120. image: {
  39121. source: "./media/characters/lisa/paw.svg"
  39122. }
  39123. },
  39124. caribousune: {
  39125. height: math.unit(7 + 2/12, "feet"),
  39126. weight: math.unit(268, "lb"),
  39127. name: "Caribousune",
  39128. image: {
  39129. source: "./media/characters/lisa/caribousune.svg",
  39130. extra: 1843/1633,
  39131. bottom: 29/1872
  39132. }
  39133. },
  39134. frontCaribousune: {
  39135. height: math.unit(7 + 2/12, "feet"),
  39136. weight: math.unit(268, "lb"),
  39137. name: "Front (Caribousune)",
  39138. image: {
  39139. source: "./media/characters/lisa/front-caribousune.svg",
  39140. extra: 1818/1638,
  39141. bottom: 52/1870
  39142. }
  39143. },
  39144. sideCaribousune: {
  39145. height: math.unit(7 + 2/12, "feet"),
  39146. weight: math.unit(268, "lb"),
  39147. name: "Side (Caribousune)",
  39148. image: {
  39149. source: "./media/characters/lisa/side-caribousune.svg",
  39150. extra: 1851/1635,
  39151. bottom: 16/1867
  39152. }
  39153. },
  39154. backCaribousune: {
  39155. height: math.unit(7 + 2/12, "feet"),
  39156. weight: math.unit(268, "lb"),
  39157. name: "Back (Caribousune)",
  39158. image: {
  39159. source: "./media/characters/lisa/back-caribousune.svg",
  39160. extra: 1801/1604,
  39161. bottom: 44/1845
  39162. }
  39163. },
  39164. caribou: {
  39165. height: math.unit(7 + 2/12, "feet"),
  39166. weight: math.unit(268, "lb"),
  39167. name: "Caribou",
  39168. image: {
  39169. source: "./media/characters/lisa/caribou.svg",
  39170. extra: 1843/1633,
  39171. bottom: 29/1872
  39172. }
  39173. },
  39174. frontCaribou: {
  39175. height: math.unit(7 + 2/12, "feet"),
  39176. weight: math.unit(268, "lb"),
  39177. name: "Front (Caribou)",
  39178. image: {
  39179. source: "./media/characters/lisa/front-caribou.svg",
  39180. extra: 1818/1638,
  39181. bottom: 52/1870
  39182. }
  39183. },
  39184. sideCaribou: {
  39185. height: math.unit(7 + 2/12, "feet"),
  39186. weight: math.unit(268, "lb"),
  39187. name: "Side (Caribou)",
  39188. image: {
  39189. source: "./media/characters/lisa/side-caribou.svg",
  39190. extra: 1851/1635,
  39191. bottom: 16/1867
  39192. }
  39193. },
  39194. backCaribou: {
  39195. height: math.unit(7 + 2/12, "feet"),
  39196. weight: math.unit(268, "lb"),
  39197. name: "Back (Caribou)",
  39198. image: {
  39199. source: "./media/characters/lisa/back-caribou.svg",
  39200. extra: 1801/1604,
  39201. bottom: 44/1845
  39202. }
  39203. },
  39204. mawCaribou: {
  39205. height: math.unit(1.45, "feet"),
  39206. name: "Maw (Caribou)",
  39207. image: {
  39208. source: "./media/characters/lisa/maw-caribou.svg"
  39209. }
  39210. },
  39211. mawCaribousune: {
  39212. height: math.unit(1.45, "feet"),
  39213. name: "Maw (Caribousune)",
  39214. image: {
  39215. source: "./media/characters/lisa/maw-caribousune.svg"
  39216. }
  39217. },
  39218. pawCaribousune: {
  39219. height: math.unit(1.61, "feet"),
  39220. name: "Paw (Caribou)",
  39221. image: {
  39222. source: "./media/characters/lisa/paw-caribousune.svg"
  39223. }
  39224. },
  39225. },
  39226. [
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(6, "feet")
  39230. },
  39231. {
  39232. name: "God Size",
  39233. height: math.unit(72, "feet"),
  39234. default: true
  39235. },
  39236. {
  39237. name: "Towering",
  39238. height: math.unit(288, "feet")
  39239. },
  39240. {
  39241. name: "City Size",
  39242. height: math.unit(48384, "feet")
  39243. },
  39244. {
  39245. name: "Continental",
  39246. height: math.unit(4200, "miles")
  39247. },
  39248. {
  39249. name: "Planet Eater",
  39250. height: math.unit(42, "earths")
  39251. },
  39252. {
  39253. name: "Star Swallower",
  39254. height: math.unit(42, "solarradii")
  39255. },
  39256. {
  39257. name: "System Swallower",
  39258. height: math.unit(84000, "AU")
  39259. },
  39260. {
  39261. name: "Galaxy Gobbler",
  39262. height: math.unit(42, "galaxies")
  39263. },
  39264. {
  39265. name: "Universe Devourer",
  39266. height: math.unit(42, "universes")
  39267. },
  39268. {
  39269. name: "Multiverse Muncher",
  39270. height: math.unit(42, "multiverses")
  39271. },
  39272. ]
  39273. ))
  39274. characterMakers.push(() => makeCharacter(
  39275. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39276. {
  39277. front: {
  39278. height: math.unit(36, "feet"),
  39279. name: "Front",
  39280. image: {
  39281. source: "./media/characters/shadow-rat/front.svg",
  39282. extra: 1845/1758,
  39283. bottom: 83/1928
  39284. }
  39285. },
  39286. },
  39287. [
  39288. {
  39289. name: "Macro",
  39290. height: math.unit(36, "feet"),
  39291. default: true
  39292. },
  39293. ]
  39294. ))
  39295. characterMakers.push(() => makeCharacter(
  39296. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39297. {
  39298. side: {
  39299. height: math.unit(8, "feet"),
  39300. weight: math.unit(2630, "lb"),
  39301. name: "Side",
  39302. image: {
  39303. source: "./media/characters/torallia/side.svg",
  39304. extra: 2164/2021,
  39305. bottom: 371/2535
  39306. }
  39307. },
  39308. },
  39309. [
  39310. {
  39311. name: "Mortal Interaction",
  39312. height: math.unit(8, "feet")
  39313. },
  39314. {
  39315. name: "Natural",
  39316. height: math.unit(24, "feet"),
  39317. default: true
  39318. },
  39319. {
  39320. name: "Giant",
  39321. height: math.unit(80, "feet")
  39322. },
  39323. {
  39324. name: "Kaiju",
  39325. height: math.unit(240, "feet")
  39326. },
  39327. {
  39328. name: "Macro",
  39329. height: math.unit(800, "feet")
  39330. },
  39331. {
  39332. name: "Macro+",
  39333. height: math.unit(2400, "feet")
  39334. },
  39335. {
  39336. name: "Macro++",
  39337. height: math.unit(8000, "feet")
  39338. },
  39339. {
  39340. name: "City-Crushing",
  39341. height: math.unit(24000, "feet")
  39342. },
  39343. {
  39344. name: "Mountain-Mashing",
  39345. height: math.unit(80000, "feet")
  39346. },
  39347. {
  39348. name: "District Demolisher",
  39349. height: math.unit(240000, "feet")
  39350. },
  39351. {
  39352. name: "Tri-County Terror",
  39353. height: math.unit(800000, "feet")
  39354. },
  39355. {
  39356. name: "State Smasher",
  39357. height: math.unit(2.4e6, "feet")
  39358. },
  39359. {
  39360. name: "Nation Nemesis",
  39361. height: math.unit(8e6, "feet")
  39362. },
  39363. {
  39364. name: "Continent Cracker",
  39365. height: math.unit(2.4e7, "feet")
  39366. },
  39367. {
  39368. name: "Planet-Pillaging",
  39369. height: math.unit(8e7, "feet")
  39370. },
  39371. {
  39372. name: "Earth-Eclipsing",
  39373. height: math.unit(2.4e8, "feet")
  39374. },
  39375. {
  39376. name: "Jovian-Jostling",
  39377. height: math.unit(8e8, "feet")
  39378. },
  39379. {
  39380. name: "Gas Giant Gulper",
  39381. height: math.unit(2.4e9, "feet")
  39382. },
  39383. {
  39384. name: "Astral Annihilator",
  39385. height: math.unit(8e9, "feet")
  39386. },
  39387. {
  39388. name: "Celestial Conqueror",
  39389. height: math.unit(2.4e10, "feet")
  39390. },
  39391. {
  39392. name: "Sol-Swallowing",
  39393. height: math.unit(8e10, "feet")
  39394. },
  39395. {
  39396. name: "Hunter of the Heavens",
  39397. height: math.unit(2.4e13, "feet")
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39403. {
  39404. front: {
  39405. height: math.unit(6 + 8/12, "feet"),
  39406. name: "Front",
  39407. image: {
  39408. source: "./media/characters/rebecca-pawlson/front.svg",
  39409. extra: 1737/1596,
  39410. bottom: 107/1844
  39411. }
  39412. },
  39413. back: {
  39414. height: math.unit(6 + 8/12, "feet"),
  39415. name: "Back",
  39416. image: {
  39417. source: "./media/characters/rebecca-pawlson/back.svg",
  39418. extra: 1702/1523,
  39419. bottom: 86/1788
  39420. }
  39421. },
  39422. },
  39423. [
  39424. {
  39425. name: "Normal",
  39426. height: math.unit(6 + 8/12, "feet")
  39427. },
  39428. {
  39429. name: "Mini Macro",
  39430. height: math.unit(10, "feet"),
  39431. default: true
  39432. },
  39433. {
  39434. name: "Macro",
  39435. height: math.unit(100, "feet")
  39436. },
  39437. {
  39438. name: "Mega Macro",
  39439. height: math.unit(2500, "feet")
  39440. },
  39441. {
  39442. name: "Giga Macro",
  39443. height: math.unit(50, "miles")
  39444. },
  39445. ]
  39446. ))
  39447. characterMakers.push(() => makeCharacter(
  39448. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39449. {
  39450. front: {
  39451. height: math.unit(7 + 6/12, "feet"),
  39452. weight: math.unit(600, "lb"),
  39453. name: "Front",
  39454. image: {
  39455. source: "./media/characters/moxie-nova/front.svg",
  39456. extra: 1734/1652,
  39457. bottom: 41/1775
  39458. }
  39459. },
  39460. },
  39461. [
  39462. {
  39463. name: "Normal",
  39464. height: math.unit(7 + 6/12, "feet"),
  39465. default: true
  39466. },
  39467. ]
  39468. ))
  39469. characterMakers.push(() => makeCharacter(
  39470. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39471. {
  39472. goat: {
  39473. height: math.unit(4, "feet"),
  39474. weight: math.unit(180, "lb"),
  39475. name: "Goat",
  39476. image: {
  39477. source: "./media/characters/tiffany/goat.svg",
  39478. extra: 1845/1595,
  39479. bottom: 106/1951
  39480. }
  39481. },
  39482. front: {
  39483. height: math.unit(5, "feet"),
  39484. weight: math.unit(150, "lb"),
  39485. name: "Foxcoon",
  39486. image: {
  39487. source: "./media/characters/tiffany/foxcoon.svg",
  39488. extra: 1941/1845,
  39489. bottom: 58/1999
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(5, "feet"),
  39497. default: true
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(8, "feet"),
  39506. weight: math.unit(300, "lb"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/raxinath/front.svg",
  39510. extra: 1407/1309,
  39511. bottom: 39/1446
  39512. }
  39513. },
  39514. back: {
  39515. height: math.unit(8, "feet"),
  39516. weight: math.unit(300, "lb"),
  39517. name: "Back",
  39518. image: {
  39519. source: "./media/characters/raxinath/back.svg",
  39520. extra: 1405/1315,
  39521. bottom: 9/1414
  39522. }
  39523. },
  39524. },
  39525. [
  39526. {
  39527. name: "Speck",
  39528. height: math.unit(0.5, "nm")
  39529. },
  39530. {
  39531. name: "Micro",
  39532. height: math.unit(3, "inches")
  39533. },
  39534. {
  39535. name: "Kobold",
  39536. height: math.unit(3, "feet")
  39537. },
  39538. {
  39539. name: "Normal",
  39540. height: math.unit(8, "feet"),
  39541. default: true
  39542. },
  39543. {
  39544. name: "Giant",
  39545. height: math.unit(50, "feet")
  39546. },
  39547. {
  39548. name: "Macro",
  39549. height: math.unit(1000, "feet")
  39550. },
  39551. {
  39552. name: "Megamacro",
  39553. height: math.unit(1, "mile")
  39554. },
  39555. ]
  39556. ))
  39557. characterMakers.push(() => makeCharacter(
  39558. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39559. {
  39560. front: {
  39561. height: math.unit(10, "feet"),
  39562. weight: math.unit(1442, "lb"),
  39563. name: "Front",
  39564. image: {
  39565. source: "./media/characters/mal-dragon/front.svg",
  39566. extra: 1515/1444,
  39567. bottom: 113/1628
  39568. }
  39569. },
  39570. back: {
  39571. height: math.unit(10, "feet"),
  39572. weight: math.unit(1442, "lb"),
  39573. name: "Back",
  39574. image: {
  39575. source: "./media/characters/mal-dragon/back.svg",
  39576. extra: 1527/1434,
  39577. bottom: 25/1552
  39578. }
  39579. },
  39580. },
  39581. [
  39582. {
  39583. name: "Mortal Interaction",
  39584. height: math.unit(10, "feet"),
  39585. default: true
  39586. },
  39587. {
  39588. name: "Large",
  39589. height: math.unit(30, "feet")
  39590. },
  39591. {
  39592. name: "Kaiju",
  39593. height: math.unit(300, "feet")
  39594. },
  39595. {
  39596. name: "Megamacro",
  39597. height: math.unit(10000, "feet")
  39598. },
  39599. {
  39600. name: "Continent Cracker",
  39601. height: math.unit(30000000, "feet")
  39602. },
  39603. {
  39604. name: "Sol-Swallowing",
  39605. height: math.unit(1e11, "feet")
  39606. },
  39607. {
  39608. name: "Light Universal",
  39609. height: math.unit(5, "universes")
  39610. },
  39611. {
  39612. name: "Universe Atoms",
  39613. height: math.unit(1.829e9, "universes")
  39614. },
  39615. {
  39616. name: "Light Multiversal",
  39617. height: math.unit(5, "multiverses")
  39618. },
  39619. {
  39620. name: "Multiverse Atoms",
  39621. height: math.unit(1.829e9, "multiverses")
  39622. },
  39623. {
  39624. name: "Fabric of Time",
  39625. height: math.unit(1e262, "multiverses")
  39626. },
  39627. ]
  39628. ))
  39629. characterMakers.push(() => makeCharacter(
  39630. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39631. {
  39632. front: {
  39633. height: math.unit(9, "feet"),
  39634. weight: math.unit(1050, "lb"),
  39635. name: "Front",
  39636. image: {
  39637. source: "./media/characters/tabitha/front.svg",
  39638. extra: 2083/1994,
  39639. bottom: 68/2151
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Baseline",
  39646. height: math.unit(9, "feet"),
  39647. default: true
  39648. },
  39649. {
  39650. name: "Giant",
  39651. height: math.unit(90, "feet")
  39652. },
  39653. {
  39654. name: "Macro",
  39655. height: math.unit(900, "feet")
  39656. },
  39657. {
  39658. name: "Megamacro",
  39659. height: math.unit(9000, "feet")
  39660. },
  39661. {
  39662. name: "City-Crushing",
  39663. height: math.unit(27000, "feet")
  39664. },
  39665. {
  39666. name: "Mountain-Mashing",
  39667. height: math.unit(90000, "feet")
  39668. },
  39669. {
  39670. name: "Nation Nemesis",
  39671. height: math.unit(9e6, "feet")
  39672. },
  39673. {
  39674. name: "Continent Cracker",
  39675. height: math.unit(27e6, "feet")
  39676. },
  39677. {
  39678. name: "Earth-Eclipsing",
  39679. height: math.unit(2.7e8, "feet")
  39680. },
  39681. {
  39682. name: "Gas Giant Gulper",
  39683. height: math.unit(2.7e9, "feet")
  39684. },
  39685. {
  39686. name: "Sol-Swallowing",
  39687. height: math.unit(9e10, "feet")
  39688. },
  39689. {
  39690. name: "Galaxy Gulper",
  39691. height: math.unit(9, "galaxies")
  39692. },
  39693. {
  39694. name: "Cosmos Churner",
  39695. height: math.unit(9, "universes")
  39696. },
  39697. ]
  39698. ))
  39699. characterMakers.push(() => makeCharacter(
  39700. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39701. {
  39702. front: {
  39703. height: math.unit(160, "cm"),
  39704. weight: math.unit(55, "kg"),
  39705. name: "Front",
  39706. image: {
  39707. source: "./media/characters/tow/front.svg",
  39708. extra: 1751/1722,
  39709. bottom: 74/1825
  39710. }
  39711. },
  39712. },
  39713. [
  39714. {
  39715. name: "Norm",
  39716. height: math.unit(160, "cm")
  39717. },
  39718. {
  39719. name: "Casual",
  39720. height: math.unit(3200, "m"),
  39721. default: true
  39722. },
  39723. {
  39724. name: "Show-Off",
  39725. height: math.unit(160, "km")
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39731. {
  39732. front: {
  39733. height: math.unit(7 + 11/12, "feet"),
  39734. weight: math.unit(342.8, "lb"),
  39735. name: "Front",
  39736. image: {
  39737. source: "./media/characters/vivian-orca-dragon/front.svg",
  39738. extra: 1890/1865,
  39739. bottom: 28/1918
  39740. }
  39741. },
  39742. },
  39743. [
  39744. {
  39745. name: "Micro",
  39746. height: math.unit(5, "inches")
  39747. },
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(7 + 11/12, "feet"),
  39751. default: true
  39752. },
  39753. {
  39754. name: "Macro",
  39755. height: math.unit(395 + 7/12, "feet")
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39761. {
  39762. side: {
  39763. height: math.unit(10, "feet"),
  39764. weight: math.unit(1442, "lb"),
  39765. name: "Side",
  39766. image: {
  39767. source: "./media/characters/lotherakon/side.svg",
  39768. extra: 1604/1497,
  39769. bottom: 89/1693
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Mortal Interaction",
  39776. height: math.unit(10, "feet")
  39777. },
  39778. {
  39779. name: "Large",
  39780. height: math.unit(30, "feet"),
  39781. default: true
  39782. },
  39783. {
  39784. name: "Giant",
  39785. height: math.unit(100, "feet")
  39786. },
  39787. {
  39788. name: "Kaiju",
  39789. height: math.unit(300, "feet")
  39790. },
  39791. {
  39792. name: "Macro",
  39793. height: math.unit(1000, "feet")
  39794. },
  39795. {
  39796. name: "Macro+",
  39797. height: math.unit(3000, "feet")
  39798. },
  39799. {
  39800. name: "Megamacro",
  39801. height: math.unit(10000, "feet")
  39802. },
  39803. {
  39804. name: "City-Crushing",
  39805. height: math.unit(30000, "feet")
  39806. },
  39807. {
  39808. name: "Continent Cracker",
  39809. height: math.unit(30e6, "feet")
  39810. },
  39811. {
  39812. name: "Earth Eclipsing",
  39813. height: math.unit(3e8, "feet")
  39814. },
  39815. {
  39816. name: "Gas Giant Gulper",
  39817. height: math.unit(3e9, "feet")
  39818. },
  39819. {
  39820. name: "Sol-Swallowing",
  39821. height: math.unit(1e11, "feet")
  39822. },
  39823. {
  39824. name: "System Swallower",
  39825. height: math.unit(3e14, "feet")
  39826. },
  39827. {
  39828. name: "Galaxy Gulper",
  39829. height: math.unit(10, "galaxies")
  39830. },
  39831. {
  39832. name: "Light Universal",
  39833. height: math.unit(5, "universes")
  39834. },
  39835. {
  39836. name: "Universe Palm",
  39837. height: math.unit(20, "universes")
  39838. },
  39839. {
  39840. name: "Light Multiversal",
  39841. height: math.unit(5, "multiverses")
  39842. },
  39843. {
  39844. name: "Multiverse Palm",
  39845. height: math.unit(20, "multiverses")
  39846. },
  39847. {
  39848. name: "Inferno Incarnate",
  39849. height: math.unit(1e7, "multiverses")
  39850. },
  39851. ]
  39852. ))
  39853. characterMakers.push(() => makeCharacter(
  39854. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39855. {
  39856. front: {
  39857. height: math.unit(8, "feet"),
  39858. weight: math.unit(1200, "lb"),
  39859. name: "Front",
  39860. image: {
  39861. source: "./media/characters/malithee/front.svg",
  39862. extra: 1675/1640,
  39863. bottom: 162/1837
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Mortal Interaction",
  39870. height: math.unit(8, "feet"),
  39871. default: true
  39872. },
  39873. {
  39874. name: "Large",
  39875. height: math.unit(24, "feet")
  39876. },
  39877. {
  39878. name: "Kaiju",
  39879. height: math.unit(240, "feet")
  39880. },
  39881. {
  39882. name: "Megamacro",
  39883. height: math.unit(8000, "feet")
  39884. },
  39885. {
  39886. name: "Continent Cracker",
  39887. height: math.unit(24e6, "feet")
  39888. },
  39889. {
  39890. name: "Earth-Eclipsing",
  39891. height: math.unit(2.4e8, "feet")
  39892. },
  39893. {
  39894. name: "Sol-Swallowing",
  39895. height: math.unit(8e10, "feet")
  39896. },
  39897. {
  39898. name: "Galaxy Gulper",
  39899. height: math.unit(8, "galaxies")
  39900. },
  39901. {
  39902. name: "Light Universal",
  39903. height: math.unit(4, "universes")
  39904. },
  39905. {
  39906. name: "Universe Atoms",
  39907. height: math.unit(1.829e9, "universes")
  39908. },
  39909. {
  39910. name: "Light Multiversal",
  39911. height: math.unit(4, "multiverses")
  39912. },
  39913. {
  39914. name: "Multiverse Atoms",
  39915. height: math.unit(1.829e9, "multiverses")
  39916. },
  39917. {
  39918. name: "Nigh-Omnipresence",
  39919. height: math.unit(8e261, "multiverses")
  39920. },
  39921. ]
  39922. ))
  39923. characterMakers.push(() => makeCharacter(
  39924. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39925. {
  39926. front: {
  39927. height: math.unit(10, "feet"),
  39928. weight: math.unit(1500, "lb"),
  39929. name: "Front",
  39930. image: {
  39931. source: "./media/characters/miles-thestia/front.svg",
  39932. extra: 1812/1727,
  39933. bottom: 86/1898
  39934. }
  39935. },
  39936. back: {
  39937. height: math.unit(10, "feet"),
  39938. weight: math.unit(1500, "lb"),
  39939. name: "Back",
  39940. image: {
  39941. source: "./media/characters/miles-thestia/back.svg",
  39942. extra: 1799/1690,
  39943. bottom: 47/1846
  39944. }
  39945. },
  39946. frontNsfw: {
  39947. height: math.unit(10, "feet"),
  39948. weight: math.unit(1500, "lb"),
  39949. name: "Front (NSFW)",
  39950. image: {
  39951. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39952. extra: 1812/1727,
  39953. bottom: 86/1898
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Mini-Macro",
  39960. height: math.unit(10, "feet"),
  39961. default: true
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39967. {
  39968. front: {
  39969. height: math.unit(25, "feet"),
  39970. name: "Front",
  39971. image: {
  39972. source: "./media/characters/titan-s-wulf/front.svg",
  39973. extra: 1560/1484,
  39974. bottom: 76/1636
  39975. }
  39976. },
  39977. },
  39978. [
  39979. {
  39980. name: "Smallest",
  39981. height: math.unit(25, "feet"),
  39982. default: true
  39983. },
  39984. {
  39985. name: "Normal",
  39986. height: math.unit(200, "feet")
  39987. },
  39988. {
  39989. name: "Macro",
  39990. height: math.unit(200000, "feet")
  39991. },
  39992. {
  39993. name: "Multiversal Original",
  39994. height: math.unit(10000, "multiverses")
  39995. },
  39996. ]
  39997. ))
  39998. characterMakers.push(() => makeCharacter(
  39999. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40000. {
  40001. front: {
  40002. height: math.unit(8, "feet"),
  40003. weight: math.unit(553, "lb"),
  40004. name: "Front",
  40005. image: {
  40006. source: "./media/characters/tawendeh/front.svg",
  40007. extra: 2365/2268,
  40008. bottom: 83/2448
  40009. }
  40010. },
  40011. frontClothed: {
  40012. height: math.unit(8, "feet"),
  40013. weight: math.unit(553, "lb"),
  40014. name: "Front (Clothed)",
  40015. image: {
  40016. source: "./media/characters/tawendeh/front-clothed.svg",
  40017. extra: 2365/2268,
  40018. bottom: 83/2448
  40019. }
  40020. },
  40021. back: {
  40022. height: math.unit(8, "feet"),
  40023. weight: math.unit(553, "lb"),
  40024. name: "Back",
  40025. image: {
  40026. source: "./media/characters/tawendeh/back.svg",
  40027. extra: 2397/2294,
  40028. bottom: 42/2439
  40029. }
  40030. },
  40031. },
  40032. [
  40033. {
  40034. name: "Mortal Interaction",
  40035. height: math.unit(8, "feet"),
  40036. default: true
  40037. },
  40038. {
  40039. name: "Giant",
  40040. height: math.unit(80, "feet")
  40041. },
  40042. {
  40043. name: "Macro",
  40044. height: math.unit(800, "feet")
  40045. },
  40046. {
  40047. name: "Megamacro",
  40048. height: math.unit(8000, "feet")
  40049. },
  40050. {
  40051. name: "City-Crushing",
  40052. height: math.unit(24000, "feet")
  40053. },
  40054. {
  40055. name: "Mountain-Mashing",
  40056. height: math.unit(80000, "feet")
  40057. },
  40058. {
  40059. name: "Nation Nemesis",
  40060. height: math.unit(8e6, "feet")
  40061. },
  40062. {
  40063. name: "Continent Cracker",
  40064. height: math.unit(24e6, "feet")
  40065. },
  40066. {
  40067. name: "Earth-Eclipsing",
  40068. height: math.unit(2.4e8, "feet")
  40069. },
  40070. {
  40071. name: "Gas Giant Gulper",
  40072. height: math.unit(2.4e9, "feet")
  40073. },
  40074. {
  40075. name: "Sol-Swallowing",
  40076. height: math.unit(8e10, "feet")
  40077. },
  40078. {
  40079. name: "Galaxy Gulper",
  40080. height: math.unit(8, "galaxies")
  40081. },
  40082. {
  40083. name: "Cosmos Churner",
  40084. height: math.unit(8, "universes")
  40085. },
  40086. {
  40087. name: "Omnipotent Otter",
  40088. height: math.unit(80, "universes")
  40089. },
  40090. ]
  40091. ))
  40092. characterMakers.push(() => makeCharacter(
  40093. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40094. {
  40095. front: {
  40096. height: math.unit(2.6, "meters"),
  40097. weight: math.unit(900, "kg"),
  40098. name: "Front",
  40099. image: {
  40100. source: "./media/characters/neesha/front.svg",
  40101. extra: 1803/1653,
  40102. bottom: 128/1931
  40103. }
  40104. },
  40105. },
  40106. [
  40107. {
  40108. name: "Normal",
  40109. height: math.unit(2.6, "meters"),
  40110. default: true
  40111. },
  40112. {
  40113. name: "Macro",
  40114. height: math.unit(50, "meters")
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(5, "feet"),
  40123. weight: math.unit(185, "lb"),
  40124. name: "Front",
  40125. image: {
  40126. source: "./media/characters/kyera/front.svg",
  40127. extra: 1875/1790,
  40128. bottom: 96/1971
  40129. }
  40130. },
  40131. },
  40132. [
  40133. {
  40134. name: "Normal",
  40135. height: math.unit(5, "feet"),
  40136. default: true
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(7 + 6/12, "feet"),
  40145. weight: math.unit(540, "lb"),
  40146. name: "Front",
  40147. image: {
  40148. source: "./media/characters/yuko/front.svg",
  40149. extra: 1282/1222,
  40150. bottom: 101/1383
  40151. }
  40152. },
  40153. frontClothed: {
  40154. height: math.unit(7 + 6/12, "feet"),
  40155. weight: math.unit(540, "lb"),
  40156. name: "Front (Clothed)",
  40157. image: {
  40158. source: "./media/characters/yuko/front-clothed.svg",
  40159. extra: 1282/1222,
  40160. bottom: 101/1383
  40161. }
  40162. },
  40163. },
  40164. [
  40165. {
  40166. name: "Normal",
  40167. height: math.unit(7 + 6/12, "feet"),
  40168. default: true
  40169. },
  40170. {
  40171. name: "Macro",
  40172. height: math.unit(26 + 9/12, "feet")
  40173. },
  40174. {
  40175. name: "Megamacro",
  40176. height: math.unit(300, "feet")
  40177. },
  40178. {
  40179. name: "Gigamacro",
  40180. height: math.unit(5000, "feet")
  40181. },
  40182. {
  40183. name: "Planetary",
  40184. height: math.unit(10000, "miles")
  40185. },
  40186. ]
  40187. ))
  40188. characterMakers.push(() => makeCharacter(
  40189. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40190. {
  40191. front: {
  40192. height: math.unit(8 + 2/12, "feet"),
  40193. weight: math.unit(600, "lb"),
  40194. name: "Front",
  40195. image: {
  40196. source: "./media/characters/deam-nitrel/front.svg",
  40197. extra: 1308/1234,
  40198. bottom: 125/1433
  40199. }
  40200. },
  40201. },
  40202. [
  40203. {
  40204. name: "Normal",
  40205. height: math.unit(8 + 2/12, "feet"),
  40206. default: true
  40207. },
  40208. ]
  40209. ))
  40210. characterMakers.push(() => makeCharacter(
  40211. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40212. {
  40213. front: {
  40214. height: math.unit(6.1, "feet"),
  40215. weight: math.unit(180, "lb"),
  40216. name: "Front",
  40217. image: {
  40218. source: "./media/characters/skyress/front.svg",
  40219. extra: 1045/915,
  40220. bottom: 28/1073
  40221. }
  40222. },
  40223. maw: {
  40224. height: math.unit(1, "feet"),
  40225. name: "Maw",
  40226. image: {
  40227. source: "./media/characters/skyress/maw.svg"
  40228. }
  40229. },
  40230. },
  40231. [
  40232. {
  40233. name: "Normal",
  40234. height: math.unit(6.1, "feet"),
  40235. default: true
  40236. },
  40237. {
  40238. name: "Macro",
  40239. height: math.unit(200, "feet")
  40240. },
  40241. ]
  40242. ))
  40243. characterMakers.push(() => makeCharacter(
  40244. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40245. {
  40246. front: {
  40247. height: math.unit(4 + 2/12, "feet"),
  40248. weight: math.unit(40, "kg"),
  40249. name: "Front",
  40250. image: {
  40251. source: "./media/characters/amethyst-jones/front.svg",
  40252. extra: 1220/1150,
  40253. bottom: 101/1321
  40254. }
  40255. },
  40256. },
  40257. [
  40258. {
  40259. name: "Normal",
  40260. height: math.unit(4 + 2/12, "feet"),
  40261. default: true
  40262. },
  40263. ]
  40264. ))
  40265. characterMakers.push(() => makeCharacter(
  40266. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40267. {
  40268. front: {
  40269. height: math.unit(1.7, "m"),
  40270. weight: math.unit(135, "lb"),
  40271. name: "Front",
  40272. image: {
  40273. source: "./media/characters/jade/front.svg",
  40274. extra: 1818/1767,
  40275. bottom: 32/1850
  40276. }
  40277. },
  40278. back: {
  40279. height: math.unit(1.7, "m"),
  40280. weight: math.unit(135, "lb"),
  40281. name: "Back",
  40282. image: {
  40283. source: "./media/characters/jade/back.svg",
  40284. extra: 1869/1809,
  40285. bottom: 35/1904
  40286. }
  40287. },
  40288. hand: {
  40289. height: math.unit(0.24, "m"),
  40290. name: "Hand",
  40291. image: {
  40292. source: "./media/characters/jade/hand.svg"
  40293. }
  40294. },
  40295. foot: {
  40296. height: math.unit(0.263, "m"),
  40297. name: "Foot",
  40298. image: {
  40299. source: "./media/characters/jade/foot.svg"
  40300. }
  40301. },
  40302. dick: {
  40303. height: math.unit(0.47, "m"),
  40304. name: "Dick",
  40305. image: {
  40306. source: "./media/characters/jade/dick.svg"
  40307. }
  40308. },
  40309. },
  40310. [
  40311. {
  40312. name: "Micro",
  40313. height: math.unit(22, "cm")
  40314. },
  40315. {
  40316. name: "Normal",
  40317. height: math.unit(1.7, "m"),
  40318. default: true
  40319. },
  40320. {
  40321. name: "Macro",
  40322. height: math.unit(152, "m")
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(100, "miles"),
  40331. weight: math.unit(20000, "tons"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/cookie/front.svg",
  40335. extra: 1125/1070,
  40336. bottom: 30/1155
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Big",
  40343. height: math.unit(50, "feet")
  40344. },
  40345. {
  40346. name: "Macro",
  40347. height: math.unit(100, "miles"),
  40348. default: true
  40349. },
  40350. {
  40351. name: "Megamacro",
  40352. height: math.unit(90000, "miles")
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40358. {
  40359. front: {
  40360. height: math.unit(6, "feet"),
  40361. weight: math.unit(145, "lb"),
  40362. name: "Front",
  40363. image: {
  40364. source: "./media/characters/farzian/front.svg",
  40365. extra: 1902/1693,
  40366. bottom: 108/2010
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Macro",
  40373. height: math.unit(500, "feet"),
  40374. default: true
  40375. },
  40376. ]
  40377. ))
  40378. characterMakers.push(() => makeCharacter(
  40379. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40380. {
  40381. front: {
  40382. height: math.unit(3 + 6/12, "feet"),
  40383. weight: math.unit(50, "lb"),
  40384. name: "Front",
  40385. image: {
  40386. source: "./media/characters/kimberly-tilson/front.svg",
  40387. extra: 1400/1322,
  40388. bottom: 36/1436
  40389. }
  40390. },
  40391. back: {
  40392. height: math.unit(3 + 6/12, "feet"),
  40393. weight: math.unit(50, "lb"),
  40394. name: "Back",
  40395. image: {
  40396. source: "./media/characters/kimberly-tilson/back.svg",
  40397. extra: 1370/1307,
  40398. bottom: 20/1390
  40399. }
  40400. },
  40401. },
  40402. [
  40403. {
  40404. name: "Normal",
  40405. height: math.unit(3 + 6/12, "feet"),
  40406. default: true
  40407. },
  40408. ]
  40409. ))
  40410. characterMakers.push(() => makeCharacter(
  40411. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40412. {
  40413. front: {
  40414. height: math.unit(1148, "feet"),
  40415. weight: math.unit(34057, "lb"),
  40416. name: "Front",
  40417. image: {
  40418. source: "./media/characters/harthos/front.svg",
  40419. extra: 1391/1339,
  40420. bottom: 13/1404
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Macro",
  40427. height: math.unit(1148, "feet"),
  40428. default: true
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40434. {
  40435. front: {
  40436. height: math.unit(15, "feet"),
  40437. name: "Front",
  40438. image: {
  40439. source: "./media/characters/hypatia/front.svg",
  40440. extra: 1653/1591,
  40441. bottom: 79/1732
  40442. }
  40443. },
  40444. },
  40445. [
  40446. {
  40447. name: "Normal",
  40448. height: math.unit(15, "feet")
  40449. },
  40450. {
  40451. name: "Small",
  40452. height: math.unit(300, "feet")
  40453. },
  40454. {
  40455. name: "Macro",
  40456. height: math.unit(2500, "feet"),
  40457. default: true
  40458. },
  40459. {
  40460. name: "Mega Macro",
  40461. height: math.unit(1500, "miles")
  40462. },
  40463. {
  40464. name: "Giga Macro",
  40465. height: math.unit(1.5e6, "miles")
  40466. },
  40467. ]
  40468. ))
  40469. characterMakers.push(() => makeCharacter(
  40470. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40471. {
  40472. front: {
  40473. height: math.unit(6, "feet"),
  40474. weight: math.unit(200, "lb"),
  40475. name: "Front",
  40476. image: {
  40477. source: "./media/characters/wulver/front.svg",
  40478. extra: 1724/1632,
  40479. bottom: 130/1854
  40480. }
  40481. },
  40482. frontNsfw: {
  40483. height: math.unit(6, "feet"),
  40484. weight: math.unit(200, "lb"),
  40485. name: "Front (NSFW)",
  40486. image: {
  40487. source: "./media/characters/wulver/front-nsfw.svg",
  40488. extra: 1724/1632,
  40489. bottom: 130/1854
  40490. }
  40491. },
  40492. },
  40493. [
  40494. {
  40495. name: "Human-Sized",
  40496. height: math.unit(6, "feet")
  40497. },
  40498. {
  40499. name: "Normal",
  40500. height: math.unit(4, "meters"),
  40501. default: true
  40502. },
  40503. {
  40504. name: "Large",
  40505. height: math.unit(6, "m")
  40506. },
  40507. ]
  40508. ))
  40509. characterMakers.push(() => makeCharacter(
  40510. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40511. {
  40512. front: {
  40513. height: math.unit(7, "feet"),
  40514. name: "Front",
  40515. image: {
  40516. source: "./media/characters/maru/front.svg",
  40517. extra: 1595/1570,
  40518. bottom: 0/1595
  40519. }
  40520. },
  40521. },
  40522. [
  40523. {
  40524. name: "Normal",
  40525. height: math.unit(7, "feet"),
  40526. default: true
  40527. },
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(700, "feet")
  40531. },
  40532. {
  40533. name: "Mega Macro",
  40534. height: math.unit(25, "miles")
  40535. },
  40536. ]
  40537. ))
  40538. characterMakers.push(() => makeCharacter(
  40539. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40540. {
  40541. front: {
  40542. height: math.unit(6, "feet"),
  40543. weight: math.unit(170, "lb"),
  40544. name: "Front",
  40545. image: {
  40546. source: "./media/characters/xenon/front.svg",
  40547. extra: 1376/1305,
  40548. bottom: 56/1432
  40549. }
  40550. },
  40551. back: {
  40552. height: math.unit(6, "feet"),
  40553. weight: math.unit(170, "lb"),
  40554. name: "Back",
  40555. image: {
  40556. source: "./media/characters/xenon/back.svg",
  40557. extra: 1328/1259,
  40558. bottom: 95/1423
  40559. }
  40560. },
  40561. maw: {
  40562. height: math.unit(0.52, "feet"),
  40563. name: "Maw",
  40564. image: {
  40565. source: "./media/characters/xenon/maw.svg"
  40566. }
  40567. },
  40568. hand: {
  40569. height: math.unit(0.82, "feet"),
  40570. name: "Hand",
  40571. image: {
  40572. source: "./media/characters/xenon/hand.svg"
  40573. }
  40574. },
  40575. foot: {
  40576. height: math.unit(1.13, "feet"),
  40577. name: "Foot",
  40578. image: {
  40579. source: "./media/characters/xenon/foot.svg"
  40580. }
  40581. },
  40582. },
  40583. [
  40584. {
  40585. name: "Micro",
  40586. height: math.unit(0.8, "inches")
  40587. },
  40588. {
  40589. name: "Normal",
  40590. height: math.unit(6, "feet")
  40591. },
  40592. {
  40593. name: "Macro",
  40594. height: math.unit(50, "feet"),
  40595. default: true
  40596. },
  40597. {
  40598. name: "Macro+",
  40599. height: math.unit(250, "feet")
  40600. },
  40601. {
  40602. name: "Megamacro",
  40603. height: math.unit(1500, "feet")
  40604. },
  40605. ]
  40606. ))
  40607. characterMakers.push(() => makeCharacter(
  40608. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40609. {
  40610. front: {
  40611. height: math.unit(7 + 5/12, "feet"),
  40612. name: "Front",
  40613. image: {
  40614. source: "./media/characters/zane/front.svg",
  40615. extra: 1260/1203,
  40616. bottom: 94/1354
  40617. }
  40618. },
  40619. back: {
  40620. height: math.unit(5.05, "feet"),
  40621. name: "Back",
  40622. image: {
  40623. source: "./media/characters/zane/back.svg",
  40624. extra: 893/829,
  40625. bottom: 30/923
  40626. }
  40627. },
  40628. werewolf: {
  40629. height: math.unit(11, "feet"),
  40630. name: "Werewolf",
  40631. image: {
  40632. source: "./media/characters/zane/werewolf.svg",
  40633. extra: 1383/1323,
  40634. bottom: 89/1472
  40635. }
  40636. },
  40637. foot: {
  40638. height: math.unit(1.46, "feet"),
  40639. name: "Foot",
  40640. image: {
  40641. source: "./media/characters/zane/foot.svg"
  40642. }
  40643. },
  40644. footFront: {
  40645. height: math.unit(0.784, "feet"),
  40646. name: "Foot (Front)",
  40647. image: {
  40648. source: "./media/characters/zane/foot-front.svg"
  40649. }
  40650. },
  40651. dick: {
  40652. height: math.unit(1.95, "feet"),
  40653. name: "Dick",
  40654. image: {
  40655. source: "./media/characters/zane/dick.svg"
  40656. }
  40657. },
  40658. dickWerewolf: {
  40659. height: math.unit(3.77, "feet"),
  40660. name: "Dick (Werewolf)",
  40661. image: {
  40662. source: "./media/characters/zane/dick.svg"
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "Normal",
  40669. height: math.unit(7 + 5/12, "feet"),
  40670. default: true
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(6 + 2/12, "feet"),
  40679. weight: math.unit(284, "lb"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/benni-desparque/front.svg",
  40683. extra: 1353/1126,
  40684. bottom: 69/1422
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Civilian",
  40691. height: math.unit(6 + 2/12, "feet")
  40692. },
  40693. {
  40694. name: "Normal",
  40695. height: math.unit(98, "feet"),
  40696. default: true
  40697. },
  40698. {
  40699. name: "Kaiju Fighter",
  40700. height: math.unit(268, "feet")
  40701. },
  40702. ]
  40703. ))
  40704. characterMakers.push(() => makeCharacter(
  40705. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40706. {
  40707. front: {
  40708. height: math.unit(5, "feet"),
  40709. weight: math.unit(105, "lb"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/maxine/front.svg",
  40713. extra: 1386/1250,
  40714. bottom: 71/1457
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Normal",
  40721. height: math.unit(5, "feet"),
  40722. default: true
  40723. },
  40724. ]
  40725. ))
  40726. characterMakers.push(() => makeCharacter(
  40727. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40728. {
  40729. front: {
  40730. height: math.unit(11 + 7/12, "feet"),
  40731. weight: math.unit(9576, "lb"),
  40732. name: "Front",
  40733. image: {
  40734. source: "./media/characters/scaly/front.svg",
  40735. extra: 888/867,
  40736. bottom: 36/924
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(11 + 7/12, "feet"),
  40744. default: true
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40750. {
  40751. front: {
  40752. height: math.unit(6 + 3/12, "feet"),
  40753. name: "Front",
  40754. image: {
  40755. source: "./media/characters/saelria/front.svg",
  40756. extra: 1243/1138,
  40757. bottom: 46/1289
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Micro",
  40764. height: math.unit(6, "inches"),
  40765. },
  40766. {
  40767. name: "Normal",
  40768. height: math.unit(6 + 3/12, "feet"),
  40769. default: true
  40770. },
  40771. {
  40772. name: "Macro",
  40773. height: math.unit(25, "feet")
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(80, "meters"),
  40782. weight: math.unit(7000, "tonnes"),
  40783. name: "Front",
  40784. image: {
  40785. source: "./media/characters/tef/front.svg",
  40786. extra: 2036/1991,
  40787. bottom: 54/2090
  40788. }
  40789. },
  40790. back: {
  40791. height: math.unit(80, "meters"),
  40792. weight: math.unit(7000, "tonnes"),
  40793. name: "Back",
  40794. image: {
  40795. source: "./media/characters/tef/back.svg",
  40796. extra: 2036/1991,
  40797. bottom: 54/2090
  40798. }
  40799. },
  40800. },
  40801. [
  40802. {
  40803. name: "Macro",
  40804. height: math.unit(80, "meters"),
  40805. default: true
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40811. {
  40812. front: {
  40813. height: math.unit(13, "feet"),
  40814. weight: math.unit(6, "tons"),
  40815. name: "Front",
  40816. image: {
  40817. source: "./media/characters/rover/front.svg",
  40818. extra: 1233/1156,
  40819. bottom: 50/1283
  40820. }
  40821. },
  40822. back: {
  40823. height: math.unit(13, "feet"),
  40824. weight: math.unit(6, "tons"),
  40825. name: "Back",
  40826. image: {
  40827. source: "./media/characters/rover/back.svg",
  40828. extra: 1327/1258,
  40829. bottom: 39/1366
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Normal",
  40836. height: math.unit(13, "feet"),
  40837. default: true
  40838. },
  40839. {
  40840. name: "Macro",
  40841. height: math.unit(1300, "feet")
  40842. },
  40843. {
  40844. name: "Megamacro",
  40845. height: math.unit(1300, "miles")
  40846. },
  40847. {
  40848. name: "Gigamacro",
  40849. height: math.unit(1300000, "miles")
  40850. },
  40851. ]
  40852. ))
  40853. characterMakers.push(() => makeCharacter(
  40854. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40855. {
  40856. front: {
  40857. height: math.unit(6, "feet"),
  40858. weight: math.unit(150, "lb"),
  40859. name: "Front",
  40860. image: {
  40861. source: "./media/characters/ariz/front.svg",
  40862. extra: 1401/1346,
  40863. bottom: 5/1406
  40864. }
  40865. },
  40866. },
  40867. [
  40868. {
  40869. name: "Normal",
  40870. height: math.unit(10, "feet"),
  40871. default: true
  40872. },
  40873. ]
  40874. ))
  40875. characterMakers.push(() => makeCharacter(
  40876. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40877. {
  40878. front: {
  40879. height: math.unit(6, "feet"),
  40880. weight: math.unit(140, "lb"),
  40881. name: "Front",
  40882. image: {
  40883. source: "./media/characters/sigrun/front.svg",
  40884. extra: 1418/1359,
  40885. bottom: 27/1445
  40886. }
  40887. },
  40888. },
  40889. [
  40890. {
  40891. name: "Macro",
  40892. height: math.unit(35, "feet"),
  40893. default: true
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(6, "feet"),
  40902. weight: math.unit(150, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/numin/front.svg",
  40906. extra: 1433/1388,
  40907. bottom: 12/1445
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Macro",
  40914. height: math.unit(21.5, "km"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(6, "feet"),
  40924. weight: math.unit(463, "lb"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/melwa/front.svg",
  40928. extra: 1307/1248,
  40929. bottom: 93/1400
  40930. }
  40931. },
  40932. },
  40933. [
  40934. {
  40935. name: "Macro",
  40936. height: math.unit(50, "meters"),
  40937. default: true
  40938. },
  40939. ]
  40940. ))
  40941. characterMakers.push(() => makeCharacter(
  40942. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40943. {
  40944. front: {
  40945. height: math.unit(325, "feet"),
  40946. name: "Front",
  40947. image: {
  40948. source: "./media/characters/zorkaiju/front.svg",
  40949. extra: 1955/1814,
  40950. bottom: 40/1995
  40951. }
  40952. },
  40953. frontExtended: {
  40954. height: math.unit(325, "feet"),
  40955. name: "Front (Extended)",
  40956. image: {
  40957. source: "./media/characters/zorkaiju/front-extended.svg",
  40958. extra: 1955/1814,
  40959. bottom: 40/1995
  40960. }
  40961. },
  40962. side: {
  40963. height: math.unit(325, "feet"),
  40964. name: "Side",
  40965. image: {
  40966. source: "./media/characters/zorkaiju/side.svg",
  40967. extra: 1495/1396,
  40968. bottom: 17/1512
  40969. }
  40970. },
  40971. sideExtended: {
  40972. height: math.unit(325, "feet"),
  40973. name: "Side (Extended)",
  40974. image: {
  40975. source: "./media/characters/zorkaiju/side-extended.svg",
  40976. extra: 1495/1396,
  40977. bottom: 17/1512
  40978. }
  40979. },
  40980. back: {
  40981. height: math.unit(325, "feet"),
  40982. name: "Back",
  40983. image: {
  40984. source: "./media/characters/zorkaiju/back.svg",
  40985. extra: 1959/1821,
  40986. bottom: 31/1990
  40987. }
  40988. },
  40989. backExtended: {
  40990. height: math.unit(325, "feet"),
  40991. name: "Back (Extended)",
  40992. image: {
  40993. source: "./media/characters/zorkaiju/back-extended.svg",
  40994. extra: 1959/1821,
  40995. bottom: 31/1990
  40996. }
  40997. },
  40998. hand: {
  40999. height: math.unit(58.4, "feet"),
  41000. name: "Hand",
  41001. image: {
  41002. source: "./media/characters/zorkaiju/hand.svg"
  41003. }
  41004. },
  41005. handExtended: {
  41006. height: math.unit(61.4, "feet"),
  41007. name: "Hand (Extended)",
  41008. image: {
  41009. source: "./media/characters/zorkaiju/hand-extended.svg"
  41010. }
  41011. },
  41012. foot: {
  41013. height: math.unit(95, "feet"),
  41014. name: "Foot",
  41015. image: {
  41016. source: "./media/characters/zorkaiju/foot.svg"
  41017. }
  41018. },
  41019. leftArm: {
  41020. height: math.unit(59, "feet"),
  41021. name: "Left Arm",
  41022. image: {
  41023. source: "./media/characters/zorkaiju/left-arm.svg"
  41024. }
  41025. },
  41026. rightArm: {
  41027. height: math.unit(59, "feet"),
  41028. name: "Right Arm",
  41029. image: {
  41030. source: "./media/characters/zorkaiju/right-arm.svg"
  41031. }
  41032. },
  41033. tail: {
  41034. height: math.unit(104, "feet"),
  41035. name: "Tail",
  41036. image: {
  41037. source: "./media/characters/zorkaiju/tail.svg"
  41038. }
  41039. },
  41040. tailExtended: {
  41041. height: math.unit(104, "feet"),
  41042. name: "Tail (Extended)",
  41043. image: {
  41044. source: "./media/characters/zorkaiju/tail-extended.svg"
  41045. }
  41046. },
  41047. tailBottom: {
  41048. height: math.unit(104, "feet"),
  41049. name: "Tail Bottom",
  41050. image: {
  41051. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41052. }
  41053. },
  41054. crystal: {
  41055. height: math.unit(27.54, "feet"),
  41056. name: "Crystal",
  41057. image: {
  41058. source: "./media/characters/zorkaiju/crystal.svg"
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Kaiju",
  41065. height: math.unit(325, "feet"),
  41066. default: true
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41072. {
  41073. front: {
  41074. height: math.unit(6 + 1/12, "feet"),
  41075. weight: math.unit(115, "lb"),
  41076. name: "Front",
  41077. image: {
  41078. source: "./media/characters/bailey-belfry/front.svg",
  41079. extra: 1240/1121,
  41080. bottom: 101/1341
  41081. }
  41082. },
  41083. },
  41084. [
  41085. {
  41086. name: "Normal",
  41087. height: math.unit(6 + 1/12, "feet"),
  41088. default: true
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41094. {
  41095. side: {
  41096. height: math.unit(4, "meters"),
  41097. weight: math.unit(250, "kg"),
  41098. name: "Side",
  41099. image: {
  41100. source: "./media/characters/blacky/side.svg",
  41101. extra: 1027/919,
  41102. bottom: 43/1070
  41103. }
  41104. },
  41105. maw: {
  41106. height: math.unit(1, "meters"),
  41107. name: "Maw",
  41108. image: {
  41109. source: "./media/characters/blacky/maw.svg"
  41110. }
  41111. },
  41112. paw: {
  41113. height: math.unit(1, "meters"),
  41114. name: "Paw",
  41115. image: {
  41116. source: "./media/characters/blacky/paw.svg"
  41117. }
  41118. },
  41119. },
  41120. [
  41121. {
  41122. name: "Normal",
  41123. height: math.unit(4, "meters"),
  41124. default: true
  41125. },
  41126. ]
  41127. ))
  41128. characterMakers.push(() => makeCharacter(
  41129. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41130. {
  41131. front: {
  41132. height: math.unit(170, "cm"),
  41133. weight: math.unit(66, "kg"),
  41134. name: "Front",
  41135. image: {
  41136. source: "./media/characters/thux-ei/front.svg",
  41137. extra: 1109/1011,
  41138. bottom: 8/1117
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(170, "cm"),
  41146. default: true
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(5, "feet"),
  41155. weight: math.unit(120, "lb"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/roxanne-voltaire/front.svg",
  41159. extra: 1901/1779,
  41160. bottom: 53/1954
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(5, "feet"),
  41168. default: true
  41169. },
  41170. {
  41171. name: "Giant",
  41172. height: math.unit(50, "feet")
  41173. },
  41174. {
  41175. name: "Titan",
  41176. height: math.unit(500, "feet")
  41177. },
  41178. {
  41179. name: "Macro",
  41180. height: math.unit(5000, "feet")
  41181. },
  41182. {
  41183. name: "Megamacro",
  41184. height: math.unit(50000, "feet")
  41185. },
  41186. {
  41187. name: "Gigamacro",
  41188. height: math.unit(500000, "feet")
  41189. },
  41190. {
  41191. name: "Teramacro",
  41192. height: math.unit(5e6, "feet")
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41198. {
  41199. front: {
  41200. height: math.unit(6 + 2/12, "feet"),
  41201. name: "Front",
  41202. image: {
  41203. source: "./media/characters/squeaks/front.svg",
  41204. extra: 1823/1768,
  41205. bottom: 138/1961
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Micro",
  41212. height: math.unit(0.5, "inches")
  41213. },
  41214. {
  41215. name: "Normal",
  41216. height: math.unit(6 + 2/12, "feet"),
  41217. default: true
  41218. },
  41219. {
  41220. name: "Macro",
  41221. height: math.unit(600, "feet")
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(1.72, "meters"),
  41230. name: "Front",
  41231. image: {
  41232. source: "./media/characters/archinger/front.svg",
  41233. extra: 1861/1675,
  41234. bottom: 125/1986
  41235. }
  41236. },
  41237. back: {
  41238. height: math.unit(1.72, "meters"),
  41239. name: "Back",
  41240. image: {
  41241. source: "./media/characters/archinger/back.svg",
  41242. extra: 1844/1701,
  41243. bottom: 104/1948
  41244. }
  41245. },
  41246. cock: {
  41247. height: math.unit(0.59, "feet"),
  41248. name: "Cock",
  41249. image: {
  41250. source: "./media/characters/archinger/cock.svg"
  41251. }
  41252. },
  41253. },
  41254. [
  41255. {
  41256. name: "Normal",
  41257. height: math.unit(1.72, "meters"),
  41258. default: true
  41259. },
  41260. {
  41261. name: "Macro",
  41262. height: math.unit(84, "meters")
  41263. },
  41264. {
  41265. name: "Macro+",
  41266. height: math.unit(112, "meters")
  41267. },
  41268. {
  41269. name: "Macro++",
  41270. height: math.unit(960, "meters")
  41271. },
  41272. {
  41273. name: "Macro+++",
  41274. height: math.unit(4, "km")
  41275. },
  41276. {
  41277. name: "Macro++++",
  41278. height: math.unit(48, "km")
  41279. },
  41280. {
  41281. name: "Macro+++++",
  41282. height: math.unit(4500, "km")
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(5 + 5/12, "feet"),
  41291. name: "Front",
  41292. image: {
  41293. source: "./media/characters/alsnapz/front.svg",
  41294. extra: 1157/1065,
  41295. bottom: 42/1199
  41296. }
  41297. },
  41298. },
  41299. [
  41300. {
  41301. name: "Normal",
  41302. height: math.unit(5 + 5/12, "feet"),
  41303. default: true
  41304. },
  41305. ]
  41306. ))
  41307. characterMakers.push(() => makeCharacter(
  41308. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41309. {
  41310. side: {
  41311. height: math.unit(3.2, "earths"),
  41312. name: "Side",
  41313. image: {
  41314. source: "./media/characters/mag/side.svg",
  41315. extra: 1331/1008,
  41316. bottom: 52/1383
  41317. }
  41318. },
  41319. wing: {
  41320. height: math.unit(1.94, "earths"),
  41321. name: "Wing",
  41322. image: {
  41323. source: "./media/characters/mag/wing.svg"
  41324. }
  41325. },
  41326. dick: {
  41327. height: math.unit(1.8, "earths"),
  41328. name: "Dick",
  41329. image: {
  41330. source: "./media/characters/mag/dick.svg"
  41331. }
  41332. },
  41333. ass: {
  41334. height: math.unit(1.33, "earths"),
  41335. name: "Ass",
  41336. image: {
  41337. source: "./media/characters/mag/ass.svg"
  41338. }
  41339. },
  41340. head: {
  41341. height: math.unit(1.1, "earths"),
  41342. name: "Head",
  41343. image: {
  41344. source: "./media/characters/mag/head.svg"
  41345. }
  41346. },
  41347. maw: {
  41348. height: math.unit(1.62, "earths"),
  41349. name: "Maw",
  41350. image: {
  41351. source: "./media/characters/mag/maw.svg"
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Small",
  41358. height: math.unit(162, "feet")
  41359. },
  41360. {
  41361. name: "Normal",
  41362. height: math.unit(3.2, "earths"),
  41363. default: true
  41364. },
  41365. ]
  41366. ))
  41367. characterMakers.push(() => makeCharacter(
  41368. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41369. {
  41370. front: {
  41371. height: math.unit(512, "feet"),
  41372. weight: math.unit(63509, "tonnes"),
  41373. name: "Front",
  41374. image: {
  41375. source: "./media/characters/vorrel-harroc/front.svg",
  41376. extra: 1075/1063,
  41377. bottom: 62/1137
  41378. }
  41379. },
  41380. },
  41381. [
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(10, "feet")
  41385. },
  41386. {
  41387. name: "Macro",
  41388. height: math.unit(512, "feet"),
  41389. default: true
  41390. },
  41391. {
  41392. name: "Megamacro",
  41393. height: math.unit(256, "miles")
  41394. },
  41395. {
  41396. name: "Gigamacro",
  41397. height: math.unit(4096, "miles")
  41398. },
  41399. ]
  41400. ))
  41401. characterMakers.push(() => makeCharacter(
  41402. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41403. {
  41404. side: {
  41405. height: math.unit(50, "feet"),
  41406. name: "Side",
  41407. image: {
  41408. source: "./media/characters/froimar/side.svg",
  41409. extra: 855/638,
  41410. bottom: 99/954
  41411. }
  41412. },
  41413. },
  41414. [
  41415. {
  41416. name: "Macro",
  41417. height: math.unit(50, "feet"),
  41418. default: true
  41419. },
  41420. ]
  41421. ))
  41422. characterMakers.push(() => makeCharacter(
  41423. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41424. {
  41425. front: {
  41426. height: math.unit(210, "miles"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/timothy/front.svg",
  41430. extra: 1007/943,
  41431. bottom: 62/1069
  41432. }
  41433. },
  41434. frontSkirt: {
  41435. height: math.unit(210, "miles"),
  41436. name: "Front (Skirt)",
  41437. image: {
  41438. source: "./media/characters/timothy/front-skirt.svg",
  41439. extra: 1007/943,
  41440. bottom: 62/1069
  41441. }
  41442. },
  41443. frontCoat: {
  41444. height: math.unit(210, "miles"),
  41445. name: "Front (Coat)",
  41446. image: {
  41447. source: "./media/characters/timothy/front-coat.svg",
  41448. extra: 1007/943,
  41449. bottom: 62/1069
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Macro",
  41456. height: math.unit(210, "miles"),
  41457. default: true
  41458. },
  41459. {
  41460. name: "Megamacro",
  41461. height: math.unit(210000, "miles")
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41467. {
  41468. front: {
  41469. height: math.unit(188, "feet"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/pyotr/front.svg",
  41473. extra: 1912/1826,
  41474. bottom: 18/1930
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Macro",
  41481. height: math.unit(188, "feet"),
  41482. default: true
  41483. },
  41484. {
  41485. name: "Megamacro",
  41486. height: math.unit(8, "miles")
  41487. },
  41488. ]
  41489. ))
  41490. characterMakers.push(() => makeCharacter(
  41491. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41492. {
  41493. side: {
  41494. height: math.unit(10, "feet"),
  41495. weight: math.unit(4500, "lb"),
  41496. name: "Side",
  41497. image: {
  41498. source: "./media/characters/ackart/side.svg",
  41499. extra: 1776/1668,
  41500. bottom: 116/1892
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Normal",
  41507. height: math.unit(10, "feet"),
  41508. default: true
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41514. {
  41515. side: {
  41516. height: math.unit(21, "feet"),
  41517. name: "Side",
  41518. image: {
  41519. source: "./media/characters/nolow/side.svg",
  41520. extra: 1484/1434,
  41521. bottom: 85/1569
  41522. }
  41523. },
  41524. sideErect: {
  41525. height: math.unit(21, "feet"),
  41526. name: "Side-erect",
  41527. image: {
  41528. source: "./media/characters/nolow/side-erect.svg",
  41529. extra: 1484/1434,
  41530. bottom: 85/1569
  41531. }
  41532. },
  41533. },
  41534. [
  41535. {
  41536. name: "Regular",
  41537. height: math.unit(12, "feet")
  41538. },
  41539. {
  41540. name: "Big Chee",
  41541. height: math.unit(21, "feet"),
  41542. default: true
  41543. },
  41544. ]
  41545. ))
  41546. characterMakers.push(() => makeCharacter(
  41547. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41548. {
  41549. front: {
  41550. height: math.unit(7, "feet"),
  41551. weight: math.unit(250, "lb"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/nines/front.svg",
  41555. extra: 1741/1607,
  41556. bottom: 41/1782
  41557. }
  41558. },
  41559. side: {
  41560. height: math.unit(7, "feet"),
  41561. weight: math.unit(250, "lb"),
  41562. name: "Side",
  41563. image: {
  41564. source: "./media/characters/nines/side.svg",
  41565. extra: 1854/1735,
  41566. bottom: 93/1947
  41567. }
  41568. },
  41569. back: {
  41570. height: math.unit(7, "feet"),
  41571. weight: math.unit(250, "lb"),
  41572. name: "Back",
  41573. image: {
  41574. source: "./media/characters/nines/back.svg",
  41575. extra: 1748/1615,
  41576. bottom: 20/1768
  41577. }
  41578. },
  41579. },
  41580. [
  41581. {
  41582. name: "Megamacro",
  41583. height: math.unit(99, "km"),
  41584. default: true
  41585. },
  41586. ]
  41587. ))
  41588. characterMakers.push(() => makeCharacter(
  41589. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41590. {
  41591. front: {
  41592. height: math.unit(5 + 10/12, "feet"),
  41593. weight: math.unit(210, "lb"),
  41594. name: "Front",
  41595. image: {
  41596. source: "./media/characters/zenith/front.svg",
  41597. extra: 1531/1452,
  41598. bottom: 198/1729
  41599. }
  41600. },
  41601. back: {
  41602. height: math.unit(5 + 10/12, "feet"),
  41603. weight: math.unit(210, "lb"),
  41604. name: "Back",
  41605. image: {
  41606. source: "./media/characters/zenith/back.svg",
  41607. extra: 1571/1487,
  41608. bottom: 75/1646
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Normal",
  41615. height: math.unit(5 + 10/12, "feet"),
  41616. default: true
  41617. }
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(4, "feet"),
  41625. weight: math.unit(60, "lb"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/jasper/front.svg",
  41629. extra: 1450/1379,
  41630. bottom: 19/1469
  41631. }
  41632. },
  41633. },
  41634. [
  41635. {
  41636. name: "Normal",
  41637. height: math.unit(4, "feet"),
  41638. default: true
  41639. },
  41640. ]
  41641. ))
  41642. characterMakers.push(() => makeCharacter(
  41643. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41644. {
  41645. front: {
  41646. height: math.unit(6 + 5/12, "feet"),
  41647. weight: math.unit(290, "lb"),
  41648. name: "Front",
  41649. image: {
  41650. source: "./media/characters/tiberius-thyben/front.svg",
  41651. extra: 757/739,
  41652. bottom: 39/796
  41653. }
  41654. },
  41655. },
  41656. [
  41657. {
  41658. name: "Micro",
  41659. height: math.unit(1.5, "inches")
  41660. },
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(6 + 5/12, "feet"),
  41664. default: true
  41665. },
  41666. {
  41667. name: "Macro",
  41668. height: math.unit(300, "feet")
  41669. },
  41670. ]
  41671. ))
  41672. characterMakers.push(() => makeCharacter(
  41673. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41674. {
  41675. front: {
  41676. height: math.unit(5 + 6/12, "feet"),
  41677. weight: math.unit(60, "kg"),
  41678. name: "Front",
  41679. image: {
  41680. source: "./media/characters/sabre/front.svg",
  41681. extra: 738/671,
  41682. bottom: 27/765
  41683. }
  41684. },
  41685. },
  41686. [
  41687. {
  41688. name: "Teeny",
  41689. height: math.unit(2, "inches")
  41690. },
  41691. {
  41692. name: "Smol",
  41693. height: math.unit(8, "inches")
  41694. },
  41695. {
  41696. name: "Normal",
  41697. height: math.unit(5 + 6/12, "feet"),
  41698. default: true
  41699. },
  41700. {
  41701. name: "Mini-Macro",
  41702. height: math.unit(15, "feet")
  41703. },
  41704. {
  41705. name: "Macro",
  41706. height: math.unit(50, "feet")
  41707. },
  41708. ]
  41709. ))
  41710. characterMakers.push(() => makeCharacter(
  41711. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41712. {
  41713. front: {
  41714. height: math.unit(6 + 4/12, "feet"),
  41715. weight: math.unit(170, "lb"),
  41716. name: "Front",
  41717. image: {
  41718. source: "./media/characters/charlie/front.svg",
  41719. extra: 1348/1228,
  41720. bottom: 15/1363
  41721. }
  41722. },
  41723. },
  41724. [
  41725. {
  41726. name: "Macro",
  41727. height: math.unit(1700, "meters"),
  41728. default: true
  41729. },
  41730. {
  41731. name: "MegaMacro",
  41732. height: math.unit(20400, "meters")
  41733. },
  41734. ]
  41735. ))
  41736. characterMakers.push(() => makeCharacter(
  41737. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41738. {
  41739. front: {
  41740. height: math.unit(6 + 3/12, "feet"),
  41741. weight: math.unit(185, "lb"),
  41742. name: "Front",
  41743. image: {
  41744. source: "./media/characters/susan-grant/front.svg",
  41745. extra: 1351/1327,
  41746. bottom: 26/1377
  41747. }
  41748. },
  41749. },
  41750. [
  41751. {
  41752. name: "Normal",
  41753. height: math.unit(6 + 3/12, "feet"),
  41754. default: true
  41755. },
  41756. {
  41757. name: "Macro",
  41758. height: math.unit(225, "feet")
  41759. },
  41760. {
  41761. name: "Macro+",
  41762. height: math.unit(900, "feet")
  41763. },
  41764. {
  41765. name: "MegaMacro",
  41766. height: math.unit(14400, "feet")
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41772. {
  41773. front: {
  41774. height: math.unit(5 + 4/12, "feet"),
  41775. weight: math.unit(110, "lb"),
  41776. name: "Front",
  41777. image: {
  41778. source: "./media/characters/axel-isanov/front.svg",
  41779. extra: 1096/1065,
  41780. bottom: 13/1109
  41781. }
  41782. },
  41783. },
  41784. [
  41785. {
  41786. name: "Normal",
  41787. height: math.unit(5 + 4/12, "feet"),
  41788. default: true
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(9, "feet"),
  41797. weight: math.unit(467, "lb"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/necahual/front.svg",
  41801. extra: 920/873,
  41802. bottom: 26/946
  41803. }
  41804. },
  41805. back: {
  41806. height: math.unit(9, "feet"),
  41807. weight: math.unit(467, "lb"),
  41808. name: "Back",
  41809. image: {
  41810. source: "./media/characters/necahual/back.svg",
  41811. extra: 930/884,
  41812. bottom: 16/946
  41813. }
  41814. },
  41815. frontUnderwear: {
  41816. height: math.unit(9, "feet"),
  41817. weight: math.unit(467, "lb"),
  41818. name: "Front (Underwear)",
  41819. image: {
  41820. source: "./media/characters/necahual/front-underwear.svg",
  41821. extra: 920/873,
  41822. bottom: 26/946
  41823. }
  41824. },
  41825. frontDressed: {
  41826. height: math.unit(9, "feet"),
  41827. weight: math.unit(467, "lb"),
  41828. name: "Front (Dressed)",
  41829. image: {
  41830. source: "./media/characters/necahual/front-dressed.svg",
  41831. extra: 920/873,
  41832. bottom: 26/946
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Comprsesed",
  41839. height: math.unit(9, "feet")
  41840. },
  41841. {
  41842. name: "Natural",
  41843. height: math.unit(15, "feet"),
  41844. default: true
  41845. },
  41846. {
  41847. name: "Boosted",
  41848. height: math.unit(50, "feet")
  41849. },
  41850. {
  41851. name: "Boosted+",
  41852. height: math.unit(150, "feet")
  41853. },
  41854. {
  41855. name: "Max",
  41856. height: math.unit(500, "feet")
  41857. },
  41858. ]
  41859. ))
  41860. characterMakers.push(() => makeCharacter(
  41861. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41862. {
  41863. front: {
  41864. height: math.unit(22 + 1/12, "feet"),
  41865. weight: math.unit(3200, "lb"),
  41866. name: "Front",
  41867. image: {
  41868. source: "./media/characters/theo-acacia/front.svg",
  41869. extra: 1796/1741,
  41870. bottom: 83/1879
  41871. }
  41872. },
  41873. frontUnderwear: {
  41874. height: math.unit(22 + 1/12, "feet"),
  41875. weight: math.unit(3200, "lb"),
  41876. name: "Front (Underwear)",
  41877. image: {
  41878. source: "./media/characters/theo-acacia/front-underwear.svg",
  41879. extra: 1796/1741,
  41880. bottom: 83/1879
  41881. }
  41882. },
  41883. frontNude: {
  41884. height: math.unit(22 + 1/12, "feet"),
  41885. weight: math.unit(3200, "lb"),
  41886. name: "Front (Nude)",
  41887. image: {
  41888. source: "./media/characters/theo-acacia/front-nude.svg",
  41889. extra: 1796/1741,
  41890. bottom: 83/1879
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Normal",
  41897. height: math.unit(22 + 1/12, "feet"),
  41898. default: true
  41899. },
  41900. ]
  41901. ))
  41902. characterMakers.push(() => makeCharacter(
  41903. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41904. {
  41905. front: {
  41906. height: math.unit(20, "feet"),
  41907. name: "Front",
  41908. image: {
  41909. source: "./media/characters/astra/front.svg",
  41910. extra: 1850/1714,
  41911. bottom: 106/1956
  41912. }
  41913. },
  41914. frontUndressed: {
  41915. height: math.unit(20, "feet"),
  41916. name: "Front (Undressed)",
  41917. image: {
  41918. source: "./media/characters/astra/front-undressed.svg",
  41919. extra: 1926/1749,
  41920. bottom: 0/1926
  41921. }
  41922. },
  41923. hand: {
  41924. height: math.unit(1.53, "feet"),
  41925. name: "Hand",
  41926. image: {
  41927. source: "./media/characters/astra/hand.svg"
  41928. }
  41929. },
  41930. paw: {
  41931. height: math.unit(1.53, "feet"),
  41932. name: "Paw",
  41933. image: {
  41934. source: "./media/characters/astra/paw.svg"
  41935. }
  41936. },
  41937. },
  41938. [
  41939. {
  41940. name: "Smallest",
  41941. height: math.unit(20, "feet")
  41942. },
  41943. {
  41944. name: "Normal",
  41945. height: math.unit(1e9, "miles"),
  41946. default: true
  41947. },
  41948. {
  41949. name: "Larger",
  41950. height: math.unit(5, "multiverses")
  41951. },
  41952. {
  41953. name: "Largest",
  41954. height: math.unit(1e9, "multiverses")
  41955. },
  41956. ]
  41957. ))
  41958. characterMakers.push(() => makeCharacter(
  41959. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41960. {
  41961. front: {
  41962. height: math.unit(8, "feet"),
  41963. name: "Front",
  41964. image: {
  41965. source: "./media/characters/breanna/front.svg",
  41966. extra: 1912/1632,
  41967. bottom: 33/1945
  41968. }
  41969. },
  41970. },
  41971. [
  41972. {
  41973. name: "Smallest",
  41974. height: math.unit(8, "feet")
  41975. },
  41976. {
  41977. name: "Normal",
  41978. height: math.unit(1, "mile"),
  41979. default: true
  41980. },
  41981. {
  41982. name: "Maximum",
  41983. height: math.unit(1500000000000, "lightyears")
  41984. },
  41985. ]
  41986. ))
  41987. characterMakers.push(() => makeCharacter(
  41988. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41989. {
  41990. front: {
  41991. height: math.unit(5 + 11/12, "feet"),
  41992. weight: math.unit(155, "lb"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/cai/front.svg",
  41996. extra: 1823/1702,
  41997. bottom: 32/1855
  41998. }
  41999. },
  42000. back: {
  42001. height: math.unit(5 + 11/12, "feet"),
  42002. weight: math.unit(155, "lb"),
  42003. name: "Back",
  42004. image: {
  42005. source: "./media/characters/cai/back.svg",
  42006. extra: 1809/1708,
  42007. bottom: 31/1840
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(5 + 11/12, "feet"),
  42015. default: true
  42016. },
  42017. {
  42018. name: "Big",
  42019. height: math.unit(15, "feet")
  42020. },
  42021. {
  42022. name: "Macro",
  42023. height: math.unit(200, "feet")
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42029. {
  42030. front: {
  42031. height: math.unit(5 + 6/12, "feet"),
  42032. weight: math.unit(160, "lb"),
  42033. name: "Front",
  42034. image: {
  42035. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42036. extra: 1227/1174,
  42037. bottom: 37/1264
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Macro",
  42044. height: math.unit(444, "meters"),
  42045. default: true
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(18 + 7/12, "feet"),
  42054. name: "Front",
  42055. image: {
  42056. source: "./media/characters/rex/front.svg",
  42057. extra: 1941/1807,
  42058. bottom: 66/2007
  42059. }
  42060. },
  42061. back: {
  42062. height: math.unit(18 + 7/12, "feet"),
  42063. name: "Back",
  42064. image: {
  42065. source: "./media/characters/rex/back.svg",
  42066. extra: 1937/1822,
  42067. bottom: 42/1979
  42068. }
  42069. },
  42070. boot: {
  42071. height: math.unit(3.45, "feet"),
  42072. name: "Boot",
  42073. image: {
  42074. source: "./media/characters/rex/boot.svg"
  42075. }
  42076. },
  42077. paw: {
  42078. height: math.unit(4.17, "feet"),
  42079. name: "Paw",
  42080. image: {
  42081. source: "./media/characters/rex/paw.svg"
  42082. }
  42083. },
  42084. head: {
  42085. height: math.unit(6.728, "feet"),
  42086. name: "Head",
  42087. image: {
  42088. source: "./media/characters/rex/head.svg"
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Nano",
  42095. height: math.unit(18 + 7/12, "feet")
  42096. },
  42097. {
  42098. name: "Micro",
  42099. height: math.unit(1.5, "megameters")
  42100. },
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(440, "megameters"),
  42104. default: true
  42105. },
  42106. {
  42107. name: "Macro",
  42108. height: math.unit(2.5, "gigameters")
  42109. },
  42110. {
  42111. name: "Gigamacro",
  42112. height: math.unit(2, "galaxies")
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42118. {
  42119. side: {
  42120. height: math.unit(32, "feet"),
  42121. weight: math.unit(250000, "lb"),
  42122. name: "Side",
  42123. image: {
  42124. source: "./media/characters/silverwing/side.svg",
  42125. extra: 1100/1019,
  42126. bottom: 204/1304
  42127. }
  42128. },
  42129. },
  42130. [
  42131. {
  42132. name: "Normal",
  42133. height: math.unit(32, "feet"),
  42134. default: true
  42135. },
  42136. ]
  42137. ))
  42138. characterMakers.push(() => makeCharacter(
  42139. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42140. {
  42141. front: {
  42142. height: math.unit(6 + 6/12, "feet"),
  42143. weight: math.unit(350, "lb"),
  42144. name: "Front",
  42145. image: {
  42146. source: "./media/characters/tristan-hawthorne/front.svg",
  42147. extra: 1159/1124,
  42148. bottom: 37/1196
  42149. },
  42150. form: "labrador",
  42151. default: true
  42152. },
  42153. skunkFront: {
  42154. height: math.unit(4 + 6/12, "feet"),
  42155. weight: math.unit(120, "lb"),
  42156. name: "Front",
  42157. image: {
  42158. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42159. extra: 1609/1551,
  42160. bottom: 169/1778
  42161. },
  42162. form: "skunk",
  42163. default: true
  42164. },
  42165. },
  42166. [
  42167. {
  42168. name: "Normal",
  42169. height: math.unit(6 + 6/12, "feet"),
  42170. form: "labrador",
  42171. default: true
  42172. },
  42173. {
  42174. name: "Normal",
  42175. height: math.unit(4 + 6/12, "feet"),
  42176. form: "skunk",
  42177. default: true
  42178. },
  42179. ],
  42180. {
  42181. "labrador": {
  42182. name: "Labrador",
  42183. default: true
  42184. },
  42185. "skunk": {
  42186. name: "Skunk"
  42187. }
  42188. }
  42189. ))
  42190. characterMakers.push(() => makeCharacter(
  42191. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42192. {
  42193. front: {
  42194. height: math.unit(5 + 11/12, "feet"),
  42195. weight: math.unit(190, "lb"),
  42196. name: "Front",
  42197. image: {
  42198. source: "./media/characters/mizu/front.svg",
  42199. extra: 1988/1788,
  42200. bottom: 14/2002
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Normal",
  42207. height: math.unit(5 + 11/12, "feet"),
  42208. default: true
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(1.7, "feet"),
  42217. weight: math.unit(50, "lb"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/dechroma/front.svg",
  42221. extra: 1095/859,
  42222. bottom: 64/1159
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(1.7, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42236. {
  42237. side: {
  42238. height: math.unit(30, "feet"),
  42239. name: "Side",
  42240. image: {
  42241. source: "./media/characters/veluren-thanazel/side.svg",
  42242. extra: 1611/633,
  42243. bottom: 118/1729
  42244. }
  42245. },
  42246. front: {
  42247. height: math.unit(30, "feet"),
  42248. name: "Front",
  42249. image: {
  42250. source: "./media/characters/veluren-thanazel/front.svg",
  42251. extra: 1486/636,
  42252. bottom: 238/1724
  42253. }
  42254. },
  42255. head: {
  42256. height: math.unit(21.4, "feet"),
  42257. name: "Head",
  42258. image: {
  42259. source: "./media/characters/veluren-thanazel/head.svg"
  42260. }
  42261. },
  42262. genitals: {
  42263. height: math.unit(19.4, "feet"),
  42264. name: "Genitals",
  42265. image: {
  42266. source: "./media/characters/veluren-thanazel/genitals.svg"
  42267. }
  42268. },
  42269. },
  42270. [
  42271. {
  42272. name: "Social",
  42273. height: math.unit(6, "feet")
  42274. },
  42275. {
  42276. name: "Play",
  42277. height: math.unit(12, "feet")
  42278. },
  42279. {
  42280. name: "True",
  42281. height: math.unit(30, "feet"),
  42282. default: true
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42288. {
  42289. front: {
  42290. height: math.unit(7 + 6/12, "feet"),
  42291. weight: math.unit(500, "kg"),
  42292. name: "Front",
  42293. image: {
  42294. source: "./media/characters/arcturas/front.svg",
  42295. extra: 1700/1500,
  42296. bottom: 145/1845
  42297. }
  42298. },
  42299. },
  42300. [
  42301. {
  42302. name: "Normal",
  42303. height: math.unit(7 + 6/12, "feet"),
  42304. default: true
  42305. },
  42306. ]
  42307. ))
  42308. characterMakers.push(() => makeCharacter(
  42309. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42310. {
  42311. side: {
  42312. height: math.unit(6, "feet"),
  42313. weight: math.unit(2, "tons"),
  42314. name: "Side",
  42315. image: {
  42316. source: "./media/characters/vitaen/side.svg",
  42317. extra: 1157/617,
  42318. bottom: 122/1279
  42319. }
  42320. },
  42321. },
  42322. [
  42323. {
  42324. name: "Normal",
  42325. height: math.unit(6, "feet"),
  42326. default: true
  42327. },
  42328. ]
  42329. ))
  42330. characterMakers.push(() => makeCharacter(
  42331. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42332. {
  42333. front: {
  42334. height: math.unit(19, "feet"),
  42335. name: "Front",
  42336. image: {
  42337. source: "./media/characters/fia-dreamweaver/front.svg",
  42338. extra: 1630/1504,
  42339. bottom: 25/1655
  42340. }
  42341. },
  42342. },
  42343. [
  42344. {
  42345. name: "Normal",
  42346. height: math.unit(19, "feet"),
  42347. default: true
  42348. },
  42349. ]
  42350. ))
  42351. characterMakers.push(() => makeCharacter(
  42352. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42353. {
  42354. front: {
  42355. height: math.unit(5 + 4/12, "feet"),
  42356. name: "Front",
  42357. image: {
  42358. source: "./media/characters/artan/front.svg",
  42359. extra: 1618/1535,
  42360. bottom: 46/1664
  42361. }
  42362. },
  42363. back: {
  42364. height: math.unit(5 + 4/12, "feet"),
  42365. name: "Back",
  42366. image: {
  42367. source: "./media/characters/artan/back.svg",
  42368. extra: 1618/1543,
  42369. bottom: 31/1649
  42370. }
  42371. },
  42372. },
  42373. [
  42374. {
  42375. name: "Normal",
  42376. height: math.unit(5 + 4/12, "feet"),
  42377. default: true
  42378. },
  42379. ]
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42383. {
  42384. side: {
  42385. height: math.unit(182, "cm"),
  42386. weight: math.unit(1000, "lb"),
  42387. name: "Side",
  42388. image: {
  42389. source: "./media/characters/silver-dragon/side.svg",
  42390. extra: 710/287,
  42391. bottom: 88/798
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(182, "cm"),
  42399. default: true
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42405. {
  42406. side: {
  42407. height: math.unit(6 + 6/12, "feet"),
  42408. weight: math.unit(1.5, "tons"),
  42409. name: "Side",
  42410. image: {
  42411. source: "./media/characters/zephyr/side.svg",
  42412. extra: 1433/586,
  42413. bottom: 109/1542
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(6 + 6/12, "feet"),
  42421. default: true
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42427. {
  42428. side: {
  42429. height: math.unit(1, "feet"),
  42430. name: "Side",
  42431. image: {
  42432. source: "./media/characters/vixye/side.svg",
  42433. extra: 632/541,
  42434. bottom: 0/632
  42435. }
  42436. },
  42437. },
  42438. [
  42439. {
  42440. name: "Normal",
  42441. height: math.unit(1, "feet"),
  42442. default: true
  42443. },
  42444. {
  42445. name: "True",
  42446. height: math.unit(1e15, "multiverses")
  42447. },
  42448. ]
  42449. ))
  42450. characterMakers.push(() => makeCharacter(
  42451. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42452. {
  42453. front: {
  42454. height: math.unit(8 + 2/12, "feet"),
  42455. weight: math.unit(650, "lb"),
  42456. name: "Front",
  42457. image: {
  42458. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42459. extra: 1174/1137,
  42460. bottom: 82/1256
  42461. }
  42462. },
  42463. back: {
  42464. height: math.unit(8 + 2/12, "feet"),
  42465. weight: math.unit(650, "lb"),
  42466. name: "Back",
  42467. image: {
  42468. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42469. extra: 1204/1157,
  42470. bottom: 46/1250
  42471. }
  42472. },
  42473. },
  42474. [
  42475. {
  42476. name: "Wildform",
  42477. height: math.unit(8 + 2/12, "feet"),
  42478. default: true
  42479. },
  42480. ]
  42481. ))
  42482. characterMakers.push(() => makeCharacter(
  42483. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42484. {
  42485. front: {
  42486. height: math.unit(18, "feet"),
  42487. name: "Front",
  42488. image: {
  42489. source: "./media/characters/cyphin/front.svg",
  42490. extra: 970/886,
  42491. bottom: 42/1012
  42492. }
  42493. },
  42494. back: {
  42495. height: math.unit(18, "feet"),
  42496. name: "Back",
  42497. image: {
  42498. source: "./media/characters/cyphin/back.svg",
  42499. extra: 1009/894,
  42500. bottom: 24/1033
  42501. }
  42502. },
  42503. head: {
  42504. height: math.unit(5.05, "feet"),
  42505. name: "Head",
  42506. image: {
  42507. source: "./media/characters/cyphin/head.svg"
  42508. }
  42509. },
  42510. tailbud: {
  42511. height: math.unit(5, "feet"),
  42512. name: "Tailbud",
  42513. image: {
  42514. source: "./media/characters/cyphin/tailbud.svg"
  42515. }
  42516. },
  42517. },
  42518. [
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42523. {
  42524. side: {
  42525. height: math.unit(10, "feet"),
  42526. weight: math.unit(6, "tons"),
  42527. name: "Side",
  42528. image: {
  42529. source: "./media/characters/raijin/side.svg",
  42530. extra: 1529/613,
  42531. bottom: 337/1866
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Normal",
  42538. height: math.unit(10, "feet"),
  42539. default: true
  42540. },
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42545. {
  42546. side: {
  42547. height: math.unit(9, "feet"),
  42548. name: "Side",
  42549. image: {
  42550. source: "./media/characters/nilghais/side.svg",
  42551. extra: 1047/744,
  42552. bottom: 91/1138
  42553. }
  42554. },
  42555. head: {
  42556. height: math.unit(3.14, "feet"),
  42557. name: "Head",
  42558. image: {
  42559. source: "./media/characters/nilghais/head.svg"
  42560. }
  42561. },
  42562. mouth: {
  42563. height: math.unit(4.6, "feet"),
  42564. name: "Mouth",
  42565. image: {
  42566. source: "./media/characters/nilghais/mouth.svg"
  42567. }
  42568. },
  42569. wings: {
  42570. height: math.unit(24, "feet"),
  42571. name: "Wings",
  42572. image: {
  42573. source: "./media/characters/nilghais/wings.svg"
  42574. }
  42575. },
  42576. ass: {
  42577. height: math.unit(6.12, "feet"),
  42578. name: "Ass",
  42579. image: {
  42580. source: "./media/characters/nilghais/ass.svg"
  42581. }
  42582. },
  42583. },
  42584. [
  42585. {
  42586. name: "Normal",
  42587. height: math.unit(9, "feet"),
  42588. default: true
  42589. },
  42590. ]
  42591. ))
  42592. characterMakers.push(() => makeCharacter(
  42593. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42594. {
  42595. regular: {
  42596. height: math.unit(16 + 2/12, "feet"),
  42597. weight: math.unit(2300, "lb"),
  42598. name: "Regular",
  42599. image: {
  42600. source: "./media/characters/zolgar/regular.svg",
  42601. extra: 1246/1004,
  42602. bottom: 124/1370
  42603. }
  42604. },
  42605. boxers: {
  42606. height: math.unit(16 + 2/12, "feet"),
  42607. weight: math.unit(2300, "lb"),
  42608. name: "Boxers",
  42609. image: {
  42610. source: "./media/characters/zolgar/boxers.svg",
  42611. extra: 1246/1004,
  42612. bottom: 124/1370
  42613. }
  42614. },
  42615. armored: {
  42616. height: math.unit(16 + 2/12, "feet"),
  42617. weight: math.unit(2300, "lb"),
  42618. name: "Armored",
  42619. image: {
  42620. source: "./media/characters/zolgar/armored.svg",
  42621. extra: 1246/1004,
  42622. bottom: 124/1370
  42623. }
  42624. },
  42625. goth: {
  42626. height: math.unit(16 + 2/12, "feet"),
  42627. weight: math.unit(2300, "lb"),
  42628. name: "Goth",
  42629. image: {
  42630. source: "./media/characters/zolgar/goth.svg",
  42631. extra: 1246/1004,
  42632. bottom: 124/1370
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Shrunken Down",
  42639. height: math.unit(9 + 2/12, "feet")
  42640. },
  42641. {
  42642. name: "Normal",
  42643. height: math.unit(16 + 2/12, "feet"),
  42644. default: true
  42645. },
  42646. ]
  42647. ))
  42648. characterMakers.push(() => makeCharacter(
  42649. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42650. {
  42651. front: {
  42652. height: math.unit(6, "feet"),
  42653. weight: math.unit(168, "lb"),
  42654. name: "Front",
  42655. image: {
  42656. source: "./media/characters/luca/front.svg",
  42657. extra: 841/667,
  42658. bottom: 102/943
  42659. }
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Normal",
  42665. height: math.unit(6, "feet"),
  42666. default: true
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42672. {
  42673. side: {
  42674. height: math.unit(7 + 3/12, "feet"),
  42675. weight: math.unit(312, "lb"),
  42676. name: "Side",
  42677. image: {
  42678. source: "./media/characters/zezo/side.svg",
  42679. extra: 1192/1067,
  42680. bottom: 63/1255
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(7 + 3/12, "feet"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(5 + 5/12, "feet"),
  42697. weight: math.unit(170, "lb"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/mayso/front.svg",
  42701. extra: 1215/1108,
  42702. bottom: 16/1231
  42703. }
  42704. },
  42705. },
  42706. [
  42707. {
  42708. name: "Normal",
  42709. height: math.unit(5 + 5/12, "feet"),
  42710. default: true
  42711. },
  42712. ]
  42713. ))
  42714. characterMakers.push(() => makeCharacter(
  42715. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42716. {
  42717. front: {
  42718. height: math.unit(4 + 3/12, "feet"),
  42719. weight: math.unit(80, "lb"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/hess/front.svg",
  42723. extra: 1200/1123,
  42724. bottom: 16/1216
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Normal",
  42731. height: math.unit(4 + 3/12, "feet"),
  42732. default: true
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42738. {
  42739. front: {
  42740. height: math.unit(1.9, "meters"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/ashgar/front.svg",
  42744. extra: 1177/1146,
  42745. bottom: 99/1276
  42746. }
  42747. },
  42748. back: {
  42749. height: math.unit(1.9, "meters"),
  42750. name: "Back",
  42751. image: {
  42752. source: "./media/characters/ashgar/back.svg",
  42753. extra: 1201/1183,
  42754. bottom: 53/1254
  42755. }
  42756. },
  42757. feral: {
  42758. height: math.unit(1.4, "meters"),
  42759. name: "Feral",
  42760. image: {
  42761. source: "./media/characters/ashgar/feral.svg",
  42762. extra: 370/345,
  42763. bottom: 45/415
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(1.9, "meters"),
  42771. default: true
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42777. {
  42778. regular: {
  42779. height: math.unit(6, "feet"),
  42780. weight: math.unit(220, "lb"),
  42781. name: "Regular",
  42782. image: {
  42783. source: "./media/characters/phillip/regular.svg",
  42784. extra: 1373/1277,
  42785. bottom: 75/1448
  42786. }
  42787. },
  42788. dressed: {
  42789. height: math.unit(6, "feet"),
  42790. weight: math.unit(220, "lb"),
  42791. name: "Dressed",
  42792. image: {
  42793. source: "./media/characters/phillip/dressed.svg",
  42794. extra: 1373/1277,
  42795. bottom: 75/1448
  42796. }
  42797. },
  42798. paw: {
  42799. height: math.unit(1.44, "feet"),
  42800. name: "Paw",
  42801. image: {
  42802. source: "./media/characters/phillip/paw.svg"
  42803. }
  42804. },
  42805. },
  42806. [
  42807. {
  42808. name: "Normal",
  42809. height: math.unit(6, "feet"),
  42810. default: true
  42811. },
  42812. ]
  42813. ))
  42814. characterMakers.push(() => makeCharacter(
  42815. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42816. {
  42817. side: {
  42818. height: math.unit(42, "feet"),
  42819. name: "Side",
  42820. image: {
  42821. source: "./media/characters/uvula/side.svg",
  42822. extra: 683/586,
  42823. bottom: 60/743
  42824. }
  42825. },
  42826. front: {
  42827. height: math.unit(42, "feet"),
  42828. name: "Front",
  42829. image: {
  42830. source: "./media/characters/uvula/front.svg",
  42831. extra: 705/613,
  42832. bottom: 54/759
  42833. }
  42834. },
  42835. maw: {
  42836. height: math.unit(23.5, "feet"),
  42837. name: "Maw",
  42838. image: {
  42839. source: "./media/characters/uvula/maw.svg"
  42840. }
  42841. },
  42842. },
  42843. [
  42844. {
  42845. name: "Original Size",
  42846. height: math.unit(14, "inches")
  42847. },
  42848. {
  42849. name: "Human Size",
  42850. height: math.unit(6, "feet")
  42851. },
  42852. {
  42853. name: "Big",
  42854. height: math.unit(42, "feet"),
  42855. default: true
  42856. },
  42857. {
  42858. name: "Bigger",
  42859. height: math.unit(100, "feet")
  42860. },
  42861. ]
  42862. ))
  42863. characterMakers.push(() => makeCharacter(
  42864. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42865. {
  42866. front: {
  42867. height: math.unit(5 + 11/12, "feet"),
  42868. name: "Front",
  42869. image: {
  42870. source: "./media/characters/lannah/front.svg",
  42871. extra: 1208/1113,
  42872. bottom: 97/1305
  42873. }
  42874. },
  42875. },
  42876. [
  42877. {
  42878. name: "Normal",
  42879. height: math.unit(5 + 11/12, "feet"),
  42880. default: true
  42881. },
  42882. ]
  42883. ))
  42884. characterMakers.push(() => makeCharacter(
  42885. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42886. {
  42887. front: {
  42888. height: math.unit(6 + 3/12, "feet"),
  42889. weight: math.unit(3.5, "tons"),
  42890. name: "Front",
  42891. image: {
  42892. source: "./media/characters/emberflame/front.svg",
  42893. extra: 1198/672,
  42894. bottom: 82/1280
  42895. }
  42896. },
  42897. side: {
  42898. height: math.unit(6 + 3/12, "feet"),
  42899. weight: math.unit(3.5, "tons"),
  42900. name: "Side",
  42901. image: {
  42902. source: "./media/characters/emberflame/side.svg",
  42903. extra: 938/527,
  42904. bottom: 56/994
  42905. }
  42906. },
  42907. },
  42908. [
  42909. {
  42910. name: "Normal",
  42911. height: math.unit(6 + 3/12, "feet"),
  42912. default: true
  42913. },
  42914. ]
  42915. ))
  42916. characterMakers.push(() => makeCharacter(
  42917. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42918. {
  42919. side: {
  42920. height: math.unit(17.5, "feet"),
  42921. weight: math.unit(35, "tons"),
  42922. name: "Side",
  42923. image: {
  42924. source: "./media/characters/sophie-ambrose/side.svg",
  42925. extra: 1573/1242,
  42926. bottom: 71/1644
  42927. }
  42928. },
  42929. maw: {
  42930. height: math.unit(7.4, "feet"),
  42931. name: "Maw",
  42932. image: {
  42933. source: "./media/characters/sophie-ambrose/maw.svg"
  42934. }
  42935. },
  42936. },
  42937. [
  42938. {
  42939. name: "Normal",
  42940. height: math.unit(17.5, "feet"),
  42941. default: true
  42942. },
  42943. ]
  42944. ))
  42945. characterMakers.push(() => makeCharacter(
  42946. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42947. {
  42948. front: {
  42949. height: math.unit(280, "feet"),
  42950. weight: math.unit(550, "tons"),
  42951. name: "Front",
  42952. image: {
  42953. source: "./media/characters/king-mugi/front.svg",
  42954. extra: 1102/947,
  42955. bottom: 104/1206
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "King Mugi",
  42962. height: math.unit(280, "feet"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42969. {
  42970. front: {
  42971. height: math.unit(64, "meters"),
  42972. name: "Front",
  42973. image: {
  42974. source: "./media/characters/nova-fox/front.svg",
  42975. extra: 1310/1246,
  42976. bottom: 65/1375
  42977. }
  42978. },
  42979. },
  42980. [
  42981. {
  42982. name: "Macro",
  42983. height: math.unit(64, "meters"),
  42984. default: true
  42985. },
  42986. ]
  42987. ))
  42988. characterMakers.push(() => makeCharacter(
  42989. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42990. {
  42991. front: {
  42992. height: math.unit(6 + 3/12, "feet"),
  42993. weight: math.unit(170, "lb"),
  42994. name: "Front",
  42995. image: {
  42996. source: "./media/characters/sam-bat/front.svg",
  42997. extra: 1601/1411,
  42998. bottom: 125/1726
  42999. }
  43000. },
  43001. back: {
  43002. height: math.unit(6 + 3/12, "feet"),
  43003. weight: math.unit(170, "lb"),
  43004. name: "Back",
  43005. image: {
  43006. source: "./media/characters/sam-bat/back.svg",
  43007. extra: 1577/1405,
  43008. bottom: 58/1635
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(6 + 3/12, "feet"),
  43016. default: true
  43017. },
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43022. {
  43023. front: {
  43024. height: math.unit(59, "feet"),
  43025. weight: math.unit(40000, "lb"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/inari/front.svg",
  43029. extra: 1884/1350,
  43030. bottom: 95/1979
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Gigantamax",
  43037. height: math.unit(59, "feet"),
  43038. default: true
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43044. {
  43045. front: {
  43046. height: math.unit(5 + 8/12, "feet"),
  43047. name: "Front",
  43048. image: {
  43049. source: "./media/characters/elizabeth/front.svg",
  43050. extra: 1395/1298,
  43051. bottom: 54/1449
  43052. }
  43053. },
  43054. mouth: {
  43055. height: math.unit(1.97, "feet"),
  43056. name: "Mouth",
  43057. image: {
  43058. source: "./media/characters/elizabeth/mouth.svg"
  43059. }
  43060. },
  43061. foot: {
  43062. height: math.unit(1.17, "feet"),
  43063. name: "Foot",
  43064. image: {
  43065. source: "./media/characters/elizabeth/foot.svg"
  43066. }
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Normal",
  43072. height: math.unit(5 + 8/12, "feet"),
  43073. default: true
  43074. },
  43075. {
  43076. name: "Minimacro",
  43077. height: math.unit(18, "feet")
  43078. },
  43079. {
  43080. name: "Macro",
  43081. height: math.unit(180, "feet")
  43082. },
  43083. ]
  43084. ))
  43085. characterMakers.push(() => makeCharacter(
  43086. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43087. {
  43088. front: {
  43089. height: math.unit(5 + 2/12, "feet"),
  43090. name: "Front",
  43091. image: {
  43092. source: "./media/characters/october-gossamer/front.svg",
  43093. extra: 505/454,
  43094. bottom: 7/512
  43095. }
  43096. },
  43097. back: {
  43098. height: math.unit(5 + 2/12, "feet"),
  43099. name: "Back",
  43100. image: {
  43101. source: "./media/characters/october-gossamer/back.svg",
  43102. extra: 501/454,
  43103. bottom: 11/512
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(5 + 2/12, "feet"),
  43111. default: true
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43117. {
  43118. front: {
  43119. height: math.unit(5, "feet"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/epiglottis/front.svg",
  43123. extra: 923/849,
  43124. bottom: 17/940
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Original Size",
  43131. height: math.unit(10, "inches")
  43132. },
  43133. {
  43134. name: "Human Size",
  43135. height: math.unit(5, "feet"),
  43136. default: true
  43137. },
  43138. {
  43139. name: "Big",
  43140. height: math.unit(25, "feet")
  43141. },
  43142. {
  43143. name: "Bigger",
  43144. height: math.unit(50, "feet")
  43145. },
  43146. {
  43147. name: "oh lawd",
  43148. height: math.unit(75, "feet")
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43154. {
  43155. front: {
  43156. height: math.unit(2 + 4/12, "feet"),
  43157. weight: math.unit(60, "lb"),
  43158. name: "Front",
  43159. image: {
  43160. source: "./media/characters/lerm/front.svg",
  43161. extra: 796/790,
  43162. bottom: 79/875
  43163. }
  43164. },
  43165. },
  43166. [
  43167. {
  43168. name: "Normal",
  43169. height: math.unit(2 + 4/12, "feet"),
  43170. default: true
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43176. {
  43177. front: {
  43178. height: math.unit(5.5, "feet"),
  43179. weight: math.unit(130, "lb"),
  43180. name: "Front",
  43181. image: {
  43182. source: "./media/characters/xena-nebadon/front.svg",
  43183. extra: 1828/1730,
  43184. bottom: 79/1907
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Tiny Puppy",
  43191. height: math.unit(3, "inches")
  43192. },
  43193. {
  43194. name: "Normal",
  43195. height: math.unit(5.5, "feet"),
  43196. default: true
  43197. },
  43198. {
  43199. name: "Lotta Lady",
  43200. height: math.unit(12, "feet")
  43201. },
  43202. {
  43203. name: "Pretty Big",
  43204. height: math.unit(100, "feet")
  43205. },
  43206. {
  43207. name: "Big",
  43208. height: math.unit(500, "feet")
  43209. },
  43210. {
  43211. name: "Skyscraper Toys",
  43212. height: math.unit(2500, "feet")
  43213. },
  43214. {
  43215. name: "Plane Catcher",
  43216. height: math.unit(8, "miles")
  43217. },
  43218. {
  43219. name: "Planet Toys",
  43220. height: math.unit(15, "earths")
  43221. },
  43222. {
  43223. name: "Stardust",
  43224. height: math.unit(0.25, "galaxies")
  43225. },
  43226. {
  43227. name: "Snacks",
  43228. height: math.unit(70, "universes")
  43229. },
  43230. ]
  43231. ))
  43232. characterMakers.push(() => makeCharacter(
  43233. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43234. {
  43235. front: {
  43236. height: math.unit(1.6, "meters"),
  43237. weight: math.unit(60, "kg"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/bounty/front.svg",
  43241. extra: 1426/1308,
  43242. bottom: 15/1441
  43243. }
  43244. },
  43245. back: {
  43246. height: math.unit(1.6, "meters"),
  43247. weight: math.unit(60, "kg"),
  43248. name: "Back",
  43249. image: {
  43250. source: "./media/characters/bounty/back.svg",
  43251. extra: 1417/1307,
  43252. bottom: 8/1425
  43253. }
  43254. },
  43255. },
  43256. [
  43257. {
  43258. name: "Normal",
  43259. height: math.unit(1.6, "meters"),
  43260. default: true
  43261. },
  43262. {
  43263. name: "Macro",
  43264. height: math.unit(300, "meters")
  43265. },
  43266. ]
  43267. ))
  43268. characterMakers.push(() => makeCharacter(
  43269. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43270. {
  43271. front: {
  43272. height: math.unit(2 + 8/12, "feet"),
  43273. weight: math.unit(15, "lb"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/mochi/front.svg",
  43277. extra: 1022/852,
  43278. bottom: 435/1457
  43279. }
  43280. },
  43281. back: {
  43282. height: math.unit(2 + 8/12, "feet"),
  43283. weight: math.unit(15, "lb"),
  43284. name: "Back",
  43285. image: {
  43286. source: "./media/characters/mochi/back.svg",
  43287. extra: 1335/1119,
  43288. bottom: 39/1374
  43289. }
  43290. },
  43291. bird: {
  43292. height: math.unit(2 + 8/12, "feet"),
  43293. weight: math.unit(15, "lb"),
  43294. name: "Bird",
  43295. image: {
  43296. source: "./media/characters/mochi/bird.svg",
  43297. extra: 1251/1113,
  43298. bottom: 178/1429
  43299. }
  43300. },
  43301. kaiju: {
  43302. height: math.unit(154, "feet"),
  43303. weight: math.unit(1e7, "lb"),
  43304. name: "Kaiju",
  43305. image: {
  43306. source: "./media/characters/mochi/kaiju.svg",
  43307. extra: 460/324,
  43308. bottom: 40/500
  43309. }
  43310. },
  43311. head: {
  43312. height: math.unit(1.21, "feet"),
  43313. name: "Head",
  43314. image: {
  43315. source: "./media/characters/mochi/head.svg"
  43316. }
  43317. },
  43318. alternateTail: {
  43319. height: math.unit(2 + 8/12, "feet"),
  43320. weight: math.unit(45, "lb"),
  43321. name: "Alternate Tail",
  43322. image: {
  43323. source: "./media/characters/mochi/alternate-tail.svg",
  43324. extra: 139/76,
  43325. bottom: 45/184
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Micro",
  43332. height: math.unit(2, "inches")
  43333. },
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(2 + 8/12, "feet"),
  43337. default: true
  43338. },
  43339. {
  43340. name: "Macro",
  43341. height: math.unit(106, "feet")
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(5.67, "feet"),
  43350. weight: math.unit(135, "lb"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/sarel/front.svg",
  43354. extra: 865/788,
  43355. bottom: 97/962
  43356. }
  43357. },
  43358. back: {
  43359. height: math.unit(5.67, "feet"),
  43360. weight: math.unit(135, "lb"),
  43361. name: "Back",
  43362. image: {
  43363. source: "./media/characters/sarel/back.svg",
  43364. extra: 857/777,
  43365. bottom: 32/889
  43366. }
  43367. },
  43368. chozoan: {
  43369. height: math.unit(5.67, "feet"),
  43370. weight: math.unit(135, "lb"),
  43371. name: "Chozoan",
  43372. image: {
  43373. source: "./media/characters/sarel/chozoan.svg",
  43374. extra: 865/788,
  43375. bottom: 97/962
  43376. }
  43377. },
  43378. current: {
  43379. height: math.unit(5.67, "feet"),
  43380. weight: math.unit(135, "lb"),
  43381. name: "Current",
  43382. image: {
  43383. source: "./media/characters/sarel/current.svg",
  43384. extra: 865/788,
  43385. bottom: 97/962
  43386. }
  43387. },
  43388. head: {
  43389. height: math.unit(1.77, "feet"),
  43390. name: "Head",
  43391. image: {
  43392. source: "./media/characters/sarel/head.svg"
  43393. }
  43394. },
  43395. claws: {
  43396. height: math.unit(1.8, "feet"),
  43397. name: "Claws",
  43398. image: {
  43399. source: "./media/characters/sarel/claws.svg"
  43400. }
  43401. },
  43402. clawsAlt: {
  43403. height: math.unit(1.8, "feet"),
  43404. name: "Claws-alt",
  43405. image: {
  43406. source: "./media/characters/sarel/claws-alt.svg"
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(5.67, "feet"),
  43414. default: true
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43420. {
  43421. front: {
  43422. height: math.unit(5500, "feet"),
  43423. name: "Front",
  43424. image: {
  43425. source: "./media/characters/alyonia/front.svg",
  43426. extra: 1200/1135,
  43427. bottom: 29/1229
  43428. }
  43429. },
  43430. back: {
  43431. height: math.unit(5500, "feet"),
  43432. name: "Back",
  43433. image: {
  43434. source: "./media/characters/alyonia/back.svg",
  43435. extra: 1205/1138,
  43436. bottom: 10/1215
  43437. }
  43438. },
  43439. },
  43440. [
  43441. {
  43442. name: "Small",
  43443. height: math.unit(10, "feet")
  43444. },
  43445. {
  43446. name: "Macro",
  43447. height: math.unit(500, "feet")
  43448. },
  43449. {
  43450. name: "Mega Macro",
  43451. height: math.unit(5500, "feet"),
  43452. default: true
  43453. },
  43454. {
  43455. name: "Mega Macro+",
  43456. height: math.unit(500000, "feet")
  43457. },
  43458. {
  43459. name: "Giga Macro",
  43460. height: math.unit(3000, "miles")
  43461. },
  43462. {
  43463. name: "Tera Macro",
  43464. height: math.unit(2.8e6, "miles")
  43465. },
  43466. {
  43467. name: "Galactic",
  43468. height: math.unit(120000, "lightyears")
  43469. },
  43470. ]
  43471. ))
  43472. characterMakers.push(() => makeCharacter(
  43473. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43474. {
  43475. werewolf: {
  43476. height: math.unit(8, "feet"),
  43477. weight: math.unit(425, "lb"),
  43478. name: "Werewolf",
  43479. image: {
  43480. source: "./media/characters/autumn/werewolf.svg",
  43481. extra: 2154/2031,
  43482. bottom: 160/2314
  43483. }
  43484. },
  43485. human: {
  43486. height: math.unit(5 + 8/12, "feet"),
  43487. weight: math.unit(150, "lb"),
  43488. name: "Human",
  43489. image: {
  43490. source: "./media/characters/autumn/human.svg",
  43491. extra: 1200/1149,
  43492. bottom: 30/1230
  43493. }
  43494. },
  43495. },
  43496. [
  43497. {
  43498. name: "Normal",
  43499. height: math.unit(8, "feet"),
  43500. default: true
  43501. },
  43502. ]
  43503. ))
  43504. characterMakers.push(() => makeCharacter(
  43505. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43506. {
  43507. front: {
  43508. height: math.unit(8 + 5/12, "feet"),
  43509. weight: math.unit(825, "lb"),
  43510. name: "Front",
  43511. image: {
  43512. source: "./media/characters/cobalt-charizard/front.svg",
  43513. extra: 1268/1155,
  43514. bottom: 122/1390
  43515. }
  43516. },
  43517. side: {
  43518. height: math.unit(8 + 5/12, "feet"),
  43519. weight: math.unit(825, "lb"),
  43520. name: "Side",
  43521. image: {
  43522. source: "./media/characters/cobalt-charizard/side.svg",
  43523. extra: 1348/1257,
  43524. bottom: 58/1406
  43525. }
  43526. },
  43527. gMax: {
  43528. height: math.unit(134 + 11/12, "feet"),
  43529. name: "G-Max",
  43530. image: {
  43531. source: "./media/characters/cobalt-charizard/g-max.svg",
  43532. extra: 1835/1541,
  43533. bottom: 151/1986
  43534. }
  43535. },
  43536. },
  43537. [
  43538. {
  43539. name: "Normal",
  43540. height: math.unit(8 + 5/12, "feet"),
  43541. default: true
  43542. },
  43543. ]
  43544. ))
  43545. characterMakers.push(() => makeCharacter(
  43546. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43547. {
  43548. front: {
  43549. height: math.unit(6 + 3/12, "feet"),
  43550. weight: math.unit(210, "lb"),
  43551. name: "Front",
  43552. image: {
  43553. source: "./media/characters/stella/front.svg",
  43554. extra: 3549/3335,
  43555. bottom: 51/3600
  43556. }
  43557. },
  43558. },
  43559. [
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(6 + 3/12, "feet"),
  43563. default: true
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(5, "feet"),
  43572. weight: math.unit(90, "lb"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/riley-bishop/front.svg",
  43576. extra: 1450/1428,
  43577. bottom: 152/1602
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(5, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43591. {
  43592. side: {
  43593. height: math.unit(8 + 2/12, "feet"),
  43594. weight: math.unit(500, "kg"),
  43595. name: "Side",
  43596. image: {
  43597. source: "./media/characters/theo-arcanine/side.svg",
  43598. extra: 1342/1074,
  43599. bottom: 111/1453
  43600. }
  43601. },
  43602. },
  43603. [
  43604. {
  43605. name: "Normal",
  43606. height: math.unit(8 + 2/12, "feet"),
  43607. default: true
  43608. },
  43609. ]
  43610. ))
  43611. characterMakers.push(() => makeCharacter(
  43612. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43613. {
  43614. front: {
  43615. height: math.unit(4, "feet"),
  43616. name: "Front",
  43617. image: {
  43618. source: "./media/characters/kali/front.svg",
  43619. extra: 1921/1357,
  43620. bottom: 70/1991
  43621. }
  43622. },
  43623. },
  43624. [
  43625. {
  43626. name: "Normal",
  43627. height: math.unit(4, "feet"),
  43628. default: true
  43629. },
  43630. {
  43631. name: "Macro",
  43632. height: math.unit(32, "meters")
  43633. },
  43634. {
  43635. name: "Macro+",
  43636. height: math.unit(150, "meters")
  43637. },
  43638. {
  43639. name: "Megamacro",
  43640. height: math.unit(7500, "meters")
  43641. },
  43642. {
  43643. name: "Megamacro+",
  43644. height: math.unit(80, "kilometers")
  43645. },
  43646. ]
  43647. ))
  43648. characterMakers.push(() => makeCharacter(
  43649. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43650. {
  43651. side: {
  43652. height: math.unit(5 + 11/12, "feet"),
  43653. weight: math.unit(236, "lb"),
  43654. name: "Side",
  43655. image: {
  43656. source: "./media/characters/gapp/side.svg",
  43657. extra: 775/340,
  43658. bottom: 58/833
  43659. }
  43660. },
  43661. mouth: {
  43662. height: math.unit(2.98, "feet"),
  43663. name: "Mouth",
  43664. image: {
  43665. source: "./media/characters/gapp/mouth.svg"
  43666. }
  43667. },
  43668. },
  43669. [
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(5 + 1/12, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(6, "feet"),
  43682. name: "Front",
  43683. image: {
  43684. source: "./media/characters/persephone/front.svg",
  43685. extra: 1895/1717,
  43686. bottom: 96/1991
  43687. }
  43688. },
  43689. back: {
  43690. height: math.unit(6, "feet"),
  43691. name: "Back",
  43692. image: {
  43693. source: "./media/characters/persephone/back.svg",
  43694. extra: 1868/1679,
  43695. bottom: 26/1894
  43696. }
  43697. },
  43698. casual: {
  43699. height: math.unit(6, "feet"),
  43700. name: "Casual",
  43701. image: {
  43702. source: "./media/characters/persephone/casual.svg",
  43703. extra: 1713/1541,
  43704. bottom: 76/1789
  43705. }
  43706. },
  43707. },
  43708. [
  43709. {
  43710. name: "Human Size",
  43711. height: math.unit(6, "feet")
  43712. },
  43713. {
  43714. name: "Big Steppy",
  43715. height: math.unit(600, "meters"),
  43716. default: true
  43717. },
  43718. {
  43719. name: "Galaxy Brain",
  43720. height: math.unit(1, "zettameter")
  43721. },
  43722. ]
  43723. ))
  43724. characterMakers.push(() => makeCharacter(
  43725. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43726. {
  43727. front: {
  43728. height: math.unit(1.85, "meters"),
  43729. name: "Front",
  43730. image: {
  43731. source: "./media/characters/riley-foxthing/front.svg",
  43732. extra: 1495/1354,
  43733. bottom: 122/1617
  43734. }
  43735. },
  43736. frontAlt: {
  43737. height: math.unit(1.85, "meters"),
  43738. name: "Front (Alt)",
  43739. image: {
  43740. source: "./media/characters/riley-foxthing/front-alt.svg",
  43741. extra: 1572/1389,
  43742. bottom: 116/1688
  43743. }
  43744. },
  43745. },
  43746. [
  43747. {
  43748. name: "Normal Sized",
  43749. height: math.unit(1.85, "meters"),
  43750. default: true
  43751. },
  43752. {
  43753. name: "Quite Sizable",
  43754. height: math.unit(5, "meters")
  43755. },
  43756. {
  43757. name: "Rather Large",
  43758. height: math.unit(20, "meters")
  43759. },
  43760. {
  43761. name: "Macro",
  43762. height: math.unit(450, "meters")
  43763. },
  43764. {
  43765. name: "Giga",
  43766. height: math.unit(5, "km")
  43767. },
  43768. ]
  43769. ))
  43770. characterMakers.push(() => makeCharacter(
  43771. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43772. {
  43773. front: {
  43774. height: math.unit(6, "feet"),
  43775. weight: math.unit(200, "lb"),
  43776. name: "Front",
  43777. image: {
  43778. source: "./media/characters/blizzard/front.svg",
  43779. extra: 1136/990,
  43780. bottom: 136/1272
  43781. }
  43782. },
  43783. back: {
  43784. height: math.unit(6, "feet"),
  43785. weight: math.unit(200, "lb"),
  43786. name: "Back",
  43787. image: {
  43788. source: "./media/characters/blizzard/back.svg",
  43789. extra: 1175/1034,
  43790. bottom: 97/1272
  43791. }
  43792. },
  43793. sitting: {
  43794. height: math.unit(3.725, "feet"),
  43795. weight: math.unit(200, "lb"),
  43796. name: "Sitting",
  43797. image: {
  43798. source: "./media/characters/blizzard/sitting.svg",
  43799. extra: 581/485,
  43800. bottom: 90/671
  43801. }
  43802. },
  43803. frontWizard: {
  43804. height: math.unit(7.9, "feet"),
  43805. weight: math.unit(200, "lb"),
  43806. name: "Front (Wizard)",
  43807. image: {
  43808. source: "./media/characters/blizzard/front-wizard.svg"
  43809. }
  43810. },
  43811. backWizard: {
  43812. height: math.unit(7.9, "feet"),
  43813. weight: math.unit(200, "lb"),
  43814. name: "Back (Wizard)",
  43815. image: {
  43816. source: "./media/characters/blizzard/back-wizard.svg"
  43817. }
  43818. },
  43819. frontNsfw: {
  43820. height: math.unit(6, "feet"),
  43821. weight: math.unit(200, "lb"),
  43822. name: "Front (NSFW)",
  43823. image: {
  43824. source: "./media/characters/blizzard/front-nsfw.svg",
  43825. extra: 1136/990,
  43826. bottom: 136/1272
  43827. }
  43828. },
  43829. backNsfw: {
  43830. height: math.unit(6, "feet"),
  43831. weight: math.unit(200, "lb"),
  43832. name: "Back (NSFW)",
  43833. image: {
  43834. source: "./media/characters/blizzard/back-nsfw.svg",
  43835. extra: 1175/1034,
  43836. bottom: 97/1272
  43837. }
  43838. },
  43839. sittingNsfw: {
  43840. height: math.unit(3.725, "feet"),
  43841. weight: math.unit(200, "lb"),
  43842. name: "Sitting (NSFW)",
  43843. image: {
  43844. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43845. extra: 581/485,
  43846. bottom: 90/671
  43847. }
  43848. },
  43849. wizardFrontNsfw: {
  43850. height: math.unit(7.9, "feet"),
  43851. weight: math.unit(200, "lb"),
  43852. name: "Wizard (Front, NSFW)",
  43853. image: {
  43854. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Normal",
  43861. height: math.unit(6, "feet"),
  43862. default: true
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43868. {
  43869. front: {
  43870. height: math.unit(5 + 2/12, "feet"),
  43871. name: "Front",
  43872. image: {
  43873. source: "./media/characters/lumi/front.svg",
  43874. extra: 1328/1268,
  43875. bottom: 103/1431
  43876. }
  43877. },
  43878. back: {
  43879. height: math.unit(5 + 2/12, "feet"),
  43880. name: "Back",
  43881. image: {
  43882. source: "./media/characters/lumi/back.svg",
  43883. extra: 1381/1327,
  43884. bottom: 43/1424
  43885. }
  43886. },
  43887. },
  43888. [
  43889. {
  43890. name: "Normal",
  43891. height: math.unit(5 + 2/12, "feet"),
  43892. default: true
  43893. },
  43894. ]
  43895. ))
  43896. characterMakers.push(() => makeCharacter(
  43897. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43898. {
  43899. front: {
  43900. height: math.unit(5 + 9/12, "feet"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/aliya-cotton/front.svg",
  43904. extra: 577/564,
  43905. bottom: 29/606
  43906. }
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Normal",
  43912. height: math.unit(5 + 9/12, "feet"),
  43913. default: true
  43914. },
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43919. {
  43920. front: {
  43921. height: math.unit(2.7, "meters"),
  43922. weight: math.unit(25000, "lb"),
  43923. name: "Front",
  43924. image: {
  43925. source: "./media/characters/noah-luxray/front.svg",
  43926. extra: 1644/825,
  43927. bottom: 339/1983
  43928. }
  43929. },
  43930. side: {
  43931. height: math.unit(2.97, "meters"),
  43932. weight: math.unit(25000, "lb"),
  43933. name: "Side",
  43934. image: {
  43935. source: "./media/characters/noah-luxray/side.svg",
  43936. extra: 1319/650,
  43937. bottom: 163/1482
  43938. }
  43939. },
  43940. dick: {
  43941. height: math.unit(7.4, "feet"),
  43942. weight: math.unit(2500, "lb"),
  43943. name: "Dick",
  43944. image: {
  43945. source: "./media/characters/noah-luxray/dick.svg"
  43946. }
  43947. },
  43948. dickAlt: {
  43949. height: math.unit(10.83, "feet"),
  43950. weight: math.unit(2500, "lb"),
  43951. name: "Dick-alt",
  43952. image: {
  43953. source: "./media/characters/noah-luxray/dick-alt.svg"
  43954. }
  43955. },
  43956. },
  43957. [
  43958. {
  43959. name: "BIG",
  43960. height: math.unit(2.7, "meters"),
  43961. default: true
  43962. },
  43963. ]
  43964. ))
  43965. characterMakers.push(() => makeCharacter(
  43966. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43967. {
  43968. standing: {
  43969. height: math.unit(183, "cm"),
  43970. weight: math.unit(68, "kg"),
  43971. name: "Standing",
  43972. image: {
  43973. source: "./media/characters/arion/standing.svg",
  43974. extra: 1869/1807,
  43975. bottom: 93/1962
  43976. }
  43977. },
  43978. reclining: {
  43979. height: math.unit(70.5, "cm"),
  43980. weight: math.unit(68, "lb"),
  43981. name: "Reclining",
  43982. image: {
  43983. source: "./media/characters/arion/reclining.svg",
  43984. extra: 937/870,
  43985. bottom: 63/1000
  43986. }
  43987. },
  43988. },
  43989. [
  43990. {
  43991. name: "Colossus Size, Low",
  43992. height: math.unit(33, "meters"),
  43993. default: true
  43994. },
  43995. {
  43996. name: "Colossus Size, Mid",
  43997. height: math.unit(52, "meters")
  43998. },
  43999. {
  44000. name: "Colossus Size, High",
  44001. height: math.unit(60, "meters")
  44002. },
  44003. {
  44004. name: "Titan Size, Low",
  44005. height: math.unit(91, "meters"),
  44006. },
  44007. {
  44008. name: "Titan Size, Mid",
  44009. height: math.unit(122, "meters")
  44010. },
  44011. {
  44012. name: "Titan Size, High",
  44013. height: math.unit(162, "meters")
  44014. },
  44015. ]
  44016. ))
  44017. characterMakers.push(() => makeCharacter(
  44018. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44019. {
  44020. front: {
  44021. height: math.unit(53, "meters"),
  44022. name: "Front",
  44023. image: {
  44024. source: "./media/characters/stellar-marbey/front.svg",
  44025. extra: 1913/1805,
  44026. bottom: 92/2005
  44027. }
  44028. },
  44029. back: {
  44030. height: math.unit(53, "meters"),
  44031. name: "Back",
  44032. image: {
  44033. source: "./media/characters/stellar-marbey/back.svg",
  44034. extra: 1960/1851,
  44035. bottom: 28/1988
  44036. }
  44037. },
  44038. mouth: {
  44039. height: math.unit(3.5, "meters"),
  44040. name: "Mouth",
  44041. image: {
  44042. source: "./media/characters/stellar-marbey/mouth.svg"
  44043. }
  44044. },
  44045. },
  44046. [
  44047. {
  44048. name: "Macro",
  44049. height: math.unit(53, "meters"),
  44050. default: true
  44051. },
  44052. ]
  44053. ))
  44054. characterMakers.push(() => makeCharacter(
  44055. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44056. {
  44057. front: {
  44058. height: math.unit(8 + 1/12, "feet"),
  44059. weight: math.unit(233, "lb"),
  44060. name: "Front",
  44061. image: {
  44062. source: "./media/characters/matsu/front.svg",
  44063. extra: 832/772,
  44064. bottom: 40/872
  44065. }
  44066. },
  44067. back: {
  44068. height: math.unit(8 + 1/12, "feet"),
  44069. weight: math.unit(233, "lb"),
  44070. name: "Back",
  44071. image: {
  44072. source: "./media/characters/matsu/back.svg",
  44073. extra: 839/780,
  44074. bottom: 47/886
  44075. }
  44076. },
  44077. },
  44078. [
  44079. {
  44080. name: "Normal",
  44081. height: math.unit(8 + 1/12, "feet"),
  44082. default: true
  44083. },
  44084. ]
  44085. ))
  44086. characterMakers.push(() => makeCharacter(
  44087. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44088. {
  44089. front: {
  44090. height: math.unit(4, "feet"),
  44091. weight: math.unit(148, "lb"),
  44092. name: "Front",
  44093. image: {
  44094. source: "./media/characters/thiz/front.svg",
  44095. extra: 1913/1748,
  44096. bottom: 62/1975
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(4, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(7 + 6/12, "feet"),
  44113. weight: math.unit(267, "lb"),
  44114. name: "Front",
  44115. image: {
  44116. source: "./media/characters/marcel/front.svg",
  44117. extra: 1221/1096,
  44118. bottom: 76/1297
  44119. }
  44120. },
  44121. },
  44122. [
  44123. {
  44124. name: "Normal",
  44125. height: math.unit(7 + 6/12, "feet"),
  44126. default: true
  44127. },
  44128. ]
  44129. ))
  44130. characterMakers.push(() => makeCharacter(
  44131. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44132. {
  44133. side: {
  44134. height: math.unit(42, "meters"),
  44135. name: "Side",
  44136. image: {
  44137. source: "./media/characters/flake/side.svg",
  44138. extra: 1525/1306,
  44139. bottom: 209/1734
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Normal",
  44146. height: math.unit(42, "meters"),
  44147. default: true
  44148. },
  44149. ]
  44150. ))
  44151. characterMakers.push(() => makeCharacter(
  44152. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44153. {
  44154. dressed: {
  44155. height: math.unit(6 + 4/12, "feet"),
  44156. weight: math.unit(520, "lb"),
  44157. name: "Dressed",
  44158. image: {
  44159. source: "./media/characters/someonne/dressed.svg",
  44160. extra: 1020/1010,
  44161. bottom: 178/1198
  44162. }
  44163. },
  44164. undressed: {
  44165. height: math.unit(6 + 4/12, "feet"),
  44166. weight: math.unit(520, "lb"),
  44167. name: "Undressed",
  44168. image: {
  44169. source: "./media/characters/someonne/undressed.svg",
  44170. extra: 1019/1014,
  44171. bottom: 169/1188
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(6 + 4/12, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(3, "feet"),
  44188. weight: math.unit(30, "lb"),
  44189. name: "Front",
  44190. image: {
  44191. source: "./media/characters/till/front.svg",
  44192. extra: 892/823,
  44193. bottom: 55/947
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(3, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44207. {
  44208. front: {
  44209. height: math.unit(9 + 8/12, "feet"),
  44210. weight: math.unit(800, "lb"),
  44211. name: "Front",
  44212. image: {
  44213. source: "./media/characters/sydney-heki/front.svg",
  44214. extra: 1360/1300,
  44215. bottom: 22/1382
  44216. }
  44217. },
  44218. back: {
  44219. height: math.unit(9 + 8/12, "feet"),
  44220. weight: math.unit(800, "lb"),
  44221. name: "Back",
  44222. image: {
  44223. source: "./media/characters/sydney-heki/back.svg",
  44224. extra: 1356/1293,
  44225. bottom: 12/1368
  44226. }
  44227. },
  44228. frontDressed: {
  44229. height: math.unit(9 + 8/12, "feet"),
  44230. weight: math.unit(800, "lb"),
  44231. name: "Front-dressed",
  44232. image: {
  44233. source: "./media/characters/sydney-heki/front-dressed.svg",
  44234. extra: 1360/1300,
  44235. bottom: 22/1382
  44236. }
  44237. },
  44238. },
  44239. [
  44240. {
  44241. name: "Normal",
  44242. height: math.unit(9 + 8/12, "feet"),
  44243. default: true
  44244. },
  44245. {
  44246. name: "Macro",
  44247. height: math.unit(500, "feet")
  44248. },
  44249. {
  44250. name: "Megamacro",
  44251. height: math.unit(3.6, "miles")
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44257. {
  44258. front: {
  44259. height: math.unit(200, "cm"),
  44260. weight: math.unit(250, "lb"),
  44261. name: "Front",
  44262. image: {
  44263. source: "./media/characters/fowler-karlsson/front.svg",
  44264. extra: 897/845,
  44265. bottom: 123/1020
  44266. }
  44267. },
  44268. back: {
  44269. height: math.unit(200, "cm"),
  44270. weight: math.unit(250, "lb"),
  44271. name: "Back",
  44272. image: {
  44273. source: "./media/characters/fowler-karlsson/back.svg",
  44274. extra: 999/944,
  44275. bottom: 26/1025
  44276. }
  44277. },
  44278. dick: {
  44279. height: math.unit(1.92, "feet"),
  44280. weight: math.unit(150, "lb"),
  44281. name: "Dick",
  44282. image: {
  44283. source: "./media/characters/fowler-karlsson/dick.svg"
  44284. }
  44285. },
  44286. },
  44287. [
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(200, "cm"),
  44291. default: true
  44292. },
  44293. {
  44294. name: "Smaller Macro",
  44295. height: math.unit(90, "m")
  44296. },
  44297. {
  44298. name: "Macro",
  44299. height: math.unit(150, "m")
  44300. },
  44301. {
  44302. name: "Bigger Macro",
  44303. height: math.unit(300, "m")
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44309. {
  44310. side: {
  44311. height: math.unit(8 + 2/12, "feet"),
  44312. weight: math.unit(1, "tonne"),
  44313. name: "Side",
  44314. image: {
  44315. source: "./media/characters/rylide/side.svg",
  44316. extra: 1318/1034,
  44317. bottom: 106/1424
  44318. }
  44319. },
  44320. sitting: {
  44321. height: math.unit(303, "cm"),
  44322. weight: math.unit(1, "tonne"),
  44323. name: "Sitting",
  44324. image: {
  44325. source: "./media/characters/rylide/sitting.svg",
  44326. extra: 1303/1103,
  44327. bottom: 36/1339
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Normal",
  44334. height: math.unit(8 + 2/12, "feet"),
  44335. default: true
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(5 + 10/12, "feet"),
  44344. weight: math.unit(160, "lb"),
  44345. name: "Front",
  44346. image: {
  44347. source: "./media/characters/pudask/front.svg",
  44348. extra: 1616/1590,
  44349. bottom: 161/1777
  44350. }
  44351. },
  44352. },
  44353. [
  44354. {
  44355. name: "Ferret Height",
  44356. height: math.unit(2 + 5/12, "feet")
  44357. },
  44358. {
  44359. name: "Canon Height",
  44360. height: math.unit(5 + 10/12, "feet"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44367. {
  44368. front: {
  44369. height: math.unit(3 + 6/12, "feet"),
  44370. weight: math.unit(60, "lb"),
  44371. name: "Front",
  44372. image: {
  44373. source: "./media/characters/ramita/front.svg",
  44374. extra: 1402/1232,
  44375. bottom: 62/1464
  44376. }
  44377. },
  44378. dressed: {
  44379. height: math.unit(3 + 6/12, "feet"),
  44380. weight: math.unit(60, "lb"),
  44381. name: "Dressed",
  44382. image: {
  44383. source: "./media/characters/ramita/dressed.svg",
  44384. extra: 1534/1249,
  44385. bottom: 50/1584
  44386. }
  44387. },
  44388. },
  44389. [
  44390. {
  44391. name: "Normal",
  44392. height: math.unit(3 + 6/12, "feet"),
  44393. default: true
  44394. },
  44395. ]
  44396. ))
  44397. characterMakers.push(() => makeCharacter(
  44398. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44399. {
  44400. front: {
  44401. height: math.unit(8, "feet"),
  44402. name: "Front",
  44403. image: {
  44404. source: "./media/characters/ark/front.svg",
  44405. extra: 772/693,
  44406. bottom: 45/817
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Normal",
  44413. height: math.unit(8, "feet"),
  44414. default: true
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44420. {
  44421. front: {
  44422. height: math.unit(6, "feet"),
  44423. weight: math.unit(250, "lb"),
  44424. volume: math.unit(5/8, "gallons"),
  44425. name: "Front",
  44426. image: {
  44427. source: "./media/characters/ludwig-horn/front.svg",
  44428. extra: 1782/1635,
  44429. bottom: 96/1878
  44430. }
  44431. },
  44432. back: {
  44433. height: math.unit(6, "feet"),
  44434. weight: math.unit(250, "lb"),
  44435. volume: math.unit(5/8, "gallons"),
  44436. name: "Back",
  44437. image: {
  44438. source: "./media/characters/ludwig-horn/back.svg",
  44439. extra: 1874/1729,
  44440. bottom: 27/1901
  44441. }
  44442. },
  44443. dick: {
  44444. height: math.unit(1.05, "feet"),
  44445. weight: math.unit(15, "lb"),
  44446. volume: math.unit(5/8, "gallons"),
  44447. name: "Dick",
  44448. image: {
  44449. source: "./media/characters/ludwig-horn/dick.svg"
  44450. }
  44451. },
  44452. },
  44453. [
  44454. {
  44455. name: "Small",
  44456. height: math.unit(6, "feet")
  44457. },
  44458. {
  44459. name: "Typical",
  44460. height: math.unit(12, "feet"),
  44461. default: true
  44462. },
  44463. {
  44464. name: "Building",
  44465. height: math.unit(80, "feet")
  44466. },
  44467. {
  44468. name: "Town",
  44469. height: math.unit(800, "feet")
  44470. },
  44471. {
  44472. name: "Kingdom",
  44473. height: math.unit(80000, "feet")
  44474. },
  44475. {
  44476. name: "Planet",
  44477. height: math.unit(8000000, "feet")
  44478. },
  44479. {
  44480. name: "Universe",
  44481. height: math.unit(8000000000, "feet")
  44482. },
  44483. {
  44484. name: "Transcended",
  44485. height: math.unit(8e27, "feet")
  44486. },
  44487. ]
  44488. ))
  44489. characterMakers.push(() => makeCharacter(
  44490. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44491. {
  44492. front: {
  44493. height: math.unit(5, "feet"),
  44494. weight: math.unit(50, "kg"),
  44495. name: "Front",
  44496. image: {
  44497. source: "./media/characters/biot-avery/front.svg",
  44498. extra: 1295/1232,
  44499. bottom: 86/1381
  44500. }
  44501. },
  44502. },
  44503. [
  44504. {
  44505. name: "Normal",
  44506. height: math.unit(5, "feet"),
  44507. default: true
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(6, "feet"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/kitsune-kiro/front.svg",
  44519. extra: 1270/1158,
  44520. bottom: 42/1312
  44521. }
  44522. },
  44523. frontAlt: {
  44524. height: math.unit(6, "feet"),
  44525. name: "Front-alt",
  44526. image: {
  44527. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44528. extra: 1130/1081,
  44529. bottom: 36/1166
  44530. }
  44531. },
  44532. },
  44533. [
  44534. {
  44535. name: "Smol",
  44536. height: math.unit(3, "feet")
  44537. },
  44538. {
  44539. name: "Normal",
  44540. height: math.unit(6, "feet"),
  44541. default: true
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44547. {
  44548. front: {
  44549. height: math.unit(6, "feet"),
  44550. weight: math.unit(125, "lb"),
  44551. name: "Front",
  44552. image: {
  44553. source: "./media/characters/jack-thatcher/front.svg",
  44554. extra: 1474/1370,
  44555. bottom: 26/1500
  44556. }
  44557. },
  44558. back: {
  44559. height: math.unit(6, "feet"),
  44560. weight: math.unit(125, "lb"),
  44561. name: "Back",
  44562. image: {
  44563. source: "./media/characters/jack-thatcher/back.svg",
  44564. extra: 1489/1384,
  44565. bottom: 18/1507
  44566. }
  44567. },
  44568. },
  44569. [
  44570. {
  44571. name: "Normal",
  44572. height: math.unit(6, "feet"),
  44573. default: true
  44574. },
  44575. {
  44576. name: "Macro",
  44577. height: math.unit(75, "feet")
  44578. },
  44579. {
  44580. name: "Macro-er",
  44581. height: math.unit(250, "feet")
  44582. },
  44583. ]
  44584. ))
  44585. characterMakers.push(() => makeCharacter(
  44586. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44587. {
  44588. front: {
  44589. height: math.unit(7, "feet"),
  44590. weight: math.unit(110, "kg"),
  44591. name: "Front",
  44592. image: {
  44593. source: "./media/characters/max-hyper/front.svg",
  44594. extra: 1969/1881,
  44595. bottom: 49/2018
  44596. }
  44597. },
  44598. },
  44599. [
  44600. {
  44601. name: "Normal",
  44602. height: math.unit(7, "feet"),
  44603. default: true
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(5 + 5/12, "feet"),
  44612. weight: math.unit(160, "lb"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/spook/front.svg",
  44616. extra: 794/791,
  44617. bottom: 54/848
  44618. }
  44619. },
  44620. back: {
  44621. height: math.unit(5 + 5/12, "feet"),
  44622. weight: math.unit(160, "lb"),
  44623. name: "Back",
  44624. image: {
  44625. source: "./media/characters/spook/back.svg",
  44626. extra: 812/798,
  44627. bottom: 32/844
  44628. }
  44629. },
  44630. },
  44631. [
  44632. {
  44633. name: "Normal",
  44634. height: math.unit(5 + 5/12, "feet"),
  44635. default: true
  44636. },
  44637. ]
  44638. ))
  44639. characterMakers.push(() => makeCharacter(
  44640. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44641. {
  44642. front: {
  44643. height: math.unit(18, "feet"),
  44644. name: "Front",
  44645. image: {
  44646. source: "./media/characters/xeaduulix/front.svg",
  44647. extra: 1380/1166,
  44648. bottom: 110/1490
  44649. }
  44650. },
  44651. back: {
  44652. height: math.unit(18, "feet"),
  44653. name: "Back",
  44654. image: {
  44655. source: "./media/characters/xeaduulix/back.svg",
  44656. extra: 1592/1170,
  44657. bottom: 128/1720
  44658. }
  44659. },
  44660. frontNsfw: {
  44661. height: math.unit(18, "feet"),
  44662. name: "Front (NSFW)",
  44663. image: {
  44664. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44665. extra: 1380/1166,
  44666. bottom: 110/1490
  44667. }
  44668. },
  44669. backNsfw: {
  44670. height: math.unit(18, "feet"),
  44671. name: "Back (NSFW)",
  44672. image: {
  44673. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44674. extra: 1592/1170,
  44675. bottom: 128/1720
  44676. }
  44677. },
  44678. },
  44679. [
  44680. {
  44681. name: "Normal",
  44682. height: math.unit(18, "feet"),
  44683. default: true
  44684. },
  44685. ]
  44686. ))
  44687. characterMakers.push(() => makeCharacter(
  44688. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44689. {
  44690. spreadWings: {
  44691. height: math.unit(20, "feet"),
  44692. name: "Spread Wings",
  44693. image: {
  44694. source: "./media/characters/fledge/spread-wings.svg",
  44695. extra: 693/635,
  44696. bottom: 26/719
  44697. }
  44698. },
  44699. front: {
  44700. height: math.unit(20, "feet"),
  44701. name: "Front",
  44702. image: {
  44703. source: "./media/characters/fledge/front.svg",
  44704. extra: 684/637,
  44705. bottom: 18/702
  44706. }
  44707. },
  44708. frontAlt: {
  44709. height: math.unit(20, "feet"),
  44710. name: "Front (Alt)",
  44711. image: {
  44712. source: "./media/characters/fledge/front-alt.svg",
  44713. extra: 708/664,
  44714. bottom: 13/721
  44715. }
  44716. },
  44717. back: {
  44718. height: math.unit(20, "feet"),
  44719. name: "Back",
  44720. image: {
  44721. source: "./media/characters/fledge/back.svg",
  44722. extra: 718/634,
  44723. bottom: 22/740
  44724. }
  44725. },
  44726. head: {
  44727. height: math.unit(5.55, "feet"),
  44728. name: "Head",
  44729. image: {
  44730. source: "./media/characters/fledge/head.svg"
  44731. }
  44732. },
  44733. headAlt: {
  44734. height: math.unit(5.1, "feet"),
  44735. name: "Head (Alt)",
  44736. image: {
  44737. source: "./media/characters/fledge/head-alt.svg"
  44738. }
  44739. },
  44740. },
  44741. [
  44742. {
  44743. name: "Small",
  44744. height: math.unit(6 + 2/12, "feet")
  44745. },
  44746. {
  44747. name: "Big",
  44748. height: math.unit(20, "feet"),
  44749. default: true
  44750. },
  44751. {
  44752. name: "Giant",
  44753. height: math.unit(100, "feet")
  44754. },
  44755. {
  44756. name: "Macro",
  44757. height: math.unit(200, "feet")
  44758. },
  44759. ]
  44760. ))
  44761. characterMakers.push(() => makeCharacter(
  44762. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44763. {
  44764. front: {
  44765. height: math.unit(1, "meter"),
  44766. name: "Front",
  44767. image: {
  44768. source: "./media/characters/atlas-morenai/front.svg",
  44769. extra: 1275/1043,
  44770. bottom: 19/1294
  44771. }
  44772. },
  44773. back: {
  44774. height: math.unit(1, "meter"),
  44775. name: "Back",
  44776. image: {
  44777. source: "./media/characters/atlas-morenai/back.svg",
  44778. extra: 1141/1001,
  44779. bottom: 25/1166
  44780. }
  44781. },
  44782. },
  44783. [
  44784. {
  44785. name: "Normal",
  44786. height: math.unit(1, "meter"),
  44787. default: true
  44788. },
  44789. {
  44790. name: "Magic-Infused",
  44791. height: math.unit(5, "meters")
  44792. },
  44793. ]
  44794. ))
  44795. characterMakers.push(() => makeCharacter(
  44796. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44797. {
  44798. front: {
  44799. height: math.unit(5, "meters"),
  44800. name: "Front",
  44801. image: {
  44802. source: "./media/characters/cintia/front.svg",
  44803. extra: 1312/1228,
  44804. bottom: 38/1350
  44805. }
  44806. },
  44807. back: {
  44808. height: math.unit(5, "meters"),
  44809. name: "Back",
  44810. image: {
  44811. source: "./media/characters/cintia/back.svg",
  44812. extra: 1260/1166,
  44813. bottom: 98/1358
  44814. }
  44815. },
  44816. frontDick: {
  44817. height: math.unit(5, "meters"),
  44818. name: "Front (Dick)",
  44819. image: {
  44820. source: "./media/characters/cintia/front-dick.svg",
  44821. extra: 1312/1228,
  44822. bottom: 38/1350
  44823. }
  44824. },
  44825. backDick: {
  44826. height: math.unit(5, "meters"),
  44827. name: "Back (Dick)",
  44828. image: {
  44829. source: "./media/characters/cintia/back-dick.svg",
  44830. extra: 1260/1166,
  44831. bottom: 98/1358
  44832. }
  44833. },
  44834. bust: {
  44835. height: math.unit(1.97, "meters"),
  44836. name: "Bust",
  44837. image: {
  44838. source: "./media/characters/cintia/bust.svg",
  44839. extra: 617/565,
  44840. bottom: 0/617
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Normal",
  44847. height: math.unit(5, "meters"),
  44848. default: true
  44849. },
  44850. ]
  44851. ))
  44852. characterMakers.push(() => makeCharacter(
  44853. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44854. {
  44855. side: {
  44856. height: math.unit(100, "feet"),
  44857. name: "Side",
  44858. image: {
  44859. source: "./media/characters/denora/side.svg",
  44860. extra: 875/803,
  44861. bottom: 9/884
  44862. }
  44863. },
  44864. },
  44865. [
  44866. {
  44867. name: "Standard",
  44868. height: math.unit(100, "feet"),
  44869. default: true
  44870. },
  44871. {
  44872. name: "Grand",
  44873. height: math.unit(1000, "feet")
  44874. },
  44875. {
  44876. name: "Conquering",
  44877. height: math.unit(10000, "feet")
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44883. {
  44884. dressed: {
  44885. height: math.unit(8 + 5/12, "feet"),
  44886. weight: math.unit(700, "lb"),
  44887. name: "Dressed",
  44888. image: {
  44889. source: "./media/characters/kiva/dressed.svg",
  44890. extra: 1102/1055,
  44891. bottom: 60/1162
  44892. }
  44893. },
  44894. nude: {
  44895. height: math.unit(8 + 5/12, "feet"),
  44896. weight: math.unit(700, "lb"),
  44897. name: "Nude",
  44898. image: {
  44899. source: "./media/characters/kiva/nude.svg",
  44900. extra: 1102/1055,
  44901. bottom: 60/1162
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Base Height",
  44908. height: math.unit(8 + 5/12, "feet"),
  44909. default: true
  44910. },
  44911. {
  44912. name: "Macro",
  44913. height: math.unit(100, "feet")
  44914. },
  44915. {
  44916. name: "Max",
  44917. height: math.unit(3280, "feet")
  44918. },
  44919. ]
  44920. ))
  44921. characterMakers.push(() => makeCharacter(
  44922. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44923. {
  44924. front: {
  44925. height: math.unit(6 + 8/12, "feet"),
  44926. weight: math.unit(250, "lb"),
  44927. name: "Front",
  44928. image: {
  44929. source: "./media/characters/ztragon/front.svg",
  44930. extra: 1825/1684,
  44931. bottom: 98/1923
  44932. }
  44933. },
  44934. },
  44935. [
  44936. {
  44937. name: "Normal",
  44938. height: math.unit(6 + 8/12, "feet"),
  44939. default: true
  44940. },
  44941. {
  44942. name: "Macro",
  44943. height: math.unit(80, "feet")
  44944. },
  44945. ]
  44946. ))
  44947. characterMakers.push(() => makeCharacter(
  44948. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44949. {
  44950. front: {
  44951. height: math.unit(10.4, "feet"),
  44952. weight: math.unit(2, "tons"),
  44953. name: "Front",
  44954. image: {
  44955. source: "./media/characters/yesenia/front.svg",
  44956. extra: 1479/1474,
  44957. bottom: 233/1712
  44958. }
  44959. },
  44960. },
  44961. [
  44962. {
  44963. name: "Normal",
  44964. height: math.unit(10.4, "feet"),
  44965. default: true
  44966. },
  44967. ]
  44968. ))
  44969. characterMakers.push(() => makeCharacter(
  44970. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44971. {
  44972. normal: {
  44973. height: math.unit(6 + 1/12, "feet"),
  44974. weight: math.unit(180, "lb"),
  44975. name: "Normal",
  44976. image: {
  44977. source: "./media/characters/leanne-lycheborne/normal.svg",
  44978. extra: 1748/1660,
  44979. bottom: 98/1846
  44980. }
  44981. },
  44982. were: {
  44983. height: math.unit(12, "feet"),
  44984. weight: math.unit(1600, "lb"),
  44985. name: "Were",
  44986. image: {
  44987. source: "./media/characters/leanne-lycheborne/were.svg",
  44988. extra: 1485/1432,
  44989. bottom: 66/1551
  44990. }
  44991. },
  44992. },
  44993. [
  44994. {
  44995. name: "Normal",
  44996. height: math.unit(6 + 1/12, "feet"),
  44997. default: true
  44998. },
  44999. ]
  45000. ))
  45001. characterMakers.push(() => makeCharacter(
  45002. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45003. {
  45004. side: {
  45005. height: math.unit(13, "feet"),
  45006. name: "Side",
  45007. image: {
  45008. source: "./media/characters/kira-tyler/side.svg",
  45009. extra: 693/393,
  45010. bottom: 58/751
  45011. }
  45012. },
  45013. },
  45014. [
  45015. {
  45016. name: "Normal",
  45017. height: math.unit(13, "feet"),
  45018. default: true
  45019. },
  45020. ]
  45021. ))
  45022. characterMakers.push(() => makeCharacter(
  45023. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45024. {
  45025. front: {
  45026. height: math.unit(10.3, "feet"),
  45027. weight: math.unit(150, "lb"),
  45028. name: "Front",
  45029. image: {
  45030. source: "./media/characters/blaze/front.svg",
  45031. extra: 1378/1286,
  45032. bottom: 172/1550
  45033. }
  45034. },
  45035. },
  45036. [
  45037. {
  45038. name: "Normal",
  45039. height: math.unit(10.3, "feet"),
  45040. default: true
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45046. {
  45047. side: {
  45048. height: math.unit(2, "meters"),
  45049. weight: math.unit(400, "kg"),
  45050. name: "Side",
  45051. image: {
  45052. source: "./media/characters/anu/side.svg",
  45053. extra: 506/394,
  45054. bottom: 18/524
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Humanoid",
  45061. height: math.unit(2, "meters")
  45062. },
  45063. {
  45064. name: "Normal",
  45065. height: math.unit(5, "meters"),
  45066. default: true
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45072. {
  45073. front: {
  45074. height: math.unit(5 + 5/12, "feet"),
  45075. weight: math.unit(170, "lb"),
  45076. name: "Front",
  45077. image: {
  45078. source: "./media/characters/synx-the-lynx/front.svg",
  45079. extra: 1893/1745,
  45080. bottom: 17/1910
  45081. }
  45082. },
  45083. side: {
  45084. height: math.unit(5 + 5/12, "feet"),
  45085. weight: math.unit(170, "lb"),
  45086. name: "Side",
  45087. image: {
  45088. source: "./media/characters/synx-the-lynx/side.svg",
  45089. extra: 1884/1740,
  45090. bottom: 39/1923
  45091. }
  45092. },
  45093. back: {
  45094. height: math.unit(5 + 5/12, "feet"),
  45095. weight: math.unit(170, "lb"),
  45096. name: "Back",
  45097. image: {
  45098. source: "./media/characters/synx-the-lynx/back.svg",
  45099. extra: 1903/1755,
  45100. bottom: 14/1917
  45101. }
  45102. },
  45103. },
  45104. [
  45105. {
  45106. name: "Normal",
  45107. height: math.unit(5 + 5/12, "feet"),
  45108. default: true
  45109. },
  45110. ]
  45111. ))
  45112. characterMakers.push(() => makeCharacter(
  45113. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45114. {
  45115. back: {
  45116. height: math.unit(15, "feet"),
  45117. name: "Back",
  45118. image: {
  45119. source: "./media/characters/nadezda-fex/back.svg",
  45120. extra: 1695/1481,
  45121. bottom: 25/1720
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal",
  45128. height: math.unit(15, "feet"),
  45129. default: true
  45130. },
  45131. {
  45132. name: "Macro",
  45133. height: math.unit(2.5, "miles")
  45134. },
  45135. {
  45136. name: "Goddess",
  45137. height: math.unit(2, "multiverses")
  45138. },
  45139. ]
  45140. ))
  45141. characterMakers.push(() => makeCharacter(
  45142. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45143. {
  45144. front: {
  45145. height: math.unit(216, "cm"),
  45146. name: "Front",
  45147. image: {
  45148. source: "./media/characters/lev/front.svg",
  45149. extra: 1728/1670,
  45150. bottom: 82/1810
  45151. }
  45152. },
  45153. back: {
  45154. height: math.unit(216, "cm"),
  45155. name: "Back",
  45156. image: {
  45157. source: "./media/characters/lev/back.svg",
  45158. extra: 1738/1675,
  45159. bottom: 24/1762
  45160. }
  45161. },
  45162. dressed: {
  45163. height: math.unit(216, "cm"),
  45164. name: "Dressed",
  45165. image: {
  45166. source: "./media/characters/lev/dressed.svg",
  45167. extra: 1397/1351,
  45168. bottom: 73/1470
  45169. }
  45170. },
  45171. head: {
  45172. height: math.unit(0.51, "meter"),
  45173. name: "Head",
  45174. image: {
  45175. source: "./media/characters/lev/head.svg"
  45176. }
  45177. },
  45178. },
  45179. [
  45180. {
  45181. name: "Normal",
  45182. height: math.unit(216, "cm"),
  45183. default: true
  45184. },
  45185. {
  45186. name: "Relatively Macro",
  45187. height: math.unit(80, "meters")
  45188. },
  45189. {
  45190. name: "Megamacro",
  45191. height: math.unit(21600, "meters")
  45192. },
  45193. {
  45194. name: "Megamacro+",
  45195. height: math.unit(64800, "meters")
  45196. },
  45197. ]
  45198. ))
  45199. characterMakers.push(() => makeCharacter(
  45200. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45201. {
  45202. front: {
  45203. height: math.unit(2, "meters"),
  45204. weight: math.unit(80, "kg"),
  45205. name: "Front",
  45206. image: {
  45207. source: "./media/characters/moka/front.svg",
  45208. extra: 1337/1255,
  45209. bottom: 58/1395
  45210. }
  45211. },
  45212. },
  45213. [
  45214. {
  45215. name: "Micro",
  45216. height: math.unit(15, "cm")
  45217. },
  45218. {
  45219. name: "Normal",
  45220. height: math.unit(2, "meters"),
  45221. default: true
  45222. },
  45223. {
  45224. name: "Macro",
  45225. height: math.unit(20, "meters"),
  45226. },
  45227. ]
  45228. ))
  45229. characterMakers.push(() => makeCharacter(
  45230. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45231. {
  45232. front: {
  45233. height: math.unit(9, "feet"),
  45234. weight: math.unit(240, "lb"),
  45235. name: "Front",
  45236. image: {
  45237. source: "./media/characters/kuzco/front.svg",
  45238. extra: 1593/1487,
  45239. bottom: 32/1625
  45240. }
  45241. },
  45242. side: {
  45243. height: math.unit(9, "feet"),
  45244. weight: math.unit(240, "lb"),
  45245. name: "Side",
  45246. image: {
  45247. source: "./media/characters/kuzco/side.svg",
  45248. extra: 1575/1485,
  45249. bottom: 30/1605
  45250. }
  45251. },
  45252. back: {
  45253. height: math.unit(9, "feet"),
  45254. weight: math.unit(240, "lb"),
  45255. name: "Back",
  45256. image: {
  45257. source: "./media/characters/kuzco/back.svg",
  45258. extra: 1603/1514,
  45259. bottom: 14/1617
  45260. }
  45261. },
  45262. },
  45263. [
  45264. {
  45265. name: "Normal",
  45266. height: math.unit(9, "feet"),
  45267. default: true
  45268. },
  45269. ]
  45270. ))
  45271. characterMakers.push(() => makeCharacter(
  45272. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45273. {
  45274. side: {
  45275. height: math.unit(2, "meters"),
  45276. weight: math.unit(300, "kg"),
  45277. name: "Side",
  45278. image: {
  45279. source: "./media/characters/ceruleus/side.svg",
  45280. extra: 1068/974,
  45281. bottom: 126/1194
  45282. }
  45283. },
  45284. },
  45285. [
  45286. {
  45287. name: "Normal",
  45288. height: math.unit(16, "meters"),
  45289. default: true
  45290. },
  45291. ]
  45292. ))
  45293. characterMakers.push(() => makeCharacter(
  45294. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45295. {
  45296. front: {
  45297. height: math.unit(9, "feet"),
  45298. weight: math.unit(500, "kg"),
  45299. name: "Front",
  45300. image: {
  45301. source: "./media/characters/acouya/front.svg",
  45302. extra: 1660/1473,
  45303. bottom: 28/1688
  45304. }
  45305. },
  45306. },
  45307. [
  45308. {
  45309. name: "Normal",
  45310. height: math.unit(9, "feet"),
  45311. default: true
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45317. {
  45318. front: {
  45319. height: math.unit(5 + 6/12, "feet"),
  45320. weight: math.unit(195, "lb"),
  45321. name: "Front",
  45322. image: {
  45323. source: "./media/characters/vant/front.svg",
  45324. extra: 1396/1320,
  45325. bottom: 20/1416
  45326. }
  45327. },
  45328. back: {
  45329. height: math.unit(5 + 6/12, "feet"),
  45330. weight: math.unit(195, "lb"),
  45331. name: "Back",
  45332. image: {
  45333. source: "./media/characters/vant/back.svg",
  45334. extra: 1396/1320,
  45335. bottom: 20/1416
  45336. }
  45337. },
  45338. maw: {
  45339. height: math.unit(0.75, "feet"),
  45340. name: "Maw",
  45341. image: {
  45342. source: "./media/characters/vant/maw.svg"
  45343. }
  45344. },
  45345. paw: {
  45346. height: math.unit(1.07, "feet"),
  45347. name: "Paw",
  45348. image: {
  45349. source: "./media/characters/vant/paw.svg"
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "Micro",
  45356. height: math.unit(0.25, "inches")
  45357. },
  45358. {
  45359. name: "Normal",
  45360. height: math.unit(5 + 6/12, "feet"),
  45361. default: true
  45362. },
  45363. {
  45364. name: "Macro",
  45365. height: math.unit(75, "feet")
  45366. },
  45367. ]
  45368. ))
  45369. characterMakers.push(() => makeCharacter(
  45370. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45371. {
  45372. front: {
  45373. height: math.unit(30, "meters"),
  45374. weight: math.unit(363, "tons"),
  45375. name: "Front",
  45376. image: {
  45377. source: "./media/characters/ahra/front.svg",
  45378. extra: 1914/1814,
  45379. bottom: 46/1960
  45380. }
  45381. },
  45382. },
  45383. [
  45384. {
  45385. name: "Macro",
  45386. height: math.unit(30, "meters"),
  45387. default: true
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45393. {
  45394. undressed: {
  45395. height: math.unit(2, "m"),
  45396. weight: math.unit(250, "kg"),
  45397. name: "Undressed",
  45398. image: {
  45399. source: "./media/characters/coriander/undressed.svg",
  45400. extra: 1757/1606,
  45401. bottom: 107/1864
  45402. }
  45403. },
  45404. dressed: {
  45405. height: math.unit(2, "m"),
  45406. weight: math.unit(250, "kg"),
  45407. name: "Dressed",
  45408. image: {
  45409. source: "./media/characters/coriander/dressed.svg",
  45410. extra: 1757/1606,
  45411. bottom: 107/1864
  45412. }
  45413. },
  45414. },
  45415. [
  45416. {
  45417. name: "Normal",
  45418. height: math.unit(4, "meters"),
  45419. default: true
  45420. },
  45421. {
  45422. name: "XL",
  45423. height: math.unit(6, "meters")
  45424. },
  45425. {
  45426. name: "XXL",
  45427. height: math.unit(8, "meters")
  45428. },
  45429. ]
  45430. ))
  45431. characterMakers.push(() => makeCharacter(
  45432. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45433. {
  45434. front: {
  45435. height: math.unit(6, "feet"),
  45436. name: "Front",
  45437. image: {
  45438. source: "./media/characters/syrinx/front.svg",
  45439. extra: 1557/1259,
  45440. bottom: 171/1728
  45441. }
  45442. },
  45443. },
  45444. [
  45445. {
  45446. name: "Normal",
  45447. height: math.unit(6 + 3/12, "feet"),
  45448. default: true
  45449. },
  45450. ]
  45451. ))
  45452. characterMakers.push(() => makeCharacter(
  45453. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45454. {
  45455. front: {
  45456. height: math.unit(11 + 6/12, "feet"),
  45457. weight: math.unit(1.5, "tons"),
  45458. name: "Front",
  45459. image: {
  45460. source: "./media/characters/bor/front.svg",
  45461. extra: 1189/1109,
  45462. bottom: 170/1359
  45463. }
  45464. },
  45465. },
  45466. [
  45467. {
  45468. name: "Normal",
  45469. height: math.unit(11 + 6/12, "feet"),
  45470. default: true
  45471. },
  45472. {
  45473. name: "Macro",
  45474. height: math.unit(32 + 9/12, "feet")
  45475. },
  45476. ]
  45477. ))
  45478. characterMakers.push(() => makeCharacter(
  45479. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45480. {
  45481. anthro: {
  45482. height: math.unit(9, "feet"),
  45483. weight: math.unit(2076, "lb"),
  45484. name: "Anthro",
  45485. image: {
  45486. source: "./media/characters/abacus/anthro.svg",
  45487. extra: 1540/1494,
  45488. bottom: 233/1773
  45489. }
  45490. },
  45491. pigeon: {
  45492. height: math.unit(1, "feet"),
  45493. name: "Pigeon",
  45494. image: {
  45495. source: "./media/characters/abacus/pigeon.svg",
  45496. extra: 528/525,
  45497. bottom: 46/574
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "Normal",
  45504. height: math.unit(9, "feet"),
  45505. default: true
  45506. },
  45507. ]
  45508. ))
  45509. characterMakers.push(() => makeCharacter(
  45510. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45511. {
  45512. side: {
  45513. height: math.unit(6, "feet"),
  45514. name: "Side",
  45515. image: {
  45516. source: "./media/characters/delkhan/side.svg",
  45517. extra: 1884/1786,
  45518. bottom: 308/2192
  45519. }
  45520. },
  45521. head: {
  45522. height: math.unit(3.38, "feet"),
  45523. name: "Head",
  45524. image: {
  45525. source: "./media/characters/delkhan/head.svg"
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "Normal",
  45532. height: math.unit(72, "feet"),
  45533. default: true
  45534. },
  45535. {
  45536. name: "Giant",
  45537. height: math.unit(172, "feet")
  45538. },
  45539. ]
  45540. ))
  45541. characterMakers.push(() => makeCharacter(
  45542. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45543. {
  45544. standing: {
  45545. height: math.unit(6, "feet"),
  45546. name: "Standing",
  45547. image: {
  45548. source: "./media/characters/euchidat/standing.svg",
  45549. extra: 1612/1553,
  45550. bottom: 116/1728
  45551. }
  45552. },
  45553. leaning: {
  45554. height: math.unit(6, "feet"),
  45555. name: "Leaning",
  45556. image: {
  45557. source: "./media/characters/euchidat/leaning.svg",
  45558. extra: 1719/1674,
  45559. bottom: 27/1746
  45560. }
  45561. },
  45562. },
  45563. [
  45564. {
  45565. name: "Normal",
  45566. height: math.unit(175, "feet"),
  45567. default: true
  45568. },
  45569. {
  45570. name: "Megamacro",
  45571. height: math.unit(190, "miles")
  45572. },
  45573. {
  45574. name: "Gigamacro",
  45575. height: math.unit(190000, "miles")
  45576. },
  45577. ]
  45578. ))
  45579. characterMakers.push(() => makeCharacter(
  45580. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45581. {
  45582. front: {
  45583. height: math.unit(6, "feet"),
  45584. weight: math.unit(150, "lb"),
  45585. name: "Front",
  45586. image: {
  45587. source: "./media/characters/rebecca-stack/front.svg",
  45588. extra: 1256/1201,
  45589. bottom: 18/1274
  45590. }
  45591. },
  45592. },
  45593. [
  45594. {
  45595. name: "Normal",
  45596. height: math.unit(5 + 8/12, "feet"),
  45597. default: true
  45598. },
  45599. {
  45600. name: "Demolitionist",
  45601. height: math.unit(200, "feet")
  45602. },
  45603. {
  45604. name: "Out of Control",
  45605. height: math.unit(2, "miles")
  45606. },
  45607. {
  45608. name: "Giga",
  45609. height: math.unit(7200, "miles")
  45610. },
  45611. ]
  45612. ))
  45613. characterMakers.push(() => makeCharacter(
  45614. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45615. {
  45616. front: {
  45617. height: math.unit(6, "feet"),
  45618. weight: math.unit(150, "lb"),
  45619. name: "Front",
  45620. image: {
  45621. source: "./media/characters/jenny-cartwright/front.svg",
  45622. extra: 1384/1376,
  45623. bottom: 58/1442
  45624. }
  45625. },
  45626. },
  45627. [
  45628. {
  45629. name: "Normal",
  45630. height: math.unit(6 + 7/12, "feet"),
  45631. default: true
  45632. },
  45633. {
  45634. name: "Librarian",
  45635. height: math.unit(55, "feet")
  45636. },
  45637. {
  45638. name: "Sightseer",
  45639. height: math.unit(50, "miles")
  45640. },
  45641. {
  45642. name: "Giga",
  45643. height: math.unit(30000, "miles")
  45644. },
  45645. ]
  45646. ))
  45647. characterMakers.push(() => makeCharacter(
  45648. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45649. {
  45650. nude: {
  45651. height: math.unit(8, "feet"),
  45652. weight: math.unit(225, "lb"),
  45653. name: "Nude",
  45654. image: {
  45655. source: "./media/characters/marvy/nude.svg",
  45656. extra: 1900/1683,
  45657. bottom: 89/1989
  45658. }
  45659. },
  45660. dressed: {
  45661. height: math.unit(8, "feet"),
  45662. weight: math.unit(225, "lb"),
  45663. name: "Dressed",
  45664. image: {
  45665. source: "./media/characters/marvy/dressed.svg",
  45666. extra: 1900/1683,
  45667. bottom: 89/1989
  45668. }
  45669. },
  45670. head: {
  45671. height: math.unit(2.85, "feet"),
  45672. name: "Head",
  45673. image: {
  45674. source: "./media/characters/marvy/head.svg"
  45675. }
  45676. },
  45677. },
  45678. [
  45679. {
  45680. name: "Normal",
  45681. height: math.unit(8, "feet"),
  45682. default: true
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45688. {
  45689. front: {
  45690. height: math.unit(8, "feet"),
  45691. weight: math.unit(250, "lb"),
  45692. name: "Front",
  45693. image: {
  45694. source: "./media/characters/leah/front.svg",
  45695. extra: 1257/1149,
  45696. bottom: 109/1366
  45697. }
  45698. },
  45699. },
  45700. [
  45701. {
  45702. name: "Normal",
  45703. height: math.unit(8, "feet"),
  45704. default: true
  45705. },
  45706. {
  45707. name: "Minimacro",
  45708. height: math.unit(40, "feet")
  45709. },
  45710. {
  45711. name: "Macro",
  45712. height: math.unit(124, "feet")
  45713. },
  45714. {
  45715. name: "Megamacro",
  45716. height: math.unit(850, "feet")
  45717. },
  45718. ]
  45719. ))
  45720. characterMakers.push(() => makeCharacter(
  45721. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45722. {
  45723. side: {
  45724. height: math.unit(13 + 6/12, "feet"),
  45725. weight: math.unit(3200, "lb"),
  45726. name: "Side",
  45727. image: {
  45728. source: "./media/characters/alvir/side.svg",
  45729. extra: 896/589,
  45730. bottom: 26/922
  45731. }
  45732. },
  45733. },
  45734. [
  45735. {
  45736. name: "Normal",
  45737. height: math.unit(13 + 6/12, "feet"),
  45738. default: true
  45739. },
  45740. ]
  45741. ))
  45742. characterMakers.push(() => makeCharacter(
  45743. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45744. {
  45745. front: {
  45746. height: math.unit(5 + 4/12, "feet"),
  45747. weight: math.unit(236, "lb"),
  45748. name: "Front",
  45749. image: {
  45750. source: "./media/characters/zaina-khalil/front.svg",
  45751. extra: 1533/1485,
  45752. bottom: 94/1627
  45753. }
  45754. },
  45755. side: {
  45756. height: math.unit(5 + 4/12, "feet"),
  45757. weight: math.unit(236, "lb"),
  45758. name: "Side",
  45759. image: {
  45760. source: "./media/characters/zaina-khalil/side.svg",
  45761. extra: 1537/1498,
  45762. bottom: 66/1603
  45763. }
  45764. },
  45765. back: {
  45766. height: math.unit(5 + 4/12, "feet"),
  45767. weight: math.unit(236, "lb"),
  45768. name: "Back",
  45769. image: {
  45770. source: "./media/characters/zaina-khalil/back.svg",
  45771. extra: 1546/1494,
  45772. bottom: 89/1635
  45773. }
  45774. },
  45775. },
  45776. [
  45777. {
  45778. name: "Normal",
  45779. height: math.unit(5 + 4/12, "feet"),
  45780. default: true
  45781. },
  45782. ]
  45783. ))
  45784. characterMakers.push(() => makeCharacter(
  45785. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45786. {
  45787. side: {
  45788. height: math.unit(12, "feet"),
  45789. weight: math.unit(4000, "lb"),
  45790. name: "Side",
  45791. image: {
  45792. source: "./media/characters/terry/side.svg",
  45793. extra: 1518/1439,
  45794. bottom: 149/1667
  45795. }
  45796. },
  45797. },
  45798. [
  45799. {
  45800. name: "Normal",
  45801. height: math.unit(12, "feet"),
  45802. default: true
  45803. },
  45804. ]
  45805. ))
  45806. characterMakers.push(() => makeCharacter(
  45807. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45808. {
  45809. front: {
  45810. height: math.unit(12, "feet"),
  45811. weight: math.unit(1500, "lb"),
  45812. name: "Front",
  45813. image: {
  45814. source: "./media/characters/kahea/front.svg",
  45815. extra: 1722/1617,
  45816. bottom: 179/1901
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Normal",
  45823. height: math.unit(12, "feet"),
  45824. default: true
  45825. },
  45826. ]
  45827. ))
  45828. characterMakers.push(() => makeCharacter(
  45829. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45830. {
  45831. demonFront: {
  45832. height: math.unit(36, "feet"),
  45833. name: "Front",
  45834. image: {
  45835. source: "./media/characters/alex-xuria/demon-front.svg",
  45836. extra: 1705/1673,
  45837. bottom: 198/1903
  45838. },
  45839. form: "demon",
  45840. default: true
  45841. },
  45842. demonBack: {
  45843. height: math.unit(36, "feet"),
  45844. name: "Back",
  45845. image: {
  45846. source: "./media/characters/alex-xuria/demon-back.svg",
  45847. extra: 1725/1693,
  45848. bottom: 70/1795
  45849. },
  45850. form: "demon"
  45851. },
  45852. demonHead: {
  45853. height: math.unit(2.14, "meters"),
  45854. name: "Head",
  45855. image: {
  45856. source: "./media/characters/alex-xuria/demon-head.svg"
  45857. },
  45858. form: "demon"
  45859. },
  45860. demonHand: {
  45861. height: math.unit(1.61, "meters"),
  45862. name: "Hand",
  45863. image: {
  45864. source: "./media/characters/alex-xuria/demon-hand.svg"
  45865. },
  45866. form: "demon"
  45867. },
  45868. demonPaw: {
  45869. height: math.unit(1.35, "meters"),
  45870. name: "Paw",
  45871. image: {
  45872. source: "./media/characters/alex-xuria/demon-paw.svg"
  45873. },
  45874. form: "demon"
  45875. },
  45876. demonFoot: {
  45877. height: math.unit(2.2, "meters"),
  45878. name: "Foot",
  45879. image: {
  45880. source: "./media/characters/alex-xuria/demon-foot.svg"
  45881. },
  45882. form: "demon"
  45883. },
  45884. demonCock: {
  45885. height: math.unit(1.74, "meters"),
  45886. name: "Cock",
  45887. image: {
  45888. source: "./media/characters/alex-xuria/demon-cock.svg"
  45889. },
  45890. form: "demon"
  45891. },
  45892. demonTailClosed: {
  45893. height: math.unit(1.47, "meters"),
  45894. name: "Tail (Closed)",
  45895. image: {
  45896. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45897. },
  45898. form: "demon"
  45899. },
  45900. demonTailOpen: {
  45901. height: math.unit(2.85, "meters"),
  45902. name: "Tail (Open)",
  45903. image: {
  45904. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45905. },
  45906. form: "demon"
  45907. },
  45908. incubusFront: {
  45909. height: math.unit(12, "feet"),
  45910. name: "Front",
  45911. image: {
  45912. source: "./media/characters/alex-xuria/incubus-front.svg",
  45913. extra: 1754/1677,
  45914. bottom: 125/1879
  45915. },
  45916. form: "incubus",
  45917. default: true
  45918. },
  45919. incubusBack: {
  45920. height: math.unit(12, "feet"),
  45921. name: "Back",
  45922. image: {
  45923. source: "./media/characters/alex-xuria/incubus-back.svg",
  45924. extra: 1702/1647,
  45925. bottom: 30/1732
  45926. },
  45927. form: "incubus"
  45928. },
  45929. incubusHead: {
  45930. height: math.unit(3.45, "feet"),
  45931. name: "Head",
  45932. image: {
  45933. source: "./media/characters/alex-xuria/incubus-head.svg"
  45934. },
  45935. form: "incubus"
  45936. },
  45937. rabbitFront: {
  45938. height: math.unit(6, "feet"),
  45939. name: "Front",
  45940. image: {
  45941. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45942. extra: 1369/1349,
  45943. bottom: 45/1414
  45944. },
  45945. form: "rabbit",
  45946. default: true
  45947. },
  45948. rabbitSide: {
  45949. height: math.unit(6, "feet"),
  45950. name: "Side",
  45951. image: {
  45952. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45953. extra: 1370/1356,
  45954. bottom: 37/1407
  45955. },
  45956. form: "rabbit"
  45957. },
  45958. rabbitBack: {
  45959. height: math.unit(6, "feet"),
  45960. name: "Back",
  45961. image: {
  45962. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45963. extra: 1375/1358,
  45964. bottom: 43/1418
  45965. },
  45966. form: "rabbit"
  45967. },
  45968. },
  45969. [
  45970. {
  45971. name: "Normal",
  45972. height: math.unit(6, "feet"),
  45973. default: true,
  45974. form: "rabbit"
  45975. },
  45976. {
  45977. name: "Incubus",
  45978. height: math.unit(12, "feet"),
  45979. default: true,
  45980. form: "incubus"
  45981. },
  45982. {
  45983. name: "Demon",
  45984. height: math.unit(36, "feet"),
  45985. default: true,
  45986. form: "demon"
  45987. }
  45988. ],
  45989. {
  45990. "demon": {
  45991. name: "Demon",
  45992. default: true
  45993. },
  45994. "incubus": {
  45995. name: "Incubus",
  45996. },
  45997. "rabbit": {
  45998. name: "Rabbit"
  45999. }
  46000. }
  46001. ))
  46002. characterMakers.push(() => makeCharacter(
  46003. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46004. {
  46005. front: {
  46006. height: math.unit(7 + 5/12, "feet"),
  46007. weight: math.unit(510, "lb"),
  46008. name: "Front",
  46009. image: {
  46010. source: "./media/characters/syrup/front.svg",
  46011. extra: 932/916,
  46012. bottom: 26/958
  46013. }
  46014. },
  46015. },
  46016. [
  46017. {
  46018. name: "Normal",
  46019. height: math.unit(7 + 5/12, "feet"),
  46020. default: true
  46021. },
  46022. {
  46023. name: "Big",
  46024. height: math.unit(50, "feet")
  46025. },
  46026. {
  46027. name: "Macro",
  46028. height: math.unit(300, "feet")
  46029. },
  46030. {
  46031. name: "Megamacro",
  46032. height: math.unit(1, "mile")
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46038. {
  46039. front: {
  46040. height: math.unit(6 + 9/12, "feet"),
  46041. name: "Front",
  46042. image: {
  46043. source: "./media/characters/zeimne/front.svg",
  46044. extra: 1969/1806,
  46045. bottom: 53/2022
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(6 + 9/12, "feet"),
  46053. default: true
  46054. },
  46055. {
  46056. name: "Giant",
  46057. height: math.unit(550, "feet")
  46058. },
  46059. {
  46060. name: "Mega",
  46061. height: math.unit(3, "miles")
  46062. },
  46063. {
  46064. name: "Giga",
  46065. height: math.unit(250, "miles")
  46066. },
  46067. {
  46068. name: "Tera",
  46069. height: math.unit(1, "AU")
  46070. },
  46071. ]
  46072. ))
  46073. characterMakers.push(() => makeCharacter(
  46074. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46075. {
  46076. front: {
  46077. height: math.unit(5 + 2/12, "feet"),
  46078. name: "Front",
  46079. image: {
  46080. source: "./media/characters/grar/front.svg",
  46081. extra: 1331/1119,
  46082. bottom: 60/1391
  46083. }
  46084. },
  46085. back: {
  46086. height: math.unit(5 + 2/12, "feet"),
  46087. name: "Back",
  46088. image: {
  46089. source: "./media/characters/grar/back.svg",
  46090. extra: 1385/1169,
  46091. bottom: 23/1408
  46092. }
  46093. },
  46094. },
  46095. [
  46096. {
  46097. name: "Normal",
  46098. height: math.unit(5 + 2/12, "feet"),
  46099. default: true
  46100. },
  46101. ]
  46102. ))
  46103. characterMakers.push(() => makeCharacter(
  46104. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46105. {
  46106. front: {
  46107. height: math.unit(13 + 7/12, "feet"),
  46108. weight: math.unit(2200, "lb"),
  46109. name: "Front",
  46110. image: {
  46111. source: "./media/characters/endraya/front.svg",
  46112. extra: 1289/1215,
  46113. bottom: 50/1339
  46114. }
  46115. },
  46116. nude: {
  46117. height: math.unit(13 + 7/12, "feet"),
  46118. weight: math.unit(2200, "lb"),
  46119. name: "Nude",
  46120. image: {
  46121. source: "./media/characters/endraya/nude.svg",
  46122. extra: 1247/1171,
  46123. bottom: 40/1287
  46124. }
  46125. },
  46126. head: {
  46127. height: math.unit(2.6, "feet"),
  46128. name: "Head",
  46129. image: {
  46130. source: "./media/characters/endraya/head.svg"
  46131. }
  46132. },
  46133. slit: {
  46134. height: math.unit(3.4, "feet"),
  46135. name: "Slit",
  46136. image: {
  46137. source: "./media/characters/endraya/slit.svg"
  46138. }
  46139. },
  46140. },
  46141. [
  46142. {
  46143. name: "Normal",
  46144. height: math.unit(13 + 7/12, "feet"),
  46145. default: true
  46146. },
  46147. {
  46148. name: "Macro",
  46149. height: math.unit(200, "feet")
  46150. },
  46151. ]
  46152. ))
  46153. characterMakers.push(() => makeCharacter(
  46154. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46155. {
  46156. front: {
  46157. height: math.unit(1.81, "meters"),
  46158. weight: math.unit(69, "kg"),
  46159. name: "Front",
  46160. image: {
  46161. source: "./media/characters/rodryana/front.svg",
  46162. extra: 2002/1921,
  46163. bottom: 53/2055
  46164. }
  46165. },
  46166. back: {
  46167. height: math.unit(1.81, "meters"),
  46168. weight: math.unit(69, "kg"),
  46169. name: "Back",
  46170. image: {
  46171. source: "./media/characters/rodryana/back.svg",
  46172. extra: 1993/1926,
  46173. bottom: 48/2041
  46174. }
  46175. },
  46176. maw: {
  46177. height: math.unit(0.19769417475, "meters"),
  46178. name: "Maw",
  46179. image: {
  46180. source: "./media/characters/rodryana/maw.svg"
  46181. }
  46182. },
  46183. slit: {
  46184. height: math.unit(0.31631067961, "meters"),
  46185. name: "Slit",
  46186. image: {
  46187. source: "./media/characters/rodryana/slit.svg"
  46188. }
  46189. },
  46190. },
  46191. [
  46192. {
  46193. name: "Normal",
  46194. height: math.unit(1.81, "meters")
  46195. },
  46196. {
  46197. name: "Mini Macro",
  46198. height: math.unit(181, "meters")
  46199. },
  46200. {
  46201. name: "Macro",
  46202. height: math.unit(452, "meters"),
  46203. default: true
  46204. },
  46205. {
  46206. name: "Mega Macro",
  46207. height: math.unit(1.375, "km")
  46208. },
  46209. {
  46210. name: "Giga Macro",
  46211. height: math.unit(13.575, "km")
  46212. },
  46213. ]
  46214. ))
  46215. characterMakers.push(() => makeCharacter(
  46216. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46217. {
  46218. front: {
  46219. height: math.unit(6, "feet"),
  46220. weight: math.unit(1000, "lb"),
  46221. name: "Front",
  46222. image: {
  46223. source: "./media/characters/asaya/front.svg",
  46224. extra: 1460/1200,
  46225. bottom: 71/1531
  46226. }
  46227. },
  46228. },
  46229. [
  46230. {
  46231. name: "Normal",
  46232. height: math.unit(8, "km"),
  46233. default: true
  46234. },
  46235. ]
  46236. ))
  46237. characterMakers.push(() => makeCharacter(
  46238. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46239. {
  46240. front: {
  46241. height: math.unit(3.5, "meters"),
  46242. name: "Front",
  46243. image: {
  46244. source: "./media/characters/sarzu-and-israz/front.svg",
  46245. extra: 1570/1558,
  46246. bottom: 150/1720
  46247. },
  46248. },
  46249. back: {
  46250. height: math.unit(3.5, "meters"),
  46251. name: "Back",
  46252. image: {
  46253. source: "./media/characters/sarzu-and-israz/back.svg",
  46254. extra: 1523/1509,
  46255. bottom: 132/1655
  46256. },
  46257. },
  46258. frontFemale: {
  46259. height: math.unit(3.5, "meters"),
  46260. name: "Front (Female)",
  46261. image: {
  46262. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46263. extra: 1570/1558,
  46264. bottom: 150/1720
  46265. },
  46266. },
  46267. frontHerm: {
  46268. height: math.unit(3.5, "meters"),
  46269. name: "Front (Herm)",
  46270. image: {
  46271. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46272. extra: 1570/1558,
  46273. bottom: 150/1720
  46274. },
  46275. },
  46276. },
  46277. [
  46278. {
  46279. name: "Normal",
  46280. height: math.unit(3.5, "meters"),
  46281. default: true,
  46282. },
  46283. {
  46284. name: "Macro",
  46285. height: math.unit(65.5, "meters"),
  46286. },
  46287. ],
  46288. ))
  46289. characterMakers.push(() => makeCharacter(
  46290. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46291. {
  46292. front: {
  46293. height: math.unit(6, "feet"),
  46294. weight: math.unit(250, "lb"),
  46295. name: "Front",
  46296. image: {
  46297. source: "./media/characters/zenimma/front.svg",
  46298. extra: 1346/1320,
  46299. bottom: 58/1404
  46300. }
  46301. },
  46302. back: {
  46303. height: math.unit(6, "feet"),
  46304. weight: math.unit(250, "lb"),
  46305. name: "Back",
  46306. image: {
  46307. source: "./media/characters/zenimma/back.svg",
  46308. extra: 1324/1308,
  46309. bottom: 44/1368
  46310. }
  46311. },
  46312. dick: {
  46313. height: math.unit(1.44, "feet"),
  46314. name: "Dick",
  46315. image: {
  46316. source: "./media/characters/zenimma/dick.svg"
  46317. }
  46318. },
  46319. },
  46320. [
  46321. {
  46322. name: "Canon Height",
  46323. height: math.unit(66, "miles"),
  46324. default: true
  46325. },
  46326. ]
  46327. ))
  46328. characterMakers.push(() => makeCharacter(
  46329. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46330. {
  46331. nude: {
  46332. height: math.unit(6, "feet"),
  46333. weight: math.unit(150, "lb"),
  46334. name: "Nude",
  46335. image: {
  46336. source: "./media/characters/shavon/nude.svg",
  46337. extra: 1242/1096,
  46338. bottom: 98/1340
  46339. }
  46340. },
  46341. dressed: {
  46342. height: math.unit(6, "feet"),
  46343. weight: math.unit(150, "lb"),
  46344. name: "Dressed",
  46345. image: {
  46346. source: "./media/characters/shavon/dressed.svg",
  46347. extra: 1242/1096,
  46348. bottom: 98/1340
  46349. }
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Macro",
  46355. height: math.unit(255, "feet"),
  46356. default: true
  46357. },
  46358. ]
  46359. ))
  46360. characterMakers.push(() => makeCharacter(
  46361. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46362. {
  46363. front: {
  46364. height: math.unit(6, "feet"),
  46365. name: "Front",
  46366. image: {
  46367. source: "./media/characters/steph/front.svg",
  46368. extra: 1430/1330,
  46369. bottom: 54/1484
  46370. }
  46371. },
  46372. },
  46373. [
  46374. {
  46375. name: "Normal",
  46376. height: math.unit(6, "feet"),
  46377. default: true
  46378. },
  46379. ]
  46380. ))
  46381. characterMakers.push(() => makeCharacter(
  46382. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46383. {
  46384. front: {
  46385. height: math.unit(9, "feet"),
  46386. weight: math.unit(400, "lb"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/kil'aman/front.svg",
  46390. extra: 1210/1159,
  46391. bottom: 109/1319
  46392. }
  46393. },
  46394. head: {
  46395. height: math.unit(2.14, "feet"),
  46396. name: "Head",
  46397. image: {
  46398. source: "./media/characters/kil'aman/head.svg"
  46399. }
  46400. },
  46401. maw: {
  46402. height: math.unit(1.21, "feet"),
  46403. name: "Maw",
  46404. image: {
  46405. source: "./media/characters/kil'aman/maw.svg"
  46406. }
  46407. },
  46408. foot: {
  46409. height: math.unit(1.7, "feet"),
  46410. name: "Foot",
  46411. image: {
  46412. source: "./media/characters/kil'aman/foot.svg"
  46413. }
  46414. },
  46415. dick: {
  46416. height: math.unit(2.1, "feet"),
  46417. name: "Dick",
  46418. image: {
  46419. source: "./media/characters/kil'aman/dick.svg"
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal",
  46426. height: math.unit(9, "feet")
  46427. },
  46428. {
  46429. name: "Canon Height",
  46430. height: math.unit(10, "miles"),
  46431. default: true
  46432. },
  46433. {
  46434. name: "Maximum",
  46435. height: math.unit(6e9, "miles")
  46436. },
  46437. ]
  46438. ))
  46439. characterMakers.push(() => makeCharacter(
  46440. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46441. {
  46442. front: {
  46443. height: math.unit(90, "feet"),
  46444. weight: math.unit(675000, "lb"),
  46445. name: "Front",
  46446. image: {
  46447. source: "./media/characters/qadan/front.svg",
  46448. extra: 1012/1004,
  46449. bottom: 78/1090
  46450. }
  46451. },
  46452. back: {
  46453. height: math.unit(90, "feet"),
  46454. weight: math.unit(675000, "lb"),
  46455. name: "Back",
  46456. image: {
  46457. source: "./media/characters/qadan/back.svg",
  46458. extra: 1042/1031,
  46459. bottom: 55/1097
  46460. }
  46461. },
  46462. armored: {
  46463. height: math.unit(90, "feet"),
  46464. weight: math.unit(675000, "lb"),
  46465. name: "Armored",
  46466. image: {
  46467. source: "./media/characters/qadan/armored.svg",
  46468. extra: 1047/1037,
  46469. bottom: 48/1095
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(90, "feet"),
  46477. default: true
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46483. {
  46484. front: {
  46485. height: math.unit(6, "feet"),
  46486. weight: math.unit(225, "lb"),
  46487. name: "Front",
  46488. image: {
  46489. source: "./media/characters/brooke/front.svg",
  46490. extra: 1050/1010,
  46491. bottom: 66/1116
  46492. }
  46493. },
  46494. back: {
  46495. height: math.unit(6, "feet"),
  46496. weight: math.unit(225, "lb"),
  46497. name: "Back",
  46498. image: {
  46499. source: "./media/characters/brooke/back.svg",
  46500. extra: 1053/1013,
  46501. bottom: 41/1094
  46502. }
  46503. },
  46504. dressed: {
  46505. height: math.unit(6, "feet"),
  46506. weight: math.unit(225, "lb"),
  46507. name: "Dressed",
  46508. image: {
  46509. source: "./media/characters/brooke/dressed.svg",
  46510. extra: 1050/1010,
  46511. bottom: 66/1116
  46512. }
  46513. },
  46514. },
  46515. [
  46516. {
  46517. name: "Canon Height",
  46518. height: math.unit(500, "miles"),
  46519. default: true
  46520. },
  46521. ]
  46522. ))
  46523. characterMakers.push(() => makeCharacter(
  46524. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46525. {
  46526. front: {
  46527. height: math.unit(6 + 2/12, "feet"),
  46528. weight: math.unit(210, "lb"),
  46529. name: "Front",
  46530. image: {
  46531. source: "./media/characters/wubs/front.svg",
  46532. extra: 1345/1325,
  46533. bottom: 70/1415
  46534. }
  46535. },
  46536. back: {
  46537. height: math.unit(6 + 2/12, "feet"),
  46538. weight: math.unit(210, "lb"),
  46539. name: "Back",
  46540. image: {
  46541. source: "./media/characters/wubs/back.svg",
  46542. extra: 1296/1275,
  46543. bottom: 58/1354
  46544. }
  46545. },
  46546. },
  46547. [
  46548. {
  46549. name: "Normal",
  46550. height: math.unit(6 + 2/12, "feet"),
  46551. default: true
  46552. },
  46553. {
  46554. name: "Macro",
  46555. height: math.unit(1000, "feet")
  46556. },
  46557. {
  46558. name: "Megamacro",
  46559. height: math.unit(1, "mile")
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46565. {
  46566. front: {
  46567. height: math.unit(4, "feet"),
  46568. weight: math.unit(120, "lb"),
  46569. name: "Front",
  46570. image: {
  46571. source: "./media/characters/blue/front.svg",
  46572. extra: 1636/1525,
  46573. bottom: 43/1679
  46574. }
  46575. },
  46576. back: {
  46577. height: math.unit(4, "feet"),
  46578. weight: math.unit(120, "lb"),
  46579. name: "Back",
  46580. image: {
  46581. source: "./media/characters/blue/back.svg",
  46582. extra: 1660/1560,
  46583. bottom: 57/1717
  46584. }
  46585. },
  46586. paws: {
  46587. height: math.unit(0.826, "feet"),
  46588. name: "Paws",
  46589. image: {
  46590. source: "./media/characters/blue/paws.svg"
  46591. }
  46592. },
  46593. },
  46594. [
  46595. {
  46596. name: "Micro",
  46597. height: math.unit(3, "inches")
  46598. },
  46599. {
  46600. name: "Normal",
  46601. height: math.unit(4, "feet"),
  46602. default: true
  46603. },
  46604. {
  46605. name: "Femenine Form",
  46606. height: math.unit(14, "feet")
  46607. },
  46608. {
  46609. name: "Werebat Form",
  46610. height: math.unit(18, "feet")
  46611. },
  46612. ]
  46613. ))
  46614. characterMakers.push(() => makeCharacter(
  46615. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46616. {
  46617. female: {
  46618. height: math.unit(7 + 4/12, "feet"),
  46619. weight: math.unit(243, "lb"),
  46620. name: "Female",
  46621. image: {
  46622. source: "./media/characters/kaya/female.svg",
  46623. extra: 975/898,
  46624. bottom: 34/1009
  46625. }
  46626. },
  46627. herm: {
  46628. height: math.unit(7 + 4/12, "feet"),
  46629. weight: math.unit(243, "lb"),
  46630. name: "Herm",
  46631. image: {
  46632. source: "./media/characters/kaya/herm.svg",
  46633. extra: 975/898,
  46634. bottom: 34/1009
  46635. }
  46636. },
  46637. },
  46638. [
  46639. {
  46640. name: "Normal",
  46641. height: math.unit(7 + 4/12, "feet"),
  46642. default: true
  46643. },
  46644. ]
  46645. ))
  46646. characterMakers.push(() => makeCharacter(
  46647. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46648. {
  46649. female: {
  46650. height: math.unit(9 + 4/12, "feet"),
  46651. weight: math.unit(398, "lb"),
  46652. name: "Female",
  46653. image: {
  46654. source: "./media/characters/kassandra/female.svg",
  46655. extra: 908/839,
  46656. bottom: 61/969
  46657. }
  46658. },
  46659. intersex: {
  46660. height: math.unit(9 + 4/12, "feet"),
  46661. weight: math.unit(398, "lb"),
  46662. name: "Intersex",
  46663. image: {
  46664. source: "./media/characters/kassandra/intersex.svg",
  46665. extra: 908/839,
  46666. bottom: 61/969
  46667. }
  46668. },
  46669. },
  46670. [
  46671. {
  46672. name: "Normal",
  46673. height: math.unit(9 + 4/12, "feet"),
  46674. default: true
  46675. },
  46676. ]
  46677. ))
  46678. characterMakers.push(() => makeCharacter(
  46679. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46680. {
  46681. front: {
  46682. height: math.unit(3, "meters"),
  46683. name: "Front",
  46684. image: {
  46685. source: "./media/characters/amy/front.svg",
  46686. extra: 1380/1343,
  46687. bottom: 70/1450
  46688. }
  46689. },
  46690. back: {
  46691. height: math.unit(3, "meters"),
  46692. name: "Back",
  46693. image: {
  46694. source: "./media/characters/amy/back.svg",
  46695. extra: 1380/1347,
  46696. bottom: 66/1446
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(3, "meters"),
  46704. default: true
  46705. },
  46706. ]
  46707. ))
  46708. characterMakers.push(() => makeCharacter(
  46709. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46710. {
  46711. side: {
  46712. height: math.unit(47, "cm"),
  46713. weight: math.unit(10.8, "kg"),
  46714. name: "Side",
  46715. image: {
  46716. source: "./media/characters/alphaschakal/side.svg",
  46717. extra: 1058/568,
  46718. bottom: 62/1120
  46719. }
  46720. },
  46721. back: {
  46722. height: math.unit(78, "cm"),
  46723. weight: math.unit(10.8, "kg"),
  46724. name: "Back",
  46725. image: {
  46726. source: "./media/characters/alphaschakal/back.svg",
  46727. extra: 1102/942,
  46728. bottom: 185/1287
  46729. }
  46730. },
  46731. head: {
  46732. height: math.unit(28, "cm"),
  46733. name: "Head",
  46734. image: {
  46735. source: "./media/characters/alphaschakal/head.svg",
  46736. extra: 696/508,
  46737. bottom: 0/696
  46738. }
  46739. },
  46740. paw: {
  46741. height: math.unit(16, "cm"),
  46742. name: "Paw",
  46743. image: {
  46744. source: "./media/characters/alphaschakal/paw.svg"
  46745. }
  46746. },
  46747. },
  46748. [
  46749. {
  46750. name: "Normal",
  46751. height: math.unit(47, "cm"),
  46752. default: true
  46753. },
  46754. {
  46755. name: "Macro",
  46756. height: math.unit(340, "cm")
  46757. },
  46758. ]
  46759. ))
  46760. characterMakers.push(() => makeCharacter(
  46761. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46762. {
  46763. front: {
  46764. height: math.unit(36, "earths"),
  46765. name: "Front",
  46766. image: {
  46767. source: "./media/characters/ecobyss/front.svg",
  46768. extra: 1282/1215,
  46769. bottom: 11/1293
  46770. }
  46771. },
  46772. back: {
  46773. height: math.unit(36, "earths"),
  46774. name: "Back",
  46775. image: {
  46776. source: "./media/characters/ecobyss/back.svg",
  46777. extra: 1291/1222,
  46778. bottom: 8/1299
  46779. }
  46780. },
  46781. },
  46782. [
  46783. {
  46784. name: "Normal",
  46785. height: math.unit(36, "earths"),
  46786. default: true
  46787. },
  46788. ]
  46789. ))
  46790. characterMakers.push(() => makeCharacter(
  46791. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46792. {
  46793. front: {
  46794. height: math.unit(12, "feet"),
  46795. name: "Front",
  46796. image: {
  46797. source: "./media/characters/vasuk/front.svg",
  46798. extra: 1326/1207,
  46799. bottom: 64/1390
  46800. }
  46801. },
  46802. },
  46803. [
  46804. {
  46805. name: "Normal",
  46806. height: math.unit(12, "feet"),
  46807. default: true
  46808. },
  46809. ]
  46810. ))
  46811. characterMakers.push(() => makeCharacter(
  46812. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46813. {
  46814. side: {
  46815. height: math.unit(100, "feet"),
  46816. name: "Side",
  46817. image: {
  46818. source: "./media/characters/linneaus/side.svg",
  46819. extra: 987/807,
  46820. bottom: 47/1034
  46821. }
  46822. },
  46823. },
  46824. [
  46825. {
  46826. name: "Macro",
  46827. height: math.unit(100, "feet"),
  46828. default: true
  46829. },
  46830. ]
  46831. ))
  46832. characterMakers.push(() => makeCharacter(
  46833. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46834. {
  46835. front: {
  46836. height: math.unit(8, "feet"),
  46837. weight: math.unit(1200, "lb"),
  46838. name: "Front",
  46839. image: {
  46840. source: "./media/characters/nyterious-daligdig/front.svg",
  46841. extra: 1284/1094,
  46842. bottom: 84/1368
  46843. }
  46844. },
  46845. back: {
  46846. height: math.unit(8, "feet"),
  46847. weight: math.unit(1200, "lb"),
  46848. name: "Back",
  46849. image: {
  46850. source: "./media/characters/nyterious-daligdig/back.svg",
  46851. extra: 1301/1121,
  46852. bottom: 129/1430
  46853. }
  46854. },
  46855. mouth: {
  46856. height: math.unit(1.464, "feet"),
  46857. name: "Mouth",
  46858. image: {
  46859. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46860. }
  46861. },
  46862. },
  46863. [
  46864. {
  46865. name: "Small",
  46866. height: math.unit(8, "feet"),
  46867. default: true
  46868. },
  46869. {
  46870. name: "Normal",
  46871. height: math.unit(15, "feet")
  46872. },
  46873. {
  46874. name: "Macro",
  46875. height: math.unit(90, "feet")
  46876. },
  46877. ]
  46878. ))
  46879. characterMakers.push(() => makeCharacter(
  46880. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46881. {
  46882. front: {
  46883. height: math.unit(7 + 4/12, "feet"),
  46884. weight: math.unit(252, "lb"),
  46885. name: "Front",
  46886. image: {
  46887. source: "./media/characters/bandel/front.svg",
  46888. extra: 1946/1775,
  46889. bottom: 26/1972
  46890. }
  46891. },
  46892. back: {
  46893. height: math.unit(7 + 4/12, "feet"),
  46894. weight: math.unit(252, "lb"),
  46895. name: "Back",
  46896. image: {
  46897. source: "./media/characters/bandel/back.svg",
  46898. extra: 1940/1770,
  46899. bottom: 25/1965
  46900. }
  46901. },
  46902. maw: {
  46903. height: math.unit(2.15, "feet"),
  46904. name: "Maw",
  46905. image: {
  46906. source: "./media/characters/bandel/maw.svg"
  46907. }
  46908. },
  46909. stomach: {
  46910. height: math.unit(1.95, "feet"),
  46911. name: "Stomach",
  46912. image: {
  46913. source: "./media/characters/bandel/stomach.svg"
  46914. }
  46915. },
  46916. },
  46917. [
  46918. {
  46919. name: "Normal",
  46920. height: math.unit(7 + 4/12, "feet"),
  46921. default: true
  46922. },
  46923. ]
  46924. ))
  46925. characterMakers.push(() => makeCharacter(
  46926. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46927. {
  46928. front: {
  46929. height: math.unit(10 + 5/12, "feet"),
  46930. weight: math.unit(773.5, "kg"),
  46931. name: "Front",
  46932. image: {
  46933. source: "./media/characters/zed/front.svg",
  46934. extra: 987/941,
  46935. bottom: 52/1039
  46936. }
  46937. },
  46938. },
  46939. [
  46940. {
  46941. name: "Short",
  46942. height: math.unit(5 + 4/12, "feet")
  46943. },
  46944. {
  46945. name: "Average",
  46946. height: math.unit(10 + 5/12, "feet"),
  46947. default: true
  46948. },
  46949. {
  46950. name: "Mini-Macro",
  46951. height: math.unit(24 + 9/12, "feet")
  46952. },
  46953. {
  46954. name: "Macro",
  46955. height: math.unit(249, "feet")
  46956. },
  46957. {
  46958. name: "Mega-Macro",
  46959. height: math.unit(12490, "feet")
  46960. },
  46961. {
  46962. name: "Giga-Macro",
  46963. height: math.unit(24.9, "miles")
  46964. },
  46965. {
  46966. name: "Tera-Macro",
  46967. height: math.unit(24900, "miles")
  46968. },
  46969. {
  46970. name: "Cosmic Scale",
  46971. height: math.unit(38.9, "lightyears")
  46972. },
  46973. {
  46974. name: "Universal Scale",
  46975. height: math.unit(138e12, "lightyears")
  46976. },
  46977. ]
  46978. ))
  46979. characterMakers.push(() => makeCharacter(
  46980. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46981. {
  46982. front: {
  46983. height: math.unit(1561, "inches"),
  46984. name: "Front",
  46985. image: {
  46986. source: "./media/characters/ivan/front.svg",
  46987. extra: 1126/1071,
  46988. bottom: 26/1152
  46989. }
  46990. },
  46991. back: {
  46992. height: math.unit(1561, "inches"),
  46993. name: "Back",
  46994. image: {
  46995. source: "./media/characters/ivan/back.svg",
  46996. extra: 1134/1079,
  46997. bottom: 30/1164
  46998. }
  46999. },
  47000. },
  47001. [
  47002. {
  47003. name: "Normal",
  47004. height: math.unit(1561, "inches"),
  47005. default: true
  47006. },
  47007. ]
  47008. ))
  47009. characterMakers.push(() => makeCharacter(
  47010. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47011. {
  47012. front: {
  47013. height: math.unit(5 + 7/12, "feet"),
  47014. weight: math.unit(150, "lb"),
  47015. name: "Front",
  47016. image: {
  47017. source: "./media/characters/robin-arctic-hare/front.svg",
  47018. extra: 1148/974,
  47019. bottom: 20/1168
  47020. }
  47021. },
  47022. },
  47023. [
  47024. {
  47025. name: "Normal",
  47026. height: math.unit(5 + 7/12, "feet"),
  47027. default: true
  47028. },
  47029. ]
  47030. ))
  47031. characterMakers.push(() => makeCharacter(
  47032. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47033. {
  47034. side: {
  47035. height: math.unit(5, "feet"),
  47036. name: "Side",
  47037. image: {
  47038. source: "./media/characters/birch/side.svg",
  47039. extra: 985/796,
  47040. bottom: 111/1096
  47041. }
  47042. },
  47043. },
  47044. [
  47045. {
  47046. name: "Normal",
  47047. height: math.unit(5, "feet"),
  47048. default: true
  47049. },
  47050. ]
  47051. ))
  47052. characterMakers.push(() => makeCharacter(
  47053. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47054. {
  47055. front: {
  47056. height: math.unit(4, "feet"),
  47057. name: "Front",
  47058. image: {
  47059. source: "./media/characters/rasp/front.svg",
  47060. extra: 561/478,
  47061. bottom: 74/635
  47062. }
  47063. },
  47064. },
  47065. [
  47066. {
  47067. name: "Normal",
  47068. height: math.unit(4, "feet"),
  47069. default: true
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47075. {
  47076. front: {
  47077. height: math.unit(4 + 6/12, "feet"),
  47078. name: "Front",
  47079. image: {
  47080. source: "./media/characters/agatha/front.svg",
  47081. extra: 947/933,
  47082. bottom: 42/989
  47083. }
  47084. },
  47085. back: {
  47086. height: math.unit(4 + 6/12, "feet"),
  47087. name: "Back",
  47088. image: {
  47089. source: "./media/characters/agatha/back.svg",
  47090. extra: 935/922,
  47091. bottom: 48/983
  47092. }
  47093. },
  47094. },
  47095. [
  47096. {
  47097. name: "Normal",
  47098. height: math.unit(4 + 6 /12, "feet"),
  47099. default: true
  47100. },
  47101. {
  47102. name: "Max Size",
  47103. height: math.unit(500, "feet")
  47104. },
  47105. ]
  47106. ))
  47107. characterMakers.push(() => makeCharacter(
  47108. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47109. {
  47110. side: {
  47111. height: math.unit(30, "feet"),
  47112. name: "Side",
  47113. image: {
  47114. source: "./media/characters/roggy/side.svg",
  47115. extra: 909/643,
  47116. bottom: 63/972
  47117. }
  47118. },
  47119. lounging: {
  47120. height: math.unit(20, "feet"),
  47121. name: "Lounging",
  47122. image: {
  47123. source: "./media/characters/roggy/lounging.svg",
  47124. extra: 643/479,
  47125. bottom: 145/788
  47126. }
  47127. },
  47128. handpaw: {
  47129. height: math.unit(13.1, "feet"),
  47130. name: "Handpaw",
  47131. image: {
  47132. source: "./media/characters/roggy/handpaw.svg"
  47133. }
  47134. },
  47135. footpaw: {
  47136. height: math.unit(15.8, "feet"),
  47137. name: "Footpaw",
  47138. image: {
  47139. source: "./media/characters/roggy/footpaw.svg"
  47140. }
  47141. },
  47142. },
  47143. [
  47144. {
  47145. name: "Menacing",
  47146. height: math.unit(30, "feet"),
  47147. default: true
  47148. },
  47149. ]
  47150. ))
  47151. characterMakers.push(() => makeCharacter(
  47152. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47153. {
  47154. front: {
  47155. height: math.unit(5 + 7/12, "feet"),
  47156. weight: math.unit(135, "lb"),
  47157. name: "Front",
  47158. image: {
  47159. source: "./media/characters/naomi/front.svg",
  47160. extra: 1209/1154,
  47161. bottom: 129/1338
  47162. }
  47163. },
  47164. back: {
  47165. height: math.unit(5 + 7/12, "feet"),
  47166. weight: math.unit(135, "lb"),
  47167. name: "Back",
  47168. image: {
  47169. source: "./media/characters/naomi/back.svg",
  47170. extra: 1252/1190,
  47171. bottom: 23/1275
  47172. }
  47173. },
  47174. },
  47175. [
  47176. {
  47177. name: "Normal",
  47178. height: math.unit(5 + 7 /12, "feet"),
  47179. default: true
  47180. },
  47181. ]
  47182. ))
  47183. characterMakers.push(() => makeCharacter(
  47184. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47185. {
  47186. side: {
  47187. height: math.unit(35, "meters"),
  47188. name: "Side",
  47189. image: {
  47190. source: "./media/characters/kimpi/side.svg",
  47191. extra: 419/382,
  47192. bottom: 63/482
  47193. }
  47194. },
  47195. hand: {
  47196. height: math.unit(8.96, "meters"),
  47197. name: "Hand",
  47198. image: {
  47199. source: "./media/characters/kimpi/hand.svg"
  47200. }
  47201. },
  47202. },
  47203. [
  47204. {
  47205. name: "Normal",
  47206. height: math.unit(35, "meters"),
  47207. default: true
  47208. },
  47209. ]
  47210. ))
  47211. characterMakers.push(() => makeCharacter(
  47212. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47213. {
  47214. front: {
  47215. height: math.unit(4 + 4/12, "feet"),
  47216. name: "Front",
  47217. image: {
  47218. source: "./media/characters/pepper-purrloin/front.svg",
  47219. extra: 1141/1024,
  47220. bottom: 21/1162
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Normal",
  47227. height: math.unit(4 + 4/12, "feet"),
  47228. default: true
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47234. {
  47235. front: {
  47236. height: math.unit(6 + 2/12, "feet"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/raphael/front.svg",
  47240. extra: 1101/962,
  47241. bottom: 59/1160
  47242. }
  47243. },
  47244. },
  47245. [
  47246. {
  47247. name: "Normal",
  47248. height: math.unit(6 + 2/12, "feet"),
  47249. default: true
  47250. },
  47251. ]
  47252. ))
  47253. characterMakers.push(() => makeCharacter(
  47254. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47255. {
  47256. front: {
  47257. height: math.unit(6, "feet"),
  47258. weight: math.unit(150, "lb"),
  47259. name: "Front",
  47260. image: {
  47261. source: "./media/characters/victor-williams/front.svg",
  47262. extra: 1894/1825,
  47263. bottom: 67/1961
  47264. }
  47265. },
  47266. },
  47267. [
  47268. {
  47269. name: "Normal",
  47270. height: math.unit(6, "feet"),
  47271. default: true
  47272. },
  47273. ]
  47274. ))
  47275. characterMakers.push(() => makeCharacter(
  47276. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47277. {
  47278. front: {
  47279. height: math.unit(5 + 8/12, "feet"),
  47280. weight: math.unit(150, "lb"),
  47281. name: "Front",
  47282. image: {
  47283. source: "./media/characters/rachel/front.svg",
  47284. extra: 1902/1787,
  47285. bottom: 46/1948
  47286. }
  47287. },
  47288. },
  47289. [
  47290. {
  47291. name: "Base Height",
  47292. height: math.unit(5 + 8/12, "feet"),
  47293. default: true
  47294. },
  47295. {
  47296. name: "Macro",
  47297. height: math.unit(200, "feet")
  47298. },
  47299. {
  47300. name: "Mega Macro",
  47301. height: math.unit(1, "mile")
  47302. },
  47303. {
  47304. name: "Giga Macro",
  47305. height: math.unit(1500, "miles")
  47306. },
  47307. {
  47308. name: "Tera Macro",
  47309. height: math.unit(8000, "miles")
  47310. },
  47311. {
  47312. name: "Tera Macro+",
  47313. height: math.unit(2e5, "miles")
  47314. },
  47315. ]
  47316. ))
  47317. characterMakers.push(() => makeCharacter(
  47318. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47319. {
  47320. front: {
  47321. height: math.unit(6.5, "feet"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47325. extra: 860/819,
  47326. bottom: 307/1167
  47327. }
  47328. },
  47329. back: {
  47330. height: math.unit(6.5, "feet"),
  47331. name: "Back",
  47332. image: {
  47333. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47334. extra: 880/837,
  47335. bottom: 395/1275
  47336. }
  47337. },
  47338. sleeping: {
  47339. height: math.unit(2.79, "feet"),
  47340. name: "Sleeping",
  47341. image: {
  47342. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47343. extra: 465/383,
  47344. bottom: 263/728
  47345. }
  47346. },
  47347. maw: {
  47348. height: math.unit(2.52, "feet"),
  47349. name: "Maw",
  47350. image: {
  47351. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47352. }
  47353. },
  47354. },
  47355. [
  47356. {
  47357. name: "Normal",
  47358. height: math.unit(6.5, "feet"),
  47359. default: true
  47360. },
  47361. ]
  47362. ))
  47363. characterMakers.push(() => makeCharacter(
  47364. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47365. {
  47366. front: {
  47367. height: math.unit(5, "feet"),
  47368. name: "Front",
  47369. image: {
  47370. source: "./media/characters/nova-nerium/front.svg",
  47371. extra: 1548/1392,
  47372. bottom: 374/1922
  47373. }
  47374. },
  47375. back: {
  47376. height: math.unit(5, "feet"),
  47377. name: "Back",
  47378. image: {
  47379. source: "./media/characters/nova-nerium/back.svg",
  47380. extra: 1658/1468,
  47381. bottom: 257/1915
  47382. }
  47383. },
  47384. },
  47385. [
  47386. {
  47387. name: "Normal",
  47388. height: math.unit(5, "feet"),
  47389. default: true
  47390. },
  47391. ]
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47395. {
  47396. front: {
  47397. height: math.unit(5 + 4/12, "feet"),
  47398. name: "Front",
  47399. image: {
  47400. source: "./media/characters/ashe-pyriph/front.svg",
  47401. extra: 1935/1747,
  47402. bottom: 60/1995
  47403. }
  47404. },
  47405. },
  47406. [
  47407. {
  47408. name: "Normal",
  47409. height: math.unit(5 + 4/12, "feet"),
  47410. default: true
  47411. },
  47412. ]
  47413. ))
  47414. characterMakers.push(() => makeCharacter(
  47415. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47416. {
  47417. front: {
  47418. height: math.unit(8.7, "feet"),
  47419. name: "Front",
  47420. image: {
  47421. source: "./media/characters/flicker-wisp/front.svg",
  47422. extra: 1835/1613,
  47423. bottom: 449/2284
  47424. }
  47425. },
  47426. side: {
  47427. height: math.unit(8.7, "feet"),
  47428. name: "Side",
  47429. image: {
  47430. source: "./media/characters/flicker-wisp/side.svg",
  47431. extra: 1841/1642,
  47432. bottom: 336/2177
  47433. },
  47434. default: true
  47435. },
  47436. maw: {
  47437. height: math.unit(3.35, "feet"),
  47438. name: "Maw",
  47439. image: {
  47440. source: "./media/characters/flicker-wisp/maw.svg",
  47441. extra: 2338/1506,
  47442. bottom: 0/2338
  47443. }
  47444. },
  47445. ovipositor: {
  47446. height: math.unit(4.95, "feet"),
  47447. name: "Ovipositor",
  47448. image: {
  47449. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47450. }
  47451. },
  47452. egg: {
  47453. height: math.unit(0.385, "feet"),
  47454. weight: math.unit(2, "lb"),
  47455. name: "Egg",
  47456. image: {
  47457. source: "./media/characters/flicker-wisp/egg.svg"
  47458. }
  47459. },
  47460. },
  47461. [
  47462. {
  47463. name: "Normal",
  47464. height: math.unit(8.7, "feet"),
  47465. default: true
  47466. },
  47467. ]
  47468. ))
  47469. characterMakers.push(() => makeCharacter(
  47470. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47471. {
  47472. side: {
  47473. height: math.unit(11, "feet"),
  47474. name: "Side",
  47475. image: {
  47476. source: "./media/characters/faefnul/side.svg",
  47477. extra: 1100/1007,
  47478. bottom: 0/1100
  47479. }
  47480. },
  47481. },
  47482. [
  47483. {
  47484. name: "Normal",
  47485. height: math.unit(11, "feet"),
  47486. default: true
  47487. },
  47488. ]
  47489. ))
  47490. characterMakers.push(() => makeCharacter(
  47491. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47492. {
  47493. front: {
  47494. height: math.unit(6 + 2/12, "feet"),
  47495. name: "Front",
  47496. image: {
  47497. source: "./media/characters/shady/front.svg",
  47498. extra: 502/461,
  47499. bottom: 9/511
  47500. }
  47501. },
  47502. kneeling: {
  47503. height: math.unit(4.6, "feet"),
  47504. name: "Kneeling",
  47505. image: {
  47506. source: "./media/characters/shady/kneeling.svg",
  47507. extra: 1328/1219,
  47508. bottom: 117/1445
  47509. }
  47510. },
  47511. maw: {
  47512. height: math.unit(2, "feet"),
  47513. name: "Maw",
  47514. image: {
  47515. source: "./media/characters/shady/maw.svg"
  47516. }
  47517. },
  47518. },
  47519. [
  47520. {
  47521. name: "Nano",
  47522. height: math.unit(1, "mm")
  47523. },
  47524. {
  47525. name: "Micro",
  47526. height: math.unit(12, "mm")
  47527. },
  47528. {
  47529. name: "Tiny",
  47530. height: math.unit(3, "inches")
  47531. },
  47532. {
  47533. name: "Normal",
  47534. height: math.unit(6 + 2/12, "feet"),
  47535. default: true
  47536. },
  47537. {
  47538. name: "Big",
  47539. height: math.unit(15, "feet")
  47540. },
  47541. {
  47542. name: "Macro",
  47543. height: math.unit(150, "feet")
  47544. },
  47545. {
  47546. name: "Titanic",
  47547. height: math.unit(500, "feet")
  47548. },
  47549. ]
  47550. ))
  47551. characterMakers.push(() => makeCharacter(
  47552. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47553. {
  47554. front: {
  47555. height: math.unit(12, "feet"),
  47556. name: "Front",
  47557. image: {
  47558. source: "./media/characters/fenrir/front.svg",
  47559. extra: 968/875,
  47560. bottom: 22/990
  47561. }
  47562. },
  47563. },
  47564. [
  47565. {
  47566. name: "Big",
  47567. height: math.unit(12, "feet"),
  47568. default: true
  47569. },
  47570. ]
  47571. ))
  47572. characterMakers.push(() => makeCharacter(
  47573. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47574. {
  47575. front: {
  47576. height: math.unit(5 + 4/12, "feet"),
  47577. name: "Front",
  47578. image: {
  47579. source: "./media/characters/makar/front.svg",
  47580. extra: 1181/1112,
  47581. bottom: 78/1259
  47582. }
  47583. },
  47584. },
  47585. [
  47586. {
  47587. name: "Normal",
  47588. height: math.unit(5 + 4/12, "feet"),
  47589. default: true
  47590. },
  47591. ]
  47592. ))
  47593. characterMakers.push(() => makeCharacter(
  47594. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47595. {
  47596. front: {
  47597. height: math.unit(5 + 7/12, "feet"),
  47598. name: "Front",
  47599. image: {
  47600. source: "./media/characters/callow/front.svg",
  47601. extra: 1482/1304,
  47602. bottom: 23/1505
  47603. }
  47604. },
  47605. back: {
  47606. height: math.unit(5 + 7/12, "feet"),
  47607. name: "Back",
  47608. image: {
  47609. source: "./media/characters/callow/back.svg",
  47610. extra: 1484/1296,
  47611. bottom: 25/1509
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Micro",
  47618. height: math.unit(3, "inches"),
  47619. default: true
  47620. },
  47621. {
  47622. name: "Normal",
  47623. height: math.unit(5 + 7/12, "feet")
  47624. },
  47625. ]
  47626. ))
  47627. characterMakers.push(() => makeCharacter(
  47628. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47629. {
  47630. front: {
  47631. height: math.unit(6 + 2/12, "feet"),
  47632. name: "Front",
  47633. image: {
  47634. source: "./media/characters/natel/front.svg",
  47635. extra: 1833/1692,
  47636. bottom: 166/1999
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(6 + 2/12, "feet"),
  47644. default: true
  47645. },
  47646. ]
  47647. ))
  47648. characterMakers.push(() => makeCharacter(
  47649. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47650. {
  47651. front: {
  47652. height: math.unit(1.75, "meters"),
  47653. name: "Front",
  47654. image: {
  47655. source: "./media/characters/misu/front.svg",
  47656. extra: 1690/1558,
  47657. bottom: 234/1924
  47658. }
  47659. },
  47660. back: {
  47661. height: math.unit(1.75, "meters"),
  47662. name: "Back",
  47663. image: {
  47664. source: "./media/characters/misu/back.svg",
  47665. extra: 1762/1618,
  47666. bottom: 146/1908
  47667. }
  47668. },
  47669. frontNude: {
  47670. height: math.unit(1.75, "meters"),
  47671. name: "Front (Nude)",
  47672. image: {
  47673. source: "./media/characters/misu/front-nude.svg",
  47674. extra: 1690/1558,
  47675. bottom: 234/1924
  47676. }
  47677. },
  47678. backNude: {
  47679. height: math.unit(1.75, "meters"),
  47680. name: "Back (Nude)",
  47681. image: {
  47682. source: "./media/characters/misu/back-nude.svg",
  47683. extra: 1762/1618,
  47684. bottom: 146/1908
  47685. }
  47686. },
  47687. frontErect: {
  47688. height: math.unit(1.75, "meters"),
  47689. name: "Front (Erect)",
  47690. image: {
  47691. source: "./media/characters/misu/front-erect.svg",
  47692. extra: 1690/1558,
  47693. bottom: 234/1924
  47694. }
  47695. },
  47696. maw: {
  47697. height: math.unit(0.47, "meters"),
  47698. name: "Maw",
  47699. image: {
  47700. source: "./media/characters/misu/maw.svg"
  47701. }
  47702. },
  47703. head: {
  47704. height: math.unit(0.35, "meters"),
  47705. name: "Head",
  47706. image: {
  47707. source: "./media/characters/misu/head.svg"
  47708. }
  47709. },
  47710. rear: {
  47711. height: math.unit(0.47, "meters"),
  47712. name: "Rear",
  47713. image: {
  47714. source: "./media/characters/misu/rear.svg"
  47715. }
  47716. },
  47717. },
  47718. [
  47719. {
  47720. name: "Normal",
  47721. height: math.unit(1.75, "meters")
  47722. },
  47723. {
  47724. name: "Not good for the people",
  47725. height: math.unit(42, "meters")
  47726. },
  47727. {
  47728. name: "Not good for the neighborhood",
  47729. height: math.unit(135, "meters")
  47730. },
  47731. {
  47732. name: "Bit bigger problem",
  47733. height: math.unit(380, "meters"),
  47734. default: true
  47735. },
  47736. {
  47737. name: "Not good for the city",
  47738. height: math.unit(1.5, "km")
  47739. },
  47740. {
  47741. name: "Not good for the county",
  47742. height: math.unit(5.5, "km")
  47743. },
  47744. {
  47745. name: "Not good for the state",
  47746. height: math.unit(25, "km")
  47747. },
  47748. {
  47749. name: "Not good for the country",
  47750. height: math.unit(125, "km")
  47751. },
  47752. {
  47753. name: "Not good for the continent",
  47754. height: math.unit(2100, "km")
  47755. },
  47756. {
  47757. name: "Not good for the planet",
  47758. height: math.unit(35000, "km")
  47759. },
  47760. {
  47761. name: "Just no",
  47762. height: math.unit(8.5e18, "km")
  47763. },
  47764. ]
  47765. ))
  47766. characterMakers.push(() => makeCharacter(
  47767. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47768. {
  47769. front: {
  47770. height: math.unit(6.5, "feet"),
  47771. name: "Front",
  47772. image: {
  47773. source: "./media/characters/poppy/front.svg",
  47774. extra: 1878/1812,
  47775. bottom: 43/1921
  47776. }
  47777. },
  47778. feet: {
  47779. height: math.unit(1.06, "feet"),
  47780. name: "Feet",
  47781. image: {
  47782. source: "./media/characters/poppy/feet.svg",
  47783. extra: 1083/1083,
  47784. bottom: 87/1170
  47785. }
  47786. },
  47787. },
  47788. [
  47789. {
  47790. name: "Human",
  47791. height: math.unit(6.5, "feet")
  47792. },
  47793. {
  47794. name: "Default",
  47795. height: math.unit(300, "feet"),
  47796. default: true
  47797. },
  47798. {
  47799. name: "Huge",
  47800. height: math.unit(850, "feet")
  47801. },
  47802. {
  47803. name: "Mega",
  47804. height: math.unit(8000, "feet")
  47805. },
  47806. {
  47807. name: "Giga",
  47808. height: math.unit(300, "miles")
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47814. {
  47815. bipedal: {
  47816. height: math.unit(7, "feet"),
  47817. name: "Bipedal",
  47818. image: {
  47819. source: "./media/characters/zener/bipedal.svg",
  47820. extra: 874/805,
  47821. bottom: 109/983
  47822. }
  47823. },
  47824. quadrupedal: {
  47825. height: math.unit(4.64, "feet"),
  47826. name: "Quadrupedal",
  47827. image: {
  47828. source: "./media/characters/zener/quadrupedal.svg",
  47829. extra: 638/507,
  47830. bottom: 190/828
  47831. }
  47832. },
  47833. cock: {
  47834. height: math.unit(18, "inches"),
  47835. name: "Cock",
  47836. image: {
  47837. source: "./media/characters/zener/cock.svg"
  47838. }
  47839. },
  47840. },
  47841. [
  47842. {
  47843. name: "Normal",
  47844. height: math.unit(7, "feet"),
  47845. default: true
  47846. },
  47847. ]
  47848. ))
  47849. characterMakers.push(() => makeCharacter(
  47850. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  47851. {
  47852. nude: {
  47853. height: math.unit(5 + 6/12, "feet"),
  47854. name: "Nude",
  47855. image: {
  47856. source: "./media/characters/charlie-dog/nude.svg",
  47857. extra: 768/734,
  47858. bottom: 26/794
  47859. }
  47860. },
  47861. dressed: {
  47862. height: math.unit(5 + 6/12, "feet"),
  47863. name: "Dressed",
  47864. image: {
  47865. source: "./media/characters/charlie-dog/dressed.svg",
  47866. extra: 768/734,
  47867. bottom: 26/794
  47868. }
  47869. },
  47870. },
  47871. [
  47872. {
  47873. name: "Normal",
  47874. height: math.unit(5 + 6/12, "feet"),
  47875. default: true
  47876. },
  47877. ]
  47878. ))
  47879. characterMakers.push(() => makeCharacter(
  47880. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  47881. {
  47882. front: {
  47883. height: math.unit(6 + 4/12, "feet"),
  47884. name: "Front",
  47885. image: {
  47886. source: "./media/characters/ir'istrasz/front.svg",
  47887. extra: 1014/977,
  47888. bottom: 65/1079
  47889. }
  47890. },
  47891. back: {
  47892. height: math.unit(6 + 4/12, "feet"),
  47893. name: "Back",
  47894. image: {
  47895. source: "./media/characters/ir'istrasz/back.svg",
  47896. extra: 1024/992,
  47897. bottom: 34/1058
  47898. }
  47899. },
  47900. },
  47901. [
  47902. {
  47903. name: "Normal",
  47904. height: math.unit(6 + 4/12, "feet"),
  47905. default: true
  47906. },
  47907. ]
  47908. ))
  47909. characterMakers.push(() => makeCharacter(
  47910. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  47911. {
  47912. front: {
  47913. height: math.unit(5 + 8/12, "feet"),
  47914. name: "Front",
  47915. image: {
  47916. source: "./media/characters/dee-ditto/front.svg",
  47917. extra: 1874/1785,
  47918. bottom: 68/1942
  47919. }
  47920. },
  47921. back: {
  47922. height: math.unit(5 + 8/12, "feet"),
  47923. name: "Back",
  47924. image: {
  47925. source: "./media/characters/dee-ditto/back.svg",
  47926. extra: 1870/1783,
  47927. bottom: 77/1947
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Normal",
  47934. height: math.unit(5 + 8/12, "feet"),
  47935. default: true
  47936. },
  47937. ]
  47938. ))
  47939. characterMakers.push(() => makeCharacter(
  47940. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  47941. {
  47942. front: {
  47943. height: math.unit(7 + 6/12, "feet"),
  47944. name: "Front",
  47945. image: {
  47946. source: "./media/characters/fey/front.svg",
  47947. extra: 995/979,
  47948. bottom: 30/1025
  47949. }
  47950. },
  47951. back: {
  47952. height: math.unit(7 + 6/12, "feet"),
  47953. name: "Back",
  47954. image: {
  47955. source: "./media/characters/fey/back.svg",
  47956. extra: 1079/1008,
  47957. bottom: 5/1084
  47958. }
  47959. },
  47960. dressed: {
  47961. height: math.unit(7 + 6/12, "feet"),
  47962. name: "Dressed",
  47963. image: {
  47964. source: "./media/characters/fey/dressed.svg",
  47965. extra: 995/979,
  47966. bottom: 30/1025
  47967. }
  47968. },
  47969. },
  47970. [
  47971. {
  47972. name: "Normal",
  47973. height: math.unit(7 + 6/12, "feet"),
  47974. default: true
  47975. },
  47976. ]
  47977. ))
  47978. characterMakers.push(() => makeCharacter(
  47979. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  47980. {
  47981. standing: {
  47982. height: math.unit(17, "feet"),
  47983. name: "Standing",
  47984. image: {
  47985. source: "./media/characters/aster/standing.svg",
  47986. extra: 1798/1598,
  47987. bottom: 117/1915
  47988. }
  47989. },
  47990. },
  47991. [
  47992. {
  47993. name: "Normal",
  47994. height: math.unit(17, "feet"),
  47995. default: true
  47996. },
  47997. {
  47998. name: "Homewrecker",
  47999. height: math.unit(95, "feet")
  48000. },
  48001. {
  48002. name: "Planet Devourer",
  48003. height: math.unit(1008000, "miles")
  48004. },
  48005. ]
  48006. ))
  48007. characterMakers.push(() => makeCharacter(
  48008. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48009. {
  48010. front: {
  48011. height: math.unit(6 + 5/12, "feet"),
  48012. weight: math.unit(265, "lb"),
  48013. name: "Front",
  48014. image: {
  48015. source: "./media/characters/devon-childs/front.svg",
  48016. extra: 1795/1721,
  48017. bottom: 41/1836
  48018. }
  48019. },
  48020. side: {
  48021. height: math.unit(6 + 5/12, "feet"),
  48022. weight: math.unit(265, "lb"),
  48023. name: "Side",
  48024. image: {
  48025. source: "./media/characters/devon-childs/side.svg",
  48026. extra: 1812/1738,
  48027. bottom: 30/1842
  48028. }
  48029. },
  48030. back: {
  48031. height: math.unit(6 + 5/12, "feet"),
  48032. weight: math.unit(265, "lb"),
  48033. name: "Back",
  48034. image: {
  48035. source: "./media/characters/devon-childs/back.svg",
  48036. extra: 1808/1735,
  48037. bottom: 23/1831
  48038. }
  48039. },
  48040. hand: {
  48041. height: math.unit(1.464, "feet"),
  48042. name: "Hand",
  48043. image: {
  48044. source: "./media/characters/devon-childs/hand.svg"
  48045. }
  48046. },
  48047. foot: {
  48048. height: math.unit(1.6, "feet"),
  48049. name: "Foot",
  48050. image: {
  48051. source: "./media/characters/devon-childs/foot.svg"
  48052. }
  48053. },
  48054. },
  48055. [
  48056. {
  48057. name: "Micro",
  48058. height: math.unit(7, "cm")
  48059. },
  48060. {
  48061. name: "Normal",
  48062. height: math.unit(6 + 5/12, "feet"),
  48063. default: true
  48064. },
  48065. {
  48066. name: "Macro",
  48067. height: math.unit(154, "feet")
  48068. },
  48069. ]
  48070. ))
  48071. characterMakers.push(() => makeCharacter(
  48072. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48073. {
  48074. front: {
  48075. height: math.unit(6, "feet"),
  48076. weight: math.unit(180, "lb"),
  48077. name: "Front",
  48078. image: {
  48079. source: "./media/characters/lydemox-vir/front.svg",
  48080. extra: 1632/1435,
  48081. bottom: 58/1690
  48082. }
  48083. },
  48084. frontSFW: {
  48085. height: math.unit(6, "feet"),
  48086. weight: math.unit(180, "lb"),
  48087. name: "Front (SFW)",
  48088. image: {
  48089. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48090. extra: 1632/1435,
  48091. bottom: 58/1690
  48092. }
  48093. },
  48094. back: {
  48095. height: math.unit(6, "feet"),
  48096. weight: math.unit(180, "lb"),
  48097. name: "Back",
  48098. image: {
  48099. source: "./media/characters/lydemox-vir/back.svg",
  48100. extra: 1593/1408,
  48101. bottom: 31/1624
  48102. }
  48103. },
  48104. paw: {
  48105. height: math.unit(1.85, "feet"),
  48106. name: "Paw",
  48107. image: {
  48108. source: "./media/characters/lydemox-vir/paw.svg"
  48109. }
  48110. },
  48111. dick: {
  48112. height: math.unit(1.8, "feet"),
  48113. name: "Dick",
  48114. image: {
  48115. source: "./media/characters/lydemox-vir/dick.svg"
  48116. }
  48117. },
  48118. },
  48119. [
  48120. {
  48121. name: "Macro",
  48122. height: math.unit(100, "feet"),
  48123. default: true
  48124. },
  48125. {
  48126. name: "Teramacro",
  48127. height: math.unit(1, "earth")
  48128. },
  48129. {
  48130. name: "Planetary",
  48131. height: math.unit(20, "earths")
  48132. },
  48133. ]
  48134. ))
  48135. //characters
  48136. function makeCharacters() {
  48137. const results = [];
  48138. characterMakers.forEach(character => {
  48139. results.push(character());
  48140. });
  48141. return results;
  48142. }