less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

49858 lines
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. "amogus": {
  1908. name: "Amogus",
  1909. parents: ["deity"]
  1910. },
  1911. }
  1912. //species
  1913. function getSpeciesInfo(speciesList) {
  1914. let result = new Set();
  1915. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1916. result.add(entry)
  1917. });
  1918. return Array.from(result);
  1919. };
  1920. function getSpeciesInfoHelper(species) {
  1921. if (!speciesData[species]) {
  1922. console.warn(species + " doesn't exist");
  1923. return [];
  1924. }
  1925. if (speciesData[species].parents) {
  1926. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1927. } else {
  1928. return [species];
  1929. }
  1930. }
  1931. characterMakers.push(() => makeCharacter(
  1932. {
  1933. name: "Fen",
  1934. species: ["crux"],
  1935. description: {
  1936. title: "Bio",
  1937. text: "Very furry. Sheds on everything."
  1938. },
  1939. tags: [
  1940. "anthro",
  1941. "goo"
  1942. ]
  1943. },
  1944. {
  1945. front: {
  1946. height: math.unit(12, "feet"),
  1947. weight: math.unit(2400, "lb"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/fen/front.svg",
  1951. extra: 1804/1562,
  1952. bottom: 205/2009
  1953. }
  1954. },
  1955. diving: {
  1956. height: math.unit(4.9, "meters"),
  1957. weight: math.unit(2400, "lb"),
  1958. name: "Diving",
  1959. image: {
  1960. source: "./media/characters/fen/diving.svg"
  1961. }
  1962. },
  1963. goo: {
  1964. height: math.unit(12, "feet"),
  1965. weight: math.unit(3600, "lb"),
  1966. volume: math.unit(1000, "liters"),
  1967. capacity: math.unit(6, "people"),
  1968. name: "Goo",
  1969. image: {
  1970. source: "./media/characters/fen/goo.svg",
  1971. extra: 1307/1071,
  1972. bottom: 134/1441
  1973. }
  1974. },
  1975. maw: {
  1976. height: math.unit(5.03, "feet"),
  1977. name: "Maw",
  1978. image: {
  1979. source: "./media/characters/fen/maw.svg"
  1980. }
  1981. },
  1982. gooCeiling: {
  1983. height: math.unit(6.6, "feet"),
  1984. weight: math.unit(3000, "lb"),
  1985. volume: math.unit(1000, "liters"),
  1986. capacity: math.unit(6, "people"),
  1987. name: "Goo (Ceiling)",
  1988. image: {
  1989. source: "./media/characters/fen/goo-ceiling.svg"
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(12, "feet"),
  1994. weight: math.unit(2400, "lb"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/fen/back.svg",
  1998. },
  1999. info: {
  2000. description: {
  2001. mode: "append",
  2002. text: "\n\nHe is not currently looking at you."
  2003. }
  2004. }
  2005. },
  2006. full: {
  2007. height: math.unit(1.6, "meter"),
  2008. weight: math.unit(3200, "lb"),
  2009. name: "Full",
  2010. image: {
  2011. source: "./media/characters/fen/full.svg",
  2012. extra: 1133/859,
  2013. bottom: 145/1278
  2014. },
  2015. info: {
  2016. description: {
  2017. mode: "append",
  2018. text: "\n\nMunch."
  2019. }
  2020. }
  2021. },
  2022. gooLounging: {
  2023. height: math.unit(4.53, "feet"),
  2024. weight: math.unit(3000, "lb"),
  2025. capacity: math.unit(6, "people"),
  2026. name: "Goo (Lounging)",
  2027. image: {
  2028. source: "./media/characters/fen/goo-lounging.svg",
  2029. bottom: 116 / 613
  2030. }
  2031. },
  2032. lounging: {
  2033. height: math.unit(10.52, "feet"),
  2034. weight: math.unit(2400, "lb"),
  2035. name: "Lounging",
  2036. image: {
  2037. source: "./media/characters/fen/lounging.svg"
  2038. }
  2039. },
  2040. },
  2041. [
  2042. {
  2043. name: "Small",
  2044. height: math.unit(2.2428, "meter")
  2045. },
  2046. {
  2047. name: "Normal",
  2048. height: math.unit(12, "feet"),
  2049. default: true,
  2050. },
  2051. {
  2052. name: "Big",
  2053. height: math.unit(20, "feet")
  2054. },
  2055. {
  2056. name: "Minimacro",
  2057. height: math.unit(40, "feet"),
  2058. info: {
  2059. description: {
  2060. mode: "append",
  2061. text: "\n\nTOO DAMN BIG"
  2062. }
  2063. }
  2064. },
  2065. {
  2066. name: "Macro",
  2067. height: math.unit(100, "feet"),
  2068. info: {
  2069. description: {
  2070. mode: "append",
  2071. text: "\n\nTOO DAMN BIG"
  2072. }
  2073. }
  2074. },
  2075. {
  2076. name: "Megamacro",
  2077. height: math.unit(2, "miles")
  2078. },
  2079. {
  2080. name: "Gigamacro",
  2081. height: math.unit(10, "earths")
  2082. },
  2083. ]
  2084. ))
  2085. characterMakers.push(() => makeCharacter(
  2086. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2087. {
  2088. front: {
  2089. height: math.unit(183, "cm"),
  2090. weight: math.unit(80, "kg"),
  2091. name: "Front",
  2092. image: {
  2093. source: "./media/characters/sofia-fluttertail/front.svg",
  2094. bottom: 0.01,
  2095. extra: 2154 / 2081
  2096. }
  2097. },
  2098. frontAlt: {
  2099. height: math.unit(183, "cm"),
  2100. weight: math.unit(80, "kg"),
  2101. name: "Front (alt)",
  2102. image: {
  2103. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2104. }
  2105. },
  2106. back: {
  2107. height: math.unit(183, "cm"),
  2108. weight: math.unit(80, "kg"),
  2109. name: "Back",
  2110. image: {
  2111. source: "./media/characters/sofia-fluttertail/back.svg"
  2112. }
  2113. },
  2114. kneeling: {
  2115. height: math.unit(125, "cm"),
  2116. weight: math.unit(80, "kg"),
  2117. name: "Kneeling",
  2118. image: {
  2119. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2120. extra: 1033 / 977,
  2121. bottom: 23.7 / 1057
  2122. }
  2123. },
  2124. maw: {
  2125. height: math.unit(183 / 5, "cm"),
  2126. name: "Maw",
  2127. image: {
  2128. source: "./media/characters/sofia-fluttertail/maw.svg"
  2129. }
  2130. },
  2131. mawcloseup: {
  2132. height: math.unit(183 / 5 * 0.41, "cm"),
  2133. name: "Maw (Closeup)",
  2134. image: {
  2135. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2136. }
  2137. },
  2138. paws: {
  2139. height: math.unit(1.17, "feet"),
  2140. name: "Paws",
  2141. image: {
  2142. source: "./media/characters/sofia-fluttertail/paws.svg",
  2143. extra: 851 / 851,
  2144. bottom: 17 / 868
  2145. }
  2146. },
  2147. },
  2148. [
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(1.83, "meter")
  2152. },
  2153. {
  2154. name: "Size Thief",
  2155. height: math.unit(18, "feet")
  2156. },
  2157. {
  2158. name: "50 Foot Collie",
  2159. height: math.unit(50, "feet")
  2160. },
  2161. {
  2162. name: "Macro",
  2163. height: math.unit(96, "feet"),
  2164. default: true
  2165. },
  2166. {
  2167. name: "Megamerger",
  2168. height: math.unit(650, "feet")
  2169. },
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2174. {
  2175. front: {
  2176. height: math.unit(7, "feet"),
  2177. weight: math.unit(100, "kg"),
  2178. name: "Front",
  2179. image: {
  2180. source: "./media/characters/march/front.svg",
  2181. extra: 1992/1851,
  2182. bottom: 39/2031
  2183. }
  2184. },
  2185. foot: {
  2186. height: math.unit(0.9, "feet"),
  2187. name: "Foot",
  2188. image: {
  2189. source: "./media/characters/march/foot.svg"
  2190. }
  2191. },
  2192. },
  2193. [
  2194. {
  2195. name: "Normal",
  2196. height: math.unit(7.9, "feet")
  2197. },
  2198. {
  2199. name: "Macro",
  2200. height: math.unit(220, "meters")
  2201. },
  2202. {
  2203. name: "Megamacro",
  2204. height: math.unit(2.98, "km"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Gigamacro",
  2209. height: math.unit(15963, "km")
  2210. },
  2211. {
  2212. name: "Teramacro",
  2213. height: math.unit(2980000000, "km")
  2214. },
  2215. {
  2216. name: "Examacro",
  2217. height: math.unit(250, "parsecs")
  2218. },
  2219. ]
  2220. ))
  2221. characterMakers.push(() => makeCharacter(
  2222. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2223. {
  2224. front: {
  2225. height: math.unit(6, "feet"),
  2226. weight: math.unit(60, "kg"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/noir/front.svg",
  2230. extra: 1,
  2231. bottom: 0.032
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(6.6, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(500, "feet")
  2243. },
  2244. {
  2245. name: "Megamacro",
  2246. height: math.unit(2.5, "km"),
  2247. default: true
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(22500, "km")
  2252. },
  2253. {
  2254. name: "Teramacro",
  2255. height: math.unit(2500000000, "km")
  2256. },
  2257. {
  2258. name: "Examacro",
  2259. height: math.unit(200, "parsecs")
  2260. },
  2261. ]
  2262. ))
  2263. characterMakers.push(() => makeCharacter(
  2264. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2265. {
  2266. front: {
  2267. height: math.unit(7, "feet"),
  2268. weight: math.unit(100, "kg"),
  2269. name: "Front",
  2270. image: {
  2271. source: "./media/characters/okuri/front.svg",
  2272. extra: 739/665,
  2273. bottom: 39/778
  2274. }
  2275. },
  2276. back: {
  2277. height: math.unit(7, "feet"),
  2278. weight: math.unit(100, "kg"),
  2279. name: "Back",
  2280. image: {
  2281. source: "./media/characters/okuri/back.svg",
  2282. extra: 734/653,
  2283. bottom: 13/747
  2284. }
  2285. },
  2286. sitting: {
  2287. height: math.unit(2.95, "feet"),
  2288. weight: math.unit(100, "kg"),
  2289. name: "Sitting",
  2290. image: {
  2291. source: "./media/characters/okuri/sitting.svg",
  2292. extra: 370/318,
  2293. bottom: 99/469
  2294. }
  2295. },
  2296. },
  2297. [
  2298. {
  2299. name: "Smallest",
  2300. height: math.unit(5 + 2/12, "feet")
  2301. },
  2302. {
  2303. name: "Smaller",
  2304. height: math.unit(300, "feet")
  2305. },
  2306. {
  2307. name: "Small",
  2308. height: math.unit(1000, "feet")
  2309. },
  2310. {
  2311. name: "Macro",
  2312. height: math.unit(1, "mile")
  2313. },
  2314. {
  2315. name: "Mega Macro (Small)",
  2316. height: math.unit(20, "km")
  2317. },
  2318. {
  2319. name: "Mega Macro (Large)",
  2320. height: math.unit(600, "km")
  2321. },
  2322. {
  2323. name: "Giga Macro",
  2324. height: math.unit(10000, "km")
  2325. },
  2326. {
  2327. name: "Normal",
  2328. height: math.unit(577560, "km"),
  2329. default: true
  2330. },
  2331. {
  2332. name: "Large",
  2333. height: math.unit(4, "galaxies")
  2334. },
  2335. {
  2336. name: "Largest",
  2337. height: math.unit(15, "multiverses")
  2338. },
  2339. ]
  2340. ))
  2341. characterMakers.push(() => makeCharacter(
  2342. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2343. {
  2344. front: {
  2345. height: math.unit(7, "feet"),
  2346. weight: math.unit(100, "kg"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/manny/front.svg",
  2350. extra: 1,
  2351. bottom: 0.06
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(7, "feet"),
  2356. weight: math.unit(100, "kg"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/manny/back.svg",
  2360. extra: 1,
  2361. bottom: 0.014
  2362. }
  2363. },
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(7, "feet"),
  2369. },
  2370. {
  2371. name: "Macro",
  2372. height: math.unit(78, "feet"),
  2373. default: true
  2374. },
  2375. {
  2376. name: "Macro+",
  2377. height: math.unit(300, "meters")
  2378. },
  2379. {
  2380. name: "Macro++",
  2381. height: math.unit(2400, "meters")
  2382. },
  2383. {
  2384. name: "Megamacro",
  2385. height: math.unit(5167, "meters")
  2386. },
  2387. {
  2388. name: "Gigamacro",
  2389. height: math.unit(41769, "miles")
  2390. },
  2391. ]
  2392. ))
  2393. characterMakers.push(() => makeCharacter(
  2394. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2395. {
  2396. front: {
  2397. height: math.unit(7, "feet"),
  2398. weight: math.unit(100, "kg"),
  2399. name: "Front",
  2400. image: {
  2401. source: "./media/characters/adake/front-1.svg"
  2402. }
  2403. },
  2404. frontAlt: {
  2405. height: math.unit(7, "feet"),
  2406. weight: math.unit(100, "kg"),
  2407. name: "Front (Alt)",
  2408. image: {
  2409. source: "./media/characters/adake/front-2.svg",
  2410. extra: 1,
  2411. bottom: 0.01
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(7, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/adake/back.svg",
  2420. }
  2421. },
  2422. kneel: {
  2423. height: math.unit(5.385, "feet"),
  2424. weight: math.unit(100, "kg"),
  2425. name: "Kneeling",
  2426. image: {
  2427. source: "./media/characters/adake/kneel.svg",
  2428. bottom: 0.052
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(7, "feet"),
  2436. },
  2437. {
  2438. name: "Macro",
  2439. height: math.unit(78, "feet"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro+",
  2444. height: math.unit(300, "meters")
  2445. },
  2446. {
  2447. name: "Macro++",
  2448. height: math.unit(2400, "meters")
  2449. },
  2450. {
  2451. name: "Megamacro",
  2452. height: math.unit(5167, "meters")
  2453. },
  2454. {
  2455. name: "Gigamacro",
  2456. height: math.unit(41769, "miles")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(1.65, "meters"),
  2465. weight: math.unit(50, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/elijah/front.svg",
  2469. extra: 858 / 830,
  2470. bottom: 95.5 / 953.8559
  2471. }
  2472. },
  2473. back: {
  2474. height: math.unit(1.65, "meters"),
  2475. weight: math.unit(50, "kg"),
  2476. name: "Back",
  2477. image: {
  2478. source: "./media/characters/elijah/back.svg",
  2479. extra: 895 / 850,
  2480. bottom: 5.3 / 897.956
  2481. }
  2482. },
  2483. frontNsfw: {
  2484. height: math.unit(1.65, "meters"),
  2485. weight: math.unit(50, "kg"),
  2486. name: "Front (NSFW)",
  2487. image: {
  2488. source: "./media/characters/elijah/front-nsfw.svg",
  2489. extra: 858 / 830,
  2490. bottom: 95.5 / 953.8559
  2491. }
  2492. },
  2493. backNsfw: {
  2494. height: math.unit(1.65, "meters"),
  2495. weight: math.unit(50, "kg"),
  2496. name: "Back (NSFW)",
  2497. image: {
  2498. source: "./media/characters/elijah/back-nsfw.svg",
  2499. extra: 895 / 850,
  2500. bottom: 5.3 / 897.956
  2501. }
  2502. },
  2503. dick: {
  2504. height: math.unit(1, "feet"),
  2505. name: "Dick",
  2506. image: {
  2507. source: "./media/characters/elijah/dick.svg"
  2508. }
  2509. },
  2510. beakOpen: {
  2511. height: math.unit(1.25, "feet"),
  2512. name: "Beak (Open)",
  2513. image: {
  2514. source: "./media/characters/elijah/beak-open.svg"
  2515. }
  2516. },
  2517. beakShut: {
  2518. height: math.unit(1.25, "feet"),
  2519. name: "Beak (Shut)",
  2520. image: {
  2521. source: "./media/characters/elijah/beak-shut.svg"
  2522. }
  2523. },
  2524. footFlexing: {
  2525. height: math.unit(1.61, "feet"),
  2526. name: "Foot (Flexing)",
  2527. image: {
  2528. source: "./media/characters/elijah/foot-flexing.svg"
  2529. }
  2530. },
  2531. footStepping: {
  2532. height: math.unit(1.44, "feet"),
  2533. name: "Foot (Stepping)",
  2534. image: {
  2535. source: "./media/characters/elijah/foot-stepping.svg"
  2536. }
  2537. },
  2538. plantigradeLeg: {
  2539. height: math.unit(2.34, "feet"),
  2540. name: "Plantigrade Leg",
  2541. image: {
  2542. source: "./media/characters/elijah/plantigrade-leg.svg"
  2543. }
  2544. },
  2545. plantigradeFootLeft: {
  2546. height: math.unit(0.9, "feet"),
  2547. name: "Plantigrade Foot (Left)",
  2548. image: {
  2549. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2550. }
  2551. },
  2552. plantigradeFootRight: {
  2553. height: math.unit(0.9, "feet"),
  2554. name: "Plantigrade Foot (Right)",
  2555. image: {
  2556. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2557. }
  2558. },
  2559. },
  2560. [
  2561. {
  2562. name: "Normal",
  2563. height: math.unit(1.65, "meters")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(55, "meters"),
  2568. default: true
  2569. },
  2570. {
  2571. name: "Macro+",
  2572. height: math.unit(105, "meters")
  2573. },
  2574. ]
  2575. ))
  2576. characterMakers.push(() => makeCharacter(
  2577. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2578. {
  2579. front: {
  2580. height: math.unit(7 + 2/12, "feet"),
  2581. weight: math.unit(320, "kg"),
  2582. name: "Front",
  2583. image: {
  2584. source: "./media/characters/rai/front.svg",
  2585. extra: 1802/1696,
  2586. bottom: 68/1870
  2587. }
  2588. },
  2589. frontDressed: {
  2590. height: math.unit(7 + 2/12, "feet"),
  2591. weight: math.unit(320, "kg"),
  2592. name: "Front (Dressed)",
  2593. image: {
  2594. source: "./media/characters/rai/front-dressed.svg",
  2595. extra: 1802/1696,
  2596. bottom: 68/1870
  2597. }
  2598. },
  2599. side: {
  2600. height: math.unit(7 + 2/12, "feet"),
  2601. weight: math.unit(320, "kg"),
  2602. name: "Side",
  2603. image: {
  2604. source: "./media/characters/rai/side.svg",
  2605. extra: 1789/1710,
  2606. bottom: 115/1904
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(7 + 2/12, "feet"),
  2611. weight: math.unit(320, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/rai/back.svg",
  2615. extra: 1770/1707,
  2616. bottom: 28/1798
  2617. }
  2618. },
  2619. feral: {
  2620. height: math.unit(9.5, "feet"),
  2621. weight: math.unit(640, "kg"),
  2622. name: "Feral",
  2623. image: {
  2624. source: "./media/characters/rai/feral.svg",
  2625. extra: 945/553,
  2626. bottom: 176/1121
  2627. }
  2628. },
  2629. dragon: {
  2630. height: math.unit(23, "feet"),
  2631. weight: math.unit(50000, "lb"),
  2632. name: "Dragon",
  2633. image: {
  2634. source: "./media/characters/rai/dragon.svg",
  2635. extra: 2498 / 2030,
  2636. bottom: 85.2 / 2584
  2637. }
  2638. },
  2639. maw: {
  2640. height: math.unit(1.69, "feet"),
  2641. name: "Maw",
  2642. image: {
  2643. source: "./media/characters/rai/maw.svg"
  2644. }
  2645. },
  2646. },
  2647. [
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(7 + 2/12, "feet")
  2651. },
  2652. {
  2653. name: "Big",
  2654. height: math.unit(11, "feet")
  2655. },
  2656. {
  2657. name: "Macro",
  2658. height: math.unit(302, "feet"),
  2659. default: true
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2665. {
  2666. frontDressed: {
  2667. height: math.unit(216, "feet"),
  2668. weight: math.unit(7000000, "lb"),
  2669. name: "Front (Dressed)",
  2670. image: {
  2671. source: "./media/characters/jazzy/front-dressed.svg",
  2672. extra: 2738 / 2651,
  2673. bottom: 41.8 / 2786
  2674. }
  2675. },
  2676. backDressed: {
  2677. height: math.unit(216, "feet"),
  2678. weight: math.unit(7000000, "lb"),
  2679. name: "Back (Dressed)",
  2680. image: {
  2681. source: "./media/characters/jazzy/back-dressed.svg",
  2682. extra: 2775 / 2673,
  2683. bottom: 36.8 / 2817
  2684. }
  2685. },
  2686. front: {
  2687. height: math.unit(216, "feet"),
  2688. weight: math.unit(7000000, "lb"),
  2689. name: "Front",
  2690. image: {
  2691. source: "./media/characters/jazzy/front.svg",
  2692. extra: 2738 / 2651,
  2693. bottom: 41.8 / 2786
  2694. }
  2695. },
  2696. back: {
  2697. height: math.unit(216, "feet"),
  2698. weight: math.unit(7000000, "lb"),
  2699. name: "Back",
  2700. image: {
  2701. source: "./media/characters/jazzy/back.svg",
  2702. extra: 2775 / 2673,
  2703. bottom: 36.8 / 2817
  2704. }
  2705. },
  2706. maw: {
  2707. height: math.unit(20, "feet"),
  2708. name: "Maw",
  2709. image: {
  2710. source: "./media/characters/jazzy/maw.svg"
  2711. }
  2712. },
  2713. paws: {
  2714. height: math.unit(27.5, "feet"),
  2715. name: "Paws",
  2716. image: {
  2717. source: "./media/characters/jazzy/paws.svg"
  2718. }
  2719. },
  2720. eye: {
  2721. height: math.unit(4.4, "feet"),
  2722. name: "Eye",
  2723. image: {
  2724. source: "./media/characters/jazzy/eye.svg"
  2725. }
  2726. },
  2727. droneOffense: {
  2728. height: math.unit(9.5, "inches"),
  2729. name: "Drone (Offense)",
  2730. image: {
  2731. source: "./media/characters/jazzy/drone-offense.svg"
  2732. }
  2733. },
  2734. droneRecon: {
  2735. height: math.unit(9.5, "inches"),
  2736. name: "Drone (Recon)",
  2737. image: {
  2738. source: "./media/characters/jazzy/drone-recon.svg"
  2739. }
  2740. },
  2741. droneDefense: {
  2742. height: math.unit(9.5, "inches"),
  2743. name: "Drone (Defense)",
  2744. image: {
  2745. source: "./media/characters/jazzy/drone-defense.svg"
  2746. }
  2747. },
  2748. },
  2749. [
  2750. {
  2751. name: "Macro",
  2752. height: math.unit(216, "feet"),
  2753. default: true
  2754. },
  2755. ]
  2756. ))
  2757. characterMakers.push(() => makeCharacter(
  2758. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2759. {
  2760. front: {
  2761. height: math.unit(9 + 6/12, "feet"),
  2762. weight: math.unit(700, "lb"),
  2763. name: "Front",
  2764. image: {
  2765. source: "./media/characters/flamm/front.svg",
  2766. extra: 1751/1632,
  2767. bottom: 46/1797
  2768. }
  2769. },
  2770. buff: {
  2771. height: math.unit(9 + 6/12, "feet"),
  2772. weight: math.unit(950, "lb"),
  2773. name: "Buff",
  2774. image: {
  2775. source: "./media/characters/flamm/buff.svg",
  2776. extra: 3018/2874,
  2777. bottom: 221/3239
  2778. }
  2779. },
  2780. },
  2781. [
  2782. {
  2783. name: "Normal",
  2784. height: math.unit(9.5, "feet")
  2785. },
  2786. {
  2787. name: "Macro",
  2788. height: math.unit(200, "feet"),
  2789. default: true
  2790. },
  2791. ]
  2792. ))
  2793. characterMakers.push(() => makeCharacter(
  2794. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2795. {
  2796. front: {
  2797. height: math.unit(5 + 3/12, "feet"),
  2798. weight: math.unit(60, "kg"),
  2799. name: "Front",
  2800. image: {
  2801. source: "./media/characters/zephiro/front.svg",
  2802. extra: 2309 / 2162,
  2803. bottom: 0.069
  2804. }
  2805. },
  2806. side: {
  2807. height: math.unit(5 + 3/12, "feet"),
  2808. weight: math.unit(60, "kg"),
  2809. name: "Side",
  2810. image: {
  2811. source: "./media/characters/zephiro/side.svg",
  2812. extra: 2403 / 2279,
  2813. bottom: 0.015
  2814. }
  2815. },
  2816. back: {
  2817. height: math.unit(5 + 3/12, "feet"),
  2818. weight: math.unit(60, "kg"),
  2819. name: "Back",
  2820. image: {
  2821. source: "./media/characters/zephiro/back.svg",
  2822. extra: 2373 / 2244,
  2823. bottom: 0.013
  2824. }
  2825. },
  2826. hand: {
  2827. height: math.unit(0.68, "feet"),
  2828. name: "Hand",
  2829. image: {
  2830. source: "./media/characters/zephiro/hand.svg"
  2831. }
  2832. },
  2833. paw: {
  2834. height: math.unit(1, "feet"),
  2835. name: "Paw",
  2836. image: {
  2837. source: "./media/characters/zephiro/paw.svg"
  2838. }
  2839. },
  2840. beans: {
  2841. height: math.unit(0.93, "feet"),
  2842. name: "Beans",
  2843. image: {
  2844. source: "./media/characters/zephiro/beans.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Micro",
  2851. height: math.unit(3, "inches")
  2852. },
  2853. {
  2854. name: "Normal",
  2855. height: math.unit(5 + 3 / 12, "feet"),
  2856. default: true
  2857. },
  2858. {
  2859. name: "Macro",
  2860. height: math.unit(118, "feet")
  2861. },
  2862. ]
  2863. ))
  2864. characterMakers.push(() => makeCharacter(
  2865. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2866. {
  2867. front: {
  2868. height: math.unit(5, "feet"),
  2869. weight: math.unit(90, "kg"),
  2870. name: "Front",
  2871. image: {
  2872. source: "./media/characters/fory/front.svg",
  2873. extra: 2862 / 2674,
  2874. bottom: 180 / 3043.8
  2875. }
  2876. },
  2877. back: {
  2878. height: math.unit(5, "feet"),
  2879. weight: math.unit(90, "kg"),
  2880. name: "Back",
  2881. image: {
  2882. source: "./media/characters/fory/back.svg",
  2883. extra: 2962 / 2791,
  2884. bottom: 106 / 3071.8
  2885. }
  2886. },
  2887. foot: {
  2888. height: math.unit(2.14, "feet"),
  2889. name: "Foot",
  2890. image: {
  2891. source: "./media/characters/fory/foot.svg"
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(5, "feet")
  2899. },
  2900. {
  2901. name: "Macro",
  2902. height: math.unit(50, "feet"),
  2903. default: true
  2904. },
  2905. {
  2906. name: "Megamacro",
  2907. height: math.unit(10, "miles")
  2908. },
  2909. {
  2910. name: "Gigamacro",
  2911. height: math.unit(5, "earths")
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(7, "feet"),
  2920. weight: math.unit(90, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/kurrikage/front.svg",
  2924. extra: 1845/1733,
  2925. bottom: 119/1964
  2926. }
  2927. },
  2928. back: {
  2929. height: math.unit(7, "feet"),
  2930. weight: math.unit(90, "kg"),
  2931. name: "Back",
  2932. image: {
  2933. source: "./media/characters/kurrikage/back.svg",
  2934. extra: 1790/1677,
  2935. bottom: 61/1851
  2936. }
  2937. },
  2938. dressed: {
  2939. height: math.unit(7, "feet"),
  2940. weight: math.unit(90, "kg"),
  2941. name: "Dressed",
  2942. image: {
  2943. source: "./media/characters/kurrikage/dressed.svg",
  2944. extra: 1845/1733,
  2945. bottom: 119/1964
  2946. }
  2947. },
  2948. foot: {
  2949. height: math.unit(1.5, "feet"),
  2950. name: "Foot",
  2951. image: {
  2952. source: "./media/characters/kurrikage/foot.svg"
  2953. }
  2954. },
  2955. staff: {
  2956. height: math.unit(6.7, "feet"),
  2957. name: "Staff",
  2958. image: {
  2959. source: "./media/characters/kurrikage/staff.svg"
  2960. }
  2961. },
  2962. peek: {
  2963. height: math.unit(1.05, "feet"),
  2964. name: "Peeking",
  2965. image: {
  2966. source: "./media/characters/kurrikage/peek.svg",
  2967. bottom: 0.08
  2968. }
  2969. },
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(12, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Big",
  2979. height: math.unit(20, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(500, "feet")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(20, "miles")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/shingo/front.svg",
  3000. extra: 1900/1825,
  3001. bottom: 82/1982
  3002. }
  3003. },
  3004. side: {
  3005. height: math.unit(6, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Side",
  3008. image: {
  3009. source: "./media/characters/shingo/side.svg",
  3010. extra: 1930/1865,
  3011. bottom: 16/1946
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(6, "feet"),
  3016. weight: math.unit(75, "kg"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/shingo/back.svg",
  3020. extra: 1922/1852,
  3021. bottom: 16/1938
  3022. }
  3023. },
  3024. frontDressed: {
  3025. height: math.unit(6, "feet"),
  3026. weight: math.unit(150, "lb"),
  3027. name: "Front-dressed",
  3028. image: {
  3029. source: "./media/characters/shingo/front-dressed.svg",
  3030. extra: 1900/1825,
  3031. bottom: 82/1982
  3032. }
  3033. },
  3034. paw: {
  3035. height: math.unit(1.29, "feet"),
  3036. name: "Paw",
  3037. image: {
  3038. source: "./media/characters/shingo/paw.svg"
  3039. }
  3040. },
  3041. hand: {
  3042. height: math.unit(1.07, "feet"),
  3043. name: "Hand",
  3044. image: {
  3045. source: "./media/characters/shingo/hand.svg"
  3046. }
  3047. },
  3048. frontAlt: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front (Alt)",
  3052. image: {
  3053. source: "./media/characters/shingo/front-alt.svg",
  3054. extra: 3511 / 3338,
  3055. bottom: 0.005
  3056. }
  3057. },
  3058. frontAlt2: {
  3059. height: math.unit(6, "feet"),
  3060. weight: math.unit(75, "kg"),
  3061. name: "Front (Alt 2)",
  3062. image: {
  3063. source: "./media/characters/shingo/front-alt-2.svg",
  3064. extra: 706/681,
  3065. bottom: 11/717
  3066. }
  3067. },
  3068. pawAlt: {
  3069. height: math.unit(1, "feet"),
  3070. name: "Paw (Alt)",
  3071. image: {
  3072. source: "./media/characters/shingo/paw-alt.svg"
  3073. }
  3074. },
  3075. },
  3076. [
  3077. {
  3078. name: "Micro",
  3079. height: math.unit(4, "inches")
  3080. },
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(6, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Macro",
  3088. height: math.unit(108, "feet")
  3089. },
  3090. {
  3091. name: "Macro+",
  3092. height: math.unit(1500, "feet")
  3093. },
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3098. {
  3099. side: {
  3100. height: math.unit(6, "feet"),
  3101. weight: math.unit(75, "kg"),
  3102. name: "Side",
  3103. image: {
  3104. source: "./media/characters/aigey/side.svg"
  3105. }
  3106. },
  3107. },
  3108. [
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(200, "feet"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Megamacro",
  3116. height: math.unit(100, "miles")
  3117. },
  3118. ]
  3119. )
  3120. )
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(5 + 5 / 12, "feet"),
  3126. weight: math.unit(75, "kg"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/natasha/front.svg",
  3130. extra: 859 / 824,
  3131. bottom: 23 / 879.6
  3132. }
  3133. },
  3134. frontNsfw: {
  3135. height: math.unit(5 + 5 / 12, "feet"),
  3136. weight: math.unit(75, "kg"),
  3137. name: "Front (NSFW)",
  3138. image: {
  3139. source: "./media/characters/natasha/front-nsfw.svg",
  3140. extra: 859 / 824,
  3141. bottom: 23 / 879.6
  3142. }
  3143. },
  3144. frontErect: {
  3145. height: math.unit(5 + 5 / 12, "feet"),
  3146. weight: math.unit(75, "kg"),
  3147. name: "Front (Erect)",
  3148. image: {
  3149. source: "./media/characters/natasha/front-erect.svg",
  3150. extra: 859 / 824,
  3151. bottom: 23 / 879.6
  3152. }
  3153. },
  3154. back: {
  3155. height: math.unit(5 + 5 / 12, "feet"),
  3156. weight: math.unit(75, "kg"),
  3157. name: "Back",
  3158. image: {
  3159. source: "./media/characters/natasha/back.svg",
  3160. extra: 887.9 / 852.6,
  3161. bottom: 9.7 / 896.4
  3162. }
  3163. },
  3164. backAlt: {
  3165. height: math.unit(5 + 5 / 12, "feet"),
  3166. weight: math.unit(75, "kg"),
  3167. name: "Back (Alt)",
  3168. image: {
  3169. source: "./media/characters/natasha/back-alt.svg",
  3170. extra: 1236.7 / 1192,
  3171. bottom: 22.3 / 1258.2
  3172. }
  3173. },
  3174. dick: {
  3175. height: math.unit(1.772, "feet"),
  3176. name: "Dick",
  3177. image: {
  3178. source: "./media/characters/natasha/dick.svg"
  3179. }
  3180. },
  3181. paw: {
  3182. height: math.unit(0.250, "meters"),
  3183. name: "Paw",
  3184. image: {
  3185. source: "./media/characters/natasha/paw.svg"
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(5 + 5 / 12, "feet")
  3193. },
  3194. {
  3195. name: "Large",
  3196. height: math.unit(12, "feet")
  3197. },
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(100, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro+",
  3205. height: math.unit(260, "feet")
  3206. },
  3207. {
  3208. name: "Macro++",
  3209. height: math.unit(1, "mile")
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/malik/front.svg"
  3222. }
  3223. },
  3224. side: {
  3225. height: math.unit(6, "feet"),
  3226. weight: math.unit(75, "kg"),
  3227. name: "Side",
  3228. image: {
  3229. source: "./media/characters/malik/side.svg",
  3230. extra: 1.1539
  3231. }
  3232. },
  3233. back: {
  3234. height: math.unit(6, "feet"),
  3235. weight: math.unit(75, "kg"),
  3236. name: "Back",
  3237. image: {
  3238. source: "./media/characters/malik/back.svg"
  3239. }
  3240. },
  3241. },
  3242. [
  3243. {
  3244. name: "Macro",
  3245. height: math.unit(156, "feet"),
  3246. default: true
  3247. },
  3248. {
  3249. name: "Macro+",
  3250. height: math.unit(1188, "feet")
  3251. },
  3252. ]
  3253. ))
  3254. characterMakers.push(() => makeCharacter(
  3255. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3256. {
  3257. front: {
  3258. height: math.unit(6, "feet"),
  3259. weight: math.unit(75, "kg"),
  3260. name: "Front",
  3261. image: {
  3262. source: "./media/characters/sefer/front.svg",
  3263. extra: 848 / 659,
  3264. bottom: 28.3 / 876.442
  3265. }
  3266. },
  3267. back: {
  3268. height: math.unit(6, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back",
  3271. image: {
  3272. source: "./media/characters/sefer/back.svg",
  3273. extra: 864 / 695,
  3274. bottom: 10 / 871
  3275. }
  3276. },
  3277. frontDressed: {
  3278. height: math.unit(6, "feet"),
  3279. weight: math.unit(75, "kg"),
  3280. name: "Front (Dressed)",
  3281. image: {
  3282. source: "./media/characters/sefer/front-dressed.svg",
  3283. extra: 839 / 653,
  3284. bottom: 37.6 / 878
  3285. }
  3286. },
  3287. },
  3288. [
  3289. {
  3290. name: "Normal",
  3291. height: math.unit(6, "feet"),
  3292. default: true
  3293. },
  3294. ]
  3295. ))
  3296. characterMakers.push(() => makeCharacter(
  3297. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3298. {
  3299. body: {
  3300. height: math.unit(2.2428, "meter"),
  3301. weight: math.unit(124.738, "kg"),
  3302. name: "Body",
  3303. image: {
  3304. extra: 1225 / 1050,
  3305. source: "./media/characters/north/front.svg"
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Micro",
  3312. height: math.unit(4, "inches")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(63, "meters")
  3317. },
  3318. {
  3319. name: "Megamacro",
  3320. height: math.unit(101, "miles"),
  3321. default: true
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3327. {
  3328. angled: {
  3329. height: math.unit(4, "meter"),
  3330. weight: math.unit(150, "kg"),
  3331. name: "Angled",
  3332. image: {
  3333. source: "./media/characters/talan/angled-sfw.svg",
  3334. bottom: 29 / 3734
  3335. }
  3336. },
  3337. angledNsfw: {
  3338. height: math.unit(4, "meter"),
  3339. weight: math.unit(150, "kg"),
  3340. name: "Angled (NSFW)",
  3341. image: {
  3342. source: "./media/characters/talan/angled-nsfw.svg",
  3343. bottom: 29 / 3734
  3344. }
  3345. },
  3346. frontNsfw: {
  3347. height: math.unit(4, "meter"),
  3348. weight: math.unit(150, "kg"),
  3349. name: "Front (NSFW)",
  3350. image: {
  3351. source: "./media/characters/talan/front-nsfw.svg",
  3352. bottom: 29 / 3734
  3353. }
  3354. },
  3355. sideNsfw: {
  3356. height: math.unit(4, "meter"),
  3357. weight: math.unit(150, "kg"),
  3358. name: "Side (NSFW)",
  3359. image: {
  3360. source: "./media/characters/talan/side-nsfw.svg",
  3361. bottom: 29 / 3734
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(4, "meter"),
  3366. weight: math.unit(150, "kg"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/talan/back.svg"
  3370. }
  3371. },
  3372. dickBottom: {
  3373. height: math.unit(0.621, "meter"),
  3374. name: "Dick (Bottom)",
  3375. image: {
  3376. source: "./media/characters/talan/dick-bottom.svg"
  3377. }
  3378. },
  3379. dickTop: {
  3380. height: math.unit(0.621, "meter"),
  3381. name: "Dick (Top)",
  3382. image: {
  3383. source: "./media/characters/talan/dick-top.svg"
  3384. }
  3385. },
  3386. dickSide: {
  3387. height: math.unit(0.305, "meter"),
  3388. name: "Dick (Side)",
  3389. image: {
  3390. source: "./media/characters/talan/dick-side.svg"
  3391. }
  3392. },
  3393. dickFront: {
  3394. height: math.unit(0.305, "meter"),
  3395. name: "Dick (Front)",
  3396. image: {
  3397. source: "./media/characters/talan/dick-front.svg"
  3398. }
  3399. },
  3400. },
  3401. [
  3402. {
  3403. name: "Normal",
  3404. height: math.unit(4, "meters")
  3405. },
  3406. {
  3407. name: "Macro",
  3408. height: math.unit(100, "meters")
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(2, "miles"),
  3413. default: true
  3414. },
  3415. {
  3416. name: "Gigamacro",
  3417. height: math.unit(5000, "miles")
  3418. },
  3419. {
  3420. name: "Teramacro",
  3421. height: math.unit(100, "parsecs")
  3422. }
  3423. ]
  3424. ))
  3425. characterMakers.push(() => makeCharacter(
  3426. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3427. {
  3428. front: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(90, "kg"),
  3431. name: "Front",
  3432. image: {
  3433. source: "./media/characters/gael'rathus/front.svg"
  3434. }
  3435. },
  3436. frontAlt: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Front (alt)",
  3440. image: {
  3441. source: "./media/characters/gael'rathus/front-alt.svg"
  3442. }
  3443. },
  3444. frontAlt2: {
  3445. height: math.unit(2, "meter"),
  3446. weight: math.unit(90, "kg"),
  3447. name: "Front (alt 2)",
  3448. image: {
  3449. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3450. }
  3451. }
  3452. },
  3453. [
  3454. {
  3455. name: "Normal",
  3456. height: math.unit(9, "feet"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Large",
  3461. height: math.unit(25, "feet")
  3462. },
  3463. {
  3464. name: "Macro",
  3465. height: math.unit(0.25, "miles")
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(10, "miles")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3475. {
  3476. side: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(140, "kg"),
  3479. name: "Side",
  3480. image: {
  3481. source: "./media/characters/sosha/side.svg",
  3482. bottom: 0.042
  3483. }
  3484. },
  3485. },
  3486. [
  3487. {
  3488. name: "Normal",
  3489. height: math.unit(12, "feet"),
  3490. default: true
  3491. }
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3496. {
  3497. side: {
  3498. height: math.unit(5 + 5 / 12, "feet"),
  3499. weight: math.unit(170, "kg"),
  3500. name: "Side",
  3501. image: {
  3502. source: "./media/characters/runnola/side.svg",
  3503. extra: 741 / 448,
  3504. bottom: 0.05
  3505. }
  3506. },
  3507. },
  3508. [
  3509. {
  3510. name: "Small",
  3511. height: math.unit(3, "feet")
  3512. },
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(5 + 5 / 12, "feet"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Big",
  3520. height: math.unit(10, "feet")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(50, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/kurribird/front.svg",
  3533. bottom: 0.015
  3534. }
  3535. },
  3536. frontAlt: {
  3537. height: math.unit(1.5, "meter"),
  3538. weight: math.unit(50, "kg"),
  3539. name: "Front (Alt)",
  3540. image: {
  3541. source: "./media/characters/kurribird/front-alt.svg",
  3542. extra: 1.45
  3543. }
  3544. },
  3545. },
  3546. [
  3547. {
  3548. name: "Normal",
  3549. height: math.unit(7, "feet")
  3550. },
  3551. {
  3552. name: "Big",
  3553. height: math.unit(12, "feet"),
  3554. default: true
  3555. },
  3556. {
  3557. name: "Macro",
  3558. height: math.unit(1500, "feet")
  3559. },
  3560. {
  3561. name: "Megamacro",
  3562. height: math.unit(2, "miles")
  3563. }
  3564. ]
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(80, "kg"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/elbial/front.svg",
  3575. extra: 1643 / 1556,
  3576. bottom: 60.2 / 1696
  3577. }
  3578. },
  3579. side: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(80, "kg"),
  3582. name: "Side",
  3583. image: {
  3584. source: "./media/characters/elbial/side.svg",
  3585. extra: 1601/1528,
  3586. bottom: 97/1698
  3587. }
  3588. },
  3589. back: {
  3590. height: math.unit(2, "meter"),
  3591. weight: math.unit(80, "kg"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/elbial/back.svg",
  3595. extra: 1653/1569,
  3596. bottom: 20/1673
  3597. }
  3598. },
  3599. frontDressed: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(80, "kg"),
  3602. name: "Front (Dressed)",
  3603. image: {
  3604. source: "./media/characters/elbial/front-dressed.svg",
  3605. extra: 1638/1569,
  3606. bottom: 70/1708
  3607. }
  3608. },
  3609. genitals: {
  3610. height: math.unit(2 / 3.367, "meter"),
  3611. name: "Genitals",
  3612. image: {
  3613. source: "./media/characters/elbial/genitals.svg"
  3614. }
  3615. },
  3616. },
  3617. [
  3618. {
  3619. name: "Large",
  3620. height: math.unit(100, "feet")
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(500, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(10, "miles")
  3630. },
  3631. {
  3632. name: "Gigamacro",
  3633. height: math.unit(25000, "miles")
  3634. },
  3635. {
  3636. name: "Full-Size",
  3637. height: math.unit(8000000, "gigaparsecs")
  3638. }
  3639. ]
  3640. ))
  3641. characterMakers.push(() => makeCharacter(
  3642. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3643. {
  3644. front: {
  3645. height: math.unit(2, "meter"),
  3646. weight: math.unit(60, "kg"),
  3647. name: "Front",
  3648. image: {
  3649. source: "./media/characters/noah/front.svg"
  3650. }
  3651. },
  3652. talons: {
  3653. height: math.unit(0.315, "meter"),
  3654. name: "Talons",
  3655. image: {
  3656. source: "./media/characters/noah/talons.svg"
  3657. }
  3658. }
  3659. },
  3660. [
  3661. {
  3662. name: "Large",
  3663. height: math.unit(50, "feet")
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(750, "feet"),
  3668. default: true
  3669. },
  3670. {
  3671. name: "Megamacro",
  3672. height: math.unit(50, "miles")
  3673. },
  3674. {
  3675. name: "Gigamacro",
  3676. height: math.unit(100000, "miles")
  3677. },
  3678. {
  3679. name: "Full-Size",
  3680. height: math.unit(3000000000, "miles")
  3681. }
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(80, "kg"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/natalya/front.svg"
  3693. }
  3694. },
  3695. back: {
  3696. height: math.unit(2, "meter"),
  3697. weight: math.unit(80, "kg"),
  3698. name: "Back",
  3699. image: {
  3700. source: "./media/characters/natalya/back.svg"
  3701. }
  3702. }
  3703. },
  3704. [
  3705. {
  3706. name: "Normal",
  3707. height: math.unit(150, "feet"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Megamacro",
  3712. height: math.unit(5, "miles")
  3713. },
  3714. {
  3715. name: "Full-Size",
  3716. height: math.unit(600, "kiloparsecs")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2, "meter"),
  3725. weight: math.unit(50, "kg"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/erestrebah/front.svg",
  3729. extra: 1262/1162,
  3730. bottom: 96/1358
  3731. }
  3732. },
  3733. back: {
  3734. height: math.unit(2, "meter"),
  3735. weight: math.unit(50, "kg"),
  3736. name: "Back",
  3737. image: {
  3738. source: "./media/characters/erestrebah/back.svg",
  3739. extra: 1257/1139,
  3740. bottom: 13/1270
  3741. }
  3742. },
  3743. wing: {
  3744. height: math.unit(2, "meter"),
  3745. weight: math.unit(50, "kg"),
  3746. name: "Wing",
  3747. image: {
  3748. source: "./media/characters/erestrebah/wing.svg",
  3749. extra: 1262/1162,
  3750. bottom: 96/1358
  3751. }
  3752. },
  3753. mouth: {
  3754. height: math.unit(0.39, "feet"),
  3755. name: "Mouth",
  3756. image: {
  3757. source: "./media/characters/erestrebah/mouth.svg"
  3758. }
  3759. }
  3760. },
  3761. [
  3762. {
  3763. name: "Normal",
  3764. height: math.unit(10, "feet")
  3765. },
  3766. {
  3767. name: "Large",
  3768. height: math.unit(50, "feet"),
  3769. default: true
  3770. },
  3771. {
  3772. name: "Macro",
  3773. height: math.unit(300, "feet")
  3774. },
  3775. {
  3776. name: "Macro+",
  3777. height: math.unit(750, "feet")
  3778. },
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(3, "miles")
  3782. }
  3783. ]
  3784. ))
  3785. characterMakers.push(() => makeCharacter(
  3786. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3787. {
  3788. front: {
  3789. height: math.unit(2, "meter"),
  3790. weight: math.unit(80, "kg"),
  3791. name: "Front",
  3792. image: {
  3793. source: "./media/characters/jennifer/front.svg",
  3794. bottom: 0.11,
  3795. extra: 1.16
  3796. }
  3797. },
  3798. frontAlt: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(80, "kg"),
  3801. name: "Front (Alt)",
  3802. image: {
  3803. source: "./media/characters/jennifer/front-alt.svg"
  3804. }
  3805. }
  3806. },
  3807. [
  3808. {
  3809. name: "Canon Height",
  3810. height: math.unit(120, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Macro+",
  3815. height: math.unit(300, "feet")
  3816. },
  3817. {
  3818. name: "Megamacro",
  3819. height: math.unit(20000, "feet")
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(2, "meter"),
  3828. weight: math.unit(50, "kg"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/kalista/front.svg",
  3832. extra: 1314/1145,
  3833. bottom: 101/1415
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(2, "meter"),
  3838. weight: math.unit(50, "kg"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/kalista/back.svg",
  3842. extra: 1366 / 1156,
  3843. bottom: 33.9 / 1362.78
  3844. }
  3845. }
  3846. },
  3847. [
  3848. {
  3849. name: "Uncomfortably Small",
  3850. height: math.unit(10, "feet")
  3851. },
  3852. {
  3853. name: "Small",
  3854. height: math.unit(30, "feet")
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(100, "feet"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Macro+",
  3863. height: math.unit(2000, "feet")
  3864. },
  3865. {
  3866. name: "True Form",
  3867. height: math.unit(8924, "miles")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(120, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/ggv/front.svg"
  3880. }
  3881. },
  3882. side: {
  3883. height: math.unit(2, "meter"),
  3884. weight: math.unit(120, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/ggv/side.svg"
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Extremely Puny",
  3894. height: math.unit(9 + 5 / 12, "feet")
  3895. },
  3896. {
  3897. name: "Horribly Small",
  3898. height: math.unit(47.7, "miles"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Reasonably Sized",
  3903. height: math.unit(25000, "parsecs")
  3904. },
  3905. {
  3906. name: "Slightly Uncompressed",
  3907. height: math.unit(7.77e31, "parsecs")
  3908. },
  3909. {
  3910. name: "Omniversal",
  3911. height: math.unit(1e300, "meters")
  3912. },
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3917. {
  3918. front: {
  3919. height: math.unit(2, "meter"),
  3920. weight: math.unit(75, "lb"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/napalm/front.svg"
  3924. }
  3925. },
  3926. back: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(75, "lb"),
  3929. name: "Back",
  3930. image: {
  3931. source: "./media/characters/napalm/back.svg"
  3932. }
  3933. }
  3934. },
  3935. [
  3936. {
  3937. name: "Standard",
  3938. height: math.unit(55, "feet"),
  3939. default: true
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(7 + 5 / 6, "feet"),
  3948. weight: math.unit(325, "lb"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/asana/front.svg",
  3952. extra: 1133 / 1060,
  3953. bottom: 15.2 / 1148.6
  3954. }
  3955. },
  3956. back: {
  3957. height: math.unit(7 + 5 / 6, "feet"),
  3958. weight: math.unit(325, "lb"),
  3959. name: "Back",
  3960. image: {
  3961. source: "./media/characters/asana/back.svg",
  3962. extra: 1114 / 1043,
  3963. bottom: 5 / 1120
  3964. }
  3965. },
  3966. dressedDark: {
  3967. height: math.unit(7 + 5 / 6, "feet"),
  3968. weight: math.unit(325, "lb"),
  3969. name: "Dressed (Dark)",
  3970. image: {
  3971. source: "./media/characters/asana/dressed-dark.svg",
  3972. extra: 1133 / 1060,
  3973. bottom: 15.2 / 1148.6
  3974. }
  3975. },
  3976. dressedLight: {
  3977. height: math.unit(7 + 5 / 6, "feet"),
  3978. weight: math.unit(325, "lb"),
  3979. name: "Dressed (Light)",
  3980. image: {
  3981. source: "./media/characters/asana/dressed-light.svg",
  3982. extra: 1133 / 1060,
  3983. bottom: 15.2 / 1148.6
  3984. }
  3985. },
  3986. },
  3987. [
  3988. {
  3989. name: "Standard",
  3990. height: math.unit(7 + 5 / 6, "feet"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Large",
  3995. height: math.unit(10, "meters")
  3996. },
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(2500, "meters")
  4000. },
  4001. {
  4002. name: "Megamacro",
  4003. height: math.unit(5e6, "meters")
  4004. },
  4005. {
  4006. name: "Examacro",
  4007. height: math.unit(5e12, "lightyears")
  4008. },
  4009. {
  4010. name: "Max Size",
  4011. height: math.unit(1e31, "lightyears")
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(2, "meter"),
  4020. weight: math.unit(60, "kg"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/ebony/front.svg",
  4024. bottom: 0.03,
  4025. extra: 1045 / 810 + 0.03
  4026. }
  4027. },
  4028. side: {
  4029. height: math.unit(2, "meter"),
  4030. weight: math.unit(60, "kg"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/ebony/side.svg",
  4034. bottom: 0.03,
  4035. extra: 1045 / 810 + 0.03
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(2, "meter"),
  4040. weight: math.unit(60, "kg"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/ebony/back.svg",
  4044. bottom: 0.01,
  4045. extra: 1045 / 810 + 0.01
  4046. }
  4047. },
  4048. },
  4049. [
  4050. // TODO check why I did this lol
  4051. {
  4052. name: "Standard",
  4053. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(200, "feet")
  4059. },
  4060. {
  4061. name: "Gigamacro",
  4062. height: math.unit(13000, "km")
  4063. }
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(6, "feet"),
  4071. weight: math.unit(175, "lb"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/mountain/front.svg",
  4075. extra: 972 / 955,
  4076. bottom: 64 / 1036.6
  4077. }
  4078. },
  4079. back: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(175, "lb"),
  4082. name: "Back",
  4083. image: {
  4084. source: "./media/characters/mountain/back.svg",
  4085. extra: 970 / 950,
  4086. bottom: 28.25 / 999
  4087. }
  4088. },
  4089. },
  4090. [
  4091. {
  4092. name: "Large",
  4093. height: math.unit(20, "meters")
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(300, "meters")
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(10000, "km"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Examacro",
  4106. height: math.unit(10e9, "lightyears")
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(8, "feet"),
  4115. weight: math.unit(500, "lb"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/rick/front.svg"
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(8, "feet"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(5, "km")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(8, "feet"),
  4139. weight: math.unit(120, "lb"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/ona/front.svg"
  4143. }
  4144. },
  4145. frontAlt: {
  4146. height: math.unit(8, "feet"),
  4147. weight: math.unit(120, "lb"),
  4148. name: "Front (Alt)",
  4149. image: {
  4150. source: "./media/characters/ona/front-alt.svg"
  4151. }
  4152. },
  4153. back: {
  4154. height: math.unit(8, "feet"),
  4155. weight: math.unit(120, "lb"),
  4156. name: "Back",
  4157. image: {
  4158. source: "./media/characters/ona/back.svg"
  4159. }
  4160. },
  4161. foot: {
  4162. height: math.unit(1.1, "feet"),
  4163. name: "Foot",
  4164. image: {
  4165. source: "./media/characters/ona/foot.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Megamacro",
  4172. height: math.unit(70, "km"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Gigamacro",
  4177. height: math.unit(681818, "miles")
  4178. },
  4179. {
  4180. name: "Examacro",
  4181. height: math.unit(3800000, "lightyears")
  4182. },
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4187. {
  4188. front: {
  4189. height: math.unit(12, "feet"),
  4190. weight: math.unit(3000, "lb"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/mech/front.svg",
  4194. extra: 2900 / 2770,
  4195. bottom: 110 / 3010
  4196. }
  4197. },
  4198. back: {
  4199. height: math.unit(12, "feet"),
  4200. weight: math.unit(3000, "lb"),
  4201. name: "Back",
  4202. image: {
  4203. source: "./media/characters/mech/back.svg",
  4204. extra: 3011 / 2890,
  4205. bottom: 94 / 3105
  4206. }
  4207. },
  4208. maw: {
  4209. height: math.unit(3.07, "feet"),
  4210. name: "Maw",
  4211. image: {
  4212. source: "./media/characters/mech/maw.svg"
  4213. }
  4214. },
  4215. head: {
  4216. height: math.unit(2.82, "feet"),
  4217. name: "Head",
  4218. image: {
  4219. source: "./media/characters/mech/head.svg"
  4220. }
  4221. },
  4222. dick: {
  4223. height: math.unit(1.43, "feet"),
  4224. name: "Dick",
  4225. image: {
  4226. source: "./media/characters/mech/dick.svg"
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(12, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(300, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Macro+",
  4242. height: math.unit(1500, "feet")
  4243. },
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4248. {
  4249. front: {
  4250. height: math.unit(1.3, "meter"),
  4251. weight: math.unit(30, "kg"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/gregory/front.svg",
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Normal",
  4261. height: math.unit(1.3, "meter"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "Macro",
  4266. height: math.unit(20, "meter")
  4267. }
  4268. ]
  4269. ))
  4270. characterMakers.push(() => makeCharacter(
  4271. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4272. {
  4273. front: {
  4274. height: math.unit(2.8, "meter"),
  4275. weight: math.unit(200, "kg"),
  4276. name: "Front",
  4277. image: {
  4278. source: "./media/characters/elory/front.svg",
  4279. }
  4280. }
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(2.8, "meter"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(38, "meter")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(470, "feet"),
  4299. weight: math.unit(924, "tons"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/angelpatamon/front.svg",
  4303. }
  4304. }
  4305. },
  4306. [
  4307. {
  4308. name: "Normal",
  4309. height: math.unit(470, "feet"),
  4310. default: true
  4311. },
  4312. {
  4313. name: "Deity Size I",
  4314. height: math.unit(28651.2, "km")
  4315. },
  4316. {
  4317. name: "Deity Size II",
  4318. height: math.unit(171907.2, "km")
  4319. }
  4320. ]
  4321. ))
  4322. characterMakers.push(() => makeCharacter(
  4323. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4324. {
  4325. side: {
  4326. height: math.unit(7.2, "meter"),
  4327. weight: math.unit(8.2, "tons"),
  4328. name: "Side",
  4329. image: {
  4330. source: "./media/characters/cryae/side.svg",
  4331. extra: 3500 / 1500
  4332. }
  4333. }
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(7.2, "meter"),
  4339. default: true
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(175, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/xera/front.svg",
  4352. extra: 2377 / 1972,
  4353. bottom: 75.5 / 2452
  4354. }
  4355. },
  4356. side: {
  4357. height: math.unit(6, "feet"),
  4358. weight: math.unit(175, "lb"),
  4359. name: "Side",
  4360. image: {
  4361. source: "./media/characters/xera/side.svg",
  4362. extra: 2345 / 2019,
  4363. bottom: 39.7 / 2384
  4364. }
  4365. },
  4366. back: {
  4367. height: math.unit(6, "feet"),
  4368. weight: math.unit(175, "lb"),
  4369. name: "Back",
  4370. image: {
  4371. source: "./media/characters/xera/back.svg",
  4372. extra: 2095 / 1984,
  4373. bottom: 67 / 2166
  4374. }
  4375. },
  4376. },
  4377. [
  4378. {
  4379. name: "Small",
  4380. height: math.unit(10, "feet")
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(500, "meters"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Macro+",
  4389. height: math.unit(10, "km")
  4390. },
  4391. {
  4392. name: "Gigamacro",
  4393. height: math.unit(25000, "km")
  4394. },
  4395. {
  4396. name: "Teramacro",
  4397. height: math.unit(3e6, "km")
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4403. {
  4404. front: {
  4405. height: math.unit(6, "feet"),
  4406. weight: math.unit(175, "lb"),
  4407. name: "Front",
  4408. image: {
  4409. source: "./media/characters/nebula/front.svg",
  4410. extra: 2566 / 2362,
  4411. bottom: 81 / 2644
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Small",
  4418. height: math.unit(4.5, "meters")
  4419. },
  4420. {
  4421. name: "Macro",
  4422. height: math.unit(1500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "Megamacro",
  4427. height: math.unit(150, "km")
  4428. },
  4429. {
  4430. name: "Gigamacro",
  4431. height: math.unit(27000, "km")
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(6, "feet"),
  4440. weight: math.unit(225, "lb"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/abysgar/front.svg"
  4444. }
  4445. }
  4446. },
  4447. [
  4448. {
  4449. name: "Small",
  4450. height: math.unit(4.5, "meters")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(1250, "meters"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(125, "km")
  4460. },
  4461. {
  4462. name: "Gigamacro",
  4463. height: math.unit(26000, "km")
  4464. }
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(6, "feet"),
  4472. weight: math.unit(180, "lb"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/yakuz/front.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Small",
  4482. height: math.unit(5, "meters")
  4483. },
  4484. {
  4485. name: "Macro",
  4486. height: math.unit(1500, "meters"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Megamacro",
  4491. height: math.unit(200, "km")
  4492. },
  4493. {
  4494. name: "Gigamacro",
  4495. height: math.unit(100000, "km")
  4496. }
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(6, "feet"),
  4504. weight: math.unit(175, "lb"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/mirova/front.svg",
  4508. extra: 3334 / 3071,
  4509. bottom: 42 / 3375.6
  4510. }
  4511. }
  4512. },
  4513. [
  4514. {
  4515. name: "Small",
  4516. height: math.unit(5, "meters")
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(900, "meters"),
  4521. default: true
  4522. },
  4523. {
  4524. name: "Megamacro",
  4525. height: math.unit(135, "km")
  4526. },
  4527. {
  4528. name: "Gigamacro",
  4529. height: math.unit(20000, "km")
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4535. {
  4536. side: {
  4537. height: math.unit(28.35, "feet"),
  4538. weight: math.unit(99.75, "tons"),
  4539. name: "Side",
  4540. image: {
  4541. source: "./media/characters/asana-mech/side.svg",
  4542. extra: 923 / 699,
  4543. bottom: 50 / 975
  4544. }
  4545. },
  4546. chaingun: {
  4547. height: math.unit(7, "feet"),
  4548. weight: math.unit(2400, "lb"),
  4549. name: "Chaingun",
  4550. image: {
  4551. source: "./media/characters/asana-mech/chaingun.svg"
  4552. }
  4553. },
  4554. laser: {
  4555. height: math.unit(7.12, "feet"),
  4556. weight: math.unit(2000, "lb"),
  4557. name: "Laser",
  4558. image: {
  4559. source: "./media/characters/asana-mech/laser.svg"
  4560. }
  4561. },
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(28.35, "feet"),
  4567. default: true
  4568. },
  4569. {
  4570. name: "Macro",
  4571. height: math.unit(2500, "feet")
  4572. },
  4573. {
  4574. name: "Megamacro",
  4575. height: math.unit(25, "miles")
  4576. },
  4577. {
  4578. name: "Examacro",
  4579. height: math.unit(6e8, "lightyears")
  4580. },
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4585. {
  4586. front: {
  4587. height: math.unit(5, "meters"),
  4588. weight: math.unit(1000, "kg"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/asche/front.svg",
  4592. extra: 1258 / 1190,
  4593. bottom: 47 / 1305
  4594. }
  4595. },
  4596. frontUnderwear: {
  4597. height: math.unit(5, "meters"),
  4598. weight: math.unit(1000, "kg"),
  4599. name: "Front (Underwear)",
  4600. image: {
  4601. source: "./media/characters/asche/front-underwear.svg",
  4602. extra: 1258 / 1190,
  4603. bottom: 47 / 1305
  4604. }
  4605. },
  4606. frontDressed: {
  4607. height: math.unit(5, "meters"),
  4608. weight: math.unit(1000, "kg"),
  4609. name: "Front (Dressed)",
  4610. image: {
  4611. source: "./media/characters/asche/front-dressed.svg",
  4612. extra: 1258 / 1190,
  4613. bottom: 47 / 1305
  4614. }
  4615. },
  4616. frontArmor: {
  4617. height: math.unit(5, "meters"),
  4618. weight: math.unit(1000, "kg"),
  4619. name: "Front (Armored)",
  4620. image: {
  4621. source: "./media/characters/asche/front-armored.svg",
  4622. extra: 1374 / 1308,
  4623. bottom: 23 / 1397
  4624. }
  4625. },
  4626. mp724: {
  4627. height: math.unit(0.96, "meters"),
  4628. weight: math.unit(38, "kg"),
  4629. name: "H&K MP724",
  4630. image: {
  4631. source: "./media/characters/asche/h&k-mp724.svg"
  4632. }
  4633. },
  4634. side: {
  4635. height: math.unit(5, "meters"),
  4636. weight: math.unit(1000, "kg"),
  4637. name: "Side",
  4638. image: {
  4639. source: "./media/characters/asche/side.svg",
  4640. extra: 1717 / 1609,
  4641. bottom: 0.005
  4642. }
  4643. },
  4644. back: {
  4645. height: math.unit(5, "meters"),
  4646. weight: math.unit(1000, "kg"),
  4647. name: "Back",
  4648. image: {
  4649. source: "./media/characters/asche/back.svg",
  4650. extra: 1570 / 1501
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "DEFCON 5",
  4657. height: math.unit(5, "meters")
  4658. },
  4659. {
  4660. name: "DEFCON 4",
  4661. height: math.unit(500, "meters"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "DEFCON 3",
  4666. height: math.unit(5, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 2",
  4670. height: math.unit(500, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 1",
  4674. height: math.unit(500000, "km")
  4675. },
  4676. {
  4677. name: "DEFCON 0",
  4678. height: math.unit(3, "gigaparsecs")
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4684. {
  4685. front: {
  4686. height: math.unit(2, "meters"),
  4687. weight: math.unit(76, "kg"),
  4688. name: "Front",
  4689. image: {
  4690. source: "./media/characters/gale/front.svg"
  4691. }
  4692. },
  4693. frontAlt1: {
  4694. height: math.unit(2, "meters"),
  4695. weight: math.unit(76, "kg"),
  4696. name: "Front (Alt 1)",
  4697. image: {
  4698. source: "./media/characters/gale/front-alt-1.svg"
  4699. }
  4700. },
  4701. frontAlt2: {
  4702. height: math.unit(2, "meters"),
  4703. weight: math.unit(76, "kg"),
  4704. name: "Front (Alt 2)",
  4705. image: {
  4706. source: "./media/characters/gale/front-alt-2.svg"
  4707. }
  4708. },
  4709. },
  4710. [
  4711. {
  4712. name: "Normal",
  4713. height: math.unit(7, "feet")
  4714. },
  4715. {
  4716. name: "Macro",
  4717. height: math.unit(150, "feet"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "Macro+",
  4722. height: math.unit(300, "feet")
  4723. },
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4728. {
  4729. front: {
  4730. height: math.unit(5 + 10/12, "feet"),
  4731. weight: math.unit(67, "kg"),
  4732. name: "Front",
  4733. image: {
  4734. source: "./media/characters/draylen/front.svg",
  4735. extra: 832/777,
  4736. bottom: 85/917
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Normal",
  4743. height: math.unit(5 + 10/12, "feet")
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(150, "feet"),
  4748. default: true
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(7 + 9 / 12, "feet"),
  4757. weight: math.unit(379, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/chez/front.svg"
  4761. }
  4762. },
  4763. side: {
  4764. height: math.unit(7 + 9 / 12, "feet"),
  4765. weight: math.unit(379, "lbs"),
  4766. name: "Side",
  4767. image: {
  4768. source: "./media/characters/chez/side.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Normal",
  4775. height: math.unit(7 + 9 / 12, "feet"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "God King",
  4780. height: math.unit(9750000, "meters")
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(275, "lbs"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/kaylum/front.svg",
  4793. bottom: 0.01,
  4794. extra: 1166 / 1031
  4795. }
  4796. },
  4797. frontWingless: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(275, "lbs"),
  4800. name: "Front (Wingless)",
  4801. image: {
  4802. source: "./media/characters/kaylum/front-wingless.svg",
  4803. bottom: 0.01,
  4804. extra: 1117 / 1031
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(3.05, "meters")
  4812. },
  4813. {
  4814. name: "Master",
  4815. height: math.unit(5.5, "meters")
  4816. },
  4817. {
  4818. name: "Rampage",
  4819. height: math.unit(19, "meters")
  4820. },
  4821. {
  4822. name: "Macro Lite",
  4823. height: math.unit(37, "meters")
  4824. },
  4825. {
  4826. name: "Hyper Predator",
  4827. height: math.unit(61, "meters")
  4828. },
  4829. {
  4830. name: "Macro",
  4831. height: math.unit(138, "meters"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(5 + 5 / 12, "feet"),
  4841. weight: math.unit(120, "lbs"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/geta/front.svg",
  4845. extra: 1003/933,
  4846. bottom: 21/1024
  4847. }
  4848. },
  4849. paw: {
  4850. height: math.unit(0.35, "feet"),
  4851. name: "Paw",
  4852. image: {
  4853. source: "./media/characters/geta/paw.svg"
  4854. }
  4855. },
  4856. },
  4857. [
  4858. {
  4859. name: "Micro",
  4860. height: math.unit(3, "inches"),
  4861. default: true
  4862. },
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(5 + 5 / 12, "feet")
  4866. }
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4871. {
  4872. front: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(300, "lbs"),
  4875. name: "Front",
  4876. image: {
  4877. source: "./media/characters/tyrnn/front.svg"
  4878. }
  4879. }
  4880. },
  4881. [
  4882. {
  4883. name: "Main Height",
  4884. height: math.unit(355, "feet"),
  4885. default: true
  4886. },
  4887. {
  4888. name: "Fave. Height",
  4889. height: math.unit(2400, "feet")
  4890. }
  4891. ]
  4892. ))
  4893. characterMakers.push(() => makeCharacter(
  4894. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4895. {
  4896. front: {
  4897. height: math.unit(6, "feet"),
  4898. weight: math.unit(300, "lbs"),
  4899. name: "Front",
  4900. image: {
  4901. source: "./media/characters/appledectomy/front.svg"
  4902. }
  4903. }
  4904. },
  4905. [
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(2500, "feet")
  4909. },
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(50, "miles"),
  4913. default: true
  4914. },
  4915. {
  4916. name: "Gigamacro",
  4917. height: math.unit(5000, "miles")
  4918. },
  4919. {
  4920. name: "Teramacro",
  4921. height: math.unit(250000, "miles")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(200, "lbs"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/vulpes/front.svg",
  4934. extra: 573 / 543,
  4935. bottom: 0.033
  4936. }
  4937. },
  4938. side: {
  4939. height: math.unit(6, "feet"),
  4940. weight: math.unit(200, "lbs"),
  4941. name: "Side",
  4942. image: {
  4943. source: "./media/characters/vulpes/side.svg",
  4944. extra: 577 / 549,
  4945. bottom: 11 / 588
  4946. }
  4947. },
  4948. back: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(200, "lbs"),
  4951. name: "Back",
  4952. image: {
  4953. source: "./media/characters/vulpes/back.svg",
  4954. extra: 573 / 549,
  4955. bottom: 20 / 593
  4956. }
  4957. },
  4958. feet: {
  4959. height: math.unit(1.276, "feet"),
  4960. name: "Feet",
  4961. image: {
  4962. source: "./media/characters/vulpes/feet.svg"
  4963. }
  4964. },
  4965. maw: {
  4966. height: math.unit(1.18, "feet"),
  4967. name: "Maw",
  4968. image: {
  4969. source: "./media/characters/vulpes/maw.svg"
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Micro",
  4976. height: math.unit(2, "inches")
  4977. },
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(6.3, "feet")
  4981. },
  4982. {
  4983. name: "Macro",
  4984. height: math.unit(850, "feet")
  4985. },
  4986. {
  4987. name: "Megamacro",
  4988. height: math.unit(7500, "feet"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Gigamacro",
  4993. height: math.unit(570000, "miles")
  4994. }
  4995. ]
  4996. ))
  4997. characterMakers.push(() => makeCharacter(
  4998. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4999. {
  5000. front: {
  5001. height: math.unit(6, "feet"),
  5002. weight: math.unit(210, "lbs"),
  5003. name: "Front",
  5004. image: {
  5005. source: "./media/characters/rain-fallen/front.svg"
  5006. }
  5007. },
  5008. side: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(210, "lbs"),
  5011. name: "Side",
  5012. image: {
  5013. source: "./media/characters/rain-fallen/side.svg"
  5014. }
  5015. },
  5016. back: {
  5017. height: math.unit(6, "feet"),
  5018. weight: math.unit(210, "lbs"),
  5019. name: "Back",
  5020. image: {
  5021. source: "./media/characters/rain-fallen/back.svg"
  5022. }
  5023. },
  5024. feral: {
  5025. height: math.unit(9, "feet"),
  5026. weight: math.unit(700, "lbs"),
  5027. name: "Feral",
  5028. image: {
  5029. source: "./media/characters/rain-fallen/feral.svg"
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Meddling with Mortals",
  5036. height: math.unit(8 + 8/12, "feet")
  5037. },
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5, "meter")
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(150, "meter"),
  5045. default: true
  5046. },
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(278e6, "meter")
  5050. },
  5051. {
  5052. name: "Gigamacro",
  5053. height: math.unit(2e9, "meter")
  5054. },
  5055. {
  5056. name: "Teramacro",
  5057. height: math.unit(8e12, "meter")
  5058. },
  5059. {
  5060. name: "Devourer",
  5061. height: math.unit(14, "zettameters")
  5062. },
  5063. {
  5064. name: "Scarlet King",
  5065. height: math.unit(18, "yottameters")
  5066. },
  5067. {
  5068. name: "Void",
  5069. height: math.unit(1e88, "yottameters")
  5070. }
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5075. {
  5076. standing: {
  5077. height: math.unit(6, "feet"),
  5078. weight: math.unit(180, "lbs"),
  5079. name: "Standing",
  5080. image: {
  5081. source: "./media/characters/zaakira/standing.svg",
  5082. extra: 1599/1504,
  5083. bottom: 39/1638
  5084. }
  5085. },
  5086. laying: {
  5087. height: math.unit(3, "feet"),
  5088. weight: math.unit(180, "lbs"),
  5089. name: "Laying",
  5090. image: {
  5091. source: "./media/characters/zaakira/laying.svg"
  5092. }
  5093. },
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(12, "feet")
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(279, "feet"),
  5103. default: true
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5109. {
  5110. femSfw: {
  5111. height: math.unit(8, "feet"),
  5112. weight: math.unit(350, "lb"),
  5113. name: "Fem",
  5114. image: {
  5115. source: "./media/characters/sigvald/fem-sfw.svg",
  5116. extra: 182 / 164,
  5117. bottom: 8.7 / 190.5
  5118. }
  5119. },
  5120. femNsfw: {
  5121. height: math.unit(8, "feet"),
  5122. weight: math.unit(350, "lb"),
  5123. name: "Fem (NSFW)",
  5124. image: {
  5125. source: "./media/characters/sigvald/fem-nsfw.svg",
  5126. extra: 182 / 164,
  5127. bottom: 8.7 / 190.5
  5128. }
  5129. },
  5130. maleNsfw: {
  5131. height: math.unit(8, "feet"),
  5132. weight: math.unit(350, "lb"),
  5133. name: "Male (NSFW)",
  5134. image: {
  5135. source: "./media/characters/sigvald/male-nsfw.svg",
  5136. extra: 182 / 164,
  5137. bottom: 8.7 / 190.5
  5138. }
  5139. },
  5140. hermNsfw: {
  5141. height: math.unit(8, "feet"),
  5142. weight: math.unit(350, "lb"),
  5143. name: "Herm (NSFW)",
  5144. image: {
  5145. source: "./media/characters/sigvald/herm-nsfw.svg",
  5146. extra: 182 / 164,
  5147. bottom: 8.7 / 190.5
  5148. }
  5149. },
  5150. dick: {
  5151. height: math.unit(2.36, "feet"),
  5152. name: "Dick",
  5153. image: {
  5154. source: "./media/characters/sigvald/dick.svg"
  5155. }
  5156. },
  5157. eye: {
  5158. height: math.unit(0.31, "feet"),
  5159. name: "Eye",
  5160. image: {
  5161. source: "./media/characters/sigvald/eye.svg"
  5162. }
  5163. },
  5164. mouth: {
  5165. height: math.unit(0.92, "feet"),
  5166. name: "Mouth",
  5167. image: {
  5168. source: "./media/characters/sigvald/mouth.svg"
  5169. }
  5170. },
  5171. paws: {
  5172. height: math.unit(2.2, "feet"),
  5173. name: "Paws",
  5174. image: {
  5175. source: "./media/characters/sigvald/paws.svg"
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(8, "feet")
  5183. },
  5184. {
  5185. name: "Large",
  5186. height: math.unit(12, "feet")
  5187. },
  5188. {
  5189. name: "Larger",
  5190. height: math.unit(20, "feet")
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(150, "feet")
  5195. },
  5196. {
  5197. name: "Macro+",
  5198. height: math.unit(200, "feet"),
  5199. default: true
  5200. },
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5205. {
  5206. side: {
  5207. height: math.unit(12, "feet"),
  5208. weight: math.unit(2000, "kg"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/scott/side.svg",
  5212. extra: 754 / 724,
  5213. bottom: 0.069
  5214. }
  5215. },
  5216. upright: {
  5217. height: math.unit(12, "feet"),
  5218. weight: math.unit(2000, "kg"),
  5219. name: "Upright",
  5220. image: {
  5221. source: "./media/characters/scott/upright.svg",
  5222. extra: 3881 / 3722,
  5223. bottom: 0.05
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(12, "feet"),
  5231. default: true
  5232. },
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5237. {
  5238. side: {
  5239. height: math.unit(8, "meters"),
  5240. weight: math.unit(84755, "lbs"),
  5241. name: "Side",
  5242. image: {
  5243. source: "./media/characters/tobias/side.svg",
  5244. extra: 1474 / 1096,
  5245. bottom: 38.9 / 1513.1235
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Normal",
  5252. height: math.unit(8, "meters"),
  5253. default: true
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5259. {
  5260. front: {
  5261. height: math.unit(5.5, "feet"),
  5262. weight: math.unit(400, "lbs"),
  5263. name: "Front",
  5264. image: {
  5265. source: "./media/characters/kieran/front.svg",
  5266. extra: 2694 / 2364,
  5267. bottom: 217 / 2908
  5268. }
  5269. },
  5270. side: {
  5271. height: math.unit(5.5, "feet"),
  5272. weight: math.unit(400, "lbs"),
  5273. name: "Side",
  5274. image: {
  5275. source: "./media/characters/kieran/side.svg",
  5276. extra: 875 / 777,
  5277. bottom: 84.6 / 959
  5278. }
  5279. },
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(5.5, "feet"),
  5285. default: true
  5286. },
  5287. ]
  5288. ))
  5289. characterMakers.push(() => makeCharacter(
  5290. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5291. {
  5292. side: {
  5293. height: math.unit(2, "meters"),
  5294. weight: math.unit(70, "kg"),
  5295. name: "Side",
  5296. image: {
  5297. source: "./media/characters/sanya/side.svg",
  5298. bottom: 0.02,
  5299. extra: 1.02
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Small",
  5306. height: math.unit(2, "meters")
  5307. },
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(3, "meters")
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(16, "meters"),
  5315. default: true
  5316. },
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5321. {
  5322. front: {
  5323. height: math.unit(2, "meters"),
  5324. weight: math.unit(120, "kg"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/miranda/front.svg",
  5328. extra: 195 / 185,
  5329. bottom: 10.9 / 206.5
  5330. }
  5331. },
  5332. back: {
  5333. height: math.unit(2, "meters"),
  5334. weight: math.unit(120, "kg"),
  5335. name: "Back",
  5336. image: {
  5337. source: "./media/characters/miranda/back.svg",
  5338. extra: 201 / 193,
  5339. bottom: 2.3 / 203.7
  5340. }
  5341. },
  5342. },
  5343. [
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(10, "feet"),
  5347. default: true
  5348. }
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "James", species: ["deer"], tags: ["anthro"] },
  5353. {
  5354. side: {
  5355. height: math.unit(2, "meters"),
  5356. weight: math.unit(100, "kg"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/james/front.svg",
  5360. extra: 10 / 8.5
  5361. }
  5362. },
  5363. },
  5364. [
  5365. {
  5366. name: "Normal",
  5367. height: math.unit(8.5, "feet"),
  5368. default: true
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5374. {
  5375. side: {
  5376. height: math.unit(9.5, "feet"),
  5377. weight: math.unit(2500, "lbs"),
  5378. name: "Side",
  5379. image: {
  5380. source: "./media/characters/heather/side.svg"
  5381. }
  5382. },
  5383. },
  5384. [
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(9.5, "feet"),
  5388. default: true
  5389. }
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5394. {
  5395. side: {
  5396. height: math.unit(6.5, "feet"),
  5397. weight: math.unit(400, "lbs"),
  5398. name: "Side",
  5399. image: {
  5400. source: "./media/characters/lukas/side.svg",
  5401. extra: 7.25 / 6.5
  5402. }
  5403. },
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(6.5, "feet"),
  5409. default: true
  5410. }
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5415. {
  5416. side: {
  5417. height: math.unit(5, "feet"),
  5418. weight: math.unit(3000, "lbs"),
  5419. name: "Side",
  5420. image: {
  5421. source: "./media/characters/louise/side.svg"
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Normal",
  5428. height: math.unit(5, "feet"),
  5429. default: true
  5430. }
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5435. {
  5436. side: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(150, "lbs"),
  5439. name: "Side",
  5440. image: {
  5441. source: "./media/characters/ramona/side.svg",
  5442. extra: 871/854,
  5443. bottom: 41/912
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(5.3, "meters"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(20, "stories")
  5456. },
  5457. {
  5458. name: "Macro+",
  5459. height: math.unit(50, "stories")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5465. {
  5466. standing: {
  5467. height: math.unit(5.75, "feet"),
  5468. weight: math.unit(160, "lbs"),
  5469. name: "Standing",
  5470. image: {
  5471. source: "./media/characters/deerpuff/standing.svg",
  5472. extra: 682 / 624
  5473. }
  5474. },
  5475. sitting: {
  5476. height: math.unit(5.75 / 1.79, "feet"),
  5477. weight: math.unit(160, "lbs"),
  5478. name: "Sitting",
  5479. image: {
  5480. source: "./media/characters/deerpuff/sitting.svg",
  5481. bottom: 44 / 400,
  5482. extra: 1
  5483. }
  5484. },
  5485. taurLaying: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(400, "lbs"),
  5488. name: "Taur (Laying)",
  5489. image: {
  5490. source: "./media/characters/deerpuff/taur-laying.svg"
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Puffball",
  5497. height: math.unit(6, "inches")
  5498. },
  5499. {
  5500. name: "Normalpuff",
  5501. height: math.unit(5.75, "feet")
  5502. },
  5503. {
  5504. name: "Macropuff",
  5505. height: math.unit(1500, "feet"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megapuff",
  5510. height: math.unit(500, "miles")
  5511. },
  5512. {
  5513. name: "Gigapuff",
  5514. height: math.unit(250000, "miles")
  5515. },
  5516. {
  5517. name: "Omegapuff",
  5518. height: math.unit(1000, "lightyears")
  5519. },
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5524. {
  5525. stomping: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(170, "lbs"),
  5528. name: "Stomping",
  5529. image: {
  5530. source: "./media/characters/vivian/stomping.svg"
  5531. }
  5532. },
  5533. sitting: {
  5534. height: math.unit(6 / 1.75, "feet"),
  5535. weight: math.unit(170, "lbs"),
  5536. name: "Sitting",
  5537. image: {
  5538. source: "./media/characters/vivian/sitting.svg",
  5539. bottom: 1 / 6.4,
  5540. extra: 1,
  5541. }
  5542. },
  5543. },
  5544. [
  5545. {
  5546. name: "Normal",
  5547. height: math.unit(7, "feet"),
  5548. default: true
  5549. },
  5550. {
  5551. name: "Macro",
  5552. height: math.unit(10, "stories")
  5553. },
  5554. {
  5555. name: "Macro+",
  5556. height: math.unit(30, "stories")
  5557. },
  5558. {
  5559. name: "Megamacro",
  5560. height: math.unit(10, "miles")
  5561. },
  5562. {
  5563. name: "Megamacro+",
  5564. height: math.unit(2750000, "meters")
  5565. },
  5566. ]
  5567. ))
  5568. characterMakers.push(() => makeCharacter(
  5569. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5570. {
  5571. front: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(160, "lbs"),
  5574. name: "Front",
  5575. image: {
  5576. source: "./media/characters/prince/front.svg",
  5577. extra: 3400 / 3000
  5578. }
  5579. },
  5580. jumping: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(160, "lbs"),
  5583. name: "Jumping",
  5584. image: {
  5585. source: "./media/characters/prince/jump.svg",
  5586. extra: 2555 / 2134
  5587. }
  5588. },
  5589. },
  5590. [
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(7.75, "feet"),
  5594. default: true
  5595. },
  5596. {
  5597. name: "Not cute",
  5598. height: math.unit(17, "feet")
  5599. },
  5600. {
  5601. name: "I said NOT",
  5602. height: math.unit(91, "feet")
  5603. },
  5604. {
  5605. name: "Please stop",
  5606. height: math.unit(560, "feet")
  5607. },
  5608. {
  5609. name: "What have you done",
  5610. height: math.unit(2200, "feet")
  5611. },
  5612. {
  5613. name: "Deer God",
  5614. height: math.unit(3.6, "miles")
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5620. {
  5621. standing: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(300, "lbs"),
  5624. name: "Standing",
  5625. image: {
  5626. source: "./media/characters/psymon/standing.svg",
  5627. extra: 1888 / 1810,
  5628. bottom: 0.05
  5629. }
  5630. },
  5631. slithering: {
  5632. height: math.unit(6, "feet"),
  5633. weight: math.unit(300, "lbs"),
  5634. name: "Slithering",
  5635. image: {
  5636. source: "./media/characters/psymon/slithering.svg",
  5637. extra: 1330 / 1224
  5638. }
  5639. },
  5640. slitheringAlt: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(300, "lbs"),
  5643. name: "Slithering (Alt)",
  5644. image: {
  5645. source: "./media/characters/psymon/slithering-alt.svg",
  5646. extra: 1330 / 1224
  5647. }
  5648. },
  5649. },
  5650. [
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(11.25, "feet"),
  5654. default: true
  5655. },
  5656. {
  5657. name: "Large",
  5658. height: math.unit(27, "feet")
  5659. },
  5660. {
  5661. name: "Giant",
  5662. height: math.unit(87, "feet")
  5663. },
  5664. {
  5665. name: "Macro",
  5666. height: math.unit(365, "feet")
  5667. },
  5668. {
  5669. name: "Megamacro",
  5670. height: math.unit(3, "miles")
  5671. },
  5672. {
  5673. name: "World Serpent",
  5674. height: math.unit(8000, "miles")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(180, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/daimos/front.svg",
  5687. extra: 4160 / 3897,
  5688. bottom: 0.021
  5689. }
  5690. }
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(8, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Big Dog",
  5700. height: math.unit(22, "feet")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(127, "feet")
  5705. },
  5706. {
  5707. name: "Megamacro",
  5708. height: math.unit(3600, "feet")
  5709. },
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5714. {
  5715. side: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(180, "lbs"),
  5718. name: "Side",
  5719. image: {
  5720. source: "./media/characters/blake/side.svg",
  5721. extra: 1212 / 1120,
  5722. bottom: 0.05
  5723. }
  5724. },
  5725. crouched: {
  5726. height: math.unit(6 * 0.57, "feet"),
  5727. weight: math.unit(180, "lbs"),
  5728. name: "Crouched",
  5729. image: {
  5730. source: "./media/characters/blake/crouched.svg",
  5731. extra: 840 / 587,
  5732. bottom: 0.04
  5733. }
  5734. },
  5735. bent: {
  5736. height: math.unit(6 * 0.75, "feet"),
  5737. weight: math.unit(180, "lbs"),
  5738. name: "Bent",
  5739. image: {
  5740. source: "./media/characters/blake/bent.svg",
  5741. extra: 592 / 544,
  5742. bottom: 0.035
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(8 + 1 / 6, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Big Backside",
  5754. height: math.unit(37, "feet")
  5755. },
  5756. {
  5757. name: "Subway Shredder",
  5758. height: math.unit(72, "feet")
  5759. },
  5760. {
  5761. name: "City Carver",
  5762. height: math.unit(1675, "feet")
  5763. },
  5764. {
  5765. name: "Tectonic Tweaker",
  5766. height: math.unit(2300, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(180, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/guisetto/front.svg",
  5779. extra: 856 / 817,
  5780. bottom: 0.06
  5781. }
  5782. },
  5783. airborne: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(180, "lbs"),
  5786. name: "Airborne",
  5787. image: {
  5788. source: "./media/characters/guisetto/airborne.svg",
  5789. extra: 584 / 525
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(10 + 11 / 12, "feet"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Large",
  5801. height: math.unit(35, "feet")
  5802. },
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(475, "feet")
  5806. },
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(180, "lbs"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/luxor/front.svg",
  5818. extra: 2940 / 2152
  5819. }
  5820. },
  5821. back: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(180, "lbs"),
  5824. name: "Back",
  5825. image: {
  5826. source: "./media/characters/luxor/back.svg",
  5827. extra: 1083 / 960
  5828. }
  5829. },
  5830. },
  5831. [
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(5 + 5 / 6, "feet"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Lamp",
  5839. height: math.unit(50, "feet")
  5840. },
  5841. {
  5842. name: "Lämp",
  5843. height: math.unit(300, "feet")
  5844. },
  5845. {
  5846. name: "The sun is a lamp",
  5847. height: math.unit(250000, "miles")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5853. {
  5854. front: {
  5855. height: math.unit(6, "feet"),
  5856. weight: math.unit(50, "lbs"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/huoyan/front.svg"
  5860. }
  5861. },
  5862. side: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(180, "lbs"),
  5865. name: "Side",
  5866. image: {
  5867. source: "./media/characters/huoyan/side.svg"
  5868. }
  5869. },
  5870. },
  5871. [
  5872. {
  5873. name: "Chef",
  5874. height: math.unit(9, "feet")
  5875. },
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(65, "feet"),
  5879. default: true
  5880. },
  5881. {
  5882. name: "Macro",
  5883. height: math.unit(780, "feet")
  5884. },
  5885. {
  5886. name: "Flaming Mountain",
  5887. height: math.unit(4.8, "miles")
  5888. },
  5889. {
  5890. name: "Celestial",
  5891. height: math.unit(765000, "miles")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(5 + 3 / 4, "feet"),
  5900. weight: math.unit(120, "lbs"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/tails/front.svg"
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(5 + 3 / 4, "feet"),
  5911. default: true
  5912. }
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(4, "feet"),
  5920. weight: math.unit(50, "lbs"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/rainy/front.svg"
  5924. }
  5925. }
  5926. },
  5927. [
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(800, "feet"),
  5931. default: true
  5932. }
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(150, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/rainier/front.svg"
  5944. }
  5945. }
  5946. },
  5947. [
  5948. {
  5949. name: "Micro",
  5950. height: math.unit(2, "mm"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(8 + 4/12, "feet"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/andy-renard/front.svg",
  5963. extra: 1839/1726,
  5964. bottom: 134/1973
  5965. }
  5966. },
  5967. back: {
  5968. height: math.unit(8 + 4/12, "feet"),
  5969. name: "Back",
  5970. image: {
  5971. source: "./media/characters/andy-renard/back.svg",
  5972. extra: 1838/1710,
  5973. bottom: 105/1943
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Tall",
  5980. height: math.unit(8 + 4/12, "feet")
  5981. },
  5982. {
  5983. name: "Mini Macro",
  5984. height: math.unit(15, "feet"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Macro",
  5989. height: math.unit(100, "feet")
  5990. },
  5991. {
  5992. name: "Mega Macro",
  5993. height: math.unit(1000, "feet")
  5994. },
  5995. {
  5996. name: "Giga Macro",
  5997. height: math.unit(10, "miles")
  5998. },
  5999. {
  6000. name: "God Macro",
  6001. height: math.unit(1, "multiverse")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6007. {
  6008. front: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(210, "lbs"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/cimmaron/front-sfw.svg",
  6014. extra: 701 / 676,
  6015. bottom: 0.046
  6016. }
  6017. },
  6018. back: {
  6019. height: math.unit(6, "feet"),
  6020. weight: math.unit(210, "lbs"),
  6021. name: "Back",
  6022. image: {
  6023. source: "./media/characters/cimmaron/back-sfw.svg",
  6024. extra: 701 / 676,
  6025. bottom: 0.046
  6026. }
  6027. },
  6028. frontNsfw: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(210, "lbs"),
  6031. name: "Front (NSFW)",
  6032. image: {
  6033. source: "./media/characters/cimmaron/front-nsfw.svg",
  6034. extra: 701 / 676,
  6035. bottom: 0.046
  6036. }
  6037. },
  6038. backNsfw: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(210, "lbs"),
  6041. name: "Back (NSFW)",
  6042. image: {
  6043. source: "./media/characters/cimmaron/back-nsfw.svg",
  6044. extra: 701 / 676,
  6045. bottom: 0.046
  6046. }
  6047. },
  6048. dick: {
  6049. height: math.unit(1.714, "feet"),
  6050. name: "Dick",
  6051. image: {
  6052. source: "./media/characters/cimmaron/dick.svg"
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Normal",
  6059. height: math.unit(6, "feet"),
  6060. default: true
  6061. },
  6062. {
  6063. name: "Macro Mayor",
  6064. height: math.unit(350, "meters")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6070. {
  6071. front: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(200, "lbs"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/akari/front.svg",
  6077. extra: 962 / 901,
  6078. bottom: 0.04
  6079. }
  6080. }
  6081. },
  6082. [
  6083. {
  6084. name: "Micro",
  6085. height: math.unit(5, "inches"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(7, "feet")
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(140, "lbs"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/cynosura/front.svg",
  6103. extra: 896 / 847
  6104. }
  6105. },
  6106. back: {
  6107. height: math.unit(6, "feet"),
  6108. weight: math.unit(140, "lbs"),
  6109. name: "Back",
  6110. image: {
  6111. source: "./media/characters/cynosura/back.svg",
  6112. extra: 1365 / 1250
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Micro",
  6119. height: math.unit(4, "inches")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5.75, "feet"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Tall",
  6128. height: math.unit(10, "feet")
  6129. },
  6130. {
  6131. name: "Big",
  6132. height: math.unit(20, "feet")
  6133. },
  6134. {
  6135. name: "Macro",
  6136. height: math.unit(50, "feet")
  6137. },
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(13 + 2/12, "feet"),
  6145. weight: math.unit(800, "kg"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/gin/front.svg",
  6149. extra: 1312/1191,
  6150. bottom: 45/1357
  6151. }
  6152. },
  6153. mouth: {
  6154. height: math.unit(2.39 * 1.8, "feet"),
  6155. name: "Mouth",
  6156. image: {
  6157. source: "./media/characters/gin/mouth.svg"
  6158. }
  6159. },
  6160. hand: {
  6161. height: math.unit(1.57 * 2.19, "feet"),
  6162. name: "Hand",
  6163. image: {
  6164. source: "./media/characters/gin/hand.svg"
  6165. }
  6166. },
  6167. foot: {
  6168. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6169. name: "Foot",
  6170. image: {
  6171. source: "./media/characters/gin/foot.svg"
  6172. }
  6173. },
  6174. sole: {
  6175. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6176. name: "Sole",
  6177. image: {
  6178. source: "./media/characters/gin/sole.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Very Small",
  6185. height: math.unit(13 + 2 / 12, "feet")
  6186. },
  6187. {
  6188. name: "Micro",
  6189. height: math.unit(600, "miles")
  6190. },
  6191. {
  6192. name: "Regular",
  6193. height: math.unit(20, "earths"),
  6194. default: true
  6195. },
  6196. {
  6197. name: "Macro",
  6198. height: math.unit(2.2, "solarradii")
  6199. },
  6200. {
  6201. name: "Teramacro",
  6202. height: math.unit(1.2, "galaxies")
  6203. },
  6204. {
  6205. name: "Omegamacro",
  6206. height: math.unit(200, "universes")
  6207. },
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6 + 1 / 6, "feet"),
  6215. weight: math.unit(178, "lbs"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/guy/front.svg"
  6219. }
  6220. }
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(6 + 1 / 6, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Large",
  6230. height: math.unit(25 + 7 / 12, "feet")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(60 + 9 / 12, "feet")
  6235. },
  6236. {
  6237. name: "Macro+",
  6238. height: math.unit(246, "feet")
  6239. },
  6240. {
  6241. name: "Macro++",
  6242. height: math.unit(878, "feet")
  6243. }
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(9, "feet"),
  6251. weight: math.unit(800, "lbs"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/tiberius/front.svg",
  6255. extra: 2295 / 2071
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(9, "feet"),
  6260. weight: math.unit(800, "lbs"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/tiberius/back.svg",
  6264. extra: 2373 / 2160
  6265. }
  6266. },
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(9, "feet"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6278. {
  6279. front: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(600, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/surgo/front.svg",
  6285. extra: 3591 / 2227
  6286. }
  6287. },
  6288. back: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(600, "lbs"),
  6291. name: "Back",
  6292. image: {
  6293. source: "./media/characters/surgo/back.svg",
  6294. extra: 3557 / 2228
  6295. }
  6296. },
  6297. laying: {
  6298. height: math.unit(6 * 0.85, "feet"),
  6299. weight: math.unit(600, "lbs"),
  6300. name: "Laying",
  6301. image: {
  6302. source: "./media/characters/surgo/laying.svg"
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(6, "feet"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6316. {
  6317. side: {
  6318. height: math.unit(6, "feet"),
  6319. weight: math.unit(150, "lbs"),
  6320. name: "Side",
  6321. image: {
  6322. source: "./media/characters/cibus/side.svg",
  6323. extra: 800 / 400
  6324. }
  6325. },
  6326. },
  6327. [
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(6, "feet"),
  6331. default: true
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(6, "feet"),
  6340. weight: math.unit(240, "lbs"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/nibbles/front.svg"
  6344. }
  6345. },
  6346. side: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(240, "lbs"),
  6349. name: "Side",
  6350. image: {
  6351. source: "./media/characters/nibbles/side.svg"
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(9, "feet"),
  6359. default: true
  6360. }
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6365. {
  6366. side: {
  6367. height: math.unit(5 + 1 / 6, "feet"),
  6368. weight: math.unit(130, "lbs"),
  6369. name: "Side",
  6370. image: {
  6371. source: "./media/characters/rikky/side.svg",
  6372. extra: 851 / 801
  6373. }
  6374. },
  6375. },
  6376. [
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(5 + 1 / 6, "feet")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(152, "feet"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Megamacro",
  6388. height: math.unit(7, "miles")
  6389. }
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6394. {
  6395. side: {
  6396. height: math.unit(370, "cm"),
  6397. weight: math.unit(350, "lbs"),
  6398. name: "Side",
  6399. image: {
  6400. source: "./media/characters/malfressa/side.svg"
  6401. }
  6402. },
  6403. walking: {
  6404. height: math.unit(370, "cm"),
  6405. weight: math.unit(350, "lbs"),
  6406. name: "Walking",
  6407. image: {
  6408. source: "./media/characters/malfressa/walking.svg"
  6409. }
  6410. },
  6411. feral: {
  6412. height: math.unit(2500, "cm"),
  6413. weight: math.unit(100000, "lbs"),
  6414. name: "Feral",
  6415. image: {
  6416. source: "./media/characters/malfressa/feral.svg",
  6417. extra: 2108 / 837,
  6418. bottom: 0.02
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(370, "cm")
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(300, "meters"),
  6430. default: true
  6431. }
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6436. {
  6437. front: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(60, "kg"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/jaro/front.svg",
  6443. extra: 845/817,
  6444. bottom: 45/890
  6445. }
  6446. },
  6447. back: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(60, "kg"),
  6450. name: "Back",
  6451. image: {
  6452. source: "./media/characters/jaro/back.svg",
  6453. extra: 847/817,
  6454. bottom: 34/881
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Micro",
  6461. height: math.unit(7, "inches")
  6462. },
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(5.5, "feet"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Minimacro",
  6470. height: math.unit(20, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(200, "meters")
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(195, "lb"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/rogue/front.svg"
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Macro",
  6493. height: math.unit(90, "feet"),
  6494. default: true
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(5 + 8 / 12, "feet"),
  6503. weight: math.unit(140, "lb"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/piper/front.svg",
  6507. extra: 3948/3655,
  6508. bottom: 0/3948
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Micro",
  6515. height: math.unit(2, "inches")
  6516. },
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(5 + 8 / 12, "feet")
  6520. },
  6521. {
  6522. name: "Macro",
  6523. height: math.unit(250, "feet"),
  6524. default: true
  6525. },
  6526. {
  6527. name: "Megamacro",
  6528. height: math.unit(7, "miles")
  6529. },
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6534. {
  6535. front: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(220, "lb"),
  6538. name: "Front",
  6539. image: {
  6540. source: "./media/characters/gemini/front.svg"
  6541. }
  6542. },
  6543. back: {
  6544. height: math.unit(6, "feet"),
  6545. weight: math.unit(220, "lb"),
  6546. name: "Back",
  6547. image: {
  6548. source: "./media/characters/gemini/back.svg"
  6549. }
  6550. },
  6551. kneeling: {
  6552. height: math.unit(6 / 1.5, "feet"),
  6553. weight: math.unit(220, "lb"),
  6554. name: "Kneeling",
  6555. image: {
  6556. source: "./media/characters/gemini/kneeling.svg",
  6557. bottom: 0.02
  6558. }
  6559. },
  6560. },
  6561. [
  6562. {
  6563. name: "Macro",
  6564. height: math.unit(300, "meters"),
  6565. default: true
  6566. },
  6567. {
  6568. name: "Megamacro",
  6569. height: math.unit(6900, "meters")
  6570. },
  6571. ]
  6572. ))
  6573. characterMakers.push(() => makeCharacter(
  6574. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6575. {
  6576. anthro: {
  6577. height: math.unit(2.35, "meters"),
  6578. weight: math.unit(73, "kg"),
  6579. name: "Anthro",
  6580. image: {
  6581. source: "./media/characters/alicia/anthro.svg",
  6582. extra: 2571 / 2385,
  6583. bottom: 75 / 2648
  6584. }
  6585. },
  6586. paw: {
  6587. height: math.unit(1.32, "feet"),
  6588. name: "Paw",
  6589. image: {
  6590. source: "./media/characters/alicia/paw.svg"
  6591. }
  6592. },
  6593. feral: {
  6594. height: math.unit(1.69, "meters"),
  6595. weight: math.unit(73, "kg"),
  6596. name: "Feral",
  6597. image: {
  6598. source: "./media/characters/alicia/feral.svg",
  6599. extra: 2123 / 1715,
  6600. bottom: 222 / 2349
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Normal",
  6607. height: math.unit(2.35, "meters")
  6608. },
  6609. {
  6610. name: "Macro",
  6611. height: math.unit(60, "meters"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Megamacro",
  6616. height: math.unit(10000, "kilometers")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(7, "feet"),
  6625. weight: math.unit(250, "lbs"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/archy/front.svg"
  6629. }
  6630. }
  6631. },
  6632. [
  6633. {
  6634. name: "Micro",
  6635. height: math.unit(1, "inch")
  6636. },
  6637. {
  6638. name: "Shorty",
  6639. height: math.unit(5, "feet")
  6640. },
  6641. {
  6642. name: "Normal",
  6643. height: math.unit(7, "feet")
  6644. },
  6645. {
  6646. name: "Macro",
  6647. height: math.unit(600, "meters"),
  6648. default: true
  6649. },
  6650. {
  6651. name: "Megamacro",
  6652. height: math.unit(1, "mile")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(1.65, "meters"),
  6661. weight: math.unit(74, "kg"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/berri/front.svg",
  6665. extra: 857 / 837,
  6666. bottom: 18 / 877
  6667. }
  6668. },
  6669. bum: {
  6670. height: math.unit(1.46, "feet"),
  6671. name: "Bum",
  6672. image: {
  6673. source: "./media/characters/berri/bum.svg"
  6674. }
  6675. },
  6676. mouth: {
  6677. height: math.unit(0.44, "feet"),
  6678. name: "Mouth",
  6679. image: {
  6680. source: "./media/characters/berri/mouth.svg"
  6681. }
  6682. },
  6683. paw: {
  6684. height: math.unit(0.826, "feet"),
  6685. name: "Paw",
  6686. image: {
  6687. source: "./media/characters/berri/paw.svg"
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(1.65, "meters")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(60, "m"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Megamacro",
  6703. height: math.unit(9.213, "km")
  6704. },
  6705. {
  6706. name: "Planet Eater",
  6707. height: math.unit(489, "megameters")
  6708. },
  6709. {
  6710. name: "Teramacro",
  6711. height: math.unit(2471635000000, "meters")
  6712. },
  6713. {
  6714. name: "Examacro",
  6715. height: math.unit(8.0624e+26, "meters")
  6716. }
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(1.72, "meters"),
  6724. weight: math.unit(68, "kg"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/lexi/front.svg"
  6728. }
  6729. }
  6730. },
  6731. [
  6732. {
  6733. name: "Very Smol",
  6734. height: math.unit(10, "mm")
  6735. },
  6736. {
  6737. name: "Micro",
  6738. height: math.unit(6.8, "cm"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Normal",
  6743. height: math.unit(1.72, "m")
  6744. }
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(1.69, "meters"),
  6752. weight: math.unit(68, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/martin/front.svg",
  6756. extra: 596 / 581
  6757. }
  6758. }
  6759. },
  6760. [
  6761. {
  6762. name: "Micro",
  6763. height: math.unit(6.85, "cm"),
  6764. default: true
  6765. },
  6766. {
  6767. name: "Normal",
  6768. height: math.unit(1.69, "m")
  6769. }
  6770. ]
  6771. ))
  6772. characterMakers.push(() => makeCharacter(
  6773. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6774. {
  6775. front: {
  6776. height: math.unit(1.69, "meters"),
  6777. weight: math.unit(68, "kg"),
  6778. name: "Front",
  6779. image: {
  6780. source: "./media/characters/juno/front.svg"
  6781. }
  6782. }
  6783. },
  6784. [
  6785. {
  6786. name: "Micro",
  6787. height: math.unit(7, "cm")
  6788. },
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(1.89, "m")
  6792. },
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(353, "meters"),
  6796. default: true
  6797. }
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(1.93, "meters"),
  6805. weight: math.unit(83, "kg"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/samantha/front.svg"
  6809. }
  6810. },
  6811. frontClothed: {
  6812. height: math.unit(1.93, "meters"),
  6813. weight: math.unit(83, "kg"),
  6814. name: "Front (Clothed)",
  6815. image: {
  6816. source: "./media/characters/samantha/front-clothed.svg"
  6817. }
  6818. },
  6819. back: {
  6820. height: math.unit(1.93, "meters"),
  6821. weight: math.unit(83, "kg"),
  6822. name: "Back",
  6823. image: {
  6824. source: "./media/characters/samantha/back.svg"
  6825. }
  6826. },
  6827. },
  6828. [
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(1.93, "m")
  6832. },
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(74, "meters"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Macro+",
  6840. height: math.unit(223, "meters"),
  6841. },
  6842. {
  6843. name: "Megamacro",
  6844. height: math.unit(8381, "meters"),
  6845. },
  6846. {
  6847. name: "Megamacro+",
  6848. height: math.unit(12000, "kilometers")
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(1.92, "meters"),
  6857. weight: math.unit(80, "kg"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/dr-clay/front.svg"
  6861. }
  6862. },
  6863. frontClothed: {
  6864. height: math.unit(1.92, "meters"),
  6865. weight: math.unit(80, "kg"),
  6866. name: "Front (Clothed)",
  6867. image: {
  6868. source: "./media/characters/dr-clay/front-clothed.svg"
  6869. }
  6870. }
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(1.92, "m")
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(214, "meters"),
  6880. default: true
  6881. },
  6882. {
  6883. name: "Macro+",
  6884. height: math.unit(12.237, "meters"),
  6885. },
  6886. {
  6887. name: "Megamacro",
  6888. height: math.unit(557, "megameters"),
  6889. },
  6890. {
  6891. name: "Unimaginable",
  6892. height: math.unit(120e9, "lightyears")
  6893. },
  6894. ]
  6895. ))
  6896. characterMakers.push(() => makeCharacter(
  6897. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6898. {
  6899. front: {
  6900. height: math.unit(2, "meters"),
  6901. weight: math.unit(80, "kg"),
  6902. name: "Front",
  6903. image: {
  6904. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6905. }
  6906. }
  6907. },
  6908. [
  6909. {
  6910. name: "Teramacro",
  6911. height: math.unit(500000, "lightyears"),
  6912. default: true
  6913. },
  6914. ]
  6915. ))
  6916. characterMakers.push(() => makeCharacter(
  6917. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6918. {
  6919. crux: {
  6920. height: math.unit(2, "meters"),
  6921. weight: math.unit(150, "kg"),
  6922. name: "Crux",
  6923. image: {
  6924. source: "./media/characters/vemus/crux.svg",
  6925. extra: 1074/936,
  6926. bottom: 23/1097
  6927. }
  6928. },
  6929. skunkTanuki: {
  6930. height: math.unit(2, "meters"),
  6931. weight: math.unit(150, "kg"),
  6932. name: "Skunk-Tanuki",
  6933. image: {
  6934. source: "./media/characters/vemus/skunk-tanuki.svg",
  6935. extra: 926/893,
  6936. bottom: 20/946
  6937. }
  6938. },
  6939. },
  6940. [
  6941. {
  6942. name: "Normal",
  6943. height: math.unit(3.75, "meters"),
  6944. default: true
  6945. },
  6946. {
  6947. name: "Big",
  6948. height: math.unit(8, "meters")
  6949. },
  6950. {
  6951. name: "Macro",
  6952. height: math.unit(100, "meters")
  6953. },
  6954. {
  6955. name: "Macro+",
  6956. height: math.unit(1500, "meters")
  6957. },
  6958. {
  6959. name: "Stellar",
  6960. height: math.unit(14e8, "meters")
  6961. },
  6962. ]
  6963. ))
  6964. characterMakers.push(() => makeCharacter(
  6965. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6966. {
  6967. front: {
  6968. height: math.unit(2, "meters"),
  6969. weight: math.unit(70, "kg"),
  6970. name: "Front",
  6971. image: {
  6972. source: "./media/characters/beherit/front.svg",
  6973. extra: 1234/1109,
  6974. bottom: 55/1289
  6975. }
  6976. }
  6977. },
  6978. [
  6979. {
  6980. name: "Normal",
  6981. height: math.unit(6, "feet")
  6982. },
  6983. {
  6984. name: "Lorg",
  6985. height: math.unit(25, "feet"),
  6986. default: true
  6987. },
  6988. {
  6989. name: "Lorger",
  6990. height: math.unit(75, "feet")
  6991. },
  6992. {
  6993. name: "Macro",
  6994. height: math.unit(200, "meters")
  6995. },
  6996. ]
  6997. ))
  6998. characterMakers.push(() => makeCharacter(
  6999. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7000. {
  7001. front: {
  7002. height: math.unit(2, "meters"),
  7003. weight: math.unit(150, "kg"),
  7004. name: "Front",
  7005. image: {
  7006. source: "./media/characters/everett/front.svg",
  7007. extra: 1017/866,
  7008. bottom: 86/1103
  7009. }
  7010. },
  7011. paw: {
  7012. height: math.unit(2 / 3.6, "meters"),
  7013. name: "Paw",
  7014. image: {
  7015. source: "./media/characters/everett/paw.svg"
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(15, "feet"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Lorg",
  7027. height: math.unit(70, "feet"),
  7028. default: true
  7029. },
  7030. {
  7031. name: "Lorger",
  7032. height: math.unit(250, "feet")
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(500, "meters")
  7037. },
  7038. ]
  7039. ))
  7040. characterMakers.push(() => makeCharacter(
  7041. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7042. {
  7043. front: {
  7044. height: math.unit(2, "meters"),
  7045. weight: math.unit(86, "kg"),
  7046. name: "Front",
  7047. image: {
  7048. source: "./media/characters/rose/front.svg",
  7049. extra: 1785/1636,
  7050. bottom: 30/1815
  7051. },
  7052. form: "liom",
  7053. default: true
  7054. },
  7055. frontSporty: {
  7056. height: math.unit(2, "meters"),
  7057. weight: math.unit(86, "kg"),
  7058. name: "Front (Sporty)",
  7059. image: {
  7060. source: "./media/characters/rose/front-sporty.svg",
  7061. extra: 350/335,
  7062. bottom: 10/360
  7063. },
  7064. form: "liom"
  7065. },
  7066. frontAlt: {
  7067. height: math.unit(1.6, "meters"),
  7068. weight: math.unit(86, "kg"),
  7069. name: "Front (Alt)",
  7070. image: {
  7071. source: "./media/characters/rose/front-alt.svg",
  7072. extra: 299/283,
  7073. bottom: 3/302
  7074. },
  7075. form: "liom"
  7076. },
  7077. plush: {
  7078. height: math.unit(2, "meters"),
  7079. weight: math.unit(86/3, "kg"),
  7080. name: "Plush",
  7081. image: {
  7082. source: "./media/characters/rose/plush.svg",
  7083. extra: 361/337,
  7084. bottom: 11/372
  7085. },
  7086. form: "plush",
  7087. default: true
  7088. },
  7089. fae: {
  7090. height: math.unit(4, "cm"),
  7091. weight: math.unit(10, "grams"),
  7092. name: "Fae",
  7093. image: {
  7094. source: "./media/characters/rose/fae.svg",
  7095. extra: 737/577,
  7096. bottom: 356/1093
  7097. },
  7098. form: "fae",
  7099. default: true
  7100. },
  7101. },
  7102. [
  7103. {
  7104. name: "True Micro",
  7105. height: math.unit(9, "cm"),
  7106. form: "liom"
  7107. },
  7108. {
  7109. name: "Micro",
  7110. height: math.unit(16, "cm"),
  7111. form: "liom"
  7112. },
  7113. {
  7114. name: "Normal",
  7115. height: math.unit(1.85, "meters"),
  7116. default: true,
  7117. form: "liom"
  7118. },
  7119. {
  7120. name: "Mini-Macro",
  7121. height: math.unit(5, "meters"),
  7122. form: "liom"
  7123. },
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(15, "meters"),
  7127. form: "liom"
  7128. },
  7129. {
  7130. name: "True Macro",
  7131. height: math.unit(40, "meters"),
  7132. form: "liom"
  7133. },
  7134. {
  7135. name: "City Scale",
  7136. height: math.unit(1, "km"),
  7137. form: "liom"
  7138. },
  7139. {
  7140. name: "Plushie",
  7141. height: math.unit(9, "cm"),
  7142. form: "plush",
  7143. default: true
  7144. },
  7145. {
  7146. name: "Fae",
  7147. height: math.unit(4, "cm"),
  7148. form: "fae",
  7149. default: true
  7150. },
  7151. ],
  7152. {
  7153. "liom": {
  7154. name: "Liom",
  7155. default: true
  7156. },
  7157. "plush": {
  7158. name: "Plush"
  7159. },
  7160. "fae": {
  7161. name: "Fae Fox"
  7162. }
  7163. }
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7167. {
  7168. front: {
  7169. height: math.unit(2, "meters"),
  7170. weight: math.unit(350, "lbs"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/regal/front.svg"
  7174. }
  7175. },
  7176. back: {
  7177. height: math.unit(2, "meters"),
  7178. weight: math.unit(350, "lbs"),
  7179. name: "Back",
  7180. image: {
  7181. source: "./media/characters/regal/back.svg"
  7182. }
  7183. },
  7184. },
  7185. [
  7186. {
  7187. name: "Macro",
  7188. height: math.unit(350, "feet"),
  7189. default: true
  7190. }
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7195. {
  7196. front: {
  7197. height: math.unit(4 + 11 / 12, "feet"),
  7198. weight: math.unit(100, "lbs"),
  7199. name: "Front",
  7200. image: {
  7201. source: "./media/characters/opal/front.svg"
  7202. }
  7203. },
  7204. frontAlt: {
  7205. height: math.unit(4 + 11 / 12, "feet"),
  7206. weight: math.unit(100, "lbs"),
  7207. name: "Front (Alt)",
  7208. image: {
  7209. source: "./media/characters/opal/front-alt.svg"
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Small",
  7216. height: math.unit(4 + 11 / 12, "feet")
  7217. },
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(20, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(120, "feet")
  7226. },
  7227. {
  7228. name: "Megamacro",
  7229. height: math.unit(80, "miles")
  7230. },
  7231. {
  7232. name: "True Size",
  7233. height: math.unit(100000, "lightyears")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(6, "feet"),
  7242. weight: math.unit(200, "lbs"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/vector-wuff/front.svg"
  7246. }
  7247. }
  7248. },
  7249. [
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(2.8, "meters")
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(450, "meters"),
  7257. default: true
  7258. },
  7259. {
  7260. name: "Megamacro",
  7261. height: math.unit(15, "kilometers")
  7262. }
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(256, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/dannik/front.svg"
  7274. }
  7275. }
  7276. },
  7277. [
  7278. {
  7279. name: "Macro",
  7280. height: math.unit(69.57, "meters"),
  7281. default: true
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(120, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/azura-saharah/front.svg"
  7294. }
  7295. },
  7296. back: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(120, "lbs"),
  7299. name: "Back",
  7300. image: {
  7301. source: "./media/characters/azura-saharah/back.svg"
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(100, "feet"),
  7309. default: true
  7310. },
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7315. {
  7316. side: {
  7317. height: math.unit(5 + 4 / 12, "feet"),
  7318. weight: math.unit(163, "lbs"),
  7319. name: "Side",
  7320. image: {
  7321. source: "./media/characters/kennedy/side.svg"
  7322. }
  7323. }
  7324. },
  7325. [
  7326. {
  7327. name: "Standard Doggo",
  7328. height: math.unit(5 + 4 / 12, "feet")
  7329. },
  7330. {
  7331. name: "Big Doggo",
  7332. height: math.unit(25 + 3 / 12, "feet"),
  7333. default: true
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(5 + 5/12, "feet"),
  7342. weight: math.unit(100, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/odios-de-lunar/front.svg",
  7346. extra: 1468/1323,
  7347. bottom: 22/1490
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Micro",
  7354. height: math.unit(3, "inches")
  7355. },
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(5.5, "feet"),
  7359. default: true
  7360. },
  7361. {
  7362. name: "Macro",
  7363. height: math.unit(100, "feet")
  7364. },
  7365. ]
  7366. ))
  7367. characterMakers.push(() => makeCharacter(
  7368. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7369. {
  7370. back: {
  7371. height: math.unit(6, "feet"),
  7372. weight: math.unit(220, "lbs"),
  7373. name: "Back",
  7374. image: {
  7375. source: "./media/characters/mandake/back.svg"
  7376. }
  7377. }
  7378. },
  7379. [
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(7, "feet"),
  7383. default: true
  7384. },
  7385. {
  7386. name: "Macro",
  7387. height: math.unit(78, "feet")
  7388. },
  7389. {
  7390. name: "Macro+",
  7391. height: math.unit(300, "meters")
  7392. },
  7393. {
  7394. name: "Macro++",
  7395. height: math.unit(2400, "feet")
  7396. },
  7397. {
  7398. name: "Megamacro",
  7399. height: math.unit(5167, "meters")
  7400. },
  7401. {
  7402. name: "Gigamacro",
  7403. height: math.unit(41769, "miles")
  7404. },
  7405. ]
  7406. ))
  7407. characterMakers.push(() => makeCharacter(
  7408. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7409. {
  7410. front: {
  7411. height: math.unit(6, "feet"),
  7412. weight: math.unit(120, "lbs"),
  7413. name: "Front",
  7414. image: {
  7415. source: "./media/characters/yozey/front.svg"
  7416. }
  7417. },
  7418. frontAlt: {
  7419. height: math.unit(6, "feet"),
  7420. weight: math.unit(120, "lbs"),
  7421. name: "Front (Alt)",
  7422. image: {
  7423. source: "./media/characters/yozey/front-alt.svg"
  7424. }
  7425. },
  7426. side: {
  7427. height: math.unit(6, "feet"),
  7428. weight: math.unit(120, "lbs"),
  7429. name: "Side",
  7430. image: {
  7431. source: "./media/characters/yozey/side.svg"
  7432. }
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "Micro",
  7438. height: math.unit(3, "inches"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(6, "feet")
  7444. }
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(103, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/valeska-voss/front.svg"
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Mini-Sized Sub",
  7462. height: math.unit(3.1, "inches")
  7463. },
  7464. {
  7465. name: "Mid-Sized Sub",
  7466. height: math.unit(6.2, "inches")
  7467. },
  7468. {
  7469. name: "Full-Sized Sub",
  7470. height: math.unit(9.3, "inches")
  7471. },
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(5 + 2 / 12, "foot"),
  7475. default: true
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(6, "feet"),
  7484. weight: math.unit(160, "lbs"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/gene-zeta/front.svg",
  7488. extra: 3006 / 2826,
  7489. bottom: 182 / 3188
  7490. }
  7491. }
  7492. },
  7493. [
  7494. {
  7495. name: "Micro",
  7496. height: math.unit(6, "inches")
  7497. },
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(5 + 11 / 12, "foot"),
  7501. default: true
  7502. },
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(140, "feet")
  7506. },
  7507. {
  7508. name: "Supercharged",
  7509. height: math.unit(2500, "feet")
  7510. },
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7515. {
  7516. front: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(350, "lbs"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/razinox/front.svg",
  7522. extra: 1686 / 1548,
  7523. bottom: 28.2 / 1868
  7524. }
  7525. },
  7526. back: {
  7527. height: math.unit(6, "feet"),
  7528. weight: math.unit(350, "lbs"),
  7529. name: "Back",
  7530. image: {
  7531. source: "./media/characters/razinox/back.svg",
  7532. extra: 1660 / 1590,
  7533. bottom: 15 / 1665
  7534. }
  7535. },
  7536. },
  7537. [
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(10 + 8 / 12, "foot")
  7541. },
  7542. {
  7543. name: "Minimacro",
  7544. height: math.unit(15, "foot")
  7545. },
  7546. {
  7547. name: "Macro",
  7548. height: math.unit(60, "foot"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Megamacro",
  7553. height: math.unit(5, "miles")
  7554. },
  7555. {
  7556. name: "Gigamacro",
  7557. height: math.unit(6000, "miles")
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(150, "lbs"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/cobalt/front.svg"
  7570. }
  7571. }
  7572. },
  7573. [
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(8 + 1 / 12, "foot")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(111, "foot"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Supracosmic",
  7585. height: math.unit(1e42, "feet")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(5, "inches"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/amanda/front.svg",
  7597. extra: 926/791,
  7598. bottom: 38/964
  7599. }
  7600. },
  7601. back: {
  7602. height: math.unit(5, "inches"),
  7603. name: "Back",
  7604. image: {
  7605. source: "./media/characters/amanda/back.svg",
  7606. extra: 909/805,
  7607. bottom: 43/952
  7608. }
  7609. },
  7610. },
  7611. [
  7612. {
  7613. name: "Micro",
  7614. height: math.unit(5, "inches"),
  7615. default: true
  7616. },
  7617. ]
  7618. ))
  7619. characterMakers.push(() => makeCharacter(
  7620. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7621. {
  7622. front: {
  7623. height: math.unit(2.75, "meters"),
  7624. weight: math.unit(1200, "lb"),
  7625. name: "Front",
  7626. image: {
  7627. source: "./media/characters/teal/front.svg",
  7628. extra: 2463 / 2320,
  7629. bottom: 166 / 2629
  7630. }
  7631. },
  7632. back: {
  7633. height: math.unit(2.75, "meters"),
  7634. weight: math.unit(1200, "lb"),
  7635. name: "Back",
  7636. image: {
  7637. source: "./media/characters/teal/back.svg",
  7638. extra: 2580 / 2489,
  7639. bottom: 151 / 2731
  7640. }
  7641. },
  7642. sitting: {
  7643. height: math.unit(1.9, "meters"),
  7644. weight: math.unit(1200, "lb"),
  7645. name: "Sitting",
  7646. image: {
  7647. source: "./media/characters/teal/sitting.svg",
  7648. extra: 623 / 590,
  7649. bottom: 121 / 744
  7650. }
  7651. },
  7652. standing: {
  7653. height: math.unit(2.75, "meters"),
  7654. weight: math.unit(1200, "lb"),
  7655. name: "Standing",
  7656. image: {
  7657. source: "./media/characters/teal/standing.svg",
  7658. extra: 923 / 893,
  7659. bottom: 60 / 983
  7660. }
  7661. },
  7662. stretching: {
  7663. height: math.unit(3.65, "meters"),
  7664. weight: math.unit(1200, "lb"),
  7665. name: "Stretching",
  7666. image: {
  7667. source: "./media/characters/teal/stretching.svg",
  7668. extra: 1276 / 1244,
  7669. bottom: 0 / 1276
  7670. }
  7671. },
  7672. legged: {
  7673. height: math.unit(1.3, "meters"),
  7674. weight: math.unit(100, "lb"),
  7675. name: "Legged",
  7676. image: {
  7677. source: "./media/characters/teal/legged.svg",
  7678. extra: 462 / 437,
  7679. bottom: 24 / 486
  7680. }
  7681. },
  7682. naga: {
  7683. height: math.unit(5.4, "meters"),
  7684. weight: math.unit(4000, "lb"),
  7685. name: "Naga",
  7686. image: {
  7687. source: "./media/characters/teal/naga.svg",
  7688. extra: 1902 / 1858,
  7689. bottom: 0 / 1902
  7690. }
  7691. },
  7692. hand: {
  7693. height: math.unit(0.52, "meters"),
  7694. name: "Hand",
  7695. image: {
  7696. source: "./media/characters/teal/hand.svg"
  7697. }
  7698. },
  7699. maw: {
  7700. height: math.unit(0.43, "meters"),
  7701. name: "Maw",
  7702. image: {
  7703. source: "./media/characters/teal/maw.svg"
  7704. }
  7705. },
  7706. slit: {
  7707. height: math.unit(0.25, "meters"),
  7708. name: "Slit",
  7709. image: {
  7710. source: "./media/characters/teal/slit.svg"
  7711. }
  7712. },
  7713. },
  7714. [
  7715. {
  7716. name: "Normal",
  7717. height: math.unit(2.75, "meters"),
  7718. default: true
  7719. },
  7720. {
  7721. name: "Macro",
  7722. height: math.unit(300, "feet")
  7723. },
  7724. {
  7725. name: "Macro+",
  7726. height: math.unit(2000, "feet")
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7732. {
  7733. frontCat: {
  7734. height: math.unit(6, "feet"),
  7735. weight: math.unit(180, "lbs"),
  7736. name: "Front (Cat)",
  7737. image: {
  7738. source: "./media/characters/ravin-amulet/front-cat.svg"
  7739. }
  7740. },
  7741. frontCatAlt: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(180, "lbs"),
  7744. name: "Front (Alt, Cat)",
  7745. image: {
  7746. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7747. }
  7748. },
  7749. frontWerewolf: {
  7750. height: math.unit(6 * 1.2, "feet"),
  7751. weight: math.unit(225, "lbs"),
  7752. name: "Front (Werewolf)",
  7753. image: {
  7754. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7755. }
  7756. },
  7757. backWerewolf: {
  7758. height: math.unit(6 * 1.2, "feet"),
  7759. weight: math.unit(225, "lbs"),
  7760. name: "Back (Werewolf)",
  7761. image: {
  7762. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7763. }
  7764. },
  7765. },
  7766. [
  7767. {
  7768. name: "Nano",
  7769. height: math.unit(1, "micrometer")
  7770. },
  7771. {
  7772. name: "Micro",
  7773. height: math.unit(1, "inch")
  7774. },
  7775. {
  7776. name: "Normal",
  7777. height: math.unit(6, "feet"),
  7778. default: true
  7779. },
  7780. {
  7781. name: "Macro",
  7782. height: math.unit(60, "feet")
  7783. }
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7788. {
  7789. front: {
  7790. height: math.unit(6, "feet"),
  7791. weight: math.unit(165, "lbs"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/fluoresce/front.svg"
  7795. }
  7796. }
  7797. },
  7798. [
  7799. {
  7800. name: "Micro",
  7801. height: math.unit(6, "cm")
  7802. },
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(5 + 7 / 12, "feet"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Macro",
  7810. height: math.unit(56, "feet")
  7811. },
  7812. {
  7813. name: "Megamacro",
  7814. height: math.unit(1.9, "miles")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(9 + 6 / 12, "feet"),
  7823. weight: math.unit(523, "lbs"),
  7824. name: "Side",
  7825. image: {
  7826. source: "./media/characters/aurora/side.svg"
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(9 + 6 / 12, "feet")
  7834. },
  7835. {
  7836. name: "Macro",
  7837. height: math.unit(96, "feet"),
  7838. default: true
  7839. },
  7840. {
  7841. name: "Macro+",
  7842. height: math.unit(243, "feet")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(194, "cm"),
  7851. weight: math.unit(90, "kg"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/ranek/front.svg",
  7855. extra: 1862/1791,
  7856. bottom: 80/1942
  7857. }
  7858. },
  7859. back: {
  7860. height: math.unit(194, "cm"),
  7861. weight: math.unit(90, "kg"),
  7862. name: "Back",
  7863. image: {
  7864. source: "./media/characters/ranek/back.svg",
  7865. extra: 1853/1787,
  7866. bottom: 74/1927
  7867. }
  7868. },
  7869. feral: {
  7870. height: math.unit(30, "cm"),
  7871. weight: math.unit(1.6, "lbs"),
  7872. name: "Feral",
  7873. image: {
  7874. source: "./media/characters/ranek/feral.svg",
  7875. extra: 990/631,
  7876. bottom: 29/1019
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(194, "cm"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(100, "meters")
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(5 + 6 / 12, "feet"),
  7897. weight: math.unit(153, "lbs"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/andrew-cooper/front.svg"
  7901. }
  7902. },
  7903. },
  7904. [
  7905. {
  7906. name: "Nano",
  7907. height: math.unit(1, "mm")
  7908. },
  7909. {
  7910. name: "Micro",
  7911. height: math.unit(2, "inches")
  7912. },
  7913. {
  7914. name: "Normal",
  7915. height: math.unit(5 + 6 / 12, "feet"),
  7916. default: true
  7917. }
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7922. {
  7923. front: {
  7924. height: math.unit(6, "feet"),
  7925. weight: math.unit(180, "lbs"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/akane-sato/front.svg",
  7929. extra: 1219 / 1140
  7930. }
  7931. },
  7932. back: {
  7933. height: math.unit(6, "feet"),
  7934. weight: math.unit(180, "lbs"),
  7935. name: "Back",
  7936. image: {
  7937. source: "./media/characters/akane-sato/back.svg",
  7938. extra: 1219 / 1170
  7939. }
  7940. },
  7941. },
  7942. [
  7943. {
  7944. name: "Normal",
  7945. height: math.unit(2.5, "meters")
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(250, "meters"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Megamacro",
  7954. height: math.unit(25, "km")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(6, "feet"),
  7963. weight: math.unit(65, "kg"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/rook/front.svg",
  7967. extra: 960 / 950
  7968. }
  7969. }
  7970. },
  7971. [
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(8.8, "feet")
  7975. },
  7976. {
  7977. name: "Macro",
  7978. height: math.unit(88, "feet"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Megamacro",
  7983. height: math.unit(8, "miles")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(12 + 2 / 12, "feet"),
  7992. weight: math.unit(808, "lbs"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/prodigy/front.svg"
  7996. }
  7997. }
  7998. },
  7999. [
  8000. {
  8001. name: "Normal",
  8002. height: math.unit(12 + 2 / 12, "feet"),
  8003. default: true
  8004. },
  8005. {
  8006. name: "Macro",
  8007. height: math.unit(143, "feet")
  8008. },
  8009. {
  8010. name: "Macro+",
  8011. height: math.unit(400, "feet")
  8012. },
  8013. ]
  8014. ))
  8015. characterMakers.push(() => makeCharacter(
  8016. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8017. {
  8018. front: {
  8019. height: math.unit(6, "feet"),
  8020. weight: math.unit(225, "lbs"),
  8021. name: "Front",
  8022. image: {
  8023. source: "./media/characters/daniel/front.svg"
  8024. }
  8025. },
  8026. leaning: {
  8027. height: math.unit(6, "feet"),
  8028. weight: math.unit(225, "lbs"),
  8029. name: "Leaning",
  8030. image: {
  8031. source: "./media/characters/daniel/leaning.svg"
  8032. }
  8033. },
  8034. },
  8035. [
  8036. {
  8037. name: "Macro",
  8038. height: math.unit(1000, "feet"),
  8039. default: true
  8040. },
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8045. {
  8046. front: {
  8047. height: math.unit(6, "feet"),
  8048. weight: math.unit(88, "lbs"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/chiros/front.svg",
  8052. extra: 306 / 226
  8053. }
  8054. },
  8055. side: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(88, "lbs"),
  8058. name: "Side",
  8059. image: {
  8060. source: "./media/characters/chiros/side.svg",
  8061. extra: 306 / 226
  8062. }
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(6, "cm"),
  8069. default: true
  8070. },
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8075. {
  8076. front: {
  8077. height: math.unit(6, "feet"),
  8078. weight: math.unit(100, "lbs"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/selka/front.svg",
  8082. extra: 947 / 887
  8083. }
  8084. }
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(5, "cm"),
  8090. default: true
  8091. },
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(8 + 3 / 12, "feet"),
  8099. weight: math.unit(424, "lbs"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/verin/front.svg",
  8103. extra: 1845 / 1550
  8104. }
  8105. },
  8106. frontArmored: {
  8107. height: math.unit(8 + 3 / 12, "feet"),
  8108. weight: math.unit(424, "lbs"),
  8109. name: "Front (Armored)",
  8110. image: {
  8111. source: "./media/characters/verin/front-armor.svg",
  8112. extra: 1845 / 1550,
  8113. bottom: 0.01
  8114. }
  8115. },
  8116. back: {
  8117. height: math.unit(8 + 3 / 12, "feet"),
  8118. weight: math.unit(424, "lbs"),
  8119. name: "Back",
  8120. image: {
  8121. source: "./media/characters/verin/back.svg",
  8122. bottom: 0.1,
  8123. extra: 1
  8124. }
  8125. },
  8126. foot: {
  8127. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8128. name: "Foot",
  8129. image: {
  8130. source: "./media/characters/verin/foot.svg"
  8131. }
  8132. },
  8133. },
  8134. [
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(8 + 3 / 12, "feet")
  8138. },
  8139. {
  8140. name: "Minimacro",
  8141. height: math.unit(21, "feet"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(626, "feet")
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(2.718, "meters"),
  8155. weight: math.unit(150, "lbs"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/sovrim-terraquian/front.svg",
  8159. extra: 1752/1689,
  8160. bottom: 36/1788
  8161. }
  8162. },
  8163. back: {
  8164. height: math.unit(2.718, "meters"),
  8165. weight: math.unit(150, "lbs"),
  8166. name: "Back",
  8167. image: {
  8168. source: "./media/characters/sovrim-terraquian/back.svg",
  8169. extra: 1698/1657,
  8170. bottom: 58/1756
  8171. }
  8172. },
  8173. tongue: {
  8174. height: math.unit(2.865, "feet"),
  8175. name: "Tongue",
  8176. image: {
  8177. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8178. }
  8179. },
  8180. hand: {
  8181. height: math.unit(1.61, "feet"),
  8182. name: "Hand",
  8183. image: {
  8184. source: "./media/characters/sovrim-terraquian/hand.svg"
  8185. }
  8186. },
  8187. foot: {
  8188. height: math.unit(1.05, "feet"),
  8189. name: "Foot",
  8190. image: {
  8191. source: "./media/characters/sovrim-terraquian/foot.svg"
  8192. }
  8193. },
  8194. footAlt: {
  8195. height: math.unit(0.88, "feet"),
  8196. name: "Foot (Alt)",
  8197. image: {
  8198. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Micro",
  8205. height: math.unit(2, "inches")
  8206. },
  8207. {
  8208. name: "Small",
  8209. height: math.unit(1, "meter")
  8210. },
  8211. {
  8212. name: "Normal",
  8213. height: math.unit(Math.E, "meters"),
  8214. default: true
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(20, "meters")
  8219. },
  8220. {
  8221. name: "Macro+",
  8222. height: math.unit(400, "meters")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(7, "feet"),
  8231. weight: math.unit(489, "lbs"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/reece-silvermane/front.svg",
  8235. bottom: 0.02,
  8236. extra: 1
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(1.5, "miles"),
  8244. default: true
  8245. },
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8250. {
  8251. front: {
  8252. height: math.unit(6, "feet"),
  8253. weight: math.unit(78, "kg"),
  8254. name: "Front",
  8255. image: {
  8256. source: "./media/characters/kane/front.svg",
  8257. extra: 978 / 899
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(2.1, "m"),
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(1, "km"),
  8269. default: true
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(6, "feet"),
  8278. weight: math.unit(200, "kg"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/tegon/front.svg",
  8282. bottom: 0.01,
  8283. extra: 1
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Micro",
  8290. height: math.unit(1, "inch")
  8291. },
  8292. {
  8293. name: "Normal",
  8294. height: math.unit(6 + 3 / 12, "feet"),
  8295. default: true
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(300, "feet")
  8300. },
  8301. {
  8302. name: "Megamacro",
  8303. height: math.unit(69, "miles")
  8304. },
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8309. {
  8310. side: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(2304, "lbs"),
  8313. name: "Side",
  8314. image: {
  8315. source: "./media/characters/arcturax/side.svg",
  8316. extra: 790 / 376,
  8317. bottom: 0.01
  8318. }
  8319. },
  8320. },
  8321. [
  8322. {
  8323. name: "Micro",
  8324. height: math.unit(2, "inch")
  8325. },
  8326. {
  8327. name: "Normal",
  8328. height: math.unit(6, "feet")
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(39, "feet"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Megamacro",
  8337. height: math.unit(7, "miles")
  8338. },
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8343. {
  8344. front: {
  8345. height: math.unit(6, "feet"),
  8346. weight: math.unit(50, "lbs"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/sentri/front.svg",
  8350. extra: 1750 / 1570,
  8351. bottom: 0.025
  8352. }
  8353. },
  8354. frontAlt: {
  8355. height: math.unit(6, "feet"),
  8356. weight: math.unit(50, "lbs"),
  8357. name: "Front (Alt)",
  8358. image: {
  8359. source: "./media/characters/sentri/front-alt.svg",
  8360. extra: 1750 / 1570,
  8361. bottom: 0.025
  8362. }
  8363. },
  8364. },
  8365. [
  8366. {
  8367. name: "Normal",
  8368. height: math.unit(15, "feet"),
  8369. default: true
  8370. },
  8371. {
  8372. name: "Macro",
  8373. height: math.unit(2500, "feet")
  8374. }
  8375. ]
  8376. ))
  8377. characterMakers.push(() => makeCharacter(
  8378. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8379. {
  8380. front: {
  8381. height: math.unit(5 + 8 / 12, "feet"),
  8382. weight: math.unit(130, "lbs"),
  8383. name: "Front",
  8384. image: {
  8385. source: "./media/characters/corvin/front.svg",
  8386. extra: 1803 / 1629
  8387. }
  8388. },
  8389. frontShirt: {
  8390. height: math.unit(5 + 8 / 12, "feet"),
  8391. weight: math.unit(130, "lbs"),
  8392. name: "Front (Shirt)",
  8393. image: {
  8394. source: "./media/characters/corvin/front-shirt.svg",
  8395. extra: 1803 / 1629
  8396. }
  8397. },
  8398. frontPoncho: {
  8399. height: math.unit(5 + 8 / 12, "feet"),
  8400. weight: math.unit(130, "lbs"),
  8401. name: "Front (Poncho)",
  8402. image: {
  8403. source: "./media/characters/corvin/front-poncho.svg",
  8404. extra: 1803 / 1629
  8405. }
  8406. },
  8407. side: {
  8408. height: math.unit(5 + 8 / 12, "feet"),
  8409. weight: math.unit(130, "lbs"),
  8410. name: "Side",
  8411. image: {
  8412. source: "./media/characters/corvin/side.svg",
  8413. extra: 1012 / 945
  8414. }
  8415. },
  8416. back: {
  8417. height: math.unit(5 + 8 / 12, "feet"),
  8418. weight: math.unit(130, "lbs"),
  8419. name: "Back",
  8420. image: {
  8421. source: "./media/characters/corvin/back.svg",
  8422. extra: 1803 / 1629
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(3, "inches")
  8430. },
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(5 + 8 / 12, "feet")
  8434. },
  8435. {
  8436. name: "Macro",
  8437. height: math.unit(300, "feet"),
  8438. default: true
  8439. },
  8440. {
  8441. name: "Megamacro",
  8442. height: math.unit(500, "miles")
  8443. }
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(135, "lbs"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/q/front.svg",
  8455. extra: 854 / 752,
  8456. bottom: 0.005
  8457. }
  8458. },
  8459. back: {
  8460. height: math.unit(6, "feet"),
  8461. weight: math.unit(130, "lbs"),
  8462. name: "Back",
  8463. image: {
  8464. source: "./media/characters/q/back.svg",
  8465. extra: 854 / 752
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Macro",
  8472. height: math.unit(90, "feet"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Extra Macro",
  8477. height: math.unit(300, "feet"),
  8478. },
  8479. {
  8480. name: "BIG WALF",
  8481. height: math.unit(750, "feet"),
  8482. },
  8483. ]
  8484. ))
  8485. characterMakers.push(() => makeCharacter(
  8486. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8487. {
  8488. front: {
  8489. height: math.unit(6, "feet"),
  8490. weight: math.unit(150, "lbs"),
  8491. name: "Front",
  8492. image: {
  8493. source: "./media/characters/carley/front.svg",
  8494. extra: 3927 / 3540,
  8495. bottom: 29.2 / 735
  8496. }
  8497. }
  8498. },
  8499. [
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(6 + 3 / 12, "feet")
  8503. },
  8504. {
  8505. name: "Macro",
  8506. height: math.unit(185, "feet"),
  8507. default: true
  8508. },
  8509. {
  8510. name: "Megamacro",
  8511. height: math.unit(8, "miles"),
  8512. },
  8513. ]
  8514. ))
  8515. characterMakers.push(() => makeCharacter(
  8516. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8517. {
  8518. front: {
  8519. height: math.unit(3, "feet"),
  8520. weight: math.unit(28, "lbs"),
  8521. name: "Front",
  8522. image: {
  8523. source: "./media/characters/citrine/front.svg"
  8524. }
  8525. }
  8526. },
  8527. [
  8528. {
  8529. name: "Normal",
  8530. height: math.unit(3, "feet"),
  8531. default: true
  8532. }
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8537. {
  8538. front: {
  8539. height: math.unit(14, "feet"),
  8540. weight: math.unit(1450, "kg"),
  8541. capacity: math.unit(15, "people"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/aura-starwind/front.svg",
  8545. extra: 1440/1327,
  8546. bottom: 11/1451
  8547. }
  8548. },
  8549. side: {
  8550. height: math.unit(14, "feet"),
  8551. weight: math.unit(1450, "kg"),
  8552. capacity: math.unit(15, "people"),
  8553. name: "Side",
  8554. image: {
  8555. source: "./media/characters/aura-starwind/side.svg",
  8556. extra: 1654 / 1497
  8557. }
  8558. },
  8559. taur: {
  8560. height: math.unit(18, "feet"),
  8561. weight: math.unit(5500, "kg"),
  8562. capacity: math.unit(50, "people"),
  8563. name: "Taur",
  8564. image: {
  8565. source: "./media/characters/aura-starwind/taur.svg",
  8566. extra: 1760 / 1650
  8567. }
  8568. },
  8569. feral: {
  8570. height: math.unit(46, "feet"),
  8571. weight: math.unit(25000, "kg"),
  8572. capacity: math.unit(120, "people"),
  8573. name: "Feral",
  8574. image: {
  8575. source: "./media/characters/aura-starwind/feral.svg"
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(14, "feet"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(50, "meters")
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(5000, "meters")
  8592. },
  8593. {
  8594. name: "Gigamacro",
  8595. height: math.unit(100000, "kilometers")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(2 + 7 / 12, "feet"),
  8604. weight: math.unit(32, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/rivet/front.svg",
  8608. extra: 1716 / 1658,
  8609. bottom: 0.03
  8610. }
  8611. },
  8612. foot: {
  8613. height: math.unit(0.551, "feet"),
  8614. name: "Rivet's Foot",
  8615. image: {
  8616. source: "./media/characters/rivet/foot.svg"
  8617. },
  8618. rename: true
  8619. }
  8620. },
  8621. [
  8622. {
  8623. name: "Micro",
  8624. height: math.unit(1.5, "inches"),
  8625. },
  8626. {
  8627. name: "Normal",
  8628. height: math.unit(2 + 7 / 12, "feet"),
  8629. default: true
  8630. },
  8631. {
  8632. name: "Macro",
  8633. height: math.unit(85, "feet")
  8634. },
  8635. {
  8636. name: "Megamacro",
  8637. height: math.unit(2.2, "km")
  8638. }
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(5 + 9 / 12, "feet"),
  8646. weight: math.unit(150, "lbs"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/coffee/front.svg",
  8650. extra: 3666 / 3032,
  8651. bottom: 0.04
  8652. }
  8653. },
  8654. foot: {
  8655. height: math.unit(1.29, "feet"),
  8656. name: "Foot",
  8657. image: {
  8658. source: "./media/characters/coffee/foot.svg"
  8659. }
  8660. },
  8661. },
  8662. [
  8663. {
  8664. name: "Micro",
  8665. height: math.unit(2, "inches"),
  8666. },
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(5 + 9 / 12, "feet"),
  8670. default: true
  8671. },
  8672. {
  8673. name: "Macro",
  8674. height: math.unit(800, "feet")
  8675. },
  8676. {
  8677. name: "Megamacro",
  8678. height: math.unit(25, "miles")
  8679. }
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(6, "feet"),
  8687. weight: math.unit(200, "lbs"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/chari-gal/front.svg",
  8691. extra: 1568 / 1385,
  8692. bottom: 0.047
  8693. }
  8694. },
  8695. gigantamax: {
  8696. height: math.unit(6 * 16, "feet"),
  8697. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8698. name: "Gigantamax",
  8699. image: {
  8700. source: "./media/characters/chari-gal/gigantamax.svg",
  8701. extra: 1124 / 888,
  8702. bottom: 0.03
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(5 + 7 / 12, "feet")
  8710. },
  8711. {
  8712. name: "Macro",
  8713. height: math.unit(200, "feet"),
  8714. default: true
  8715. }
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(150, "lbs"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/nova/front.svg",
  8727. extra: 5000 / 4722,
  8728. bottom: 0.02
  8729. }
  8730. }
  8731. },
  8732. [
  8733. {
  8734. name: "Micro-",
  8735. height: math.unit(0.8, "inches")
  8736. },
  8737. {
  8738. name: "Micro",
  8739. height: math.unit(2, "inches"),
  8740. default: true
  8741. },
  8742. ]
  8743. ))
  8744. characterMakers.push(() => makeCharacter(
  8745. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8746. {
  8747. front: {
  8748. height: math.unit(3 + 1 / 12, "feet"),
  8749. weight: math.unit(21.7, "lbs"),
  8750. name: "Front",
  8751. image: {
  8752. source: "./media/characters/argent/front.svg",
  8753. extra: 1471 / 1331,
  8754. bottom: 100.8 / 1575.5
  8755. }
  8756. }
  8757. },
  8758. [
  8759. {
  8760. name: "Micro",
  8761. height: math.unit(2, "inches")
  8762. },
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(3 + 1 / 12, "feet"),
  8766. default: true
  8767. },
  8768. {
  8769. name: "Macro",
  8770. height: math.unit(120, "feet")
  8771. },
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8776. {
  8777. lamp: {
  8778. height: math.unit(7 * 1559 / 989, "feet"),
  8779. name: "Magic Lamp",
  8780. image: {
  8781. source: "./media/characters/mira-al-cul/lamp.svg",
  8782. extra: 1617 / 1559
  8783. }
  8784. },
  8785. front: {
  8786. height: math.unit(7, "feet"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/mira-al-cul/front.svg",
  8790. extra: 1044 / 990
  8791. }
  8792. },
  8793. },
  8794. [
  8795. {
  8796. name: "Heavily Restricted",
  8797. height: math.unit(7 * 1559 / 989, "feet")
  8798. },
  8799. {
  8800. name: "Freshly Freed",
  8801. height: math.unit(50 * 1559 / 989, "feet")
  8802. },
  8803. {
  8804. name: "World Encompassing",
  8805. height: math.unit(10000 * 1559 / 989, "miles")
  8806. },
  8807. {
  8808. name: "Galactic",
  8809. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8810. },
  8811. {
  8812. name: "Palmed Universe",
  8813. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8814. default: true
  8815. },
  8816. {
  8817. name: "Multiversal Matriarch",
  8818. height: math.unit(8.87e10, "yottameters")
  8819. },
  8820. {
  8821. name: "Void Mother",
  8822. height: math.unit(3.14e110, "yottaparsecs")
  8823. },
  8824. {
  8825. name: "Toying with Transcendence",
  8826. height: math.unit(1e307, "meters")
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8832. {
  8833. front: {
  8834. height: math.unit(17 + 1 / 12, "feet"),
  8835. weight: math.unit(476.2 * 5, "lbs"),
  8836. name: "Front",
  8837. image: {
  8838. source: "./media/characters/kuro-shi-uchū/front.svg",
  8839. extra: 2329 / 1835,
  8840. bottom: 0.02
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Micro",
  8847. height: math.unit(2, "inches")
  8848. },
  8849. {
  8850. name: "Normal",
  8851. height: math.unit(12, "meters")
  8852. },
  8853. {
  8854. name: "Planetary",
  8855. height: math.unit(0.00929, "AU"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Universal",
  8860. height: math.unit(20, "gigaparsecs")
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8866. {
  8867. front: {
  8868. height: math.unit(5 + 2 / 12, "feet"),
  8869. weight: math.unit(120, "lbs"),
  8870. name: "Front",
  8871. image: {
  8872. source: "./media/characters/katherine/front.svg",
  8873. extra: 2075 / 1969
  8874. }
  8875. },
  8876. dress: {
  8877. height: math.unit(5 + 2 / 12, "feet"),
  8878. weight: math.unit(120, "lbs"),
  8879. name: "Dress",
  8880. image: {
  8881. source: "./media/characters/katherine/dress.svg",
  8882. extra: 2258 / 2064
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(1, "inches"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(5 + 2 / 12, "feet")
  8895. },
  8896. {
  8897. name: "Macro",
  8898. height: math.unit(100, "meters")
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(80, "miles")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(7 + 8 / 12, "feet"),
  8911. weight: math.unit(250, "lbs"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/yevis/front.svg",
  8915. extra: 1938 / 1755
  8916. }
  8917. }
  8918. },
  8919. [
  8920. {
  8921. name: "Mortal",
  8922. height: math.unit(7 + 8 / 12, "feet")
  8923. },
  8924. {
  8925. name: "Battle",
  8926. height: math.unit(25 + 11 / 12, "feet")
  8927. },
  8928. {
  8929. name: "Wrath",
  8930. height: math.unit(1654 + 11 / 12, "feet")
  8931. },
  8932. {
  8933. name: "Planet Destroyer",
  8934. height: math.unit(12000, "miles")
  8935. },
  8936. {
  8937. name: "Galaxy Conqueror",
  8938. height: math.unit(1.45, "zettameters"),
  8939. default: true
  8940. },
  8941. {
  8942. name: "Universal War",
  8943. height: math.unit(184, "gigaparsecs")
  8944. },
  8945. {
  8946. name: "Eternity War",
  8947. height: math.unit(1.98e55, "yottaparsecs")
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(5 + 8 / 12, "feet"),
  8956. weight: math.unit(63, "kg"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/xavier/front.svg",
  8960. extra: 944 / 883
  8961. }
  8962. },
  8963. frontStretch: {
  8964. height: math.unit(5 + 8 / 12, "feet"),
  8965. weight: math.unit(63, "kg"),
  8966. name: "Stretching",
  8967. image: {
  8968. source: "./media/characters/xavier/front-stretch.svg",
  8969. extra: 962 / 820
  8970. }
  8971. },
  8972. },
  8973. [
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(5 + 8 / 12, "feet")
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(100, "meters"),
  8981. default: true
  8982. },
  8983. {
  8984. name: "McLargeHuge",
  8985. height: math.unit(10, "miles")
  8986. },
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8991. {
  8992. front: {
  8993. height: math.unit(5 + 5 / 12, "feet"),
  8994. weight: math.unit(150, "lb"),
  8995. name: "Front",
  8996. image: {
  8997. source: "./media/characters/joshii/front.svg",
  8998. extra: 765 / 653,
  8999. bottom: 51 / 816
  9000. }
  9001. },
  9002. foot: {
  9003. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9004. name: "Foot",
  9005. image: {
  9006. source: "./media/characters/joshii/foot.svg"
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Micro",
  9013. height: math.unit(2, "inches"),
  9014. default: true
  9015. },
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(5 + 5 / 12, "feet")
  9019. },
  9020. {
  9021. name: "Macro",
  9022. height: math.unit(785, "feet")
  9023. },
  9024. {
  9025. name: "Megamacro",
  9026. height: math.unit(24.5, "miles")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(6, "feet"),
  9035. weight: math.unit(150, "lb"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/goddess-elizabeth/front.svg",
  9039. extra: 1800 / 1525,
  9040. bottom: 0.005
  9041. }
  9042. },
  9043. foot: {
  9044. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9045. name: "Foot",
  9046. image: {
  9047. source: "./media/characters/goddess-elizabeth/foot.svg"
  9048. }
  9049. },
  9050. mouth: {
  9051. height: math.unit(6, "feet"),
  9052. name: "Mouth",
  9053. image: {
  9054. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Micro",
  9061. height: math.unit(12, "feet")
  9062. },
  9063. {
  9064. name: "Normal",
  9065. height: math.unit(80, "miles"),
  9066. default: true
  9067. },
  9068. {
  9069. name: "Macro",
  9070. height: math.unit(15000, "parsecs")
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(5 + 9 / 12, "feet"),
  9079. weight: math.unit(144, "lb"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/kara/front.svg"
  9083. }
  9084. },
  9085. feet: {
  9086. height: math.unit(6 / 6.765, "feet"),
  9087. name: "Kara's Feet",
  9088. rename: true,
  9089. image: {
  9090. source: "./media/characters/kara/feet.svg"
  9091. }
  9092. },
  9093. },
  9094. [
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(5 + 9 / 12, "feet")
  9098. },
  9099. {
  9100. name: "Macro",
  9101. height: math.unit(174, "feet"),
  9102. default: true
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9108. {
  9109. front: {
  9110. height: math.unit(18, "feet"),
  9111. weight: math.unit(4050, "lb"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/tyrone/front.svg",
  9115. extra: 2405 / 2270,
  9116. bottom: 182 / 2587
  9117. }
  9118. },
  9119. },
  9120. [
  9121. {
  9122. name: "Normal",
  9123. height: math.unit(18, "feet"),
  9124. default: true
  9125. },
  9126. {
  9127. name: "Macro",
  9128. height: math.unit(300, "feet")
  9129. },
  9130. {
  9131. name: "Megamacro",
  9132. height: math.unit(15, "km")
  9133. },
  9134. {
  9135. name: "Gigamacro",
  9136. height: math.unit(500, "km")
  9137. },
  9138. {
  9139. name: "Teramacro",
  9140. height: math.unit(0.5, "gigameters")
  9141. },
  9142. {
  9143. name: "Omnimacro",
  9144. height: math.unit(1e252, "yottauniverse")
  9145. },
  9146. ]
  9147. ))
  9148. characterMakers.push(() => makeCharacter(
  9149. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9150. {
  9151. front: {
  9152. height: math.unit(7 + 8 / 12, "feet"),
  9153. weight: math.unit(120, "lb"),
  9154. name: "Front",
  9155. image: {
  9156. source: "./media/characters/danny/front.svg",
  9157. extra: 1490 / 1350
  9158. }
  9159. },
  9160. back: {
  9161. height: math.unit(7 + 8 / 12, "feet"),
  9162. weight: math.unit(120, "lb"),
  9163. name: "Back",
  9164. image: {
  9165. source: "./media/characters/danny/back.svg",
  9166. extra: 1490 / 1350
  9167. }
  9168. },
  9169. },
  9170. [
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(7 + 8 / 12, "feet"),
  9174. default: true
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(3.5, "inches"),
  9183. weight: math.unit(19, "grams"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/mallow/front.svg",
  9187. extra: 471 / 431
  9188. }
  9189. },
  9190. back: {
  9191. height: math.unit(3.5, "inches"),
  9192. weight: math.unit(19, "grams"),
  9193. name: "Back",
  9194. image: {
  9195. source: "./media/characters/mallow/back.svg",
  9196. extra: 471 / 431
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(3.5, "inches"),
  9204. default: true
  9205. },
  9206. ]
  9207. ))
  9208. characterMakers.push(() => makeCharacter(
  9209. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9210. {
  9211. front: {
  9212. height: math.unit(9, "feet"),
  9213. weight: math.unit(230, "kg"),
  9214. name: "Front",
  9215. image: {
  9216. source: "./media/characters/starry-aqua/front.svg"
  9217. }
  9218. },
  9219. back: {
  9220. height: math.unit(9, "feet"),
  9221. weight: math.unit(230, "kg"),
  9222. name: "Back",
  9223. image: {
  9224. source: "./media/characters/starry-aqua/back.svg"
  9225. }
  9226. },
  9227. hand: {
  9228. height: math.unit(9 * 0.1168, "feet"),
  9229. name: "Hand",
  9230. image: {
  9231. source: "./media/characters/starry-aqua/hand.svg"
  9232. }
  9233. },
  9234. foot: {
  9235. height: math.unit(9 * 0.18, "feet"),
  9236. name: "Foot",
  9237. image: {
  9238. source: "./media/characters/starry-aqua/foot.svg"
  9239. }
  9240. }
  9241. },
  9242. [
  9243. {
  9244. name: "Micro",
  9245. height: math.unit(3, "inches")
  9246. },
  9247. {
  9248. name: "Normal",
  9249. height: math.unit(9, "feet")
  9250. },
  9251. {
  9252. name: "Macro",
  9253. height: math.unit(300, "feet"),
  9254. default: true
  9255. },
  9256. {
  9257. name: "Megamacro",
  9258. height: math.unit(3200, "feet")
  9259. }
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(15, "feet"),
  9267. weight: math.unit(5026, "lb"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/luka-towers/front.svg",
  9271. extra: 1269/1133,
  9272. bottom: 51/1320
  9273. }
  9274. },
  9275. },
  9276. [
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(15, "feet"),
  9280. default: true
  9281. },
  9282. {
  9283. name: "Minimacro",
  9284. height: math.unit(25, "feet")
  9285. },
  9286. {
  9287. name: "Macro",
  9288. height: math.unit(320, "feet")
  9289. },
  9290. {
  9291. name: "Megamacro",
  9292. height: math.unit(35000, "feet")
  9293. },
  9294. {
  9295. name: "Gigamacro",
  9296. height: math.unit(4000, "miles")
  9297. },
  9298. {
  9299. name: "Teramacro",
  9300. height: math.unit(15000, "miles")
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9306. {
  9307. front: {
  9308. height: math.unit(6, "feet"),
  9309. weight: math.unit(150, "lb"),
  9310. name: "Front",
  9311. image: {
  9312. source: "./media/characters/natalie-nightring/front.svg",
  9313. extra: 1,
  9314. bottom: 0.06
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Uh Oh",
  9321. height: math.unit(0.1, "mm")
  9322. },
  9323. {
  9324. name: "Small",
  9325. height: math.unit(3, "inches")
  9326. },
  9327. {
  9328. name: "Human Scale",
  9329. height: math.unit(6, "feet")
  9330. },
  9331. {
  9332. name: "Librarian",
  9333. height: math.unit(50, "feet"),
  9334. default: true
  9335. },
  9336. {
  9337. name: "Immense",
  9338. height: math.unit(200, "miles")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(6, "feet"),
  9347. weight: math.unit(180, "lbs"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/danni-rosie/front.svg",
  9351. extra: 1260 / 1128,
  9352. bottom: 0.022
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Micro",
  9359. height: math.unit(2, "inches"),
  9360. default: true
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(5 + 9 / 12, "feet"),
  9369. weight: math.unit(220, "lb"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/samantha-kruse/front.svg",
  9373. extra: (985 / 935),
  9374. bottom: 0.03
  9375. }
  9376. },
  9377. frontUndressed: {
  9378. height: math.unit(5 + 9 / 12, "feet"),
  9379. weight: math.unit(220, "lb"),
  9380. name: "Front (Undressed)",
  9381. image: {
  9382. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9383. extra: (973 / 923),
  9384. bottom: 0.025
  9385. }
  9386. },
  9387. fat: {
  9388. height: math.unit(5 + 9 / 12, "feet"),
  9389. weight: math.unit(900, "lb"),
  9390. name: "Front (Fat)",
  9391. image: {
  9392. source: "./media/characters/samantha-kruse/fat.svg",
  9393. extra: 2688 / 2561
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(5 + 9 / 12, "feet"),
  9401. default: true
  9402. }
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9407. {
  9408. back: {
  9409. height: math.unit(5 + 4 / 12, "feet"),
  9410. weight: math.unit(4963, "lb"),
  9411. name: "Back",
  9412. image: {
  9413. source: "./media/characters/amelia-rosie/back.svg",
  9414. extra: 1113 / 963,
  9415. bottom: 0.01
  9416. }
  9417. },
  9418. },
  9419. [
  9420. {
  9421. name: "Level 0",
  9422. height: math.unit(5 + 4 / 12, "feet")
  9423. },
  9424. {
  9425. name: "Level 1",
  9426. height: math.unit(164597, "feet"),
  9427. default: true
  9428. },
  9429. {
  9430. name: "Level 2",
  9431. height: math.unit(956243, "miles")
  9432. },
  9433. {
  9434. name: "Level 3",
  9435. height: math.unit(29421709423, "miles")
  9436. },
  9437. {
  9438. name: "Level 4",
  9439. height: math.unit(154, "lightyears")
  9440. },
  9441. {
  9442. name: "Level 5",
  9443. height: math.unit(4738272, "lightyears")
  9444. },
  9445. {
  9446. name: "Level 6",
  9447. height: math.unit(145787152896, "lightyears")
  9448. },
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9453. {
  9454. front: {
  9455. height: math.unit(5 + 11 / 12, "feet"),
  9456. weight: math.unit(65, "kg"),
  9457. name: "Front",
  9458. image: {
  9459. source: "./media/characters/rook-kitara/front.svg",
  9460. extra: 1347 / 1274,
  9461. bottom: 0.005
  9462. }
  9463. },
  9464. },
  9465. [
  9466. {
  9467. name: "Totally Unfair",
  9468. height: math.unit(1.8, "mm")
  9469. },
  9470. {
  9471. name: "Lap Rookie",
  9472. height: math.unit(1.4, "feet")
  9473. },
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(5 + 11 / 12, "feet"),
  9477. default: true
  9478. },
  9479. {
  9480. name: "How Did This Happen",
  9481. height: math.unit(80, "miles")
  9482. }
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9487. {
  9488. front: {
  9489. height: math.unit(7, "feet"),
  9490. weight: math.unit(300, "lb"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/pisces/front.svg",
  9494. extra: 2255 / 2115,
  9495. bottom: 0.03
  9496. }
  9497. },
  9498. back: {
  9499. height: math.unit(7, "feet"),
  9500. weight: math.unit(300, "lb"),
  9501. name: "Back",
  9502. image: {
  9503. source: "./media/characters/pisces/back.svg",
  9504. extra: 2146 / 2055,
  9505. bottom: 0.04
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(7, "feet"),
  9513. default: true
  9514. },
  9515. {
  9516. name: "Swimming Pool",
  9517. height: math.unit(12.2, "meters")
  9518. },
  9519. {
  9520. name: "Olympic Swimming Pool",
  9521. height: math.unit(56.3, "meters")
  9522. },
  9523. {
  9524. name: "Lake Superior",
  9525. height: math.unit(93900, "meters")
  9526. },
  9527. {
  9528. name: "Mediterranean Sea",
  9529. height: math.unit(644457, "meters")
  9530. },
  9531. {
  9532. name: "World's Oceans",
  9533. height: math.unit(4567491, "meters")
  9534. },
  9535. ]
  9536. ))
  9537. characterMakers.push(() => makeCharacter(
  9538. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9539. {
  9540. front: {
  9541. height: math.unit(2.3, "meters"),
  9542. weight: math.unit(120, "kg"),
  9543. name: "Front",
  9544. image: {
  9545. source: "./media/characters/zelas/front.svg"
  9546. }
  9547. },
  9548. side: {
  9549. height: math.unit(2.3, "meters"),
  9550. weight: math.unit(120, "kg"),
  9551. name: "Side",
  9552. image: {
  9553. source: "./media/characters/zelas/side.svg"
  9554. }
  9555. },
  9556. back: {
  9557. height: math.unit(2.3, "meters"),
  9558. weight: math.unit(120, "kg"),
  9559. name: "Back",
  9560. image: {
  9561. source: "./media/characters/zelas/back.svg"
  9562. }
  9563. },
  9564. foot: {
  9565. height: math.unit(1.116, "feet"),
  9566. name: "Foot",
  9567. image: {
  9568. source: "./media/characters/zelas/foot.svg"
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Normal",
  9575. height: math.unit(2.3, "meters")
  9576. },
  9577. {
  9578. name: "Macro",
  9579. height: math.unit(30, "meters"),
  9580. default: true
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9586. {
  9587. front: {
  9588. height: math.unit(1, "inch"),
  9589. weight: math.unit(0.21, "grams"),
  9590. name: "Front",
  9591. image: {
  9592. source: "./media/characters/talbot/front.svg",
  9593. extra: 594 / 544
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Micro",
  9600. height: math.unit(1, "inch"),
  9601. default: true
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9607. {
  9608. front: {
  9609. height: math.unit(3 + 3 / 12, "feet"),
  9610. weight: math.unit(51.8, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/fliss/front.svg",
  9614. extra: 840 / 640
  9615. }
  9616. },
  9617. },
  9618. [
  9619. {
  9620. name: "Teeny Tiny",
  9621. height: math.unit(1, "mm")
  9622. },
  9623. {
  9624. name: "Small",
  9625. height: math.unit(1, "inch"),
  9626. default: true
  9627. },
  9628. {
  9629. name: "Standard Sylveon",
  9630. height: math.unit(3 + 3 / 12, "feet")
  9631. },
  9632. {
  9633. name: "Large Nuisance",
  9634. height: math.unit(33, "feet")
  9635. },
  9636. {
  9637. name: "City Filler",
  9638. height: math.unit(3000, "feet")
  9639. },
  9640. {
  9641. name: "New Horizon",
  9642. height: math.unit(6000, "miles")
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9648. {
  9649. front: {
  9650. height: math.unit(5, "cm"),
  9651. weight: math.unit(1.94, "g"),
  9652. name: "Front",
  9653. image: {
  9654. source: "./media/characters/fleta/front.svg",
  9655. extra: 835 / 803
  9656. }
  9657. },
  9658. back: {
  9659. height: math.unit(5, "cm"),
  9660. weight: math.unit(1.94, "g"),
  9661. name: "Back",
  9662. image: {
  9663. source: "./media/characters/fleta/back.svg",
  9664. extra: 835 / 803
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Micro",
  9671. height: math.unit(5, "cm"),
  9672. default: true
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9678. {
  9679. front: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(225, "lb"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/dominic/front.svg",
  9685. extra: 1770 / 1620,
  9686. bottom: 0.025
  9687. }
  9688. },
  9689. back: {
  9690. height: math.unit(6, "feet"),
  9691. weight: math.unit(225, "lb"),
  9692. name: "Back",
  9693. image: {
  9694. source: "./media/characters/dominic/back.svg",
  9695. extra: 1745 / 1620,
  9696. bottom: 0.065
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Nano",
  9703. height: math.unit(0.1, "mm")
  9704. },
  9705. {
  9706. name: "Micro-",
  9707. height: math.unit(1, "mm")
  9708. },
  9709. {
  9710. name: "Micro",
  9711. height: math.unit(4, "inches")
  9712. },
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(6 + 4 / 12, "feet"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Macro",
  9720. height: math.unit(115, "feet")
  9721. },
  9722. {
  9723. name: "Macro+",
  9724. height: math.unit(955, "feet")
  9725. },
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(8990, "feet")
  9729. },
  9730. {
  9731. name: "Gigmacro",
  9732. height: math.unit(9310, "miles")
  9733. },
  9734. {
  9735. name: "Teramacro",
  9736. height: math.unit(1567005010, "miles")
  9737. },
  9738. {
  9739. name: "Examacro",
  9740. height: math.unit(1425, "parsecs")
  9741. },
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9746. {
  9747. front: {
  9748. height: math.unit(400, "feet"),
  9749. weight: math.unit(44444444, "lb"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/major-colonel/front.svg"
  9753. }
  9754. },
  9755. back: {
  9756. height: math.unit(400, "feet"),
  9757. weight: math.unit(44444444, "lb"),
  9758. name: "Back",
  9759. image: {
  9760. source: "./media/characters/major-colonel/back.svg"
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Macro",
  9767. height: math.unit(400, "feet"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9774. {
  9775. catFront: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(120, "lb"),
  9778. name: "Front (Cat Side)",
  9779. image: {
  9780. source: "./media/characters/axel-lycan/cat-front.svg",
  9781. extra: 430 / 402,
  9782. bottom: 43 / 472.35
  9783. }
  9784. },
  9785. catBack: {
  9786. height: math.unit(6, "feet"),
  9787. weight: math.unit(120, "lb"),
  9788. name: "Back (Cat Side)",
  9789. image: {
  9790. source: "./media/characters/axel-lycan/cat-back.svg",
  9791. extra: 447 / 419,
  9792. bottom: 23.3 / 469
  9793. }
  9794. },
  9795. wolfFront: {
  9796. height: math.unit(6, "feet"),
  9797. weight: math.unit(120, "lb"),
  9798. name: "Front (Wolf Side)",
  9799. image: {
  9800. source: "./media/characters/axel-lycan/wolf-front.svg",
  9801. extra: 485 / 456,
  9802. bottom: 19 / 504
  9803. }
  9804. },
  9805. wolfBack: {
  9806. height: math.unit(6, "feet"),
  9807. weight: math.unit(120, "lb"),
  9808. name: "Back (Wolf Side)",
  9809. image: {
  9810. source: "./media/characters/axel-lycan/wolf-back.svg",
  9811. extra: 475 / 438,
  9812. bottom: 39.2 / 514
  9813. }
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(1, "km"),
  9820. default: true
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(5 + 9 / 12, "feet"),
  9829. weight: math.unit(175, "lb"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/vanrel-hyena/front.svg",
  9833. extra: 1086 / 1010,
  9834. bottom: 0.04
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Normal",
  9841. height: math.unit(5 + 9 / 12, "feet"),
  9842. default: true
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(103, "lb"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/abbott-absol/front.svg",
  9855. extra: 2010 / 1842
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Megamicro",
  9862. height: math.unit(0.1, "mm")
  9863. },
  9864. {
  9865. name: "Micro",
  9866. height: math.unit(1, "inch")
  9867. },
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(6, "feet"),
  9871. default: true
  9872. },
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9877. {
  9878. front: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(264, "lb"),
  9881. name: "Front",
  9882. image: {
  9883. source: "./media/characters/hector/front.svg",
  9884. extra: 2280 / 2130,
  9885. bottom: 0.07
  9886. }
  9887. },
  9888. },
  9889. [
  9890. {
  9891. name: "Normal",
  9892. height: math.unit(12.25, "foot"),
  9893. default: true
  9894. },
  9895. {
  9896. name: "Macro",
  9897. height: math.unit(160, "feet")
  9898. },
  9899. ]
  9900. ))
  9901. characterMakers.push(() => makeCharacter(
  9902. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9903. {
  9904. front: {
  9905. height: math.unit(6, "feet"),
  9906. weight: math.unit(150, "lb"),
  9907. name: "Front",
  9908. image: {
  9909. source: "./media/characters/sal/front.svg",
  9910. extra: 1846 / 1699,
  9911. bottom: 0.04
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Megamacro",
  9918. height: math.unit(10, "miles"),
  9919. default: true
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9925. {
  9926. front: {
  9927. height: math.unit(3, "meters"),
  9928. weight: math.unit(450, "kg"),
  9929. name: "front",
  9930. image: {
  9931. source: "./media/characters/ranger/front.svg",
  9932. extra: 2401 / 2243,
  9933. bottom: 0.05
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(3, "meters"),
  9941. default: true
  9942. },
  9943. ]
  9944. ))
  9945. characterMakers.push(() => makeCharacter(
  9946. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9947. {
  9948. front: {
  9949. height: math.unit(14, "feet"),
  9950. weight: math.unit(800, "kg"),
  9951. name: "Front",
  9952. image: {
  9953. source: "./media/characters/theresa/front.svg",
  9954. extra: 3575 / 3346,
  9955. bottom: 0.03
  9956. }
  9957. },
  9958. },
  9959. [
  9960. {
  9961. name: "Normal",
  9962. height: math.unit(14, "feet"),
  9963. default: true
  9964. },
  9965. ]
  9966. ))
  9967. characterMakers.push(() => makeCharacter(
  9968. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9969. {
  9970. front: {
  9971. height: math.unit(6, "feet"),
  9972. weight: math.unit(3, "kg"),
  9973. name: "Front",
  9974. image: {
  9975. source: "./media/characters/ine/front.svg",
  9976. extra: 678 / 539,
  9977. bottom: 0.023
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Normal",
  9984. height: math.unit(2.265, "feet"),
  9985. default: true
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(5, "feet"),
  9994. weight: math.unit(30, "kg"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/vial/front.svg",
  9998. extra: 1365 / 1277,
  9999. bottom: 0.04
  10000. }
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(5, "feet"),
  10007. default: true
  10008. },
  10009. ]
  10010. ))
  10011. characterMakers.push(() => makeCharacter(
  10012. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10013. {
  10014. side: {
  10015. height: math.unit(3.4, "meters"),
  10016. weight: math.unit(1000, "lb"),
  10017. name: "Side",
  10018. image: {
  10019. source: "./media/characters/rovoska/side.svg",
  10020. extra: 4403 / 1515
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(3.4, "meters"),
  10028. default: true
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(8, "feet"),
  10037. weight: math.unit(315, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/gunner-rotthbauer/front.svg"
  10041. }
  10042. },
  10043. back: {
  10044. height: math.unit(8, "feet"),
  10045. weight: math.unit(315, "lb"),
  10046. name: "Back",
  10047. image: {
  10048. source: "./media/characters/gunner-rotthbauer/back.svg"
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Micro",
  10055. height: math.unit(3.5, "inches")
  10056. },
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(8, "feet"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(250, "feet")
  10065. },
  10066. {
  10067. name: "Megamacro",
  10068. height: math.unit(1, "AU")
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10074. {
  10075. front: {
  10076. height: math.unit(5 + 5 / 12, "feet"),
  10077. weight: math.unit(140, "lb"),
  10078. name: "Front",
  10079. image: {
  10080. source: "./media/characters/allatia/front.svg",
  10081. extra: 1227 / 1180,
  10082. bottom: 0.027
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(5 + 5 / 12, "feet")
  10090. },
  10091. {
  10092. name: "Macro",
  10093. height: math.unit(250, "feet"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Megamacro",
  10098. height: math.unit(8, "miles")
  10099. }
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(120, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/tene/front.svg",
  10111. extra: 814/750,
  10112. bottom: 36/850
  10113. }
  10114. },
  10115. stomping: {
  10116. height: math.unit(2.025, "meters"),
  10117. weight: math.unit(120, "lb"),
  10118. name: "Stomping",
  10119. image: {
  10120. source: "./media/characters/tene/stomping.svg",
  10121. extra: 885/821,
  10122. bottom: 15/900
  10123. }
  10124. },
  10125. sitting: {
  10126. height: math.unit(1, "meter"),
  10127. weight: math.unit(120, "lb"),
  10128. name: "Sitting",
  10129. image: {
  10130. source: "./media/characters/tene/sitting.svg",
  10131. extra: 396/366,
  10132. bottom: 79/475
  10133. }
  10134. },
  10135. smiling: {
  10136. height: math.unit(1.2, "feet"),
  10137. name: "Smiling",
  10138. image: {
  10139. source: "./media/characters/tene/smiling.svg",
  10140. extra: 1364/1071,
  10141. bottom: 0/1364
  10142. }
  10143. },
  10144. smug: {
  10145. height: math.unit(1.3, "feet"),
  10146. name: "Smug",
  10147. image: {
  10148. source: "./media/characters/tene/smug.svg",
  10149. extra: 1323/1082,
  10150. bottom: 0/1323
  10151. }
  10152. },
  10153. feral: {
  10154. height: math.unit(3.9, "feet"),
  10155. weight: math.unit(250, "lb"),
  10156. name: "Feral",
  10157. image: {
  10158. source: "./media/characters/tene/feral.svg",
  10159. extra: 717 / 458,
  10160. bottom: 0.179
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(6, "feet")
  10168. },
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(300, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(5, "miles")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10182. {
  10183. side: {
  10184. height: math.unit(6, "feet"),
  10185. name: "Side",
  10186. image: {
  10187. source: "./media/characters/evander/side.svg",
  10188. extra: 877 / 477
  10189. }
  10190. },
  10191. },
  10192. [
  10193. {
  10194. name: "Normal",
  10195. height: math.unit(0.83, "meters"),
  10196. default: true
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(12, "feet"),
  10205. weight: math.unit(1000, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10209. extra: 1762 / 1611
  10210. }
  10211. },
  10212. back: {
  10213. height: math.unit(12, "feet"),
  10214. weight: math.unit(1000, "lb"),
  10215. name: "Back",
  10216. image: {
  10217. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10218. extra: 1762 / 1611
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(12, "feet"),
  10226. default: true
  10227. },
  10228. {
  10229. name: "Kaiju",
  10230. height: math.unit(150, "feet")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(6, "feet"),
  10239. weight: math.unit(150, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/zero-alurus/front.svg"
  10243. }
  10244. },
  10245. back: {
  10246. height: math.unit(6, "feet"),
  10247. weight: math.unit(150, "lb"),
  10248. name: "Back",
  10249. image: {
  10250. source: "./media/characters/zero-alurus/back.svg"
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(5 + 10 / 12, "feet")
  10258. },
  10259. {
  10260. name: "Macro",
  10261. height: math.unit(60, "feet"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Macro+",
  10266. height: math.unit(450, "feet")
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10272. {
  10273. front: {
  10274. height: math.unit(6, "feet"),
  10275. weight: math.unit(200, "lb"),
  10276. name: "Front",
  10277. image: {
  10278. source: "./media/characters/mega-shi/front.svg",
  10279. extra: 1279 / 1250,
  10280. bottom: 0.02
  10281. }
  10282. },
  10283. back: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(200, "lb"),
  10286. name: "Back",
  10287. image: {
  10288. source: "./media/characters/mega-shi/back.svg",
  10289. extra: 1279 / 1250,
  10290. bottom: 0.02
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Micro",
  10297. height: math.unit(16 + 6 / 12, "feet")
  10298. },
  10299. {
  10300. name: "Third Dimension",
  10301. height: math.unit(40, "meters")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(660, "feet"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Megamacro",
  10310. height: math.unit(10, "miles")
  10311. },
  10312. {
  10313. name: "Planetary Launch",
  10314. height: math.unit(500, "miles")
  10315. },
  10316. {
  10317. name: "Interstellar",
  10318. height: math.unit(1e9, "miles")
  10319. },
  10320. {
  10321. name: "Leaving the Universe",
  10322. height: math.unit(1, "gigaparsec")
  10323. },
  10324. {
  10325. name: "Travelling Universes",
  10326. height: math.unit(30e15, "parsecs")
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10332. {
  10333. front: {
  10334. height: math.unit(5 + 4/12, "feet"),
  10335. weight: math.unit(120, "lb"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/odyssey/front.svg",
  10339. extra: 1747/1571,
  10340. bottom: 47/1794
  10341. }
  10342. },
  10343. side: {
  10344. height: math.unit(5.1, "feet"),
  10345. weight: math.unit(120, "lb"),
  10346. name: "Side",
  10347. image: {
  10348. source: "./media/characters/odyssey/side.svg",
  10349. extra: 1847/1619,
  10350. bottom: 47/1894
  10351. }
  10352. },
  10353. lounging: {
  10354. height: math.unit(1.464, "feet"),
  10355. weight: math.unit(120, "lb"),
  10356. name: "Lounging",
  10357. image: {
  10358. source: "./media/characters/odyssey/lounging.svg",
  10359. extra: 1235/837,
  10360. bottom: 551/1786
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Normal",
  10367. height: math.unit(5 + 4 / 12, "feet")
  10368. },
  10369. {
  10370. name: "Macro",
  10371. height: math.unit(1, "km")
  10372. },
  10373. {
  10374. name: "Megamacro",
  10375. height: math.unit(3000, "km")
  10376. },
  10377. {
  10378. name: "Gigamacro",
  10379. height: math.unit(1, "AU"),
  10380. default: true
  10381. },
  10382. {
  10383. name: "Omniversal",
  10384. height: math.unit(100e14, "lightyears")
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10390. {
  10391. front: {
  10392. height: math.unit(6, "feet"),
  10393. weight: math.unit(300, "lb"),
  10394. name: "Front",
  10395. image: {
  10396. source: "./media/characters/mekuto/front.svg",
  10397. extra: 921 / 832,
  10398. bottom: 0.03
  10399. }
  10400. },
  10401. hand: {
  10402. height: math.unit(6 / 10.24, "feet"),
  10403. name: "Hand",
  10404. image: {
  10405. source: "./media/characters/mekuto/hand.svg"
  10406. }
  10407. },
  10408. foot: {
  10409. height: math.unit(6 / 5.05, "feet"),
  10410. name: "Foot",
  10411. image: {
  10412. source: "./media/characters/mekuto/foot.svg"
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Minimicro",
  10419. height: math.unit(0.2, "inches")
  10420. },
  10421. {
  10422. name: "Micro",
  10423. height: math.unit(1.5, "inches")
  10424. },
  10425. {
  10426. name: "Normal",
  10427. height: math.unit(5 + 11 / 12, "feet"),
  10428. default: true
  10429. },
  10430. {
  10431. name: "Minimacro",
  10432. height: math.unit(17 + 9 / 12, "feet")
  10433. },
  10434. {
  10435. name: "Macro",
  10436. height: math.unit(177.5, "feet")
  10437. },
  10438. {
  10439. name: "Megamacro",
  10440. height: math.unit(152, "miles")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10446. {
  10447. front: {
  10448. height: math.unit(6.5, "inches"),
  10449. weight: math.unit(13, "oz"),
  10450. name: "Front",
  10451. image: {
  10452. source: "./media/characters/dafydd-tomos/front.svg",
  10453. extra: 2990 / 2603,
  10454. bottom: 0.03
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Micro",
  10461. height: math.unit(6.5, "inches"),
  10462. default: true
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(150, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/splinter/front.svg",
  10475. extra: 2990 / 2882,
  10476. bottom: 0.04
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(150, "lb"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/splinter/back.svg",
  10485. extra: 2990 / 2882,
  10486. bottom: 0.04
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(6, "feet")
  10494. },
  10495. {
  10496. name: "Macro",
  10497. height: math.unit(230, "meters"),
  10498. default: true
  10499. },
  10500. ]
  10501. ))
  10502. characterMakers.push(() => makeCharacter(
  10503. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10504. {
  10505. front: {
  10506. height: math.unit(4 + 10 / 12, "feet"),
  10507. weight: math.unit(480, "lb"),
  10508. name: "Front",
  10509. image: {
  10510. source: "./media/characters/snow-gabumon/front.svg",
  10511. extra: 1140 / 963,
  10512. bottom: 0.058
  10513. }
  10514. },
  10515. back: {
  10516. height: math.unit(4 + 10 / 12, "feet"),
  10517. weight: math.unit(480, "lb"),
  10518. name: "Back",
  10519. image: {
  10520. source: "./media/characters/snow-gabumon/back.svg",
  10521. extra: 1115 / 962,
  10522. bottom: 0.041
  10523. }
  10524. },
  10525. frontUndresed: {
  10526. height: math.unit(4 + 10 / 12, "feet"),
  10527. weight: math.unit(480, "lb"),
  10528. name: "Front (Undressed)",
  10529. image: {
  10530. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10531. extra: 1061 / 960,
  10532. bottom: 0.045
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Micro",
  10539. height: math.unit(1, "inch")
  10540. },
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(4 + 10 / 12, "feet"),
  10544. default: true
  10545. },
  10546. {
  10547. name: "Macro",
  10548. height: math.unit(200, "feet")
  10549. },
  10550. {
  10551. name: "Megamacro",
  10552. height: math.unit(120, "miles")
  10553. },
  10554. {
  10555. name: "Gigamacro",
  10556. height: math.unit(9800, "miles")
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10562. {
  10563. front: {
  10564. height: math.unit(1.7, "meters"),
  10565. weight: math.unit(140, "lb"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/moody/front.svg",
  10569. extra: 3226 / 3007,
  10570. bottom: 0.087
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Micro",
  10577. height: math.unit(1, "mm")
  10578. },
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(1.7, "meters"),
  10582. default: true
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(80, "meters")
  10587. },
  10588. {
  10589. name: "Macro+",
  10590. height: math.unit(500, "meters")
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(6, "feet"),
  10599. weight: math.unit(150, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/zyas/front.svg",
  10603. extra: 1180 / 1120,
  10604. bottom: 0.045
  10605. }
  10606. },
  10607. },
  10608. [
  10609. {
  10610. name: "Normal",
  10611. height: math.unit(10, "feet"),
  10612. default: true
  10613. },
  10614. {
  10615. name: "Macro",
  10616. height: math.unit(500, "feet")
  10617. },
  10618. {
  10619. name: "Megamacro",
  10620. height: math.unit(5, "miles")
  10621. },
  10622. {
  10623. name: "Teramacro",
  10624. height: math.unit(150000, "miles")
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10630. {
  10631. front: {
  10632. height: math.unit(6, "feet"),
  10633. weight: math.unit(150, "lb"),
  10634. name: "Front",
  10635. image: {
  10636. source: "./media/characters/cuon/front.svg",
  10637. extra: 1390 / 1320,
  10638. bottom: 0.008
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Micro",
  10645. height: math.unit(3, "inches")
  10646. },
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(18 + 9 / 12, "feet"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(360, "feet")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(360, "miles")
  10659. },
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10664. {
  10665. front: {
  10666. height: math.unit(2.4, "meters"),
  10667. weight: math.unit(70, "kg"),
  10668. name: "Front",
  10669. image: {
  10670. source: "./media/characters/nyanuxk/front.svg",
  10671. extra: 1172 / 1084,
  10672. bottom: 0.065
  10673. }
  10674. },
  10675. side: {
  10676. height: math.unit(2.4, "meters"),
  10677. weight: math.unit(70, "kg"),
  10678. name: "Side",
  10679. image: {
  10680. source: "./media/characters/nyanuxk/side.svg",
  10681. extra: 1190 / 1132,
  10682. bottom: 0.007
  10683. }
  10684. },
  10685. back: {
  10686. height: math.unit(2.4, "meters"),
  10687. weight: math.unit(70, "kg"),
  10688. name: "Back",
  10689. image: {
  10690. source: "./media/characters/nyanuxk/back.svg",
  10691. extra: 1200 / 1141,
  10692. bottom: 0.015
  10693. }
  10694. },
  10695. foot: {
  10696. height: math.unit(0.52, "meters"),
  10697. name: "Foot",
  10698. image: {
  10699. source: "./media/characters/nyanuxk/foot.svg"
  10700. }
  10701. },
  10702. },
  10703. [
  10704. {
  10705. name: "Micro",
  10706. height: math.unit(2, "cm")
  10707. },
  10708. {
  10709. name: "Normal",
  10710. height: math.unit(2.4, "meters"),
  10711. default: true
  10712. },
  10713. {
  10714. name: "Smaller Macro",
  10715. height: math.unit(120, "meters")
  10716. },
  10717. {
  10718. name: "Bigger Macro",
  10719. height: math.unit(1.2, "km")
  10720. },
  10721. {
  10722. name: "Megamacro",
  10723. height: math.unit(15, "kilometers")
  10724. },
  10725. {
  10726. name: "Gigamacro",
  10727. height: math.unit(2000, "km")
  10728. },
  10729. {
  10730. name: "Teramacro",
  10731. height: math.unit(500000, "km")
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10737. {
  10738. side: {
  10739. height: math.unit(6, "feet"),
  10740. name: "Side",
  10741. image: {
  10742. source: "./media/characters/ailbhe/side.svg",
  10743. extra: 757 / 464,
  10744. bottom: 0.041
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(1.07, "meters"),
  10752. default: true
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10758. {
  10759. front: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(120, "kg"),
  10762. name: "Front",
  10763. image: {
  10764. source: "./media/characters/zevulfius/front.svg",
  10765. extra: 965 / 903
  10766. }
  10767. },
  10768. side: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(120, "kg"),
  10771. name: "Side",
  10772. image: {
  10773. source: "./media/characters/zevulfius/side.svg",
  10774. extra: 939 / 900
  10775. }
  10776. },
  10777. back: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(120, "kg"),
  10780. name: "Back",
  10781. image: {
  10782. source: "./media/characters/zevulfius/back.svg",
  10783. extra: 918 / 854,
  10784. bottom: 0.005
  10785. }
  10786. },
  10787. foot: {
  10788. height: math.unit(6 / 3.72, "feet"),
  10789. name: "Foot",
  10790. image: {
  10791. source: "./media/characters/zevulfius/foot.svg"
  10792. }
  10793. },
  10794. },
  10795. [
  10796. {
  10797. name: "Macro",
  10798. height: math.unit(750, "meters")
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(20, "km"),
  10803. default: true
  10804. },
  10805. {
  10806. name: "Gigamacro",
  10807. height: math.unit(2000, "km")
  10808. },
  10809. {
  10810. name: "Teramacro",
  10811. height: math.unit(250000, "km")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(100, "feet"),
  10820. weight: math.unit(350, "kg"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/rikes/front.svg",
  10824. extra: 1565 / 1483,
  10825. bottom: 0.017
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Macro",
  10832. height: math.unit(100, "feet"),
  10833. default: true
  10834. },
  10835. ]
  10836. ))
  10837. characterMakers.push(() => makeCharacter(
  10838. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10839. {
  10840. front: {
  10841. height: math.unit(8, "feet"),
  10842. weight: math.unit(356, "lb"),
  10843. name: "Front",
  10844. image: {
  10845. source: "./media/characters/adam-silver-mane/front.svg",
  10846. extra: 1036/937,
  10847. bottom: 63/1099
  10848. }
  10849. },
  10850. side: {
  10851. height: math.unit(8, "feet"),
  10852. weight: math.unit(356, "lb"),
  10853. name: "Side",
  10854. image: {
  10855. source: "./media/characters/adam-silver-mane/side.svg",
  10856. extra: 997/901,
  10857. bottom: 59/1056
  10858. }
  10859. },
  10860. frontNsfw: {
  10861. height: math.unit(8, "feet"),
  10862. weight: math.unit(356, "lb"),
  10863. name: "Front (NSFW)",
  10864. image: {
  10865. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10866. extra: 1036/937,
  10867. bottom: 63/1099
  10868. }
  10869. },
  10870. sideNsfw: {
  10871. height: math.unit(8, "feet"),
  10872. weight: math.unit(356, "lb"),
  10873. name: "Side (NSFW)",
  10874. image: {
  10875. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10876. extra: 997/901,
  10877. bottom: 59/1056
  10878. }
  10879. },
  10880. dick: {
  10881. height: math.unit(2.1, "feet"),
  10882. name: "Dick",
  10883. image: {
  10884. source: "./media/characters/adam-silver-mane/dick.svg"
  10885. }
  10886. },
  10887. taur: {
  10888. height: math.unit(16, "feet"),
  10889. weight: math.unit(1500, "kg"),
  10890. name: "Taur",
  10891. image: {
  10892. source: "./media/characters/adam-silver-mane/taur.svg",
  10893. extra: 1713 / 1571,
  10894. bottom: 0.01
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Normal",
  10901. height: math.unit(8, "feet")
  10902. },
  10903. {
  10904. name: "Minimacro",
  10905. height: math.unit(80, "feet")
  10906. },
  10907. {
  10908. name: "MDA",
  10909. height: math.unit(80, "meters")
  10910. },
  10911. {
  10912. name: "Macro",
  10913. height: math.unit(800, "feet"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Megamacro",
  10918. height: math.unit(8000, "feet")
  10919. },
  10920. {
  10921. name: "Gigamacro",
  10922. height: math.unit(800, "miles")
  10923. },
  10924. {
  10925. name: "Teramacro",
  10926. height: math.unit(80000, "miles")
  10927. },
  10928. {
  10929. name: "Celestial",
  10930. height: math.unit(8e6, "miles")
  10931. },
  10932. {
  10933. name: "Star Dragon",
  10934. height: math.unit(800000, "parsecs")
  10935. },
  10936. {
  10937. name: "Godly",
  10938. height: math.unit(800, "teraparsecs")
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(150, "lb"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/ky'owin/front.svg",
  10951. extra: 3888 / 3068,
  10952. bottom: 0.015
  10953. }
  10954. },
  10955. },
  10956. [
  10957. {
  10958. name: "Normal",
  10959. height: math.unit(6 + 8 / 12, "feet")
  10960. },
  10961. {
  10962. name: "Large",
  10963. height: math.unit(68, "feet")
  10964. },
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(132, "feet")
  10968. },
  10969. {
  10970. name: "Macro+",
  10971. height: math.unit(340, "feet")
  10972. },
  10973. {
  10974. name: "Macro++",
  10975. height: math.unit(680, "feet"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Megamacro",
  10980. height: math.unit(1, "mile")
  10981. },
  10982. {
  10983. name: "Megamacro+",
  10984. height: math.unit(10, "miles")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(4, "feet"),
  10993. weight: math.unit(50, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/mal/front.svg",
  10997. extra: 785 / 724,
  10998. bottom: 0.07
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Micro",
  11005. height: math.unit(4, "inches")
  11006. },
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(4, "feet"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Macro",
  11014. height: math.unit(200, "feet")
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/jordan-deware/front.svg",
  11027. extra: 1191 / 1012
  11028. }
  11029. },
  11030. },
  11031. [
  11032. {
  11033. name: "Nano",
  11034. height: math.unit(0.01, "mm")
  11035. },
  11036. {
  11037. name: "Minimicro",
  11038. height: math.unit(1, "mm")
  11039. },
  11040. {
  11041. name: "Micro",
  11042. height: math.unit(0.5, "inches")
  11043. },
  11044. {
  11045. name: "Normal",
  11046. height: math.unit(4, "feet"),
  11047. default: true
  11048. },
  11049. {
  11050. name: "Minimacro",
  11051. height: math.unit(40, "meters")
  11052. },
  11053. {
  11054. name: "Small Macro",
  11055. height: math.unit(400, "meters")
  11056. },
  11057. {
  11058. name: "Macro",
  11059. height: math.unit(4, "miles")
  11060. },
  11061. {
  11062. name: "Megamacro",
  11063. height: math.unit(40, "miles")
  11064. },
  11065. {
  11066. name: "Megamacro+",
  11067. height: math.unit(400, "miles")
  11068. },
  11069. {
  11070. name: "Gigamacro",
  11071. height: math.unit(400000, "miles")
  11072. },
  11073. ]
  11074. ))
  11075. characterMakers.push(() => makeCharacter(
  11076. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11077. {
  11078. side: {
  11079. height: math.unit(6, "feet"),
  11080. weight: math.unit(150, "lb"),
  11081. name: "Side",
  11082. image: {
  11083. source: "./media/characters/kimiko/side.svg",
  11084. extra: 600 / 358
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(15, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(220, "feet")
  11097. },
  11098. {
  11099. name: "Macro+",
  11100. height: math.unit(1450, "feet")
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(11500, "feet")
  11105. },
  11106. {
  11107. name: "Gigamacro",
  11108. height: math.unit(9500, "miles")
  11109. },
  11110. {
  11111. name: "Teramacro",
  11112. height: math.unit(2208005005, "miles")
  11113. },
  11114. {
  11115. name: "Examacro",
  11116. height: math.unit(2750, "parsecs")
  11117. },
  11118. {
  11119. name: "Zettamacro",
  11120. height: math.unit(101500, "parsecs")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(70, "kg"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/andrew-sleepy/front.svg"
  11133. }
  11134. },
  11135. side: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(70, "kg"),
  11138. name: "Side",
  11139. image: {
  11140. source: "./media/characters/andrew-sleepy/side.svg"
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Micro",
  11147. height: math.unit(1, "mm"),
  11148. default: true
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/judio/front.svg",
  11161. extra: 1258 / 1110
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Normal",
  11168. height: math.unit(5 + 6 / 12, "feet")
  11169. },
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(1000, "feet"),
  11173. default: true
  11174. },
  11175. {
  11176. name: "Megamacro",
  11177. height: math.unit(10, "miles")
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11183. {
  11184. frontDressed: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(68, "kg"),
  11187. name: "Front (Dressed)",
  11188. image: {
  11189. source: "./media/characters/nomaxice/front-dressed.svg",
  11190. extra: 1137/824,
  11191. bottom: 74/1211
  11192. }
  11193. },
  11194. frontShorts: {
  11195. height: math.unit(6, "feet"),
  11196. weight: math.unit(68, "kg"),
  11197. name: "Front (Shorts)",
  11198. image: {
  11199. source: "./media/characters/nomaxice/front-shorts.svg",
  11200. extra: 1137/824,
  11201. bottom: 74/1211
  11202. }
  11203. },
  11204. back: {
  11205. height: math.unit(6, "feet"),
  11206. weight: math.unit(68, "kg"),
  11207. name: "Back",
  11208. image: {
  11209. source: "./media/characters/nomaxice/back.svg",
  11210. extra: 822/786,
  11211. bottom: 39/861
  11212. }
  11213. },
  11214. hand: {
  11215. height: math.unit(0.565, "feet"),
  11216. name: "Hand",
  11217. image: {
  11218. source: "./media/characters/nomaxice/hand.svg"
  11219. }
  11220. },
  11221. foot: {
  11222. height: math.unit(1, "feet"),
  11223. name: "Foot",
  11224. image: {
  11225. source: "./media/characters/nomaxice/foot.svg"
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Micro",
  11232. height: math.unit(8, "cm")
  11233. },
  11234. {
  11235. name: "Norm",
  11236. height: math.unit(1.82, "m")
  11237. },
  11238. {
  11239. name: "Norm+",
  11240. height: math.unit(8.8, "feet"),
  11241. default: true
  11242. },
  11243. {
  11244. name: "Big",
  11245. height: math.unit(8, "meters")
  11246. },
  11247. {
  11248. name: "Macro",
  11249. height: math.unit(18, "meters")
  11250. },
  11251. {
  11252. name: "Macro+",
  11253. height: math.unit(88, "meters")
  11254. },
  11255. ]
  11256. ))
  11257. characterMakers.push(() => makeCharacter(
  11258. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11259. {
  11260. front: {
  11261. height: math.unit(12, "feet"),
  11262. weight: math.unit(1.5, "tons"),
  11263. name: "Front",
  11264. image: {
  11265. source: "./media/characters/dydros/front.svg",
  11266. extra: 863 / 800,
  11267. bottom: 0.015
  11268. }
  11269. },
  11270. back: {
  11271. height: math.unit(12, "feet"),
  11272. weight: math.unit(1.5, "tons"),
  11273. name: "Back",
  11274. image: {
  11275. source: "./media/characters/dydros/back.svg",
  11276. extra: 900 / 843,
  11277. bottom: 0.005
  11278. }
  11279. },
  11280. },
  11281. [
  11282. {
  11283. name: "Normal",
  11284. height: math.unit(12, "feet"),
  11285. default: true
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11291. {
  11292. front: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(100, "kg"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/riggi/front.svg",
  11298. extra: 5787 / 5303
  11299. }
  11300. },
  11301. hyper: {
  11302. height: math.unit(6 * 5 / 3, "feet"),
  11303. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11304. name: "Hyper",
  11305. image: {
  11306. source: "./media/characters/riggi/hyper.svg",
  11307. extra: 3595 / 3485
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Small Macro",
  11314. height: math.unit(50, "feet")
  11315. },
  11316. {
  11317. name: "Default",
  11318. height: math.unit(200, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Loom",
  11323. height: math.unit(10000, "feet")
  11324. },
  11325. {
  11326. name: "Cruising Altitude",
  11327. height: math.unit(30000, "feet")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(100, "miles")
  11332. },
  11333. {
  11334. name: "Continent Sized",
  11335. height: math.unit(2800, "miles")
  11336. },
  11337. {
  11338. name: "Earth Sized",
  11339. height: math.unit(8000, "miles")
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11345. {
  11346. front: {
  11347. height: math.unit(6, "feet"),
  11348. weight: math.unit(250, "lb"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/alexi/front.svg",
  11352. extra: 3483 / 3291,
  11353. bottom: 0.04
  11354. }
  11355. },
  11356. back: {
  11357. height: math.unit(6, "feet"),
  11358. weight: math.unit(250, "lb"),
  11359. name: "Back",
  11360. image: {
  11361. source: "./media/characters/alexi/back.svg",
  11362. extra: 3533 / 3356,
  11363. bottom: 0.021
  11364. }
  11365. },
  11366. frontTransforming: {
  11367. height: math.unit(8.58, "feet"),
  11368. weight: math.unit(1300, "lb"),
  11369. name: "Transforming",
  11370. image: {
  11371. source: "./media/characters/alexi/front-transforming.svg",
  11372. extra: 437 / 409,
  11373. bottom: 19 / 458.66
  11374. }
  11375. },
  11376. frontTransformed: {
  11377. height: math.unit(12.5, "feet"),
  11378. weight: math.unit(4000, "lb"),
  11379. name: "Transformed",
  11380. image: {
  11381. source: "./media/characters/alexi/front-transformed.svg",
  11382. extra: 639 / 614,
  11383. bottom: 30.55 / 671
  11384. }
  11385. },
  11386. },
  11387. [
  11388. {
  11389. name: "Normal",
  11390. height: math.unit(14, "feet"),
  11391. default: true
  11392. },
  11393. {
  11394. name: "Minimacro",
  11395. height: math.unit(30, "meters")
  11396. },
  11397. {
  11398. name: "Macro",
  11399. height: math.unit(500, "meters")
  11400. },
  11401. {
  11402. name: "Megamacro",
  11403. height: math.unit(9000, "km")
  11404. },
  11405. {
  11406. name: "Teramacro",
  11407. height: math.unit(384000, "km")
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(6, "feet"),
  11416. weight: math.unit(150, "lb"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/kayroo/front.svg",
  11420. extra: 1153 / 1038,
  11421. bottom: 0.06
  11422. }
  11423. },
  11424. foot: {
  11425. height: math.unit(6, "feet"),
  11426. weight: math.unit(150, "lb"),
  11427. name: "Foot",
  11428. image: {
  11429. source: "./media/characters/kayroo/foot.svg"
  11430. }
  11431. },
  11432. },
  11433. [
  11434. {
  11435. name: "Normal",
  11436. height: math.unit(8, "feet"),
  11437. default: true
  11438. },
  11439. {
  11440. name: "Minimacro",
  11441. height: math.unit(250, "feet")
  11442. },
  11443. {
  11444. name: "Macro",
  11445. height: math.unit(2800, "feet")
  11446. },
  11447. {
  11448. name: "Megamacro",
  11449. height: math.unit(5200, "feet")
  11450. },
  11451. {
  11452. name: "Gigamacro",
  11453. height: math.unit(27000, "feet")
  11454. },
  11455. {
  11456. name: "Omega",
  11457. height: math.unit(45000, "feet")
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11463. {
  11464. front: {
  11465. height: math.unit(18, "feet"),
  11466. weight: math.unit(5800, "lb"),
  11467. name: "Front",
  11468. image: {
  11469. source: "./media/characters/rhys/front.svg",
  11470. extra: 3386 / 3090,
  11471. bottom: 0.07
  11472. }
  11473. },
  11474. },
  11475. [
  11476. {
  11477. name: "Normal",
  11478. height: math.unit(18, "feet"),
  11479. default: true
  11480. },
  11481. {
  11482. name: "Working Size",
  11483. height: math.unit(200, "feet")
  11484. },
  11485. {
  11486. name: "Demolition Size",
  11487. height: math.unit(2000, "feet")
  11488. },
  11489. {
  11490. name: "Maximum Licensed Size",
  11491. height: math.unit(5, "miles")
  11492. },
  11493. {
  11494. name: "Maximum Observed Size",
  11495. height: math.unit(10, "yottameters")
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(6, "feet"),
  11504. weight: math.unit(250, "lb"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/toto/front.svg",
  11508. extra: 527 / 479,
  11509. bottom: 0.05
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Micro",
  11516. height: math.unit(3, "feet")
  11517. },
  11518. {
  11519. name: "Normal",
  11520. height: math.unit(10, "feet")
  11521. },
  11522. {
  11523. name: "Macro",
  11524. height: math.unit(150, "feet"),
  11525. default: true
  11526. },
  11527. {
  11528. name: "Megamacro",
  11529. height: math.unit(1200, "feet")
  11530. },
  11531. ]
  11532. ))
  11533. characterMakers.push(() => makeCharacter(
  11534. { name: "King", species: ["lion"], tags: ["anthro"] },
  11535. {
  11536. back: {
  11537. height: math.unit(6, "feet"),
  11538. weight: math.unit(150, "lb"),
  11539. name: "Back",
  11540. image: {
  11541. source: "./media/characters/king/back.svg"
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(2, "inches")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(8, "feet")
  11553. },
  11554. {
  11555. name: "Macro",
  11556. height: math.unit(200, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(50, "miles")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(11, "feet"),
  11570. weight: math.unit(1400, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/cordite/front.svg",
  11574. extra: 1919/1827,
  11575. bottom: 40/1959
  11576. }
  11577. },
  11578. side: {
  11579. height: math.unit(11, "feet"),
  11580. weight: math.unit(1400, "lb"),
  11581. name: "Side",
  11582. image: {
  11583. source: "./media/characters/cordite/side.svg",
  11584. extra: 1908/1793,
  11585. bottom: 38/1946
  11586. }
  11587. },
  11588. back: {
  11589. height: math.unit(11, "feet"),
  11590. weight: math.unit(1400, "lb"),
  11591. name: "Back",
  11592. image: {
  11593. source: "./media/characters/cordite/back.svg",
  11594. extra: 1938/1837,
  11595. bottom: 10/1948
  11596. }
  11597. },
  11598. feral: {
  11599. height: math.unit(2, "feet"),
  11600. weight: math.unit(90, "lb"),
  11601. name: "Feral",
  11602. image: {
  11603. source: "./media/characters/cordite/feral.svg",
  11604. extra: 1260 / 755,
  11605. bottom: 0.05
  11606. }
  11607. },
  11608. },
  11609. [
  11610. {
  11611. name: "Normal",
  11612. height: math.unit(11, "feet"),
  11613. default: true
  11614. },
  11615. ]
  11616. ))
  11617. characterMakers.push(() => makeCharacter(
  11618. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11619. {
  11620. front: {
  11621. height: math.unit(6, "feet"),
  11622. weight: math.unit(150, "lb"),
  11623. name: "Front",
  11624. image: {
  11625. source: "./media/characters/pianostrong/front.svg",
  11626. extra: 6577 / 6254,
  11627. bottom: 0.02
  11628. }
  11629. },
  11630. side: {
  11631. height: math.unit(6, "feet"),
  11632. weight: math.unit(150, "lb"),
  11633. name: "Side",
  11634. image: {
  11635. source: "./media/characters/pianostrong/side.svg",
  11636. extra: 6106 / 5730
  11637. }
  11638. },
  11639. back: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Back",
  11643. image: {
  11644. source: "./media/characters/pianostrong/back.svg",
  11645. extra: 6085 / 5733,
  11646. bottom: 0.01
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Macro",
  11653. height: math.unit(100, "feet")
  11654. },
  11655. {
  11656. name: "Macro+",
  11657. height: math.unit(300, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Macro++",
  11662. height: math.unit(1000, "feet")
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(150, "lb"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/kona/front.svg",
  11675. extra: 2960 / 2629,
  11676. bottom: 0.005
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(11 + 8 / 12, "feet")
  11684. },
  11685. {
  11686. name: "Macro",
  11687. height: math.unit(850, "feet"),
  11688. default: true
  11689. },
  11690. {
  11691. name: "Macro+",
  11692. height: math.unit(1.5, "km"),
  11693. default: true
  11694. },
  11695. {
  11696. name: "Megamacro",
  11697. height: math.unit(80, "miles")
  11698. },
  11699. {
  11700. name: "Gigamacro",
  11701. height: math.unit(3500, "miles")
  11702. },
  11703. ]
  11704. ))
  11705. characterMakers.push(() => makeCharacter(
  11706. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11707. {
  11708. side: {
  11709. height: math.unit(1.9, "meters"),
  11710. weight: math.unit(326, "kg"),
  11711. name: "Side",
  11712. image: {
  11713. source: "./media/characters/levi/side.svg",
  11714. extra: 1704 / 1334,
  11715. bottom: 0.02
  11716. }
  11717. },
  11718. },
  11719. [
  11720. {
  11721. name: "Normal",
  11722. height: math.unit(1.9, "meters"),
  11723. default: true
  11724. },
  11725. {
  11726. name: "Macro",
  11727. height: math.unit(20, "meters")
  11728. },
  11729. {
  11730. name: "Macro+",
  11731. height: math.unit(200, "meters")
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(2, "km")
  11736. },
  11737. {
  11738. name: "Megamacro+",
  11739. height: math.unit(20, "km")
  11740. },
  11741. {
  11742. name: "Gigamacro",
  11743. height: math.unit(2500, "km")
  11744. },
  11745. {
  11746. name: "Gigamacro+",
  11747. height: math.unit(120000, "km")
  11748. },
  11749. {
  11750. name: "Teramacro",
  11751. height: math.unit(7.77e6, "km")
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11757. {
  11758. front: {
  11759. height: math.unit(6 + 4/12, "feet"),
  11760. weight: math.unit(190, "lb"),
  11761. name: "Front",
  11762. image: {
  11763. source: "./media/characters/bmc/front.svg",
  11764. extra: 1626/1472,
  11765. bottom: 79/1705
  11766. }
  11767. },
  11768. back: {
  11769. height: math.unit(6 + 4/12, "feet"),
  11770. weight: math.unit(190, "lb"),
  11771. name: "Back",
  11772. image: {
  11773. source: "./media/characters/bmc/back.svg",
  11774. extra: 1640/1479,
  11775. bottom: 45/1685
  11776. }
  11777. },
  11778. frontArmor: {
  11779. height: math.unit(6 + 4/12, "feet"),
  11780. weight: math.unit(190, "lb"),
  11781. name: "Front-armor",
  11782. image: {
  11783. source: "./media/characters/bmc/front-armor.svg",
  11784. extra: 1538/1468,
  11785. bottom: 79/1617
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Human-sized",
  11792. height: math.unit(6 + 4 / 12, "feet")
  11793. },
  11794. {
  11795. name: "Interactive Size",
  11796. height: math.unit(25, "feet")
  11797. },
  11798. {
  11799. name: "Small",
  11800. height: math.unit(250, "feet")
  11801. },
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(1250, "feet"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Good Day",
  11809. height: math.unit(88, "miles")
  11810. },
  11811. {
  11812. name: "Largest Measured Size",
  11813. height: math.unit(105.960, "galaxies")
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(20, "feet"),
  11822. weight: math.unit(2016, "kg"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/sven-the-kaiju/front.svg",
  11826. extra: 1277/1250,
  11827. bottom: 35/1312
  11828. }
  11829. },
  11830. mouth: {
  11831. height: math.unit(1.85, "feet"),
  11832. name: "Mouth",
  11833. image: {
  11834. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Fairy",
  11841. height: math.unit(6, "inches")
  11842. },
  11843. {
  11844. name: "Normal",
  11845. height: math.unit(20, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Rampage",
  11850. height: math.unit(200, "feet")
  11851. },
  11852. {
  11853. name: "Archfey Forest Guardian",
  11854. height: math.unit(1, "mile")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(4, "meters"),
  11863. weight: math.unit(2, "tons"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/marik/front.svg",
  11867. extra: 1057 / 1003,
  11868. bottom: 0.08
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Normal",
  11875. height: math.unit(4, "meters"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(20, "meters")
  11881. },
  11882. {
  11883. name: "Megamacro",
  11884. height: math.unit(50, "km")
  11885. },
  11886. {
  11887. name: "Gigamacro",
  11888. height: math.unit(100, "km")
  11889. },
  11890. {
  11891. name: "Alpha Macro",
  11892. height: math.unit(7.88e7, "yottameters")
  11893. },
  11894. ]
  11895. ))
  11896. characterMakers.push(() => makeCharacter(
  11897. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11898. {
  11899. front: {
  11900. height: math.unit(6, "feet"),
  11901. weight: math.unit(110, "lb"),
  11902. name: "Front",
  11903. image: {
  11904. source: "./media/characters/mel/front.svg",
  11905. extra: 736 / 617,
  11906. bottom: 0.017
  11907. }
  11908. },
  11909. },
  11910. [
  11911. {
  11912. name: "Pico",
  11913. height: math.unit(3, "pm")
  11914. },
  11915. {
  11916. name: "Nano",
  11917. height: math.unit(3, "nm")
  11918. },
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(0.3, "mm"),
  11922. default: true
  11923. },
  11924. {
  11925. name: "Micro+",
  11926. height: math.unit(3, "mm")
  11927. },
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(5 + 10.5 / 12, "feet")
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11936. {
  11937. kaiju: {
  11938. height: math.unit(1.75, "meters"),
  11939. weight: math.unit(55, "kg"),
  11940. name: "Kaiju",
  11941. image: {
  11942. source: "./media/characters/lykonous/kaiju.svg",
  11943. extra: 1055 / 946,
  11944. bottom: 0.135
  11945. }
  11946. },
  11947. },
  11948. [
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(2.5, "meters"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Kaiju Dragon",
  11956. height: math.unit(60, "meters")
  11957. },
  11958. {
  11959. name: "Mega Kaiju",
  11960. height: math.unit(120, "km")
  11961. },
  11962. {
  11963. name: "Giga Kaiju",
  11964. height: math.unit(200, "megameters")
  11965. },
  11966. {
  11967. name: "Terra Kaiju",
  11968. height: math.unit(400, "gigameters")
  11969. },
  11970. {
  11971. name: "Kaiju Dragon God",
  11972. height: math.unit(13000, "exaparsecs")
  11973. },
  11974. ]
  11975. ))
  11976. characterMakers.push(() => makeCharacter(
  11977. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11978. {
  11979. front: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(150, "lb"),
  11982. name: "Front",
  11983. image: {
  11984. source: "./media/characters/blü/front.svg",
  11985. extra: 1883 / 1564,
  11986. bottom: 0.031
  11987. }
  11988. },
  11989. },
  11990. [
  11991. {
  11992. name: "Normal",
  11993. height: math.unit(13, "feet"),
  11994. default: true
  11995. },
  11996. {
  11997. name: "Big Boi",
  11998. height: math.unit(150, "meters")
  11999. },
  12000. {
  12001. name: "Mini Stomper",
  12002. height: math.unit(300, "meters")
  12003. },
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(1000, "meters")
  12007. },
  12008. {
  12009. name: "Megamacro",
  12010. height: math.unit(11000, "meters")
  12011. },
  12012. {
  12013. name: "Gigamacro",
  12014. height: math.unit(11000, "km")
  12015. },
  12016. {
  12017. name: "Teramacro",
  12018. height: math.unit(420000, "km")
  12019. },
  12020. {
  12021. name: "Examacro",
  12022. height: math.unit(120, "parsecs")
  12023. },
  12024. {
  12025. name: "God Tho",
  12026. height: math.unit(98000000000, "parsecs")
  12027. },
  12028. ]
  12029. ))
  12030. characterMakers.push(() => makeCharacter(
  12031. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12032. {
  12033. taurFront: {
  12034. height: math.unit(6, "feet"),
  12035. weight: math.unit(200, "lb"),
  12036. name: "Taur (Front)",
  12037. image: {
  12038. source: "./media/characters/scales/taur-front.svg",
  12039. extra: 1,
  12040. bottom: 0.05
  12041. }
  12042. },
  12043. taurBack: {
  12044. height: math.unit(6, "feet"),
  12045. weight: math.unit(200, "lb"),
  12046. name: "Taur (Back)",
  12047. image: {
  12048. source: "./media/characters/scales/taur-back.svg",
  12049. extra: 1,
  12050. bottom: 0.08
  12051. }
  12052. },
  12053. anthro: {
  12054. height: math.unit(6 * 7 / 12, "feet"),
  12055. weight: math.unit(100, "lb"),
  12056. name: "Anthro",
  12057. image: {
  12058. source: "./media/characters/scales/anthro.svg",
  12059. extra: 1,
  12060. bottom: 0.06
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Normal",
  12067. height: math.unit(12, "feet"),
  12068. default: true
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12074. {
  12075. front: {
  12076. height: math.unit(6, "feet"),
  12077. weight: math.unit(150, "lb"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/koragos/front.svg",
  12081. extra: 841 / 794,
  12082. bottom: 0.035
  12083. }
  12084. },
  12085. back: {
  12086. height: math.unit(6, "feet"),
  12087. weight: math.unit(150, "lb"),
  12088. name: "Back",
  12089. image: {
  12090. source: "./media/characters/koragos/back.svg",
  12091. extra: 841 / 810,
  12092. bottom: 0.022
  12093. }
  12094. },
  12095. },
  12096. [
  12097. {
  12098. name: "Normal",
  12099. height: math.unit(6 + 11 / 12, "feet"),
  12100. default: true
  12101. },
  12102. {
  12103. name: "Macro",
  12104. height: math.unit(490, "feet")
  12105. },
  12106. {
  12107. name: "Megamacro",
  12108. height: math.unit(10, "miles")
  12109. },
  12110. {
  12111. name: "Gigamacro",
  12112. height: math.unit(50, "miles")
  12113. },
  12114. ]
  12115. ))
  12116. characterMakers.push(() => makeCharacter(
  12117. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12118. {
  12119. front: {
  12120. height: math.unit(6, "feet"),
  12121. weight: math.unit(250, "lb"),
  12122. name: "Front",
  12123. image: {
  12124. source: "./media/characters/xylrem/front.svg",
  12125. extra: 3323 / 3050,
  12126. bottom: 0.065
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Micro",
  12133. height: math.unit(4, "feet")
  12134. },
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(16, "feet"),
  12138. default: true
  12139. },
  12140. {
  12141. name: "Macro",
  12142. height: math.unit(2720, "feet")
  12143. },
  12144. {
  12145. name: "Megamacro",
  12146. height: math.unit(25000, "miles")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(8, "feet"),
  12155. weight: math.unit(250, "kg"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/ikideru/front.svg",
  12159. extra: 930 / 870,
  12160. bottom: 0.087
  12161. }
  12162. },
  12163. back: {
  12164. height: math.unit(8, "feet"),
  12165. weight: math.unit(250, "kg"),
  12166. name: "Back",
  12167. image: {
  12168. source: "./media/characters/ikideru/back.svg",
  12169. extra: 919 / 852,
  12170. bottom: 0.055
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Rare",
  12177. height: math.unit(8, "feet"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Playful Loom",
  12182. height: math.unit(80, "feet")
  12183. },
  12184. {
  12185. name: "City Leaner",
  12186. height: math.unit(230, "feet")
  12187. },
  12188. {
  12189. name: "Megamacro",
  12190. height: math.unit(2500, "feet")
  12191. },
  12192. {
  12193. name: "Gigamacro",
  12194. height: math.unit(26400, "feet")
  12195. },
  12196. {
  12197. name: "Tectonic Shifter",
  12198. height: math.unit(1.7, "megameters")
  12199. },
  12200. {
  12201. name: "Planet Carer",
  12202. height: math.unit(21, "megameters")
  12203. },
  12204. {
  12205. name: "God",
  12206. height: math.unit(11157.22, "parsecs")
  12207. },
  12208. ]
  12209. ))
  12210. characterMakers.push(() => makeCharacter(
  12211. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12212. {
  12213. front: {
  12214. height: math.unit(6, "feet"),
  12215. weight: math.unit(120, "lb"),
  12216. name: "Front",
  12217. image: {
  12218. source: "./media/characters/neo/front.svg"
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Micro",
  12225. height: math.unit(2, "inches"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Human Size",
  12230. height: math.unit(5 + 8 / 12, "feet")
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(13 + 10 / 12, "feet"),
  12239. weight: math.unit(5320, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/chauncey-chantz/front.svg",
  12243. extra: 1587 / 1435,
  12244. bottom: 0.02
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(13 + 10 / 12, "feet"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Macro",
  12256. height: math.unit(45, "feet")
  12257. },
  12258. {
  12259. name: "Megamacro",
  12260. height: math.unit(250, "miles")
  12261. },
  12262. {
  12263. name: "Planetary",
  12264. height: math.unit(10000, "miles")
  12265. },
  12266. {
  12267. name: "Galactic",
  12268. height: math.unit(40000, "parsecs")
  12269. },
  12270. {
  12271. name: "Universal",
  12272. height: math.unit(1, "yottameter")
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12278. {
  12279. front: {
  12280. height: math.unit(6, "feet"),
  12281. weight: math.unit(150, "lb"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/epifox/front.svg",
  12285. extra: 1,
  12286. bottom: 0.075
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Micro",
  12293. height: math.unit(6, "inches")
  12294. },
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(12, "feet"),
  12298. default: true
  12299. },
  12300. {
  12301. name: "Macro",
  12302. height: math.unit(3810, "feet")
  12303. },
  12304. {
  12305. name: "Megamacro",
  12306. height: math.unit(500, "miles")
  12307. },
  12308. ]
  12309. ))
  12310. characterMakers.push(() => makeCharacter(
  12311. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12312. {
  12313. front: {
  12314. height: math.unit(1.8796, "m"),
  12315. weight: math.unit(230, "lb"),
  12316. name: "Front",
  12317. image: {
  12318. source: "./media/characters/colin-t/front.svg",
  12319. extra: 1272 / 1193,
  12320. bottom: 0.07
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Micro",
  12327. height: math.unit(0.571, "meters")
  12328. },
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(1.8796, "meters"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Tall",
  12336. height: math.unit(4, "meters")
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(67.241, "meters")
  12341. },
  12342. {
  12343. name: "Megamacro",
  12344. height: math.unit(371.856, "meters")
  12345. },
  12346. {
  12347. name: "Planetary",
  12348. height: math.unit(12631.5689, "km")
  12349. },
  12350. ]
  12351. ))
  12352. characterMakers.push(() => makeCharacter(
  12353. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12354. {
  12355. front: {
  12356. height: math.unit(1.85, "meters"),
  12357. weight: math.unit(80, "kg"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/matvei/front.svg",
  12361. extra: 614 / 594,
  12362. bottom: 0.01
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Normal",
  12369. height: math.unit(1.85, "meters"),
  12370. default: true
  12371. },
  12372. ]
  12373. ))
  12374. characterMakers.push(() => makeCharacter(
  12375. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12376. {
  12377. front: {
  12378. height: math.unit(5 + 9 / 12, "feet"),
  12379. weight: math.unit(70, "lb"),
  12380. name: "Front",
  12381. image: {
  12382. source: "./media/characters/quincy/front.svg",
  12383. extra: 3041 / 2751
  12384. }
  12385. },
  12386. back: {
  12387. height: math.unit(5 + 9 / 12, "feet"),
  12388. weight: math.unit(70, "lb"),
  12389. name: "Back",
  12390. image: {
  12391. source: "./media/characters/quincy/back.svg",
  12392. extra: 3041 / 2751
  12393. }
  12394. },
  12395. flying: {
  12396. height: math.unit(5 + 4 / 12, "feet"),
  12397. weight: math.unit(70, "lb"),
  12398. name: "Flying",
  12399. image: {
  12400. source: "./media/characters/quincy/flying.svg",
  12401. extra: 1044 / 930
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Micro",
  12408. height: math.unit(3, "cm")
  12409. },
  12410. {
  12411. name: "Normal",
  12412. height: math.unit(5 + 9 / 12, "feet")
  12413. },
  12414. {
  12415. name: "Macro",
  12416. height: math.unit(200, "meters"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Megamacro",
  12421. height: math.unit(1000, "meters")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(3 + 11/12, "feet"),
  12430. weight: math.unit(50, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/vanrel/front.svg",
  12434. extra: 1104/949,
  12435. bottom: 52/1156
  12436. }
  12437. },
  12438. back: {
  12439. height: math.unit(3 + 11/12, "feet"),
  12440. weight: math.unit(50, "lb"),
  12441. name: "Back",
  12442. image: {
  12443. source: "./media/characters/vanrel/back.svg",
  12444. extra: 1119/976,
  12445. bottom: 37/1156
  12446. }
  12447. },
  12448. tome: {
  12449. height: math.unit(1.35, "feet"),
  12450. weight: math.unit(10, "lb"),
  12451. name: "Vanrel's Tome",
  12452. rename: true,
  12453. image: {
  12454. source: "./media/characters/vanrel/tome.svg"
  12455. }
  12456. },
  12457. beans: {
  12458. height: math.unit(0.89, "feet"),
  12459. name: "Beans",
  12460. image: {
  12461. source: "./media/characters/vanrel/beans.svg"
  12462. }
  12463. },
  12464. },
  12465. [
  12466. {
  12467. name: "Normal",
  12468. height: math.unit(3 + 11/12, "feet"),
  12469. default: true
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(7 + 5 / 12, "feet"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/kuiper-vanrel/front.svg",
  12481. extra: 1219/1169,
  12482. bottom: 69/1288
  12483. }
  12484. },
  12485. back: {
  12486. height: math.unit(7 + 5 / 12, "feet"),
  12487. name: "Back",
  12488. image: {
  12489. source: "./media/characters/kuiper-vanrel/back.svg",
  12490. extra: 1236/1193,
  12491. bottom: 27/1263
  12492. }
  12493. },
  12494. foot: {
  12495. height: math.unit(0.55, "meters"),
  12496. name: "Foot",
  12497. image: {
  12498. source: "./media/characters/kuiper-vanrel/foot.svg",
  12499. }
  12500. },
  12501. battle: {
  12502. height: math.unit(6.824, "feet"),
  12503. name: "Battle",
  12504. image: {
  12505. source: "./media/characters/kuiper-vanrel/battle.svg",
  12506. extra: 1466 / 1327,
  12507. bottom: 29 / 1492.5
  12508. }
  12509. },
  12510. meerkui: {
  12511. height: math.unit(18, "inches"),
  12512. name: "Meerkui",
  12513. image: {
  12514. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12515. extra: 1354/1289,
  12516. bottom: 69/1423
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(7 + 5 / 12, "feet"),
  12524. default: true
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(8 + 5 / 12, "feet"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/keset-vanrel/front.svg",
  12536. extra: 1231/1148,
  12537. bottom: 82/1313
  12538. }
  12539. },
  12540. back: {
  12541. height: math.unit(8 + 5 / 12, "feet"),
  12542. name: "Back",
  12543. image: {
  12544. source: "./media/characters/keset-vanrel/back.svg",
  12545. extra: 1240/1174,
  12546. bottom: 33/1273
  12547. }
  12548. },
  12549. hand: {
  12550. height: math.unit(0.6, "meters"),
  12551. name: "Hand",
  12552. image: {
  12553. source: "./media/characters/keset-vanrel/hand.svg"
  12554. }
  12555. },
  12556. foot: {
  12557. height: math.unit(0.94978, "meters"),
  12558. name: "Foot",
  12559. image: {
  12560. source: "./media/characters/keset-vanrel/foot.svg"
  12561. }
  12562. },
  12563. battle: {
  12564. height: math.unit(7.408, "feet"),
  12565. name: "Battle",
  12566. image: {
  12567. source: "./media/characters/keset-vanrel/battle.svg",
  12568. extra: 1890 / 1386,
  12569. bottom: 73.28 / 1970
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(8 + 5 / 12, "feet"),
  12577. default: true
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(6, "feet"),
  12586. weight: math.unit(150, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/neos/front.svg",
  12590. extra: 1696 / 992,
  12591. bottom: 0.14
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(54, "cm"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Macro",
  12603. height: math.unit(100, "m")
  12604. },
  12605. {
  12606. name: "Megamacro",
  12607. height: math.unit(10, "km")
  12608. },
  12609. {
  12610. name: "Megamacro+",
  12611. height: math.unit(100, "km")
  12612. },
  12613. {
  12614. name: "Gigamacro",
  12615. height: math.unit(100, "Mm")
  12616. },
  12617. {
  12618. name: "Teramacro",
  12619. height: math.unit(100, "Gm")
  12620. },
  12621. {
  12622. name: "Examacro",
  12623. height: math.unit(100, "Em")
  12624. },
  12625. {
  12626. name: "Godly",
  12627. height: math.unit(10000, "Ym")
  12628. },
  12629. {
  12630. name: "Beyond Godly",
  12631. height: math.unit(25, "multiverses")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12637. {
  12638. feminine: {
  12639. height: math.unit(5, "feet"),
  12640. weight: math.unit(100, "lb"),
  12641. name: "Feminine",
  12642. image: {
  12643. source: "./media/characters/sammy-mouse/feminine.svg",
  12644. extra: 2526 / 2425,
  12645. bottom: 0.123
  12646. }
  12647. },
  12648. masculine: {
  12649. height: math.unit(5, "feet"),
  12650. weight: math.unit(100, "lb"),
  12651. name: "Masculine",
  12652. image: {
  12653. source: "./media/characters/sammy-mouse/masculine.svg",
  12654. extra: 2526 / 2425,
  12655. bottom: 0.123
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Micro",
  12662. height: math.unit(5, "inches")
  12663. },
  12664. {
  12665. name: "Normal",
  12666. height: math.unit(5, "feet"),
  12667. default: true
  12668. },
  12669. {
  12670. name: "Macro",
  12671. height: math.unit(60, "feet")
  12672. },
  12673. ]
  12674. ))
  12675. characterMakers.push(() => makeCharacter(
  12676. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12677. {
  12678. front: {
  12679. height: math.unit(4, "feet"),
  12680. weight: math.unit(50, "lb"),
  12681. name: "Front",
  12682. image: {
  12683. source: "./media/characters/kole/front.svg",
  12684. extra: 1423 / 1303,
  12685. bottom: 0.025
  12686. }
  12687. },
  12688. back: {
  12689. height: math.unit(4, "feet"),
  12690. weight: math.unit(50, "lb"),
  12691. name: "Back",
  12692. image: {
  12693. source: "./media/characters/kole/back.svg",
  12694. extra: 1426 / 1280,
  12695. bottom: 0.02
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(4, "feet"),
  12703. default: true
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(2.5, "feet"),
  12712. weight: math.unit(32, "lb"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/rufran/front.svg",
  12716. extra: 1313/885,
  12717. bottom: 94/1407
  12718. }
  12719. },
  12720. side: {
  12721. height: math.unit(2.5, "feet"),
  12722. weight: math.unit(32, "lb"),
  12723. name: "Side",
  12724. image: {
  12725. source: "./media/characters/rufran/side.svg",
  12726. extra: 1109/852,
  12727. bottom: 118/1227
  12728. }
  12729. },
  12730. back: {
  12731. height: math.unit(2.5, "feet"),
  12732. weight: math.unit(32, "lb"),
  12733. name: "Back",
  12734. image: {
  12735. source: "./media/characters/rufran/back.svg",
  12736. extra: 1280/878,
  12737. bottom: 131/1411
  12738. }
  12739. },
  12740. mouth: {
  12741. height: math.unit(1.13, "feet"),
  12742. name: "Mouth",
  12743. image: {
  12744. source: "./media/characters/rufran/mouth.svg"
  12745. }
  12746. },
  12747. foot: {
  12748. height: math.unit(1.33, "feet"),
  12749. name: "Foot",
  12750. image: {
  12751. source: "./media/characters/rufran/foot.svg"
  12752. }
  12753. },
  12754. koboldFront: {
  12755. height: math.unit(2 + 6 / 12, "feet"),
  12756. weight: math.unit(20, "lb"),
  12757. name: "Front (Kobold)",
  12758. image: {
  12759. source: "./media/characters/rufran/kobold-front.svg",
  12760. extra: 2041 / 1839,
  12761. bottom: 0.055
  12762. }
  12763. },
  12764. koboldBack: {
  12765. height: math.unit(2 + 6 / 12, "feet"),
  12766. weight: math.unit(20, "lb"),
  12767. name: "Back (Kobold)",
  12768. image: {
  12769. source: "./media/characters/rufran/kobold-back.svg",
  12770. extra: 2054 / 1839,
  12771. bottom: 0.01
  12772. }
  12773. },
  12774. koboldHand: {
  12775. height: math.unit(0.2166, "meters"),
  12776. name: "Hand (Kobold)",
  12777. image: {
  12778. source: "./media/characters/rufran/kobold-hand.svg"
  12779. }
  12780. },
  12781. koboldFoot: {
  12782. height: math.unit(0.185, "meters"),
  12783. name: "Foot (Kobold)",
  12784. image: {
  12785. source: "./media/characters/rufran/kobold-foot.svg"
  12786. }
  12787. },
  12788. },
  12789. [
  12790. {
  12791. name: "Micro",
  12792. height: math.unit(1, "inch")
  12793. },
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(2 + 6 / 12, "feet"),
  12797. default: true
  12798. },
  12799. {
  12800. name: "Big",
  12801. height: math.unit(60, "feet")
  12802. },
  12803. {
  12804. name: "Macro",
  12805. height: math.unit(325, "feet")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(0.3, "meters"),
  12814. weight: math.unit(3.5, "kg"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/chip/front.svg",
  12818. extra: 748 / 674
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Micro",
  12825. height: math.unit(1, "inch"),
  12826. default: true
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12832. {
  12833. side: {
  12834. height: math.unit(2.3, "meters"),
  12835. weight: math.unit(3500, "lb"),
  12836. name: "Side",
  12837. image: {
  12838. source: "./media/characters/torvid/side.svg",
  12839. extra: 1972 / 722,
  12840. bottom: 0.035
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(2.3, "meters"),
  12848. default: true
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12854. {
  12855. front: {
  12856. height: math.unit(2, "meters"),
  12857. weight: math.unit(150.5, "kg"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/susan/front.svg",
  12861. extra: 693 / 635,
  12862. bottom: 0.05
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Megamacro",
  12869. height: math.unit(505, "miles"),
  12870. default: true
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(150, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/raindrops/front.svg",
  12883. extra: 2655 / 2461,
  12884. bottom: 49 / 2705
  12885. }
  12886. },
  12887. back: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/raindrops/back.svg",
  12893. extra: 2574 / 2400,
  12894. bottom: 65 / 2634
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Micro",
  12901. height: math.unit(6, "inches")
  12902. },
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(6 + 2 / 12, "feet")
  12906. },
  12907. {
  12908. name: "Macro",
  12909. height: math.unit(131, "feet"),
  12910. default: true
  12911. },
  12912. {
  12913. name: "Megamacro",
  12914. height: math.unit(15, "miles")
  12915. },
  12916. {
  12917. name: "Gigamacro",
  12918. height: math.unit(4000, "miles")
  12919. },
  12920. {
  12921. name: "Teramacro",
  12922. height: math.unit(315000, "miles")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(2.794, "meters"),
  12931. weight: math.unit(325, "kg"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/tezwa/front.svg",
  12935. extra: 2083 / 1906,
  12936. bottom: 0.031
  12937. }
  12938. },
  12939. foot: {
  12940. height: math.unit(0.687, "meters"),
  12941. name: "Foot",
  12942. image: {
  12943. source: "./media/characters/tezwa/foot.svg"
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(9 + 2 / 12, "feet"),
  12951. default: true
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12957. {
  12958. front: {
  12959. height: math.unit(58, "feet"),
  12960. weight: math.unit(89000, "lb"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/typhus/front.svg",
  12964. extra: 816 / 800,
  12965. bottom: 0.065
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Macro",
  12972. height: math.unit(58, "feet"),
  12973. default: true
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12979. {
  12980. front: {
  12981. height: math.unit(12, "feet"),
  12982. weight: math.unit(6, "tonnes"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/lyra-von-wulf/front.svg",
  12986. extra: 1,
  12987. bottom: 0.10
  12988. }
  12989. },
  12990. frontMecha: {
  12991. height: math.unit(12, "feet"),
  12992. weight: math.unit(12, "tonnes"),
  12993. name: "Front (Mecha)",
  12994. image: {
  12995. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12996. extra: 1,
  12997. bottom: 0.042
  12998. }
  12999. },
  13000. maw: {
  13001. height: math.unit(2.2, "feet"),
  13002. name: "Maw",
  13003. image: {
  13004. source: "./media/characters/lyra-von-wulf/maw.svg"
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Normal",
  13011. height: math.unit(12, "feet"),
  13012. default: true
  13013. },
  13014. {
  13015. name: "Classic",
  13016. height: math.unit(50, "feet")
  13017. },
  13018. {
  13019. name: "Macro",
  13020. height: math.unit(500, "feet")
  13021. },
  13022. {
  13023. name: "Megamacro",
  13024. height: math.unit(1, "mile")
  13025. },
  13026. {
  13027. name: "Gigamacro",
  13028. height: math.unit(400, "miles")
  13029. },
  13030. {
  13031. name: "Teramacro",
  13032. height: math.unit(22000, "miles")
  13033. },
  13034. {
  13035. name: "Solarmacro",
  13036. height: math.unit(8600000, "miles")
  13037. },
  13038. {
  13039. name: "Galactic",
  13040. height: math.unit(1057000, "lightyears")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(6 + 10 / 12, "feet"),
  13049. weight: math.unit(150, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/dixon/front.svg",
  13053. extra: 3361 / 3209,
  13054. bottom: 0.01
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(6 + 10 / 12, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Big",
  13066. height: math.unit(12, "meters")
  13067. },
  13068. {
  13069. name: "Macro",
  13070. height: math.unit(500, "meters")
  13071. },
  13072. {
  13073. name: "Megamacro",
  13074. height: math.unit(2, "km")
  13075. },
  13076. ]
  13077. ))
  13078. characterMakers.push(() => makeCharacter(
  13079. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13080. {
  13081. front: {
  13082. height: math.unit(185, "cm"),
  13083. weight: math.unit(68, "kg"),
  13084. name: "Front",
  13085. image: {
  13086. source: "./media/characters/kauko/front.svg",
  13087. extra: 1455 / 1421,
  13088. bottom: 0.03
  13089. }
  13090. },
  13091. back: {
  13092. height: math.unit(185, "cm"),
  13093. weight: math.unit(68, "kg"),
  13094. name: "Back",
  13095. image: {
  13096. source: "./media/characters/kauko/back.svg",
  13097. extra: 1455 / 1421,
  13098. bottom: 0.004
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Normal",
  13105. height: math.unit(185, "cm"),
  13106. default: true
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13112. {
  13113. front: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "kg"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/varg/front.svg",
  13119. extra: 1108 / 1018,
  13120. bottom: 0.0375
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(5, "meters")
  13128. },
  13129. {
  13130. name: "Macro",
  13131. height: math.unit(200, "meters")
  13132. },
  13133. {
  13134. name: "Megamacro",
  13135. height: math.unit(20, "kilometers")
  13136. },
  13137. {
  13138. name: "True Size",
  13139. height: math.unit(211, "km"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Gigamacro",
  13144. height: math.unit(1000, "km")
  13145. },
  13146. {
  13147. name: "Gigamacro+",
  13148. height: math.unit(8000, "km")
  13149. },
  13150. {
  13151. name: "Teramacro",
  13152. height: math.unit(1000000, "km")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(7 + 7 / 12, "feet"),
  13161. weight: math.unit(267, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/dayza/front.svg",
  13165. extra: 1262 / 1200,
  13166. bottom: 0.035
  13167. }
  13168. },
  13169. side: {
  13170. height: math.unit(7 + 7 / 12, "feet"),
  13171. weight: math.unit(267, "lb"),
  13172. name: "Side",
  13173. image: {
  13174. source: "./media/characters/dayza/side.svg",
  13175. extra: 1295 / 1245,
  13176. bottom: 0.05
  13177. }
  13178. },
  13179. back: {
  13180. height: math.unit(7 + 7 / 12, "feet"),
  13181. weight: math.unit(267, "lb"),
  13182. name: "Back",
  13183. image: {
  13184. source: "./media/characters/dayza/back.svg",
  13185. extra: 1241 / 1170
  13186. }
  13187. },
  13188. },
  13189. [
  13190. {
  13191. name: "Normal",
  13192. height: math.unit(7 + 7 / 12, "feet"),
  13193. default: true
  13194. },
  13195. {
  13196. name: "Macro",
  13197. height: math.unit(155, "feet")
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(6 + 5 / 12, "feet"),
  13206. weight: math.unit(160, "lb"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/xanthos/front.svg",
  13210. extra: 1,
  13211. bottom: 0.04
  13212. }
  13213. },
  13214. back: {
  13215. height: math.unit(6 + 5 / 12, "feet"),
  13216. weight: math.unit(160, "lb"),
  13217. name: "Back",
  13218. image: {
  13219. source: "./media/characters/xanthos/back.svg",
  13220. extra: 1,
  13221. bottom: 0.03
  13222. }
  13223. },
  13224. hand: {
  13225. height: math.unit(0.928, "feet"),
  13226. name: "Hand",
  13227. image: {
  13228. source: "./media/characters/xanthos/hand.svg"
  13229. }
  13230. },
  13231. foot: {
  13232. height: math.unit(1.286, "feet"),
  13233. name: "Foot",
  13234. image: {
  13235. source: "./media/characters/xanthos/foot.svg"
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(6 + 5 / 12, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Normal+",
  13247. height: math.unit(6, "meters")
  13248. },
  13249. {
  13250. name: "Macro",
  13251. height: math.unit(40, "feet")
  13252. },
  13253. {
  13254. name: "Macro+",
  13255. height: math.unit(200, "meters")
  13256. },
  13257. {
  13258. name: "Megamacro",
  13259. height: math.unit(20, "km")
  13260. },
  13261. {
  13262. name: "Megamacro+",
  13263. height: math.unit(100, "km")
  13264. },
  13265. {
  13266. name: "Gigamacro",
  13267. height: math.unit(200, "megameters")
  13268. },
  13269. {
  13270. name: "Gigamacro+",
  13271. height: math.unit(1.5, "gigameters")
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(6 + 3 / 12, "feet"),
  13280. weight: math.unit(215, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/grynn/front.svg",
  13284. extra: 4627 / 4209,
  13285. bottom: 0.047
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(6, "inches")
  13293. },
  13294. {
  13295. name: "Normal",
  13296. height: math.unit(6 + 3 / 12, "feet"),
  13297. default: true
  13298. },
  13299. {
  13300. name: "Big",
  13301. height: math.unit(104, "feet")
  13302. },
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(944, "feet")
  13306. },
  13307. {
  13308. name: "Macro+",
  13309. height: math.unit(9480, "feet")
  13310. },
  13311. {
  13312. name: "Megamacro",
  13313. height: math.unit(78752, "feet")
  13314. },
  13315. {
  13316. name: "Megamacro+",
  13317. height: math.unit(630128, "feet")
  13318. },
  13319. {
  13320. name: "Megamacro++",
  13321. height: math.unit(3150695, "feet")
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13327. {
  13328. front: {
  13329. height: math.unit(7 + 5 / 12, "feet"),
  13330. weight: math.unit(450, "lb"),
  13331. name: "Front",
  13332. image: {
  13333. source: "./media/characters/mocha-aura/front.svg",
  13334. extra: 1907 / 1817,
  13335. bottom: 0.04
  13336. }
  13337. },
  13338. back: {
  13339. height: math.unit(7 + 5 / 12, "feet"),
  13340. weight: math.unit(450, "lb"),
  13341. name: "Back",
  13342. image: {
  13343. source: "./media/characters/mocha-aura/back.svg",
  13344. extra: 1900 / 1825,
  13345. bottom: 0.045
  13346. }
  13347. },
  13348. },
  13349. [
  13350. {
  13351. name: "Nano",
  13352. height: math.unit(1, "nm")
  13353. },
  13354. {
  13355. name: "Megamicro",
  13356. height: math.unit(1, "mm")
  13357. },
  13358. {
  13359. name: "Micro",
  13360. height: math.unit(3, "inches")
  13361. },
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(7 + 5 / 12, "feet"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(30, "feet")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(3500, "feet")
  13374. },
  13375. {
  13376. name: "Teramacro",
  13377. height: math.unit(500000, "miles")
  13378. },
  13379. {
  13380. name: "Petamacro",
  13381. height: math.unit(50000000000000000, "parsecs")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(6, "feet"),
  13390. weight: math.unit(150, "lb"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/ilisha-devya/front.svg",
  13394. extra: 1053/1049,
  13395. bottom: 270/1323
  13396. }
  13397. },
  13398. back: {
  13399. height: math.unit(6, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Back",
  13402. image: {
  13403. source: "./media/characters/ilisha-devya/back.svg",
  13404. extra: 1131/1128,
  13405. bottom: 39/1170
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Macro",
  13412. height: math.unit(500, "feet"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Megamacro",
  13417. height: math.unit(10, "miles")
  13418. },
  13419. {
  13420. name: "Gigamacro",
  13421. height: math.unit(100000, "miles")
  13422. },
  13423. {
  13424. name: "Examacro",
  13425. height: math.unit(1e9, "lightyears")
  13426. },
  13427. {
  13428. name: "Omniversal",
  13429. height: math.unit(1e33, "lightyears")
  13430. },
  13431. {
  13432. name: "Beyond Infinite",
  13433. height: math.unit(1e100, "lightyears")
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13439. {
  13440. Side: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Side",
  13444. image: {
  13445. source: "./media/characters/mira/side.svg",
  13446. extra: 900 / 799,
  13447. bottom: 0.02
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Human Size",
  13454. height: math.unit(6, "feet")
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(100, "feet"),
  13459. default: true
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(10, "miles")
  13464. },
  13465. {
  13466. name: "Gigamacro",
  13467. height: math.unit(25000, "miles")
  13468. },
  13469. {
  13470. name: "Teramacro",
  13471. height: math.unit(300, "AU")
  13472. },
  13473. {
  13474. name: "Full Size",
  13475. height: math.unit(4.5e10, "lightyears")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/holly/front.svg",
  13488. extra: 639 / 606
  13489. }
  13490. },
  13491. back: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Back",
  13495. image: {
  13496. source: "./media/characters/holly/back.svg",
  13497. extra: 623 / 598
  13498. }
  13499. },
  13500. frontWorking: {
  13501. height: math.unit(6, "feet"),
  13502. weight: math.unit(150, "lb"),
  13503. name: "Front (Working)",
  13504. image: {
  13505. source: "./media/characters/holly/front-working.svg",
  13506. extra: 607 / 577,
  13507. bottom: 0.048
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Normal",
  13514. height: math.unit(12 + 3 / 12, "feet"),
  13515. default: true
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13521. {
  13522. front: {
  13523. height: math.unit(6, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Front",
  13526. image: {
  13527. source: "./media/characters/porter/front.svg",
  13528. extra: 1,
  13529. bottom: 0.01
  13530. }
  13531. },
  13532. frontRobes: {
  13533. height: math.unit(6, "feet"),
  13534. weight: math.unit(150, "lb"),
  13535. name: "Front (Robes)",
  13536. image: {
  13537. source: "./media/characters/porter/front-robes.svg",
  13538. extra: 1.01,
  13539. bottom: 0.01
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(11 + 9 / 12, "feet"),
  13547. default: true
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13553. {
  13554. legendary: {
  13555. height: math.unit(6, "feet"),
  13556. weight: math.unit(150, "lb"),
  13557. name: "Legendary",
  13558. image: {
  13559. source: "./media/characters/lucy/legendary.svg",
  13560. extra: 1355 / 1100,
  13561. bottom: 0.045
  13562. }
  13563. },
  13564. },
  13565. [
  13566. {
  13567. name: "Legendary",
  13568. height: math.unit(86882 * 2, "miles"),
  13569. default: true
  13570. },
  13571. ]
  13572. ))
  13573. characterMakers.push(() => makeCharacter(
  13574. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13575. {
  13576. front: {
  13577. height: math.unit(6, "feet"),
  13578. weight: math.unit(150, "lb"),
  13579. name: "Front",
  13580. image: {
  13581. source: "./media/characters/drusilla/front.svg",
  13582. extra: 678 / 635,
  13583. bottom: 0.03
  13584. }
  13585. },
  13586. back: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Back",
  13590. image: {
  13591. source: "./media/characters/drusilla/back.svg",
  13592. extra: 678 / 635,
  13593. bottom: 0.005
  13594. }
  13595. },
  13596. },
  13597. [
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(100, "feet")
  13601. },
  13602. {
  13603. name: "Canon Height",
  13604. height: math.unit(2000, "feet"),
  13605. default: true
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(180, "lb"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/renard-thatch/front.svg",
  13618. extra: 2411 / 2275,
  13619. bottom: 0.01
  13620. }
  13621. },
  13622. frontPosing: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(180, "lb"),
  13625. name: "Front (Posing)",
  13626. image: {
  13627. source: "./media/characters/renard-thatch/front-posing.svg",
  13628. extra: 2381 / 2261,
  13629. bottom: 0.01
  13630. }
  13631. },
  13632. back: {
  13633. height: math.unit(6, "feet"),
  13634. weight: math.unit(180, "lb"),
  13635. name: "Back",
  13636. image: {
  13637. source: "./media/characters/renard-thatch/back.svg",
  13638. extra: 2428 / 2288
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Micro",
  13645. height: math.unit(3, "inches")
  13646. },
  13647. {
  13648. name: "Default",
  13649. height: math.unit(6, "feet"),
  13650. default: true
  13651. },
  13652. {
  13653. name: "Macro",
  13654. height: math.unit(75, "feet")
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13660. {
  13661. front: {
  13662. height: math.unit(1450, "feet"),
  13663. weight: math.unit(1.21e6, "tons"),
  13664. name: "Front",
  13665. image: {
  13666. source: "./media/characters/sekvra/front.svg",
  13667. extra: 1193/1190,
  13668. bottom: 78/1271
  13669. }
  13670. },
  13671. side: {
  13672. height: math.unit(1450, "feet"),
  13673. weight: math.unit(1.21e6, "tons"),
  13674. name: "Side",
  13675. image: {
  13676. source: "./media/characters/sekvra/side.svg",
  13677. extra: 1193/1190,
  13678. bottom: 52/1245
  13679. }
  13680. },
  13681. back: {
  13682. height: math.unit(1450, "feet"),
  13683. weight: math.unit(1.21e6, "tons"),
  13684. name: "Back",
  13685. image: {
  13686. source: "./media/characters/sekvra/back.svg",
  13687. extra: 1219/1216,
  13688. bottom: 21/1240
  13689. }
  13690. },
  13691. frontClothed: {
  13692. height: math.unit(1450, "feet"),
  13693. weight: math.unit(1.21e6, "tons"),
  13694. name: "Front (Clothed)",
  13695. image: {
  13696. source: "./media/characters/sekvra/front-clothed.svg",
  13697. extra: 1192/1189,
  13698. bottom: 79/1271
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Macro",
  13705. height: math.unit(1450, "feet"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Megamacro",
  13710. height: math.unit(15000, "feet")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(150, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/carmine/front.svg",
  13723. extra: 1,
  13724. bottom: 0.035
  13725. }
  13726. },
  13727. frontArmor: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Front (Armor)",
  13731. image: {
  13732. source: "./media/characters/carmine/front-armor.svg",
  13733. extra: 1,
  13734. bottom: 0.035
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Large",
  13741. height: math.unit(1, "mile")
  13742. },
  13743. {
  13744. name: "Huge",
  13745. height: math.unit(40, "miles"),
  13746. default: true
  13747. },
  13748. {
  13749. name: "Colossal",
  13750. height: math.unit(2500, "miles")
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13756. {
  13757. front: {
  13758. height: math.unit(6, "feet"),
  13759. weight: math.unit(150, "lb"),
  13760. name: "Front",
  13761. image: {
  13762. source: "./media/characters/elyssia/front.svg",
  13763. extra: 2201 / 2035,
  13764. bottom: 0.05
  13765. }
  13766. },
  13767. frontClothed: {
  13768. height: math.unit(6, "feet"),
  13769. weight: math.unit(150, "lb"),
  13770. name: "Front (Clothed)",
  13771. image: {
  13772. source: "./media/characters/elyssia/front-clothed.svg",
  13773. extra: 2201 / 2035,
  13774. bottom: 0.05
  13775. }
  13776. },
  13777. back: {
  13778. height: math.unit(6, "feet"),
  13779. weight: math.unit(150, "lb"),
  13780. name: "Back",
  13781. image: {
  13782. source: "./media/characters/elyssia/back.svg",
  13783. extra: 2201 / 2035,
  13784. bottom: 0.013
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Smaller",
  13791. height: math.unit(150, "feet")
  13792. },
  13793. {
  13794. name: "Standard",
  13795. height: math.unit(1400, "feet"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Distracted",
  13800. height: math.unit(15000, "feet")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13806. {
  13807. front: {
  13808. height: math.unit(7 + 4/12, "feet"),
  13809. weight: math.unit(690, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/geno-maxwell/front.svg",
  13813. extra: 984/856,
  13814. bottom: 87/1071
  13815. }
  13816. },
  13817. back: {
  13818. height: math.unit(7 + 4/12, "feet"),
  13819. weight: math.unit(690, "lb"),
  13820. name: "Back",
  13821. image: {
  13822. source: "./media/characters/geno-maxwell/back.svg",
  13823. extra: 981/854,
  13824. bottom: 57/1038
  13825. }
  13826. },
  13827. frontCostume: {
  13828. height: math.unit(7 + 4/12, "feet"),
  13829. weight: math.unit(690, "lb"),
  13830. name: "Front (Costume)",
  13831. image: {
  13832. source: "./media/characters/geno-maxwell/front-costume.svg",
  13833. extra: 984/856,
  13834. bottom: 87/1071
  13835. }
  13836. },
  13837. backcostume: {
  13838. height: math.unit(7 + 4/12, "feet"),
  13839. weight: math.unit(690, "lb"),
  13840. name: "Back (Costume)",
  13841. image: {
  13842. source: "./media/characters/geno-maxwell/back-costume.svg",
  13843. extra: 981/854,
  13844. bottom: 57/1038
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Micro",
  13851. height: math.unit(3, "inches")
  13852. },
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(7 + 4 / 12, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Macro",
  13860. height: math.unit(220, "feet")
  13861. },
  13862. {
  13863. name: "Megamacro",
  13864. height: math.unit(11, "miles")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(7 + 4/12, "feet"),
  13873. weight: math.unit(750, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/regena-maxwell/front.svg",
  13877. extra: 984/856,
  13878. bottom: 87/1071
  13879. }
  13880. },
  13881. back: {
  13882. height: math.unit(7 + 4/12, "feet"),
  13883. weight: math.unit(750, "lb"),
  13884. name: "Back",
  13885. image: {
  13886. source: "./media/characters/regena-maxwell/back.svg",
  13887. extra: 981/854,
  13888. bottom: 57/1038
  13889. }
  13890. },
  13891. frontCostume: {
  13892. height: math.unit(7 + 4/12, "feet"),
  13893. weight: math.unit(750, "lb"),
  13894. name: "Front (Costume)",
  13895. image: {
  13896. source: "./media/characters/regena-maxwell/front-costume.svg",
  13897. extra: 984/856,
  13898. bottom: 87/1071
  13899. }
  13900. },
  13901. backcostume: {
  13902. height: math.unit(7 + 4/12, "feet"),
  13903. weight: math.unit(750, "lb"),
  13904. name: "Back (Costume)",
  13905. image: {
  13906. source: "./media/characters/regena-maxwell/back-costume.svg",
  13907. extra: 981/854,
  13908. bottom: 57/1038
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Normal",
  13915. height: math.unit(7 + 4 / 12, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Macro",
  13920. height: math.unit(220, "feet")
  13921. },
  13922. {
  13923. name: "Megamacro",
  13924. height: math.unit(11, "miles")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(150, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13937. extra: 860 / 690,
  13938. bottom: 0.03
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(1.7, "meters"),
  13946. default: true
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Quilly", species: ["quilava"], 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/quilly/front.svg",
  13959. extra: 890 / 776
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Gigamacro",
  13966. height: math.unit(404090, "miles"),
  13967. default: true
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(7 + 8 / 12, "feet"),
  13976. weight: math.unit(350, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/tempest/front.svg",
  13980. extra: 1175 / 1086,
  13981. bottom: 0.02
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Normal",
  13988. height: math.unit(7 + 8 / 12, "feet"),
  13989. default: true
  13990. },
  13991. ]
  13992. ))
  13993. characterMakers.push(() => makeCharacter(
  13994. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13995. {
  13996. side: {
  13997. height: math.unit(4 + 5 / 12, "feet"),
  13998. weight: math.unit(80, "lb"),
  13999. name: "Side",
  14000. image: {
  14001. source: "./media/characters/rodger/side.svg",
  14002. extra: 1235 / 1118
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Micro",
  14009. height: math.unit(1, "inch")
  14010. },
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(4 + 5 / 12, "feet"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Macro",
  14018. height: math.unit(120, "feet")
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(150, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/danyel/front.svg",
  14031. extra: 1185 / 1123,
  14032. bottom: 0.05
  14033. }
  14034. },
  14035. },
  14036. [
  14037. {
  14038. name: "Shrunken",
  14039. height: math.unit(0.5, "mm")
  14040. },
  14041. {
  14042. name: "Micro",
  14043. height: math.unit(1, "mm"),
  14044. default: true
  14045. },
  14046. {
  14047. name: "Upsized",
  14048. height: math.unit(5 + 5 / 12, "feet")
  14049. },
  14050. ]
  14051. ))
  14052. characterMakers.push(() => makeCharacter(
  14053. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14054. {
  14055. front: {
  14056. height: math.unit(5 + 6 / 12, "feet"),
  14057. weight: math.unit(200, "lb"),
  14058. name: "Front",
  14059. image: {
  14060. source: "./media/characters/vivian-bijoux/front.svg",
  14061. extra: 1217/1209,
  14062. bottom: 76/1293
  14063. }
  14064. },
  14065. back: {
  14066. height: math.unit(5 + 6 / 12, "feet"),
  14067. weight: math.unit(200, "lb"),
  14068. name: "Back",
  14069. image: {
  14070. source: "./media/characters/vivian-bijoux/back.svg",
  14071. extra: 1214/1208,
  14072. bottom: 51/1265
  14073. }
  14074. },
  14075. dressed: {
  14076. height: math.unit(5 + 6 / 12, "feet"),
  14077. weight: math.unit(200, "lb"),
  14078. name: "Dressed",
  14079. image: {
  14080. source: "./media/characters/vivian-bijoux/dressed.svg",
  14081. extra: 1217/1209,
  14082. bottom: 76/1293
  14083. }
  14084. },
  14085. },
  14086. [
  14087. {
  14088. name: "Normal",
  14089. height: math.unit(5 + 6 / 12, "feet"),
  14090. default: true
  14091. },
  14092. {
  14093. name: "Bad Dream",
  14094. height: math.unit(500, "feet")
  14095. },
  14096. {
  14097. name: "Nightmare",
  14098. height: math.unit(500, "miles")
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14104. {
  14105. front: {
  14106. height: math.unit(6 + 1 / 12, "feet"),
  14107. weight: math.unit(260, "lb"),
  14108. name: "Front",
  14109. image: {
  14110. source: "./media/characters/zeta/front.svg",
  14111. extra: 1968 / 1889,
  14112. bottom: 0.06
  14113. }
  14114. },
  14115. back: {
  14116. height: math.unit(6 + 1 / 12, "feet"),
  14117. weight: math.unit(260, "lb"),
  14118. name: "Back",
  14119. image: {
  14120. source: "./media/characters/zeta/back.svg",
  14121. extra: 1944 / 1858,
  14122. bottom: 0.03
  14123. }
  14124. },
  14125. hand: {
  14126. height: math.unit(1.112, "feet"),
  14127. name: "Hand",
  14128. image: {
  14129. source: "./media/characters/zeta/hand.svg"
  14130. }
  14131. },
  14132. foot: {
  14133. height: math.unit(1.48, "feet"),
  14134. name: "Foot",
  14135. image: {
  14136. source: "./media/characters/zeta/foot.svg"
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Micro",
  14143. height: math.unit(6, "inches")
  14144. },
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(6 + 1 / 12, "feet"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Macro",
  14152. height: math.unit(20, "feet")
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(6, "feet"),
  14161. weight: math.unit(150, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/jamie-larsen/front.svg",
  14165. extra: 962 / 933,
  14166. bottom: 0.02
  14167. }
  14168. },
  14169. back: {
  14170. height: math.unit(6, "feet"),
  14171. weight: math.unit(150, "lb"),
  14172. name: "Back",
  14173. image: {
  14174. source: "./media/characters/jamie-larsen/back.svg",
  14175. extra: 997 / 946
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Macro",
  14182. height: math.unit(28 + 7 / 12, "feet"),
  14183. default: true
  14184. },
  14185. {
  14186. name: "Macro+",
  14187. height: math.unit(180, "feet")
  14188. },
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(10, "miles")
  14192. },
  14193. {
  14194. name: "Gigamacro",
  14195. height: math.unit(200000, "miles")
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14201. {
  14202. front: {
  14203. height: math.unit(6, "feet"),
  14204. weight: math.unit(120, "lb"),
  14205. name: "Front",
  14206. image: {
  14207. source: "./media/characters/vance/front.svg",
  14208. extra: 1980 / 1890,
  14209. bottom: 0.09
  14210. }
  14211. },
  14212. back: {
  14213. height: math.unit(6, "feet"),
  14214. weight: math.unit(120, "lb"),
  14215. name: "Back",
  14216. image: {
  14217. source: "./media/characters/vance/back.svg",
  14218. extra: 2081 / 1994,
  14219. bottom: 0.014
  14220. }
  14221. },
  14222. hand: {
  14223. height: math.unit(0.88, "feet"),
  14224. name: "Hand",
  14225. image: {
  14226. source: "./media/characters/vance/hand.svg"
  14227. }
  14228. },
  14229. foot: {
  14230. height: math.unit(0.64, "feet"),
  14231. name: "Foot",
  14232. image: {
  14233. source: "./media/characters/vance/foot.svg"
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Small",
  14240. height: math.unit(90, "feet"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(100, "meters")
  14246. },
  14247. {
  14248. name: "Megamacro",
  14249. height: math.unit(15, "miles")
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(6, "feet"),
  14258. weight: math.unit(180, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/xochitl/front.svg",
  14262. extra: 2297 / 2261,
  14263. bottom: 0.065
  14264. }
  14265. },
  14266. back: {
  14267. height: math.unit(6, "feet"),
  14268. weight: math.unit(180, "lb"),
  14269. name: "Back",
  14270. image: {
  14271. source: "./media/characters/xochitl/back.svg",
  14272. extra: 2386 / 2354,
  14273. bottom: 0.01
  14274. }
  14275. },
  14276. foot: {
  14277. height: math.unit(6 / 5 * 1.15, "feet"),
  14278. weight: math.unit(150, "lb"),
  14279. name: "Foot",
  14280. image: {
  14281. source: "./media/characters/xochitl/foot.svg"
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Macro",
  14288. height: math.unit(80, "feet")
  14289. },
  14290. {
  14291. name: "Macro+",
  14292. height: math.unit(400, "feet"),
  14293. default: true
  14294. },
  14295. {
  14296. name: "Gigamacro",
  14297. height: math.unit(80000, "miles")
  14298. },
  14299. {
  14300. name: "Gigamacro+",
  14301. height: math.unit(400000, "miles")
  14302. },
  14303. {
  14304. name: "Teramacro",
  14305. height: math.unit(300, "AU")
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14311. {
  14312. front: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(150, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/vincent/front.svg",
  14318. extra: 1130 / 1080,
  14319. bottom: 0.055
  14320. }
  14321. },
  14322. beak: {
  14323. height: math.unit(6 * 0.1, "feet"),
  14324. name: "Beak",
  14325. image: {
  14326. source: "./media/characters/vincent/beak.svg"
  14327. }
  14328. },
  14329. hand: {
  14330. height: math.unit(6 * 0.85, "feet"),
  14331. weight: math.unit(150, "lb"),
  14332. name: "Hand",
  14333. image: {
  14334. source: "./media/characters/vincent/hand.svg"
  14335. }
  14336. },
  14337. foot: {
  14338. height: math.unit(6 * 0.19, "feet"),
  14339. weight: math.unit(150, "lb"),
  14340. name: "Foot",
  14341. image: {
  14342. source: "./media/characters/vincent/foot.svg"
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Base",
  14349. height: math.unit(6 + 5 / 12, "feet"),
  14350. default: true
  14351. },
  14352. {
  14353. name: "Macro",
  14354. height: math.unit(300, "feet")
  14355. },
  14356. {
  14357. name: "Megamacro",
  14358. height: math.unit(2, "miles")
  14359. },
  14360. {
  14361. name: "Gigamacro",
  14362. height: math.unit(1000, "miles")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(2, "meters"),
  14371. weight: math.unit(500, "kg"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/coatl/front.svg",
  14375. extra: 3948 / 3500,
  14376. bottom: 0.082
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Normal",
  14383. height: math.unit(4, "meters")
  14384. },
  14385. {
  14386. name: "Macro",
  14387. height: math.unit(100, "meters"),
  14388. default: true
  14389. },
  14390. {
  14391. name: "Macro+",
  14392. height: math.unit(300, "meters")
  14393. },
  14394. {
  14395. name: "Megamacro",
  14396. height: math.unit(3, "gigameters")
  14397. },
  14398. {
  14399. name: "Megamacro+",
  14400. height: math.unit(300, "terameters")
  14401. },
  14402. {
  14403. name: "Megamacro++",
  14404. height: math.unit(3, "lightyears")
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14410. {
  14411. front: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(50, "kg"),
  14414. name: "front",
  14415. image: {
  14416. source: "./media/characters/shiroryu/front.svg",
  14417. extra: 1990 / 1935
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Mortal Mingling",
  14424. height: math.unit(3, "meters")
  14425. },
  14426. {
  14427. name: "Kaiju-ish",
  14428. height: math.unit(250, "meters")
  14429. },
  14430. {
  14431. name: "Somewhat Godly",
  14432. height: math.unit(400, "km"),
  14433. default: true
  14434. },
  14435. {
  14436. name: "Planetary",
  14437. height: math.unit(300, "megameters")
  14438. },
  14439. {
  14440. name: "Galaxy-dwarfing",
  14441. height: math.unit(450, "kiloparsecs")
  14442. },
  14443. {
  14444. name: "Universe Eater",
  14445. height: math.unit(150, "gigaparsecs")
  14446. },
  14447. {
  14448. name: "Almost Immeasurable",
  14449. height: math.unit(1.3e266, "yottaparsecs")
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(6, "feet"),
  14458. weight: math.unit(150, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/umeko/front.svg",
  14462. extra: 1,
  14463. bottom: 0.019
  14464. }
  14465. },
  14466. frontArmored: {
  14467. height: math.unit(6, "feet"),
  14468. weight: math.unit(150, "lb"),
  14469. name: "Front (Armored)",
  14470. image: {
  14471. source: "./media/characters/umeko/front-armored.svg",
  14472. extra: 1,
  14473. bottom: 0.021
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(220, "feet"),
  14481. default: true
  14482. },
  14483. {
  14484. name: "Guardian Dragon",
  14485. height: math.unit(50, "miles")
  14486. },
  14487. {
  14488. name: "Cosmic",
  14489. height: math.unit(800000, "miles")
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(6, "feet"),
  14498. weight: math.unit(150, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/cassidy/front.svg",
  14502. extra: 810/808,
  14503. bottom: 41/851
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Canon Height",
  14510. height: math.unit(120, "feet"),
  14511. default: true
  14512. },
  14513. {
  14514. name: "Macro+",
  14515. height: math.unit(400, "feet")
  14516. },
  14517. {
  14518. name: "Macro++",
  14519. height: math.unit(4000, "feet")
  14520. },
  14521. {
  14522. name: "Megamacro",
  14523. height: math.unit(3, "miles")
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14529. {
  14530. front: {
  14531. height: math.unit(6, "feet"),
  14532. weight: math.unit(150, "lb"),
  14533. name: "Front",
  14534. image: {
  14535. source: "./media/characters/isaac/front.svg",
  14536. extra: 896 / 815,
  14537. bottom: 0.11
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Human Size",
  14544. height: math.unit(8, "feet"),
  14545. default: true
  14546. },
  14547. {
  14548. name: "Macro",
  14549. height: math.unit(400, "feet")
  14550. },
  14551. {
  14552. name: "Megamacro",
  14553. height: math.unit(50, "miles")
  14554. },
  14555. {
  14556. name: "Canon Height",
  14557. height: math.unit(200, "AU")
  14558. },
  14559. ]
  14560. ))
  14561. characterMakers.push(() => makeCharacter(
  14562. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14563. {
  14564. front: {
  14565. height: math.unit(6, "feet"),
  14566. weight: math.unit(72, "kg"),
  14567. name: "Front",
  14568. image: {
  14569. source: "./media/characters/sleekit/front.svg",
  14570. extra: 4693 / 4487,
  14571. bottom: 0.012
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Minimum Height",
  14578. height: math.unit(10, "meters")
  14579. },
  14580. {
  14581. name: "Smaller",
  14582. height: math.unit(25, "meters")
  14583. },
  14584. {
  14585. name: "Larger",
  14586. height: math.unit(38, "meters"),
  14587. default: true
  14588. },
  14589. {
  14590. name: "Maximum height",
  14591. height: math.unit(100, "meters")
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14597. {
  14598. front: {
  14599. height: math.unit(6, "feet"),
  14600. weight: math.unit(150, "lb"),
  14601. name: "Front",
  14602. image: {
  14603. source: "./media/characters/nillia/front.svg",
  14604. extra: 2195 / 2037,
  14605. bottom: 0.005
  14606. }
  14607. },
  14608. back: {
  14609. height: math.unit(6, "feet"),
  14610. weight: math.unit(150, "lb"),
  14611. name: "Back",
  14612. image: {
  14613. source: "./media/characters/nillia/back.svg",
  14614. extra: 2195 / 2037,
  14615. bottom: 0.005
  14616. }
  14617. },
  14618. },
  14619. [
  14620. {
  14621. name: "Canon Height",
  14622. height: math.unit(489, "feet"),
  14623. default: true
  14624. }
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(6, "feet"),
  14632. weight: math.unit(150, "lb"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/mesmyriza/front.svg",
  14636. extra: 2067 / 1784,
  14637. bottom: 0.035
  14638. }
  14639. },
  14640. foot: {
  14641. height: math.unit(6 / (250 / 35), "feet"),
  14642. name: "Foot",
  14643. image: {
  14644. source: "./media/characters/mesmyriza/foot.svg"
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Macro",
  14651. height: math.unit(457, "meters"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Megamacro",
  14656. height: math.unit(8, "megameters")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(250, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/saudade/front.svg",
  14669. extra: 1172 / 1139,
  14670. bottom: 0.035
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Micro",
  14677. height: math.unit(3, "inches")
  14678. },
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(6, "feet"),
  14682. default: true
  14683. },
  14684. {
  14685. name: "Macro",
  14686. height: math.unit(50, "feet")
  14687. },
  14688. {
  14689. name: "Megamacro",
  14690. height: math.unit(2800, "feet")
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(5 + 4 / 12, "feet"),
  14699. weight: math.unit(100, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/keireer/front.svg",
  14703. extra: 716 / 666,
  14704. bottom: 0.05
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(5 + 4 / 12, "feet"),
  14712. default: true
  14713. },
  14714. ]
  14715. ))
  14716. characterMakers.push(() => makeCharacter(
  14717. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14718. {
  14719. front: {
  14720. height: math.unit(6, "feet"),
  14721. weight: math.unit(90, "kg"),
  14722. name: "Front",
  14723. image: {
  14724. source: "./media/characters/mirja/front.svg",
  14725. extra: 1789 / 1683,
  14726. bottom: 0.05
  14727. }
  14728. },
  14729. frontDressed: {
  14730. height: math.unit(6, "feet"),
  14731. weight: math.unit(90, "lb"),
  14732. name: "Front (Dressed)",
  14733. image: {
  14734. source: "./media/characters/mirja/front-dressed.svg",
  14735. extra: 1789 / 1683,
  14736. bottom: 0.05
  14737. }
  14738. },
  14739. back: {
  14740. height: math.unit(6, "feet"),
  14741. weight: math.unit(90, "lb"),
  14742. name: "Back",
  14743. image: {
  14744. source: "./media/characters/mirja/back.svg",
  14745. extra: 953 / 917,
  14746. bottom: 0.017
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "\"Incognito\"",
  14753. height: math.unit(3, "meters")
  14754. },
  14755. {
  14756. name: "Strolling Size",
  14757. height: math.unit(15, "km")
  14758. },
  14759. {
  14760. name: "Larger Strolling Size",
  14761. height: math.unit(400, "km")
  14762. },
  14763. {
  14764. name: "Preferred Size",
  14765. height: math.unit(5000, "km")
  14766. },
  14767. {
  14768. name: "True Size",
  14769. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(15, "feet"),
  14779. weight: math.unit(880, "kg"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/nightraver/front.svg",
  14783. extra: 2444 / 2160,
  14784. bottom: 0.027
  14785. }
  14786. },
  14787. back: {
  14788. height: math.unit(15, "feet"),
  14789. weight: math.unit(880, "kg"),
  14790. name: "Back",
  14791. image: {
  14792. source: "./media/characters/nightraver/back.svg",
  14793. extra: 2309 / 2180,
  14794. bottom: 0.005
  14795. }
  14796. },
  14797. sole: {
  14798. height: math.unit(2.878, "feet"),
  14799. name: "Sole",
  14800. image: {
  14801. source: "./media/characters/nightraver/sole.svg"
  14802. }
  14803. },
  14804. foot: {
  14805. height: math.unit(2.285, "feet"),
  14806. name: "Foot",
  14807. image: {
  14808. source: "./media/characters/nightraver/foot.svg"
  14809. }
  14810. },
  14811. maw: {
  14812. height: math.unit(2.67, "feet"),
  14813. name: "Maw",
  14814. image: {
  14815. source: "./media/characters/nightraver/maw.svg"
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Micro",
  14822. height: math.unit(1, "cm")
  14823. },
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(15, "feet"),
  14827. default: true
  14828. },
  14829. {
  14830. name: "Macro",
  14831. height: math.unit(300, "feet")
  14832. },
  14833. {
  14834. name: "Megamacro",
  14835. height: math.unit(300, "miles")
  14836. },
  14837. {
  14838. name: "Gigamacro",
  14839. height: math.unit(10000, "miles")
  14840. },
  14841. ]
  14842. ))
  14843. characterMakers.push(() => makeCharacter(
  14844. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14845. {
  14846. side: {
  14847. height: math.unit(2, "inches"),
  14848. weight: math.unit(5, "grams"),
  14849. name: "Side",
  14850. image: {
  14851. source: "./media/characters/arc/side.svg"
  14852. }
  14853. },
  14854. },
  14855. [
  14856. {
  14857. name: "Micro",
  14858. height: math.unit(2, "inches"),
  14859. default: true
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14865. {
  14866. front: {
  14867. height: math.unit(1.1938, "meters"),
  14868. weight: math.unit(54, "kg"),
  14869. name: "Front",
  14870. image: {
  14871. source: "./media/characters/nebula-shahar/front.svg",
  14872. extra: 1642 / 1436,
  14873. bottom: 0.06
  14874. }
  14875. },
  14876. },
  14877. [
  14878. {
  14879. name: "Megamicro",
  14880. height: math.unit(0.3, "mm")
  14881. },
  14882. {
  14883. name: "Micro",
  14884. height: math.unit(3, "cm")
  14885. },
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(138, "cm"),
  14889. default: true
  14890. },
  14891. {
  14892. name: "Macro",
  14893. height: math.unit(30, "m")
  14894. },
  14895. ]
  14896. ))
  14897. characterMakers.push(() => makeCharacter(
  14898. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14899. {
  14900. front: {
  14901. height: math.unit(5.24, "feet"),
  14902. weight: math.unit(150, "lb"),
  14903. name: "Front",
  14904. image: {
  14905. source: "./media/characters/shayla/front.svg",
  14906. extra: 1512 / 1414,
  14907. bottom: 0.01
  14908. }
  14909. },
  14910. back: {
  14911. height: math.unit(5.24, "feet"),
  14912. weight: math.unit(150, "lb"),
  14913. name: "Back",
  14914. image: {
  14915. source: "./media/characters/shayla/back.svg",
  14916. extra: 1512 / 1414
  14917. }
  14918. },
  14919. hand: {
  14920. height: math.unit(0.7781496062992126, "feet"),
  14921. name: "Hand",
  14922. image: {
  14923. source: "./media/characters/shayla/hand.svg"
  14924. }
  14925. },
  14926. foot: {
  14927. height: math.unit(1.4206036745406823, "feet"),
  14928. name: "Foot",
  14929. image: {
  14930. source: "./media/characters/shayla/foot.svg"
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Micro",
  14937. height: math.unit(0.32, "feet")
  14938. },
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(5.24, "feet"),
  14942. default: true
  14943. },
  14944. {
  14945. name: "Macro",
  14946. height: math.unit(492.12, "feet")
  14947. },
  14948. {
  14949. name: "Megamacro",
  14950. height: math.unit(186.41, "miles")
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(2.2, "m"),
  14959. weight: math.unit(120, "kg"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/pia-jr/front.svg",
  14963. extra: 1000 / 970,
  14964. bottom: 0.035
  14965. }
  14966. },
  14967. hand: {
  14968. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14969. name: "Hand",
  14970. image: {
  14971. source: "./media/characters/pia-jr/hand.svg"
  14972. }
  14973. },
  14974. paw: {
  14975. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14976. name: "Paw",
  14977. image: {
  14978. source: "./media/characters/pia-jr/paw.svg"
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Micro",
  14985. height: math.unit(1.2, "cm")
  14986. },
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(2.2, "m"),
  14990. default: true
  14991. },
  14992. {
  14993. name: "Macro",
  14994. height: math.unit(180, "m")
  14995. },
  14996. {
  14997. name: "Megamacro",
  14998. height: math.unit(420, "km")
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(2, "m"),
  15007. weight: math.unit(115, "kg"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/pia-sr/front.svg",
  15011. extra: 760 / 730,
  15012. bottom: 0.015
  15013. }
  15014. },
  15015. back: {
  15016. height: math.unit(2, "m"),
  15017. weight: math.unit(115, "kg"),
  15018. name: "Back",
  15019. image: {
  15020. source: "./media/characters/pia-sr/back.svg",
  15021. extra: 760 / 730,
  15022. bottom: 0.01
  15023. }
  15024. },
  15025. hand: {
  15026. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15027. name: "Hand",
  15028. image: {
  15029. source: "./media/characters/pia-sr/hand.svg"
  15030. }
  15031. },
  15032. foot: {
  15033. height: math.unit(1.83, "feet"),
  15034. name: "Foot",
  15035. image: {
  15036. source: "./media/characters/pia-sr/foot.svg"
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Micro",
  15043. height: math.unit(88, "mm")
  15044. },
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(2, "m"),
  15048. default: true
  15049. },
  15050. {
  15051. name: "Macro",
  15052. height: math.unit(200, "m")
  15053. },
  15054. {
  15055. name: "Megamacro",
  15056. height: math.unit(420, "km")
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(8 + 2 / 12, "feet"),
  15065. weight: math.unit(300, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/kibibyte/front.svg",
  15069. extra: 2221 / 2098,
  15070. bottom: 0.04
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(8 + 2 / 12, "feet"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Socialable Macro",
  15082. height: math.unit(50, "feet")
  15083. },
  15084. {
  15085. name: "Macro",
  15086. height: math.unit(300, "feet")
  15087. },
  15088. {
  15089. name: "Megamacro",
  15090. height: math.unit(500, "miles")
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(6, "feet"),
  15099. weight: math.unit(150, "lb"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/felix/front.svg",
  15103. extra: 762 / 722,
  15104. bottom: 0.02
  15105. }
  15106. },
  15107. frontClothed: {
  15108. height: math.unit(6, "feet"),
  15109. weight: math.unit(150, "lb"),
  15110. name: "Front (Clothed)",
  15111. image: {
  15112. source: "./media/characters/felix/front-clothed.svg",
  15113. extra: 762 / 722,
  15114. bottom: 0.02
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(6 + 8 / 12, "feet"),
  15122. default: true
  15123. },
  15124. {
  15125. name: "Macro",
  15126. height: math.unit(2600, "feet")
  15127. },
  15128. {
  15129. name: "Megamacro",
  15130. height: math.unit(450, "miles")
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(6 + 1 / 12, "feet"),
  15139. weight: math.unit(250, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/tobo/front.svg",
  15143. extra: 608 / 586,
  15144. bottom: 0.023
  15145. }
  15146. },
  15147. back: {
  15148. height: math.unit(6 + 1 / 12, "feet"),
  15149. weight: math.unit(250, "lb"),
  15150. name: "Back",
  15151. image: {
  15152. source: "./media/characters/tobo/back.svg",
  15153. extra: 608 / 586
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Nano",
  15160. height: math.unit(2, "nm")
  15161. },
  15162. {
  15163. name: "Megamicro",
  15164. height: math.unit(0.1, "mm")
  15165. },
  15166. {
  15167. name: "Micro",
  15168. height: math.unit(1, "inch"),
  15169. default: true
  15170. },
  15171. {
  15172. name: "Human-sized",
  15173. height: math.unit(6 + 1 / 12, "feet")
  15174. },
  15175. {
  15176. name: "Macro",
  15177. height: math.unit(250, "feet")
  15178. },
  15179. {
  15180. name: "Megamacro",
  15181. height: math.unit(75, "miles")
  15182. },
  15183. {
  15184. name: "Texas-sized",
  15185. height: math.unit(750, "miles")
  15186. },
  15187. {
  15188. name: "Teramacro",
  15189. height: math.unit(50000, "miles")
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15195. {
  15196. front: {
  15197. height: math.unit(6, "feet"),
  15198. weight: math.unit(269, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/danny-kapowsky/front.svg",
  15202. extra: 766 / 736,
  15203. bottom: 0.044
  15204. }
  15205. },
  15206. back: {
  15207. height: math.unit(6, "feet"),
  15208. weight: math.unit(269, "lb"),
  15209. name: "Back",
  15210. image: {
  15211. source: "./media/characters/danny-kapowsky/back.svg",
  15212. extra: 797 / 760,
  15213. bottom: 0.025
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Macro",
  15220. height: math.unit(150, "feet"),
  15221. default: true
  15222. },
  15223. {
  15224. name: "Macro+",
  15225. height: math.unit(200, "feet")
  15226. },
  15227. {
  15228. name: "Macro++",
  15229. height: math.unit(300, "feet")
  15230. },
  15231. {
  15232. name: "Macro+++",
  15233. height: math.unit(400, "feet")
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15239. {
  15240. side: {
  15241. height: math.unit(6, "feet"),
  15242. weight: math.unit(170, "lb"),
  15243. name: "Side",
  15244. image: {
  15245. source: "./media/characters/finn/side.svg",
  15246. extra: 1953 / 1807,
  15247. bottom: 0.057
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Megamacro",
  15254. height: math.unit(14445, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(5 + 6 / 12, "feet"),
  15264. weight: math.unit(125, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/roy/front.svg",
  15268. extra: 1,
  15269. bottom: 0.11
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Micro",
  15276. height: math.unit(3, "inches"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Normal",
  15281. height: math.unit(5 + 6 / 12, "feet")
  15282. },
  15283. {
  15284. name: "Lesser Macro",
  15285. height: math.unit(60, "feet")
  15286. },
  15287. {
  15288. name: "Greater Macro",
  15289. height: math.unit(120, "feet")
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(6, "feet"),
  15298. weight: math.unit(100, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/aevsivs/front.svg",
  15302. extra: 1,
  15303. bottom: 0.03
  15304. }
  15305. },
  15306. back: {
  15307. height: math.unit(6, "feet"),
  15308. weight: math.unit(100, "lb"),
  15309. name: "Back",
  15310. image: {
  15311. source: "./media/characters/aevsivs/back.svg"
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Micro",
  15318. height: math.unit(2, "inches"),
  15319. default: true
  15320. },
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(5, "feet")
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(5 + 7 / 12, "feet"),
  15332. weight: math.unit(159, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/hildegard/front.svg",
  15336. extra: 289 / 269,
  15337. bottom: 7.63 / 297.8
  15338. }
  15339. },
  15340. back: {
  15341. height: math.unit(5 + 7 / 12, "feet"),
  15342. weight: math.unit(159, "lb"),
  15343. name: "Back",
  15344. image: {
  15345. source: "./media/characters/hildegard/back.svg",
  15346. extra: 280 / 260,
  15347. bottom: 2.3 / 282
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(5 + 7 / 12, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15361. {
  15362. bernard: {
  15363. height: math.unit(2 + 7 / 12, "feet"),
  15364. weight: math.unit(66, "lb"),
  15365. name: "Bernard",
  15366. rename: true,
  15367. image: {
  15368. source: "./media/characters/bernard-wilder/bernard.svg",
  15369. extra: 192 / 128,
  15370. bottom: 0.05
  15371. }
  15372. },
  15373. wilder: {
  15374. height: math.unit(5 + 8 / 12, "feet"),
  15375. weight: math.unit(143, "lb"),
  15376. name: "Wilder",
  15377. rename: true,
  15378. image: {
  15379. source: "./media/characters/bernard-wilder/wilder.svg",
  15380. extra: 361 / 312,
  15381. bottom: 0.02
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Normal",
  15388. height: math.unit(2 + 7 / 12, "feet"),
  15389. default: true
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15395. {
  15396. anthro: {
  15397. height: math.unit(6 + 1 / 12, "feet"),
  15398. weight: math.unit(155, "lb"),
  15399. name: "Anthro",
  15400. image: {
  15401. source: "./media/characters/hearth/anthro.svg",
  15402. extra: 1178/1136,
  15403. bottom: 28/1206
  15404. }
  15405. },
  15406. feral: {
  15407. height: math.unit(3.78, "feet"),
  15408. weight: math.unit(35, "kg"),
  15409. name: "Feral",
  15410. image: {
  15411. source: "./media/characters/hearth/feral.svg",
  15412. extra: 153 / 135,
  15413. bottom: 0.03
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Normal",
  15420. height: math.unit(6 + 1 / 12, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(182, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/ingrid/front.svg",
  15434. extra: 294 / 268,
  15435. bottom: 0.027
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Normal",
  15442. height: math.unit(6, "feet"),
  15443. default: true
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15449. {
  15450. eevee: {
  15451. height: math.unit(2 + 10 / 12, "feet"),
  15452. weight: math.unit(86, "lb"),
  15453. name: "Malgam",
  15454. image: {
  15455. source: "./media/characters/malgam/eevee.svg",
  15456. extra: 952/784,
  15457. bottom: 38/990
  15458. }
  15459. },
  15460. sylveon: {
  15461. height: math.unit(4, "feet"),
  15462. weight: math.unit(101, "lb"),
  15463. name: "Future Malgam",
  15464. rename: true,
  15465. image: {
  15466. source: "./media/characters/malgam/sylveon.svg",
  15467. extra: 371 / 325,
  15468. bottom: 0.015
  15469. }
  15470. },
  15471. gigantamax: {
  15472. height: math.unit(50, "feet"),
  15473. name: "Gigantamax Malgam",
  15474. rename: true,
  15475. image: {
  15476. source: "./media/characters/malgam/gigantamax.svg"
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(2 + 10 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(5 + 11 / 12, "feet"),
  15493. weight: math.unit(188, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/fleur/front.svg",
  15497. extra: 309 / 283,
  15498. bottom: 0.007
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Normal",
  15505. height: math.unit(5 + 11 / 12, "feet"),
  15506. default: true
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15512. {
  15513. front: {
  15514. height: math.unit(5 + 4 / 12, "feet"),
  15515. weight: math.unit(122, "lb"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/jude/front.svg",
  15519. extra: 288 / 273,
  15520. bottom: 0.03
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(5 + 4 / 12, "feet"),
  15528. default: true
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15534. {
  15535. front: {
  15536. height: math.unit(5 + 11 / 12, "feet"),
  15537. weight: math.unit(190, "lb"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/seara/front.svg",
  15541. extra: 1,
  15542. bottom: 0.05
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(5 + 11 / 12, "feet"),
  15550. default: true
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(16 + 5 / 12, "feet"),
  15559. weight: math.unit(524, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/caspian/front.svg",
  15563. extra: 1,
  15564. bottom: 0.04
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(16 + 5 / 12, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(5 + 7 / 12, "feet"),
  15581. weight: math.unit(170, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/mika/front.svg",
  15585. extra: 1,
  15586. bottom: 0.016
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(5 + 7 / 12, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(6 + 2 / 12, "feet"),
  15603. weight: math.unit(268, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/sol/front.svg",
  15607. extra: 247 / 231,
  15608. bottom: 0.05
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(6 + 2 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15622. {
  15623. buizel: {
  15624. height: math.unit(2 + 5 / 12, "feet"),
  15625. weight: math.unit(87, "lb"),
  15626. name: "Front",
  15627. image: {
  15628. source: "./media/characters/umiko/buizel.svg",
  15629. extra: 172 / 157,
  15630. bottom: 0.01
  15631. },
  15632. form: "buizel",
  15633. default: true
  15634. },
  15635. floatzel: {
  15636. height: math.unit(5 + 9 / 12, "feet"),
  15637. weight: math.unit(250, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/umiko/floatzel.svg",
  15641. extra: 1076/1006,
  15642. bottom: 15/1091
  15643. },
  15644. form: "floatzel",
  15645. default: true
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(2 + 5 / 12, "feet"),
  15652. form: "buizel",
  15653. default: true
  15654. },
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(5 + 9 / 12, "feet"),
  15658. form: "floatzel",
  15659. default: true
  15660. },
  15661. ],
  15662. {
  15663. "buizel": {
  15664. name: "Buizel"
  15665. },
  15666. "floatzel": {
  15667. name: "Floatzel",
  15668. default: true
  15669. }
  15670. }
  15671. ))
  15672. characterMakers.push(() => makeCharacter(
  15673. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15674. {
  15675. front: {
  15676. height: math.unit(6 + 2 / 12, "feet"),
  15677. weight: math.unit(146, "lb"),
  15678. name: "Front",
  15679. image: {
  15680. source: "./media/characters/iliac/front.svg",
  15681. extra: 389 / 365,
  15682. bottom: 0.035
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(6 + 2 / 12, "feet"),
  15690. default: true
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15696. {
  15697. front: {
  15698. height: math.unit(6, "feet"),
  15699. weight: math.unit(170, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/topaz/front.svg",
  15703. extra: 317 / 303,
  15704. bottom: 0.055
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(6, "feet"),
  15712. default: true
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(5 + 11 / 12, "feet"),
  15721. weight: math.unit(144, "lb"),
  15722. name: "Front",
  15723. image: {
  15724. source: "./media/characters/gabriel/front.svg",
  15725. extra: 285 / 262,
  15726. bottom: 0.004
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(5 + 11 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15740. {
  15741. side: {
  15742. height: math.unit(6 + 5 / 12, "feet"),
  15743. weight: math.unit(300, "lb"),
  15744. name: "Side",
  15745. image: {
  15746. source: "./media/characters/tempest-suicune/side.svg",
  15747. extra: 195 / 154,
  15748. bottom: 0.04
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(6 + 5 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(7 + 2 / 12, "feet"),
  15765. weight: math.unit(322, "lb"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/vulcan/front.svg",
  15769. extra: 154 / 147,
  15770. bottom: 0.04
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(7 + 2 / 12, "feet"),
  15778. default: true
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(5 + 10 / 12, "feet"),
  15787. weight: math.unit(264, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/gault/front.svg",
  15791. extra: 161 / 140,
  15792. bottom: 0.028
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(5 + 10 / 12, "feet"),
  15800. default: true
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15806. {
  15807. front: {
  15808. height: math.unit(6, "feet"),
  15809. weight: math.unit(150, "lb"),
  15810. name: "Front",
  15811. image: {
  15812. source: "./media/characters/shard/front.svg",
  15813. extra: 273 / 238,
  15814. bottom: 0.02
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(3 + 6 / 12, "feet"),
  15822. default: true
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(5 + 11 / 12, "feet"),
  15831. weight: math.unit(146, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/ashe/front.svg",
  15835. extra: 400 / 373,
  15836. bottom: 0.01
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(5 + 11 / 12, "feet"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(5 + 5 / 12, "feet"),
  15853. weight: math.unit(135, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/beatrix/front.svg",
  15857. extra: 392 / 379,
  15858. bottom: 0.01
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(6, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6 + 2/12, "feet"),
  15875. weight: math.unit(135, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/ignatius/front.svg",
  15879. extra: 1380/1259,
  15880. bottom: 27/1407
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(6 + 2/12, "feet"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15894. {
  15895. front: {
  15896. height: math.unit(6 + 2 / 12, "feet"),
  15897. weight: math.unit(138, "lb"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/mei-li/front.svg",
  15901. extra: 237 / 229,
  15902. bottom: 0.03
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(6 + 2 / 12, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(2 + 4 / 12, "feet"),
  15919. weight: math.unit(62, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/puru/front.svg",
  15923. extra: 206 / 149,
  15924. bottom: 0.06
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(2 + 4 / 12, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15938. {
  15939. anthro: {
  15940. height: math.unit(5 + 8/12, "feet"),
  15941. weight: math.unit(200, "lb"),
  15942. energyNeed: math.unit(2000, "kcal"),
  15943. name: "Anthro",
  15944. image: {
  15945. source: "./media/characters/kee/anthro.svg",
  15946. extra: 3251/3184,
  15947. bottom: 250/3501
  15948. }
  15949. },
  15950. taur: {
  15951. height: math.unit(11, "feet"),
  15952. weight: math.unit(500, "lb"),
  15953. energyNeed: math.unit(5000, "kcal"),
  15954. name: "Taur",
  15955. image: {
  15956. source: "./media/characters/kee/taur.svg",
  15957. extra: 1362/1320,
  15958. bottom: 83/1445
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(5 + 8/12, "feet"),
  15966. default: true
  15967. },
  15968. {
  15969. name: "Macro",
  15970. height: math.unit(35, "feet")
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15976. {
  15977. anthro: {
  15978. height: math.unit(7, "feet"),
  15979. weight: math.unit(190, "lb"),
  15980. name: "Anthro",
  15981. image: {
  15982. source: "./media/characters/cobalt-dracha/anthro.svg",
  15983. extra: 231 / 225,
  15984. bottom: 0.04
  15985. }
  15986. },
  15987. feral: {
  15988. height: math.unit(9 + 7 / 12, "feet"),
  15989. weight: math.unit(294, "lb"),
  15990. name: "Feral",
  15991. image: {
  15992. source: "./media/characters/cobalt-dracha/feral.svg",
  15993. extra: 692 / 633,
  15994. bottom: 0.05
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(7, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16008. {
  16009. fallen: {
  16010. height: math.unit(11 + 8 / 12, "feet"),
  16011. weight: math.unit(485, "lb"),
  16012. name: "Java (Fallen)",
  16013. rename: true,
  16014. image: {
  16015. source: "./media/characters/java/fallen.svg",
  16016. extra: 226 / 208,
  16017. bottom: 0.005
  16018. }
  16019. },
  16020. godkin: {
  16021. height: math.unit(10 + 6 / 12, "feet"),
  16022. weight: math.unit(328, "lb"),
  16023. name: "Java (Godkin)",
  16024. rename: true,
  16025. image: {
  16026. source: "./media/characters/java/godkin.svg",
  16027. extra: 1104/1068,
  16028. bottom: 36/1140
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(11 + 8 / 12, "feet"),
  16036. default: true
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(5 + 9 / 12, "feet"),
  16045. weight: math.unit(170, "lb"),
  16046. name: "Front",
  16047. image: {
  16048. source: "./media/characters/purna/front.svg",
  16049. extra: 239 / 229,
  16050. bottom: 0.01
  16051. }
  16052. },
  16053. },
  16054. [
  16055. {
  16056. name: "Normal",
  16057. height: math.unit(5 + 9 / 12, "feet"),
  16058. default: true
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16064. {
  16065. front: {
  16066. height: math.unit(5 + 9 / 12, "feet"),
  16067. weight: math.unit(142, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/kuva/front.svg",
  16071. extra: 281 / 271,
  16072. bottom: 0.006
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(5 + 9 / 12, "feet"),
  16080. default: true
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16086. {
  16087. anthro: {
  16088. height: math.unit(9 + 2 / 12, "feet"),
  16089. weight: math.unit(270, "lb"),
  16090. name: "Anthro",
  16091. image: {
  16092. source: "./media/characters/embra/anthro.svg",
  16093. extra: 200 / 187,
  16094. bottom: 0.02
  16095. }
  16096. },
  16097. feral: {
  16098. height: math.unit(18 + 8 / 12, "feet"),
  16099. weight: math.unit(576, "lb"),
  16100. name: "Feral",
  16101. image: {
  16102. source: "./media/characters/embra/feral.svg",
  16103. extra: 152 / 137,
  16104. bottom: 0.037
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(9 + 2 / 12, "feet"),
  16112. default: true
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16118. {
  16119. anthro: {
  16120. height: math.unit(10 + 9 / 12, "feet"),
  16121. weight: math.unit(224, "lb"),
  16122. name: "Anthro",
  16123. image: {
  16124. source: "./media/characters/grottos/anthro.svg",
  16125. extra: 350 / 332,
  16126. bottom: 0.045
  16127. }
  16128. },
  16129. feral: {
  16130. height: math.unit(20 + 7 / 12, "feet"),
  16131. weight: math.unit(629, "lb"),
  16132. name: "Feral",
  16133. image: {
  16134. source: "./media/characters/grottos/feral.svg",
  16135. extra: 207 / 190,
  16136. bottom: 0.05
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(10 + 9 / 12, "feet"),
  16144. default: true
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16150. {
  16151. anthro: {
  16152. height: math.unit(9 + 6 / 12, "feet"),
  16153. weight: math.unit(298, "lb"),
  16154. name: "Anthro",
  16155. image: {
  16156. source: "./media/characters/frifna/anthro.svg",
  16157. extra: 282 / 269,
  16158. bottom: 0.015
  16159. }
  16160. },
  16161. feral: {
  16162. height: math.unit(16 + 2 / 12, "feet"),
  16163. weight: math.unit(624, "lb"),
  16164. name: "Feral",
  16165. image: {
  16166. source: "./media/characters/frifna/feral.svg"
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Normal",
  16173. height: math.unit(9 + 6 / 12, "feet"),
  16174. default: true
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6 + 2 / 12, "feet"),
  16183. weight: math.unit(168, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/elise/front.svg",
  16187. extra: 276 / 271
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(6 + 2 / 12, "feet"),
  16195. default: true
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16201. {
  16202. front: {
  16203. height: math.unit(5 + 10 / 12, "feet"),
  16204. weight: math.unit(210, "lb"),
  16205. name: "Front",
  16206. image: {
  16207. source: "./media/characters/glade/front.svg",
  16208. extra: 258 / 247,
  16209. bottom: 0.008
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(5 + 10 / 12, "feet"),
  16217. default: true
  16218. },
  16219. ]
  16220. ))
  16221. characterMakers.push(() => makeCharacter(
  16222. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16223. {
  16224. front: {
  16225. height: math.unit(5 + 10 / 12, "feet"),
  16226. weight: math.unit(129, "lb"),
  16227. name: "Front",
  16228. image: {
  16229. source: "./media/characters/rina/front.svg",
  16230. extra: 266 / 255,
  16231. bottom: 0.005
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(5 + 10 / 12, "feet"),
  16239. default: true
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16245. {
  16246. front: {
  16247. height: math.unit(6 + 1 / 12, "feet"),
  16248. weight: math.unit(192, "lb"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/veronica/front.svg",
  16252. extra: 319 / 309,
  16253. bottom: 0.005
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(6 + 1 / 12, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(9 + 3 / 12, "feet"),
  16270. weight: math.unit(1100, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/braxton/front.svg",
  16274. extra: 1057 / 984,
  16275. bottom: 0.05
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(9 + 3 / 12, "feet")
  16283. },
  16284. {
  16285. name: "Giant",
  16286. height: math.unit(300, "feet"),
  16287. default: true
  16288. },
  16289. {
  16290. name: "Macro",
  16291. height: math.unit(700, "feet")
  16292. },
  16293. {
  16294. name: "Megamacro",
  16295. height: math.unit(6000, "feet")
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(6 + 7 / 12, "feet"),
  16304. weight: math.unit(150, "lb"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/blue-feyonics/front.svg",
  16308. extra: 1403 / 1306,
  16309. bottom: 0.047
  16310. }
  16311. },
  16312. },
  16313. [
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(6 + 7 / 12, "feet"),
  16317. default: true
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16323. {
  16324. front: {
  16325. height: math.unit(1.8, "meters"),
  16326. weight: math.unit(60, "kg"),
  16327. name: "Front",
  16328. image: {
  16329. source: "./media/characters/maxwell/front.svg",
  16330. extra: 2060 / 1873
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Micro",
  16337. height: math.unit(1, "mm")
  16338. },
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(1.8, "meter"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Macro",
  16346. height: math.unit(30, "meters")
  16347. },
  16348. {
  16349. name: "Megamacro",
  16350. height: math.unit(10, "km")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(6, "feet"),
  16359. weight: math.unit(150, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/jack/front.svg",
  16363. extra: 1754 / 1640,
  16364. bottom: 0.01
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(80000, "feet"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Max size",
  16376. height: math.unit(10, "lightyears")
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16382. {
  16383. urban: {
  16384. height: math.unit(5, "feet"),
  16385. weight: math.unit(240, "lb"),
  16386. name: "Urban",
  16387. image: {
  16388. source: "./media/characters/cafat/urban.svg",
  16389. extra: 1223/1126,
  16390. bottom: 205/1428
  16391. }
  16392. },
  16393. summer: {
  16394. height: math.unit(5, "feet"),
  16395. weight: math.unit(240, "lb"),
  16396. name: "Summer",
  16397. image: {
  16398. source: "./media/characters/cafat/summer.svg",
  16399. extra: 1223/1126,
  16400. bottom: 205/1428
  16401. }
  16402. },
  16403. winter: {
  16404. height: math.unit(5, "feet"),
  16405. weight: math.unit(240, "lb"),
  16406. name: "Winter",
  16407. image: {
  16408. source: "./media/characters/cafat/winter.svg",
  16409. extra: 1223/1126,
  16410. bottom: 205/1428
  16411. }
  16412. },
  16413. lingerie: {
  16414. height: math.unit(5, "feet"),
  16415. weight: math.unit(240, "lb"),
  16416. name: "Lingerie",
  16417. image: {
  16418. source: "./media/characters/cafat/lingerie.svg",
  16419. extra: 1223/1126,
  16420. bottom: 205/1428
  16421. }
  16422. },
  16423. upright: {
  16424. height: math.unit(6.3, "feet"),
  16425. weight: math.unit(240, "lb"),
  16426. name: "Upright",
  16427. image: {
  16428. source: "./media/characters/cafat/upright.svg",
  16429. bottom: 0.01
  16430. }
  16431. },
  16432. uprightFull: {
  16433. height: math.unit(6.3, "feet"),
  16434. weight: math.unit(240, "lb"),
  16435. name: "Upright (Full)",
  16436. image: {
  16437. source: "./media/characters/cafat/upright-full.svg",
  16438. bottom: 0.01
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Small",
  16445. height: math.unit(5, "feet"),
  16446. default: true
  16447. },
  16448. {
  16449. name: "Large",
  16450. height: math.unit(13, "feet")
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16456. {
  16457. front: {
  16458. height: math.unit(6, "feet"),
  16459. weight: math.unit(150, "lb"),
  16460. name: "Front",
  16461. image: {
  16462. source: "./media/characters/verin-raharra/front.svg",
  16463. extra: 5019 / 4835,
  16464. bottom: 0.023
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(7 + 5 / 12, "feet"),
  16472. default: true
  16473. },
  16474. {
  16475. name: "Upsized",
  16476. height: math.unit(20, "feet")
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(7, "feet"),
  16485. weight: math.unit(230, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/nakata/front.svg",
  16489. extra: 1.005,
  16490. bottom: 0.01
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Normal",
  16497. height: math.unit(7, "feet"),
  16498. default: true
  16499. },
  16500. {
  16501. name: "Big",
  16502. height: math.unit(14, "feet")
  16503. },
  16504. {
  16505. name: "Macro",
  16506. height: math.unit(400, "feet")
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(4.91, "feet"),
  16515. weight: math.unit(100, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/lily/front.svg",
  16519. extra: 1585 / 1415,
  16520. bottom: 0.02
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(4.91, "feet"),
  16528. default: true
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16534. {
  16535. laying: {
  16536. height: math.unit(4 + 4 / 12, "feet"),
  16537. weight: math.unit(600, "lb"),
  16538. name: "Laying",
  16539. image: {
  16540. source: "./media/characters/sheila/laying.svg",
  16541. extra: 1333 / 1265,
  16542. bottom: 0.16
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(4 + 4 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(6, "feet"),
  16559. weight: math.unit(190, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/sax/front.svg",
  16563. extra: 1187 / 973,
  16564. bottom: 0.042
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Micro",
  16571. height: math.unit(4, "inches"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(6, "feet"),
  16581. weight: math.unit(150, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/pandora/front.svg",
  16585. extra: 2720 / 2556,
  16586. bottom: 0.015
  16587. }
  16588. },
  16589. back: {
  16590. height: math.unit(6, "feet"),
  16591. weight: math.unit(150, "lb"),
  16592. name: "Back",
  16593. image: {
  16594. source: "./media/characters/pandora/back.svg",
  16595. extra: 2720 / 2556,
  16596. bottom: 0.01
  16597. }
  16598. },
  16599. beans: {
  16600. height: math.unit(6 / 8, "feet"),
  16601. name: "Beans",
  16602. image: {
  16603. source: "./media/characters/pandora/beans.svg"
  16604. }
  16605. },
  16606. collar: {
  16607. height: math.unit(0.31, "feet"),
  16608. name: "Collar",
  16609. image: {
  16610. source: "./media/characters/pandora/collar.svg"
  16611. }
  16612. },
  16613. skirt: {
  16614. height: math.unit(6, "feet"),
  16615. weight: math.unit(150, "lb"),
  16616. name: "Skirt",
  16617. image: {
  16618. source: "./media/characters/pandora/skirt.svg",
  16619. extra: 1622 / 1525,
  16620. bottom: 0.015
  16621. }
  16622. },
  16623. hoodie: {
  16624. height: math.unit(6, "feet"),
  16625. weight: math.unit(150, "lb"),
  16626. name: "Hoodie",
  16627. image: {
  16628. source: "./media/characters/pandora/hoodie.svg",
  16629. extra: 1622 / 1525,
  16630. bottom: 0.015
  16631. }
  16632. },
  16633. casual: {
  16634. height: math.unit(6, "feet"),
  16635. weight: math.unit(150, "lb"),
  16636. name: "Casual",
  16637. image: {
  16638. source: "./media/characters/pandora/casual.svg",
  16639. extra: 1622 / 1525,
  16640. bottom: 0.015
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(6, "feet")
  16648. },
  16649. {
  16650. name: "Big Steppy",
  16651. height: math.unit(1, "km"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "Galactic Steppy",
  16656. height: math.unit(2, "gigameters")
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16662. {
  16663. side: {
  16664. height: math.unit(10, "feet"),
  16665. weight: math.unit(800, "kg"),
  16666. name: "Side",
  16667. image: {
  16668. source: "./media/characters/venio-darcony/side.svg",
  16669. extra: 1373 / 1003,
  16670. bottom: 0.037
  16671. }
  16672. },
  16673. front: {
  16674. height: math.unit(19, "feet"),
  16675. weight: math.unit(800, "kg"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/venio-darcony/front.svg"
  16679. }
  16680. },
  16681. back: {
  16682. height: math.unit(19, "feet"),
  16683. weight: math.unit(800, "kg"),
  16684. name: "Back",
  16685. image: {
  16686. source: "./media/characters/venio-darcony/back.svg"
  16687. }
  16688. },
  16689. sideNsfw: {
  16690. height: math.unit(10, "feet"),
  16691. weight: math.unit(800, "kg"),
  16692. name: "Side (NSFW)",
  16693. image: {
  16694. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16695. extra: 1373 / 1003,
  16696. bottom: 0.037
  16697. }
  16698. },
  16699. frontNsfw: {
  16700. height: math.unit(19, "feet"),
  16701. weight: math.unit(800, "kg"),
  16702. name: "Front (NSFW)",
  16703. image: {
  16704. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16705. }
  16706. },
  16707. backNsfw: {
  16708. height: math.unit(19, "feet"),
  16709. weight: math.unit(800, "kg"),
  16710. name: "Back (NSFW)",
  16711. image: {
  16712. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16713. }
  16714. },
  16715. sideArmored: {
  16716. height: math.unit(10, "feet"),
  16717. weight: math.unit(800, "kg"),
  16718. name: "Side (Armored)",
  16719. image: {
  16720. source: "./media/characters/venio-darcony/side-armored.svg",
  16721. extra: 1373 / 1003,
  16722. bottom: 0.037
  16723. }
  16724. },
  16725. frontArmored: {
  16726. height: math.unit(19, "feet"),
  16727. weight: math.unit(900, "kg"),
  16728. name: "Front (Armored)",
  16729. image: {
  16730. source: "./media/characters/venio-darcony/front-armored.svg"
  16731. }
  16732. },
  16733. backArmored: {
  16734. height: math.unit(19, "feet"),
  16735. weight: math.unit(900, "kg"),
  16736. name: "Back (Armored)",
  16737. image: {
  16738. source: "./media/characters/venio-darcony/back-armored.svg"
  16739. }
  16740. },
  16741. sword: {
  16742. height: math.unit(10, "feet"),
  16743. weight: math.unit(50, "lb"),
  16744. name: "Sword",
  16745. image: {
  16746. source: "./media/characters/venio-darcony/sword.svg"
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Normal",
  16753. height: math.unit(10, "feet")
  16754. },
  16755. {
  16756. name: "Macro",
  16757. height: math.unit(130, "feet"),
  16758. default: true
  16759. },
  16760. {
  16761. name: "Macro+",
  16762. height: math.unit(240, "feet")
  16763. },
  16764. ]
  16765. ))
  16766. characterMakers.push(() => makeCharacter(
  16767. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16768. {
  16769. front: {
  16770. height: math.unit(6, "feet"),
  16771. weight: math.unit(150, "lb"),
  16772. name: "Front",
  16773. image: {
  16774. source: "./media/characters/veski/front.svg",
  16775. extra: 1299 / 1225,
  16776. bottom: 0.04
  16777. }
  16778. },
  16779. back: {
  16780. height: math.unit(6, "feet"),
  16781. weight: math.unit(150, "lb"),
  16782. name: "Back",
  16783. image: {
  16784. source: "./media/characters/veski/back.svg",
  16785. extra: 1299 / 1225,
  16786. bottom: 0.008
  16787. }
  16788. },
  16789. maw: {
  16790. height: math.unit(1.5 * 1.21, "feet"),
  16791. name: "Maw",
  16792. image: {
  16793. source: "./media/characters/veski/maw.svg"
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Macro",
  16800. height: math.unit(2, "km"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(5 + 7 / 12, "feet"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/isabelle/front.svg",
  16813. extra: 2130 / 1976,
  16814. bottom: 0.05
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Supermicro",
  16821. height: math.unit(10, "micrometers")
  16822. },
  16823. {
  16824. name: "Micro",
  16825. height: math.unit(1, "inch")
  16826. },
  16827. {
  16828. name: "Tiny",
  16829. height: math.unit(5, "inches")
  16830. },
  16831. {
  16832. name: "Standard",
  16833. height: math.unit(5 + 7 / 12, "inches")
  16834. },
  16835. {
  16836. name: "Macro",
  16837. height: math.unit(80, "meters"),
  16838. default: true
  16839. },
  16840. {
  16841. name: "Megamacro",
  16842. height: math.unit(250, "meters")
  16843. },
  16844. {
  16845. name: "Gigamacro",
  16846. height: math.unit(5, "km")
  16847. },
  16848. {
  16849. name: "Cosmic",
  16850. height: math.unit(2.5e6, "miles")
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16856. {
  16857. front: {
  16858. height: math.unit(6, "feet"),
  16859. weight: math.unit(150, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/hanzo/front.svg",
  16863. extra: 374 / 344,
  16864. bottom: 0.02
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(8, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(7, "feet"),
  16881. weight: math.unit(130, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/anna/front.svg",
  16885. extra: 169 / 145,
  16886. bottom: 0.06
  16887. }
  16888. },
  16889. full: {
  16890. height: math.unit(4.96, "feet"),
  16891. weight: math.unit(220, "lb"),
  16892. name: "Full",
  16893. image: {
  16894. source: "./media/characters/anna/full.svg",
  16895. extra: 138 / 114,
  16896. bottom: 0.15
  16897. }
  16898. },
  16899. tongue: {
  16900. height: math.unit(2.53, "feet"),
  16901. name: "Tongue",
  16902. image: {
  16903. source: "./media/characters/anna/tongue.svg"
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(7, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(7, "feet"),
  16920. weight: math.unit(150, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/ian-corvid/front.svg",
  16924. extra: 150 / 142,
  16925. bottom: 0.02
  16926. }
  16927. },
  16928. back: {
  16929. height: math.unit(7, "feet"),
  16930. weight: math.unit(150, "lb"),
  16931. name: "Back",
  16932. image: {
  16933. source: "./media/characters/ian-corvid/back.svg",
  16934. extra: 150 / 143,
  16935. bottom: 0.01
  16936. }
  16937. },
  16938. stomping: {
  16939. height: math.unit(7, "feet"),
  16940. weight: math.unit(150, "lb"),
  16941. name: "Stomping",
  16942. image: {
  16943. source: "./media/characters/ian-corvid/stomping.svg",
  16944. extra: 76 / 72
  16945. }
  16946. },
  16947. sitting: {
  16948. height: math.unit(7 / 1.8, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Sitting",
  16951. image: {
  16952. source: "./media/characters/ian-corvid/sitting.svg",
  16953. extra: 1400 / 1269,
  16954. bottom: 0.15
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Tiny Microw",
  16961. height: math.unit(1, "inch")
  16962. },
  16963. {
  16964. name: "Microw",
  16965. height: math.unit(6, "inches")
  16966. },
  16967. {
  16968. name: "Crow",
  16969. height: math.unit(7 + 1 / 12, "feet"),
  16970. default: true
  16971. },
  16972. {
  16973. name: "Macrow",
  16974. height: math.unit(176, "feet")
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(5 + 7 / 12, "feet"),
  16983. weight: math.unit(147, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/natalie-kellon/front.svg",
  16987. extra: 1214 / 1141,
  16988. bottom: 0.02
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Micro",
  16995. height: math.unit(1 / 16, "inch")
  16996. },
  16997. {
  16998. name: "Tiny",
  16999. height: math.unit(4, "inches")
  17000. },
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(5 + 7 / 12, "feet"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Amazon",
  17008. height: math.unit(12, "feet")
  17009. },
  17010. {
  17011. name: "Giantess",
  17012. height: math.unit(160, "meters")
  17013. },
  17014. {
  17015. name: "Titaness",
  17016. height: math.unit(800, "meters")
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(6, "feet"),
  17025. weight: math.unit(150, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/alluria/front.svg",
  17029. extra: 806 / 738,
  17030. bottom: 0.01
  17031. }
  17032. },
  17033. side: {
  17034. height: math.unit(6, "feet"),
  17035. weight: math.unit(150, "lb"),
  17036. name: "Side",
  17037. image: {
  17038. source: "./media/characters/alluria/side.svg",
  17039. extra: 800 / 750,
  17040. }
  17041. },
  17042. back: {
  17043. height: math.unit(6, "feet"),
  17044. weight: math.unit(150, "lb"),
  17045. name: "Back",
  17046. image: {
  17047. source: "./media/characters/alluria/back.svg",
  17048. extra: 806 / 738,
  17049. }
  17050. },
  17051. frontMaid: {
  17052. height: math.unit(6, "feet"),
  17053. weight: math.unit(150, "lb"),
  17054. name: "Front (Maid)",
  17055. image: {
  17056. source: "./media/characters/alluria/front-maid.svg",
  17057. extra: 806 / 738,
  17058. bottom: 0.01
  17059. }
  17060. },
  17061. sideMaid: {
  17062. height: math.unit(6, "feet"),
  17063. weight: math.unit(150, "lb"),
  17064. name: "Side (Maid)",
  17065. image: {
  17066. source: "./media/characters/alluria/side-maid.svg",
  17067. extra: 800 / 750,
  17068. bottom: 0.005
  17069. }
  17070. },
  17071. backMaid: {
  17072. height: math.unit(6, "feet"),
  17073. weight: math.unit(150, "lb"),
  17074. name: "Back (Maid)",
  17075. image: {
  17076. source: "./media/characters/alluria/back-maid.svg",
  17077. extra: 806 / 738,
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Micro",
  17084. height: math.unit(6, "inches"),
  17085. default: true
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17091. {
  17092. front: {
  17093. height: math.unit(6, "feet"),
  17094. weight: math.unit(150, "lb"),
  17095. name: "Front",
  17096. image: {
  17097. source: "./media/characters/kyle/front.svg",
  17098. extra: 1069 / 962,
  17099. bottom: 77.228 / 1727.45
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Macro",
  17106. height: math.unit(150, "feet"),
  17107. default: true
  17108. },
  17109. ]
  17110. ))
  17111. characterMakers.push(() => makeCharacter(
  17112. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17113. {
  17114. front: {
  17115. height: math.unit(6, "feet"),
  17116. weight: math.unit(300, "lb"),
  17117. name: "Front",
  17118. image: {
  17119. source: "./media/characters/duncan/front.svg",
  17120. extra: 1650 / 1482,
  17121. bottom: 0.05
  17122. }
  17123. },
  17124. },
  17125. [
  17126. {
  17127. name: "Macro",
  17128. height: math.unit(100, "feet"),
  17129. default: true
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17135. {
  17136. front: {
  17137. height: math.unit(5 + 4 / 12, "feet"),
  17138. weight: math.unit(220, "lb"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/memory/front.svg",
  17142. extra: 3641 / 3545,
  17143. bottom: 0.03
  17144. }
  17145. },
  17146. back: {
  17147. height: math.unit(5 + 4 / 12, "feet"),
  17148. weight: math.unit(220, "lb"),
  17149. name: "Back",
  17150. image: {
  17151. source: "./media/characters/memory/back.svg",
  17152. extra: 3641 / 3545,
  17153. bottom: 0.025
  17154. }
  17155. },
  17156. frontSkirt: {
  17157. height: math.unit(5 + 4 / 12, "feet"),
  17158. weight: math.unit(220, "lb"),
  17159. name: "Front (Skirt)",
  17160. image: {
  17161. source: "./media/characters/memory/front-skirt.svg",
  17162. extra: 3641 / 3545,
  17163. bottom: 0.03
  17164. }
  17165. },
  17166. frontDress: {
  17167. height: math.unit(5 + 4 / 12, "feet"),
  17168. weight: math.unit(220, "lb"),
  17169. name: "Front (Dress)",
  17170. image: {
  17171. source: "./media/characters/memory/front-dress.svg",
  17172. extra: 3641 / 3545,
  17173. bottom: 0.03
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Micro",
  17180. height: math.unit(6, "inches"),
  17181. default: true
  17182. },
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(5 + 4 / 12, "feet")
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(4 + 11 / 12, "feet"),
  17194. weight: math.unit(100, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/luno/front.svg",
  17198. extra: 1535 / 1487,
  17199. bottom: 0.03
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Micro",
  17206. height: math.unit(3, "inches")
  17207. },
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(4 + 11 / 12, "feet"),
  17211. default: true
  17212. },
  17213. {
  17214. name: "Macro",
  17215. height: math.unit(300, "feet")
  17216. },
  17217. {
  17218. name: "Megamacro",
  17219. height: math.unit(700, "miles")
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(6 + 2 / 12, "feet"),
  17228. weight: math.unit(170, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/jamesy/front.svg",
  17232. extra: 440 / 382,
  17233. bottom: 0.005
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Micro",
  17240. height: math.unit(3, "inches")
  17241. },
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(6 + 2 / 12, "feet"),
  17245. default: true
  17246. },
  17247. {
  17248. name: "Macro",
  17249. height: math.unit(300, "feet")
  17250. },
  17251. {
  17252. name: "Megamacro",
  17253. height: math.unit(700, "miles")
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(6, "feet"),
  17262. weight: math.unit(160, "lb"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/mark/front.svg",
  17266. extra: 3300 / 3100,
  17267. bottom: 136.42 / 3440.47
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Macro",
  17274. height: math.unit(120, "meters")
  17275. },
  17276. {
  17277. name: "Bigger Macro",
  17278. height: math.unit(350, "meters")
  17279. },
  17280. {
  17281. name: "Megamacro",
  17282. height: math.unit(8, "km"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Continental",
  17287. height: math.unit(4550, "km")
  17288. },
  17289. {
  17290. name: "Planetary",
  17291. height: math.unit(65000, "km")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6, "feet"),
  17300. weight: math.unit(400, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/mac/front.svg",
  17304. extra: 1048 / 987.7,
  17305. bottom: 60 / 1107.6,
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Macro",
  17312. height: math.unit(500, "feet"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17319. {
  17320. front: {
  17321. height: math.unit(5 + 2 / 12, "feet"),
  17322. weight: math.unit(190, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/bari/front.svg",
  17326. extra: 3156 / 2880,
  17327. bottom: 0.03
  17328. }
  17329. },
  17330. back: {
  17331. height: math.unit(5 + 2 / 12, "feet"),
  17332. weight: math.unit(190, "lb"),
  17333. name: "Back",
  17334. image: {
  17335. source: "./media/characters/bari/back.svg",
  17336. extra: 3260 / 2834,
  17337. bottom: 0.025
  17338. }
  17339. },
  17340. frontPlush: {
  17341. height: math.unit(5 + 2 / 12, "feet"),
  17342. weight: math.unit(190, "lb"),
  17343. name: "Front (Plush)",
  17344. image: {
  17345. source: "./media/characters/bari/front-plush.svg",
  17346. extra: 1112 / 1061,
  17347. bottom: 0.002
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Micro",
  17354. height: math.unit(3, "inches")
  17355. },
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(5 + 2 / 12, "feet"),
  17359. default: true
  17360. },
  17361. {
  17362. name: "Macro",
  17363. height: math.unit(20, "feet")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(6 + 1 / 12, "feet"),
  17372. weight: math.unit(275, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/hunter-misha-raven/front.svg"
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Mortal",
  17382. height: math.unit(6 + 1 / 12, "feet")
  17383. },
  17384. {
  17385. name: "Divine",
  17386. height: math.unit(1.12134e34, "parsecs"),
  17387. default: true
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(6 + 3 / 12, "feet"),
  17396. weight: math.unit(220, "lb"),
  17397. name: "Front",
  17398. image: {
  17399. source: "./media/characters/max-calore/front.svg",
  17400. extra: 1700 / 1648,
  17401. bottom: 0.01
  17402. }
  17403. },
  17404. back: {
  17405. height: math.unit(6 + 3 / 12, "feet"),
  17406. weight: math.unit(220, "lb"),
  17407. name: "Back",
  17408. image: {
  17409. source: "./media/characters/max-calore/back.svg",
  17410. extra: 1700 / 1648,
  17411. bottom: 0.01
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(6 + 3 / 12, "feet"),
  17419. default: true
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17425. {
  17426. side: {
  17427. height: math.unit(2 + 8 / 12, "feet"),
  17428. weight: math.unit(99, "lb"),
  17429. name: "Side",
  17430. image: {
  17431. source: "./media/characters/aspen/side.svg",
  17432. extra: 152 / 138,
  17433. bottom: 0.032
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(2 + 8 / 12, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17447. {
  17448. side: {
  17449. height: math.unit(3 + 2 / 12, "feet"),
  17450. weight: math.unit(224, "lb"),
  17451. name: "Side",
  17452. image: {
  17453. source: "./media/characters/sheila-feral-wolf/side.svg",
  17454. extra: 179 / 166,
  17455. bottom: 0.03
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(3 + 2 / 12, "feet"),
  17463. default: true
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17469. {
  17470. side: {
  17471. height: math.unit(1 + 9 / 12, "feet"),
  17472. weight: math.unit(38, "lb"),
  17473. name: "Side",
  17474. image: {
  17475. source: "./media/characters/michelle/side.svg",
  17476. extra: 147 / 136.7,
  17477. bottom: 0.03
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(1 + 9 / 12, "feet"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17491. {
  17492. front: {
  17493. height: math.unit(1.54, "feet"),
  17494. weight: math.unit(50, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/nino/front.svg"
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(1.54, "feet"),
  17505. default: true
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17511. {
  17512. front: {
  17513. height: math.unit(1.49, "feet"),
  17514. weight: math.unit(45, "lb"),
  17515. name: "Front",
  17516. image: {
  17517. source: "./media/characters/viola/front.svg"
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(1.49, "feet"),
  17525. default: true
  17526. },
  17527. ]
  17528. ))
  17529. characterMakers.push(() => makeCharacter(
  17530. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17531. {
  17532. front: {
  17533. height: math.unit(6 + 5 / 12, "feet"),
  17534. weight: math.unit(580, "lb"),
  17535. name: "Front",
  17536. image: {
  17537. source: "./media/characters/atlas/front.svg",
  17538. extra: 298.5 / 290,
  17539. bottom: 0.015
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(6 + 5 / 12, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17553. {
  17554. side: {
  17555. height: math.unit(15.6, "inches"),
  17556. weight: math.unit(10, "lb"),
  17557. name: "Side",
  17558. image: {
  17559. source: "./media/characters/davy/side.svg",
  17560. extra: 200 / 170,
  17561. bottom: 0.01
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(15.6, "inches"),
  17569. default: true
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17575. {
  17576. side: {
  17577. height: math.unit(4 + 8 / 12, "feet"),
  17578. weight: math.unit(166, "lb"),
  17579. name: "Side",
  17580. image: {
  17581. source: "./media/characters/fiona/side.svg",
  17582. extra: 232 / 220,
  17583. bottom: 0.03
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(4 + 8 / 12, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17597. {
  17598. front: {
  17599. height: math.unit(26, "inches"),
  17600. weight: math.unit(35, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/lyla/front.svg",
  17604. bottom: 0.1
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(3, "feet"),
  17612. default: true
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17618. {
  17619. side: {
  17620. height: math.unit(1.8, "feet"),
  17621. weight: math.unit(44, "lb"),
  17622. name: "Side",
  17623. image: {
  17624. source: "./media/characters/perseus/side.svg",
  17625. bottom: 0.21
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(1.8, "feet"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17639. {
  17640. side: {
  17641. height: math.unit(4 + 2 / 12, "feet"),
  17642. weight: math.unit(20, "lb"),
  17643. name: "Side",
  17644. image: {
  17645. source: "./media/characters/remus/side.svg"
  17646. }
  17647. },
  17648. },
  17649. [
  17650. {
  17651. name: "Normal",
  17652. height: math.unit(4 + 2 / 12, "feet"),
  17653. default: true
  17654. },
  17655. ]
  17656. ))
  17657. characterMakers.push(() => makeCharacter(
  17658. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17659. {
  17660. front: {
  17661. height: math.unit(4 + 11 / 12, "feet"),
  17662. weight: math.unit(114, "lb"),
  17663. name: "Front",
  17664. image: {
  17665. source: "./media/characters/raf/front.svg",
  17666. extra: 1504/1339,
  17667. bottom: 26/1530
  17668. }
  17669. },
  17670. side: {
  17671. height: math.unit(4 + 11 / 12, "feet"),
  17672. weight: math.unit(114, "lb"),
  17673. name: "Side",
  17674. image: {
  17675. source: "./media/characters/raf/side.svg",
  17676. extra: 1466/1316,
  17677. bottom: 29/1495
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Micro",
  17684. height: math.unit(2, "inches")
  17685. },
  17686. {
  17687. name: "Normal",
  17688. height: math.unit(4 + 11 / 12, "feet"),
  17689. default: true
  17690. },
  17691. {
  17692. name: "Macro",
  17693. height: math.unit(70, "feet")
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(1.5, "meters"),
  17702. weight: math.unit(68, "kg"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/liam-einarr/front.svg",
  17706. extra: 2822 / 2666
  17707. }
  17708. },
  17709. back: {
  17710. height: math.unit(1.5, "meters"),
  17711. weight: math.unit(68, "kg"),
  17712. name: "Back",
  17713. image: {
  17714. source: "./media/characters/liam-einarr/back.svg",
  17715. extra: 2822 / 2666,
  17716. bottom: 0.015
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(1.5, "meters"),
  17724. default: true
  17725. },
  17726. {
  17727. name: "Macro",
  17728. height: math.unit(150, "meters")
  17729. },
  17730. {
  17731. name: "Megamacro",
  17732. height: math.unit(35, "km")
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(6, "feet"),
  17741. weight: math.unit(75, "kg"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/linda/front.svg",
  17745. extra: 930 / 874,
  17746. bottom: 0.004
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(6, "feet"),
  17754. default: true
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17760. {
  17761. front: {
  17762. height: math.unit(6 + 8 / 12, "feet"),
  17763. weight: math.unit(220, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/caylex/front.svg",
  17767. extra: 821 / 772,
  17768. bottom: 0.07
  17769. }
  17770. },
  17771. back: {
  17772. height: math.unit(6 + 8 / 12, "feet"),
  17773. weight: math.unit(220, "lb"),
  17774. name: "Back",
  17775. image: {
  17776. source: "./media/characters/caylex/back.svg",
  17777. extra: 821 / 772,
  17778. bottom: 0.022
  17779. }
  17780. },
  17781. hand: {
  17782. height: math.unit(1.25, "feet"),
  17783. name: "Hand",
  17784. image: {
  17785. source: "./media/characters/caylex/hand.svg"
  17786. }
  17787. },
  17788. foot: {
  17789. height: math.unit(1.6, "feet"),
  17790. name: "Foot",
  17791. image: {
  17792. source: "./media/characters/caylex/foot.svg"
  17793. }
  17794. },
  17795. armored: {
  17796. height: math.unit(6 + 8 / 12, "feet"),
  17797. weight: math.unit(250, "lb"),
  17798. name: "Armored",
  17799. image: {
  17800. source: "./media/characters/caylex/armored.svg",
  17801. extra: 1420 / 1310,
  17802. bottom: 0.045
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(6 + 8 / 12, "feet"),
  17810. default: true
  17811. },
  17812. {
  17813. name: "Normal+",
  17814. height: math.unit(12, "feet")
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(7 + 6 / 12, "feet"),
  17823. weight: math.unit(288, "lb"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/alana/front.svg",
  17827. extra: 679 / 653,
  17828. bottom: 22.5 / 701
  17829. }
  17830. },
  17831. },
  17832. [
  17833. {
  17834. name: "Normal",
  17835. height: math.unit(7 + 6 / 12, "feet")
  17836. },
  17837. {
  17838. name: "Large",
  17839. height: math.unit(50, "feet")
  17840. },
  17841. {
  17842. name: "Macro",
  17843. height: math.unit(100, "feet"),
  17844. default: true
  17845. },
  17846. {
  17847. name: "Macro+",
  17848. height: math.unit(200, "feet")
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17854. {
  17855. front: {
  17856. height: math.unit(6 + 1 / 12, "feet"),
  17857. weight: math.unit(210, "lb"),
  17858. name: "Front",
  17859. image: {
  17860. source: "./media/characters/hasani/front.svg",
  17861. extra: 244 / 232,
  17862. bottom: 0.01
  17863. }
  17864. },
  17865. back: {
  17866. height: math.unit(6 + 1 / 12, "feet"),
  17867. weight: math.unit(210, "lb"),
  17868. name: "Back",
  17869. image: {
  17870. source: "./media/characters/hasani/back.svg",
  17871. extra: 244 / 232,
  17872. bottom: 0.01
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(6 + 1 / 12, "feet")
  17880. },
  17881. {
  17882. name: "Macro",
  17883. height: math.unit(175, "feet"),
  17884. default: true
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(1.82, "meters"),
  17893. weight: math.unit(140, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/nita/front.svg",
  17897. extra: 2473 / 2363,
  17898. bottom: 0.01
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(1.82, "m")
  17906. },
  17907. {
  17908. name: "Macro",
  17909. height: math.unit(300, "m")
  17910. },
  17911. {
  17912. name: "Mistake Canon",
  17913. height: math.unit(0.5, "miles"),
  17914. default: true
  17915. },
  17916. {
  17917. name: "Big Mistake",
  17918. height: math.unit(13, "miles")
  17919. },
  17920. {
  17921. name: "Playing God",
  17922. height: math.unit(2450, "miles")
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(4, "feet"),
  17931. weight: math.unit(120, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/shiriko/front.svg",
  17935. extra: 970/934,
  17936. bottom: 5/975
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(4, "feet"),
  17944. default: true
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(6, "feet"),
  17953. name: "front",
  17954. image: {
  17955. source: "./media/characters/deja/front.svg",
  17956. extra: 926 / 840,
  17957. bottom: 0.07
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Planck Length",
  17964. height: math.unit(1.6e-35, "meters")
  17965. },
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(30.48, "meters"),
  17969. default: true
  17970. },
  17971. {
  17972. name: "Universal",
  17973. height: math.unit(8.8e26, "meters")
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17979. {
  17980. side: {
  17981. height: math.unit(8, "feet"),
  17982. weight: math.unit(6300, "lb"),
  17983. name: "Side",
  17984. image: {
  17985. source: "./media/characters/anima/side.svg",
  17986. bottom: 0.035
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(8, "feet"),
  17994. default: true
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(8, "feet"),
  18003. weight: math.unit(350, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/bianca/front.svg",
  18007. extra: 234 / 225,
  18008. bottom: 0.03
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Normal",
  18015. height: math.unit(8, "feet"),
  18016. default: true
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18022. {
  18023. front: {
  18024. height: math.unit(6, "feet"),
  18025. weight: math.unit(150, "lb"),
  18026. name: "Front",
  18027. image: {
  18028. source: "./media/characters/adinia/front.svg",
  18029. extra: 1845 / 1672,
  18030. bottom: 0.02
  18031. }
  18032. },
  18033. back: {
  18034. height: math.unit(6, "feet"),
  18035. weight: math.unit(150, "lb"),
  18036. name: "Back",
  18037. image: {
  18038. source: "./media/characters/adinia/back.svg",
  18039. extra: 1845 / 1672,
  18040. bottom: 0.002
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(11 + 5 / 12, "feet"),
  18048. default: true
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18054. {
  18055. front: {
  18056. height: math.unit(3, "meters"),
  18057. weight: math.unit(200, "kg"),
  18058. name: "Front",
  18059. image: {
  18060. source: "./media/characters/lykasa/front.svg",
  18061. extra: 1076 / 976,
  18062. bottom: 0.06
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Normal",
  18069. height: math.unit(3, "meters")
  18070. },
  18071. {
  18072. name: "Kaiju",
  18073. height: math.unit(120, "meters"),
  18074. default: true
  18075. },
  18076. {
  18077. name: "Mega Kaiju",
  18078. height: math.unit(240, "km")
  18079. },
  18080. {
  18081. name: "Giga Kaiju",
  18082. height: math.unit(400, "megameters")
  18083. },
  18084. {
  18085. name: "Tera Kaiju",
  18086. height: math.unit(800, "gigameters")
  18087. },
  18088. {
  18089. name: "Kaiju Dragon Goddess",
  18090. height: math.unit(26, "zettaparsecs")
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18096. {
  18097. side: {
  18098. height: math.unit(283 / 124 * 6, "feet"),
  18099. weight: math.unit(35000, "lb"),
  18100. name: "Side",
  18101. image: {
  18102. source: "./media/characters/malfaren/side.svg",
  18103. extra: 1310/529,
  18104. bottom: 24/1334
  18105. }
  18106. },
  18107. front: {
  18108. height: math.unit(22.36, "feet"),
  18109. weight: math.unit(35000, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/malfaren/front.svg",
  18113. extra: 1237/1115,
  18114. bottom: 32/1269
  18115. }
  18116. },
  18117. maw: {
  18118. height: math.unit(6.9, "feet"),
  18119. name: "Maw",
  18120. image: {
  18121. source: "./media/characters/malfaren/maw.svg"
  18122. }
  18123. },
  18124. dick: {
  18125. height: math.unit(6.19, "feet"),
  18126. name: "Dick",
  18127. image: {
  18128. source: "./media/characters/malfaren/dick.svg"
  18129. }
  18130. },
  18131. eye: {
  18132. height: math.unit(0.69, "feet"),
  18133. name: "Eye",
  18134. image: {
  18135. source: "./media/characters/malfaren/eye.svg"
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Big",
  18142. height: math.unit(283 / 162 * 6, "feet"),
  18143. },
  18144. {
  18145. name: "Bigger",
  18146. height: math.unit(283 / 124 * 6, "feet")
  18147. },
  18148. {
  18149. name: "Massive",
  18150. height: math.unit(283 / 92 * 6, "feet"),
  18151. default: true
  18152. },
  18153. {
  18154. name: "👀💦",
  18155. height: math.unit(283 / 73 * 6, "feet"),
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18161. {
  18162. front: {
  18163. height: math.unit(1.7, "m"),
  18164. weight: math.unit(70, "kg"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/kernel/front.svg",
  18168. extra: 222 / 210,
  18169. bottom: 0.007
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Nano",
  18176. height: math.unit(17, "micrometers")
  18177. },
  18178. {
  18179. name: "Micro",
  18180. height: math.unit(1.7, "mm")
  18181. },
  18182. {
  18183. name: "Small",
  18184. height: math.unit(1.7, "cm")
  18185. },
  18186. {
  18187. name: "Normal",
  18188. height: math.unit(1.7, "m"),
  18189. default: true
  18190. },
  18191. ]
  18192. ))
  18193. characterMakers.push(() => makeCharacter(
  18194. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18195. {
  18196. front: {
  18197. height: math.unit(1.75, "meters"),
  18198. weight: math.unit(65, "kg"),
  18199. name: "Front",
  18200. image: {
  18201. source: "./media/characters/jayne-folest/front.svg",
  18202. extra: 2115 / 2007,
  18203. bottom: 0.02
  18204. }
  18205. },
  18206. back: {
  18207. height: math.unit(1.75, "meters"),
  18208. weight: math.unit(65, "kg"),
  18209. name: "Back",
  18210. image: {
  18211. source: "./media/characters/jayne-folest/back.svg",
  18212. extra: 2115 / 2007,
  18213. bottom: 0.005
  18214. }
  18215. },
  18216. frontClothed: {
  18217. height: math.unit(1.75, "meters"),
  18218. weight: math.unit(65, "kg"),
  18219. name: "Front (Clothed)",
  18220. image: {
  18221. source: "./media/characters/jayne-folest/front-clothed.svg",
  18222. extra: 2115 / 2007,
  18223. bottom: 0.035
  18224. }
  18225. },
  18226. hand: {
  18227. height: math.unit(1 / 1.260, "feet"),
  18228. name: "Hand",
  18229. image: {
  18230. source: "./media/characters/jayne-folest/hand.svg"
  18231. }
  18232. },
  18233. foot: {
  18234. height: math.unit(1 / 0.918, "feet"),
  18235. name: "Foot",
  18236. image: {
  18237. source: "./media/characters/jayne-folest/foot.svg"
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Micro",
  18244. height: math.unit(4, "cm")
  18245. },
  18246. {
  18247. name: "Normal",
  18248. height: math.unit(1.75, "meters")
  18249. },
  18250. {
  18251. name: "Macro",
  18252. height: math.unit(47.5, "meters"),
  18253. default: true
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18259. {
  18260. front: {
  18261. height: math.unit(180, "cm"),
  18262. weight: math.unit(70, "kg"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/algier/front.svg",
  18266. extra: 596 / 572,
  18267. bottom: 0.04
  18268. }
  18269. },
  18270. back: {
  18271. height: math.unit(180, "cm"),
  18272. weight: math.unit(70, "kg"),
  18273. name: "Back",
  18274. image: {
  18275. source: "./media/characters/algier/back.svg",
  18276. extra: 596 / 572,
  18277. bottom: 0.025
  18278. }
  18279. },
  18280. frontdressed: {
  18281. height: math.unit(180, "cm"),
  18282. weight: math.unit(150, "kg"),
  18283. name: "Front-dressed",
  18284. image: {
  18285. source: "./media/characters/algier/front-dressed.svg",
  18286. extra: 596 / 572,
  18287. bottom: 0.038
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Micro",
  18294. height: math.unit(5, "cm")
  18295. },
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(180, "cm"),
  18299. default: true
  18300. },
  18301. {
  18302. name: "Macro",
  18303. height: math.unit(64, "m")
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18309. {
  18310. upright: {
  18311. height: math.unit(7, "feet"),
  18312. weight: math.unit(300, "lb"),
  18313. name: "Upright",
  18314. image: {
  18315. source: "./media/characters/pretzel/upright.svg",
  18316. extra: 534 / 522,
  18317. bottom: 0.065
  18318. }
  18319. },
  18320. sprawling: {
  18321. height: math.unit(3.75, "feet"),
  18322. weight: math.unit(300, "lb"),
  18323. name: "Sprawling",
  18324. image: {
  18325. source: "./media/characters/pretzel/sprawling.svg",
  18326. extra: 314 / 281,
  18327. bottom: 0.1
  18328. }
  18329. },
  18330. tongue: {
  18331. height: math.unit(2, "feet"),
  18332. name: "Tongue",
  18333. image: {
  18334. source: "./media/characters/pretzel/tongue.svg"
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Normal",
  18341. height: math.unit(7, "feet"),
  18342. default: true
  18343. },
  18344. {
  18345. name: "Oversized",
  18346. height: math.unit(15, "feet")
  18347. },
  18348. {
  18349. name: "Huge",
  18350. height: math.unit(30, "feet")
  18351. },
  18352. {
  18353. name: "Macro",
  18354. height: math.unit(250, "feet")
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18360. {
  18361. sideFront: {
  18362. height: math.unit(5 + 2 / 12, "feet"),
  18363. weight: math.unit(120, "lb"),
  18364. name: "Front Side",
  18365. image: {
  18366. source: "./media/characters/roxi/side-front.svg",
  18367. extra: 2924 / 2717,
  18368. bottom: 0.08
  18369. }
  18370. },
  18371. sideBack: {
  18372. height: math.unit(5 + 2 / 12, "feet"),
  18373. weight: math.unit(120, "lb"),
  18374. name: "Back Side",
  18375. image: {
  18376. source: "./media/characters/roxi/side-back.svg",
  18377. extra: 2904 / 2693,
  18378. bottom: 0.06
  18379. }
  18380. },
  18381. front: {
  18382. height: math.unit(5 + 2 / 12, "feet"),
  18383. weight: math.unit(120, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/roxi/front.svg",
  18387. extra: 2028 / 1907,
  18388. bottom: 0.01
  18389. }
  18390. },
  18391. frontAlt: {
  18392. height: math.unit(5 + 2 / 12, "feet"),
  18393. weight: math.unit(120, "lb"),
  18394. name: "Front (Alt)",
  18395. image: {
  18396. source: "./media/characters/roxi/front-alt.svg",
  18397. extra: 1828 / 1798,
  18398. bottom: 0.01
  18399. }
  18400. },
  18401. sitting: {
  18402. height: math.unit(2.8, "feet"),
  18403. weight: math.unit(120, "lb"),
  18404. name: "Sitting",
  18405. image: {
  18406. source: "./media/characters/roxi/sitting.svg",
  18407. extra: 2660 / 2462,
  18408. bottom: 0.1
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(5 + 2 / 12, "feet"),
  18416. default: true
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18422. {
  18423. side: {
  18424. height: math.unit(55, "feet"),
  18425. weight: math.unit(153, "tons"),
  18426. name: "Side",
  18427. image: {
  18428. source: "./media/characters/shadow/side.svg",
  18429. extra: 701 / 628,
  18430. bottom: 0.02
  18431. }
  18432. },
  18433. flying: {
  18434. height: math.unit(145, "feet"),
  18435. weight: math.unit(153, "tons"),
  18436. name: "Flying",
  18437. image: {
  18438. source: "./media/characters/shadow/flying.svg"
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Normal",
  18445. height: math.unit(55, "feet"),
  18446. default: true
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18452. {
  18453. front: {
  18454. height: math.unit(6, "feet"),
  18455. weight: math.unit(200, "lb"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/marcie/front.svg",
  18459. extra: 960 / 876,
  18460. bottom: 58 / 1017.87
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Macro",
  18467. height: math.unit(1, "mile"),
  18468. default: true
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18474. {
  18475. front: {
  18476. height: math.unit(7, "feet"),
  18477. weight: math.unit(200, "lb"),
  18478. name: "Front",
  18479. image: {
  18480. source: "./media/characters/kachina/front.svg",
  18481. extra: 1290.68 / 1119,
  18482. bottom: 36.5 / 1327.18
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(7, "feet"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18496. {
  18497. looking: {
  18498. height: math.unit(2, "meters"),
  18499. weight: math.unit(300, "kg"),
  18500. name: "Looking",
  18501. image: {
  18502. source: "./media/characters/kash/looking.svg",
  18503. extra: 474 / 344,
  18504. bottom: 0.03
  18505. }
  18506. },
  18507. side: {
  18508. height: math.unit(2, "meters"),
  18509. weight: math.unit(300, "kg"),
  18510. name: "Side",
  18511. image: {
  18512. source: "./media/characters/kash/side.svg",
  18513. extra: 302 / 251,
  18514. bottom: 0.03
  18515. }
  18516. },
  18517. front: {
  18518. height: math.unit(2, "meters"),
  18519. weight: math.unit(300, "kg"),
  18520. name: "Front",
  18521. image: {
  18522. source: "./media/characters/kash/front.svg",
  18523. extra: 495 / 360,
  18524. bottom: 0.015
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Normal",
  18531. height: math.unit(2, "meters"),
  18532. default: true
  18533. },
  18534. {
  18535. name: "Big",
  18536. height: math.unit(3, "meters")
  18537. },
  18538. {
  18539. name: "Large",
  18540. height: math.unit(5, "meters")
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18546. {
  18547. feeding: {
  18548. height: math.unit(6.7, "feet"),
  18549. weight: math.unit(350, "lb"),
  18550. name: "Feeding",
  18551. image: {
  18552. source: "./media/characters/lalim/feeding.svg",
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(6.7, "feet"),
  18560. default: true
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(9.5, "feet"),
  18569. weight: math.unit(600, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/de'vout/front.svg",
  18573. extra: 1443 / 1328,
  18574. bottom: 0.025
  18575. }
  18576. },
  18577. back: {
  18578. height: math.unit(9.5, "feet"),
  18579. weight: math.unit(600, "lb"),
  18580. name: "Back",
  18581. image: {
  18582. source: "./media/characters/de'vout/back.svg",
  18583. extra: 1443 / 1328
  18584. }
  18585. },
  18586. frontDressed: {
  18587. height: math.unit(9.5, "feet"),
  18588. weight: math.unit(600, "lb"),
  18589. name: "Front (Dressed",
  18590. image: {
  18591. source: "./media/characters/de'vout/front-dressed.svg",
  18592. extra: 1443 / 1328,
  18593. bottom: 0.025
  18594. }
  18595. },
  18596. backDressed: {
  18597. height: math.unit(9.5, "feet"),
  18598. weight: math.unit(600, "lb"),
  18599. name: "Back (Dressed",
  18600. image: {
  18601. source: "./media/characters/de'vout/back-dressed.svg",
  18602. extra: 1443 / 1328
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(9.5, "feet"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18616. {
  18617. front: {
  18618. height: math.unit(8, "feet"),
  18619. weight: math.unit(225, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/talana/front.svg",
  18623. extra: 1410 / 1300,
  18624. bottom: 0.015
  18625. }
  18626. },
  18627. frontDressed: {
  18628. height: math.unit(8, "feet"),
  18629. weight: math.unit(225, "lb"),
  18630. name: "Front (Dressed",
  18631. image: {
  18632. source: "./media/characters/talana/front-dressed.svg",
  18633. extra: 1410 / 1300,
  18634. bottom: 0.015
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(8, "feet"),
  18642. default: true
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18648. {
  18649. side: {
  18650. height: math.unit(7.2, "feet"),
  18651. weight: math.unit(150, "lb"),
  18652. name: "Side",
  18653. image: {
  18654. source: "./media/characters/xeauvok/side.svg",
  18655. extra: 1975 / 1523,
  18656. bottom: 0.07
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(7.2, "feet"),
  18664. default: true
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18670. {
  18671. side: {
  18672. height: math.unit(10, "feet"),
  18673. weight: math.unit(900, "kg"),
  18674. name: "Side",
  18675. image: {
  18676. source: "./media/characters/zara/side.svg",
  18677. extra: 504 / 498
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(10, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18691. {
  18692. side: {
  18693. height: math.unit(6, "feet"),
  18694. weight: math.unit(150, "lb"),
  18695. name: "Side",
  18696. image: {
  18697. source: "./media/characters/richard-dragon/side.svg",
  18698. extra: 845 / 340,
  18699. bottom: 0.017
  18700. }
  18701. },
  18702. maw: {
  18703. height: math.unit(2.97, "feet"),
  18704. name: "Maw",
  18705. image: {
  18706. source: "./media/characters/richard-dragon/maw.svg"
  18707. }
  18708. },
  18709. },
  18710. [
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(4, "feet"),
  18718. weight: math.unit(100, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/richard-smeargle/front.svg",
  18722. extra: 2952 / 2820,
  18723. bottom: 0.028
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(4, "feet"),
  18731. default: true
  18732. },
  18733. {
  18734. name: "Dynamax",
  18735. height: math.unit(20, "meters")
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(6, "feet"),
  18744. weight: math.unit(110, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/klay/front.svg",
  18748. extra: 962 / 883,
  18749. bottom: 0.04
  18750. }
  18751. },
  18752. back: {
  18753. height: math.unit(6, "feet"),
  18754. weight: math.unit(110, "lb"),
  18755. name: "Back",
  18756. image: {
  18757. source: "./media/characters/klay/back.svg",
  18758. extra: 962 / 883
  18759. }
  18760. },
  18761. beans: {
  18762. height: math.unit(1.15, "feet"),
  18763. name: "Beans",
  18764. image: {
  18765. source: "./media/characters/klay/beans.svg"
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Micro",
  18772. height: math.unit(6, "inches")
  18773. },
  18774. {
  18775. name: "Mini",
  18776. height: math.unit(3, "feet")
  18777. },
  18778. {
  18779. name: "Normal",
  18780. height: math.unit(6, "feet"),
  18781. default: true
  18782. },
  18783. {
  18784. name: "Big",
  18785. height: math.unit(25, "feet")
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(100, "feet")
  18790. },
  18791. {
  18792. name: "Megamacro",
  18793. height: math.unit(400, "feet")
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18799. {
  18800. front: {
  18801. height: math.unit(6, "feet"),
  18802. weight: math.unit(160, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/marcus/front.svg",
  18806. extra: 734 / 676,
  18807. bottom: 0.03
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Little",
  18814. height: math.unit(6, "feet")
  18815. },
  18816. {
  18817. name: "Normal",
  18818. height: math.unit(110, "feet"),
  18819. default: true
  18820. },
  18821. {
  18822. name: "Macro",
  18823. height: math.unit(250, "feet")
  18824. },
  18825. {
  18826. name: "Megamacro",
  18827. height: math.unit(1000, "feet")
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18833. {
  18834. front: {
  18835. height: math.unit(7, "feet"),
  18836. weight: math.unit(275, "lb"),
  18837. name: "Front",
  18838. image: {
  18839. source: "./media/characters/claude-delroute/front.svg",
  18840. extra: 902/827,
  18841. bottom: 26/928
  18842. }
  18843. },
  18844. side: {
  18845. height: math.unit(7, "feet"),
  18846. weight: math.unit(275, "lb"),
  18847. name: "Side",
  18848. image: {
  18849. source: "./media/characters/claude-delroute/side.svg",
  18850. extra: 908/853,
  18851. bottom: 16/924
  18852. }
  18853. },
  18854. back: {
  18855. height: math.unit(7, "feet"),
  18856. weight: math.unit(275, "lb"),
  18857. name: "Back",
  18858. image: {
  18859. source: "./media/characters/claude-delroute/back.svg",
  18860. extra: 911/829,
  18861. bottom: 18/929
  18862. }
  18863. },
  18864. maw: {
  18865. height: math.unit(0.6407, "meters"),
  18866. name: "Maw",
  18867. image: {
  18868. source: "./media/characters/claude-delroute/maw.svg"
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(7, "feet"),
  18876. default: true
  18877. },
  18878. {
  18879. name: "Lorge",
  18880. height: math.unit(20, "feet")
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(8 + 4 / 12, "feet"),
  18889. weight: math.unit(600, "lb"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/dragonien/front.svg",
  18893. extra: 100 / 94,
  18894. bottom: 3.3 / 103.3445
  18895. }
  18896. },
  18897. back: {
  18898. height: math.unit(8 + 4 / 12, "feet"),
  18899. weight: math.unit(600, "lb"),
  18900. name: "Back",
  18901. image: {
  18902. source: "./media/characters/dragonien/back.svg",
  18903. extra: 776 / 746,
  18904. bottom: 6.4 / 782.0616
  18905. }
  18906. },
  18907. foot: {
  18908. height: math.unit(1.54, "feet"),
  18909. name: "Foot",
  18910. image: {
  18911. source: "./media/characters/dragonien/foot.svg",
  18912. }
  18913. },
  18914. },
  18915. [
  18916. {
  18917. name: "Normal",
  18918. height: math.unit(8 + 4 / 12, "feet"),
  18919. default: true
  18920. },
  18921. {
  18922. name: "Macro",
  18923. height: math.unit(200, "feet")
  18924. },
  18925. {
  18926. name: "Megamacro",
  18927. height: math.unit(1, "mile")
  18928. },
  18929. {
  18930. name: "Gigamacro",
  18931. height: math.unit(1000, "miles")
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18937. {
  18938. front: {
  18939. height: math.unit(5 + 2 / 12, "feet"),
  18940. weight: math.unit(110, "lb"),
  18941. name: "Front",
  18942. image: {
  18943. source: "./media/characters/desta/front.svg",
  18944. extra: 767 / 726,
  18945. bottom: 11.7 / 779
  18946. }
  18947. },
  18948. back: {
  18949. height: math.unit(5 + 2 / 12, "feet"),
  18950. weight: math.unit(110, "lb"),
  18951. name: "Back",
  18952. image: {
  18953. source: "./media/characters/desta/back.svg",
  18954. extra: 777 / 728,
  18955. bottom: 6 / 784
  18956. }
  18957. },
  18958. frontAlt: {
  18959. height: math.unit(5 + 2 / 12, "feet"),
  18960. weight: math.unit(110, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/desta/front-alt.svg",
  18964. extra: 1482 / 1417
  18965. }
  18966. },
  18967. side: {
  18968. height: math.unit(5 + 2 / 12, "feet"),
  18969. weight: math.unit(110, "lb"),
  18970. name: "Side",
  18971. image: {
  18972. source: "./media/characters/desta/side.svg",
  18973. extra: 2579 / 2491,
  18974. bottom: 0.053
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Micro",
  18981. height: math.unit(6, "inches")
  18982. },
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(5 + 2 / 12, "feet"),
  18986. default: true
  18987. },
  18988. {
  18989. name: "Macro",
  18990. height: math.unit(62, "feet")
  18991. },
  18992. {
  18993. name: "Megamacro",
  18994. height: math.unit(1800, "feet")
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(10, "feet"),
  19003. weight: math.unit(700, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/storm-alystar/front.svg",
  19007. extra: 2112 / 1898,
  19008. bottom: 0.034
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Micro",
  19015. height: math.unit(3.5, "inches")
  19016. },
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(10, "feet"),
  19020. default: true
  19021. },
  19022. {
  19023. name: "Macro",
  19024. height: math.unit(400, "feet")
  19025. },
  19026. {
  19027. name: "Deific",
  19028. height: math.unit(60, "miles")
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19034. {
  19035. front: {
  19036. height: math.unit(2.35, "meters"),
  19037. weight: math.unit(119, "kg"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/ilia/front.svg",
  19041. extra: 1285 / 1255,
  19042. bottom: 0.06
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(2.35, "meters")
  19050. },
  19051. {
  19052. name: "Macro",
  19053. height: math.unit(140, "meters"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Megamacro",
  19058. height: math.unit(100, "miles")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(6 + 5 / 12, "feet"),
  19067. weight: math.unit(190, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/kingdead/front.svg",
  19071. extra: 1228 / 1177
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Micro",
  19078. height: math.unit(7, "inches")
  19079. },
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(6 + 5 / 12, "feet")
  19083. },
  19084. {
  19085. name: "Macro",
  19086. height: math.unit(150, "feet"),
  19087. default: true
  19088. },
  19089. {
  19090. name: "Megamacro",
  19091. height: math.unit(200, "miles")
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(8, "feet"),
  19100. weight: math.unit(600, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/kyrehx/front.svg",
  19104. extra: 1195 / 1095,
  19105. bottom: 0.034
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Micro",
  19112. height: math.unit(2, "inches")
  19113. },
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(8, "feet"),
  19117. default: true
  19118. },
  19119. {
  19120. name: "Macro",
  19121. height: math.unit(255, "feet")
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19130. weight: math.unit(184, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/xang/front.svg",
  19134. extra: 845 / 755
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Macro",
  19146. height: math.unit(0.935 * 146, "feet")
  19147. },
  19148. {
  19149. name: "Megamacro",
  19150. height: math.unit(0.935 * 3, "miles")
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19156. {
  19157. frontDressed: {
  19158. height: math.unit(5 + 7 / 12, "feet"),
  19159. weight: math.unit(140, "lb"),
  19160. name: "Front (Dressed)",
  19161. image: {
  19162. source: "./media/characters/doc-weardno/front-dressed.svg",
  19163. extra: 263 / 234
  19164. }
  19165. },
  19166. backDressed: {
  19167. height: math.unit(5 + 7 / 12, "feet"),
  19168. weight: math.unit(140, "lb"),
  19169. name: "Back (Dressed)",
  19170. image: {
  19171. source: "./media/characters/doc-weardno/back-dressed.svg",
  19172. extra: 266 / 238
  19173. }
  19174. },
  19175. front: {
  19176. height: math.unit(5 + 7 / 12, "feet"),
  19177. weight: math.unit(140, "lb"),
  19178. name: "Front",
  19179. image: {
  19180. source: "./media/characters/doc-weardno/front.svg",
  19181. extra: 254 / 233
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Micro",
  19188. height: math.unit(3, "inches")
  19189. },
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(5 + 7 / 12, "feet"),
  19193. default: true
  19194. },
  19195. {
  19196. name: "Macro",
  19197. height: math.unit(25, "feet")
  19198. },
  19199. {
  19200. name: "Megamacro",
  19201. height: math.unit(2, "miles")
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(6 + 2 / 12, "feet"),
  19210. weight: math.unit(153, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/seth-whilst/front.svg",
  19214. bottom: 0.07
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Micro",
  19221. height: math.unit(5, "inches")
  19222. },
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(6 + 2 / 12, "feet"),
  19226. default: true
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(3, "inches"),
  19235. weight: math.unit(8, "grams"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/pocket-jabari/front.svg",
  19239. extra: 1024 / 974,
  19240. bottom: 0.039
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Minimicro",
  19247. height: math.unit(8, "mm")
  19248. },
  19249. {
  19250. name: "Micro",
  19251. height: math.unit(3, "inches"),
  19252. default: true
  19253. },
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(3, "feet")
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19262. {
  19263. frontDressed: {
  19264. height: math.unit(15, "feet"),
  19265. weight: math.unit(3280, "lb"),
  19266. name: "Front (Dressed)",
  19267. image: {
  19268. source: "./media/characters/sapphy/front-dressed.svg",
  19269. extra: 1951/1654,
  19270. bottom: 194/2145
  19271. },
  19272. form: "anthro",
  19273. default: true
  19274. },
  19275. backDressed: {
  19276. height: math.unit(15, "feet"),
  19277. weight: math.unit(3280, "lb"),
  19278. name: "Back (Dressed)",
  19279. image: {
  19280. source: "./media/characters/sapphy/back-dressed.svg",
  19281. extra: 2058/1918,
  19282. bottom: 125/2183
  19283. },
  19284. form: "anthro"
  19285. },
  19286. frontNude: {
  19287. height: math.unit(15, "feet"),
  19288. weight: math.unit(3280, "lb"),
  19289. name: "Front (Nude)",
  19290. image: {
  19291. source: "./media/characters/sapphy/front-nude.svg",
  19292. extra: 1951/1654,
  19293. bottom: 194/2145
  19294. },
  19295. form: "anthro"
  19296. },
  19297. backNude: {
  19298. height: math.unit(15, "feet"),
  19299. weight: math.unit(3280, "lb"),
  19300. name: "Back (Nude)",
  19301. image: {
  19302. source: "./media/characters/sapphy/back-nude.svg",
  19303. extra: 2058/1918,
  19304. bottom: 125/2183
  19305. },
  19306. form: "anthro"
  19307. },
  19308. full: {
  19309. height: math.unit(15, "feet"),
  19310. weight: math.unit(3280, "lb"),
  19311. name: "Full",
  19312. image: {
  19313. source: "./media/characters/sapphy/full.svg",
  19314. extra: 1396/1317,
  19315. bottom: 44/1440
  19316. },
  19317. form: "anthro"
  19318. },
  19319. dick: {
  19320. height: math.unit(3.8, "feet"),
  19321. name: "Dick",
  19322. image: {
  19323. source: "./media/characters/sapphy/dick.svg"
  19324. },
  19325. form: "anthro"
  19326. },
  19327. feral: {
  19328. height: math.unit(35, "feet"),
  19329. weight: math.unit(160, "tons"),
  19330. name: "Feral",
  19331. image: {
  19332. source: "./media/characters/sapphy/feral.svg",
  19333. extra: 1050/573,
  19334. bottom: 60/1110
  19335. },
  19336. form: "feral",
  19337. default: true
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(15, "feet"),
  19344. form: "anthro"
  19345. },
  19346. {
  19347. name: "Casual Macro",
  19348. height: math.unit(120, "feet"),
  19349. form: "anthro"
  19350. },
  19351. {
  19352. name: "Macro",
  19353. height: math.unit(2150, "feet"),
  19354. default: true,
  19355. form: "anthro"
  19356. },
  19357. {
  19358. name: "Megamacro",
  19359. height: math.unit(8, "miles"),
  19360. form: "anthro"
  19361. },
  19362. {
  19363. name: "Galaxy Mom",
  19364. height: math.unit(6, "megalightyears"),
  19365. form: "anthro"
  19366. },
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(35, "feet"),
  19370. form: "feral",
  19371. default: true
  19372. },
  19373. {
  19374. name: "Macro",
  19375. height: math.unit(300, "feet"),
  19376. form: "feral"
  19377. },
  19378. {
  19379. name: "Galaxy Mom",
  19380. height: math.unit(10, "megalightyears"),
  19381. form: "feral"
  19382. },
  19383. ],
  19384. {
  19385. "anthro": {
  19386. name: "Anthro",
  19387. default: true
  19388. },
  19389. "feral": {
  19390. name: "Feral"
  19391. }
  19392. }
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19396. {
  19397. front: {
  19398. height: math.unit(6, "feet"),
  19399. weight: math.unit(170, "lb"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/kiro/front.svg",
  19403. extra: 1064 / 1012,
  19404. bottom: 0.052
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Micro",
  19411. height: math.unit(6, "inches")
  19412. },
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(6, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(72, "feet")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(5 + 9 / 12, "feet"),
  19429. weight: math.unit(175, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/irishfox/front.svg",
  19433. extra: 1912 / 1680,
  19434. bottom: 0.02
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Nano",
  19441. height: math.unit(1, "mm")
  19442. },
  19443. {
  19444. name: "Micro",
  19445. height: math.unit(2, "inches")
  19446. },
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(5 + 9 / 12, "feet"),
  19450. default: true
  19451. },
  19452. {
  19453. name: "Macro",
  19454. height: math.unit(45, "feet")
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(6 + 1 / 12, "feet"),
  19463. weight: math.unit(75, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/aronai-sieyes/front.svg",
  19467. extra: 1532/1450,
  19468. bottom: 42/1574
  19469. }
  19470. },
  19471. side: {
  19472. height: math.unit(6 + 1 / 12, "feet"),
  19473. weight: math.unit(75, "lb"),
  19474. name: "Side",
  19475. image: {
  19476. source: "./media/characters/aronai-sieyes/side.svg",
  19477. extra: 1422/1365,
  19478. bottom: 148/1570
  19479. }
  19480. },
  19481. back: {
  19482. height: math.unit(6 + 1 / 12, "feet"),
  19483. weight: math.unit(75, "lb"),
  19484. name: "Back",
  19485. image: {
  19486. source: "./media/characters/aronai-sieyes/back.svg",
  19487. extra: 1526/1464,
  19488. bottom: 51/1577
  19489. }
  19490. },
  19491. dressed: {
  19492. height: math.unit(6 + 1 / 12, "feet"),
  19493. weight: math.unit(75, "lb"),
  19494. name: "Dressed",
  19495. image: {
  19496. source: "./media/characters/aronai-sieyes/dressed.svg",
  19497. extra: 1559/1483,
  19498. bottom: 39/1598
  19499. }
  19500. },
  19501. slit: {
  19502. height: math.unit(1.3, "feet"),
  19503. name: "Slit",
  19504. image: {
  19505. source: "./media/characters/aronai-sieyes/slit.svg"
  19506. }
  19507. },
  19508. slitSpread: {
  19509. height: math.unit(0.9, "feet"),
  19510. name: "Slit (Spread)",
  19511. image: {
  19512. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19513. }
  19514. },
  19515. rump: {
  19516. height: math.unit(1.3, "feet"),
  19517. name: "Rump",
  19518. image: {
  19519. source: "./media/characters/aronai-sieyes/rump.svg"
  19520. }
  19521. },
  19522. maw: {
  19523. height: math.unit(1.25, "feet"),
  19524. name: "Maw",
  19525. image: {
  19526. source: "./media/characters/aronai-sieyes/maw.svg"
  19527. }
  19528. },
  19529. feral: {
  19530. height: math.unit(18, "feet"),
  19531. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19532. name: "Feral",
  19533. image: {
  19534. source: "./media/characters/aronai-sieyes/feral.svg",
  19535. extra: 1530 / 1240,
  19536. bottom: 0.035
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Micro",
  19543. height: math.unit(2, "inches")
  19544. },
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(6 + 1 / 12, "feet"),
  19548. default: true
  19549. }
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19554. {
  19555. front: {
  19556. height: math.unit(12, "feet"),
  19557. weight: math.unit(410, "kg"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/xuna/front.svg",
  19561. extra: 2184 / 1980
  19562. }
  19563. },
  19564. side: {
  19565. height: math.unit(12, "feet"),
  19566. weight: math.unit(410, "kg"),
  19567. name: "Side",
  19568. image: {
  19569. source: "./media/characters/xuna/side.svg",
  19570. extra: 2184 / 1980
  19571. }
  19572. },
  19573. back: {
  19574. height: math.unit(12, "feet"),
  19575. weight: math.unit(410, "kg"),
  19576. name: "Back",
  19577. image: {
  19578. source: "./media/characters/xuna/back.svg",
  19579. extra: 2184 / 1980
  19580. }
  19581. },
  19582. },
  19583. [
  19584. {
  19585. name: "Nano glow",
  19586. height: math.unit(10, "nm")
  19587. },
  19588. {
  19589. name: "Micro floof",
  19590. height: math.unit(0.3, "m")
  19591. },
  19592. {
  19593. name: "Huggable softy boi",
  19594. height: math.unit(3.6576, "m"),
  19595. default: true
  19596. },
  19597. {
  19598. name: "Admirable floof",
  19599. height: math.unit(80, "meters")
  19600. },
  19601. {
  19602. name: "Gentle macro",
  19603. height: math.unit(300, "meters")
  19604. },
  19605. {
  19606. name: "Very careful floof",
  19607. height: math.unit(3200, "meters")
  19608. },
  19609. {
  19610. name: "The mega floof",
  19611. height: math.unit(36000, "meters")
  19612. },
  19613. {
  19614. name: "Giga-fur-Wicker",
  19615. height: math.unit(4800000, "meters")
  19616. },
  19617. {
  19618. name: "Licky world",
  19619. height: math.unit(20000000, "meters")
  19620. },
  19621. {
  19622. name: "Floofy cyan sun",
  19623. height: math.unit(1500000000, "meters")
  19624. },
  19625. {
  19626. name: "Milky Wicker",
  19627. height: math.unit(1000000000000000000000, "meters")
  19628. },
  19629. {
  19630. name: "The observing Wicker",
  19631. height: math.unit(999999999999999999999999999, "meters")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(5 + 9 / 12, "feet"),
  19640. weight: math.unit(150, "lb"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/arokha-sieyes/front.svg",
  19644. extra: 1425 / 1284,
  19645. bottom: 0.05
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Normal",
  19652. height: math.unit(5 + 9 / 12, "feet")
  19653. },
  19654. {
  19655. name: "Macro",
  19656. height: math.unit(30, "meters"),
  19657. default: true
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19663. {
  19664. front: {
  19665. height: math.unit(6, "feet"),
  19666. weight: math.unit(180, "lb"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/arokh-sieyes/front.svg",
  19670. extra: 1830 / 1769,
  19671. bottom: 0.01
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(6, "feet")
  19679. },
  19680. {
  19681. name: "Macro",
  19682. height: math.unit(30, "meters"),
  19683. default: true
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19689. {
  19690. side: {
  19691. height: math.unit(13 + 1 / 12, "feet"),
  19692. weight: math.unit(8.5, "tonnes"),
  19693. name: "Side",
  19694. image: {
  19695. source: "./media/characters/goldeneye/side.svg",
  19696. extra: 1182 / 778,
  19697. bottom: 0.067
  19698. }
  19699. },
  19700. paw: {
  19701. height: math.unit(3.4, "feet"),
  19702. name: "Paw",
  19703. image: {
  19704. source: "./media/characters/goldeneye/paw.svg"
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(13 + 1 / 12, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19718. {
  19719. front: {
  19720. height: math.unit(6 + 1 / 12, "feet"),
  19721. weight: math.unit(210, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/leonardo-lycheborne/front.svg",
  19725. extra: 776/723,
  19726. bottom: 34/810
  19727. }
  19728. },
  19729. side: {
  19730. height: math.unit(6 + 1 / 12, "feet"),
  19731. weight: math.unit(210, "lb"),
  19732. name: "Side",
  19733. image: {
  19734. source: "./media/characters/leonardo-lycheborne/side.svg",
  19735. extra: 780/728,
  19736. bottom: 12/792
  19737. }
  19738. },
  19739. back: {
  19740. height: math.unit(6 + 1 / 12, "feet"),
  19741. weight: math.unit(210, "lb"),
  19742. name: "Back",
  19743. image: {
  19744. source: "./media/characters/leonardo-lycheborne/back.svg",
  19745. extra: 775/721,
  19746. bottom: 17/792
  19747. }
  19748. },
  19749. hand: {
  19750. height: math.unit(1.08, "feet"),
  19751. name: "Hand",
  19752. image: {
  19753. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19754. }
  19755. },
  19756. foot: {
  19757. height: math.unit(1.32, "feet"),
  19758. name: "Foot",
  19759. image: {
  19760. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19761. }
  19762. },
  19763. maw: {
  19764. height: math.unit(1, "feet"),
  19765. name: "Maw",
  19766. image: {
  19767. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19768. }
  19769. },
  19770. were: {
  19771. height: math.unit(20, "feet"),
  19772. weight: math.unit(7800, "lb"),
  19773. name: "Were",
  19774. image: {
  19775. source: "./media/characters/leonardo-lycheborne/were.svg",
  19776. extra: 1224/1165,
  19777. bottom: 72/1296
  19778. }
  19779. },
  19780. feral: {
  19781. height: math.unit(7.5, "feet"),
  19782. weight: math.unit(600, "lb"),
  19783. name: "Feral",
  19784. image: {
  19785. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19786. extra: 797/702,
  19787. bottom: 139/936
  19788. }
  19789. },
  19790. taur: {
  19791. height: math.unit(11, "feet"),
  19792. weight: math.unit(3300, "lb"),
  19793. name: "Taur",
  19794. image: {
  19795. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19796. extra: 1271/1197,
  19797. bottom: 47/1318
  19798. }
  19799. },
  19800. barghest: {
  19801. height: math.unit(11, "feet"),
  19802. weight: math.unit(1300, "lb"),
  19803. name: "Barghest",
  19804. image: {
  19805. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19806. extra: 1291/1204,
  19807. bottom: 37/1328
  19808. }
  19809. },
  19810. dick: {
  19811. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19812. name: "Dick",
  19813. image: {
  19814. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19815. }
  19816. },
  19817. dickWere: {
  19818. height: math.unit((20) / 3.8, "feet"),
  19819. name: "Dick (Were)",
  19820. image: {
  19821. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(6 + 1 / 12, "feet"),
  19829. default: true
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(10, "feet"),
  19838. weight: math.unit(350, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/jet/front.svg",
  19842. extra: 2050 / 1980,
  19843. bottom: 0.013
  19844. }
  19845. },
  19846. back: {
  19847. height: math.unit(10, "feet"),
  19848. weight: math.unit(350, "lb"),
  19849. name: "Back",
  19850. image: {
  19851. source: "./media/characters/jet/back.svg",
  19852. extra: 2050 / 1980,
  19853. bottom: 0.013
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Micro",
  19860. height: math.unit(6, "inches")
  19861. },
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(10, "feet"),
  19865. default: true
  19866. },
  19867. {
  19868. name: "Macro",
  19869. height: math.unit(100, "feet")
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19875. {
  19876. front: {
  19877. height: math.unit(15, "feet"),
  19878. weight: math.unit(2800, "lb"),
  19879. name: "Front",
  19880. image: {
  19881. source: "./media/characters/tanarath/front.svg",
  19882. extra: 2392 / 2220,
  19883. bottom: 0.03
  19884. }
  19885. },
  19886. back: {
  19887. height: math.unit(15, "feet"),
  19888. weight: math.unit(2800, "lb"),
  19889. name: "Back",
  19890. image: {
  19891. source: "./media/characters/tanarath/back.svg",
  19892. extra: 2392 / 2220,
  19893. bottom: 0.03
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(15, "feet"),
  19901. default: true
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(7 + 1 / 12, "feet"),
  19910. weight: math.unit(175, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/patty-cattybatty/front.svg",
  19914. extra: 908 / 874,
  19915. bottom: 0.025
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Micro",
  19922. height: math.unit(1, "inch")
  19923. },
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(7 + 1 / 12, "feet")
  19927. },
  19928. {
  19929. name: "Mini Macro",
  19930. height: math.unit(155, "feet")
  19931. },
  19932. {
  19933. name: "Macro",
  19934. height: math.unit(1077, "feet")
  19935. },
  19936. {
  19937. name: "Mega Macro",
  19938. height: math.unit(47650, "feet"),
  19939. default: true
  19940. },
  19941. {
  19942. name: "Giga Macro",
  19943. height: math.unit(440, "miles")
  19944. },
  19945. {
  19946. name: "Tera Macro",
  19947. height: math.unit(8700, "miles")
  19948. },
  19949. {
  19950. name: "Planetary Macro",
  19951. height: math.unit(32700, "miles")
  19952. },
  19953. {
  19954. name: "Solar Macro",
  19955. height: math.unit(550000, "miles")
  19956. },
  19957. {
  19958. name: "Celestial Macro",
  19959. height: math.unit(2.5, "AU")
  19960. },
  19961. ]
  19962. ))
  19963. characterMakers.push(() => makeCharacter(
  19964. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19965. {
  19966. front: {
  19967. height: math.unit(4 + 5 / 12, "feet"),
  19968. weight: math.unit(90, "lb"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/cappu/front.svg",
  19972. extra: 1247 / 1152,
  19973. bottom: 0.012
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(4 + 5 / 12, "feet"),
  19981. default: true
  19982. },
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19987. {
  19988. frontDressed: {
  19989. height: math.unit(70, "cm"),
  19990. weight: math.unit(6, "kg"),
  19991. name: "Front (Dressed)",
  19992. image: {
  19993. source: "./media/characters/sebi/front-dressed.svg",
  19994. extra: 713.5 / 686.5,
  19995. bottom: 0.003
  19996. }
  19997. },
  19998. front: {
  19999. height: math.unit(70, "cm"),
  20000. weight: math.unit(5, "kg"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/sebi/front.svg",
  20004. extra: 713.5 / 686.5,
  20005. bottom: 0.003
  20006. }
  20007. }
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(70, "cm"),
  20013. default: true
  20014. },
  20015. {
  20016. name: "Macro",
  20017. height: math.unit(8, "meters")
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20023. {
  20024. front: {
  20025. height: math.unit(6, "feet"),
  20026. weight: math.unit(150, "lb"),
  20027. name: "Front",
  20028. image: {
  20029. source: "./media/characters/typhek/front.svg",
  20030. extra: 1948 / 1929,
  20031. bottom: 0.025
  20032. }
  20033. },
  20034. side: {
  20035. height: math.unit(6, "feet"),
  20036. weight: math.unit(150, "lb"),
  20037. name: "Side",
  20038. image: {
  20039. source: "./media/characters/typhek/side.svg",
  20040. extra: 2034 / 2010,
  20041. bottom: 0.003
  20042. }
  20043. },
  20044. back: {
  20045. height: math.unit(6, "feet"),
  20046. weight: math.unit(150, "lb"),
  20047. name: "Back",
  20048. image: {
  20049. source: "./media/characters/typhek/back.svg",
  20050. extra: 2005 / 1978,
  20051. bottom: 0.004
  20052. }
  20053. },
  20054. palm: {
  20055. height: math.unit(1.2, "feet"),
  20056. name: "Palm",
  20057. image: {
  20058. source: "./media/characters/typhek/palm.svg"
  20059. }
  20060. },
  20061. fist: {
  20062. height: math.unit(1.1, "feet"),
  20063. name: "Fist",
  20064. image: {
  20065. source: "./media/characters/typhek/fist.svg"
  20066. }
  20067. },
  20068. foot: {
  20069. height: math.unit(1.57, "feet"),
  20070. name: "Foot",
  20071. image: {
  20072. source: "./media/characters/typhek/foot.svg"
  20073. }
  20074. },
  20075. sole: {
  20076. height: math.unit(2.05, "feet"),
  20077. name: "Sole",
  20078. image: {
  20079. source: "./media/characters/typhek/sole.svg"
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Macro",
  20086. height: math.unit(40, "stories"),
  20087. default: true
  20088. },
  20089. {
  20090. name: "Megamacro",
  20091. height: math.unit(1, "mile")
  20092. },
  20093. {
  20094. name: "Gigamacro",
  20095. height: math.unit(4000, "solarradii")
  20096. },
  20097. {
  20098. name: "Universal",
  20099. height: math.unit(1.1, "universes")
  20100. }
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20105. {
  20106. side: {
  20107. height: math.unit(5 + 7 / 12, "feet"),
  20108. weight: math.unit(150, "lb"),
  20109. name: "Side",
  20110. image: {
  20111. source: "./media/characters/kassy/side.svg",
  20112. extra: 1280 / 1225,
  20113. bottom: 0.002
  20114. }
  20115. },
  20116. front: {
  20117. height: math.unit(5 + 7 / 12, "feet"),
  20118. weight: math.unit(150, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/kassy/front.svg",
  20122. extra: 1280 / 1225,
  20123. bottom: 0.025
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(5 + 7 / 12, "feet"),
  20128. weight: math.unit(150, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/kassy/back.svg",
  20132. extra: 1280 / 1225,
  20133. bottom: 0.002
  20134. }
  20135. },
  20136. foot: {
  20137. height: math.unit(1.266, "feet"),
  20138. name: "Foot",
  20139. image: {
  20140. source: "./media/characters/kassy/foot.svg"
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(5 + 7 / 12, "feet")
  20148. },
  20149. {
  20150. name: "Macro",
  20151. height: math.unit(137, "feet"),
  20152. default: true
  20153. },
  20154. {
  20155. name: "Megamacro",
  20156. height: math.unit(1, "mile")
  20157. },
  20158. ]
  20159. ))
  20160. characterMakers.push(() => makeCharacter(
  20161. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20162. {
  20163. front: {
  20164. height: math.unit(6 + 1 / 12, "feet"),
  20165. weight: math.unit(200, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/neil/front.svg",
  20169. extra: 1326 / 1250,
  20170. bottom: 0.023
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(6 + 1 / 12, "feet"),
  20178. default: true
  20179. },
  20180. {
  20181. name: "Macro",
  20182. height: math.unit(200, "feet")
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(5 + 9 / 12, "feet"),
  20191. weight: math.unit(190, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/atticus/front.svg",
  20195. extra: 2934 / 2785,
  20196. bottom: 0.025
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(5 + 9 / 12, "feet"),
  20204. default: true
  20205. },
  20206. {
  20207. name: "Macro",
  20208. height: math.unit(180, "feet")
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20214. {
  20215. side: {
  20216. height: math.unit(9, "feet"),
  20217. weight: math.unit(650, "lb"),
  20218. name: "Side",
  20219. image: {
  20220. source: "./media/characters/milo/side.svg",
  20221. extra: 2644 / 2310,
  20222. bottom: 0.032
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(9, "feet"),
  20230. default: true
  20231. },
  20232. {
  20233. name: "Macro",
  20234. height: math.unit(300, "feet")
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20240. {
  20241. side: {
  20242. height: math.unit(8, "meters"),
  20243. weight: math.unit(90000, "kg"),
  20244. name: "Side",
  20245. image: {
  20246. source: "./media/characters/ijzer/side.svg",
  20247. extra: 2756 / 1600,
  20248. bottom: 0.01
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Small",
  20255. height: math.unit(3, "meters")
  20256. },
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(8, "meters"),
  20260. default: true
  20261. },
  20262. {
  20263. name: "Normal+",
  20264. height: math.unit(10, "meters")
  20265. },
  20266. {
  20267. name: "Bigger",
  20268. height: math.unit(24, "meters")
  20269. },
  20270. {
  20271. name: "Huge",
  20272. height: math.unit(80, "meters")
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20278. {
  20279. front: {
  20280. height: math.unit(6 + 2 / 12, "feet"),
  20281. weight: math.unit(153, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/luca-cervicum/front.svg",
  20285. extra: 370 / 327,
  20286. bottom: 0.015
  20287. }
  20288. },
  20289. back: {
  20290. height: math.unit(6 + 2 / 12, "feet"),
  20291. weight: math.unit(153, "lb"),
  20292. name: "Back",
  20293. image: {
  20294. source: "./media/characters/luca-cervicum/back.svg",
  20295. extra: 367 / 333,
  20296. bottom: 0.005
  20297. }
  20298. },
  20299. frontGear: {
  20300. height: math.unit(6 + 2 / 12, "feet"),
  20301. weight: math.unit(173, "lb"),
  20302. name: "Front (Gear)",
  20303. image: {
  20304. source: "./media/characters/luca-cervicum/front-gear.svg",
  20305. extra: 377 / 333,
  20306. bottom: 0.006
  20307. }
  20308. },
  20309. },
  20310. [
  20311. {
  20312. name: "Normal",
  20313. height: math.unit(6 + 2 / 12, "feet"),
  20314. default: true
  20315. },
  20316. ]
  20317. ))
  20318. characterMakers.push(() => makeCharacter(
  20319. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20320. {
  20321. front: {
  20322. height: math.unit(6 + 1 / 12, "feet"),
  20323. weight: math.unit(304, "lb"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/oliver/front.svg",
  20327. extra: 157 / 143,
  20328. bottom: 0.08
  20329. }
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(6 + 1 / 12, "feet"),
  20336. default: true
  20337. },
  20338. ]
  20339. ))
  20340. characterMakers.push(() => makeCharacter(
  20341. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20342. {
  20343. front: {
  20344. height: math.unit(5 + 7 / 12, "feet"),
  20345. weight: math.unit(140, "lb"),
  20346. name: "Front",
  20347. image: {
  20348. source: "./media/characters/shane/front.svg",
  20349. extra: 304 / 289,
  20350. bottom: 0.005
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(5 + 7 / 12, "feet"),
  20358. default: true
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(5 + 9 / 12, "feet"),
  20367. weight: math.unit(178, "lb"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/shin/front.svg",
  20371. extra: 159 / 151,
  20372. bottom: 0.015
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(5 + 9 / 12, "feet"),
  20380. default: true
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(5 + 10 / 12, "feet"),
  20389. weight: math.unit(168, "lb"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/xerxes/front.svg",
  20393. extra: 282 / 260,
  20394. bottom: 0.045
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(5 + 10 / 12, "feet"),
  20402. default: true
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(6 + 7 / 12, "feet"),
  20411. weight: math.unit(208, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/chaska/front.svg",
  20415. extra: 332 / 319,
  20416. bottom: 0.015
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(6 + 7 / 12, "feet"),
  20424. default: true
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20430. {
  20431. front: {
  20432. height: math.unit(5 + 8 / 12, "feet"),
  20433. weight: math.unit(208, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/enuk/front.svg",
  20437. extra: 437 / 406,
  20438. bottom: 0.02
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(5 + 8 / 12, "feet"),
  20446. default: true
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(5 + 10 / 12, "feet"),
  20455. weight: math.unit(252, "lb"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/bruun/front.svg",
  20459. extra: 197 / 187,
  20460. bottom: 0.012
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(5 + 10 / 12, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(6 + 10 / 12, "feet"),
  20477. weight: math.unit(255, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/alexeev/front.svg",
  20481. extra: 213 / 200,
  20482. bottom: 0.05
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(6 + 10 / 12, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(2 + 8 / 12, "feet"),
  20499. weight: math.unit(22, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/evelyn/front.svg",
  20503. extra: 208 / 180
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Normal",
  20510. height: math.unit(2 + 8 / 12, "feet"),
  20511. default: true
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20517. {
  20518. front: {
  20519. height: math.unit(5 + 9 / 12, "feet"),
  20520. weight: math.unit(139, "lb"),
  20521. name: "Front",
  20522. image: {
  20523. source: "./media/characters/inca/front.svg",
  20524. extra: 294 / 291,
  20525. bottom: 0.03
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(5 + 9 / 12, "feet"),
  20533. default: true
  20534. },
  20535. ]
  20536. ))
  20537. characterMakers.push(() => makeCharacter(
  20538. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20539. {
  20540. front: {
  20541. height: math.unit(6 + 3 / 12, "feet"),
  20542. weight: math.unit(185, "lb"),
  20543. name: "Front",
  20544. image: {
  20545. source: "./media/characters/mera/front.svg",
  20546. extra: 291 / 277,
  20547. bottom: 0.03
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(6 + 3 / 12, "feet"),
  20555. default: true
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(6 + 7 / 12, "feet"),
  20564. weight: math.unit(160, "lb"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/ceres/front.svg",
  20568. extra: 1023 / 950,
  20569. bottom: 0.027
  20570. }
  20571. },
  20572. back: {
  20573. height: math.unit(6 + 7 / 12, "feet"),
  20574. weight: math.unit(160, "lb"),
  20575. name: "Back",
  20576. image: {
  20577. source: "./media/characters/ceres/back.svg",
  20578. extra: 1023 / 950
  20579. }
  20580. },
  20581. },
  20582. [
  20583. {
  20584. name: "Normal",
  20585. height: math.unit(6 + 7 / 12, "feet"),
  20586. default: true
  20587. },
  20588. ]
  20589. ))
  20590. characterMakers.push(() => makeCharacter(
  20591. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20592. {
  20593. front: {
  20594. height: math.unit(5 + 10 / 12, "feet"),
  20595. weight: math.unit(150, "lb"),
  20596. name: "Front",
  20597. image: {
  20598. source: "./media/characters/kris/front.svg",
  20599. extra: 885 / 803,
  20600. bottom: 0.03
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(5 + 10 / 12, "feet"),
  20608. default: true
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(7, "feet"),
  20617. weight: math.unit(120, "kg"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/taluthus/front.svg",
  20621. extra: 903 / 833,
  20622. bottom: 0.015
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(7, "feet"),
  20630. default: true
  20631. },
  20632. {
  20633. name: "Macro",
  20634. height: math.unit(300, "feet")
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20640. {
  20641. front: {
  20642. height: math.unit(5 + 9 / 12, "feet"),
  20643. weight: math.unit(145, "lb"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/dawn/front.svg",
  20647. extra: 2094 / 2016,
  20648. bottom: 0.025
  20649. }
  20650. },
  20651. back: {
  20652. height: math.unit(5 + 9 / 12, "feet"),
  20653. weight: math.unit(160, "lb"),
  20654. name: "Back",
  20655. image: {
  20656. source: "./media/characters/dawn/back.svg",
  20657. extra: 2112 / 2080,
  20658. bottom: 0.005
  20659. }
  20660. },
  20661. },
  20662. [
  20663. {
  20664. name: "Normal",
  20665. height: math.unit(6 + 7 / 12, "feet"),
  20666. default: true
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20672. {
  20673. anthro: {
  20674. height: math.unit(8 + 3 / 12, "feet"),
  20675. weight: math.unit(450, "lb"),
  20676. name: "Anthro",
  20677. image: {
  20678. source: "./media/characters/arador/anthro.svg",
  20679. extra: 1835 / 1718,
  20680. bottom: 0.025
  20681. }
  20682. },
  20683. feral: {
  20684. height: math.unit(4, "feet"),
  20685. weight: math.unit(200, "lb"),
  20686. name: "Feral",
  20687. image: {
  20688. source: "./media/characters/arador/feral.svg",
  20689. extra: 1683 / 1514,
  20690. bottom: 0.07
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(8 + 3 / 12, "feet")
  20698. },
  20699. {
  20700. name: "Macro",
  20701. height: math.unit(82.5, "feet"),
  20702. default: true
  20703. },
  20704. ]
  20705. ))
  20706. characterMakers.push(() => makeCharacter(
  20707. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20708. {
  20709. front: {
  20710. height: math.unit(5 + 10 / 12, "feet"),
  20711. weight: math.unit(125, "lb"),
  20712. name: "Front",
  20713. image: {
  20714. source: "./media/characters/dharsi/front.svg",
  20715. extra: 716 / 630,
  20716. bottom: 0.035
  20717. }
  20718. },
  20719. },
  20720. [
  20721. {
  20722. name: "Nano",
  20723. height: math.unit(100, "nm")
  20724. },
  20725. {
  20726. name: "Micro",
  20727. height: math.unit(2, "inches")
  20728. },
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(5 + 10 / 12, "feet"),
  20732. default: true
  20733. },
  20734. {
  20735. name: "Macro",
  20736. height: math.unit(1000, "feet")
  20737. },
  20738. {
  20739. name: "Megamacro",
  20740. height: math.unit(10, "miles")
  20741. },
  20742. {
  20743. name: "Gigamacro",
  20744. height: math.unit(3000, "miles")
  20745. },
  20746. {
  20747. name: "Teramacro",
  20748. height: math.unit(500000, "miles")
  20749. },
  20750. {
  20751. name: "Teramacro+",
  20752. height: math.unit(30, "galaxies")
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(6, "feet"),
  20761. weight: math.unit(150, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/deathy/front.svg",
  20765. extra: 1552 / 1463,
  20766. bottom: 0.025
  20767. }
  20768. },
  20769. side: {
  20770. height: math.unit(6, "feet"),
  20771. weight: math.unit(150, "lb"),
  20772. name: "Side",
  20773. image: {
  20774. source: "./media/characters/deathy/side.svg",
  20775. extra: 1604 / 1455,
  20776. bottom: 0.025
  20777. }
  20778. },
  20779. back: {
  20780. height: math.unit(6, "feet"),
  20781. weight: math.unit(150, "lb"),
  20782. name: "Back",
  20783. image: {
  20784. source: "./media/characters/deathy/back.svg",
  20785. extra: 1580 / 1463,
  20786. bottom: 0.005
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(5, "millimeters")
  20794. },
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(6 + 5 / 12, "feet"),
  20798. default: true
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20804. {
  20805. front: {
  20806. height: math.unit(16, "feet"),
  20807. weight: math.unit(4000, "lb"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/juniper/front.svg",
  20811. bottom: 0.04
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Normal",
  20818. height: math.unit(16, "feet"),
  20819. default: true
  20820. },
  20821. ]
  20822. ))
  20823. characterMakers.push(() => makeCharacter(
  20824. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20825. {
  20826. front: {
  20827. height: math.unit(6, "feet"),
  20828. weight: math.unit(150, "lb"),
  20829. name: "Front",
  20830. image: {
  20831. source: "./media/characters/hipster/front.svg",
  20832. extra: 1312 / 1209,
  20833. bottom: 0.025
  20834. }
  20835. },
  20836. back: {
  20837. height: math.unit(6, "feet"),
  20838. weight: math.unit(150, "lb"),
  20839. name: "Back",
  20840. image: {
  20841. source: "./media/characters/hipster/back.svg",
  20842. extra: 1281 / 1196,
  20843. bottom: 0.01
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Micro",
  20850. height: math.unit(1, "mm")
  20851. },
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(4, "inches"),
  20855. default: true
  20856. },
  20857. {
  20858. name: "Macro",
  20859. height: math.unit(500, "feet")
  20860. },
  20861. {
  20862. name: "Megamacro",
  20863. height: math.unit(1000, "miles")
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20869. {
  20870. front: {
  20871. height: math.unit(6, "feet"),
  20872. weight: math.unit(150, "lb"),
  20873. name: "Front",
  20874. image: {
  20875. source: "./media/characters/tendirmuldr/front.svg",
  20876. extra: 1878 / 1772,
  20877. bottom: 0.015
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Megamacro",
  20884. height: math.unit(1500, "miles"),
  20885. default: true
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20891. {
  20892. front: {
  20893. height: math.unit(14, "feet"),
  20894. weight: math.unit(12000, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/mort/front.svg",
  20898. extra: 365 / 318,
  20899. bottom: 0.01
  20900. }
  20901. },
  20902. side: {
  20903. height: math.unit(14, "feet"),
  20904. weight: math.unit(12000, "lb"),
  20905. name: "Side",
  20906. image: {
  20907. source: "./media/characters/mort/side.svg",
  20908. extra: 365 / 318,
  20909. bottom: 0.052
  20910. },
  20911. default: true
  20912. },
  20913. back: {
  20914. height: math.unit(14, "feet"),
  20915. weight: math.unit(12000, "lb"),
  20916. name: "Back",
  20917. image: {
  20918. source: "./media/characters/mort/back.svg",
  20919. extra: 371 / 332,
  20920. bottom: 0.18
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(14, "feet"),
  20928. default: true
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20934. {
  20935. front: {
  20936. height: math.unit(8, "feet"),
  20937. weight: math.unit(1, "ton"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/lycoa/front.svg",
  20941. extra: 1836/1728,
  20942. bottom: 81/1917
  20943. }
  20944. },
  20945. back: {
  20946. height: math.unit(8, "feet"),
  20947. weight: math.unit(1, "ton"),
  20948. name: "Back",
  20949. image: {
  20950. source: "./media/characters/lycoa/back.svg",
  20951. extra: 1785/1720,
  20952. bottom: 91/1876
  20953. }
  20954. },
  20955. head: {
  20956. height: math.unit(1.6243, "feet"),
  20957. name: "Head",
  20958. image: {
  20959. source: "./media/characters/lycoa/head.svg",
  20960. extra: 1011/782,
  20961. bottom: 0/1011
  20962. }
  20963. },
  20964. tailmaw: {
  20965. height: math.unit(1.9, "feet"),
  20966. name: "Tailmaw",
  20967. image: {
  20968. source: "./media/characters/lycoa/tailmaw.svg"
  20969. }
  20970. },
  20971. tentacles: {
  20972. height: math.unit(2.1, "feet"),
  20973. name: "Tentacles",
  20974. image: {
  20975. source: "./media/characters/lycoa/tentacles.svg"
  20976. }
  20977. },
  20978. dick: {
  20979. height: math.unit(1.73, "feet"),
  20980. name: "Dick",
  20981. image: {
  20982. source: "./media/characters/lycoa/dick.svg"
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(8, "feet"),
  20990. default: true
  20991. },
  20992. {
  20993. name: "Macro",
  20994. height: math.unit(30, "feet")
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21000. {
  21001. front: {
  21002. height: math.unit(4 + 2 / 12, "feet"),
  21003. weight: math.unit(70, "lb"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/naldara/front.svg",
  21007. extra: 1664/1387,
  21008. bottom: 81/1745
  21009. },
  21010. form: "anthro",
  21011. default: true
  21012. },
  21013. naga: {
  21014. height: math.unit(20, "feet"),
  21015. weight: math.unit(15000, "kg"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/naldara/naga.svg",
  21019. extra: 1590/1396,
  21020. bottom: 285/1875
  21021. },
  21022. form: "naga",
  21023. default: true
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(4 + 2 / 12, "feet"),
  21030. form: "anthro",
  21031. default: true
  21032. },
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(20, "feet"),
  21036. form: "naga",
  21037. default: true
  21038. },
  21039. ],
  21040. {
  21041. "anthro": {
  21042. name: "Anthro",
  21043. default: true
  21044. },
  21045. "naga": {
  21046. name: "Naga"
  21047. }
  21048. }
  21049. ))
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21052. {
  21053. front: {
  21054. height: math.unit(13 + 7 / 12, "feet"),
  21055. weight: math.unit(1500, "lb"),
  21056. name: "Front",
  21057. image: {
  21058. source: "./media/characters/briar/front.svg",
  21059. extra: 1223/1157,
  21060. bottom: 123/1346
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(13 + 7 / 12, "feet"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21074. {
  21075. side: {
  21076. height: math.unit(16, "feet"),
  21077. weight: math.unit(500, "lb"),
  21078. name: "Side",
  21079. image: {
  21080. source: "./media/characters/vanguard/side.svg",
  21081. extra: 1022/914,
  21082. bottom: 30/1052
  21083. }
  21084. },
  21085. sideAlt: {
  21086. height: math.unit(10, "feet"),
  21087. weight: math.unit(500, "lb"),
  21088. name: "Side (Alt)",
  21089. image: {
  21090. source: "./media/characters/vanguard/side-alt.svg",
  21091. extra: 502 / 425,
  21092. bottom: 0.087
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Normal",
  21099. height: math.unit(17.71, "feet"),
  21100. default: true
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(7.5, "feet"),
  21109. weight: math.unit(2, "lb"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/artemis/work-safe-front.svg",
  21113. extra: 1192 / 1075,
  21114. bottom: 0.07
  21115. },
  21116. form: "work-safe",
  21117. default: true
  21118. },
  21119. frontNsfw: {
  21120. height: math.unit(7.5, "feet"),
  21121. weight: math.unit(2, "lb"),
  21122. name: "Front",
  21123. image: {
  21124. source: "./media/characters/artemis/calibrating-front.svg",
  21125. extra: 1192 / 1075,
  21126. bottom: 0.07
  21127. },
  21128. form: "calibrating",
  21129. default: true
  21130. },
  21131. frontNsfwer: {
  21132. height: math.unit(7.5, "feet"),
  21133. weight: math.unit(2, "lb"),
  21134. name: "Front",
  21135. image: {
  21136. source: "./media/characters/artemis/oversize-load-front.svg",
  21137. extra: 1192 / 1075,
  21138. bottom: 0.07
  21139. },
  21140. form: "oversize-load",
  21141. default: true
  21142. },
  21143. side: {
  21144. height: math.unit(7.5, "feet"),
  21145. weight: math.unit(2, "lb"),
  21146. name: "Side",
  21147. image: {
  21148. source: "./media/characters/artemis/work-safe-side.svg",
  21149. extra: 1192 / 1075,
  21150. bottom: 0.07
  21151. },
  21152. form: "work-safe"
  21153. },
  21154. sideNsfw: {
  21155. height: math.unit(7.5, "feet"),
  21156. weight: math.unit(2, "lb"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/artemis/calibrating-side.svg",
  21160. extra: 1192 / 1075,
  21161. bottom: 0.07
  21162. },
  21163. form: "calibrating"
  21164. },
  21165. sideNsfwer: {
  21166. height: math.unit(7.5, "feet"),
  21167. weight: math.unit(2, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/artemis/oversize-load-side.svg",
  21171. extra: 1192 / 1075,
  21172. bottom: 0.07
  21173. },
  21174. form: "oversize-load"
  21175. },
  21176. maw: {
  21177. height: math.unit(1.1, "feet"),
  21178. name: "Maw",
  21179. image: {
  21180. source: "./media/characters/artemis/maw.svg"
  21181. },
  21182. form: "work-safe"
  21183. },
  21184. stomach: {
  21185. height: math.unit(0.95, "feet"),
  21186. name: "Stomach",
  21187. image: {
  21188. source: "./media/characters/artemis/stomach.svg"
  21189. },
  21190. form: "work-safe"
  21191. },
  21192. dickCanine: {
  21193. height: math.unit(1, "feet"),
  21194. name: "Dick (Canine)",
  21195. image: {
  21196. source: "./media/characters/artemis/dick-canine.svg"
  21197. },
  21198. form: "calibrating"
  21199. },
  21200. dickEquine: {
  21201. height: math.unit(0.85, "feet"),
  21202. name: "Dick (Equine)",
  21203. image: {
  21204. source: "./media/characters/artemis/dick-equine.svg"
  21205. },
  21206. form: "calibrating"
  21207. },
  21208. dickExotic: {
  21209. height: math.unit(0.85, "feet"),
  21210. name: "Dick (Exotic)",
  21211. image: {
  21212. source: "./media/characters/artemis/dick-exotic.svg"
  21213. },
  21214. form: "calibrating"
  21215. },
  21216. dickCanineBigger: {
  21217. height: math.unit(1 * 1.33, "feet"),
  21218. name: "Dick (Canine)",
  21219. image: {
  21220. source: "./media/characters/artemis/dick-canine.svg"
  21221. },
  21222. form: "oversize-load"
  21223. },
  21224. dickEquineBigger: {
  21225. height: math.unit(0.85 * 1.33, "feet"),
  21226. name: "Dick (Equine)",
  21227. image: {
  21228. source: "./media/characters/artemis/dick-equine.svg"
  21229. },
  21230. form: "oversize-load"
  21231. },
  21232. dickExoticBigger: {
  21233. height: math.unit(0.85 * 1.33, "feet"),
  21234. name: "Dick (Exotic)",
  21235. image: {
  21236. source: "./media/characters/artemis/dick-exotic.svg"
  21237. },
  21238. form: "oversize-load"
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(7.5, "feet"),
  21245. form: "work-safe",
  21246. default: true
  21247. },
  21248. {
  21249. name: "Normal",
  21250. height: math.unit(7.5, "feet"),
  21251. form: "calibrating",
  21252. default: true
  21253. },
  21254. {
  21255. name: "Normal",
  21256. height: math.unit(7.5, "feet"),
  21257. form: "oversize-load",
  21258. default: true
  21259. },
  21260. {
  21261. name: "Enlarged",
  21262. height: math.unit(12, "feet"),
  21263. form: "work-safe",
  21264. },
  21265. {
  21266. name: "Enlarged",
  21267. height: math.unit(12, "feet"),
  21268. form: "calibrating",
  21269. },
  21270. {
  21271. name: "Enlarged",
  21272. height: math.unit(12, "feet"),
  21273. form: "oversize-load",
  21274. },
  21275. ],
  21276. {
  21277. "work-safe": {
  21278. name: "Work-Safe",
  21279. default: true
  21280. },
  21281. "calibrating": {
  21282. name: "Calibrating"
  21283. },
  21284. "oversize-load": {
  21285. name: "Oversize Load"
  21286. }
  21287. }
  21288. ))
  21289. characterMakers.push(() => makeCharacter(
  21290. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21291. {
  21292. front: {
  21293. height: math.unit(5 + 3 / 12, "feet"),
  21294. weight: math.unit(160, "lb"),
  21295. name: "Front",
  21296. image: {
  21297. source: "./media/characters/kira/front.svg",
  21298. extra: 906 / 786,
  21299. bottom: 0.01
  21300. }
  21301. },
  21302. back: {
  21303. height: math.unit(5 + 3 / 12, "feet"),
  21304. weight: math.unit(160, "lb"),
  21305. name: "Back",
  21306. image: {
  21307. source: "./media/characters/kira/back.svg",
  21308. extra: 882 / 757,
  21309. bottom: 0.005
  21310. }
  21311. },
  21312. frontDressed: {
  21313. height: math.unit(5 + 3 / 12, "feet"),
  21314. weight: math.unit(160, "lb"),
  21315. name: "Front (Dressed)",
  21316. image: {
  21317. source: "./media/characters/kira/front-dressed.svg",
  21318. extra: 906 / 786,
  21319. bottom: 0.01
  21320. }
  21321. },
  21322. beans: {
  21323. height: math.unit(0.92, "feet"),
  21324. name: "Beans",
  21325. image: {
  21326. source: "./media/characters/kira/beans.svg"
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(5 + 3 / 12, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21340. {
  21341. front: {
  21342. height: math.unit(5 + 4 / 12, "feet"),
  21343. weight: math.unit(145, "lb"),
  21344. name: "Front",
  21345. image: {
  21346. source: "./media/characters/scramble/front.svg",
  21347. extra: 763 / 727,
  21348. bottom: 0.05
  21349. }
  21350. },
  21351. back: {
  21352. height: math.unit(5 + 4 / 12, "feet"),
  21353. weight: math.unit(145, "lb"),
  21354. name: "Back",
  21355. image: {
  21356. source: "./media/characters/scramble/back.svg",
  21357. extra: 826 / 737,
  21358. bottom: 0.002
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(5 + 4 / 12, "feet"),
  21366. default: true
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21372. {
  21373. side: {
  21374. height: math.unit(6 + 2 / 12, "feet"),
  21375. weight: math.unit(190, "lb"),
  21376. name: "Side",
  21377. image: {
  21378. source: "./media/characters/biscuit/side.svg",
  21379. extra: 858 / 791,
  21380. bottom: 0.044
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(6 + 2 / 12, "feet"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(5 + 2 / 12, "feet"),
  21397. weight: math.unit(120, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/poffin/front.svg",
  21401. extra: 786 / 680,
  21402. bottom: 0.005
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Normal",
  21409. height: math.unit(5 + 2 / 12, "feet"),
  21410. default: true
  21411. },
  21412. ]
  21413. ))
  21414. characterMakers.push(() => makeCharacter(
  21415. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21416. {
  21417. front: {
  21418. height: math.unit(6 + 3 / 12, "feet"),
  21419. weight: math.unit(519, "lb"),
  21420. name: "Front",
  21421. image: {
  21422. source: "./media/characters/dhari/front.svg",
  21423. extra: 1048 / 946,
  21424. bottom: 0.015
  21425. }
  21426. },
  21427. back: {
  21428. height: math.unit(6 + 3 / 12, "feet"),
  21429. weight: math.unit(519, "lb"),
  21430. name: "Back",
  21431. image: {
  21432. source: "./media/characters/dhari/back.svg",
  21433. extra: 1048 / 931,
  21434. bottom: 0.005
  21435. }
  21436. },
  21437. frontDressed: {
  21438. height: math.unit(6 + 3 / 12, "feet"),
  21439. weight: math.unit(519, "lb"),
  21440. name: "Front (Dressed)",
  21441. image: {
  21442. source: "./media/characters/dhari/front-dressed.svg",
  21443. extra: 1713 / 1546,
  21444. bottom: 0.02
  21445. }
  21446. },
  21447. backDressed: {
  21448. height: math.unit(6 + 3 / 12, "feet"),
  21449. weight: math.unit(519, "lb"),
  21450. name: "Back (Dressed)",
  21451. image: {
  21452. source: "./media/characters/dhari/back-dressed.svg",
  21453. extra: 1699 / 1537,
  21454. bottom: 0.01
  21455. }
  21456. },
  21457. maw: {
  21458. height: math.unit(0.95, "feet"),
  21459. name: "Maw",
  21460. image: {
  21461. source: "./media/characters/dhari/maw.svg"
  21462. }
  21463. },
  21464. wereFront: {
  21465. height: math.unit(12 + 8 / 12, "feet"),
  21466. weight: math.unit(4000, "lb"),
  21467. name: "Front (Were)",
  21468. image: {
  21469. source: "./media/characters/dhari/were-front.svg",
  21470. extra: 1065 / 969,
  21471. bottom: 0.015
  21472. }
  21473. },
  21474. wereBack: {
  21475. height: math.unit(12 + 8 / 12, "feet"),
  21476. weight: math.unit(4000, "lb"),
  21477. name: "Back (Were)",
  21478. image: {
  21479. source: "./media/characters/dhari/were-back.svg",
  21480. extra: 1065 / 969,
  21481. bottom: 0.012
  21482. }
  21483. },
  21484. wereMaw: {
  21485. height: math.unit(0.625, "meters"),
  21486. name: "Maw (Were)",
  21487. image: {
  21488. source: "./media/characters/dhari/were-maw.svg"
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Normal",
  21495. height: math.unit(6 + 3 / 12, "feet"),
  21496. default: true
  21497. },
  21498. ]
  21499. ))
  21500. characterMakers.push(() => makeCharacter(
  21501. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21502. {
  21503. anthro: {
  21504. height: math.unit(5 + 7 / 12, "feet"),
  21505. weight: math.unit(175, "lb"),
  21506. name: "Anthro",
  21507. image: {
  21508. source: "./media/characters/rena-dyne/anthro.svg",
  21509. extra: 1849 / 1785,
  21510. bottom: 0.005
  21511. }
  21512. },
  21513. taur: {
  21514. height: math.unit(15 + 6 / 12, "feet"),
  21515. weight: math.unit(8000, "lb"),
  21516. name: "Taur",
  21517. image: {
  21518. source: "./media/characters/rena-dyne/taur.svg",
  21519. extra: 2315 / 2234,
  21520. bottom: 0.033
  21521. }
  21522. },
  21523. },
  21524. [
  21525. {
  21526. name: "Normal",
  21527. height: math.unit(5 + 7 / 12, "feet"),
  21528. default: true
  21529. },
  21530. ]
  21531. ))
  21532. characterMakers.push(() => makeCharacter(
  21533. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21534. {
  21535. front: {
  21536. height: math.unit(8, "feet"),
  21537. weight: math.unit(600, "lb"),
  21538. name: "Front",
  21539. image: {
  21540. source: "./media/characters/weremeep/front.svg",
  21541. extra: 967 / 862,
  21542. bottom: 0.01
  21543. }
  21544. },
  21545. },
  21546. [
  21547. {
  21548. name: "Normal",
  21549. height: math.unit(8, "feet"),
  21550. default: true
  21551. },
  21552. {
  21553. name: "Lorg",
  21554. height: math.unit(12, "feet")
  21555. },
  21556. {
  21557. name: "Oh Lawd She Comin'",
  21558. height: math.unit(20, "feet")
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21564. {
  21565. front: {
  21566. height: math.unit(4, "feet"),
  21567. weight: math.unit(90, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/reza/front.svg",
  21571. extra: 1183 / 1111,
  21572. bottom: 0.017
  21573. }
  21574. },
  21575. back: {
  21576. height: math.unit(4, "feet"),
  21577. weight: math.unit(90, "lb"),
  21578. name: "Back",
  21579. image: {
  21580. source: "./media/characters/reza/back.svg",
  21581. extra: 1183 / 1111,
  21582. bottom: 0.01
  21583. }
  21584. },
  21585. drake: {
  21586. height: math.unit(30, "feet"),
  21587. weight: math.unit(246960, "lb"),
  21588. name: "Drake",
  21589. image: {
  21590. source: "./media/characters/reza/drake.svg",
  21591. extra: 2350 / 2024,
  21592. bottom: 60.7 / 2403
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(4, "feet"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21606. {
  21607. side: {
  21608. height: math.unit(15, "feet"),
  21609. weight: math.unit(14, "tons"),
  21610. name: "Side",
  21611. image: {
  21612. source: "./media/characters/athea/side.svg",
  21613. extra: 960 / 540,
  21614. bottom: 0.003
  21615. }
  21616. },
  21617. sitting: {
  21618. height: math.unit(6 * 2.85, "feet"),
  21619. weight: math.unit(14, "tons"),
  21620. name: "Sitting",
  21621. image: {
  21622. source: "./media/characters/athea/sitting.svg",
  21623. extra: 621 / 581,
  21624. bottom: 0.075
  21625. }
  21626. },
  21627. maw: {
  21628. height: math.unit(7.59498031496063, "feet"),
  21629. name: "Maw",
  21630. image: {
  21631. source: "./media/characters/athea/maw.svg"
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Lap Cat",
  21638. height: math.unit(2.5, "feet")
  21639. },
  21640. {
  21641. name: "Minimacro",
  21642. height: math.unit(15, "feet"),
  21643. default: true
  21644. },
  21645. {
  21646. name: "Macro",
  21647. height: math.unit(120, "feet")
  21648. },
  21649. {
  21650. name: "Macro+",
  21651. height: math.unit(640, "feet")
  21652. },
  21653. {
  21654. name: "Colossus",
  21655. height: math.unit(2.2, "miles")
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(8 + 8 / 12, "feet"),
  21664. weight: math.unit(130, "kg"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/seroko/front.svg",
  21668. extra: 1385 / 1280,
  21669. bottom: 0.025
  21670. }
  21671. },
  21672. back: {
  21673. height: math.unit(8 + 8 / 12, "feet"),
  21674. weight: math.unit(130, "kg"),
  21675. name: "Back",
  21676. image: {
  21677. source: "./media/characters/seroko/back.svg",
  21678. extra: 1369 / 1238,
  21679. bottom: 0.018
  21680. }
  21681. },
  21682. frontDressed: {
  21683. height: math.unit(8 + 8 / 12, "feet"),
  21684. weight: math.unit(130, "kg"),
  21685. name: "Front (Dressed)",
  21686. image: {
  21687. source: "./media/characters/seroko/front-dressed.svg",
  21688. extra: 1366 / 1275,
  21689. bottom: 0.03
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(8 + 8 / 12, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(5.5, "feet"),
  21706. weight: math.unit(160, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/quatzi/front.svg",
  21710. extra: 2346 / 2242,
  21711. bottom: 0.015
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(5.5, "feet"),
  21719. default: true
  21720. },
  21721. {
  21722. name: "Big",
  21723. height: math.unit(7.7, "feet")
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(5 + 11 / 12, "feet"),
  21732. weight: math.unit(180, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/sen/front.svg",
  21736. extra: 1321 / 1254,
  21737. bottom: 0.015
  21738. }
  21739. },
  21740. side: {
  21741. height: math.unit(5 + 11 / 12, "feet"),
  21742. weight: math.unit(180, "lb"),
  21743. name: "Side",
  21744. image: {
  21745. source: "./media/characters/sen/side.svg",
  21746. extra: 1321 / 1254,
  21747. bottom: 0.007
  21748. }
  21749. },
  21750. back: {
  21751. height: math.unit(5 + 11 / 12, "feet"),
  21752. weight: math.unit(180, "lb"),
  21753. name: "Back",
  21754. image: {
  21755. source: "./media/characters/sen/back.svg",
  21756. extra: 1321 / 1254
  21757. }
  21758. },
  21759. },
  21760. [
  21761. {
  21762. name: "Normal",
  21763. height: math.unit(5 + 11 / 12, "feet"),
  21764. default: true
  21765. },
  21766. ]
  21767. ))
  21768. characterMakers.push(() => makeCharacter(
  21769. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21770. {
  21771. front: {
  21772. height: math.unit(166.6, "cm"),
  21773. weight: math.unit(66.6, "kg"),
  21774. name: "Front",
  21775. image: {
  21776. source: "./media/characters/fruity/front.svg",
  21777. extra: 1510 / 1386,
  21778. bottom: 0.04
  21779. }
  21780. },
  21781. back: {
  21782. height: math.unit(166.6, "cm"),
  21783. weight: math.unit(66.6, "lb"),
  21784. name: "Back",
  21785. image: {
  21786. source: "./media/characters/fruity/back.svg",
  21787. extra: 1563 / 1435,
  21788. bottom: 0.005
  21789. }
  21790. },
  21791. },
  21792. [
  21793. {
  21794. name: "Normal",
  21795. height: math.unit(166.6, "cm"),
  21796. default: true
  21797. },
  21798. {
  21799. name: "Demonic",
  21800. height: math.unit(166.6, "feet")
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21806. {
  21807. side: {
  21808. height: math.unit(10, "feet"),
  21809. weight: math.unit(500, "lb"),
  21810. name: "Side",
  21811. image: {
  21812. source: "./media/characters/zost/side.svg",
  21813. extra: 2870/2533,
  21814. bottom: 252/3122
  21815. }
  21816. },
  21817. mawFront: {
  21818. height: math.unit(1.08, "meters"),
  21819. name: "Maw (Front)",
  21820. image: {
  21821. source: "./media/characters/zost/maw-front.svg"
  21822. }
  21823. },
  21824. mawSide: {
  21825. height: math.unit(2.66, "feet"),
  21826. name: "Maw (Side)",
  21827. image: {
  21828. source: "./media/characters/zost/maw-side.svg"
  21829. }
  21830. },
  21831. wingspan: {
  21832. height: math.unit(7.4, "feet"),
  21833. name: "Wingspan",
  21834. image: {
  21835. source: "./media/characters/zost/wingspan.svg"
  21836. }
  21837. },
  21838. },
  21839. [
  21840. {
  21841. name: "Normal",
  21842. height: math.unit(10, "feet"),
  21843. default: true
  21844. },
  21845. ]
  21846. ))
  21847. characterMakers.push(() => makeCharacter(
  21848. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21849. {
  21850. front: {
  21851. height: math.unit(5 + 4 / 12, "feet"),
  21852. weight: math.unit(120, "lb"),
  21853. name: "Front",
  21854. image: {
  21855. source: "./media/characters/luci/front.svg",
  21856. extra: 1985 / 1884,
  21857. bottom: 0.04
  21858. }
  21859. },
  21860. back: {
  21861. height: math.unit(5 + 4 / 12, "feet"),
  21862. weight: math.unit(120, "lb"),
  21863. name: "Back",
  21864. image: {
  21865. source: "./media/characters/luci/back.svg",
  21866. extra: 1892 / 1791,
  21867. bottom: 0.002
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Normal",
  21874. height: math.unit(5 + 4 / 12, "feet"),
  21875. default: true
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(1500, "feet"),
  21884. weight: math.unit(3.8e6, "tons"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/2th/front.svg",
  21888. extra: 3489 / 3350,
  21889. bottom: 0.1
  21890. }
  21891. },
  21892. foot: {
  21893. height: math.unit(461, "feet"),
  21894. name: "Foot",
  21895. image: {
  21896. source: "./media/characters/2th/foot.svg"
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "\"Micro\"",
  21903. height: math.unit(15 + 7 / 12, "feet")
  21904. },
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(1500, "feet"),
  21908. default: true
  21909. },
  21910. {
  21911. name: "Macro",
  21912. height: math.unit(5000, "feet")
  21913. },
  21914. {
  21915. name: "Megamacro",
  21916. height: math.unit(15, "miles")
  21917. },
  21918. {
  21919. name: "Gigamacro",
  21920. height: math.unit(4000, "miles")
  21921. },
  21922. {
  21923. name: "Galactic",
  21924. height: math.unit(50, "AU")
  21925. },
  21926. ]
  21927. ))
  21928. characterMakers.push(() => makeCharacter(
  21929. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21930. {
  21931. front: {
  21932. height: math.unit(5 + 6 / 12, "feet"),
  21933. weight: math.unit(220, "lb"),
  21934. name: "Front",
  21935. image: {
  21936. source: "./media/characters/amethyst/front.svg",
  21937. extra: 2078 / 2040,
  21938. bottom: 0.045
  21939. }
  21940. },
  21941. back: {
  21942. height: math.unit(5 + 6 / 12, "feet"),
  21943. weight: math.unit(220, "lb"),
  21944. name: "Back",
  21945. image: {
  21946. source: "./media/characters/amethyst/back.svg",
  21947. extra: 2021 / 1989,
  21948. bottom: 0.02
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Normal",
  21955. height: math.unit(5 + 6 / 12, "feet"),
  21956. default: true
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21962. {
  21963. front: {
  21964. height: math.unit(4 + 11 / 12, "feet"),
  21965. weight: math.unit(120, "lb"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/yumi-akiyama/front.svg",
  21969. extra: 1327 / 1235,
  21970. bottom: 0.02
  21971. }
  21972. },
  21973. back: {
  21974. height: math.unit(4 + 11 / 12, "feet"),
  21975. weight: math.unit(120, "lb"),
  21976. name: "Back",
  21977. image: {
  21978. source: "./media/characters/yumi-akiyama/back.svg",
  21979. extra: 1287 / 1245,
  21980. bottom: 0.002
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Galactic",
  21987. height: math.unit(50, "galaxies"),
  21988. default: true
  21989. },
  21990. {
  21991. name: "Universal",
  21992. height: math.unit(100, "universes")
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(8, "feet"),
  22001. weight: math.unit(500, "lb"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/rifter-yrmori/front.svg",
  22005. extra: 1180 / 1125,
  22006. bottom: 0.02
  22007. }
  22008. },
  22009. back: {
  22010. height: math.unit(8, "feet"),
  22011. weight: math.unit(500, "lb"),
  22012. name: "Back",
  22013. image: {
  22014. source: "./media/characters/rifter-yrmori/back.svg",
  22015. extra: 1190 / 1145,
  22016. bottom: 0.001
  22017. }
  22018. },
  22019. wings: {
  22020. height: math.unit(7.75, "feet"),
  22021. weight: math.unit(500, "lb"),
  22022. name: "Wings",
  22023. image: {
  22024. source: "./media/characters/rifter-yrmori/wings.svg",
  22025. extra: 1357 / 1285
  22026. }
  22027. },
  22028. maw: {
  22029. height: math.unit(0.8, "feet"),
  22030. name: "Maw",
  22031. image: {
  22032. source: "./media/characters/rifter-yrmori/maw.svg"
  22033. }
  22034. },
  22035. mawfront: {
  22036. height: math.unit(1.45, "feet"),
  22037. name: "Maw (Front)",
  22038. image: {
  22039. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22040. }
  22041. },
  22042. },
  22043. [
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(8, "feet"),
  22047. default: true
  22048. },
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(42, "meters")
  22052. },
  22053. ]
  22054. ))
  22055. characterMakers.push(() => makeCharacter(
  22056. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22057. {
  22058. were: {
  22059. height: math.unit(25 + 6 / 12, "feet"),
  22060. weight: math.unit(10000, "lb"),
  22061. name: "Were",
  22062. image: {
  22063. source: "./media/characters/tahajin/were.svg",
  22064. extra: 801 / 770,
  22065. bottom: 0.042
  22066. }
  22067. },
  22068. aquatic: {
  22069. height: math.unit(6 + 4 / 12, "feet"),
  22070. weight: math.unit(160, "lb"),
  22071. name: "Aquatic",
  22072. image: {
  22073. source: "./media/characters/tahajin/aquatic.svg",
  22074. extra: 572 / 542,
  22075. bottom: 0.04
  22076. }
  22077. },
  22078. chow: {
  22079. height: math.unit(8 + 11 / 12, "feet"),
  22080. weight: math.unit(450, "lb"),
  22081. name: "Chow",
  22082. image: {
  22083. source: "./media/characters/tahajin/chow.svg",
  22084. extra: 660 / 640,
  22085. bottom: 0.015
  22086. }
  22087. },
  22088. demiNaga: {
  22089. height: math.unit(6 + 8 / 12, "feet"),
  22090. weight: math.unit(300, "lb"),
  22091. name: "Demi Naga",
  22092. image: {
  22093. source: "./media/characters/tahajin/demi-naga.svg",
  22094. extra: 643 / 615,
  22095. bottom: 0.1
  22096. }
  22097. },
  22098. data: {
  22099. height: math.unit(5, "inches"),
  22100. weight: math.unit(0.1, "lb"),
  22101. name: "Data",
  22102. image: {
  22103. source: "./media/characters/tahajin/data.svg"
  22104. }
  22105. },
  22106. fluu: {
  22107. height: math.unit(5 + 7 / 12, "feet"),
  22108. weight: math.unit(140, "lb"),
  22109. name: "Fluu",
  22110. image: {
  22111. source: "./media/characters/tahajin/fluu.svg",
  22112. extra: 628 / 592,
  22113. bottom: 0.02
  22114. }
  22115. },
  22116. starWarrior: {
  22117. height: math.unit(4 + 5 / 12, "feet"),
  22118. weight: math.unit(50, "lb"),
  22119. name: "Star Warrior",
  22120. image: {
  22121. source: "./media/characters/tahajin/star-warrior.svg"
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(25 + 6 / 12, "feet"),
  22129. default: true
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(8, "feet"),
  22138. weight: math.unit(350, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/gabira/front.svg",
  22142. extra: 608 / 580,
  22143. bottom: 0.03
  22144. }
  22145. },
  22146. back: {
  22147. height: math.unit(8, "feet"),
  22148. weight: math.unit(350, "lb"),
  22149. name: "Back",
  22150. image: {
  22151. source: "./media/characters/gabira/back.svg",
  22152. extra: 608 / 580,
  22153. bottom: 0.03
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(8, "feet"),
  22161. default: true
  22162. },
  22163. ]
  22164. ))
  22165. characterMakers.push(() => makeCharacter(
  22166. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22167. {
  22168. front: {
  22169. height: math.unit(5 + 3 / 12, "feet"),
  22170. weight: math.unit(137, "lb"),
  22171. name: "Front",
  22172. image: {
  22173. source: "./media/characters/sasha-katraine/front.svg",
  22174. extra: 1745/1694,
  22175. bottom: 37/1782
  22176. }
  22177. },
  22178. back: {
  22179. height: math.unit(5 + 3 / 12, "feet"),
  22180. weight: math.unit(137, "lb"),
  22181. name: "Back",
  22182. image: {
  22183. source: "./media/characters/sasha-katraine/back.svg",
  22184. extra: 1776/1699,
  22185. bottom: 26/1802
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Micro",
  22192. height: math.unit(5, "inches")
  22193. },
  22194. {
  22195. name: "Normal",
  22196. height: math.unit(5 + 3 / 12, "feet"),
  22197. default: true
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22203. {
  22204. side: {
  22205. height: math.unit(4, "inches"),
  22206. weight: math.unit(200, "grams"),
  22207. name: "Side",
  22208. image: {
  22209. source: "./media/characters/der/side.svg",
  22210. extra: 719 / 400,
  22211. bottom: 30.6 / 749.9187
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Micro",
  22218. height: math.unit(4, "inches"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22225. {
  22226. side: {
  22227. height: math.unit(30, "meters"),
  22228. weight: math.unit(700, "tonnes"),
  22229. name: "Side",
  22230. image: {
  22231. source: "./media/characters/fixerdragon/side.svg",
  22232. extra: (1293.0514 - 116.03) / 1106.86,
  22233. bottom: 116.03 / 1293.0514
  22234. }
  22235. },
  22236. },
  22237. [
  22238. {
  22239. name: "Planck",
  22240. height: math.unit(1.6e-35, "meters")
  22241. },
  22242. {
  22243. name: "Micro",
  22244. height: math.unit(0.4, "meters")
  22245. },
  22246. {
  22247. name: "Normal",
  22248. height: math.unit(30, "meters"),
  22249. default: true
  22250. },
  22251. {
  22252. name: "Megamacro",
  22253. height: math.unit(1.2, "megameters")
  22254. },
  22255. {
  22256. name: "Teramacro",
  22257. height: math.unit(130, "terameters")
  22258. },
  22259. {
  22260. name: "Yottamacro",
  22261. height: math.unit(6200, "yottameters")
  22262. },
  22263. ]
  22264. ));
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22267. {
  22268. front: {
  22269. height: math.unit(8, "feet"),
  22270. weight: math.unit(250, "lb"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/kite/front.svg",
  22274. extra: 2796 / 2659,
  22275. bottom: 0.002
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(8, "feet"),
  22283. default: true
  22284. },
  22285. {
  22286. name: "Macro",
  22287. height: math.unit(360, "feet")
  22288. },
  22289. {
  22290. name: "Megamacro",
  22291. height: math.unit(1500, "feet")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22297. {
  22298. front: {
  22299. height: math.unit(5 + 11/12, "feet"),
  22300. weight: math.unit(170, "lb"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/poojawa-vynar/front.svg",
  22304. extra: 1735/1585,
  22305. bottom: 96/1831
  22306. }
  22307. },
  22308. back: {
  22309. height: math.unit(5 + 11/12, "feet"),
  22310. weight: math.unit(170, "lb"),
  22311. name: "Back",
  22312. image: {
  22313. source: "./media/characters/poojawa-vynar/back.svg",
  22314. extra: 1749/1607,
  22315. bottom: 28/1777
  22316. }
  22317. },
  22318. male: {
  22319. height: math.unit(5 + 11/12, "feet"),
  22320. weight: math.unit(170, "lb"),
  22321. name: "Male",
  22322. image: {
  22323. source: "./media/characters/poojawa-vynar/male.svg",
  22324. extra: 1855/1713,
  22325. bottom: 63/1918
  22326. }
  22327. },
  22328. taur: {
  22329. height: math.unit(5 + 11/12, "feet"),
  22330. weight: math.unit(170, "lb"),
  22331. name: "Taur",
  22332. image: {
  22333. source: "./media/characters/poojawa-vynar/taur.svg",
  22334. extra: 1151/1059,
  22335. bottom: 356/1507
  22336. }
  22337. },
  22338. frontDressed: {
  22339. height: math.unit(5 + 11/12, "feet"),
  22340. weight: math.unit(170, "lb"),
  22341. name: "Front (Dressed)",
  22342. image: {
  22343. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22344. extra: 1735/1585,
  22345. bottom: 96/1831
  22346. }
  22347. },
  22348. backDressed: {
  22349. height: math.unit(5 + 11/12, "feet"),
  22350. weight: math.unit(170, "lb"),
  22351. name: "Back (Dressed)",
  22352. image: {
  22353. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22354. extra: 1749/1607,
  22355. bottom: 28/1777
  22356. }
  22357. },
  22358. maleDressed: {
  22359. height: math.unit(5 + 11/12, "feet"),
  22360. weight: math.unit(170, "lb"),
  22361. name: "Male (Dressed)",
  22362. image: {
  22363. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22364. extra: 1855/1713,
  22365. bottom: 63/1918
  22366. }
  22367. },
  22368. taurDressed: {
  22369. height: math.unit(5 + 11/12, "feet"),
  22370. weight: math.unit(170, "lb"),
  22371. name: "Taur (Dressed)",
  22372. image: {
  22373. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22374. extra: 1151/1059,
  22375. bottom: 356/1507
  22376. }
  22377. },
  22378. maw: {
  22379. height: math.unit(1.46, "feet"),
  22380. name: "Maw",
  22381. image: {
  22382. source: "./media/characters/poojawa-vynar/maw.svg"
  22383. }
  22384. },
  22385. head: {
  22386. height: math.unit(2.34, "feet"),
  22387. name: "Head",
  22388. image: {
  22389. source: "./media/characters/poojawa-vynar/head.svg"
  22390. }
  22391. },
  22392. paw: {
  22393. height: math.unit(1.61, "feet"),
  22394. name: "Paw",
  22395. image: {
  22396. source: "./media/characters/poojawa-vynar/paw.svg"
  22397. }
  22398. },
  22399. pawToering: {
  22400. height: math.unit(1.72, "feet"),
  22401. name: "Paw (Toering)",
  22402. image: {
  22403. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22404. }
  22405. },
  22406. toering: {
  22407. height: math.unit(2.9, "inches"),
  22408. name: "Toering",
  22409. image: {
  22410. source: "./media/characters/poojawa-vynar/toering.svg"
  22411. }
  22412. },
  22413. shaft: {
  22414. height: math.unit(0.625, "feet"),
  22415. name: "Shaft",
  22416. image: {
  22417. source: "./media/characters/poojawa-vynar/shaft.svg"
  22418. }
  22419. },
  22420. spade: {
  22421. height: math.unit(0.42, "feet"),
  22422. name: "Spade",
  22423. image: {
  22424. source: "./media/characters/poojawa-vynar/spade.svg"
  22425. }
  22426. },
  22427. },
  22428. [
  22429. {
  22430. name: "Shortstack",
  22431. height: math.unit(4, "feet")
  22432. },
  22433. {
  22434. name: "Normal",
  22435. height: math.unit(5 + 11 / 12, "feet"),
  22436. default: true
  22437. },
  22438. {
  22439. name: "Tauric",
  22440. height: math.unit(4, "meters")
  22441. },
  22442. ]
  22443. ))
  22444. characterMakers.push(() => makeCharacter(
  22445. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22446. {
  22447. front: {
  22448. height: math.unit(293, "meters"),
  22449. weight: math.unit(70400, "tons"),
  22450. name: "Front",
  22451. image: {
  22452. source: "./media/characters/violette/front.svg",
  22453. extra: 1227 / 1180,
  22454. bottom: 0.005
  22455. }
  22456. },
  22457. back: {
  22458. height: math.unit(293, "meters"),
  22459. weight: math.unit(70400, "tons"),
  22460. name: "Back",
  22461. image: {
  22462. source: "./media/characters/violette/back.svg",
  22463. extra: 1227 / 1180,
  22464. bottom: 0.005
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Macro",
  22471. height: math.unit(293, "meters"),
  22472. default: true
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22478. {
  22479. front: {
  22480. height: math.unit(1050, "feet"),
  22481. weight: math.unit(200000, "tons"),
  22482. name: "Front",
  22483. image: {
  22484. source: "./media/characters/alessandra/front.svg",
  22485. extra: 960 / 912,
  22486. bottom: 0.06
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Macro",
  22493. height: math.unit(1050, "feet")
  22494. },
  22495. {
  22496. name: "Macro+",
  22497. height: math.unit(900, "meters"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(5, "feet"),
  22507. weight: math.unit(187, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/person/front.svg",
  22511. extra: 3087 / 2945,
  22512. bottom: 91 / 3181
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Micro",
  22519. height: math.unit(3, "inches")
  22520. },
  22521. {
  22522. name: "Normal",
  22523. height: math.unit(5, "feet"),
  22524. default: true
  22525. },
  22526. {
  22527. name: "Macro",
  22528. height: math.unit(90, "feet")
  22529. },
  22530. {
  22531. name: "Max Size",
  22532. height: math.unit(280, "feet")
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(4.5, "meters"),
  22541. weight: math.unit(3200, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/ty/front.svg",
  22545. extra: 1038 / 960,
  22546. bottom: 31.156 / 1068
  22547. }
  22548. },
  22549. back: {
  22550. height: math.unit(4.5, "meters"),
  22551. weight: math.unit(3200, "lb"),
  22552. name: "Back",
  22553. image: {
  22554. source: "./media/characters/ty/back.svg",
  22555. extra: 1044 / 966,
  22556. bottom: 7.48 / 1049
  22557. }
  22558. },
  22559. },
  22560. [
  22561. {
  22562. name: "Normal",
  22563. height: math.unit(4.5, "meters"),
  22564. default: true
  22565. },
  22566. ]
  22567. ))
  22568. characterMakers.push(() => makeCharacter(
  22569. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22570. {
  22571. front: {
  22572. height: math.unit(5 + 4 / 12, "feet"),
  22573. weight: math.unit(115, "lb"),
  22574. name: "Front",
  22575. image: {
  22576. source: "./media/characters/rocky/front.svg",
  22577. extra: 1012 / 975,
  22578. bottom: 54 / 1066
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Normal",
  22585. height: math.unit(5 + 4 / 12, "feet"),
  22586. default: true
  22587. },
  22588. ]
  22589. ))
  22590. characterMakers.push(() => makeCharacter(
  22591. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22592. {
  22593. upright: {
  22594. height: math.unit(6, "meters"),
  22595. weight: math.unit(4000, "kg"),
  22596. name: "Upright",
  22597. image: {
  22598. source: "./media/characters/ruin/upright.svg",
  22599. extra: 668 / 661,
  22600. bottom: 42 / 799.8396
  22601. }
  22602. },
  22603. },
  22604. [
  22605. {
  22606. name: "Normal",
  22607. height: math.unit(6, "meters"),
  22608. default: true
  22609. },
  22610. ]
  22611. ))
  22612. characterMakers.push(() => makeCharacter(
  22613. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22614. {
  22615. front: {
  22616. height: math.unit(5, "feet"),
  22617. weight: math.unit(106, "lb"),
  22618. name: "Front",
  22619. image: {
  22620. source: "./media/characters/robin/front.svg",
  22621. extra: 862 / 799,
  22622. bottom: 42.4 / 914.8856
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(5, "feet"),
  22630. default: true
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22636. {
  22637. side: {
  22638. height: math.unit(3, "feet"),
  22639. weight: math.unit(225, "lb"),
  22640. name: "Side",
  22641. image: {
  22642. source: "./media/characters/saian/side.svg",
  22643. extra: 566 / 356,
  22644. bottom: 79.7 / 643
  22645. }
  22646. },
  22647. maw: {
  22648. height: math.unit(2.85, "feet"),
  22649. name: "Maw",
  22650. image: {
  22651. source: "./media/characters/saian/maw.svg"
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(3, "feet"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22665. {
  22666. side: {
  22667. height: math.unit(8, "feet"),
  22668. weight: math.unit(300, "lb"),
  22669. name: "Side",
  22670. image: {
  22671. source: "./media/characters/equus-silvermane/side.svg",
  22672. extra: 2176 / 2050,
  22673. bottom: 65.7 / 2245
  22674. }
  22675. },
  22676. front: {
  22677. height: math.unit(8, "feet"),
  22678. weight: math.unit(300, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/equus-silvermane/front.svg",
  22682. extra: 4633 / 4400,
  22683. bottom: 71.3 / 4706.915
  22684. }
  22685. },
  22686. sideStepping: {
  22687. height: math.unit(8, "feet"),
  22688. weight: math.unit(300, "lb"),
  22689. name: "Side (Stepping)",
  22690. image: {
  22691. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22692. extra: 1968 / 1860,
  22693. bottom: 16.4 / 1989
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(8, "feet")
  22701. },
  22702. {
  22703. name: "Minimacro",
  22704. height: math.unit(75, "feet"),
  22705. default: true
  22706. },
  22707. {
  22708. name: "Macro",
  22709. height: math.unit(150, "feet")
  22710. },
  22711. {
  22712. name: "Macro+",
  22713. height: math.unit(1000, "feet")
  22714. },
  22715. {
  22716. name: "Megamacro",
  22717. height: math.unit(1, "mile")
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22723. {
  22724. side: {
  22725. height: math.unit(20, "feet"),
  22726. weight: math.unit(30000, "kg"),
  22727. name: "Side",
  22728. image: {
  22729. source: "./media/characters/windar/side.svg",
  22730. extra: 1491 / 1248,
  22731. bottom: 82.56 / 1568
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(20, "feet"),
  22739. default: true
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22745. {
  22746. side: {
  22747. height: math.unit(15.66, "feet"),
  22748. weight: math.unit(150, "lb"),
  22749. name: "Side",
  22750. image: {
  22751. source: "./media/characters/melody/side.svg",
  22752. extra: 1097 / 944,
  22753. bottom: 11.8 / 1109
  22754. }
  22755. },
  22756. sideOutfit: {
  22757. height: math.unit(15.66, "feet"),
  22758. weight: math.unit(150, "lb"),
  22759. name: "Side (Outfit)",
  22760. image: {
  22761. source: "./media/characters/melody/side-outfit.svg",
  22762. extra: 1097 / 944,
  22763. bottom: 11.8 / 1109
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Normal",
  22770. height: math.unit(15.66, "feet"),
  22771. default: true
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(8, "feet"),
  22780. weight: math.unit(325, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/windera/front.svg",
  22784. extra: 3180 / 2845,
  22785. bottom: 178 / 3365
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Normal",
  22792. height: math.unit(8, "feet"),
  22793. default: true
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22799. {
  22800. front: {
  22801. height: math.unit(28.75, "feet"),
  22802. weight: math.unit(2000, "kg"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/sonear/front.svg",
  22806. extra: 1041.1 / 964.9,
  22807. bottom: 53.7 / 1096.6
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(28.75, "feet"),
  22815. default: true
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22821. {
  22822. side: {
  22823. height: math.unit(25.5, "feet"),
  22824. weight: math.unit(23000, "kg"),
  22825. name: "Side",
  22826. image: {
  22827. source: "./media/characters/kanara/side.svg"
  22828. }
  22829. },
  22830. },
  22831. [
  22832. {
  22833. name: "Normal",
  22834. height: math.unit(25.5, "feet"),
  22835. default: true
  22836. },
  22837. ]
  22838. ))
  22839. characterMakers.push(() => makeCharacter(
  22840. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22841. {
  22842. side: {
  22843. height: math.unit(10, "feet"),
  22844. weight: math.unit(1000, "kg"),
  22845. name: "Side",
  22846. image: {
  22847. source: "./media/characters/ereus/side.svg",
  22848. extra: 1157 / 959,
  22849. bottom: 153 / 1312.5
  22850. }
  22851. },
  22852. },
  22853. [
  22854. {
  22855. name: "Normal",
  22856. height: math.unit(10, "feet"),
  22857. default: true
  22858. },
  22859. ]
  22860. ))
  22861. characterMakers.push(() => makeCharacter(
  22862. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22863. {
  22864. side: {
  22865. height: math.unit(4.5, "feet"),
  22866. weight: math.unit(500, "lb"),
  22867. name: "Side",
  22868. image: {
  22869. source: "./media/characters/e-ter/side.svg",
  22870. extra: 1550 / 1248,
  22871. bottom: 146 / 1694
  22872. }
  22873. },
  22874. },
  22875. [
  22876. {
  22877. name: "Normal",
  22878. height: math.unit(4.5, "feet"),
  22879. default: true
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22885. {
  22886. side: {
  22887. height: math.unit(9.7, "feet"),
  22888. weight: math.unit(4000, "kg"),
  22889. name: "Side",
  22890. image: {
  22891. source: "./media/characters/yamie/side.svg"
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(9.7, "feet"),
  22899. default: true
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(50, "feet"),
  22908. weight: math.unit(50000, "kg"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/anders/front.svg",
  22912. extra: 570 / 539,
  22913. bottom: 14.7 / 586.7
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Large",
  22920. height: math.unit(50, "feet")
  22921. },
  22922. {
  22923. name: "Macro",
  22924. height: math.unit(2000, "feet"),
  22925. default: true
  22926. },
  22927. {
  22928. name: "Megamacro",
  22929. height: math.unit(12, "miles")
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22935. {
  22936. front: {
  22937. height: math.unit(7 + 2 / 12, "feet"),
  22938. weight: math.unit(300, "lb"),
  22939. name: "Front",
  22940. image: {
  22941. source: "./media/characters/reban/front.svg",
  22942. extra: 1287/1212,
  22943. bottom: 148/1435
  22944. }
  22945. },
  22946. head: {
  22947. height: math.unit(1.95, "feet"),
  22948. name: "Head",
  22949. image: {
  22950. source: "./media/characters/reban/head.svg"
  22951. }
  22952. },
  22953. maw: {
  22954. height: math.unit(0.95, "feet"),
  22955. name: "Maw",
  22956. image: {
  22957. source: "./media/characters/reban/maw.svg"
  22958. }
  22959. },
  22960. foot: {
  22961. height: math.unit(1.65, "feet"),
  22962. name: "Foot",
  22963. image: {
  22964. source: "./media/characters/reban/foot.svg"
  22965. }
  22966. },
  22967. dick: {
  22968. height: math.unit(7 / 5, "feet"),
  22969. name: "Dick",
  22970. image: {
  22971. source: "./media/characters/reban/dick.svg"
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Natural Height",
  22978. height: math.unit(7 + 2 / 12, "feet")
  22979. },
  22980. {
  22981. name: "Macro",
  22982. height: math.unit(500, "feet"),
  22983. default: true
  22984. },
  22985. {
  22986. name: "Canon Height",
  22987. height: math.unit(50, "AU")
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(6, "feet"),
  22996. weight: math.unit(150, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/terrance-keayes/front.svg",
  23000. extra: 1.005,
  23001. bottom: 151 / 1615
  23002. }
  23003. },
  23004. side: {
  23005. height: math.unit(6, "feet"),
  23006. weight: math.unit(150, "lb"),
  23007. name: "Side",
  23008. image: {
  23009. source: "./media/characters/terrance-keayes/side.svg",
  23010. extra: 1.005,
  23011. bottom: 129.4 / 1544
  23012. }
  23013. },
  23014. back: {
  23015. height: math.unit(6, "feet"),
  23016. weight: math.unit(150, "lb"),
  23017. name: "Back",
  23018. image: {
  23019. source: "./media/characters/terrance-keayes/back.svg",
  23020. extra: 1.005,
  23021. bottom: 58.4 / 1557.3
  23022. }
  23023. },
  23024. dick: {
  23025. height: math.unit(6 * 0.208, "feet"),
  23026. name: "Dick",
  23027. image: {
  23028. source: "./media/characters/terrance-keayes/dick.svg"
  23029. }
  23030. },
  23031. },
  23032. [
  23033. {
  23034. name: "Canon Height",
  23035. height: math.unit(35, "miles"),
  23036. default: true
  23037. },
  23038. ]
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23042. {
  23043. front: {
  23044. height: math.unit(6, "feet"),
  23045. weight: math.unit(150, "lb"),
  23046. name: "Front",
  23047. image: {
  23048. source: "./media/characters/ofelia/front.svg",
  23049. extra: 1130/1117,
  23050. bottom: 91/1221
  23051. }
  23052. },
  23053. back: {
  23054. height: math.unit(6, "feet"),
  23055. weight: math.unit(150, "lb"),
  23056. name: "Back",
  23057. image: {
  23058. source: "./media/characters/ofelia/back.svg",
  23059. extra: 1172/1159,
  23060. bottom: 28/1200
  23061. }
  23062. },
  23063. maw: {
  23064. height: math.unit(1, "feet"),
  23065. name: "Maw",
  23066. image: {
  23067. source: "./media/characters/ofelia/maw.svg"
  23068. }
  23069. },
  23070. foot: {
  23071. height: math.unit(1.949, "feet"),
  23072. name: "Foot",
  23073. image: {
  23074. source: "./media/characters/ofelia/foot.svg"
  23075. }
  23076. },
  23077. },
  23078. [
  23079. {
  23080. name: "Canon Height",
  23081. height: math.unit(2000, "miles"),
  23082. default: true
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23088. {
  23089. front: {
  23090. height: math.unit(6, "feet"),
  23091. weight: math.unit(150, "lb"),
  23092. name: "Front",
  23093. image: {
  23094. source: "./media/characters/samuel/front.svg",
  23095. extra: 265 / 258,
  23096. bottom: 2 / 266.1566
  23097. }
  23098. },
  23099. },
  23100. [
  23101. {
  23102. name: "Macro",
  23103. height: math.unit(100, "feet"),
  23104. default: true
  23105. },
  23106. {
  23107. name: "Full Size",
  23108. height: math.unit(1000, "miles")
  23109. },
  23110. ]
  23111. ))
  23112. characterMakers.push(() => makeCharacter(
  23113. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23114. {
  23115. front: {
  23116. height: math.unit(6, "feet"),
  23117. weight: math.unit(300, "lb"),
  23118. name: "Front",
  23119. image: {
  23120. source: "./media/characters/beishir-kiel/front.svg",
  23121. extra: 569 / 547,
  23122. bottom: 41.9 / 609
  23123. }
  23124. },
  23125. maw: {
  23126. height: math.unit(6 * 0.202, "feet"),
  23127. name: "Maw",
  23128. image: {
  23129. source: "./media/characters/beishir-kiel/maw.svg"
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Macro",
  23136. height: math.unit(300, "feet"),
  23137. default: true
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23143. {
  23144. front: {
  23145. height: math.unit(5 + 7/12, "feet"),
  23146. weight: math.unit(120, "lb"),
  23147. name: "Front",
  23148. image: {
  23149. source: "./media/characters/logan-grey/front.svg",
  23150. extra: 1836/1738,
  23151. bottom: 108/1944
  23152. }
  23153. },
  23154. back: {
  23155. height: math.unit(5 + 7/12, "feet"),
  23156. weight: math.unit(120, "lb"),
  23157. name: "Back",
  23158. image: {
  23159. source: "./media/characters/logan-grey/back.svg",
  23160. extra: 1880/1794,
  23161. bottom: 24/1904
  23162. }
  23163. },
  23164. frontSfw: {
  23165. height: math.unit(5 + 7/12, "feet"),
  23166. weight: math.unit(120, "lb"),
  23167. name: "Front (SFW)",
  23168. image: {
  23169. source: "./media/characters/logan-grey/front-sfw.svg",
  23170. extra: 1836/1738,
  23171. bottom: 108/1944
  23172. }
  23173. },
  23174. backSfw: {
  23175. height: math.unit(5 + 7/12, "feet"),
  23176. weight: math.unit(120, "lb"),
  23177. name: "Back (SFW)",
  23178. image: {
  23179. source: "./media/characters/logan-grey/back-sfw.svg",
  23180. extra: 1880/1794,
  23181. bottom: 24/1904
  23182. }
  23183. },
  23184. hands: {
  23185. height: math.unit(0.84, "feet"),
  23186. name: "Hands",
  23187. image: {
  23188. source: "./media/characters/logan-grey/hands.svg"
  23189. }
  23190. },
  23191. paws: {
  23192. height: math.unit(0.72, "feet"),
  23193. name: "Paws",
  23194. image: {
  23195. source: "./media/characters/logan-grey/paws.svg"
  23196. }
  23197. },
  23198. cock: {
  23199. height: math.unit(1.45, "feet"),
  23200. name: "Cock",
  23201. image: {
  23202. source: "./media/characters/logan-grey/cock.svg"
  23203. }
  23204. },
  23205. cockAlt: {
  23206. height: math.unit(1.437, "feet"),
  23207. name: "Cock (alt)",
  23208. image: {
  23209. source: "./media/characters/logan-grey/cock-alt.svg"
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(5 + 8 / 12, "feet")
  23217. },
  23218. {
  23219. name: "The 500 Foot Femboy",
  23220. height: math.unit(500, "feet"),
  23221. default: true
  23222. },
  23223. {
  23224. name: "Megmacro",
  23225. height: math.unit(20, "miles")
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(8 + 2 / 12, "feet"),
  23234. weight: math.unit(275, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/draganta/front.svg",
  23238. extra: 1177 / 1135,
  23239. bottom: 33.46 / 1212.1
  23240. }
  23241. },
  23242. },
  23243. [
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(8 + 6 / 12, "feet"),
  23247. default: true
  23248. },
  23249. {
  23250. name: "Macro",
  23251. height: math.unit(150, "feet")
  23252. },
  23253. {
  23254. name: "Megamacro",
  23255. height: math.unit(1000, "miles")
  23256. },
  23257. ]
  23258. ))
  23259. characterMakers.push(() => makeCharacter(
  23260. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23261. {
  23262. front: {
  23263. height: math.unit(1.72, "m"),
  23264. weight: math.unit(80, "lb"),
  23265. name: "Front",
  23266. image: {
  23267. source: "./media/characters/voski/front.svg",
  23268. extra: 2076.22 / 2022.4,
  23269. bottom: 102.7 / 2177.3866
  23270. }
  23271. },
  23272. frontFlaccid: {
  23273. height: math.unit(1.72, "m"),
  23274. weight: math.unit(80, "lb"),
  23275. name: "Front (Flaccid)",
  23276. image: {
  23277. source: "./media/characters/voski/front-flaccid.svg",
  23278. extra: 2076.22 / 2022.4,
  23279. bottom: 102.7 / 2177.3866
  23280. }
  23281. },
  23282. frontErect: {
  23283. height: math.unit(1.72, "m"),
  23284. weight: math.unit(80, "lb"),
  23285. name: "Front (Erect)",
  23286. image: {
  23287. source: "./media/characters/voski/front-erect.svg",
  23288. extra: 2076.22 / 2022.4,
  23289. bottom: 102.7 / 2177.3866
  23290. }
  23291. },
  23292. back: {
  23293. height: math.unit(1.72, "m"),
  23294. weight: math.unit(80, "lb"),
  23295. name: "Back",
  23296. image: {
  23297. source: "./media/characters/voski/back.svg",
  23298. extra: 2104 / 2051,
  23299. bottom: 10.45 / 2113.63
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(1.72, "m")
  23307. },
  23308. {
  23309. name: "Macro",
  23310. height: math.unit(55, "m"),
  23311. default: true
  23312. },
  23313. {
  23314. name: "Macro+",
  23315. height: math.unit(300, "m")
  23316. },
  23317. {
  23318. name: "Macro++",
  23319. height: math.unit(700, "m")
  23320. },
  23321. {
  23322. name: "Macro+++",
  23323. height: math.unit(4500, "m")
  23324. },
  23325. {
  23326. name: "Macro++++",
  23327. height: math.unit(45, "km")
  23328. },
  23329. {
  23330. name: "Macro+++++",
  23331. height: math.unit(1220, "km")
  23332. },
  23333. ]
  23334. ))
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(2.3, "m"),
  23340. weight: math.unit(304, "kg"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/icowom-lee/front.svg",
  23344. extra: 985 / 955,
  23345. bottom: 25.4 / 1012
  23346. }
  23347. },
  23348. fronttentacles: {
  23349. height: math.unit(2.3, "m"),
  23350. weight: math.unit(304, "kg"),
  23351. name: "Front-tentacles",
  23352. image: {
  23353. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23354. extra: 985 / 955,
  23355. bottom: 25.4 / 1012
  23356. }
  23357. },
  23358. back: {
  23359. height: math.unit(2.3, "m"),
  23360. weight: math.unit(304, "kg"),
  23361. name: "Back",
  23362. image: {
  23363. source: "./media/characters/icowom-lee/back.svg",
  23364. extra: 975 / 954,
  23365. bottom: 9.5 / 985
  23366. }
  23367. },
  23368. backtentacles: {
  23369. height: math.unit(2.3, "m"),
  23370. weight: math.unit(304, "kg"),
  23371. name: "Back-tentacles",
  23372. image: {
  23373. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23374. extra: 975 / 954,
  23375. bottom: 9.5 / 985
  23376. }
  23377. },
  23378. frontDressed: {
  23379. height: math.unit(2.3, "m"),
  23380. weight: math.unit(304, "kg"),
  23381. name: "Front (Dressed)",
  23382. image: {
  23383. source: "./media/characters/icowom-lee/front-dressed.svg",
  23384. extra: 3076 / 2933,
  23385. bottom: 51.4 / 3125.1889
  23386. }
  23387. },
  23388. rump: {
  23389. height: math.unit(0.776, "meters"),
  23390. name: "Rump",
  23391. image: {
  23392. source: "./media/characters/icowom-lee/rump.svg"
  23393. }
  23394. },
  23395. genitals: {
  23396. height: math.unit(0.78, "meters"),
  23397. name: "Genitals",
  23398. image: {
  23399. source: "./media/characters/icowom-lee/genitals.svg"
  23400. }
  23401. },
  23402. },
  23403. [
  23404. {
  23405. name: "Normal",
  23406. height: math.unit(2.3, "meters"),
  23407. default: true
  23408. },
  23409. {
  23410. name: "Macro",
  23411. height: math.unit(94, "meters"),
  23412. default: true
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23418. {
  23419. front: {
  23420. height: math.unit(22, "meters"),
  23421. weight: math.unit(21000, "kg"),
  23422. name: "Front",
  23423. image: {
  23424. source: "./media/characters/shock-diamond/front.svg",
  23425. extra: 2204 / 2053,
  23426. bottom: 65 / 2239.47
  23427. }
  23428. },
  23429. frontNude: {
  23430. height: math.unit(22, "meters"),
  23431. weight: math.unit(21000, "kg"),
  23432. name: "Front (Nude)",
  23433. image: {
  23434. source: "./media/characters/shock-diamond/front-nude.svg",
  23435. extra: 2514 / 2285,
  23436. bottom: 13 / 2527.56
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Normal",
  23443. height: math.unit(3, "meters")
  23444. },
  23445. {
  23446. name: "Macro",
  23447. height: math.unit(22, "meters"),
  23448. default: true
  23449. },
  23450. ]
  23451. ))
  23452. characterMakers.push(() => makeCharacter(
  23453. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23454. {
  23455. front: {
  23456. height: math.unit(5 + 4 / 12, "feet"),
  23457. weight: math.unit(120, "lb"),
  23458. name: "Front",
  23459. image: {
  23460. source: "./media/characters/rory/front.svg",
  23461. extra: 1318/1241,
  23462. bottom: 42/1360
  23463. }
  23464. },
  23465. back: {
  23466. height: math.unit(5 + 4 / 12, "feet"),
  23467. weight: math.unit(120, "lb"),
  23468. name: "Back",
  23469. image: {
  23470. source: "./media/characters/rory/back.svg",
  23471. extra: 1318/1241,
  23472. bottom: 42/1360
  23473. }
  23474. },
  23475. butt: {
  23476. height: math.unit(1.74, "feet"),
  23477. name: "Butt",
  23478. image: {
  23479. source: "./media/characters/rory/butt.svg"
  23480. }
  23481. },
  23482. dick: {
  23483. height: math.unit(1.02, "feet"),
  23484. name: "Dick",
  23485. image: {
  23486. source: "./media/characters/rory/dick.svg"
  23487. }
  23488. },
  23489. paws: {
  23490. height: math.unit(1, "feet"),
  23491. name: "Paws",
  23492. image: {
  23493. source: "./media/characters/rory/paws.svg"
  23494. }
  23495. },
  23496. frontAlt: {
  23497. height: math.unit(5 + 4 / 12, "feet"),
  23498. weight: math.unit(120, "lb"),
  23499. name: "Front (Alt)",
  23500. image: {
  23501. source: "./media/characters/rory/front-alt.svg",
  23502. extra: 589 / 556,
  23503. bottom: 45.7 / 635.76
  23504. }
  23505. },
  23506. frontAltNude: {
  23507. height: math.unit(5 + 4 / 12, "feet"),
  23508. weight: math.unit(120, "lb"),
  23509. name: "Front (Alt, Nude)",
  23510. image: {
  23511. source: "./media/characters/rory/front-alt-nude.svg",
  23512. extra: 589 / 556,
  23513. bottom: 45.7 / 635.76
  23514. }
  23515. },
  23516. side: {
  23517. height: math.unit(5 + 4 / 12, "feet"),
  23518. weight: math.unit(120, "lb"),
  23519. name: "Side",
  23520. image: {
  23521. source: "./media/characters/rory/side.svg",
  23522. extra: 597 / 564,
  23523. bottom: 55 / 653
  23524. }
  23525. },
  23526. backAlt: {
  23527. height: math.unit(5 + 4 / 12, "feet"),
  23528. weight: math.unit(120, "lb"),
  23529. name: "Back (Alt)",
  23530. image: {
  23531. source: "./media/characters/rory/back-alt.svg",
  23532. extra: 620 / 585,
  23533. bottom: 8.86 / 630.43
  23534. }
  23535. },
  23536. dickAlt: {
  23537. height: math.unit(0.86, "feet"),
  23538. name: "Dick (Alt)",
  23539. image: {
  23540. source: "./media/characters/rory/dick-alt.svg"
  23541. }
  23542. },
  23543. },
  23544. [
  23545. {
  23546. name: "Normal",
  23547. height: math.unit(5 + 4 / 12, "feet"),
  23548. default: true
  23549. },
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(100, "feet")
  23553. },
  23554. {
  23555. name: "Macro+",
  23556. height: math.unit(140, "feet")
  23557. },
  23558. {
  23559. name: "Macro++",
  23560. height: math.unit(300, "feet")
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23566. {
  23567. front: {
  23568. height: math.unit(5 + 9 / 12, "feet"),
  23569. weight: math.unit(190, "lb"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/sprisk/front.svg",
  23573. extra: 1225 / 1180,
  23574. bottom: 42.7 / 1266.4
  23575. }
  23576. },
  23577. frontNsfw: {
  23578. height: math.unit(5 + 9 / 12, "feet"),
  23579. weight: math.unit(190, "lb"),
  23580. name: "Front (NSFW)",
  23581. image: {
  23582. source: "./media/characters/sprisk/front-nsfw.svg",
  23583. extra: 1225 / 1180,
  23584. bottom: 42.7 / 1266.4
  23585. }
  23586. },
  23587. back: {
  23588. height: math.unit(5 + 9 / 12, "feet"),
  23589. weight: math.unit(190, "lb"),
  23590. name: "Back",
  23591. image: {
  23592. source: "./media/characters/sprisk/back.svg",
  23593. extra: 1247 / 1200,
  23594. bottom: 5.6 / 1253.04
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Tiny",
  23601. height: math.unit(2, "inches")
  23602. },
  23603. {
  23604. name: "Normal",
  23605. height: math.unit(5 + 9 / 12, "feet"),
  23606. default: true
  23607. },
  23608. {
  23609. name: "Mini Macro",
  23610. height: math.unit(18, "feet")
  23611. },
  23612. {
  23613. name: "Macro",
  23614. height: math.unit(100, "feet")
  23615. },
  23616. {
  23617. name: "MACRO",
  23618. height: math.unit(50, "miles")
  23619. },
  23620. {
  23621. name: "M A C R O",
  23622. height: math.unit(300, "miles")
  23623. },
  23624. ]
  23625. ))
  23626. characterMakers.push(() => makeCharacter(
  23627. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23628. {
  23629. side: {
  23630. height: math.unit(15.6, "meters"),
  23631. weight: math.unit(700000, "kg"),
  23632. name: "Side",
  23633. image: {
  23634. source: "./media/characters/bunsen/side.svg",
  23635. extra: 1644 / 358
  23636. }
  23637. },
  23638. foot: {
  23639. height: math.unit(1.611 * 1644 / 358, "meter"),
  23640. name: "Foot",
  23641. image: {
  23642. source: "./media/characters/bunsen/foot.svg"
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Small",
  23649. height: math.unit(10, "feet")
  23650. },
  23651. {
  23652. name: "Normal",
  23653. height: math.unit(15.6, "meters"),
  23654. default: true
  23655. },
  23656. ]
  23657. ))
  23658. characterMakers.push(() => makeCharacter(
  23659. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23660. {
  23661. front: {
  23662. height: math.unit(4 + 11 / 12, "feet"),
  23663. weight: math.unit(140, "lb"),
  23664. name: "Front",
  23665. image: {
  23666. source: "./media/characters/sesh/front.svg",
  23667. extra: 3420 / 3231,
  23668. bottom: 72 / 3949.5
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(4 + 11 / 12, "feet")
  23676. },
  23677. {
  23678. name: "Grown",
  23679. height: math.unit(15, "feet"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(1500, "feet")
  23685. },
  23686. {
  23687. name: "Megamacro",
  23688. height: math.unit(30, "miles")
  23689. },
  23690. {
  23691. name: "Continental",
  23692. height: math.unit(3000, "miles")
  23693. },
  23694. {
  23695. name: "Gravity Mass",
  23696. height: math.unit(300000, "miles")
  23697. },
  23698. {
  23699. name: "Planet Buster",
  23700. height: math.unit(30000000, "miles")
  23701. },
  23702. {
  23703. name: "Big",
  23704. height: math.unit(3000000000, "miles")
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23710. {
  23711. front: {
  23712. height: math.unit(9, "feet"),
  23713. weight: math.unit(350, "lb"),
  23714. name: "Front",
  23715. image: {
  23716. source: "./media/characters/pepper/front.svg",
  23717. extra: 1448 / 1312,
  23718. bottom: 9.4 / 1457.88
  23719. }
  23720. },
  23721. back: {
  23722. height: math.unit(9, "feet"),
  23723. weight: math.unit(350, "lb"),
  23724. name: "Back",
  23725. image: {
  23726. source: "./media/characters/pepper/back.svg",
  23727. extra: 1423 / 1300,
  23728. bottom: 4.6 / 1429
  23729. }
  23730. },
  23731. maw: {
  23732. height: math.unit(0.932, "feet"),
  23733. name: "Maw",
  23734. image: {
  23735. source: "./media/characters/pepper/maw.svg"
  23736. }
  23737. },
  23738. },
  23739. [
  23740. {
  23741. name: "Normal",
  23742. height: math.unit(9, "feet"),
  23743. default: true
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(6, "feet"),
  23752. weight: math.unit(150, "lb"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/maelstrom/front.svg",
  23756. extra: 2100 / 1883,
  23757. bottom: 94 / 2196.7
  23758. }
  23759. },
  23760. },
  23761. [
  23762. {
  23763. name: "Less Kaiju",
  23764. height: math.unit(200, "feet")
  23765. },
  23766. {
  23767. name: "Kaiju",
  23768. height: math.unit(400, "feet"),
  23769. default: true
  23770. },
  23771. {
  23772. name: "Kaiju-er",
  23773. height: math.unit(600, "feet")
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(6 + 5 / 12, "feet"),
  23782. weight: math.unit(180, "lb"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/lexir/front.svg",
  23786. extra: 180 / 172,
  23787. bottom: 12 / 192
  23788. }
  23789. },
  23790. back: {
  23791. height: math.unit(6 + 5 / 12, "feet"),
  23792. weight: math.unit(180, "lb"),
  23793. name: "Back",
  23794. image: {
  23795. source: "./media/characters/lexir/back.svg",
  23796. extra: 1273/1201,
  23797. bottom: 39/1312
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Very Smal",
  23804. height: math.unit(1, "nm")
  23805. },
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(6 + 5 / 12, "feet"),
  23809. default: true
  23810. },
  23811. {
  23812. name: "Macro",
  23813. height: math.unit(1, "mile")
  23814. },
  23815. {
  23816. name: "Megamacro",
  23817. height: math.unit(50, "miles")
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23823. {
  23824. front: {
  23825. height: math.unit(1.5, "meters"),
  23826. weight: math.unit(100, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/maksio/front.svg",
  23830. extra: 1549 / 1531,
  23831. bottom: 123.7 / 1674.5429
  23832. }
  23833. },
  23834. back: {
  23835. height: math.unit(1.5, "meters"),
  23836. weight: math.unit(100, "lb"),
  23837. name: "Back",
  23838. image: {
  23839. source: "./media/characters/maksio/back.svg",
  23840. extra: 1541 / 1509,
  23841. bottom: 97 / 1639
  23842. }
  23843. },
  23844. hand: {
  23845. height: math.unit(0.621, "feet"),
  23846. name: "Hand",
  23847. image: {
  23848. source: "./media/characters/maksio/hand.svg"
  23849. }
  23850. },
  23851. foot: {
  23852. height: math.unit(1.611, "feet"),
  23853. name: "Foot",
  23854. image: {
  23855. source: "./media/characters/maksio/foot.svg"
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Shrunken",
  23862. height: math.unit(10, "cm")
  23863. },
  23864. {
  23865. name: "Normal",
  23866. height: math.unit(150, "cm"),
  23867. default: true
  23868. },
  23869. ]
  23870. ))
  23871. characterMakers.push(() => makeCharacter(
  23872. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23873. {
  23874. front: {
  23875. height: math.unit(100, "feet"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/erza-bear/front.svg",
  23879. extra: 2449 / 2390,
  23880. bottom: 46 / 2494
  23881. }
  23882. },
  23883. back: {
  23884. height: math.unit(100, "feet"),
  23885. name: "Back",
  23886. image: {
  23887. source: "./media/characters/erza-bear/back.svg",
  23888. extra: 2489 / 2430,
  23889. bottom: 85.4 / 2480
  23890. }
  23891. },
  23892. tail: {
  23893. height: math.unit(42, "feet"),
  23894. name: "Tail",
  23895. image: {
  23896. source: "./media/characters/erza-bear/tail.svg"
  23897. }
  23898. },
  23899. tongue: {
  23900. height: math.unit(8, "feet"),
  23901. name: "Tongue",
  23902. image: {
  23903. source: "./media/characters/erza-bear/tongue.svg"
  23904. }
  23905. },
  23906. dick: {
  23907. height: math.unit(10.5, "feet"),
  23908. name: "Dick",
  23909. image: {
  23910. source: "./media/characters/erza-bear/dick.svg"
  23911. }
  23912. },
  23913. dickVertical: {
  23914. height: math.unit(16.9, "feet"),
  23915. name: "Dick (Vertical)",
  23916. image: {
  23917. source: "./media/characters/erza-bear/dick-vertical.svg"
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Macro",
  23924. height: math.unit(100, "feet"),
  23925. default: true
  23926. },
  23927. ]
  23928. ))
  23929. characterMakers.push(() => makeCharacter(
  23930. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23931. {
  23932. front: {
  23933. height: math.unit(172, "cm"),
  23934. weight: math.unit(73, "kg"),
  23935. name: "Front",
  23936. image: {
  23937. source: "./media/characters/violet-flor/front.svg",
  23938. extra: 1530 / 1442,
  23939. bottom: 61.9 / 1588.8
  23940. }
  23941. },
  23942. back: {
  23943. height: math.unit(180, "cm"),
  23944. weight: math.unit(73, "kg"),
  23945. name: "Back",
  23946. image: {
  23947. source: "./media/characters/violet-flor/back.svg",
  23948. extra: 1692 / 1630,
  23949. bottom: 20 / 1712
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(172, "cm"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(6, "feet"),
  23966. weight: math.unit(220, "lb"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/lynn-rhea/front.svg",
  23970. extra: 310 / 273
  23971. }
  23972. },
  23973. back: {
  23974. height: math.unit(6, "feet"),
  23975. weight: math.unit(220, "lb"),
  23976. name: "Back",
  23977. image: {
  23978. source: "./media/characters/lynn-rhea/back.svg",
  23979. extra: 310 / 273
  23980. }
  23981. },
  23982. dicks: {
  23983. height: math.unit(0.9, "feet"),
  23984. name: "Dicks",
  23985. image: {
  23986. source: "./media/characters/lynn-rhea/dicks.svg"
  23987. }
  23988. },
  23989. slit: {
  23990. height: math.unit(0.4, "feet"),
  23991. name: "Slit",
  23992. image: {
  23993. source: "./media/characters/lynn-rhea/slit.svg"
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Micro",
  24000. height: math.unit(1, "inch")
  24001. },
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(60, "feet"),
  24005. default: true
  24006. },
  24007. {
  24008. name: "Megamacro",
  24009. height: math.unit(2, "miles")
  24010. },
  24011. {
  24012. name: "Gigamacro",
  24013. height: math.unit(3, "earths")
  24014. },
  24015. {
  24016. name: "Galactic",
  24017. height: math.unit(0.8, "galaxies")
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24023. {
  24024. front: {
  24025. height: math.unit(1600, "feet"),
  24026. weight: math.unit(85758785169, "kg"),
  24027. name: "Front",
  24028. image: {
  24029. source: "./media/characters/valathos/front.svg",
  24030. extra: 1451 / 1339
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Macro",
  24037. height: math.unit(1600, "feet"),
  24038. default: true
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24044. {
  24045. front: {
  24046. height: math.unit(7 + 5 / 12, "feet"),
  24047. weight: math.unit(300, "lb"),
  24048. name: "Front",
  24049. image: {
  24050. source: "./media/characters/azula/front.svg",
  24051. extra: 3208 / 2880,
  24052. bottom: 80.2 / 3277
  24053. }
  24054. },
  24055. back: {
  24056. height: math.unit(7 + 5 / 12, "feet"),
  24057. weight: math.unit(300, "lb"),
  24058. name: "Back",
  24059. image: {
  24060. source: "./media/characters/azula/back.svg",
  24061. extra: 3169 / 2822,
  24062. bottom: 150.6 / 3321
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(7 + 5 / 12, "feet"),
  24070. default: true
  24071. },
  24072. {
  24073. name: "Big",
  24074. height: math.unit(20, "feet")
  24075. },
  24076. ]
  24077. ))
  24078. characterMakers.push(() => makeCharacter(
  24079. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24080. {
  24081. front: {
  24082. height: math.unit(5 + 1 / 12, "feet"),
  24083. weight: math.unit(110, "lb"),
  24084. name: "Front",
  24085. image: {
  24086. source: "./media/characters/rupert/front.svg",
  24087. extra: 1549 / 1495,
  24088. bottom: 54.2 / 1604.4
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(5 + 1 / 12, "feet"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24102. {
  24103. front: {
  24104. height: math.unit(8 + 4 / 12, "feet"),
  24105. weight: math.unit(350, "lb"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/sheera-castellar/front.svg",
  24109. extra: 1957 / 1894,
  24110. bottom: 26.97 / 1975.017
  24111. }
  24112. },
  24113. side: {
  24114. height: math.unit(8 + 4 / 12, "feet"),
  24115. weight: math.unit(350, "lb"),
  24116. name: "Side",
  24117. image: {
  24118. source: "./media/characters/sheera-castellar/side.svg",
  24119. extra: 1957 / 1894
  24120. }
  24121. },
  24122. back: {
  24123. height: math.unit(8 + 4 / 12, "feet"),
  24124. weight: math.unit(350, "lb"),
  24125. name: "Back",
  24126. image: {
  24127. source: "./media/characters/sheera-castellar/back.svg",
  24128. extra: 1957 / 1894
  24129. }
  24130. },
  24131. angled: {
  24132. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24133. weight: math.unit(350, "lb"),
  24134. name: "Angled",
  24135. image: {
  24136. source: "./media/characters/sheera-castellar/angled.svg",
  24137. extra: 1807 / 1707,
  24138. bottom: 68 / 1875
  24139. }
  24140. },
  24141. genitals: {
  24142. height: math.unit(2.2, "feet"),
  24143. name: "Genitals",
  24144. image: {
  24145. source: "./media/characters/sheera-castellar/genitals.svg"
  24146. }
  24147. },
  24148. taur: {
  24149. height: math.unit(10 + 6/12, "feet"),
  24150. name: "Taur",
  24151. image: {
  24152. source: "./media/characters/sheera-castellar/taur.svg",
  24153. extra: 2017/1909,
  24154. bottom: 185/2202
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(8 + 4 / 12, "feet")
  24162. },
  24163. {
  24164. name: "Macro",
  24165. height: math.unit(150, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Macro+",
  24170. height: math.unit(800, "feet")
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(6, "feet"),
  24179. weight: math.unit(150, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/jaipur/front.svg",
  24183. extra: 3860 / 3731,
  24184. bottom: 287 / 4140
  24185. }
  24186. },
  24187. back: {
  24188. height: math.unit(6, "feet"),
  24189. weight: math.unit(150, "lb"),
  24190. name: "Back",
  24191. image: {
  24192. source: "./media/characters/jaipur/back.svg",
  24193. extra: 1637/1561,
  24194. bottom: 154/1791
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(1.85, "meters"),
  24202. default: true
  24203. },
  24204. {
  24205. name: "Macro",
  24206. height: math.unit(150, "meters")
  24207. },
  24208. {
  24209. name: "Macro+",
  24210. height: math.unit(0.5, "miles")
  24211. },
  24212. {
  24213. name: "Macro++",
  24214. height: math.unit(2.5, "miles")
  24215. },
  24216. {
  24217. name: "Macro+++",
  24218. height: math.unit(12, "miles")
  24219. },
  24220. {
  24221. name: "Macro++++",
  24222. height: math.unit(120, "miles")
  24223. },
  24224. {
  24225. name: "Macro+++++",
  24226. height: math.unit(1200, "miles")
  24227. },
  24228. ]
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24232. {
  24233. front: {
  24234. height: math.unit(6, "feet"),
  24235. weight: math.unit(150, "lb"),
  24236. name: "Front",
  24237. image: {
  24238. source: "./media/characters/sheila-wolf/front.svg",
  24239. extra: 1931 / 1808,
  24240. bottom: 29.5 / 1960
  24241. }
  24242. },
  24243. dick: {
  24244. height: math.unit(1.464, "feet"),
  24245. name: "Dick",
  24246. image: {
  24247. source: "./media/characters/sheila-wolf/dick.svg"
  24248. }
  24249. },
  24250. muzzle: {
  24251. height: math.unit(0.513, "feet"),
  24252. name: "Muzzle",
  24253. image: {
  24254. source: "./media/characters/sheila-wolf/muzzle.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Macro",
  24261. height: math.unit(70, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(32, "meters"),
  24271. weight: math.unit(300000, "kg"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/almor/front.svg",
  24275. extra: 1408 / 1322,
  24276. bottom: 94.6 / 1506.5
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Macro",
  24283. height: math.unit(32, "meters"),
  24284. default: true
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(7, "feet"),
  24293. weight: math.unit(200, "lb"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/silver/front.svg",
  24297. extra: 472.1 / 450.5,
  24298. bottom: 26.5 / 499.424
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Normal",
  24305. height: math.unit(7, "feet"),
  24306. default: true
  24307. },
  24308. {
  24309. name: "Macro",
  24310. height: math.unit(800, "feet")
  24311. },
  24312. {
  24313. name: "Megamacro",
  24314. height: math.unit(250, "miles")
  24315. },
  24316. ]
  24317. ))
  24318. characterMakers.push(() => makeCharacter(
  24319. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24320. {
  24321. front: {
  24322. height: math.unit(6, "feet"),
  24323. weight: math.unit(150, "lb"),
  24324. name: "Front",
  24325. image: {
  24326. source: "./media/characters/pliskin/front.svg",
  24327. extra: 1469 / 1359,
  24328. bottom: 70 / 1540
  24329. }
  24330. },
  24331. },
  24332. [
  24333. {
  24334. name: "Micro",
  24335. height: math.unit(3, "inches")
  24336. },
  24337. {
  24338. name: "Normal",
  24339. height: math.unit(5 + 11 / 12, "feet"),
  24340. default: true
  24341. },
  24342. {
  24343. name: "Macro",
  24344. height: math.unit(120, "feet")
  24345. },
  24346. ]
  24347. ))
  24348. characterMakers.push(() => makeCharacter(
  24349. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24350. {
  24351. front: {
  24352. height: math.unit(6, "feet"),
  24353. weight: math.unit(150, "lb"),
  24354. name: "Front",
  24355. image: {
  24356. source: "./media/characters/sammy/front.svg",
  24357. extra: 1193 / 1089,
  24358. bottom: 30.5 / 1226
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Macro",
  24365. height: math.unit(1700, "feet"),
  24366. default: true
  24367. },
  24368. {
  24369. name: "Examacro",
  24370. height: math.unit(2.5e9, "lightyears")
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24376. {
  24377. front: {
  24378. height: math.unit(21, "meters"),
  24379. weight: math.unit(12, "tonnes"),
  24380. name: "Front",
  24381. image: {
  24382. source: "./media/characters/kuru/front.svg",
  24383. extra: 4301 / 3785,
  24384. bottom: 371.3 / 4691
  24385. }
  24386. },
  24387. },
  24388. [
  24389. {
  24390. name: "Macro",
  24391. height: math.unit(21, "meters"),
  24392. default: true
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24398. {
  24399. front: {
  24400. height: math.unit(23, "meters"),
  24401. weight: math.unit(12.2, "tonnes"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/rakka/front.svg",
  24405. extra: 4670 / 4169,
  24406. bottom: 301 / 4968.7
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Macro",
  24413. height: math.unit(23, "meters"),
  24414. default: true
  24415. },
  24416. ]
  24417. ))
  24418. characterMakers.push(() => makeCharacter(
  24419. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24420. {
  24421. front: {
  24422. height: math.unit(6, "feet"),
  24423. weight: math.unit(150, "lb"),
  24424. name: "Front",
  24425. image: {
  24426. source: "./media/characters/rhys-feline/front.svg",
  24427. extra: 2488 / 2308,
  24428. bottom: 35.67 / 2519.19
  24429. }
  24430. },
  24431. },
  24432. [
  24433. {
  24434. name: "Really Small",
  24435. height: math.unit(1, "nm")
  24436. },
  24437. {
  24438. name: "Micro",
  24439. height: math.unit(4, "inches")
  24440. },
  24441. {
  24442. name: "Normal",
  24443. height: math.unit(4 + 10 / 12, "feet"),
  24444. default: true
  24445. },
  24446. {
  24447. name: "Macro",
  24448. height: math.unit(100, "feet")
  24449. },
  24450. {
  24451. name: "Megamacto",
  24452. height: math.unit(50, "miles")
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24458. {
  24459. side: {
  24460. height: math.unit(30, "feet"),
  24461. weight: math.unit(35000, "kg"),
  24462. name: "Side",
  24463. image: {
  24464. source: "./media/characters/alydar/side.svg",
  24465. extra: 234 / 222,
  24466. bottom: 6.5 / 241
  24467. }
  24468. },
  24469. front: {
  24470. height: math.unit(30, "feet"),
  24471. weight: math.unit(35000, "kg"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/alydar/front.svg",
  24475. extra: 223.37 / 210.2,
  24476. bottom: 22.3 / 246.76
  24477. }
  24478. },
  24479. top: {
  24480. height: math.unit(64.54, "feet"),
  24481. weight: math.unit(35000, "kg"),
  24482. name: "Top",
  24483. image: {
  24484. source: "./media/characters/alydar/top.svg"
  24485. }
  24486. },
  24487. anthro: {
  24488. height: math.unit(30, "feet"),
  24489. weight: math.unit(9000, "kg"),
  24490. name: "Anthro",
  24491. image: {
  24492. source: "./media/characters/alydar/anthro.svg",
  24493. extra: 432 / 421,
  24494. bottom: 7.18 / 440
  24495. }
  24496. },
  24497. maw: {
  24498. height: math.unit(11.693, "feet"),
  24499. name: "Maw",
  24500. image: {
  24501. source: "./media/characters/alydar/maw.svg"
  24502. }
  24503. },
  24504. head: {
  24505. height: math.unit(11.693, "feet"),
  24506. name: "Head",
  24507. image: {
  24508. source: "./media/characters/alydar/head.svg"
  24509. }
  24510. },
  24511. headAlt: {
  24512. height: math.unit(12.861, "feet"),
  24513. name: "Head (Alt)",
  24514. image: {
  24515. source: "./media/characters/alydar/head-alt.svg"
  24516. }
  24517. },
  24518. wing: {
  24519. height: math.unit(20.712, "feet"),
  24520. name: "Wing",
  24521. image: {
  24522. source: "./media/characters/alydar/wing.svg"
  24523. }
  24524. },
  24525. wingFeather: {
  24526. height: math.unit(9.662, "feet"),
  24527. name: "Wing Feather",
  24528. image: {
  24529. source: "./media/characters/alydar/wing-feather.svg"
  24530. }
  24531. },
  24532. countourFeather: {
  24533. height: math.unit(4.154, "feet"),
  24534. name: "Contour Feather",
  24535. image: {
  24536. source: "./media/characters/alydar/contour-feather.svg"
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Diplomatic",
  24543. height: math.unit(13, "feet"),
  24544. default: true
  24545. },
  24546. {
  24547. name: "Small",
  24548. height: math.unit(30, "feet")
  24549. },
  24550. {
  24551. name: "Normal",
  24552. height: math.unit(95, "feet"),
  24553. default: true
  24554. },
  24555. {
  24556. name: "Large",
  24557. height: math.unit(285, "feet")
  24558. },
  24559. {
  24560. name: "Incomprehensible",
  24561. height: math.unit(450, "megameters")
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24567. {
  24568. side: {
  24569. height: math.unit(11, "feet"),
  24570. weight: math.unit(1750, "kg"),
  24571. name: "Side",
  24572. image: {
  24573. source: "./media/characters/selicia/side.svg",
  24574. extra: 440 / 396,
  24575. bottom: 24.8 / 465.979
  24576. }
  24577. },
  24578. maw: {
  24579. height: math.unit(4.665, "feet"),
  24580. name: "Maw",
  24581. image: {
  24582. source: "./media/characters/selicia/maw.svg"
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(11, "feet"),
  24590. default: true
  24591. },
  24592. ]
  24593. ))
  24594. characterMakers.push(() => makeCharacter(
  24595. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24596. {
  24597. side: {
  24598. height: math.unit(2 + 6 / 12, "feet"),
  24599. weight: math.unit(30, "lb"),
  24600. name: "Side",
  24601. image: {
  24602. source: "./media/characters/layla/side.svg",
  24603. extra: 244 / 188,
  24604. bottom: 18.2 / 262.1
  24605. }
  24606. },
  24607. back: {
  24608. height: math.unit(2 + 6 / 12, "feet"),
  24609. weight: math.unit(30, "lb"),
  24610. name: "Back",
  24611. image: {
  24612. source: "./media/characters/layla/back.svg",
  24613. extra: 308 / 241.5,
  24614. bottom: 8.9 / 316.8
  24615. }
  24616. },
  24617. cumming: {
  24618. height: math.unit(2 + 6 / 12, "feet"),
  24619. weight: math.unit(30, "lb"),
  24620. name: "Cumming",
  24621. image: {
  24622. source: "./media/characters/layla/cumming.svg",
  24623. extra: 342 / 279,
  24624. bottom: 595 / 938
  24625. }
  24626. },
  24627. dickFlaccid: {
  24628. height: math.unit(2.595, "feet"),
  24629. name: "Flaccid Genitals",
  24630. image: {
  24631. source: "./media/characters/layla/dick-flaccid.svg"
  24632. }
  24633. },
  24634. dickErect: {
  24635. height: math.unit(2.359, "feet"),
  24636. name: "Erect Genitals",
  24637. image: {
  24638. source: "./media/characters/layla/dick-erect.svg"
  24639. }
  24640. },
  24641. dragon: {
  24642. height: math.unit(40, "feet"),
  24643. name: "Dragon",
  24644. image: {
  24645. source: "./media/characters/layla/dragon.svg",
  24646. extra: 610/535,
  24647. bottom: 367/977
  24648. }
  24649. },
  24650. taur: {
  24651. height: math.unit(30, "feet"),
  24652. name: "Taur",
  24653. image: {
  24654. source: "./media/characters/layla/taur.svg",
  24655. extra: 1268/1199,
  24656. bottom: 112/1380
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Micro",
  24663. height: math.unit(1, "inch")
  24664. },
  24665. {
  24666. name: "Small",
  24667. height: math.unit(1, "foot")
  24668. },
  24669. {
  24670. name: "Normal",
  24671. height: math.unit(2 + 6 / 12, "feet"),
  24672. default: true
  24673. },
  24674. {
  24675. name: "Macro",
  24676. height: math.unit(200, "feet")
  24677. },
  24678. {
  24679. name: "Megamacro",
  24680. height: math.unit(1000, "miles")
  24681. },
  24682. {
  24683. name: "Planetary",
  24684. height: math.unit(8000, "miles")
  24685. },
  24686. {
  24687. name: "True Layla",
  24688. height: math.unit(200000 * 7, "multiverses")
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24694. {
  24695. back: {
  24696. height: math.unit(10.5, "feet"),
  24697. weight: math.unit(800, "lb"),
  24698. name: "Back",
  24699. image: {
  24700. source: "./media/characters/knox/back.svg",
  24701. extra: 1486 / 1089,
  24702. bottom: 107 / 1601.4
  24703. }
  24704. },
  24705. side: {
  24706. height: math.unit(10.5, "feet"),
  24707. weight: math.unit(800, "lb"),
  24708. name: "Side",
  24709. image: {
  24710. source: "./media/characters/knox/side.svg",
  24711. extra: 244 / 218,
  24712. bottom: 14 / 260
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Compact",
  24719. height: math.unit(10.5, "feet"),
  24720. default: true
  24721. },
  24722. {
  24723. name: "Dynamax",
  24724. height: math.unit(210, "feet")
  24725. },
  24726. {
  24727. name: "Full Macro",
  24728. height: math.unit(850, "feet")
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(28, "feet"),
  24737. weight: math.unit(10500, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/kayda/front.svg",
  24741. extra: 1536 / 1428,
  24742. bottom: 68.7 / 1603
  24743. }
  24744. },
  24745. back: {
  24746. height: math.unit(28, "feet"),
  24747. weight: math.unit(10500, "lb"),
  24748. name: "Back",
  24749. image: {
  24750. source: "./media/characters/kayda/back.svg",
  24751. extra: 1557 / 1464,
  24752. bottom: 39.5 / 1597.49
  24753. }
  24754. },
  24755. dick: {
  24756. height: math.unit(3.858, "feet"),
  24757. name: "Dick",
  24758. image: {
  24759. source: "./media/characters/kayda/dick.svg"
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Macro",
  24766. height: math.unit(28, "feet"),
  24767. default: true
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(10 + 11 / 12, "feet"),
  24776. weight: math.unit(1400, "lb"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/brian/front.svg",
  24780. extra: 737 / 692,
  24781. bottom: 55.4 / 785
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Normal",
  24788. height: math.unit(10 + 11 / 12, "feet"),
  24789. default: true
  24790. },
  24791. ]
  24792. ))
  24793. characterMakers.push(() => makeCharacter(
  24794. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24795. {
  24796. front: {
  24797. height: math.unit(5 + 8 / 12, "feet"),
  24798. weight: math.unit(140, "lb"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/khemri/front.svg",
  24802. extra: 4780 / 4059,
  24803. bottom: 80.1 / 4859.25
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Micro",
  24810. height: math.unit(6, "inches")
  24811. },
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(5 + 8 / 12, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24821. {
  24822. front: {
  24823. height: math.unit(13, "feet"),
  24824. weight: math.unit(1700, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/felix-braveheart/front.svg",
  24828. extra: 1222 / 1157,
  24829. bottom: 53.2 / 1280
  24830. }
  24831. },
  24832. back: {
  24833. height: math.unit(13, "feet"),
  24834. weight: math.unit(1700, "lb"),
  24835. name: "Back",
  24836. image: {
  24837. source: "./media/characters/felix-braveheart/back.svg",
  24838. extra: 1277 / 1203,
  24839. bottom: 50.2 / 1327
  24840. }
  24841. },
  24842. feral: {
  24843. height: math.unit(6, "feet"),
  24844. weight: math.unit(400, "lb"),
  24845. name: "Feral",
  24846. image: {
  24847. source: "./media/characters/felix-braveheart/feral.svg",
  24848. extra: 682 / 625,
  24849. bottom: 6.9 / 688
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(13, "feet"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24863. {
  24864. side: {
  24865. height: math.unit(5 + 11 / 12, "feet"),
  24866. weight: math.unit(1400, "lb"),
  24867. name: "Side",
  24868. image: {
  24869. source: "./media/characters/shadow-blade/side.svg",
  24870. extra: 1726 / 1267,
  24871. bottom: 58.4 / 1785
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(5 + 11 / 12, "feet"),
  24879. default: true
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(1 + 6 / 12, "feet"),
  24888. weight: math.unit(25, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/karla-halldor/front.svg",
  24892. extra: 1459 / 1383,
  24893. bottom: 12 / 1472
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Normal",
  24900. height: math.unit(1 + 6 / 12, "feet"),
  24901. default: true
  24902. },
  24903. ]
  24904. ))
  24905. characterMakers.push(() => makeCharacter(
  24906. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24907. {
  24908. front: {
  24909. height: math.unit(6 + 2 / 12, "feet"),
  24910. weight: math.unit(160, "lb"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/ariam/front.svg",
  24914. extra: 1073/976,
  24915. bottom: 52/1125
  24916. }
  24917. },
  24918. back: {
  24919. height: math.unit(6 + 2/12, "feet"),
  24920. weight: math.unit(160, "lb"),
  24921. name: "Back",
  24922. image: {
  24923. source: "./media/characters/ariam/back.svg",
  24924. extra: 1103/1023,
  24925. bottom: 9/1112
  24926. }
  24927. },
  24928. dressed: {
  24929. height: math.unit(6 + 2/12, "feet"),
  24930. weight: math.unit(160, "lb"),
  24931. name: "Dressed",
  24932. image: {
  24933. source: "./media/characters/ariam/dressed.svg",
  24934. extra: 1099/1009,
  24935. bottom: 25/1124
  24936. }
  24937. },
  24938. squatting: {
  24939. height: math.unit(4.1, "feet"),
  24940. weight: math.unit(160, "lb"),
  24941. name: "Squatting",
  24942. image: {
  24943. source: "./media/characters/ariam/squatting.svg",
  24944. extra: 2617 / 2112,
  24945. bottom: 61.2 / 2681,
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Normal",
  24952. height: math.unit(6 + 2 / 12, "feet"),
  24953. default: true
  24954. },
  24955. {
  24956. name: "Normal+",
  24957. height: math.unit(4, "meters")
  24958. },
  24959. {
  24960. name: "Macro",
  24961. height: math.unit(50, "meters")
  24962. },
  24963. {
  24964. name: "Macro+",
  24965. height: math.unit(100, "meters")
  24966. },
  24967. {
  24968. name: "Megamacro",
  24969. height: math.unit(20, "km")
  24970. },
  24971. {
  24972. name: "Caretaker",
  24973. height: math.unit(444, "megameters")
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24979. {
  24980. front: {
  24981. height: math.unit(1.67, "meters"),
  24982. weight: math.unit(140, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24986. extra: 438 / 410,
  24987. bottom: 0.75 / 439
  24988. }
  24989. },
  24990. },
  24991. [
  24992. {
  24993. name: "Shrunken",
  24994. height: math.unit(7.6, "cm")
  24995. },
  24996. {
  24997. name: "Human Scale",
  24998. height: math.unit(1.67, "meters")
  24999. },
  25000. {
  25001. name: "Wolxi Scale",
  25002. height: math.unit(36.7, "meters"),
  25003. default: true
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25009. {
  25010. front: {
  25011. height: math.unit(1.73, "meters"),
  25012. weight: math.unit(240, "lb"),
  25013. name: "Front",
  25014. image: {
  25015. source: "./media/characters/izue-two-mothers/front.svg",
  25016. extra: 469 / 437,
  25017. bottom: 1.24 / 470.6
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Shrunken",
  25024. height: math.unit(7.86, "cm")
  25025. },
  25026. {
  25027. name: "Human Scale",
  25028. height: math.unit(1.73, "meters")
  25029. },
  25030. {
  25031. name: "Wolxi Scale",
  25032. height: math.unit(38, "meters"),
  25033. default: true
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(1.55, "meters"),
  25042. weight: math.unit(120, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/teeku-love-shack/front.svg",
  25046. extra: 387 / 362,
  25047. bottom: 1.51 / 388
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Shrunken",
  25054. height: math.unit(7, "cm")
  25055. },
  25056. {
  25057. name: "Human Scale",
  25058. height: math.unit(1.55, "meters")
  25059. },
  25060. {
  25061. name: "Wolxi Scale",
  25062. height: math.unit(34.1, "meters"),
  25063. default: true
  25064. },
  25065. ]
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25069. {
  25070. front: {
  25071. height: math.unit(1.83, "meters"),
  25072. weight: math.unit(135, "lb"),
  25073. name: "Front",
  25074. image: {
  25075. source: "./media/characters/dejma-the-red/front.svg",
  25076. extra: 480 / 458,
  25077. bottom: 1.8 / 482
  25078. }
  25079. },
  25080. },
  25081. [
  25082. {
  25083. name: "Shrunken",
  25084. height: math.unit(8.3, "cm")
  25085. },
  25086. {
  25087. name: "Human Scale",
  25088. height: math.unit(1.83, "meters")
  25089. },
  25090. {
  25091. name: "Wolxi Scale",
  25092. height: math.unit(40, "meters"),
  25093. default: true
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(1.78, "meters"),
  25102. weight: math.unit(65, "kg"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/aki/front.svg",
  25106. extra: 452 / 415
  25107. }
  25108. },
  25109. frontNsfw: {
  25110. height: math.unit(1.78, "meters"),
  25111. weight: math.unit(65, "kg"),
  25112. name: "Front (NSFW)",
  25113. image: {
  25114. source: "./media/characters/aki/front-nsfw.svg",
  25115. extra: 452 / 415
  25116. }
  25117. },
  25118. back: {
  25119. height: math.unit(1.78, "meters"),
  25120. weight: math.unit(65, "kg"),
  25121. name: "Back",
  25122. image: {
  25123. source: "./media/characters/aki/back.svg",
  25124. extra: 452 / 415
  25125. }
  25126. },
  25127. rump: {
  25128. height: math.unit(2.05, "feet"),
  25129. name: "Rump",
  25130. image: {
  25131. source: "./media/characters/aki/rump.svg"
  25132. }
  25133. },
  25134. dick: {
  25135. height: math.unit(0.95, "feet"),
  25136. name: "Dick",
  25137. image: {
  25138. source: "./media/characters/aki/dick.svg"
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Micro",
  25145. height: math.unit(15, "cm")
  25146. },
  25147. {
  25148. name: "Normal",
  25149. height: math.unit(178, "cm"),
  25150. default: true
  25151. },
  25152. {
  25153. name: "Macro",
  25154. height: math.unit(214, "m")
  25155. },
  25156. {
  25157. name: "Macro+",
  25158. height: math.unit(534, "m")
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(5 + 5 / 12, "feet"),
  25167. weight: math.unit(120, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/ari/front.svg",
  25171. extra: 1550/1471,
  25172. bottom: 39/1589
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(5 + 5 / 12, "feet")
  25180. },
  25181. {
  25182. name: "Macro",
  25183. height: math.unit(100, "feet"),
  25184. default: true
  25185. },
  25186. {
  25187. name: "Megamacro",
  25188. height: math.unit(100, "miles")
  25189. },
  25190. {
  25191. name: "Gigamacro",
  25192. height: math.unit(80000, "miles")
  25193. },
  25194. ]
  25195. ))
  25196. characterMakers.push(() => makeCharacter(
  25197. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25198. {
  25199. side: {
  25200. height: math.unit(9, "feet"),
  25201. weight: math.unit(400, "kg"),
  25202. name: "Side",
  25203. image: {
  25204. source: "./media/characters/bolt/side.svg",
  25205. extra: 1126 / 896,
  25206. bottom: 60 / 1187.3,
  25207. }
  25208. },
  25209. },
  25210. [
  25211. {
  25212. name: "Micro",
  25213. height: math.unit(5, "inches")
  25214. },
  25215. {
  25216. name: "Normal",
  25217. height: math.unit(9, "feet"),
  25218. default: true
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(700, "feet")
  25223. },
  25224. {
  25225. name: "Max Size",
  25226. height: math.unit(1.52e22, "yottameters")
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25232. {
  25233. front: {
  25234. height: math.unit(4.3, "meters"),
  25235. weight: math.unit(3, "tons"),
  25236. name: "Front",
  25237. image: {
  25238. source: "./media/characters/draekon-sylviar/front.svg",
  25239. extra: 2072/1512,
  25240. bottom: 74/2146
  25241. }
  25242. },
  25243. back: {
  25244. height: math.unit(4.3, "meters"),
  25245. weight: math.unit(3, "tons"),
  25246. name: "Back",
  25247. image: {
  25248. source: "./media/characters/draekon-sylviar/back.svg",
  25249. extra: 1639/1483,
  25250. bottom: 41/1680
  25251. }
  25252. },
  25253. feral: {
  25254. height: math.unit(1.15, "meters"),
  25255. weight: math.unit(3, "tons"),
  25256. name: "Feral",
  25257. image: {
  25258. source: "./media/characters/draekon-sylviar/feral.svg",
  25259. extra: 1033/395,
  25260. bottom: 130/1163
  25261. }
  25262. },
  25263. maw: {
  25264. height: math.unit(1.3, "meters"),
  25265. name: "Maw",
  25266. image: {
  25267. source: "./media/characters/draekon-sylviar/maw.svg"
  25268. }
  25269. },
  25270. mawSeparated: {
  25271. height: math.unit(1.53, "meters"),
  25272. name: "Separated Maw",
  25273. image: {
  25274. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25275. }
  25276. },
  25277. tail: {
  25278. height: math.unit(1.15, "meters"),
  25279. name: "Tail",
  25280. image: {
  25281. source: "./media/characters/draekon-sylviar/tail.svg"
  25282. }
  25283. },
  25284. tailDick: {
  25285. height: math.unit(1.15, "meters"),
  25286. name: "Tail (Dick)",
  25287. image: {
  25288. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25289. }
  25290. },
  25291. tailDickSeparated: {
  25292. height: math.unit(1.19, "meters"),
  25293. name: "Tail (Separated Dick)",
  25294. image: {
  25295. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25296. }
  25297. },
  25298. slit: {
  25299. height: math.unit(1, "meters"),
  25300. name: "Slit",
  25301. image: {
  25302. source: "./media/characters/draekon-sylviar/slit.svg"
  25303. }
  25304. },
  25305. dick: {
  25306. height: math.unit(1.15, "meters"),
  25307. name: "Dick",
  25308. image: {
  25309. source: "./media/characters/draekon-sylviar/dick.svg"
  25310. }
  25311. },
  25312. dickSeparated: {
  25313. height: math.unit(1.1, "meters"),
  25314. name: "Separated Dick",
  25315. image: {
  25316. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25317. }
  25318. },
  25319. sheath: {
  25320. height: math.unit(1.15, "meters"),
  25321. name: "Sheath",
  25322. image: {
  25323. source: "./media/characters/draekon-sylviar/sheath.svg"
  25324. }
  25325. },
  25326. },
  25327. [
  25328. {
  25329. name: "Small",
  25330. height: math.unit(4.53 / 2, "meters"),
  25331. default: true
  25332. },
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(4.53, "meters"),
  25336. default: true
  25337. },
  25338. {
  25339. name: "Large",
  25340. height: math.unit(4.53 * 2, "meters"),
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(6 + 2 / 12, "feet"),
  25349. weight: math.unit(180, "lb"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/brawler/front.svg",
  25353. extra: 3301 / 3027,
  25354. bottom: 138 / 3439
  25355. }
  25356. },
  25357. },
  25358. [
  25359. {
  25360. name: "Normal",
  25361. height: math.unit(6 + 2 / 12, "feet"),
  25362. default: true
  25363. },
  25364. ]
  25365. ))
  25366. characterMakers.push(() => makeCharacter(
  25367. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25368. {
  25369. front: {
  25370. height: math.unit(11, "feet"),
  25371. weight: math.unit(1000, "lb"),
  25372. name: "Front",
  25373. image: {
  25374. source: "./media/characters/alex/front.svg",
  25375. bottom: 44.5 / 620
  25376. }
  25377. },
  25378. },
  25379. [
  25380. {
  25381. name: "Micro",
  25382. height: math.unit(5, "inches")
  25383. },
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(11, "feet"),
  25387. default: true
  25388. },
  25389. {
  25390. name: "Macro",
  25391. height: math.unit(9.5e9, "feet")
  25392. },
  25393. {
  25394. name: "Max Size",
  25395. height: math.unit(1.4e283, "yottameters")
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25401. {
  25402. female: {
  25403. height: math.unit(29.9, "m"),
  25404. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25405. name: "Female",
  25406. image: {
  25407. source: "./media/characters/zenari/female.svg",
  25408. extra: 3281.6 / 3217,
  25409. bottom: 72.2 / 3353
  25410. }
  25411. },
  25412. male: {
  25413. height: math.unit(27.7, "m"),
  25414. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25415. name: "Male",
  25416. image: {
  25417. source: "./media/characters/zenari/male.svg",
  25418. extra: 3008 / 2991,
  25419. bottom: 54.6 / 3069
  25420. }
  25421. },
  25422. },
  25423. [
  25424. {
  25425. name: "Macro",
  25426. height: math.unit(29.7, "meters"),
  25427. default: true
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25433. {
  25434. female: {
  25435. height: math.unit(23.8, "m"),
  25436. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25437. name: "Female",
  25438. image: {
  25439. source: "./media/characters/mactarian/female.svg",
  25440. extra: 2662 / 2569,
  25441. bottom: 73 / 2736
  25442. }
  25443. },
  25444. male: {
  25445. height: math.unit(23.8, "m"),
  25446. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25447. name: "Male",
  25448. image: {
  25449. source: "./media/characters/mactarian/male.svg",
  25450. extra: 2673 / 2600,
  25451. bottom: 76 / 2750
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Macro",
  25458. height: math.unit(23.8, "meters"),
  25459. default: true
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25465. {
  25466. female: {
  25467. height: math.unit(19.3, "m"),
  25468. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25469. name: "Female",
  25470. image: {
  25471. source: "./media/characters/umok/female.svg",
  25472. extra: 2186 / 2078,
  25473. bottom: 87 / 2277
  25474. }
  25475. },
  25476. male: {
  25477. height: math.unit(19.5, "m"),
  25478. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25479. name: "Male",
  25480. image: {
  25481. source: "./media/characters/umok/male.svg",
  25482. extra: 2233 / 2140,
  25483. bottom: 24.4 / 2258
  25484. }
  25485. },
  25486. },
  25487. [
  25488. {
  25489. name: "Macro",
  25490. height: math.unit(19.3, "meters"),
  25491. default: true
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25497. {
  25498. female: {
  25499. height: math.unit(26.15, "m"),
  25500. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25501. name: "Female",
  25502. image: {
  25503. source: "./media/characters/joraxian/female.svg",
  25504. extra: 2912 / 2824,
  25505. bottom: 36 / 2956
  25506. }
  25507. },
  25508. male: {
  25509. height: math.unit(25.4, "m"),
  25510. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25511. name: "Male",
  25512. image: {
  25513. source: "./media/characters/joraxian/male.svg",
  25514. extra: 2877 / 2721,
  25515. bottom: 82 / 2967
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Macro",
  25522. height: math.unit(26.15, "meters"),
  25523. default: true
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25529. {
  25530. female: {
  25531. height: math.unit(21.6, "m"),
  25532. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25533. name: "Female",
  25534. image: {
  25535. source: "./media/characters/sthara/female.svg",
  25536. extra: 2516 / 2347,
  25537. bottom: 21.5 / 2537
  25538. }
  25539. },
  25540. male: {
  25541. height: math.unit(24, "m"),
  25542. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25543. name: "Male",
  25544. image: {
  25545. source: "./media/characters/sthara/male.svg",
  25546. extra: 2732 / 2607,
  25547. bottom: 23 / 2732
  25548. }
  25549. },
  25550. },
  25551. [
  25552. {
  25553. name: "Macro",
  25554. height: math.unit(21.6, "meters"),
  25555. default: true
  25556. },
  25557. ]
  25558. ))
  25559. characterMakers.push(() => makeCharacter(
  25560. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25561. {
  25562. front: {
  25563. height: math.unit(6 + 4 / 12, "feet"),
  25564. weight: math.unit(175, "lb"),
  25565. name: "Front",
  25566. image: {
  25567. source: "./media/characters/luka-bryzant/front.svg",
  25568. extra: 311 / 289,
  25569. bottom: 4 / 315
  25570. }
  25571. },
  25572. back: {
  25573. height: math.unit(6 + 4 / 12, "feet"),
  25574. weight: math.unit(175, "lb"),
  25575. name: "Back",
  25576. image: {
  25577. source: "./media/characters/luka-bryzant/back.svg",
  25578. extra: 311 / 289,
  25579. bottom: 3.8 / 313.7
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Micro",
  25586. height: math.unit(10, "inches")
  25587. },
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(6 + 4 / 12, "feet"),
  25591. default: true
  25592. },
  25593. {
  25594. name: "Large",
  25595. height: math.unit(12, "feet")
  25596. },
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25601. {
  25602. front: {
  25603. height: math.unit(5 + 7 / 12, "feet"),
  25604. weight: math.unit(185, "lb"),
  25605. name: "Front",
  25606. image: {
  25607. source: "./media/characters/aman-aquila/front.svg",
  25608. extra: 1013 / 976,
  25609. bottom: 45.6 / 1057
  25610. }
  25611. },
  25612. side: {
  25613. height: math.unit(5 + 7 / 12, "feet"),
  25614. weight: math.unit(185, "lb"),
  25615. name: "Side",
  25616. image: {
  25617. source: "./media/characters/aman-aquila/side.svg",
  25618. extra: 1054 / 1011,
  25619. bottom: 15 / 1070
  25620. }
  25621. },
  25622. back: {
  25623. height: math.unit(5 + 7 / 12, "feet"),
  25624. weight: math.unit(185, "lb"),
  25625. name: "Back",
  25626. image: {
  25627. source: "./media/characters/aman-aquila/back.svg",
  25628. extra: 1026 / 970,
  25629. bottom: 12 / 1039
  25630. }
  25631. },
  25632. head: {
  25633. height: math.unit(1.211, "feet"),
  25634. name: "Head",
  25635. image: {
  25636. source: "./media/characters/aman-aquila/head.svg",
  25637. }
  25638. },
  25639. },
  25640. [
  25641. {
  25642. name: "Minimicro",
  25643. height: math.unit(0.057, "inches")
  25644. },
  25645. {
  25646. name: "Micro",
  25647. height: math.unit(7, "inches")
  25648. },
  25649. {
  25650. name: "Mini",
  25651. height: math.unit(3 + 7 / 12, "feet")
  25652. },
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(5 + 7 / 12, "feet"),
  25656. default: true
  25657. },
  25658. {
  25659. name: "Macro",
  25660. height: math.unit(157 + 7 / 12, "feet")
  25661. },
  25662. {
  25663. name: "Megamacro",
  25664. height: math.unit(1557 + 7 / 12, "feet")
  25665. },
  25666. {
  25667. name: "Gigamacro",
  25668. height: math.unit(15557 + 7 / 12, "feet")
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(3 + 2 / 12, "inches"),
  25677. weight: math.unit(0.3, "ounces"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/hiphae/front.svg",
  25681. extra: 1931 / 1683,
  25682. bottom: 24 / 1955
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(3 + 1 / 2, "inches"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(5 + 10 / 12, "feet"),
  25699. weight: math.unit(165, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/nicky/front.svg",
  25703. extra: 3144 / 2886,
  25704. bottom: 45.6 / 3192
  25705. }
  25706. },
  25707. back: {
  25708. height: math.unit(5 + 10 / 12, "feet"),
  25709. weight: math.unit(165, "lb"),
  25710. name: "Back",
  25711. image: {
  25712. source: "./media/characters/nicky/back.svg",
  25713. extra: 3055 / 2804,
  25714. bottom: 28.4 / 3087
  25715. }
  25716. },
  25717. frontclothed: {
  25718. height: math.unit(5 + 10 / 12, "feet"),
  25719. weight: math.unit(165, "lb"),
  25720. name: "Front-clothed",
  25721. image: {
  25722. source: "./media/characters/nicky/front-clothed.svg",
  25723. extra: 3184.9 / 2926.9,
  25724. bottom: 86.5 / 3239.9
  25725. }
  25726. },
  25727. foot: {
  25728. height: math.unit(1.16, "feet"),
  25729. name: "Foot",
  25730. image: {
  25731. source: "./media/characters/nicky/foot.svg"
  25732. }
  25733. },
  25734. feet: {
  25735. height: math.unit(1.34, "feet"),
  25736. name: "Feet",
  25737. image: {
  25738. source: "./media/characters/nicky/feet.svg"
  25739. }
  25740. },
  25741. maw: {
  25742. height: math.unit(0.9, "feet"),
  25743. name: "Maw",
  25744. image: {
  25745. source: "./media/characters/nicky/maw.svg"
  25746. }
  25747. },
  25748. },
  25749. [
  25750. {
  25751. name: "Normal",
  25752. height: math.unit(5 + 10 / 12, "feet"),
  25753. default: true
  25754. },
  25755. {
  25756. name: "Macro",
  25757. height: math.unit(60, "feet")
  25758. },
  25759. {
  25760. name: "Megamacro",
  25761. height: math.unit(1, "mile")
  25762. },
  25763. ]
  25764. ))
  25765. characterMakers.push(() => makeCharacter(
  25766. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25767. {
  25768. side: {
  25769. height: math.unit(10, "feet"),
  25770. weight: math.unit(600, "lb"),
  25771. name: "Side",
  25772. image: {
  25773. source: "./media/characters/blair/side.svg",
  25774. bottom: 16.6 / 475,
  25775. extra: 458 / 431
  25776. }
  25777. },
  25778. },
  25779. [
  25780. {
  25781. name: "Micro",
  25782. height: math.unit(8, "inches")
  25783. },
  25784. {
  25785. name: "Normal",
  25786. height: math.unit(10, "feet"),
  25787. default: true
  25788. },
  25789. {
  25790. name: "Macro",
  25791. height: math.unit(180, "feet")
  25792. },
  25793. ]
  25794. ))
  25795. characterMakers.push(() => makeCharacter(
  25796. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25797. {
  25798. front: {
  25799. height: math.unit(5 + 4 / 12, "feet"),
  25800. weight: math.unit(125, "lb"),
  25801. name: "Front",
  25802. image: {
  25803. source: "./media/characters/fisher/front.svg",
  25804. extra: 444 / 390,
  25805. bottom: 2 / 444.8
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Micro",
  25812. height: math.unit(4, "inches")
  25813. },
  25814. {
  25815. name: "Normal",
  25816. height: math.unit(5 + 4 / 12, "feet"),
  25817. default: true
  25818. },
  25819. {
  25820. name: "Macro",
  25821. height: math.unit(100, "feet")
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(6.71, "feet"),
  25830. weight: math.unit(200, "lb"),
  25831. capacity: math.unit(1000000, "people"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/gliss/front.svg",
  25835. extra: 2347 / 2231,
  25836. bottom: 113 / 2462
  25837. }
  25838. },
  25839. hammerspaceSize: {
  25840. height: math.unit(6.71 * 717, "feet"),
  25841. weight: math.unit(200, "lb"),
  25842. capacity: math.unit(1000000, "people"),
  25843. name: "Hammerspace Size",
  25844. image: {
  25845. source: "./media/characters/gliss/front.svg",
  25846. extra: 2347 / 2231,
  25847. bottom: 113 / 2462
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(6.71, "feet"),
  25855. default: true
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25861. {
  25862. side: {
  25863. height: math.unit(1.44, "m"),
  25864. weight: math.unit(80, "kg"),
  25865. name: "Side",
  25866. image: {
  25867. source: "./media/characters/dune-anderson/side.svg",
  25868. bottom: 49 / 1426
  25869. }
  25870. },
  25871. },
  25872. [
  25873. {
  25874. name: "Wolf-sized",
  25875. height: math.unit(1.44, "meters")
  25876. },
  25877. {
  25878. name: "Normal",
  25879. height: math.unit(5.05, "meters"),
  25880. default: true
  25881. },
  25882. {
  25883. name: "Big",
  25884. height: math.unit(14.4, "meters")
  25885. },
  25886. {
  25887. name: "Huge",
  25888. height: math.unit(144, "meters")
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25894. {
  25895. front: {
  25896. height: math.unit(7, "feet"),
  25897. weight: math.unit(425, "lb"),
  25898. name: "Front",
  25899. image: {
  25900. source: "./media/characters/hind/front.svg",
  25901. extra: 2091 / 1860,
  25902. bottom: 129 / 2220
  25903. }
  25904. },
  25905. back: {
  25906. height: math.unit(7, "feet"),
  25907. weight: math.unit(425, "lb"),
  25908. name: "Back",
  25909. image: {
  25910. source: "./media/characters/hind/back.svg",
  25911. extra: 2091 / 1860,
  25912. bottom: 24.6 / 2309
  25913. }
  25914. },
  25915. tail: {
  25916. height: math.unit(2.8, "feet"),
  25917. name: "Tail",
  25918. image: {
  25919. source: "./media/characters/hind/tail.svg"
  25920. }
  25921. },
  25922. head: {
  25923. height: math.unit(2.55, "feet"),
  25924. name: "Head",
  25925. image: {
  25926. source: "./media/characters/hind/head.svg"
  25927. }
  25928. },
  25929. },
  25930. [
  25931. {
  25932. name: "XS",
  25933. height: math.unit(0.7, "feet")
  25934. },
  25935. {
  25936. name: "Normal",
  25937. height: math.unit(7, "feet"),
  25938. default: true
  25939. },
  25940. {
  25941. name: "XL",
  25942. height: math.unit(70, "feet")
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25948. {
  25949. front: {
  25950. height: math.unit(2.1, "meters"),
  25951. weight: math.unit(150, "lb"),
  25952. name: "Front",
  25953. image: {
  25954. source: "./media/characters/tharquench-sizestealer/front.svg",
  25955. extra: 1605/1470,
  25956. bottom: 36/1641
  25957. }
  25958. },
  25959. frontAlt: {
  25960. height: math.unit(2.1, "meters"),
  25961. weight: math.unit(150, "lb"),
  25962. name: "Front (Alt)",
  25963. image: {
  25964. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25965. extra: 2318 / 2063,
  25966. bottom: 93.4 / 2410
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Nano",
  25973. height: math.unit(1, "mm")
  25974. },
  25975. {
  25976. name: "Micro",
  25977. height: math.unit(1, "cm")
  25978. },
  25979. {
  25980. name: "Normal",
  25981. height: math.unit(2.1, "meters"),
  25982. default: true
  25983. },
  25984. ]
  25985. ))
  25986. characterMakers.push(() => makeCharacter(
  25987. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25988. {
  25989. front: {
  25990. height: math.unit(7 + 5 / 12, "feet"),
  25991. weight: math.unit(357, "lb"),
  25992. name: "Front",
  25993. image: {
  25994. source: "./media/characters/solex-draconov/front.svg",
  25995. extra: 1993 / 1865,
  25996. bottom: 117 / 2111
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "Natural Height",
  26003. height: math.unit(7 + 5 / 12, "feet"),
  26004. default: true
  26005. },
  26006. {
  26007. name: "Macro",
  26008. height: math.unit(350, "feet")
  26009. },
  26010. {
  26011. name: "Macro+",
  26012. height: math.unit(1000, "feet")
  26013. },
  26014. {
  26015. name: "Megamacro",
  26016. height: math.unit(20, "km")
  26017. },
  26018. {
  26019. name: "Megamacro+",
  26020. height: math.unit(1000, "km")
  26021. },
  26022. {
  26023. name: "Gigamacro",
  26024. height: math.unit(2.5, "Gm")
  26025. },
  26026. {
  26027. name: "Teramacro",
  26028. height: math.unit(15, "Tm")
  26029. },
  26030. {
  26031. name: "Galactic",
  26032. height: math.unit(30, "Zm")
  26033. },
  26034. {
  26035. name: "Universal",
  26036. height: math.unit(21000, "Ym")
  26037. },
  26038. {
  26039. name: "Omniversal",
  26040. height: math.unit(9.861e50, "Ym")
  26041. },
  26042. {
  26043. name: "Existential",
  26044. height: math.unit(1e300, "meters")
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26050. {
  26051. side: {
  26052. height: math.unit(25, "feet"),
  26053. weight: math.unit(90000, "lb"),
  26054. name: "Side",
  26055. image: {
  26056. source: "./media/characters/mandarax/side.svg",
  26057. extra: 614 / 332,
  26058. bottom: 55 / 630
  26059. }
  26060. },
  26061. lounging: {
  26062. height: math.unit(15.4, "feet"),
  26063. weight: math.unit(90000, "lb"),
  26064. name: "Lounging",
  26065. image: {
  26066. source: "./media/characters/mandarax/lounging.svg",
  26067. extra: 817/609,
  26068. bottom: 685/1502
  26069. }
  26070. },
  26071. head: {
  26072. height: math.unit(11.4, "feet"),
  26073. name: "Head",
  26074. image: {
  26075. source: "./media/characters/mandarax/head.svg"
  26076. }
  26077. },
  26078. belly: {
  26079. height: math.unit(33, "feet"),
  26080. name: "Belly",
  26081. capacity: math.unit(500, "people"),
  26082. image: {
  26083. source: "./media/characters/mandarax/belly.svg"
  26084. }
  26085. },
  26086. dick: {
  26087. height: math.unit(8.46, "feet"),
  26088. name: "Dick",
  26089. image: {
  26090. source: "./media/characters/mandarax/dick.svg"
  26091. }
  26092. },
  26093. top: {
  26094. height: math.unit(28, "meters"),
  26095. name: "Top",
  26096. image: {
  26097. source: "./media/characters/mandarax/top.svg"
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(25, "feet"),
  26105. default: true
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26111. {
  26112. front: {
  26113. height: math.unit(5, "feet"),
  26114. weight: math.unit(90, "lb"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/pixil/front.svg",
  26118. extra: 2000 / 1618,
  26119. bottom: 12.3 / 2011
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Normal",
  26126. height: math.unit(5, "feet"),
  26127. default: true
  26128. },
  26129. {
  26130. name: "Megamacro",
  26131. height: math.unit(10, "miles"),
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(7 + 2 / 12, "feet"),
  26140. weight: math.unit(200, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/angel/front.svg",
  26144. extra: 1830 / 1737,
  26145. bottom: 22.6 / 1854,
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Normal",
  26152. height: math.unit(7 + 2 / 12, "feet"),
  26153. default: true
  26154. },
  26155. {
  26156. name: "Macro",
  26157. height: math.unit(1000, "feet")
  26158. },
  26159. {
  26160. name: "Megamacro",
  26161. height: math.unit(2, "miles")
  26162. },
  26163. {
  26164. name: "Gigamacro",
  26165. height: math.unit(20, "earths")
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(5, "feet"),
  26174. weight: math.unit(180, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/mekana/front.svg",
  26178. extra: 1671 / 1605,
  26179. bottom: 3.5 / 1691
  26180. }
  26181. },
  26182. side: {
  26183. height: math.unit(5, "feet"),
  26184. weight: math.unit(180, "lb"),
  26185. name: "Side",
  26186. image: {
  26187. source: "./media/characters/mekana/side.svg",
  26188. extra: 1671 / 1605,
  26189. bottom: 3.5 / 1691
  26190. }
  26191. },
  26192. back: {
  26193. height: math.unit(5, "feet"),
  26194. weight: math.unit(180, "lb"),
  26195. name: "Back",
  26196. image: {
  26197. source: "./media/characters/mekana/back.svg",
  26198. extra: 1671 / 1605,
  26199. bottom: 3.5 / 1691
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(5, "feet"),
  26207. default: true
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26213. {
  26214. front: {
  26215. height: math.unit(4 + 6 / 12, "feet"),
  26216. weight: math.unit(80, "lb"),
  26217. name: "Front",
  26218. image: {
  26219. source: "./media/characters/pixie/front.svg",
  26220. extra: 1924 / 1825,
  26221. bottom: 22.4 / 1946
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(4 + 6 / 12, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(40, "feet")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(2.1, "meters"),
  26242. weight: math.unit(200, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/the-lascivious/front.svg",
  26246. extra: 1 / 0.893,
  26247. bottom: 3.5 / 573.7
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Human Scale",
  26254. height: math.unit(2.1, "meters")
  26255. },
  26256. {
  26257. name: "Wolxi Scale",
  26258. height: math.unit(46.2, "m"),
  26259. default: true
  26260. },
  26261. {
  26262. name: "Boinker of Buildings",
  26263. height: math.unit(10, "km")
  26264. },
  26265. {
  26266. name: "Shagger of Skyscrapers",
  26267. height: math.unit(40, "km")
  26268. },
  26269. {
  26270. name: "Banger of Boroughs",
  26271. height: math.unit(4000, "km")
  26272. },
  26273. {
  26274. name: "Screwer of States",
  26275. height: math.unit(100000, "km")
  26276. },
  26277. {
  26278. name: "Pounder of Planets",
  26279. height: math.unit(2000000, "km")
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(6, "feet"),
  26288. weight: math.unit(150, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/aj/front.svg",
  26292. extra: 2039 / 1562,
  26293. bottom: 40 / 2079
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(11 + 6 / 12, "feet"),
  26301. default: true
  26302. },
  26303. {
  26304. name: "Megamacro",
  26305. height: math.unit(60, "megameters")
  26306. },
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26311. {
  26312. side: {
  26313. height: math.unit(31 + 8 / 12, "feet"),
  26314. weight: math.unit(75000, "kg"),
  26315. name: "Side",
  26316. image: {
  26317. source: "./media/characters/koros/side.svg",
  26318. extra: 1442 / 1297,
  26319. bottom: 122.7 / 1562
  26320. }
  26321. },
  26322. dicksKingsCrown: {
  26323. height: math.unit(6, "feet"),
  26324. name: "Dicks (King's Crown)",
  26325. image: {
  26326. source: "./media/characters/koros/dicks-kings-crown.svg"
  26327. }
  26328. },
  26329. dicksTailSet: {
  26330. height: math.unit(3, "feet"),
  26331. name: "Dicks (Tail Set)",
  26332. image: {
  26333. source: "./media/characters/koros/dicks-tail-set.svg"
  26334. }
  26335. },
  26336. dickCumming: {
  26337. height: math.unit(7.98, "feet"),
  26338. name: "Dick (Cumming)",
  26339. image: {
  26340. source: "./media/characters/koros/dick-cumming.svg"
  26341. }
  26342. },
  26343. dicksBack: {
  26344. height: math.unit(5.9, "feet"),
  26345. name: "Dicks (Back)",
  26346. image: {
  26347. source: "./media/characters/koros/dicks-back.svg"
  26348. }
  26349. },
  26350. dicksFront: {
  26351. height: math.unit(3.72, "feet"),
  26352. name: "Dicks (Front)",
  26353. image: {
  26354. source: "./media/characters/koros/dicks-front.svg"
  26355. }
  26356. },
  26357. dicksPeeking: {
  26358. height: math.unit(3.0, "feet"),
  26359. name: "Dicks (Peeking)",
  26360. image: {
  26361. source: "./media/characters/koros/dicks-peeking.svg"
  26362. }
  26363. },
  26364. eye: {
  26365. height: math.unit(1.7, "feet"),
  26366. name: "Eye",
  26367. image: {
  26368. source: "./media/characters/koros/eye.svg"
  26369. }
  26370. },
  26371. headFront: {
  26372. height: math.unit(11.69, "feet"),
  26373. name: "Head (Front)",
  26374. image: {
  26375. source: "./media/characters/koros/head-front.svg"
  26376. }
  26377. },
  26378. headSide: {
  26379. height: math.unit(14, "feet"),
  26380. name: "Head (Side)",
  26381. image: {
  26382. source: "./media/characters/koros/head-side.svg"
  26383. }
  26384. },
  26385. leg: {
  26386. height: math.unit(17, "feet"),
  26387. name: "Leg",
  26388. image: {
  26389. source: "./media/characters/koros/leg.svg"
  26390. }
  26391. },
  26392. mawSide: {
  26393. height: math.unit(12.8, "feet"),
  26394. name: "Maw (Side)",
  26395. image: {
  26396. source: "./media/characters/koros/maw-side.svg"
  26397. }
  26398. },
  26399. mawSpitting: {
  26400. height: math.unit(17, "feet"),
  26401. name: "Maw (Spitting)",
  26402. image: {
  26403. source: "./media/characters/koros/maw-spitting.svg"
  26404. }
  26405. },
  26406. slit: {
  26407. height: math.unit(2.8, "feet"),
  26408. name: "Slit",
  26409. image: {
  26410. source: "./media/characters/koros/slit.svg"
  26411. }
  26412. },
  26413. stomach: {
  26414. height: math.unit(6.8, "feet"),
  26415. capacity: math.unit(20, "people"),
  26416. name: "Stomach",
  26417. image: {
  26418. source: "./media/characters/koros/stomach.svg"
  26419. }
  26420. },
  26421. wingspanBottom: {
  26422. height: math.unit(114, "feet"),
  26423. name: "Wingspan (Bottom)",
  26424. image: {
  26425. source: "./media/characters/koros/wingspan-bottom.svg"
  26426. }
  26427. },
  26428. wingspanTop: {
  26429. height: math.unit(104, "feet"),
  26430. name: "Wingspan (Top)",
  26431. image: {
  26432. source: "./media/characters/koros/wingspan-top.svg"
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(31 + 8 / 12, "feet"),
  26440. default: true
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(18 + 5 / 12, "feet"),
  26449. weight: math.unit(3750, "kg"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/vexx/front.svg",
  26453. extra: 426 / 396,
  26454. bottom: 31.5 / 458
  26455. }
  26456. },
  26457. maw: {
  26458. height: math.unit(6, "feet"),
  26459. name: "Maw",
  26460. image: {
  26461. source: "./media/characters/vexx/maw.svg"
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(18 + 5 / 12, "feet"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26475. {
  26476. front: {
  26477. height: math.unit(17 + 6 / 12, "feet"),
  26478. weight: math.unit(150, "lb"),
  26479. name: "Front",
  26480. image: {
  26481. source: "./media/characters/baadra/front.svg",
  26482. extra: 1694/1553,
  26483. bottom: 179/1873
  26484. }
  26485. },
  26486. frontAlt: {
  26487. height: math.unit(17 + 6 / 12, "feet"),
  26488. weight: math.unit(150, "lb"),
  26489. name: "Front (Alt)",
  26490. image: {
  26491. source: "./media/characters/baadra/front-alt.svg",
  26492. extra: 3137 / 2890,
  26493. bottom: 168.4 / 3305
  26494. }
  26495. },
  26496. back: {
  26497. height: math.unit(17 + 6 / 12, "feet"),
  26498. weight: math.unit(150, "lb"),
  26499. name: "Back",
  26500. image: {
  26501. source: "./media/characters/baadra/back.svg",
  26502. extra: 3142 / 2890,
  26503. bottom: 220 / 3371
  26504. }
  26505. },
  26506. head: {
  26507. height: math.unit(5.45, "feet"),
  26508. name: "Head",
  26509. image: {
  26510. source: "./media/characters/baadra/head.svg"
  26511. }
  26512. },
  26513. headAngry: {
  26514. height: math.unit(4.95, "feet"),
  26515. name: "Head (Angry)",
  26516. image: {
  26517. source: "./media/characters/baadra/head-angry.svg"
  26518. }
  26519. },
  26520. headOpen: {
  26521. height: math.unit(6, "feet"),
  26522. name: "Head (Open)",
  26523. image: {
  26524. source: "./media/characters/baadra/head-open.svg"
  26525. }
  26526. },
  26527. },
  26528. [
  26529. {
  26530. name: "Normal",
  26531. height: math.unit(17 + 6 / 12, "feet"),
  26532. default: true
  26533. },
  26534. ]
  26535. ))
  26536. characterMakers.push(() => makeCharacter(
  26537. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26538. {
  26539. front: {
  26540. height: math.unit(7 + 3 / 12, "feet"),
  26541. weight: math.unit(180, "lb"),
  26542. name: "Front",
  26543. image: {
  26544. source: "./media/characters/juri/front.svg",
  26545. extra: 1401 / 1237,
  26546. bottom: 18.5 / 1418
  26547. }
  26548. },
  26549. side: {
  26550. height: math.unit(7 + 3 / 12, "feet"),
  26551. weight: math.unit(180, "lb"),
  26552. name: "Side",
  26553. image: {
  26554. source: "./media/characters/juri/side.svg",
  26555. extra: 1424 / 1242,
  26556. bottom: 18.5 / 1447
  26557. }
  26558. },
  26559. sitting: {
  26560. height: math.unit(6, "feet"),
  26561. weight: math.unit(180, "lb"),
  26562. name: "Sitting",
  26563. image: {
  26564. source: "./media/characters/juri/sitting.svg",
  26565. extra: 1270 / 1143,
  26566. bottom: 100 / 1343
  26567. }
  26568. },
  26569. back: {
  26570. height: math.unit(7 + 3 / 12, "feet"),
  26571. weight: math.unit(180, "lb"),
  26572. name: "Back",
  26573. image: {
  26574. source: "./media/characters/juri/back.svg",
  26575. extra: 1377 / 1240,
  26576. bottom: 23.7 / 1405
  26577. }
  26578. },
  26579. maw: {
  26580. height: math.unit(2.8, "feet"),
  26581. name: "Maw",
  26582. image: {
  26583. source: "./media/characters/juri/maw.svg"
  26584. }
  26585. },
  26586. stomach: {
  26587. height: math.unit(0.89, "feet"),
  26588. capacity: math.unit(4, "liters"),
  26589. name: "Stomach",
  26590. image: {
  26591. source: "./media/characters/juri/stomach.svg"
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(7 + 3 / 12, "feet"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26605. {
  26606. fox: {
  26607. height: math.unit(5 + 6 / 12, "feet"),
  26608. weight: math.unit(140, "lb"),
  26609. name: "Fox",
  26610. image: {
  26611. source: "./media/characters/maxene-sita/fox.svg",
  26612. extra: 146 / 138,
  26613. bottom: 2.1 / 148.19
  26614. }
  26615. },
  26616. foxLaying: {
  26617. height: math.unit(1.70, "feet"),
  26618. weight: math.unit(140, "lb"),
  26619. name: "Fox (Laying)",
  26620. image: {
  26621. source: "./media/characters/maxene-sita/fox-laying.svg",
  26622. extra: 910 / 572,
  26623. bottom: 71 / 981
  26624. }
  26625. },
  26626. kitsune: {
  26627. height: math.unit(10, "feet"),
  26628. weight: math.unit(800, "lb"),
  26629. name: "Kitsune",
  26630. image: {
  26631. source: "./media/characters/maxene-sita/kitsune.svg",
  26632. extra: 185 / 176,
  26633. bottom: 4.7 / 189.9
  26634. }
  26635. },
  26636. hellhound: {
  26637. height: math.unit(10, "feet"),
  26638. weight: math.unit(700, "lb"),
  26639. name: "Hellhound",
  26640. image: {
  26641. source: "./media/characters/maxene-sita/hellhound.svg",
  26642. extra: 1600 / 1545,
  26643. bottom: 81 / 1681
  26644. }
  26645. },
  26646. },
  26647. [
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(5 + 6 / 12, "feet"),
  26651. default: true
  26652. },
  26653. ]
  26654. ))
  26655. characterMakers.push(() => makeCharacter(
  26656. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26657. {
  26658. front: {
  26659. height: math.unit(3 + 4 / 12, "feet"),
  26660. weight: math.unit(70, "lb"),
  26661. name: "Front",
  26662. image: {
  26663. source: "./media/characters/maia/front.svg",
  26664. extra: 227 / 219.5,
  26665. bottom: 40 / 267
  26666. }
  26667. },
  26668. back: {
  26669. height: math.unit(3 + 4 / 12, "feet"),
  26670. weight: math.unit(70, "lb"),
  26671. name: "Back",
  26672. image: {
  26673. source: "./media/characters/maia/back.svg",
  26674. extra: 237 / 225
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(3 + 4 / 12, "feet"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(5 + 10 / 12, "feet"),
  26691. weight: math.unit(197, "lb"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/jabaro/front.svg",
  26695. extra: 225 / 216,
  26696. bottom: 5.06 / 230
  26697. }
  26698. },
  26699. back: {
  26700. height: math.unit(5 + 10 / 12, "feet"),
  26701. weight: math.unit(197, "lb"),
  26702. name: "Back",
  26703. image: {
  26704. source: "./media/characters/jabaro/back.svg",
  26705. extra: 225 / 219,
  26706. bottom: 1.9 / 227
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(5 + 10 / 12, "feet"),
  26714. default: true
  26715. },
  26716. ]
  26717. ))
  26718. characterMakers.push(() => makeCharacter(
  26719. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26720. {
  26721. front: {
  26722. height: math.unit(5 + 8 / 12, "feet"),
  26723. weight: math.unit(139, "lb"),
  26724. name: "Front",
  26725. image: {
  26726. source: "./media/characters/risa/front.svg",
  26727. extra: 270 / 260,
  26728. bottom: 11.2 / 282
  26729. }
  26730. },
  26731. back: {
  26732. height: math.unit(5 + 8 / 12, "feet"),
  26733. weight: math.unit(139, "lb"),
  26734. name: "Back",
  26735. image: {
  26736. source: "./media/characters/risa/back.svg",
  26737. extra: 264 / 255,
  26738. bottom: 4 / 268
  26739. }
  26740. },
  26741. },
  26742. [
  26743. {
  26744. name: "Normal",
  26745. height: math.unit(5 + 8 / 12, "feet"),
  26746. default: true
  26747. },
  26748. ]
  26749. ))
  26750. characterMakers.push(() => makeCharacter(
  26751. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26752. {
  26753. front: {
  26754. height: math.unit(2 + 11 / 12, "feet"),
  26755. weight: math.unit(30, "lb"),
  26756. name: "Front",
  26757. image: {
  26758. source: "./media/characters/weatley/front.svg",
  26759. bottom: 10.7 / 414,
  26760. extra: 403.5 / 362
  26761. }
  26762. },
  26763. back: {
  26764. height: math.unit(2 + 11 / 12, "feet"),
  26765. weight: math.unit(30, "lb"),
  26766. name: "Back",
  26767. image: {
  26768. source: "./media/characters/weatley/back.svg",
  26769. bottom: 10.7 / 414,
  26770. extra: 403.5 / 362
  26771. }
  26772. },
  26773. },
  26774. [
  26775. {
  26776. name: "Normal",
  26777. height: math.unit(2 + 11 / 12, "feet"),
  26778. default: true
  26779. },
  26780. ]
  26781. ))
  26782. characterMakers.push(() => makeCharacter(
  26783. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26784. {
  26785. front: {
  26786. height: math.unit(5 + 2 / 12, "feet"),
  26787. weight: math.unit(50, "kg"),
  26788. name: "Front",
  26789. image: {
  26790. source: "./media/characters/mercury-crescent/front.svg",
  26791. extra: 1088 / 1033,
  26792. bottom: 18.9 / 1109
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "Normal",
  26799. height: math.unit(5 + 2 / 12, "feet"),
  26800. default: true
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26806. {
  26807. front: {
  26808. height: math.unit(2, "feet"),
  26809. weight: math.unit(15, "kg"),
  26810. name: "Front",
  26811. image: {
  26812. source: "./media/characters/diamond-jones/front.svg",
  26813. extra: 727/723,
  26814. bottom: 46/773
  26815. }
  26816. },
  26817. },
  26818. [
  26819. {
  26820. name: "Normal",
  26821. height: math.unit(2, "feet"),
  26822. default: true
  26823. },
  26824. ]
  26825. ))
  26826. characterMakers.push(() => makeCharacter(
  26827. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26828. {
  26829. front: {
  26830. height: math.unit(3, "feet"),
  26831. weight: math.unit(30, "kg"),
  26832. name: "Front",
  26833. image: {
  26834. source: "./media/characters/sweet-bit/front.svg",
  26835. extra: 675 / 567,
  26836. bottom: 27.7 / 703
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(3, "feet"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26850. {
  26851. side: {
  26852. height: math.unit(9.178, "feet"),
  26853. weight: math.unit(500, "lb"),
  26854. name: "Side",
  26855. image: {
  26856. source: "./media/characters/umbrazen/side.svg",
  26857. extra: 1730 / 1473,
  26858. bottom: 34.6 / 1765
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(9.178, "feet"),
  26866. default: true
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(10, "feet"),
  26875. weight: math.unit(750, "lb"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/arlist/front.svg",
  26879. extra: 961 / 778,
  26880. bottom: 6.2 / 986
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Normal",
  26887. height: math.unit(10, "feet"),
  26888. default: true
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26894. {
  26895. front: {
  26896. height: math.unit(5 + 1 / 12, "feet"),
  26897. weight: math.unit(110, "lb"),
  26898. name: "Front",
  26899. image: {
  26900. source: "./media/characters/aradel/front.svg",
  26901. extra: 324 / 303,
  26902. bottom: 3.6 / 329.4
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(5 + 1 / 12, "feet"),
  26910. default: true
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26916. {
  26917. dressed: {
  26918. height: math.unit(3 + 8 / 12, "feet"),
  26919. weight: math.unit(50, "lb"),
  26920. name: "Dressed",
  26921. image: {
  26922. source: "./media/characters/serryn/dressed.svg",
  26923. extra: 1792 / 1656,
  26924. bottom: 43.5 / 1840
  26925. }
  26926. },
  26927. nude: {
  26928. height: math.unit(3 + 8 / 12, "feet"),
  26929. weight: math.unit(50, "lb"),
  26930. name: "Nude",
  26931. image: {
  26932. source: "./media/characters/serryn/nude.svg",
  26933. extra: 1792 / 1656,
  26934. bottom: 43.5 / 1840
  26935. }
  26936. },
  26937. },
  26938. [
  26939. {
  26940. name: "Normal",
  26941. height: math.unit(3 + 8 / 12, "feet"),
  26942. default: true
  26943. },
  26944. ]
  26945. ))
  26946. characterMakers.push(() => makeCharacter(
  26947. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26948. {
  26949. front: {
  26950. height: math.unit(7 + 10 / 12, "feet"),
  26951. weight: math.unit(255, "lb"),
  26952. name: "Front",
  26953. image: {
  26954. source: "./media/characters/xavier-thyme/front.svg",
  26955. extra: 3733 / 3642,
  26956. bottom: 131 / 3869
  26957. }
  26958. },
  26959. frontRaven: {
  26960. height: math.unit(7 + 10 / 12, "feet"),
  26961. weight: math.unit(255, "lb"),
  26962. name: "Front (Raven)",
  26963. image: {
  26964. source: "./media/characters/xavier-thyme/front-raven.svg",
  26965. extra: 4385 / 3642,
  26966. bottom: 131 / 4517
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(7 + 10 / 12, "feet"),
  26974. default: true
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(1.6, "m"),
  26983. weight: math.unit(50, "kg"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/kiki/front.svg",
  26987. extra: 4682 / 3610,
  26988. bottom: 115 / 4777
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Normal",
  26995. height: math.unit(1.6, "meters"),
  26996. default: true
  26997. },
  26998. ]
  26999. ))
  27000. characterMakers.push(() => makeCharacter(
  27001. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27002. {
  27003. front: {
  27004. height: math.unit(50, "m"),
  27005. weight: math.unit(500, "tonnes"),
  27006. name: "Front",
  27007. image: {
  27008. source: "./media/characters/ryoko/front.svg",
  27009. extra: 4632 / 3926,
  27010. bottom: 193 / 4823
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Normal",
  27017. height: math.unit(50, "meters"),
  27018. default: true
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27024. {
  27025. front: {
  27026. height: math.unit(30, "m"),
  27027. weight: math.unit(22, "tonnes"),
  27028. name: "Front",
  27029. image: {
  27030. source: "./media/characters/elio/front.svg",
  27031. extra: 4582 / 3720,
  27032. bottom: 236 / 4828
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(30, "meters"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27046. {
  27047. front: {
  27048. height: math.unit(6 + 3 / 12, "feet"),
  27049. weight: math.unit(120, "lb"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/azura/front.svg",
  27053. extra: 1149 / 1135,
  27054. bottom: 45 / 1194
  27055. }
  27056. },
  27057. frontClothed: {
  27058. height: math.unit(6 + 3 / 12, "feet"),
  27059. weight: math.unit(120, "lb"),
  27060. name: "Front (Clothed)",
  27061. image: {
  27062. source: "./media/characters/azura/front-clothed.svg",
  27063. extra: 1149 / 1135,
  27064. bottom: 45 / 1194
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(6 + 3 / 12, "feet"),
  27072. default: true
  27073. },
  27074. {
  27075. name: "Macro",
  27076. height: math.unit(20 + 6 / 12, "feet")
  27077. },
  27078. {
  27079. name: "Megamacro",
  27080. height: math.unit(12, "miles")
  27081. },
  27082. {
  27083. name: "Gigamacro",
  27084. height: math.unit(10000, "miles")
  27085. },
  27086. {
  27087. name: "Teramacro",
  27088. height: math.unit(900000, "miles")
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(12, "feet"),
  27097. weight: math.unit(1, "ton"),
  27098. capacity: math.unit(660000, "gallons"),
  27099. name: "Front",
  27100. image: {
  27101. source: "./media/characters/zeus/front.svg",
  27102. extra: 5005 / 4717,
  27103. bottom: 363 / 5388
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Normal",
  27110. height: math.unit(12, "feet")
  27111. },
  27112. {
  27113. name: "Preferred Size",
  27114. height: math.unit(0.5, "miles"),
  27115. default: true
  27116. },
  27117. {
  27118. name: "Giga Horse",
  27119. height: math.unit(300, "miles")
  27120. },
  27121. {
  27122. name: "Riding Planets",
  27123. height: math.unit(30, "megameters")
  27124. },
  27125. {
  27126. name: "Cosmic Giant",
  27127. height: math.unit(3, "zettameters")
  27128. },
  27129. {
  27130. name: "Breeding God",
  27131. height: math.unit(9.92e22, "yottameters")
  27132. },
  27133. ]
  27134. ))
  27135. characterMakers.push(() => makeCharacter(
  27136. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27137. {
  27138. side: {
  27139. height: math.unit(9, "feet"),
  27140. weight: math.unit(1500, "kg"),
  27141. name: "Side",
  27142. image: {
  27143. source: "./media/characters/fang/side.svg",
  27144. extra: 924 / 866,
  27145. bottom: 47.5 / 972.3
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Normal",
  27152. height: math.unit(9, "feet"),
  27153. default: true
  27154. },
  27155. {
  27156. name: "Macro",
  27157. height: math.unit(75 + 6 / 12, "feet")
  27158. },
  27159. {
  27160. name: "Teramacro",
  27161. height: math.unit(50000, "miles")
  27162. },
  27163. ]
  27164. ))
  27165. characterMakers.push(() => makeCharacter(
  27166. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27167. {
  27168. front: {
  27169. height: math.unit(10, "feet"),
  27170. weight: math.unit(2, "tons"),
  27171. name: "Front",
  27172. image: {
  27173. source: "./media/characters/rekhit/front.svg",
  27174. extra: 2796 / 2590,
  27175. bottom: 225 / 3022
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(10, "feet"),
  27183. default: true
  27184. },
  27185. {
  27186. name: "Macro",
  27187. height: math.unit(500, "feet")
  27188. },
  27189. ]
  27190. ))
  27191. characterMakers.push(() => makeCharacter(
  27192. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27193. {
  27194. front: {
  27195. height: math.unit(7 + 6.451 / 12, "feet"),
  27196. weight: math.unit(310, "lb"),
  27197. name: "Front",
  27198. image: {
  27199. source: "./media/characters/dahlia-verrick/front.svg",
  27200. extra: 1488 / 1365,
  27201. bottom: 6.2 / 1495
  27202. }
  27203. },
  27204. back: {
  27205. height: math.unit(7 + 6.451 / 12, "feet"),
  27206. weight: math.unit(310, "lb"),
  27207. name: "Back",
  27208. image: {
  27209. source: "./media/characters/dahlia-verrick/back.svg",
  27210. extra: 1472 / 1351,
  27211. bottom: 5.28 / 1477
  27212. }
  27213. },
  27214. frontBusiness: {
  27215. height: math.unit(7 + 6.451 / 12, "feet"),
  27216. weight: math.unit(200, "lb"),
  27217. name: "Front (Business)",
  27218. image: {
  27219. source: "./media/characters/dahlia-verrick/front-business.svg",
  27220. extra: 1478 / 1381,
  27221. bottom: 5.5 / 1484
  27222. }
  27223. },
  27224. frontCasual: {
  27225. height: math.unit(7 + 6.451 / 12, "feet"),
  27226. weight: math.unit(200, "lb"),
  27227. name: "Front (Casual)",
  27228. image: {
  27229. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27230. extra: 1478 / 1381,
  27231. bottom: 5.5 / 1484
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Travel-Sized",
  27238. height: math.unit(7.45, "inches")
  27239. },
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(7 + 6.451 / 12, "feet"),
  27243. default: true
  27244. },
  27245. {
  27246. name: "Hitting the Town",
  27247. height: math.unit(37 + 8 / 12, "feet")
  27248. },
  27249. {
  27250. name: "Stomp in the Suburbs",
  27251. height: math.unit(964 + 9.728 / 12, "feet")
  27252. },
  27253. {
  27254. name: "Sit on the City",
  27255. height: math.unit(61747 + 10.592 / 12, "feet")
  27256. },
  27257. {
  27258. name: "Glomp the Globe",
  27259. height: math.unit(252919327 + 4.832 / 12, "feet")
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(6 + 4 / 12, "feet"),
  27268. weight: math.unit(320, "lb"),
  27269. name: "Front",
  27270. image: {
  27271. source: "./media/characters/balina-mahigan/front.svg",
  27272. extra: 447 / 428,
  27273. bottom: 18 / 466
  27274. }
  27275. },
  27276. back: {
  27277. height: math.unit(6 + 4 / 12, "feet"),
  27278. weight: math.unit(320, "lb"),
  27279. name: "Back",
  27280. image: {
  27281. source: "./media/characters/balina-mahigan/back.svg",
  27282. extra: 445 / 428,
  27283. bottom: 4.07 / 448
  27284. }
  27285. },
  27286. arm: {
  27287. height: math.unit(1.88, "feet"),
  27288. name: "Arm",
  27289. image: {
  27290. source: "./media/characters/balina-mahigan/arm.svg"
  27291. }
  27292. },
  27293. backPort: {
  27294. height: math.unit(0.685, "feet"),
  27295. name: "Back Port",
  27296. image: {
  27297. source: "./media/characters/balina-mahigan/back-port.svg"
  27298. }
  27299. },
  27300. hoofpaw: {
  27301. height: math.unit(1.41, "feet"),
  27302. name: "Hoofpaw",
  27303. image: {
  27304. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27305. }
  27306. },
  27307. leftHandBack: {
  27308. height: math.unit(0.938, "feet"),
  27309. name: "Left Hand (Back)",
  27310. image: {
  27311. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27312. }
  27313. },
  27314. leftHandFront: {
  27315. height: math.unit(0.938, "feet"),
  27316. name: "Left Hand (Front)",
  27317. image: {
  27318. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27319. }
  27320. },
  27321. rightHandBack: {
  27322. height: math.unit(0.95, "feet"),
  27323. name: "Right Hand (Back)",
  27324. image: {
  27325. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27326. }
  27327. },
  27328. rightHandFront: {
  27329. height: math.unit(0.95, "feet"),
  27330. name: "Right Hand (Front)",
  27331. image: {
  27332. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(6 + 4 / 12, "feet"),
  27340. default: true
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(6, "feet"),
  27349. weight: math.unit(320, "lb"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/balina-mejeri/front.svg",
  27353. extra: 517 / 488,
  27354. bottom: 44.2 / 561
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(6 + 4 / 12, "feet")
  27362. },
  27363. {
  27364. name: "Business",
  27365. height: math.unit(155, "feet"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27372. {
  27373. kneeling: {
  27374. height: math.unit(6 + 4 / 12, "feet"),
  27375. weight: math.unit(300 * 20, "lb"),
  27376. name: "Kneeling",
  27377. image: {
  27378. source: "./media/characters/balbarian/kneeling.svg",
  27379. extra: 922 / 862,
  27380. bottom: 42.4 / 965
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(6 + 4 / 12, "feet")
  27388. },
  27389. {
  27390. name: "Treasured",
  27391. height: math.unit(18 + 9 / 12, "feet"),
  27392. default: true
  27393. },
  27394. {
  27395. name: "Macro",
  27396. height: math.unit(900, "feet")
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(6 + 4 / 12, "feet"),
  27405. weight: math.unit(325, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/balina-amarini/front.svg",
  27409. extra: 415 / 403,
  27410. bottom: 19 / 433.4
  27411. }
  27412. },
  27413. back: {
  27414. height: math.unit(6 + 4 / 12, "feet"),
  27415. weight: math.unit(325, "lb"),
  27416. name: "Back",
  27417. image: {
  27418. source: "./media/characters/balina-amarini/back.svg",
  27419. extra: 415 / 403,
  27420. bottom: 13.5 / 432
  27421. }
  27422. },
  27423. overdrive: {
  27424. height: math.unit(6 + 4 / 12, "feet"),
  27425. weight: math.unit(400, "lb"),
  27426. name: "Overdrive",
  27427. image: {
  27428. source: "./media/characters/balina-amarini/overdrive.svg",
  27429. extra: 269 / 259,
  27430. bottom: 12 / 282
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Boom",
  27437. height: math.unit(9 + 10 / 12, "feet"),
  27438. default: true
  27439. },
  27440. {
  27441. name: "Macro",
  27442. height: math.unit(280, "feet")
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27448. {
  27449. goddess: {
  27450. height: math.unit(600, "feet"),
  27451. weight: math.unit(2000000, "tons"),
  27452. name: "Goddess",
  27453. image: {
  27454. source: "./media/characters/lady-kubwa/goddess.svg",
  27455. extra: 1240.5 / 1223,
  27456. bottom: 22 / 1263
  27457. }
  27458. },
  27459. goddesser: {
  27460. height: math.unit(900, "feet"),
  27461. weight: math.unit(20000000, "lb"),
  27462. name: "Goddess-er",
  27463. image: {
  27464. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27465. extra: 899 / 888,
  27466. bottom: 12.6 / 912
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Macro",
  27473. height: math.unit(600, "feet"),
  27474. default: true
  27475. },
  27476. {
  27477. name: "Megamacro",
  27478. height: math.unit(250, "miles")
  27479. },
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27484. {
  27485. front: {
  27486. height: math.unit(7 + 7 / 12, "feet"),
  27487. weight: math.unit(250, "lb"),
  27488. name: "Front",
  27489. image: {
  27490. source: "./media/characters/tala-grovehorn/front.svg",
  27491. extra: 2636 / 2525,
  27492. bottom: 147 / 2781
  27493. }
  27494. },
  27495. back: {
  27496. height: math.unit(7 + 7 / 12, "feet"),
  27497. weight: math.unit(250, "lb"),
  27498. name: "Back",
  27499. image: {
  27500. source: "./media/characters/tala-grovehorn/back.svg",
  27501. extra: 2635 / 2539,
  27502. bottom: 100 / 2732.8
  27503. }
  27504. },
  27505. mouth: {
  27506. height: math.unit(1.15, "feet"),
  27507. name: "Mouth",
  27508. image: {
  27509. source: "./media/characters/tala-grovehorn/mouth.svg"
  27510. }
  27511. },
  27512. dick: {
  27513. height: math.unit(2.36, "feet"),
  27514. name: "Dick",
  27515. image: {
  27516. source: "./media/characters/tala-grovehorn/dick.svg"
  27517. }
  27518. },
  27519. slit: {
  27520. height: math.unit(0.61, "feet"),
  27521. name: "Slit",
  27522. image: {
  27523. source: "./media/characters/tala-grovehorn/slit.svg"
  27524. }
  27525. },
  27526. },
  27527. [
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(7 + 7 / 12, "feet"),
  27535. weight: math.unit(225, "lb"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/epona/front.svg",
  27539. extra: 2445 / 2290,
  27540. bottom: 251 / 2696
  27541. }
  27542. },
  27543. back: {
  27544. height: math.unit(7 + 7 / 12, "feet"),
  27545. weight: math.unit(225, "lb"),
  27546. name: "Back",
  27547. image: {
  27548. source: "./media/characters/epona/back.svg",
  27549. extra: 2546 / 2408,
  27550. bottom: 44 / 2589
  27551. }
  27552. },
  27553. genitals: {
  27554. height: math.unit(1.5, "feet"),
  27555. name: "Genitals",
  27556. image: {
  27557. source: "./media/characters/epona/genitals.svg"
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(7 + 7 / 12, "feet"),
  27565. default: true
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(7, "feet"),
  27574. weight: math.unit(518, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/avia-bloodbourn/front.svg",
  27578. extra: 1466 / 1350,
  27579. bottom: 65 / 1527
  27580. }
  27581. },
  27582. },
  27583. [
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27588. {
  27589. front: {
  27590. height: math.unit(9.35, "feet"),
  27591. weight: math.unit(600, "lb"),
  27592. name: "Front",
  27593. image: {
  27594. source: "./media/characters/amera/front.svg",
  27595. extra: 891 / 818,
  27596. bottom: 30 / 922.7
  27597. }
  27598. },
  27599. back: {
  27600. height: math.unit(9.35, "feet"),
  27601. weight: math.unit(600, "lb"),
  27602. name: "Back",
  27603. image: {
  27604. source: "./media/characters/amera/back.svg",
  27605. extra: 876 / 824,
  27606. bottom: 6.8 / 884
  27607. }
  27608. },
  27609. dick: {
  27610. height: math.unit(2.14, "feet"),
  27611. name: "Dick",
  27612. image: {
  27613. source: "./media/characters/amera/dick.svg"
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Normal",
  27620. height: math.unit(9.35, "feet"),
  27621. default: true
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27627. {
  27628. kneeling: {
  27629. height: math.unit(3 + 4 / 12, "feet"),
  27630. weight: math.unit(90, "lb"),
  27631. name: "Kneeling",
  27632. image: {
  27633. source: "./media/characters/rosewen/kneeling.svg",
  27634. extra: 1835 / 1571,
  27635. bottom: 27.7 / 1862
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(3 + 4 / 12, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(5 + 10 / 12, "feet"),
  27652. weight: math.unit(200, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/sabah/front.svg",
  27656. extra: 849 / 763,
  27657. bottom: 33.9 / 881
  27658. }
  27659. },
  27660. },
  27661. [
  27662. {
  27663. name: "Normal",
  27664. height: math.unit(5 + 10 / 12, "feet"),
  27665. default: true
  27666. },
  27667. ]
  27668. ))
  27669. characterMakers.push(() => makeCharacter(
  27670. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27671. {
  27672. front: {
  27673. height: math.unit(3 + 5 / 12, "feet"),
  27674. weight: math.unit(40, "kg"),
  27675. name: "Front",
  27676. image: {
  27677. source: "./media/characters/purple-flame/front.svg",
  27678. extra: 1577 / 1412,
  27679. bottom: 97 / 1694
  27680. }
  27681. },
  27682. frontDressed: {
  27683. height: math.unit(3 + 5 / 12, "feet"),
  27684. weight: math.unit(40, "kg"),
  27685. name: "Front (Dressed)",
  27686. image: {
  27687. source: "./media/characters/purple-flame/front-dressed.svg",
  27688. extra: 1577 / 1412,
  27689. bottom: 97 / 1694
  27690. }
  27691. },
  27692. headphones: {
  27693. height: math.unit(0.85, "feet"),
  27694. name: "Headphones",
  27695. image: {
  27696. source: "./media/characters/purple-flame/headphones.svg"
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Really Small",
  27703. height: math.unit(5, "cm")
  27704. },
  27705. {
  27706. name: "Micro",
  27707. height: math.unit(1 + 5 / 12, "feet")
  27708. },
  27709. {
  27710. name: "Normal",
  27711. height: math.unit(3 + 5 / 12, "feet"),
  27712. default: true
  27713. },
  27714. {
  27715. name: "Minimacro",
  27716. height: math.unit(125, "feet")
  27717. },
  27718. {
  27719. name: "Macro",
  27720. height: math.unit(0.5, "miles")
  27721. },
  27722. {
  27723. name: "Megamacro",
  27724. height: math.unit(50, "miles")
  27725. },
  27726. {
  27727. name: "Gigantic",
  27728. height: math.unit(750, "miles")
  27729. },
  27730. {
  27731. name: "Planetary",
  27732. height: math.unit(15000, "miles")
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(14, "feet"),
  27741. weight: math.unit(959, "lb"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/arsenal/front.svg",
  27745. extra: 2357 / 2157,
  27746. bottom: 93 / 2458
  27747. }
  27748. },
  27749. },
  27750. [
  27751. {
  27752. name: "Normal",
  27753. height: math.unit(14, "feet"),
  27754. default: true
  27755. },
  27756. ]
  27757. ))
  27758. characterMakers.push(() => makeCharacter(
  27759. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27760. {
  27761. front: {
  27762. height: math.unit(6, "feet"),
  27763. weight: math.unit(150, "lb"),
  27764. name: "Front",
  27765. image: {
  27766. source: "./media/characters/adira/front.svg",
  27767. extra: 1078 / 1029,
  27768. bottom: 87 / 1166
  27769. }
  27770. },
  27771. },
  27772. [
  27773. {
  27774. name: "Micro",
  27775. height: math.unit(4, "inches"),
  27776. default: true
  27777. },
  27778. {
  27779. name: "Macro",
  27780. height: math.unit(50, "feet")
  27781. },
  27782. ]
  27783. ))
  27784. characterMakers.push(() => makeCharacter(
  27785. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27786. {
  27787. front: {
  27788. height: math.unit(16, "feet"),
  27789. weight: math.unit(1000, "lb"),
  27790. name: "Front",
  27791. image: {
  27792. source: "./media/characters/grim/front.svg",
  27793. extra: 622 / 614,
  27794. bottom: 18.1 / 642
  27795. }
  27796. },
  27797. back: {
  27798. height: math.unit(16, "feet"),
  27799. weight: math.unit(1000, "lb"),
  27800. name: "Back",
  27801. image: {
  27802. source: "./media/characters/grim/back.svg",
  27803. extra: 610.6 / 602,
  27804. bottom: 40.8 / 652
  27805. }
  27806. },
  27807. hunched: {
  27808. height: math.unit(9.75, "feet"),
  27809. weight: math.unit(1000, "lb"),
  27810. name: "Hunched",
  27811. image: {
  27812. source: "./media/characters/grim/hunched.svg",
  27813. extra: 304 / 297,
  27814. bottom: 35.4 / 394
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(16, "feet"),
  27822. default: true
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(2.3, "meters"),
  27831. weight: math.unit(300, "lb"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/sinja/front-sfw.svg",
  27835. extra: 1393 / 1294,
  27836. bottom: 70 / 1463
  27837. }
  27838. },
  27839. frontNsfw: {
  27840. height: math.unit(2.3, "meters"),
  27841. weight: math.unit(300, "lb"),
  27842. name: "Front (NSFW)",
  27843. image: {
  27844. source: "./media/characters/sinja/front-nsfw.svg",
  27845. extra: 1393 / 1294,
  27846. bottom: 70 / 1463
  27847. }
  27848. },
  27849. back: {
  27850. height: math.unit(2.3, "meters"),
  27851. weight: math.unit(300, "lb"),
  27852. name: "Back",
  27853. image: {
  27854. source: "./media/characters/sinja/back.svg",
  27855. extra: 1393 / 1294,
  27856. bottom: 70 / 1463
  27857. }
  27858. },
  27859. head: {
  27860. height: math.unit(1.771, "feet"),
  27861. name: "Head",
  27862. image: {
  27863. source: "./media/characters/sinja/head.svg"
  27864. }
  27865. },
  27866. slit: {
  27867. height: math.unit(0.8, "feet"),
  27868. name: "Slit",
  27869. image: {
  27870. source: "./media/characters/sinja/slit.svg"
  27871. }
  27872. },
  27873. },
  27874. [
  27875. {
  27876. name: "Normal",
  27877. height: math.unit(2.3, "meters")
  27878. },
  27879. {
  27880. name: "Macro",
  27881. height: math.unit(91, "meters"),
  27882. default: true
  27883. },
  27884. {
  27885. name: "Megamacro",
  27886. height: math.unit(91440, "meters")
  27887. },
  27888. {
  27889. name: "Gigamacro",
  27890. height: math.unit(60960000, "meters")
  27891. },
  27892. {
  27893. name: "Teramacro",
  27894. height: math.unit(9144000000, "meters")
  27895. },
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27900. {
  27901. front: {
  27902. height: math.unit(1.7, "meters"),
  27903. weight: math.unit(130, "lb"),
  27904. name: "Front",
  27905. image: {
  27906. source: "./media/characters/kyu/front.svg",
  27907. extra: 415 / 395,
  27908. bottom: 5 / 420
  27909. }
  27910. },
  27911. head: {
  27912. height: math.unit(1.75, "feet"),
  27913. name: "Head",
  27914. image: {
  27915. source: "./media/characters/kyu/head.svg"
  27916. }
  27917. },
  27918. foot: {
  27919. height: math.unit(0.81, "feet"),
  27920. name: "Foot",
  27921. image: {
  27922. source: "./media/characters/kyu/foot.svg"
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Normal",
  27929. height: math.unit(1.7, "meters")
  27930. },
  27931. {
  27932. name: "Macro",
  27933. height: math.unit(131, "feet"),
  27934. default: true
  27935. },
  27936. {
  27937. name: "Megamacro",
  27938. height: math.unit(91440, "meters")
  27939. },
  27940. {
  27941. name: "Gigamacro",
  27942. height: math.unit(60960000, "meters")
  27943. },
  27944. {
  27945. name: "Teramacro",
  27946. height: math.unit(9144000000, "meters")
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(7 + 1 / 12, "feet"),
  27955. weight: math.unit(250, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/joey/front.svg",
  27959. extra: 1791 / 1537,
  27960. bottom: 28 / 1816
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Micro",
  27967. height: math.unit(3, "inches")
  27968. },
  27969. {
  27970. name: "Normal",
  27971. height: math.unit(7 + 1 / 12, "feet"),
  27972. default: true
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27978. {
  27979. front: {
  27980. height: math.unit(165, "cm"),
  27981. weight: math.unit(140, "lb"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/sam-evans/front.svg",
  27985. extra: 3417 / 3230,
  27986. bottom: 41.3 / 3417
  27987. }
  27988. },
  27989. frontSixTails: {
  27990. height: math.unit(165, "cm"),
  27991. weight: math.unit(140, "lb"),
  27992. name: "Front-six-tails",
  27993. image: {
  27994. source: "./media/characters/sam-evans/front-six-tails.svg",
  27995. extra: 3417 / 3230,
  27996. bottom: 41.3 / 3417
  27997. }
  27998. },
  27999. back: {
  28000. height: math.unit(165, "cm"),
  28001. weight: math.unit(140, "lb"),
  28002. name: "Back",
  28003. image: {
  28004. source: "./media/characters/sam-evans/back.svg",
  28005. extra: 3227 / 3032,
  28006. bottom: 6.8 / 3234
  28007. }
  28008. },
  28009. face: {
  28010. height: math.unit(0.68, "feet"),
  28011. name: "Face",
  28012. image: {
  28013. source: "./media/characters/sam-evans/face.svg"
  28014. }
  28015. },
  28016. },
  28017. [
  28018. {
  28019. name: "Normal",
  28020. height: math.unit(165, "cm"),
  28021. default: true
  28022. },
  28023. {
  28024. name: "Macro",
  28025. height: math.unit(100, "meters")
  28026. },
  28027. {
  28028. name: "Macro+",
  28029. height: math.unit(800, "meters")
  28030. },
  28031. {
  28032. name: "Macro++",
  28033. height: math.unit(3, "km")
  28034. },
  28035. {
  28036. name: "Macro+++",
  28037. height: math.unit(30, "km")
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28043. {
  28044. front: {
  28045. height: math.unit(10, "feet"),
  28046. weight: math.unit(750, "lb"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/juliet-a/front.svg",
  28050. extra: 1766 / 1720,
  28051. bottom: 43 / 1809
  28052. }
  28053. },
  28054. back: {
  28055. height: math.unit(10, "feet"),
  28056. weight: math.unit(750, "lb"),
  28057. name: "Back",
  28058. image: {
  28059. source: "./media/characters/juliet-a/back.svg",
  28060. extra: 1781 / 1734,
  28061. bottom: 35 / 1810,
  28062. }
  28063. },
  28064. },
  28065. [
  28066. {
  28067. name: "Normal",
  28068. height: math.unit(10, "feet"),
  28069. default: true
  28070. },
  28071. {
  28072. name: "Dragon Form",
  28073. height: math.unit(250, "feet")
  28074. },
  28075. {
  28076. name: "Macro",
  28077. height: math.unit(1000, "feet")
  28078. },
  28079. {
  28080. name: "Megamacro",
  28081. height: math.unit(10000, "feet")
  28082. }
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28087. {
  28088. regular: {
  28089. height: math.unit(7 + 3 / 12, "feet"),
  28090. weight: math.unit(260, "lb"),
  28091. name: "Regular",
  28092. image: {
  28093. source: "./media/characters/wild/regular.svg",
  28094. extra: 97.45 / 92,
  28095. bottom: 6.8 / 104.3
  28096. }
  28097. },
  28098. biggums: {
  28099. height: math.unit(8 + 6 / 12, "feet"),
  28100. weight: math.unit(425, "lb"),
  28101. name: "Biggums",
  28102. image: {
  28103. source: "./media/characters/wild/biggums.svg",
  28104. extra: 97.45 / 92,
  28105. bottom: 7.5 / 132.34
  28106. }
  28107. },
  28108. mawRegular: {
  28109. height: math.unit(1.24, "feet"),
  28110. name: "Maw (Regular)",
  28111. image: {
  28112. source: "./media/characters/wild/maw.svg"
  28113. }
  28114. },
  28115. mawBiggums: {
  28116. height: math.unit(1.47, "feet"),
  28117. name: "Maw (Biggums)",
  28118. image: {
  28119. source: "./media/characters/wild/maw.svg"
  28120. }
  28121. },
  28122. },
  28123. [
  28124. {
  28125. name: "Normal",
  28126. height: math.unit(7 + 3 / 12, "feet"),
  28127. default: true
  28128. },
  28129. ]
  28130. ))
  28131. characterMakers.push(() => makeCharacter(
  28132. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28133. {
  28134. front: {
  28135. height: math.unit(2.5, "meters"),
  28136. weight: math.unit(200, "kg"),
  28137. name: "Front",
  28138. image: {
  28139. source: "./media/characters/vidar/front.svg",
  28140. extra: 2994 / 2795,
  28141. bottom: 56 / 3061
  28142. }
  28143. },
  28144. back: {
  28145. height: math.unit(2.5, "meters"),
  28146. weight: math.unit(200, "kg"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/vidar/back.svg",
  28150. extra: 3131 / 2928,
  28151. bottom: 13.5 / 3141.5
  28152. }
  28153. },
  28154. feral: {
  28155. height: math.unit(2.5, "meters"),
  28156. weight: math.unit(2000, "kg"),
  28157. name: "Feral",
  28158. image: {
  28159. source: "./media/characters/vidar/feral.svg",
  28160. extra: 2790 / 1765,
  28161. bottom: 6 / 2796
  28162. }
  28163. },
  28164. },
  28165. [
  28166. {
  28167. name: "Normal",
  28168. height: math.unit(2.5, "meters"),
  28169. default: true
  28170. },
  28171. {
  28172. name: "Macro",
  28173. height: math.unit(100, "meters")
  28174. },
  28175. ]
  28176. ))
  28177. characterMakers.push(() => makeCharacter(
  28178. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28179. {
  28180. front: {
  28181. height: math.unit(5 + 9 / 12, "feet"),
  28182. weight: math.unit(120, "lb"),
  28183. name: "Front",
  28184. image: {
  28185. source: "./media/characters/ash/front.svg",
  28186. extra: 2189 / 1961,
  28187. bottom: 5.2 / 2194
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(5 + 9 / 12, "feet"),
  28195. default: true
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28201. {
  28202. front: {
  28203. height: math.unit(9, "feet"),
  28204. weight: math.unit(10000, "lb"),
  28205. name: "Front",
  28206. image: {
  28207. source: "./media/characters/gygabite/front.svg",
  28208. bottom: 31.7 / 537.8,
  28209. extra: 505 / 370
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(9, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(12, "feet"),
  28226. weight: math.unit(35000, "lb"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/p0tat0/front.svg",
  28230. extra: 1065 / 921,
  28231. bottom: 55.7 / 1121.25
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(12, "feet"),
  28239. default: true
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28245. {
  28246. side: {
  28247. height: math.unit(6.5, "feet"),
  28248. weight: math.unit(800, "lb"),
  28249. name: "Side",
  28250. image: {
  28251. source: "./media/characters/dusk/side.svg",
  28252. extra: 615 / 373,
  28253. bottom: 53 / 664
  28254. }
  28255. },
  28256. sitting: {
  28257. height: math.unit(7, "feet"),
  28258. weight: math.unit(800, "lb"),
  28259. name: "Sitting",
  28260. image: {
  28261. source: "./media/characters/dusk/sitting.svg",
  28262. extra: 753 / 425,
  28263. bottom: 33 / 774
  28264. }
  28265. },
  28266. head: {
  28267. height: math.unit(6.1, "feet"),
  28268. name: "Head",
  28269. image: {
  28270. source: "./media/characters/dusk/head.svg"
  28271. }
  28272. },
  28273. },
  28274. [
  28275. {
  28276. name: "Normal",
  28277. height: math.unit(7, "feet"),
  28278. default: true
  28279. },
  28280. ]
  28281. ))
  28282. characterMakers.push(() => makeCharacter(
  28283. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28284. {
  28285. front: {
  28286. height: math.unit(15, "feet"),
  28287. weight: math.unit(7000, "lb"),
  28288. name: "Front",
  28289. image: {
  28290. source: "./media/characters/jay-direwolf/front.svg",
  28291. extra: 1810 / 1732,
  28292. bottom: 66 / 1892
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(15, "feet"),
  28300. default: true
  28301. },
  28302. ]
  28303. ))
  28304. characterMakers.push(() => makeCharacter(
  28305. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28306. {
  28307. front: {
  28308. height: math.unit(4 + 9 / 12, "feet"),
  28309. weight: math.unit(130, "lb"),
  28310. name: "Front",
  28311. image: {
  28312. source: "./media/characters/anchovie/front.svg",
  28313. extra: 382 / 350,
  28314. bottom: 25 / 409
  28315. }
  28316. },
  28317. back: {
  28318. height: math.unit(4 + 9 / 12, "feet"),
  28319. weight: math.unit(130, "lb"),
  28320. name: "Back",
  28321. image: {
  28322. source: "./media/characters/anchovie/back.svg",
  28323. extra: 385 / 352,
  28324. bottom: 16.6 / 402
  28325. }
  28326. },
  28327. frontDressed: {
  28328. height: math.unit(4 + 9 / 12, "feet"),
  28329. weight: math.unit(130, "lb"),
  28330. name: "Front (Dressed)",
  28331. image: {
  28332. source: "./media/characters/anchovie/front-dressed.svg",
  28333. extra: 382 / 350,
  28334. bottom: 25 / 409
  28335. }
  28336. },
  28337. backDressed: {
  28338. height: math.unit(4 + 9 / 12, "feet"),
  28339. weight: math.unit(130, "lb"),
  28340. name: "Back (Dressed)",
  28341. image: {
  28342. source: "./media/characters/anchovie/back-dressed.svg",
  28343. extra: 385 / 352,
  28344. bottom: 16.6 / 402
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Micro",
  28351. height: math.unit(6.4, "inches")
  28352. },
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(4 + 9 / 12, "feet"),
  28356. default: true
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28362. {
  28363. front: {
  28364. height: math.unit(2, "meters"),
  28365. weight: math.unit(180, "lb"),
  28366. name: "Front",
  28367. image: {
  28368. source: "./media/characters/acidrenamon/front.svg",
  28369. extra: 987 / 890,
  28370. bottom: 22.8 / 1009
  28371. }
  28372. },
  28373. back: {
  28374. height: math.unit(2, "meters"),
  28375. weight: math.unit(180, "lb"),
  28376. name: "Back",
  28377. image: {
  28378. source: "./media/characters/acidrenamon/back.svg",
  28379. extra: 983 / 891,
  28380. bottom: 8.4 / 992
  28381. }
  28382. },
  28383. head: {
  28384. height: math.unit(1.92, "feet"),
  28385. name: "Head",
  28386. image: {
  28387. source: "./media/characters/acidrenamon/head.svg"
  28388. }
  28389. },
  28390. rump: {
  28391. height: math.unit(1.72, "feet"),
  28392. name: "Rump",
  28393. image: {
  28394. source: "./media/characters/acidrenamon/rump.svg"
  28395. }
  28396. },
  28397. tail: {
  28398. height: math.unit(4.2, "feet"),
  28399. name: "Tail",
  28400. image: {
  28401. source: "./media/characters/acidrenamon/tail.svg"
  28402. }
  28403. },
  28404. },
  28405. [
  28406. {
  28407. name: "Normal",
  28408. height: math.unit(2, "meters"),
  28409. default: true
  28410. },
  28411. {
  28412. name: "Minimacro",
  28413. height: math.unit(7, "meters")
  28414. },
  28415. {
  28416. name: "Macro",
  28417. height: math.unit(200, "meters")
  28418. },
  28419. {
  28420. name: "Gigamacro",
  28421. height: math.unit(0.2, "earths")
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28427. {
  28428. front: {
  28429. height: math.unit(152, "feet"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/kenzie-lee/front.svg",
  28433. extra: 1869/1774,
  28434. bottom: 128/1997
  28435. }
  28436. },
  28437. side: {
  28438. height: math.unit(86, "feet"),
  28439. name: "Side",
  28440. image: {
  28441. source: "./media/characters/kenzie-lee/side.svg",
  28442. extra: 930/815,
  28443. bottom: 177/1107
  28444. }
  28445. },
  28446. paw: {
  28447. height: math.unit(15, "feet"),
  28448. name: "Paw",
  28449. image: {
  28450. source: "./media/characters/kenzie-lee/paw.svg"
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Micro",
  28457. height: math.unit(1.5, "inches")
  28458. },
  28459. {
  28460. name: "Normal",
  28461. height: math.unit(152, "feet"),
  28462. default: true
  28463. },
  28464. {
  28465. name: "Megamacro",
  28466. height: math.unit(7, "miles")
  28467. },
  28468. {
  28469. name: "Gigamacro",
  28470. height: math.unit(8000, "miles")
  28471. },
  28472. ]
  28473. ))
  28474. characterMakers.push(() => makeCharacter(
  28475. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28476. {
  28477. side: {
  28478. height: math.unit(6, "feet"),
  28479. weight: math.unit(150, "lb"),
  28480. name: "Side",
  28481. image: {
  28482. source: "./media/characters/withers/side.svg",
  28483. extra: 1830 / 1728,
  28484. bottom: 96 / 1927
  28485. }
  28486. },
  28487. front: {
  28488. height: math.unit(6, "feet"),
  28489. weight: math.unit(150, "lb"),
  28490. name: "Front",
  28491. image: {
  28492. source: "./media/characters/withers/front.svg",
  28493. extra: 1514 / 1438,
  28494. bottom: 118 / 1632
  28495. }
  28496. },
  28497. },
  28498. [
  28499. {
  28500. name: "Macro",
  28501. height: math.unit(168, "feet"),
  28502. default: true
  28503. },
  28504. {
  28505. name: "Megamacro",
  28506. height: math.unit(15, "miles")
  28507. }
  28508. ]
  28509. ))
  28510. characterMakers.push(() => makeCharacter(
  28511. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28512. {
  28513. front: {
  28514. height: math.unit(6 + 7 / 12, "feet"),
  28515. weight: math.unit(250, "lb"),
  28516. name: "Front",
  28517. image: {
  28518. source: "./media/characters/nemoskii/front.svg",
  28519. extra: 2270 / 1734,
  28520. bottom: 86 / 2354
  28521. }
  28522. },
  28523. back: {
  28524. height: math.unit(6 + 7 / 12, "feet"),
  28525. weight: math.unit(250, "lb"),
  28526. name: "Back",
  28527. image: {
  28528. source: "./media/characters/nemoskii/back.svg",
  28529. extra: 1845 / 1788,
  28530. bottom: 10.5 / 1852
  28531. }
  28532. },
  28533. head: {
  28534. height: math.unit(1.31, "feet"),
  28535. name: "Head",
  28536. image: {
  28537. source: "./media/characters/nemoskii/head.svg"
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Micro",
  28544. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28545. },
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(6 + 7 / 12, "feet"),
  28549. default: true
  28550. },
  28551. {
  28552. name: "Macro",
  28553. height: math.unit((6 + 7 / 12) * 150, "feet")
  28554. },
  28555. {
  28556. name: "Macro+",
  28557. height: math.unit((6 + 7 / 12) * 500, "feet")
  28558. },
  28559. {
  28560. name: "Megamacro",
  28561. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28567. {
  28568. front: {
  28569. height: math.unit(1, "mile"),
  28570. weight: math.unit(265261.9, "lb"),
  28571. name: "Front",
  28572. image: {
  28573. source: "./media/characters/shui/front.svg",
  28574. extra: 1633 / 1564,
  28575. bottom: 91.5 / 1726
  28576. }
  28577. },
  28578. },
  28579. [
  28580. {
  28581. name: "Macro",
  28582. height: math.unit(1, "mile"),
  28583. default: true
  28584. },
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28589. {
  28590. front: {
  28591. height: math.unit(12 + 6 / 12, "feet"),
  28592. weight: math.unit(1342, "lb"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/arokh-takakura/front.svg",
  28596. extra: 1089 / 1043,
  28597. bottom: 77.4 / 1176.7
  28598. }
  28599. },
  28600. back: {
  28601. height: math.unit(12 + 6 / 12, "feet"),
  28602. weight: math.unit(1342, "lb"),
  28603. name: "Back",
  28604. image: {
  28605. source: "./media/characters/arokh-takakura/back.svg",
  28606. extra: 1046 / 1019,
  28607. bottom: 102 / 1150
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Big",
  28614. height: math.unit(12 + 6 / 12, "feet"),
  28615. default: true
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(5 + 6 / 12, "feet"),
  28624. weight: math.unit(150, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/theo/front.svg",
  28628. extra: 1184 / 1131,
  28629. bottom: 7.4 / 1191
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Micro",
  28636. height: math.unit(5, "inches")
  28637. },
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(5 + 6 / 12, "feet"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(5 + 9 / 12, "feet"),
  28650. weight: math.unit(130, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/cecelia-swift/front.svg",
  28654. extra: 502 / 484,
  28655. bottom: 23 / 523
  28656. }
  28657. },
  28658. back: {
  28659. height: math.unit(5 + 9 / 12, "feet"),
  28660. weight: math.unit(130, "lb"),
  28661. name: "Back",
  28662. image: {
  28663. source: "./media/characters/cecelia-swift/back.svg",
  28664. extra: 499 / 485,
  28665. bottom: 12 / 511
  28666. }
  28667. },
  28668. head: {
  28669. height: math.unit(0.90, "feet"),
  28670. name: "Head",
  28671. image: {
  28672. source: "./media/characters/cecelia-swift/head.svg"
  28673. }
  28674. },
  28675. rump: {
  28676. height: math.unit(1.75, "feet"),
  28677. name: "Rump",
  28678. image: {
  28679. source: "./media/characters/cecelia-swift/rump.svg"
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(5 + 9 / 12, "feet"),
  28687. default: true
  28688. },
  28689. {
  28690. name: "Big",
  28691. height: math.unit(50, "feet")
  28692. },
  28693. {
  28694. name: "Macro",
  28695. height: math.unit(100, "feet")
  28696. },
  28697. {
  28698. name: "Macro+",
  28699. height: math.unit(500, "feet")
  28700. },
  28701. {
  28702. name: "Macro++",
  28703. height: math.unit(1000, "feet")
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(6, "feet"),
  28712. weight: math.unit(150, "lb"),
  28713. name: "Front",
  28714. image: {
  28715. source: "./media/characters/kaunan/front.svg",
  28716. extra: 2890 / 2523,
  28717. bottom: 49 / 2939
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Macro",
  28724. height: math.unit(150, "feet"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(175, "cm"),
  28734. weight: math.unit(60, "kg"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/fei/front.svg",
  28738. extra: 1873/1723,
  28739. bottom: 53/1926
  28740. }
  28741. },
  28742. },
  28743. [
  28744. {
  28745. name: "Mortal",
  28746. height: math.unit(175, "cm")
  28747. },
  28748. {
  28749. name: "Normal",
  28750. height: math.unit(3500, "m"),
  28751. default: true
  28752. },
  28753. {
  28754. name: "Stroll",
  28755. height: math.unit(17.5, "km")
  28756. },
  28757. {
  28758. name: "Showoff",
  28759. height: math.unit(175, "km")
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28765. {
  28766. front: {
  28767. height: math.unit(7, "feet"),
  28768. weight: math.unit(1000, "kg"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/edrax/front.svg",
  28772. extra: 2838 / 2550,
  28773. bottom: 130 / 2968
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Small",
  28780. height: math.unit(7, "feet")
  28781. },
  28782. {
  28783. name: "Normal",
  28784. height: math.unit(1500, "meters")
  28785. },
  28786. {
  28787. name: "Mega",
  28788. height: math.unit(12000000, "km"),
  28789. default: true
  28790. },
  28791. {
  28792. name: "Megamacro",
  28793. height: math.unit(10600000, "lightyears")
  28794. },
  28795. {
  28796. name: "Hypermacro",
  28797. height: math.unit(256, "yottameters")
  28798. },
  28799. ]
  28800. ))
  28801. characterMakers.push(() => makeCharacter(
  28802. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28803. {
  28804. front: {
  28805. height: math.unit(10, "feet"),
  28806. weight: math.unit(750, "lb"),
  28807. name: "Front",
  28808. image: {
  28809. source: "./media/characters/clove/front.svg",
  28810. extra: 1918/1751,
  28811. bottom: 52/1970
  28812. }
  28813. },
  28814. back: {
  28815. height: math.unit(10, "feet"),
  28816. weight: math.unit(750, "lb"),
  28817. name: "Back",
  28818. image: {
  28819. source: "./media/characters/clove/back.svg",
  28820. extra: 1912/1747,
  28821. bottom: 50/1962
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(10, "feet"),
  28829. default: true
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(4, "feet"),
  28838. weight: math.unit(50, "lb"),
  28839. name: "Front",
  28840. image: {
  28841. source: "./media/characters/alex-rabbit/front.svg",
  28842. extra: 507 / 458,
  28843. bottom: 18.5 / 527
  28844. }
  28845. },
  28846. back: {
  28847. height: math.unit(4, "feet"),
  28848. weight: math.unit(50, "lb"),
  28849. name: "Back",
  28850. image: {
  28851. source: "./media/characters/alex-rabbit/back.svg",
  28852. extra: 502 / 460,
  28853. bottom: 18.9 / 521
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Normal",
  28860. height: math.unit(4, "feet"),
  28861. default: true
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(1 + 3 / 12, "feet"),
  28870. weight: math.unit(80, "lb"),
  28871. name: "Front",
  28872. image: {
  28873. source: "./media/characters/zander-rose/front.svg",
  28874. extra: 916 / 797,
  28875. bottom: 17 / 933
  28876. }
  28877. },
  28878. back: {
  28879. height: math.unit(1 + 3 / 12, "feet"),
  28880. weight: math.unit(80, "lb"),
  28881. name: "Back",
  28882. image: {
  28883. source: "./media/characters/zander-rose/back.svg",
  28884. extra: 903 / 779,
  28885. bottom: 31 / 934
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(1 + 3 / 12, "feet"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28899. {
  28900. anthro: {
  28901. height: math.unit(6, "feet"),
  28902. weight: math.unit(150, "lb"),
  28903. name: "Anthro",
  28904. image: {
  28905. source: "./media/characters/razz/anthro.svg",
  28906. extra: 1437 / 1343,
  28907. bottom: 48 / 1485
  28908. }
  28909. },
  28910. feral: {
  28911. height: math.unit(6, "feet"),
  28912. weight: math.unit(150, "lb"),
  28913. name: "Feral",
  28914. image: {
  28915. source: "./media/characters/razz/feral.svg",
  28916. extra: 2569 / 1385,
  28917. bottom: 95 / 2664
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(6, "feet"),
  28925. default: true
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(9 + 4 / 12, "feet"),
  28934. weight: math.unit(500, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/morrigan/front.svg",
  28938. extra: 2707 / 2579,
  28939. bottom: 156 / 2863
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Normal",
  28946. height: math.unit(9 + 4 / 12, "feet"),
  28947. default: true
  28948. },
  28949. ]
  28950. ))
  28951. characterMakers.push(() => makeCharacter(
  28952. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28953. {
  28954. front: {
  28955. height: math.unit(5, "stories"),
  28956. weight: math.unit(4000, "lb"),
  28957. name: "Front",
  28958. image: {
  28959. source: "./media/characters/jenene/front.svg",
  28960. extra: 1780 / 1710,
  28961. bottom: 57 / 1837
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(5, "stories"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28975. {
  28976. taurSfw: {
  28977. height: math.unit(10, "meters"),
  28978. weight: math.unit(17500, "kg"),
  28979. name: "Taur",
  28980. image: {
  28981. source: "./media/characters/faey/taur-sfw.svg",
  28982. extra: 1200 / 968,
  28983. bottom: 41 / 1241
  28984. }
  28985. },
  28986. chestmaw: {
  28987. height: math.unit(2.01, "meters"),
  28988. name: "Chestmaw",
  28989. image: {
  28990. source: "./media/characters/faey/chestmaw.svg"
  28991. }
  28992. },
  28993. foot: {
  28994. height: math.unit(2.43, "meters"),
  28995. name: "Foot",
  28996. image: {
  28997. source: "./media/characters/faey/foot.svg"
  28998. }
  28999. },
  29000. jaws: {
  29001. height: math.unit(1.66, "meters"),
  29002. name: "Jaws",
  29003. image: {
  29004. source: "./media/characters/faey/jaws.svg"
  29005. }
  29006. },
  29007. tongues: {
  29008. height: math.unit(2.01, "meters"),
  29009. name: "Tongues",
  29010. image: {
  29011. source: "./media/characters/faey/tongues.svg"
  29012. }
  29013. },
  29014. },
  29015. [
  29016. {
  29017. name: "Small",
  29018. height: math.unit(10, "meters"),
  29019. default: true
  29020. },
  29021. {
  29022. name: "Big",
  29023. height: math.unit(500000, "km")
  29024. },
  29025. ]
  29026. ))
  29027. characterMakers.push(() => makeCharacter(
  29028. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29029. {
  29030. front: {
  29031. height: math.unit(7, "feet"),
  29032. weight: math.unit(275, "lb"),
  29033. name: "Front",
  29034. image: {
  29035. source: "./media/characters/roku/front.svg",
  29036. extra: 903 / 878,
  29037. bottom: 37 / 940
  29038. }
  29039. },
  29040. },
  29041. [
  29042. {
  29043. name: "Normal",
  29044. height: math.unit(7, "feet"),
  29045. default: true
  29046. },
  29047. {
  29048. name: "Macro",
  29049. height: math.unit(500, "feet")
  29050. },
  29051. {
  29052. name: "Megamacro",
  29053. height: math.unit(200, "miles")
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29059. {
  29060. front: {
  29061. height: math.unit(6 + 2 / 12, "feet"),
  29062. weight: math.unit(150, "lb"),
  29063. name: "Front",
  29064. image: {
  29065. source: "./media/characters/lira/front.svg",
  29066. extra: 1727 / 1605,
  29067. bottom: 26 / 1753
  29068. }
  29069. },
  29070. back: {
  29071. height: math.unit(6 + 2 / 12, "feet"),
  29072. weight: math.unit(150, "lb"),
  29073. name: "Back",
  29074. image: {
  29075. source: "./media/characters/lira/back.svg",
  29076. extra: 1713/1621,
  29077. bottom: 20/1733
  29078. }
  29079. },
  29080. hand: {
  29081. height: math.unit(0.75, "feet"),
  29082. name: "Hand",
  29083. image: {
  29084. source: "./media/characters/lira/hand.svg"
  29085. }
  29086. },
  29087. maw: {
  29088. height: math.unit(0.65, "feet"),
  29089. name: "Maw",
  29090. image: {
  29091. source: "./media/characters/lira/maw.svg"
  29092. }
  29093. },
  29094. pawDigi: {
  29095. height: math.unit(1.6, "feet"),
  29096. name: "Paw Digi",
  29097. image: {
  29098. source: "./media/characters/lira/paw-digi.svg"
  29099. }
  29100. },
  29101. pawPlanti: {
  29102. height: math.unit(1.4, "feet"),
  29103. name: "Paw Planti",
  29104. image: {
  29105. source: "./media/characters/lira/paw-planti.svg"
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Normal",
  29112. height: math.unit(6 + 2 / 12, "feet"),
  29113. default: true
  29114. },
  29115. {
  29116. name: "Macro",
  29117. height: math.unit(100, "feet")
  29118. },
  29119. {
  29120. name: "Macro²",
  29121. height: math.unit(1600, "feet")
  29122. },
  29123. {
  29124. name: "Planetary",
  29125. height: math.unit(20, "earths")
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(6, "feet"),
  29134. weight: math.unit(150, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/hadjet/front.svg",
  29138. extra: 1480 / 1346,
  29139. bottom: 26 / 1506
  29140. }
  29141. },
  29142. frontNsfw: {
  29143. height: math.unit(6, "feet"),
  29144. weight: math.unit(150, "lb"),
  29145. name: "Front (NSFW)",
  29146. image: {
  29147. source: "./media/characters/hadjet/front-nsfw.svg",
  29148. extra: 1440 / 1358,
  29149. bottom: 52 / 1492
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Macro",
  29156. height: math.unit(10, "stories"),
  29157. default: true
  29158. },
  29159. {
  29160. name: "Megamacro",
  29161. height: math.unit(1.5, "miles")
  29162. },
  29163. {
  29164. name: "Megamacro+",
  29165. height: math.unit(5, "miles")
  29166. },
  29167. ]
  29168. ))
  29169. characterMakers.push(() => makeCharacter(
  29170. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29171. {
  29172. side: {
  29173. height: math.unit(106, "feet"),
  29174. weight: math.unit(500, "tonnes"),
  29175. name: "Side",
  29176. image: {
  29177. source: "./media/characters/kodran/side.svg",
  29178. extra: 553 / 480,
  29179. bottom: 33 / 586
  29180. }
  29181. },
  29182. front: {
  29183. height: math.unit(132, "feet"),
  29184. weight: math.unit(500, "tonnes"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/kodran/front.svg",
  29188. extra: 667 / 643,
  29189. bottom: 42 / 709
  29190. }
  29191. },
  29192. flying: {
  29193. height: math.unit(350, "feet"),
  29194. weight: math.unit(500, "tonnes"),
  29195. name: "Flying",
  29196. image: {
  29197. source: "./media/characters/kodran/flying.svg"
  29198. }
  29199. },
  29200. foot: {
  29201. height: math.unit(33, "feet"),
  29202. name: "Foot",
  29203. image: {
  29204. source: "./media/characters/kodran/foot.svg"
  29205. }
  29206. },
  29207. footFront: {
  29208. height: math.unit(19, "feet"),
  29209. name: "Foot (Front)",
  29210. image: {
  29211. source: "./media/characters/kodran/foot-front.svg",
  29212. extra: 261 / 261,
  29213. bottom: 91 / 352
  29214. }
  29215. },
  29216. headFront: {
  29217. height: math.unit(53, "feet"),
  29218. name: "Head (Front)",
  29219. image: {
  29220. source: "./media/characters/kodran/head-front.svg"
  29221. }
  29222. },
  29223. headSide: {
  29224. height: math.unit(65, "feet"),
  29225. name: "Head (Side)",
  29226. image: {
  29227. source: "./media/characters/kodran/head-side.svg"
  29228. }
  29229. },
  29230. throat: {
  29231. height: math.unit(79, "feet"),
  29232. name: "Throat",
  29233. image: {
  29234. source: "./media/characters/kodran/throat.svg"
  29235. }
  29236. },
  29237. },
  29238. [
  29239. {
  29240. name: "Large",
  29241. height: math.unit(106, "feet"),
  29242. default: true
  29243. },
  29244. ]
  29245. ))
  29246. characterMakers.push(() => makeCharacter(
  29247. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29248. {
  29249. side: {
  29250. height: math.unit(11, "feet"),
  29251. weight: math.unit(150, "lb"),
  29252. name: "Side",
  29253. image: {
  29254. source: "./media/characters/pyxaron/side.svg",
  29255. extra: 305 / 195,
  29256. bottom: 17 / 322
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(11, "feet"),
  29264. default: true
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(6, "feet"),
  29273. weight: math.unit(150, "lb"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/meep/front.svg",
  29277. extra: 88 / 80,
  29278. bottom: 6 / 94
  29279. }
  29280. },
  29281. },
  29282. [
  29283. {
  29284. name: "Fun Sized",
  29285. height: math.unit(2, "inches"),
  29286. default: true
  29287. },
  29288. {
  29289. name: "Friend Sized",
  29290. height: math.unit(8, "inches")
  29291. },
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29296. {
  29297. front: {
  29298. height: math.unit(15, "feet"),
  29299. weight: math.unit(2500, "lb"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/holly-rabbit/front.svg",
  29303. extra: 1433 / 1233,
  29304. bottom: 125 / 1558
  29305. }
  29306. },
  29307. dick: {
  29308. height: math.unit(4.6, "feet"),
  29309. name: "Dick",
  29310. image: {
  29311. source: "./media/characters/holly-rabbit/dick.svg"
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Normal",
  29318. height: math.unit(15, "feet"),
  29319. default: true
  29320. },
  29321. {
  29322. name: "Macro",
  29323. height: math.unit(250, "feet")
  29324. },
  29325. {
  29326. name: "Macro+",
  29327. height: math.unit(2500, "feet")
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(3.02, "meters"),
  29336. weight: math.unit(500, "kg"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/drena/front.svg",
  29340. extra: 282 / 243,
  29341. bottom: 8 / 290
  29342. }
  29343. },
  29344. side: {
  29345. height: math.unit(3.02, "meters"),
  29346. weight: math.unit(500, "kg"),
  29347. name: "Side",
  29348. image: {
  29349. source: "./media/characters/drena/side.svg",
  29350. extra: 280 / 245,
  29351. bottom: 10 / 290
  29352. }
  29353. },
  29354. back: {
  29355. height: math.unit(3.02, "meters"),
  29356. weight: math.unit(500, "kg"),
  29357. name: "Back",
  29358. image: {
  29359. source: "./media/characters/drena/back.svg",
  29360. extra: 278 / 243,
  29361. bottom: 2 / 280
  29362. }
  29363. },
  29364. foot: {
  29365. height: math.unit(0.75, "meters"),
  29366. name: "Foot",
  29367. image: {
  29368. source: "./media/characters/drena/foot.svg"
  29369. }
  29370. },
  29371. maw: {
  29372. height: math.unit(0.82, "meters"),
  29373. name: "Maw",
  29374. image: {
  29375. source: "./media/characters/drena/maw.svg"
  29376. }
  29377. },
  29378. eating: {
  29379. height: math.unit(0.75, "meters"),
  29380. name: "Eating",
  29381. image: {
  29382. source: "./media/characters/drena/eating.svg"
  29383. }
  29384. },
  29385. rump: {
  29386. height: math.unit(0.93, "meters"),
  29387. name: "Rump",
  29388. image: {
  29389. source: "./media/characters/drena/rump.svg"
  29390. }
  29391. },
  29392. },
  29393. [
  29394. {
  29395. name: "Normal",
  29396. height: math.unit(3.02, "meters"),
  29397. default: true
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29403. {
  29404. front: {
  29405. height: math.unit(6 + 4 / 12, "feet"),
  29406. weight: math.unit(250, "lb"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/remmyzilla/front.svg",
  29410. extra: 4033 / 3588,
  29411. bottom: 123 / 4156
  29412. }
  29413. },
  29414. back: {
  29415. height: math.unit(6 + 4 / 12, "feet"),
  29416. weight: math.unit(250, "lb"),
  29417. name: "Back",
  29418. image: {
  29419. source: "./media/characters/remmyzilla/back.svg",
  29420. extra: 2687 / 2555,
  29421. bottom: 48 / 2735
  29422. }
  29423. },
  29424. paw: {
  29425. height: math.unit(1.73, "feet"),
  29426. name: "Paw",
  29427. image: {
  29428. source: "./media/characters/remmyzilla/paw.svg"
  29429. }
  29430. },
  29431. maw: {
  29432. height: math.unit(1.73, "feet"),
  29433. name: "Maw",
  29434. image: {
  29435. source: "./media/characters/remmyzilla/maw.svg"
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Normal",
  29442. height: math.unit(6 + 4 / 12, "feet")
  29443. },
  29444. {
  29445. name: "Minimacro",
  29446. height: math.unit(12 + 8 / 12, "feet")
  29447. },
  29448. {
  29449. name: "Normal",
  29450. height: math.unit(640, "feet"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Megamacro",
  29455. height: math.unit(6400, "feet")
  29456. },
  29457. {
  29458. name: "Gigamacro",
  29459. height: math.unit(64000, "miles")
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29465. {
  29466. front: {
  29467. height: math.unit(2.5, "meters"),
  29468. weight: math.unit(300, "lb"),
  29469. name: "Front",
  29470. image: {
  29471. source: "./media/characters/lawrence/front.svg",
  29472. extra: 357 / 335,
  29473. bottom: 30 / 387
  29474. }
  29475. },
  29476. back: {
  29477. height: math.unit(2.5, "meters"),
  29478. weight: math.unit(300, "lb"),
  29479. name: "Back",
  29480. image: {
  29481. source: "./media/characters/lawrence/back.svg",
  29482. extra: 357 / 338,
  29483. bottom: 16 / 373
  29484. }
  29485. },
  29486. head: {
  29487. height: math.unit(0.9, "meter"),
  29488. name: "Head",
  29489. image: {
  29490. source: "./media/characters/lawrence/head.svg"
  29491. }
  29492. },
  29493. maw: {
  29494. height: math.unit(0.7, "meter"),
  29495. name: "Maw",
  29496. image: {
  29497. source: "./media/characters/lawrence/maw.svg"
  29498. }
  29499. },
  29500. footBottom: {
  29501. height: math.unit(0.5, "meter"),
  29502. name: "Foot (Bottom)",
  29503. image: {
  29504. source: "./media/characters/lawrence/foot-bottom.svg"
  29505. }
  29506. },
  29507. footTop: {
  29508. height: math.unit(0.5, "meter"),
  29509. name: "Foot (Top)",
  29510. image: {
  29511. source: "./media/characters/lawrence/foot-top.svg"
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Normal",
  29518. height: math.unit(2.5, "meters"),
  29519. default: true
  29520. },
  29521. {
  29522. name: "Macro",
  29523. height: math.unit(95, "meters")
  29524. },
  29525. {
  29526. name: "Megamacro",
  29527. height: math.unit(150, "km")
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29533. {
  29534. front: {
  29535. height: math.unit(4.2, "meters"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/sydney/front.svg",
  29539. extra: 1323 / 1277,
  29540. bottom: 111 / 1434
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Normal",
  29547. height: math.unit(4.2, "meters"),
  29548. default: true
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29554. {
  29555. back: {
  29556. height: math.unit(201, "feet"),
  29557. name: "Back",
  29558. image: {
  29559. source: "./media/characters/jessica/back.svg",
  29560. extra: 273 / 259,
  29561. bottom: 7 / 280
  29562. }
  29563. },
  29564. },
  29565. [
  29566. {
  29567. name: "Normal",
  29568. height: math.unit(201, "feet"),
  29569. default: true
  29570. },
  29571. {
  29572. name: "Megamacro",
  29573. height: math.unit(8, "miles")
  29574. },
  29575. ]
  29576. ))
  29577. characterMakers.push(() => makeCharacter(
  29578. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29579. {
  29580. side: {
  29581. height: math.unit(5.6, "m"),
  29582. weight: math.unit(8000, "kg"),
  29583. name: "Side",
  29584. image: {
  29585. source: "./media/characters/victoria/side.svg",
  29586. extra: 1542/1229,
  29587. bottom: 124/1666
  29588. }
  29589. },
  29590. maw: {
  29591. height: math.unit(7.14, "feet"),
  29592. name: "Maw",
  29593. image: {
  29594. source: "./media/characters/victoria/maw.svg"
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(5.6, "m"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29608. {
  29609. front: {
  29610. height: math.unit(5 + 6 / 12, "feet"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/cat/front.svg",
  29614. extra: 1449/1295,
  29615. bottom: 34/1483
  29616. },
  29617. form: "cat",
  29618. default: true
  29619. },
  29620. back: {
  29621. height: math.unit(5 + 6 / 12, "feet"),
  29622. name: "Back",
  29623. image: {
  29624. source: "./media/characters/cat/back.svg",
  29625. extra: 1466/1301,
  29626. bottom: 19/1485
  29627. },
  29628. form: "cat"
  29629. },
  29630. taur: {
  29631. height: math.unit(7, "feet"),
  29632. name: "Taur",
  29633. image: {
  29634. source: "./media/characters/cat/taur.svg",
  29635. extra: 1389/1233,
  29636. bottom: 83/1472
  29637. },
  29638. form: "taur",
  29639. default: true
  29640. },
  29641. lucarioFront: {
  29642. height: math.unit(4, "feet"),
  29643. name: "Lucario (Front)",
  29644. image: {
  29645. source: "./media/characters/cat/lucario-front.svg",
  29646. extra: 1149/1019,
  29647. bottom: 84/1233
  29648. },
  29649. form: "lucario",
  29650. default: true
  29651. },
  29652. lucarioBack: {
  29653. height: math.unit(4, "feet"),
  29654. name: "Lucario (Back)",
  29655. image: {
  29656. source: "./media/characters/cat/lucario-back.svg",
  29657. extra: 1190/1059,
  29658. bottom: 33/1223
  29659. },
  29660. form: "lucario"
  29661. },
  29662. megaLucario: {
  29663. height: math.unit(4, "feet"),
  29664. name: "Mega Lucario",
  29665. image: {
  29666. source: "./media/characters/cat/mega-lucario.svg",
  29667. extra: 1515 / 1319,
  29668. bottom: 63 / 1578
  29669. },
  29670. form: "lucario"
  29671. },
  29672. nickit: {
  29673. height: math.unit(2, "feet"),
  29674. name: "Nickit",
  29675. image: {
  29676. source: "./media/characters/cat/nickit.svg",
  29677. extra: 1980 / 1585,
  29678. bottom: 102 / 2082
  29679. },
  29680. form: "nickit",
  29681. default: true
  29682. },
  29683. lopunnyFront: {
  29684. height: math.unit(5, "feet"),
  29685. name: "Lopunny (Front)",
  29686. image: {
  29687. source: "./media/characters/cat/lopunny-front.svg",
  29688. extra: 1782 / 1469,
  29689. bottom: 38 / 1820
  29690. },
  29691. form: "lopunny",
  29692. default: true
  29693. },
  29694. lopunnyBack: {
  29695. height: math.unit(5, "feet"),
  29696. name: "Lopunny (Back)",
  29697. image: {
  29698. source: "./media/characters/cat/lopunny-back.svg",
  29699. extra: 1660 / 1490,
  29700. bottom: 25 / 1685
  29701. },
  29702. form: "lopunny"
  29703. },
  29704. },
  29705. [
  29706. {
  29707. name: "Really small",
  29708. height: math.unit(1, "nm")
  29709. },
  29710. {
  29711. name: "Micro",
  29712. height: math.unit(5, "inches")
  29713. },
  29714. {
  29715. name: "Normal",
  29716. height: math.unit(5 + 6 / 12, "feet"),
  29717. default: true
  29718. },
  29719. {
  29720. name: "Macro",
  29721. height: math.unit(50, "feet")
  29722. },
  29723. {
  29724. name: "Macro+",
  29725. height: math.unit(150, "feet")
  29726. },
  29727. {
  29728. name: "Megamacro",
  29729. height: math.unit(100, "miles")
  29730. },
  29731. ]
  29732. ))
  29733. characterMakers.push(() => makeCharacter(
  29734. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29735. {
  29736. front: {
  29737. height: math.unit(63.4, "meters"),
  29738. weight: math.unit(3.28349e+6, "kilograms"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/kirina-violet/front.svg",
  29742. extra: 2812 / 2725,
  29743. bottom: 0 / 2812
  29744. }
  29745. },
  29746. back: {
  29747. height: math.unit(63.4, "meters"),
  29748. weight: math.unit(3.28349e+6, "kilograms"),
  29749. name: "Back",
  29750. image: {
  29751. source: "./media/characters/kirina-violet/back.svg",
  29752. extra: 2812 / 2725,
  29753. bottom: 0 / 2812
  29754. }
  29755. },
  29756. mouth: {
  29757. height: math.unit(4.35, "meters"),
  29758. name: "Mouth",
  29759. image: {
  29760. source: "./media/characters/kirina-violet/mouth.svg"
  29761. }
  29762. },
  29763. paw: {
  29764. height: math.unit(5.6, "meters"),
  29765. name: "Paw",
  29766. image: {
  29767. source: "./media/characters/kirina-violet/paw.svg"
  29768. }
  29769. },
  29770. tail: {
  29771. height: math.unit(18, "meters"),
  29772. name: "Tail",
  29773. image: {
  29774. source: "./media/characters/kirina-violet/tail.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Macro",
  29781. height: math.unit(63.4, "meters"),
  29782. default: true
  29783. },
  29784. ]
  29785. ))
  29786. characterMakers.push(() => makeCharacter(
  29787. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29788. {
  29789. front: {
  29790. height: math.unit(75, "feet"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/cat-gigachu/front.svg",
  29794. extra: 1239/1027,
  29795. bottom: 32/1271
  29796. }
  29797. },
  29798. back: {
  29799. height: math.unit(75, "feet"),
  29800. name: "Back",
  29801. image: {
  29802. source: "./media/characters/cat-gigachu/back.svg",
  29803. extra: 1229/1030,
  29804. bottom: 9/1238
  29805. }
  29806. },
  29807. },
  29808. [
  29809. {
  29810. name: "Dynamax",
  29811. height: math.unit(75, "feet"),
  29812. default: true
  29813. },
  29814. ]
  29815. ))
  29816. characterMakers.push(() => makeCharacter(
  29817. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29818. {
  29819. front: {
  29820. height: math.unit(6, "feet"),
  29821. weight: math.unit(150, "lb"),
  29822. name: "Front",
  29823. image: {
  29824. source: "./media/characters/sfaiyan/front.svg",
  29825. extra: 999 / 978,
  29826. bottom: 5 / 1004
  29827. }
  29828. },
  29829. },
  29830. [
  29831. {
  29832. name: "Normal",
  29833. height: math.unit(1.82, "meters")
  29834. },
  29835. {
  29836. name: "Giant",
  29837. height: math.unit(2.27, "km"),
  29838. default: true
  29839. },
  29840. ]
  29841. ))
  29842. characterMakers.push(() => makeCharacter(
  29843. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29844. {
  29845. front: {
  29846. height: math.unit(179, "cm"),
  29847. weight: math.unit(100, "kg"),
  29848. name: "Front",
  29849. image: {
  29850. source: "./media/characters/raunehkeli/front.svg",
  29851. extra: 1934 / 1926,
  29852. bottom: 0 / 1934
  29853. }
  29854. },
  29855. },
  29856. [
  29857. {
  29858. name: "Normal",
  29859. height: math.unit(179, "cm")
  29860. },
  29861. {
  29862. name: "Maximum",
  29863. height: math.unit(575, "meters"),
  29864. default: true
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29870. {
  29871. front: {
  29872. height: math.unit(6, "feet"),
  29873. weight: math.unit(150, "lb"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29877. extra: 2625 / 2518,
  29878. bottom: 60 / 2685
  29879. }
  29880. },
  29881. },
  29882. [
  29883. {
  29884. name: "Normal",
  29885. height: math.unit(6 + 2 / 12, "feet")
  29886. },
  29887. {
  29888. name: "Macro",
  29889. height: math.unit(1180, "feet"),
  29890. default: true
  29891. },
  29892. ]
  29893. ))
  29894. characterMakers.push(() => makeCharacter(
  29895. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29896. {
  29897. front: {
  29898. height: math.unit(5 + 6 / 12, "feet"),
  29899. weight: math.unit(108, "lb"),
  29900. name: "Front",
  29901. image: {
  29902. source: "./media/characters/lilith-zott/front.svg",
  29903. extra: 2510 / 2238,
  29904. bottom: 100 / 2610
  29905. }
  29906. },
  29907. frontDressed: {
  29908. height: math.unit(5 + 6 / 12, "feet"),
  29909. weight: math.unit(108, "lb"),
  29910. name: "Front (Dressed)",
  29911. image: {
  29912. source: "./media/characters/lilith-zott/front-dressed.svg",
  29913. extra: 2510 / 2238,
  29914. bottom: 100 / 2610
  29915. }
  29916. },
  29917. },
  29918. [
  29919. {
  29920. name: "Normal",
  29921. height: math.unit(5 + 6 / 12, "feet")
  29922. },
  29923. {
  29924. name: "Macro",
  29925. height: math.unit(1030, "feet"),
  29926. default: true
  29927. },
  29928. ]
  29929. ))
  29930. characterMakers.push(() => makeCharacter(
  29931. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29932. {
  29933. front: {
  29934. height: math.unit(6, "feet"),
  29935. weight: math.unit(150, "lb"),
  29936. name: "Front",
  29937. image: {
  29938. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29939. extra: 2567 / 2435,
  29940. bottom: 39 / 2606
  29941. }
  29942. },
  29943. frontSuper: {
  29944. height: math.unit(6, "feet"),
  29945. name: "Front (Super)",
  29946. image: {
  29947. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29948. extra: 2567 / 2435,
  29949. bottom: 39 / 2606
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Normal",
  29956. height: math.unit(5 + 10 / 12, "feet")
  29957. },
  29958. {
  29959. name: "Macro",
  29960. height: math.unit(1100, "feet"),
  29961. default: true
  29962. },
  29963. ]
  29964. ))
  29965. characterMakers.push(() => makeCharacter(
  29966. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29967. {
  29968. front: {
  29969. height: math.unit(100, "miles"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/sona/front.svg",
  29973. extra: 2433 / 2201,
  29974. bottom: 53 / 2486
  29975. }
  29976. },
  29977. foot: {
  29978. height: math.unit(16.1, "miles"),
  29979. name: "Foot",
  29980. image: {
  29981. source: "./media/characters/sona/foot.svg"
  29982. }
  29983. },
  29984. },
  29985. [
  29986. {
  29987. name: "Macro",
  29988. height: math.unit(100, "miles"),
  29989. default: true
  29990. },
  29991. ]
  29992. ))
  29993. characterMakers.push(() => makeCharacter(
  29994. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29995. {
  29996. front: {
  29997. height: math.unit(6, "feet"),
  29998. weight: math.unit(150, "lb"),
  29999. name: "Front",
  30000. image: {
  30001. source: "./media/characters/bailey/front.svg",
  30002. extra: 1778 / 1724,
  30003. bottom: 30 / 1808
  30004. }
  30005. },
  30006. },
  30007. [
  30008. {
  30009. name: "Micro",
  30010. height: math.unit(4, "inches")
  30011. },
  30012. {
  30013. name: "Normal",
  30014. height: math.unit(5 + 5 / 12, "feet"),
  30015. default: true
  30016. },
  30017. {
  30018. name: "Macro",
  30019. height: math.unit(250, "feet")
  30020. },
  30021. {
  30022. name: "Megamacro",
  30023. height: math.unit(100, "miles")
  30024. },
  30025. ]
  30026. ))
  30027. characterMakers.push(() => makeCharacter(
  30028. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30029. {
  30030. front: {
  30031. height: math.unit(5 + 2 / 12, "feet"),
  30032. weight: math.unit(120, "lb"),
  30033. name: "Front",
  30034. image: {
  30035. source: "./media/characters/snaps/front.svg",
  30036. extra: 2370 / 2177,
  30037. bottom: 48 / 2418
  30038. }
  30039. },
  30040. back: {
  30041. height: math.unit(5 + 2 / 12, "feet"),
  30042. weight: math.unit(120, "lb"),
  30043. name: "Back",
  30044. image: {
  30045. source: "./media/characters/snaps/back.svg",
  30046. extra: 2408 / 2258,
  30047. bottom: 15 / 2423
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Micro",
  30054. height: math.unit(9, "inches")
  30055. },
  30056. {
  30057. name: "Normal",
  30058. height: math.unit(5 + 2 / 12, "feet"),
  30059. default: true
  30060. },
  30061. {
  30062. name: "Mini Macro",
  30063. height: math.unit(10, "feet")
  30064. },
  30065. ]
  30066. ))
  30067. characterMakers.push(() => makeCharacter(
  30068. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30069. {
  30070. front: {
  30071. height: math.unit(1.8, "meters"),
  30072. weight: math.unit(85, "kg"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/azteck/front.svg",
  30076. extra: 2815 / 2625,
  30077. bottom: 89 / 2904
  30078. }
  30079. },
  30080. back: {
  30081. height: math.unit(1.8, "meters"),
  30082. weight: math.unit(85, "kg"),
  30083. name: "Back",
  30084. image: {
  30085. source: "./media/characters/azteck/back.svg",
  30086. extra: 2856 / 2648,
  30087. bottom: 85 / 2941
  30088. }
  30089. },
  30090. frontDressed: {
  30091. height: math.unit(1.8, "meters"),
  30092. weight: math.unit(85, "kg"),
  30093. name: "Front (Dressed)",
  30094. image: {
  30095. source: "./media/characters/azteck/front-dressed.svg",
  30096. extra: 2147 / 2003,
  30097. bottom: 68 / 2215
  30098. }
  30099. },
  30100. head: {
  30101. height: math.unit(0.47, "meters"),
  30102. weight: math.unit(85, "kg"),
  30103. name: "Head",
  30104. image: {
  30105. source: "./media/characters/azteck/head.svg"
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Bite sized",
  30112. height: math.unit(16, "cm")
  30113. },
  30114. {
  30115. name: "Normal",
  30116. height: math.unit(1.8, "meters"),
  30117. default: true
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30123. {
  30124. front: {
  30125. height: math.unit(6, "feet"),
  30126. weight: math.unit(150, "lb"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/pidge/front.svg",
  30130. extra: 620 / 588,
  30131. bottom: 9 / 629
  30132. }
  30133. },
  30134. back: {
  30135. height: math.unit(6, "feet"),
  30136. weight: math.unit(150, "lb"),
  30137. name: "Back",
  30138. image: {
  30139. source: "./media/characters/pidge/back.svg",
  30140. extra: 620 / 588,
  30141. bottom: 9 / 629
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Macro",
  30148. height: math.unit(1, "mile"),
  30149. default: true
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30155. {
  30156. front: {
  30157. height: math.unit(6, "feet"),
  30158. weight: math.unit(150, "lb"),
  30159. name: "Front",
  30160. image: {
  30161. source: "./media/characters/en/front.svg",
  30162. extra: 1697 / 1563,
  30163. bottom: 103 / 1800
  30164. }
  30165. },
  30166. back: {
  30167. height: math.unit(6, "feet"),
  30168. weight: math.unit(150, "lb"),
  30169. name: "Back",
  30170. image: {
  30171. source: "./media/characters/en/back.svg",
  30172. extra: 1700 / 1570,
  30173. bottom: 51 / 1751
  30174. }
  30175. },
  30176. frontDressed: {
  30177. height: math.unit(6, "feet"),
  30178. weight: math.unit(150, "lb"),
  30179. name: "Front (Dressed)",
  30180. image: {
  30181. source: "./media/characters/en/front-dressed.svg",
  30182. extra: 1697 / 1563,
  30183. bottom: 103 / 1800
  30184. }
  30185. },
  30186. backDressed: {
  30187. height: math.unit(6, "feet"),
  30188. weight: math.unit(150, "lb"),
  30189. name: "Back (Dressed)",
  30190. image: {
  30191. source: "./media/characters/en/back-dressed.svg",
  30192. extra: 1700 / 1570,
  30193. bottom: 51 / 1751
  30194. }
  30195. },
  30196. },
  30197. [
  30198. {
  30199. name: "Macro",
  30200. height: math.unit(210, "feet"),
  30201. default: true
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(6, "feet"),
  30210. weight: math.unit(150, "lb"),
  30211. name: "Front",
  30212. image: {
  30213. source: "./media/characters/haze-orris/front.svg",
  30214. extra: 3975 / 3525,
  30215. bottom: 137 / 4112
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Micro",
  30222. height: math.unit(150, "mm"),
  30223. default: true
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30229. {
  30230. front: {
  30231. height: math.unit(6, "feet"),
  30232. weight: math.unit(150, "lb"),
  30233. name: "Front",
  30234. image: {
  30235. source: "./media/characters/casselene-yaro/front.svg",
  30236. extra: 4721 / 4541,
  30237. bottom: 82 / 4803
  30238. }
  30239. },
  30240. back: {
  30241. height: math.unit(6, "feet"),
  30242. weight: math.unit(150, "lb"),
  30243. name: "Back",
  30244. image: {
  30245. source: "./media/characters/casselene-yaro/back.svg",
  30246. extra: 4569 / 4377,
  30247. bottom: 69 / 4638
  30248. }
  30249. },
  30250. frontDressed: {
  30251. height: math.unit(6, "feet"),
  30252. weight: math.unit(150, "lb"),
  30253. name: "Front-dressed",
  30254. image: {
  30255. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30256. extra: 4721 / 4541,
  30257. bottom: 82 / 4803
  30258. }
  30259. },
  30260. },
  30261. [
  30262. {
  30263. name: "Macro",
  30264. height: math.unit(190, "feet"),
  30265. default: true
  30266. },
  30267. ]
  30268. ))
  30269. characterMakers.push(() => makeCharacter(
  30270. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30271. {
  30272. front: {
  30273. height: math.unit(6, "feet"),
  30274. weight: math.unit(150, "lb"),
  30275. name: "Front",
  30276. image: {
  30277. source: "./media/characters/myra-rue-delore/front.svg",
  30278. extra: 1340 / 1308,
  30279. bottom: 67 / 1407
  30280. }
  30281. },
  30282. back: {
  30283. height: math.unit(6, "feet"),
  30284. weight: math.unit(150, "lb"),
  30285. name: "Back",
  30286. image: {
  30287. source: "./media/characters/myra-rue-delore/back.svg",
  30288. extra: 1341 / 1310,
  30289. bottom: 40 / 1381
  30290. }
  30291. },
  30292. frontDressed: {
  30293. height: math.unit(6, "feet"),
  30294. weight: math.unit(150, "lb"),
  30295. name: "Front (Dressed)",
  30296. image: {
  30297. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30298. extra: 1340 / 1308,
  30299. bottom: 67 / 1407
  30300. }
  30301. },
  30302. },
  30303. [
  30304. {
  30305. name: "Macro",
  30306. height: math.unit(150, "feet"),
  30307. default: true
  30308. },
  30309. ]
  30310. ))
  30311. characterMakers.push(() => makeCharacter(
  30312. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30313. {
  30314. front: {
  30315. height: math.unit(10, "feet"),
  30316. weight: math.unit(15015, "lb"),
  30317. name: "Front",
  30318. image: {
  30319. source: "./media/characters/fem!plat/front.svg",
  30320. extra: 2799 / 2604,
  30321. bottom: 149 / 2948
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Normal",
  30328. height: math.unit(10, "feet"),
  30329. default: true
  30330. },
  30331. {
  30332. name: "Macro",
  30333. height: math.unit(100, "feet")
  30334. },
  30335. {
  30336. name: "Megamacro",
  30337. height: math.unit(1000, "feet")
  30338. },
  30339. ]
  30340. ))
  30341. characterMakers.push(() => makeCharacter(
  30342. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30343. {
  30344. front: {
  30345. height: math.unit(15 + 5 / 12, "feet"),
  30346. weight: math.unit(4600, "lb"),
  30347. name: "Front",
  30348. image: {
  30349. source: "./media/characters/neapolitan-ananassa/front.svg",
  30350. extra: 2903 / 2736,
  30351. bottom: 0 / 2903
  30352. }
  30353. },
  30354. side: {
  30355. height: math.unit(15 + 5 / 12, "feet"),
  30356. weight: math.unit(4600, "lb"),
  30357. name: "Side",
  30358. image: {
  30359. source: "./media/characters/neapolitan-ananassa/side.svg",
  30360. extra: 2925 / 2719,
  30361. bottom: 0 / 2925
  30362. }
  30363. },
  30364. back: {
  30365. height: math.unit(15 + 5 / 12, "feet"),
  30366. weight: math.unit(4600, "lb"),
  30367. name: "Back",
  30368. image: {
  30369. source: "./media/characters/neapolitan-ananassa/back.svg",
  30370. extra: 2903 / 2736,
  30371. bottom: 0 / 2903
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Normal",
  30378. height: math.unit(15 + 5 / 12, "feet"),
  30379. default: true
  30380. },
  30381. {
  30382. name: "Post-Millenium",
  30383. height: math.unit(35 + 5 / 12, "feet")
  30384. },
  30385. {
  30386. name: "Post-Era",
  30387. height: math.unit(450 + 5 / 12, "feet")
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30393. {
  30394. front: {
  30395. height: math.unit(300, "meters"),
  30396. weight: math.unit(125000, "tonnes"),
  30397. name: "Front",
  30398. image: {
  30399. source: "./media/characters/pazuzu/front.svg",
  30400. extra: 877 / 794,
  30401. bottom: 47 / 924
  30402. }
  30403. },
  30404. },
  30405. [
  30406. {
  30407. name: "Macro",
  30408. height: math.unit(300, "meters"),
  30409. default: true
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30415. {
  30416. side: {
  30417. height: math.unit(10 + 7 / 12, "feet"),
  30418. weight: math.unit(2.5, "tons"),
  30419. name: "Side",
  30420. image: {
  30421. source: "./media/characters/aasha/side.svg",
  30422. extra: 1345 / 1245,
  30423. bottom: 111 / 1456
  30424. }
  30425. },
  30426. back: {
  30427. height: math.unit(10 + 7 / 12, "feet"),
  30428. weight: math.unit(2.5, "tons"),
  30429. name: "Back",
  30430. image: {
  30431. source: "./media/characters/aasha/back.svg",
  30432. extra: 1133 / 1057,
  30433. bottom: 257 / 1390
  30434. }
  30435. },
  30436. },
  30437. [
  30438. {
  30439. name: "Normal",
  30440. height: math.unit(10 + 7 / 12, "feet"),
  30441. default: true
  30442. },
  30443. ]
  30444. ))
  30445. characterMakers.push(() => makeCharacter(
  30446. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30447. {
  30448. front: {
  30449. height: math.unit(6 + 3 / 12, "feet"),
  30450. name: "Front",
  30451. image: {
  30452. source: "./media/characters/nevan/front.svg",
  30453. extra: 704 / 704,
  30454. bottom: 28 / 732
  30455. }
  30456. },
  30457. back: {
  30458. height: math.unit(6 + 3 / 12, "feet"),
  30459. name: "Back",
  30460. image: {
  30461. source: "./media/characters/nevan/back.svg",
  30462. extra: 714 / 714,
  30463. bottom: 21 / 735
  30464. }
  30465. },
  30466. frontFlaccid: {
  30467. height: math.unit(6 + 3 / 12, "feet"),
  30468. name: "Front (Flaccid)",
  30469. image: {
  30470. source: "./media/characters/nevan/front-flaccid.svg",
  30471. extra: 704 / 704,
  30472. bottom: 28 / 732
  30473. }
  30474. },
  30475. frontErect: {
  30476. height: math.unit(6 + 3 / 12, "feet"),
  30477. name: "Front (Erect)",
  30478. image: {
  30479. source: "./media/characters/nevan/front-erect.svg",
  30480. extra: 704 / 704,
  30481. bottom: 28 / 732
  30482. }
  30483. },
  30484. backFlaccid: {
  30485. height: math.unit(6 + 3 / 12, "feet"),
  30486. name: "Back (Flaccid)",
  30487. image: {
  30488. source: "./media/characters/nevan/back-flaccid.svg",
  30489. extra: 714 / 714,
  30490. bottom: 21 / 735
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Normal",
  30497. height: math.unit(6 + 3 / 12, "feet"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30504. {
  30505. front: {
  30506. height: math.unit(4, "feet"),
  30507. name: "Front",
  30508. image: {
  30509. source: "./media/characters/arhan/front.svg",
  30510. extra: 3368 / 3133,
  30511. bottom: 0 / 3368
  30512. }
  30513. },
  30514. side: {
  30515. height: math.unit(4, "feet"),
  30516. name: "Side",
  30517. image: {
  30518. source: "./media/characters/arhan/side.svg",
  30519. extra: 3347 / 3105,
  30520. bottom: 0 / 3347
  30521. }
  30522. },
  30523. tongue: {
  30524. height: math.unit(1.42, "feet"),
  30525. name: "Tongue",
  30526. image: {
  30527. source: "./media/characters/arhan/tongue.svg"
  30528. }
  30529. },
  30530. head: {
  30531. height: math.unit(0.85, "feet"),
  30532. name: "Head",
  30533. image: {
  30534. source: "./media/characters/arhan/head.svg"
  30535. }
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Normal",
  30541. height: math.unit(4, "feet"),
  30542. default: true
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(5 + 7.5 / 12, "feet"),
  30551. weight: math.unit(120, "lb"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/digi-duncan/front.svg",
  30555. extra: 330 / 326,
  30556. bottom: 16 / 346
  30557. }
  30558. },
  30559. side: {
  30560. height: math.unit(5 + 7.5 / 12, "feet"),
  30561. weight: math.unit(120, "lb"),
  30562. name: "Side",
  30563. image: {
  30564. source: "./media/characters/digi-duncan/side.svg",
  30565. extra: 341 / 337,
  30566. bottom: 1 / 342
  30567. }
  30568. },
  30569. back: {
  30570. height: math.unit(5 + 7.5 / 12, "feet"),
  30571. weight: math.unit(120, "lb"),
  30572. name: "Back",
  30573. image: {
  30574. source: "./media/characters/digi-duncan/back.svg",
  30575. extra: 330 / 326,
  30576. bottom: 12 / 342
  30577. }
  30578. },
  30579. },
  30580. [
  30581. {
  30582. name: "Speck",
  30583. height: math.unit(0.25, "mm")
  30584. },
  30585. {
  30586. name: "Micro",
  30587. height: math.unit(5, "mm")
  30588. },
  30589. {
  30590. name: "Tiny",
  30591. height: math.unit(0.5, "inches"),
  30592. default: true
  30593. },
  30594. {
  30595. name: "Human",
  30596. height: math.unit(5 + 7.5 / 12, "feet")
  30597. },
  30598. {
  30599. name: "Minigiant",
  30600. height: math.unit(8 + 5.25, "feet")
  30601. },
  30602. {
  30603. name: "Giant",
  30604. height: math.unit(2000, "feet")
  30605. },
  30606. {
  30607. name: "Mega",
  30608. height: math.unit(371.1, "miles")
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30614. {
  30615. front: {
  30616. height: math.unit(2, "meters"),
  30617. weight: math.unit(350, "kg"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30621. extra: 898 / 838,
  30622. bottom: 9 / 907
  30623. }
  30624. },
  30625. },
  30626. [
  30627. {
  30628. name: "Micro",
  30629. height: math.unit(8, "meters")
  30630. },
  30631. {
  30632. name: "Normal",
  30633. height: math.unit(50, "meters"),
  30634. default: true
  30635. },
  30636. {
  30637. name: "Macro",
  30638. height: math.unit(500, "meters")
  30639. },
  30640. ]
  30641. ))
  30642. characterMakers.push(() => makeCharacter(
  30643. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30644. {
  30645. front: {
  30646. height: math.unit(6 + 6 / 12, "feet"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/khardesh/front.svg",
  30650. extra: 1788/1596,
  30651. bottom: 66/1854
  30652. }
  30653. },
  30654. back: {
  30655. height: math.unit(6 + 6 / 12, "feet"),
  30656. name: "Back",
  30657. image: {
  30658. source: "./media/characters/khardesh/back.svg",
  30659. extra: 1781/1584,
  30660. bottom: 68/1849
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Normal",
  30667. height: math.unit(6 + 6 / 12, "feet"),
  30668. default: true
  30669. },
  30670. {
  30671. name: "Normal+",
  30672. height: math.unit(4, "meters")
  30673. },
  30674. {
  30675. name: "Macro",
  30676. height: math.unit(50, "meters")
  30677. },
  30678. {
  30679. name: "Macro+",
  30680. height: math.unit(100, "meters")
  30681. },
  30682. {
  30683. name: "Megamacro",
  30684. height: math.unit(20, "km")
  30685. },
  30686. ]
  30687. ))
  30688. characterMakers.push(() => makeCharacter(
  30689. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30690. {
  30691. front: {
  30692. height: math.unit(6, "feet"),
  30693. weight: math.unit(150, "lb"),
  30694. name: "Front",
  30695. image: {
  30696. source: "./media/characters/kosho/front.svg",
  30697. extra: 1847 / 1847,
  30698. bottom: 86 / 1933
  30699. }
  30700. },
  30701. },
  30702. [
  30703. {
  30704. name: "Second-stage micro",
  30705. height: math.unit(0.5, "inches")
  30706. },
  30707. {
  30708. name: "First-stage micro",
  30709. height: math.unit(6, "inches")
  30710. },
  30711. {
  30712. name: "Normal",
  30713. height: math.unit(6, "feet"),
  30714. default: true
  30715. },
  30716. {
  30717. name: "First-stage macro",
  30718. height: math.unit(72, "feet")
  30719. },
  30720. {
  30721. name: "Second-stage macro",
  30722. height: math.unit(864, "feet")
  30723. },
  30724. ]
  30725. ))
  30726. characterMakers.push(() => makeCharacter(
  30727. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30728. {
  30729. normal: {
  30730. height: math.unit(4 + 6 / 12, "feet"),
  30731. name: "Normal",
  30732. image: {
  30733. source: "./media/characters/hydra/normal.svg",
  30734. extra: 2833 / 2634,
  30735. bottom: 68 / 2901
  30736. }
  30737. },
  30738. smol: {
  30739. height: math.unit(0.705, "inches"),
  30740. name: "Smol",
  30741. image: {
  30742. source: "./media/characters/hydra/smol.svg",
  30743. extra: 2715 / 2540,
  30744. bottom: 0 / 2715
  30745. }
  30746. },
  30747. },
  30748. [
  30749. {
  30750. name: "Normal",
  30751. height: math.unit(4 + 6 / 12, "feet"),
  30752. default: true
  30753. }
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30758. {
  30759. front: {
  30760. height: math.unit(0.6, "cm"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/daz/front.svg",
  30764. extra: 1682 / 1164,
  30765. bottom: 42 / 1724
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Normal",
  30772. height: math.unit(0.6, "cm"),
  30773. default: true
  30774. },
  30775. ]
  30776. ))
  30777. characterMakers.push(() => makeCharacter(
  30778. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30779. {
  30780. front: {
  30781. height: math.unit(6, "feet"),
  30782. weight: math.unit(235, "lb"),
  30783. name: "Front",
  30784. image: {
  30785. source: "./media/characters/theo-pangolin/front.svg",
  30786. extra: 1996 / 1969,
  30787. bottom: 115 / 2111
  30788. }
  30789. },
  30790. back: {
  30791. height: math.unit(6, "feet"),
  30792. weight: math.unit(235, "lb"),
  30793. name: "Back",
  30794. image: {
  30795. source: "./media/characters/theo-pangolin/back.svg",
  30796. extra: 1979 / 1979,
  30797. bottom: 40 / 2019
  30798. }
  30799. },
  30800. feral: {
  30801. height: math.unit(2, "feet"),
  30802. weight: math.unit(30, "lb"),
  30803. name: "Feral",
  30804. image: {
  30805. source: "./media/characters/theo-pangolin/feral.svg",
  30806. extra: 803 / 791,
  30807. bottom: 181 / 984
  30808. }
  30809. },
  30810. footFive: {
  30811. height: math.unit(1.43, "feet"),
  30812. name: "Foot (Five Toes)",
  30813. image: {
  30814. source: "./media/characters/theo-pangolin/foot-five.svg"
  30815. }
  30816. },
  30817. footFour: {
  30818. height: math.unit(1.43, "feet"),
  30819. name: "Foot (Four Toes)",
  30820. image: {
  30821. source: "./media/characters/theo-pangolin/foot-four.svg"
  30822. }
  30823. },
  30824. handFour: {
  30825. height: math.unit(0.81, "feet"),
  30826. name: "Hand (Four Fingers)",
  30827. image: {
  30828. source: "./media/characters/theo-pangolin/hand-four.svg"
  30829. }
  30830. },
  30831. handThree: {
  30832. height: math.unit(0.81, "feet"),
  30833. name: "Hand (Three Fingers)",
  30834. image: {
  30835. source: "./media/characters/theo-pangolin/hand-three.svg"
  30836. }
  30837. },
  30838. headFront: {
  30839. height: math.unit(1.37, "feet"),
  30840. name: "Head (Front)",
  30841. image: {
  30842. source: "./media/characters/theo-pangolin/head-front.svg"
  30843. }
  30844. },
  30845. headSide: {
  30846. height: math.unit(1.43, "feet"),
  30847. name: "Head (Side)",
  30848. image: {
  30849. source: "./media/characters/theo-pangolin/head-side.svg"
  30850. }
  30851. },
  30852. tongue: {
  30853. height: math.unit(2.29, "feet"),
  30854. name: "Tongue",
  30855. image: {
  30856. source: "./media/characters/theo-pangolin/tongue.svg"
  30857. }
  30858. },
  30859. },
  30860. [
  30861. {
  30862. name: "Normal",
  30863. height: math.unit(6, "feet")
  30864. },
  30865. {
  30866. name: "Macro",
  30867. height: math.unit(400, "feet"),
  30868. default: true
  30869. },
  30870. ]
  30871. ))
  30872. characterMakers.push(() => makeCharacter(
  30873. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30874. {
  30875. front: {
  30876. height: math.unit(6, "inches"),
  30877. weight: math.unit(0.036, "kg"),
  30878. name: "Front",
  30879. image: {
  30880. source: "./media/characters/renée/front.svg",
  30881. extra: 900 / 886,
  30882. bottom: 8 / 908
  30883. }
  30884. },
  30885. },
  30886. [
  30887. {
  30888. name: "Nano",
  30889. height: math.unit(1, "nm")
  30890. },
  30891. {
  30892. name: "Micro",
  30893. height: math.unit(1, "mm")
  30894. },
  30895. {
  30896. name: "Normal",
  30897. height: math.unit(6, "inches")
  30898. },
  30899. {
  30900. name: "Macro",
  30901. height: math.unit(2000, "feet"),
  30902. default: true
  30903. },
  30904. {
  30905. name: "Megamacro",
  30906. height: math.unit(2, "km")
  30907. },
  30908. {
  30909. name: "Gigamacro",
  30910. height: math.unit(2000, "km")
  30911. },
  30912. {
  30913. name: "Teramacro",
  30914. height: math.unit(250000, "km")
  30915. },
  30916. ]
  30917. ))
  30918. characterMakers.push(() => makeCharacter(
  30919. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30920. {
  30921. front: {
  30922. height: math.unit(4, "meters"),
  30923. weight: math.unit(150, "kg"),
  30924. name: "Front",
  30925. image: {
  30926. source: "./media/characters/caledvwlch/front.svg",
  30927. extra: 1760 / 1551,
  30928. bottom: 28 / 1788
  30929. }
  30930. },
  30931. side: {
  30932. height: math.unit(4, "meters"),
  30933. weight: math.unit(150, "kg"),
  30934. name: "Side",
  30935. image: {
  30936. source: "./media/characters/caledvwlch/side.svg",
  30937. extra: 1605 / 1536,
  30938. bottom: 31 / 1636
  30939. }
  30940. },
  30941. back: {
  30942. height: math.unit(4, "meters"),
  30943. weight: math.unit(150, "kg"),
  30944. name: "Back",
  30945. image: {
  30946. source: "./media/characters/caledvwlch/back.svg",
  30947. extra: 1635 / 1565,
  30948. bottom: 27 / 1662
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "\"Incognito\"",
  30955. height: math.unit(4, "meters")
  30956. },
  30957. {
  30958. name: "Small rampage",
  30959. height: math.unit(600, "meters")
  30960. },
  30961. {
  30962. name: "Mega",
  30963. height: math.unit(30, "km")
  30964. },
  30965. {
  30966. name: "Home-size",
  30967. height: math.unit(50, "km"),
  30968. default: true
  30969. },
  30970. {
  30971. name: "Giga",
  30972. height: math.unit(300, "km")
  30973. },
  30974. {
  30975. name: "Lounging",
  30976. height: math.unit(11000, "km")
  30977. },
  30978. {
  30979. name: "Planet snacking",
  30980. height: math.unit(2000000, "km")
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(6, "feet"),
  30989. weight: math.unit(215, "lb"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/sapphire-svell/front.svg",
  30993. extra: 495 / 455,
  30994. bottom: 20 / 515
  30995. }
  30996. },
  30997. back: {
  30998. height: math.unit(6, "feet"),
  30999. weight: math.unit(216, "lb"),
  31000. name: "Back",
  31001. image: {
  31002. source: "./media/characters/sapphire-svell/back.svg",
  31003. extra: 497 / 477,
  31004. bottom: 7 / 504
  31005. }
  31006. },
  31007. maw: {
  31008. height: math.unit(1.57, "feet"),
  31009. name: "Maw",
  31010. image: {
  31011. source: "./media/characters/sapphire-svell/maw.svg"
  31012. }
  31013. },
  31014. foot: {
  31015. height: math.unit(1.07, "feet"),
  31016. name: "Foot",
  31017. image: {
  31018. source: "./media/characters/sapphire-svell/foot.svg"
  31019. }
  31020. },
  31021. toering: {
  31022. height: math.unit(1.7, "inch"),
  31023. name: "Toering",
  31024. image: {
  31025. source: "./media/characters/sapphire-svell/toering.svg"
  31026. }
  31027. },
  31028. },
  31029. [
  31030. {
  31031. name: "Normal",
  31032. height: math.unit(300, "feet"),
  31033. default: true
  31034. },
  31035. {
  31036. name: "Augmented",
  31037. height: math.unit(1250, "feet")
  31038. },
  31039. {
  31040. name: "Unleashed",
  31041. height: math.unit(3000, "feet")
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31047. {
  31048. side: {
  31049. height: math.unit(2 + 3 / 12, "feet"),
  31050. weight: math.unit(110, "lb"),
  31051. name: "Side",
  31052. image: {
  31053. source: "./media/characters/glitch-flux/side.svg",
  31054. extra: 997 / 805,
  31055. bottom: 20 / 1017
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(2 + 3 / 12, "feet"),
  31063. default: true
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31069. {
  31070. front: {
  31071. height: math.unit(4, "meters"),
  31072. name: "Front",
  31073. image: {
  31074. source: "./media/characters/mid/front.svg",
  31075. extra: 507 / 476,
  31076. bottom: 17 / 524
  31077. }
  31078. },
  31079. back: {
  31080. height: math.unit(4, "meters"),
  31081. name: "Back",
  31082. image: {
  31083. source: "./media/characters/mid/back.svg",
  31084. extra: 519 / 487,
  31085. bottom: 7 / 526
  31086. }
  31087. },
  31088. stuck: {
  31089. height: math.unit(2.2, "meters"),
  31090. name: "Stuck",
  31091. image: {
  31092. source: "./media/characters/mid/stuck.svg",
  31093. extra: 1951 / 1869,
  31094. bottom: 88 / 2039
  31095. }
  31096. }
  31097. },
  31098. [
  31099. {
  31100. name: "Normal",
  31101. height: math.unit(4, "meters"),
  31102. default: true
  31103. },
  31104. {
  31105. name: "Big",
  31106. height: math.unit(10, "meters")
  31107. },
  31108. {
  31109. name: "Macro",
  31110. height: math.unit(800, "meters")
  31111. },
  31112. {
  31113. name: "Megamacro",
  31114. height: math.unit(100, "km")
  31115. },
  31116. {
  31117. name: "Overgrown",
  31118. height: math.unit(1, "parsec")
  31119. },
  31120. ]
  31121. ))
  31122. characterMakers.push(() => makeCharacter(
  31123. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31124. {
  31125. front: {
  31126. height: math.unit(2.5, "meters"),
  31127. weight: math.unit(225, "kg"),
  31128. name: "Front",
  31129. image: {
  31130. source: "./media/characters/iris/front.svg",
  31131. extra: 3348 / 3251,
  31132. bottom: 205 / 3553
  31133. }
  31134. },
  31135. maw: {
  31136. height: math.unit(0.56, "meter"),
  31137. name: "Maw",
  31138. image: {
  31139. source: "./media/characters/iris/maw.svg"
  31140. }
  31141. },
  31142. },
  31143. [
  31144. {
  31145. name: "Mewter cat",
  31146. height: math.unit(1.2, "meters")
  31147. },
  31148. {
  31149. name: "Minimacro",
  31150. height: math.unit(2.5, "meters"),
  31151. default: true
  31152. },
  31153. {
  31154. name: "Macro",
  31155. height: math.unit(180, "meters")
  31156. },
  31157. {
  31158. name: "Megamacro",
  31159. height: math.unit(2746, "meters")
  31160. },
  31161. ]
  31162. ))
  31163. characterMakers.push(() => makeCharacter(
  31164. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31165. {
  31166. front: {
  31167. height: math.unit(6, "feet"),
  31168. weight: math.unit(135, "lb"),
  31169. name: "Front",
  31170. image: {
  31171. source: "./media/characters/axel/front.svg",
  31172. extra: 908 / 908,
  31173. bottom: 58 / 966
  31174. }
  31175. },
  31176. side: {
  31177. height: math.unit(6, "feet"),
  31178. weight: math.unit(135, "lb"),
  31179. name: "Side",
  31180. image: {
  31181. source: "./media/characters/axel/side.svg",
  31182. extra: 958 / 958,
  31183. bottom: 11 / 969
  31184. }
  31185. },
  31186. back: {
  31187. height: math.unit(6, "feet"),
  31188. weight: math.unit(135, "lb"),
  31189. name: "Back",
  31190. image: {
  31191. source: "./media/characters/axel/back.svg",
  31192. extra: 887 / 887,
  31193. bottom: 34 / 921
  31194. }
  31195. },
  31196. head: {
  31197. height: math.unit(1.07, "feet"),
  31198. name: "Head",
  31199. image: {
  31200. source: "./media/characters/axel/head.svg"
  31201. }
  31202. },
  31203. beak: {
  31204. height: math.unit(1.4, "feet"),
  31205. name: "Beak",
  31206. image: {
  31207. source: "./media/characters/axel/beak.svg"
  31208. }
  31209. },
  31210. beakSide: {
  31211. height: math.unit(1.4, "feet"),
  31212. name: "Beak Side",
  31213. image: {
  31214. source: "./media/characters/axel/beak-side.svg"
  31215. }
  31216. },
  31217. sheath: {
  31218. height: math.unit(0.5, "feet"),
  31219. name: "Sheath",
  31220. image: {
  31221. source: "./media/characters/axel/sheath.svg"
  31222. }
  31223. },
  31224. dick: {
  31225. height: math.unit(0.98, "feet"),
  31226. name: "Dick",
  31227. image: {
  31228. source: "./media/characters/axel/dick.svg"
  31229. }
  31230. },
  31231. },
  31232. [
  31233. {
  31234. name: "Macro",
  31235. height: math.unit(68, "meters"),
  31236. default: true
  31237. },
  31238. ]
  31239. ))
  31240. characterMakers.push(() => makeCharacter(
  31241. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31242. {
  31243. front: {
  31244. height: math.unit(3.5, "meters"),
  31245. weight: math.unit(1200, "kg"),
  31246. name: "Front",
  31247. image: {
  31248. source: "./media/characters/joanna/front.svg",
  31249. extra: 1596 / 1488,
  31250. bottom: 29 / 1625
  31251. }
  31252. },
  31253. back: {
  31254. height: math.unit(3.5, "meters"),
  31255. weight: math.unit(1200, "kg"),
  31256. name: "Back",
  31257. image: {
  31258. source: "./media/characters/joanna/back.svg",
  31259. extra: 1594 / 1495,
  31260. bottom: 26 / 1620
  31261. }
  31262. },
  31263. frontShorts: {
  31264. height: math.unit(3.5, "meters"),
  31265. weight: math.unit(1200, "kg"),
  31266. name: "Front (Shorts)",
  31267. image: {
  31268. source: "./media/characters/joanna/front-shorts.svg",
  31269. extra: 1596 / 1488,
  31270. bottom: 29 / 1625
  31271. }
  31272. },
  31273. frontBiker: {
  31274. height: math.unit(3.5, "meters"),
  31275. weight: math.unit(1200, "kg"),
  31276. name: "Front (Biker)",
  31277. image: {
  31278. source: "./media/characters/joanna/front-biker.svg",
  31279. extra: 1596 / 1488,
  31280. bottom: 29 / 1625
  31281. }
  31282. },
  31283. backBiker: {
  31284. height: math.unit(3.5, "meters"),
  31285. weight: math.unit(1200, "kg"),
  31286. name: "Back (Biker)",
  31287. image: {
  31288. source: "./media/characters/joanna/back-biker.svg",
  31289. extra: 1594 / 1495,
  31290. bottom: 88 / 1682
  31291. }
  31292. },
  31293. bikeLeft: {
  31294. height: math.unit(2.4, "meters"),
  31295. weight: math.unit(1600, "kg"),
  31296. name: "Bike (Left)",
  31297. image: {
  31298. source: "./media/characters/joanna/bike-left.svg",
  31299. extra: 720 / 720,
  31300. bottom: 8 / 728
  31301. }
  31302. },
  31303. bikeRight: {
  31304. height: math.unit(2.4, "meters"),
  31305. weight: math.unit(1600, "kg"),
  31306. name: "Bike (Right)",
  31307. image: {
  31308. source: "./media/characters/joanna/bike-right.svg",
  31309. extra: 720 / 720,
  31310. bottom: 8 / 728
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Incognito",
  31317. height: math.unit(3.5, "meters")
  31318. },
  31319. {
  31320. name: "Casual Big",
  31321. height: math.unit(200, "meters")
  31322. },
  31323. {
  31324. name: "Macro",
  31325. height: math.unit(600, "meters")
  31326. },
  31327. {
  31328. name: "Original",
  31329. height: math.unit(20, "km"),
  31330. default: true
  31331. },
  31332. {
  31333. name: "Giga",
  31334. height: math.unit(400, "km")
  31335. },
  31336. {
  31337. name: "Lounging",
  31338. height: math.unit(1500, "km")
  31339. },
  31340. {
  31341. name: "Planetary",
  31342. height: math.unit(200000, "km")
  31343. },
  31344. ]
  31345. ))
  31346. characterMakers.push(() => makeCharacter(
  31347. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31348. {
  31349. front: {
  31350. height: math.unit(6, "feet"),
  31351. weight: math.unit(150, "lb"),
  31352. name: "Front",
  31353. image: {
  31354. source: "./media/characters/hugo-sigil/front.svg",
  31355. extra: 522 / 500,
  31356. bottom: 2 / 524
  31357. }
  31358. },
  31359. back: {
  31360. height: math.unit(6, "feet"),
  31361. weight: math.unit(150, "lb"),
  31362. name: "Back",
  31363. image: {
  31364. source: "./media/characters/hugo-sigil/back.svg",
  31365. extra: 519 / 495,
  31366. bottom: 5 / 524
  31367. }
  31368. },
  31369. maw: {
  31370. height: math.unit(1.4, "feet"),
  31371. weight: math.unit(150, "lb"),
  31372. name: "Maw",
  31373. image: {
  31374. source: "./media/characters/hugo-sigil/maw.svg"
  31375. }
  31376. },
  31377. feet: {
  31378. height: math.unit(1.56, "feet"),
  31379. weight: math.unit(150, "lb"),
  31380. name: "Feet",
  31381. image: {
  31382. source: "./media/characters/hugo-sigil/feet.svg",
  31383. extra: 177 / 177,
  31384. bottom: 12 / 189
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(6, "feet")
  31392. },
  31393. {
  31394. name: "Macro",
  31395. height: math.unit(200, "feet"),
  31396. default: true
  31397. },
  31398. ]
  31399. ))
  31400. characterMakers.push(() => makeCharacter(
  31401. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31402. {
  31403. front: {
  31404. height: math.unit(6, "feet"),
  31405. weight: math.unit(150, "lb"),
  31406. name: "Front",
  31407. image: {
  31408. source: "./media/characters/peri/front.svg",
  31409. extra: 2354 / 2233,
  31410. bottom: 49 / 2403
  31411. }
  31412. },
  31413. },
  31414. [
  31415. {
  31416. name: "Really Small",
  31417. height: math.unit(1, "nm")
  31418. },
  31419. {
  31420. name: "Micro",
  31421. height: math.unit(4, "inches")
  31422. },
  31423. {
  31424. name: "Normal",
  31425. height: math.unit(7, "inches"),
  31426. default: true
  31427. },
  31428. {
  31429. name: "Macro",
  31430. height: math.unit(400, "feet")
  31431. },
  31432. {
  31433. name: "Megamacro",
  31434. height: math.unit(100, "miles")
  31435. },
  31436. ]
  31437. ))
  31438. characterMakers.push(() => makeCharacter(
  31439. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31440. {
  31441. frontSlim: {
  31442. height: math.unit(7, "feet"),
  31443. name: "Front (Slim)",
  31444. image: {
  31445. source: "./media/characters/issilora/front-slim.svg",
  31446. extra: 529 / 449,
  31447. bottom: 53 / 582
  31448. }
  31449. },
  31450. sideSlim: {
  31451. height: math.unit(7, "feet"),
  31452. name: "Side (Slim)",
  31453. image: {
  31454. source: "./media/characters/issilora/side-slim.svg",
  31455. extra: 570 / 480,
  31456. bottom: 30 / 600
  31457. }
  31458. },
  31459. backSlim: {
  31460. height: math.unit(7, "feet"),
  31461. name: "Back (Slim)",
  31462. image: {
  31463. source: "./media/characters/issilora/back-slim.svg",
  31464. extra: 537 / 455,
  31465. bottom: 46 / 583
  31466. }
  31467. },
  31468. frontBuff: {
  31469. height: math.unit(7, "feet"),
  31470. name: "Front (Buff)",
  31471. image: {
  31472. source: "./media/characters/issilora/front-buff.svg",
  31473. extra: 2310 / 2035,
  31474. bottom: 335 / 2645
  31475. }
  31476. },
  31477. head: {
  31478. height: math.unit(1.94, "feet"),
  31479. name: "Head",
  31480. image: {
  31481. source: "./media/characters/issilora/head.svg"
  31482. }
  31483. },
  31484. },
  31485. [
  31486. {
  31487. name: "Minimum",
  31488. height: math.unit(7, "feet")
  31489. },
  31490. {
  31491. name: "Comfortable",
  31492. height: math.unit(17, "feet")
  31493. },
  31494. {
  31495. name: "Fun Size",
  31496. height: math.unit(47, "feet")
  31497. },
  31498. {
  31499. name: "Natural Macro",
  31500. height: math.unit(137, "feet"),
  31501. default: true
  31502. },
  31503. {
  31504. name: "Maximum Kaiju",
  31505. height: math.unit(397, "feet")
  31506. },
  31507. ]
  31508. ))
  31509. characterMakers.push(() => makeCharacter(
  31510. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31511. {
  31512. front: {
  31513. height: math.unit(50 + 9/12, "feet"),
  31514. weight: math.unit(32.8, "tons"),
  31515. name: "Front",
  31516. image: {
  31517. source: "./media/characters/irb'iiritaahn/front.svg",
  31518. extra: 1878/1826,
  31519. bottom: 326/2204
  31520. }
  31521. },
  31522. back: {
  31523. height: math.unit(50 + 9/12, "feet"),
  31524. weight: math.unit(32.8, "tons"),
  31525. name: "Back",
  31526. image: {
  31527. source: "./media/characters/irb'iiritaahn/back.svg",
  31528. extra: 2052/2018,
  31529. bottom: 152/2204
  31530. }
  31531. },
  31532. head: {
  31533. height: math.unit(12.86, "feet"),
  31534. name: "Head",
  31535. image: {
  31536. source: "./media/characters/irb'iiritaahn/head.svg"
  31537. }
  31538. },
  31539. maw: {
  31540. height: math.unit(9.66, "feet"),
  31541. name: "Maw",
  31542. image: {
  31543. source: "./media/characters/irb'iiritaahn/maw.svg"
  31544. }
  31545. },
  31546. frontDick: {
  31547. height: math.unit(8.78461, "feet"),
  31548. name: "Front Dick",
  31549. image: {
  31550. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31551. }
  31552. },
  31553. rearDick: {
  31554. height: math.unit(8.78461, "feet"),
  31555. name: "Rear Dick",
  31556. image: {
  31557. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31558. }
  31559. },
  31560. rearDickUnfolded: {
  31561. height: math.unit(8.78, "feet"),
  31562. name: "Rear Dick (Unfolded)",
  31563. image: {
  31564. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31565. }
  31566. },
  31567. wings: {
  31568. height: math.unit(43, "feet"),
  31569. name: "Wings",
  31570. image: {
  31571. source: "./media/characters/irb'iiritaahn/wings.svg"
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Macro",
  31578. height: math.unit(50 + 9/12, "feet"),
  31579. default: true
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31585. {
  31586. front: {
  31587. height: math.unit(205, "cm"),
  31588. weight: math.unit(102, "kg"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/irbisgreif/front.svg",
  31592. extra: 785/706,
  31593. bottom: 13/798
  31594. }
  31595. },
  31596. back: {
  31597. height: math.unit(205, "cm"),
  31598. weight: math.unit(102, "kg"),
  31599. name: "Back",
  31600. image: {
  31601. source: "./media/characters/irbisgreif/back.svg",
  31602. extra: 713/701,
  31603. bottom: 26/739
  31604. }
  31605. },
  31606. frontDressed: {
  31607. height: math.unit(216, "cm"),
  31608. weight: math.unit(102, "kg"),
  31609. name: "Front-dressed",
  31610. image: {
  31611. source: "./media/characters/irbisgreif/front-dressed.svg",
  31612. extra: 902/776,
  31613. bottom: 14/916
  31614. }
  31615. },
  31616. sideDressed: {
  31617. height: math.unit(195, "cm"),
  31618. weight: math.unit(102, "kg"),
  31619. name: "Side-dressed",
  31620. image: {
  31621. source: "./media/characters/irbisgreif/side-dressed.svg",
  31622. extra: 788/688,
  31623. bottom: 21/809
  31624. }
  31625. },
  31626. backDressed: {
  31627. height: math.unit(216, "cm"),
  31628. weight: math.unit(102, "kg"),
  31629. name: "Back-dressed",
  31630. image: {
  31631. source: "./media/characters/irbisgreif/back-dressed.svg",
  31632. extra: 901/783,
  31633. bottom: 10/911
  31634. }
  31635. },
  31636. dick: {
  31637. height: math.unit(0.49, "feet"),
  31638. name: "Dick",
  31639. image: {
  31640. source: "./media/characters/irbisgreif/dick.svg"
  31641. }
  31642. },
  31643. wingTop: {
  31644. height: math.unit(1.93 , "feet"),
  31645. name: "Wing-top",
  31646. image: {
  31647. source: "./media/characters/irbisgreif/wing-top.svg"
  31648. }
  31649. },
  31650. wingBottom: {
  31651. height: math.unit(1.93 , "feet"),
  31652. name: "Wing-bottom",
  31653. image: {
  31654. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Normal",
  31661. height: math.unit(216, "cm"),
  31662. default: true
  31663. },
  31664. ]
  31665. ))
  31666. characterMakers.push(() => makeCharacter(
  31667. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31668. {
  31669. front: {
  31670. height: math.unit(6, "feet"),
  31671. weight: math.unit(150, "lb"),
  31672. name: "Front",
  31673. image: {
  31674. source: "./media/characters/pride/front.svg",
  31675. extra: 1299/1230,
  31676. bottom: 18/1317
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Normal",
  31683. height: math.unit(7, "feet")
  31684. },
  31685. {
  31686. name: "Mini-macro",
  31687. height: math.unit(11, "feet")
  31688. },
  31689. {
  31690. name: "Macro",
  31691. height: math.unit(15, "meters"),
  31692. default: true
  31693. },
  31694. {
  31695. name: "Macro+",
  31696. height: math.unit(40, "meters")
  31697. },
  31698. ]
  31699. ))
  31700. characterMakers.push(() => makeCharacter(
  31701. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31702. {
  31703. front: {
  31704. height: math.unit(4 + 2 / 12, "feet"),
  31705. weight: math.unit(95, "lb"),
  31706. name: "Front",
  31707. image: {
  31708. source: "./media/characters/vaelophis-nyx/front.svg",
  31709. extra: 2532/2330,
  31710. bottom: 0/2532
  31711. }
  31712. },
  31713. back: {
  31714. height: math.unit(4 + 2 / 12, "feet"),
  31715. weight: math.unit(95, "lb"),
  31716. name: "Back",
  31717. image: {
  31718. source: "./media/characters/vaelophis-nyx/back.svg",
  31719. extra: 2484/2361,
  31720. bottom: 0/2484
  31721. }
  31722. },
  31723. feralSide: {
  31724. height: math.unit(2 + 1/12, "feet"),
  31725. weight: math.unit(20, "lb"),
  31726. name: "Feral (Side)",
  31727. image: {
  31728. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31729. extra: 1721/1581,
  31730. bottom: 70/1791
  31731. }
  31732. },
  31733. feralLazing: {
  31734. height: math.unit(1.08, "feet"),
  31735. weight: math.unit(20, "lb"),
  31736. name: "Feral (Lazing)",
  31737. image: {
  31738. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31739. extra: 822/822,
  31740. bottom: 248/1070
  31741. }
  31742. },
  31743. ear: {
  31744. height: math.unit(0.416, "feet"),
  31745. name: "Ear",
  31746. image: {
  31747. source: "./media/characters/vaelophis-nyx/ear.svg"
  31748. }
  31749. },
  31750. eye: {
  31751. height: math.unit(0.0748, "feet"),
  31752. name: "Eye",
  31753. image: {
  31754. source: "./media/characters/vaelophis-nyx/eye.svg"
  31755. }
  31756. },
  31757. mouth: {
  31758. height: math.unit(0.378, "feet"),
  31759. name: "Mouth",
  31760. image: {
  31761. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31762. }
  31763. },
  31764. spade: {
  31765. height: math.unit(0.55, "feet"),
  31766. name: "Spade",
  31767. image: {
  31768. source: "./media/characters/vaelophis-nyx/spade.svg"
  31769. }
  31770. },
  31771. },
  31772. [
  31773. {
  31774. name: "Normal",
  31775. height: math.unit(4 + 2/12, "feet"),
  31776. default: true
  31777. },
  31778. ]
  31779. ))
  31780. characterMakers.push(() => makeCharacter(
  31781. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31782. {
  31783. front: {
  31784. height: math.unit(7, "feet"),
  31785. weight: math.unit(231, "lb"),
  31786. name: "Front",
  31787. image: {
  31788. source: "./media/characters/flux/front.svg",
  31789. extra: 919/871,
  31790. bottom: 0/919
  31791. }
  31792. },
  31793. back: {
  31794. height: math.unit(7, "feet"),
  31795. weight: math.unit(231, "lb"),
  31796. name: "Back",
  31797. image: {
  31798. source: "./media/characters/flux/back.svg",
  31799. extra: 1040/992,
  31800. bottom: 0/1040
  31801. }
  31802. },
  31803. frontDressed: {
  31804. height: math.unit(7, "feet"),
  31805. weight: math.unit(231, "lb"),
  31806. name: "Front (Dressed)",
  31807. image: {
  31808. source: "./media/characters/flux/front-dressed.svg",
  31809. extra: 919/871,
  31810. bottom: 0/919
  31811. }
  31812. },
  31813. feralSide: {
  31814. height: math.unit(5, "feet"),
  31815. weight: math.unit(150, "lb"),
  31816. name: "Feral (Side)",
  31817. image: {
  31818. source: "./media/characters/flux/feral-side.svg",
  31819. extra: 598/528,
  31820. bottom: 28/626
  31821. }
  31822. },
  31823. head: {
  31824. height: math.unit(1.585, "feet"),
  31825. name: "Head",
  31826. image: {
  31827. source: "./media/characters/flux/head.svg"
  31828. }
  31829. },
  31830. headSide: {
  31831. height: math.unit(1.74, "feet"),
  31832. name: "Head (Side)",
  31833. image: {
  31834. source: "./media/characters/flux/head-side.svg"
  31835. }
  31836. },
  31837. headSideFire: {
  31838. height: math.unit(1.76, "feet"),
  31839. name: "Head (Side, Fire)",
  31840. image: {
  31841. source: "./media/characters/flux/head-side-fire.svg"
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(7, "feet"),
  31849. default: true
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31855. {
  31856. front: {
  31857. height: math.unit(9, "feet"),
  31858. weight: math.unit(1012, "lb"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/ulfra-lupae/front.svg",
  31862. extra: 1083/1011,
  31863. bottom: 67/1150
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Micro",
  31870. height: math.unit(6, "inches")
  31871. },
  31872. {
  31873. name: "Socializing",
  31874. height: math.unit(6 + 5/12, "feet")
  31875. },
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(9, "feet"),
  31879. default: true
  31880. },
  31881. {
  31882. name: "Macro",
  31883. height: math.unit(150, "feet")
  31884. },
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31889. {
  31890. front: {
  31891. height: math.unit(5 + 2/12, "feet"),
  31892. weight: math.unit(120, "lb"),
  31893. name: "Front",
  31894. image: {
  31895. source: "./media/characters/timber/front.svg",
  31896. extra: 2814/2705,
  31897. bottom: 181/2995
  31898. }
  31899. },
  31900. },
  31901. [
  31902. {
  31903. name: "Normal",
  31904. height: math.unit(5 + 2/12, "feet"),
  31905. default: true
  31906. },
  31907. ]
  31908. ))
  31909. characterMakers.push(() => makeCharacter(
  31910. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31911. {
  31912. front: {
  31913. height: math.unit(9, "feet"),
  31914. name: "Front",
  31915. image: {
  31916. source: "./media/characters/nicki/front.svg",
  31917. extra: 1240/990,
  31918. bottom: 45/1285
  31919. },
  31920. form: "anthro",
  31921. default: true
  31922. },
  31923. side: {
  31924. height: math.unit(9, "feet"),
  31925. name: "Side",
  31926. image: {
  31927. source: "./media/characters/nicki/side.svg",
  31928. extra: 1047/973,
  31929. bottom: 61/1108
  31930. },
  31931. form: "anthro"
  31932. },
  31933. back: {
  31934. height: math.unit(9, "feet"),
  31935. name: "Back",
  31936. image: {
  31937. source: "./media/characters/nicki/back.svg",
  31938. extra: 1006/965,
  31939. bottom: 39/1045
  31940. },
  31941. form: "anthro"
  31942. },
  31943. taur: {
  31944. height: math.unit(15, "feet"),
  31945. name: "Taur",
  31946. image: {
  31947. source: "./media/characters/nicki/taur.svg",
  31948. extra: 1592/1347,
  31949. bottom: 0/1592
  31950. },
  31951. form: "taur",
  31952. default: true
  31953. },
  31954. },
  31955. [
  31956. {
  31957. name: "Normal",
  31958. height: math.unit(9, "feet"),
  31959. form: "anthro",
  31960. default: true
  31961. },
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(15, "feet"),
  31965. form: "taur",
  31966. default: true
  31967. }
  31968. ],
  31969. {
  31970. "anthro": {
  31971. name: "Anthro",
  31972. default: true
  31973. },
  31974. "taur": {
  31975. name: "Taur"
  31976. }
  31977. }
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(7 + 10/12, "feet"),
  31984. weight: math.unit(3.5, "tons"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/lee/front.svg",
  31988. extra: 1773/1615,
  31989. bottom: 86/1859
  31990. }
  31991. },
  31992. hand: {
  31993. height: math.unit(1.78, "feet"),
  31994. name: "Hand",
  31995. image: {
  31996. source: "./media/characters/lee/hand.svg"
  31997. }
  31998. },
  31999. maw: {
  32000. height: math.unit(1.18, "feet"),
  32001. name: "Maw",
  32002. image: {
  32003. source: "./media/characters/lee/maw.svg"
  32004. }
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Normal",
  32010. height: math.unit(7 + 10/12, "feet"),
  32011. default: true
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32017. {
  32018. front: {
  32019. height: math.unit(9, "feet"),
  32020. name: "Front",
  32021. image: {
  32022. source: "./media/characters/guti/front.svg",
  32023. extra: 4551/4355,
  32024. bottom: 123/4674
  32025. }
  32026. },
  32027. tongue: {
  32028. height: math.unit(1, "feet"),
  32029. name: "Tongue",
  32030. image: {
  32031. source: "./media/characters/guti/tongue.svg"
  32032. }
  32033. },
  32034. paw: {
  32035. height: math.unit(1.18, "feet"),
  32036. name: "Paw",
  32037. image: {
  32038. source: "./media/characters/guti/paw.svg"
  32039. }
  32040. },
  32041. },
  32042. [
  32043. {
  32044. name: "Normal",
  32045. height: math.unit(9, "feet"),
  32046. default: true
  32047. },
  32048. ]
  32049. ))
  32050. characterMakers.push(() => makeCharacter(
  32051. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32052. {
  32053. side: {
  32054. height: math.unit(5, "meters"),
  32055. name: "Side",
  32056. image: {
  32057. source: "./media/characters/vesper/side.svg",
  32058. extra: 1605/1518,
  32059. bottom: 0/1605
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Small",
  32066. height: math.unit(5, "meters")
  32067. },
  32068. {
  32069. name: "Sage",
  32070. height: math.unit(100, "meters"),
  32071. default: true
  32072. },
  32073. {
  32074. name: "Fun Size",
  32075. height: math.unit(600, "meters")
  32076. },
  32077. {
  32078. name: "Goddess",
  32079. height: math.unit(20000, "km")
  32080. },
  32081. {
  32082. name: "Maximum",
  32083. height: math.unit(5, "galaxies")
  32084. },
  32085. ]
  32086. ))
  32087. characterMakers.push(() => makeCharacter(
  32088. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32089. {
  32090. front: {
  32091. height: math.unit(6 + 3/12, "feet"),
  32092. weight: math.unit(190, "lb"),
  32093. name: "Front",
  32094. image: {
  32095. source: "./media/characters/gawain/front.svg",
  32096. extra: 2222/2139,
  32097. bottom: 90/2312
  32098. }
  32099. },
  32100. back: {
  32101. height: math.unit(6 + 3/12, "feet"),
  32102. weight: math.unit(190, "lb"),
  32103. name: "Back",
  32104. image: {
  32105. source: "./media/characters/gawain/back.svg",
  32106. extra: 2199/2111,
  32107. bottom: 73/2272
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Normal",
  32114. height: math.unit(6 + 3/12, "feet"),
  32115. default: true
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32121. {
  32122. side: {
  32123. height: math.unit(3.5, "meters"),
  32124. weight: math.unit(16000, "lb"),
  32125. name: "Side",
  32126. image: {
  32127. source: "./media/characters/dascalti/side.svg",
  32128. extra: 392/273,
  32129. bottom: 47/439
  32130. }
  32131. },
  32132. breath: {
  32133. height: math.unit(7.4, "feet"),
  32134. name: "Breath",
  32135. image: {
  32136. source: "./media/characters/dascalti/breath.svg"
  32137. }
  32138. },
  32139. fed: {
  32140. height: math.unit(3.6, "meters"),
  32141. weight: math.unit(16000, "lb"),
  32142. name: "Fed",
  32143. image: {
  32144. source: "./media/characters/dascalti/fed.svg",
  32145. extra: 1419/820,
  32146. bottom: 95/1514
  32147. }
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(3.5, "meters"),
  32154. default: true
  32155. },
  32156. ]
  32157. ))
  32158. characterMakers.push(() => makeCharacter(
  32159. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32160. {
  32161. front: {
  32162. height: math.unit(3 + 5/12, "feet"),
  32163. name: "Front",
  32164. image: {
  32165. source: "./media/characters/mauve/front.svg",
  32166. extra: 1126/1033,
  32167. bottom: 65/1191
  32168. }
  32169. },
  32170. side: {
  32171. height: math.unit(3 + 5/12, "feet"),
  32172. name: "Side",
  32173. image: {
  32174. source: "./media/characters/mauve/side.svg",
  32175. extra: 1089/1001,
  32176. bottom: 29/1118
  32177. }
  32178. },
  32179. back: {
  32180. height: math.unit(3 + 5/12, "feet"),
  32181. name: "Back",
  32182. image: {
  32183. source: "./media/characters/mauve/back.svg",
  32184. extra: 1173/1053,
  32185. bottom: 109/1282
  32186. }
  32187. },
  32188. },
  32189. [
  32190. {
  32191. name: "Normal",
  32192. height: math.unit(3 + 5/12, "feet"),
  32193. default: true
  32194. },
  32195. ]
  32196. ))
  32197. characterMakers.push(() => makeCharacter(
  32198. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32199. {
  32200. front: {
  32201. height: math.unit(6 + 3/12, "feet"),
  32202. weight: math.unit(430, "lb"),
  32203. name: "Front",
  32204. image: {
  32205. source: "./media/characters/carlos/front.svg",
  32206. extra: 1964/1913,
  32207. bottom: 70/2034
  32208. }
  32209. },
  32210. },
  32211. [
  32212. {
  32213. name: "Normal",
  32214. height: math.unit(6 + 3/12, "feet"),
  32215. default: true
  32216. },
  32217. ]
  32218. ))
  32219. characterMakers.push(() => makeCharacter(
  32220. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32221. {
  32222. back: {
  32223. height: math.unit(5 + 10/12, "feet"),
  32224. weight: math.unit(200, "lb"),
  32225. name: "Back",
  32226. image: {
  32227. source: "./media/characters/jax/back.svg",
  32228. extra: 764/739,
  32229. bottom: 25/789
  32230. }
  32231. },
  32232. },
  32233. [
  32234. {
  32235. name: "Normal",
  32236. height: math.unit(5 + 10/12, "feet"),
  32237. default: true
  32238. },
  32239. ]
  32240. ))
  32241. characterMakers.push(() => makeCharacter(
  32242. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32243. {
  32244. front: {
  32245. height: math.unit(8, "feet"),
  32246. weight: math.unit(250, "lb"),
  32247. name: "Front",
  32248. image: {
  32249. source: "./media/characters/eikthynir/front.svg",
  32250. extra: 1332/1166,
  32251. bottom: 82/1414
  32252. }
  32253. },
  32254. back: {
  32255. height: math.unit(8, "feet"),
  32256. weight: math.unit(250, "lb"),
  32257. name: "Back",
  32258. image: {
  32259. source: "./media/characters/eikthynir/back.svg",
  32260. extra: 1342/1190,
  32261. bottom: 19/1361
  32262. }
  32263. },
  32264. dick: {
  32265. height: math.unit(2.35, "feet"),
  32266. name: "Dick",
  32267. image: {
  32268. source: "./media/characters/eikthynir/dick.svg"
  32269. }
  32270. },
  32271. },
  32272. [
  32273. {
  32274. name: "Normal",
  32275. height: math.unit(8, "feet"),
  32276. default: true
  32277. },
  32278. ]
  32279. ))
  32280. characterMakers.push(() => makeCharacter(
  32281. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32282. {
  32283. front: {
  32284. height: math.unit(99, "meters"),
  32285. weight: math.unit(13000, "tons"),
  32286. name: "Front",
  32287. image: {
  32288. source: "./media/characters/zlmos/front.svg",
  32289. extra: 2202/1992,
  32290. bottom: 315/2517
  32291. }
  32292. },
  32293. },
  32294. [
  32295. {
  32296. name: "Macro",
  32297. height: math.unit(99, "meters"),
  32298. default: true
  32299. },
  32300. ]
  32301. ))
  32302. characterMakers.push(() => makeCharacter(
  32303. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32304. {
  32305. front: {
  32306. height: math.unit(6 + 5/12, "feet"),
  32307. name: "Front",
  32308. image: {
  32309. source: "./media/characters/purri/front.svg",
  32310. extra: 1698/1610,
  32311. bottom: 32/1730
  32312. }
  32313. },
  32314. frontAlt: {
  32315. height: math.unit(6 + 5/12, "feet"),
  32316. name: "Front (Alt)",
  32317. image: {
  32318. source: "./media/characters/purri/front-alt.svg",
  32319. extra: 450/420,
  32320. bottom: 26/476
  32321. }
  32322. },
  32323. boots: {
  32324. height: math.unit(5.5, "feet"),
  32325. name: "Boots",
  32326. image: {
  32327. source: "./media/characters/purri/boots.svg",
  32328. extra: 905/853,
  32329. bottom: 18/923
  32330. }
  32331. },
  32332. lying: {
  32333. height: math.unit(2, "feet"),
  32334. name: "Lying",
  32335. image: {
  32336. source: "./media/characters/purri/lying.svg",
  32337. extra: 940/843,
  32338. bottom: 146/1086
  32339. }
  32340. },
  32341. devious: {
  32342. height: math.unit(1.77, "feet"),
  32343. name: "Devious",
  32344. image: {
  32345. source: "./media/characters/purri/devious.svg",
  32346. extra: 1440/1155,
  32347. bottom: 147/1587
  32348. }
  32349. },
  32350. bean: {
  32351. height: math.unit(1.94, "feet"),
  32352. name: "Bean",
  32353. image: {
  32354. source: "./media/characters/purri/bean.svg"
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Micro",
  32361. height: math.unit(1, "mm")
  32362. },
  32363. {
  32364. name: "Normal",
  32365. height: math.unit(6 + 5/12, "feet"),
  32366. default: true
  32367. },
  32368. {
  32369. name: "Macro :3c",
  32370. height: math.unit(2, "miles")
  32371. },
  32372. ]
  32373. ))
  32374. characterMakers.push(() => makeCharacter(
  32375. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32376. {
  32377. front: {
  32378. height: math.unit(6 + 2/12, "feet"),
  32379. weight: math.unit(250, "lb"),
  32380. name: "Front",
  32381. image: {
  32382. source: "./media/characters/moonlight/front.svg",
  32383. extra: 1044/908,
  32384. bottom: 56/1100
  32385. }
  32386. },
  32387. feral: {
  32388. height: math.unit(3 + 1/12, "feet"),
  32389. weight: math.unit(50, "kg"),
  32390. name: "Feral",
  32391. image: {
  32392. source: "./media/characters/moonlight/feral.svg",
  32393. extra: 3705/2791,
  32394. bottom: 145/3850
  32395. }
  32396. },
  32397. paw: {
  32398. height: math.unit(1, "feet"),
  32399. name: "Paw",
  32400. image: {
  32401. source: "./media/characters/moonlight/paw.svg"
  32402. }
  32403. },
  32404. paws: {
  32405. height: math.unit(0.98, "feet"),
  32406. name: "Paws",
  32407. image: {
  32408. source: "./media/characters/moonlight/paws.svg",
  32409. extra: 939/939,
  32410. bottom: 50/989
  32411. }
  32412. },
  32413. mouth: {
  32414. height: math.unit(0.48, "feet"),
  32415. name: "Mouth",
  32416. image: {
  32417. source: "./media/characters/moonlight/mouth.svg"
  32418. }
  32419. },
  32420. dick: {
  32421. height: math.unit(1.46, "feet"),
  32422. name: "Dick",
  32423. image: {
  32424. source: "./media/characters/moonlight/dick.svg"
  32425. }
  32426. },
  32427. },
  32428. [
  32429. {
  32430. name: "Normal",
  32431. height: math.unit(6 + 2/12, "feet"),
  32432. default: true
  32433. },
  32434. {
  32435. name: "Macro",
  32436. height: math.unit(300, "feet")
  32437. },
  32438. {
  32439. name: "Macro+",
  32440. height: math.unit(1, "mile")
  32441. },
  32442. {
  32443. name: "Mt. Moon",
  32444. height: math.unit(5, "miles")
  32445. },
  32446. {
  32447. name: "Megamacro",
  32448. height: math.unit(15, "miles")
  32449. },
  32450. ]
  32451. ))
  32452. characterMakers.push(() => makeCharacter(
  32453. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32454. {
  32455. back: {
  32456. height: math.unit(6, "feet"),
  32457. weight: math.unit(150, "lb"),
  32458. name: "Back",
  32459. image: {
  32460. source: "./media/characters/sylen/back.svg",
  32461. extra: 1335/1273,
  32462. bottom: 107/1442
  32463. }
  32464. },
  32465. },
  32466. [
  32467. {
  32468. name: "Normal",
  32469. height: math.unit(5 + 5/12, "feet")
  32470. },
  32471. {
  32472. name: "Megamacro",
  32473. height: math.unit(3, "miles"),
  32474. default: true
  32475. },
  32476. ]
  32477. ))
  32478. characterMakers.push(() => makeCharacter(
  32479. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32480. {
  32481. front: {
  32482. height: math.unit(6, "feet"),
  32483. weight: math.unit(190, "lb"),
  32484. name: "Front",
  32485. image: {
  32486. source: "./media/characters/huttser/front.svg",
  32487. extra: 1152/1058,
  32488. bottom: 23/1175
  32489. }
  32490. },
  32491. side: {
  32492. height: math.unit(6, "feet"),
  32493. weight: math.unit(190, "lb"),
  32494. name: "Side",
  32495. image: {
  32496. source: "./media/characters/huttser/side.svg",
  32497. extra: 1174/1065,
  32498. bottom: 18/1192
  32499. }
  32500. },
  32501. back: {
  32502. height: math.unit(6, "feet"),
  32503. weight: math.unit(190, "lb"),
  32504. name: "Back",
  32505. image: {
  32506. source: "./media/characters/huttser/back.svg",
  32507. extra: 1158/1056,
  32508. bottom: 12/1170
  32509. }
  32510. },
  32511. },
  32512. [
  32513. ]
  32514. ))
  32515. characterMakers.push(() => makeCharacter(
  32516. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32517. {
  32518. side: {
  32519. height: math.unit(12 + 9/12, "feet"),
  32520. weight: math.unit(15000, "lb"),
  32521. name: "Side",
  32522. image: {
  32523. source: "./media/characters/faan/side.svg",
  32524. extra: 2747/2697,
  32525. bottom: 0/2747
  32526. }
  32527. },
  32528. front: {
  32529. height: math.unit(12 + 9/12, "feet"),
  32530. weight: math.unit(15000, "lb"),
  32531. name: "Front",
  32532. image: {
  32533. source: "./media/characters/faan/front.svg",
  32534. extra: 607/571,
  32535. bottom: 24/631
  32536. }
  32537. },
  32538. head: {
  32539. height: math.unit(2.85, "feet"),
  32540. name: "Head",
  32541. image: {
  32542. source: "./media/characters/faan/head.svg"
  32543. }
  32544. },
  32545. headAlt: {
  32546. height: math.unit(3.13, "feet"),
  32547. name: "Head-alt",
  32548. image: {
  32549. source: "./media/characters/faan/head-alt.svg"
  32550. }
  32551. },
  32552. },
  32553. [
  32554. {
  32555. name: "Normal",
  32556. height: math.unit(12 + 9/12, "feet"),
  32557. default: true
  32558. },
  32559. ]
  32560. ))
  32561. characterMakers.push(() => makeCharacter(
  32562. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32563. {
  32564. front: {
  32565. height: math.unit(6, "feet"),
  32566. weight: math.unit(300, "lb"),
  32567. name: "Front",
  32568. image: {
  32569. source: "./media/characters/tanio/front.svg",
  32570. extra: 711/673,
  32571. bottom: 25/736
  32572. }
  32573. },
  32574. },
  32575. [
  32576. {
  32577. name: "Normal",
  32578. height: math.unit(6, "feet"),
  32579. default: true
  32580. },
  32581. ]
  32582. ))
  32583. characterMakers.push(() => makeCharacter(
  32584. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32585. {
  32586. front: {
  32587. height: math.unit(3, "inches"),
  32588. name: "Front",
  32589. image: {
  32590. source: "./media/characters/noboru/front.svg",
  32591. extra: 1039/932,
  32592. bottom: 18/1057
  32593. }
  32594. },
  32595. },
  32596. [
  32597. {
  32598. name: "Micro",
  32599. height: math.unit(3, "inches"),
  32600. default: true
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32606. {
  32607. front: {
  32608. height: math.unit(1.85, "meters"),
  32609. weight: math.unit(80, "kg"),
  32610. name: "Front",
  32611. image: {
  32612. source: "./media/characters/daniel-barrett/front.svg",
  32613. extra: 355/337,
  32614. bottom: 9/364
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Pico",
  32621. height: math.unit(0.0433, "mm")
  32622. },
  32623. {
  32624. name: "Nano",
  32625. height: math.unit(1.5, "mm")
  32626. },
  32627. {
  32628. name: "Micro",
  32629. height: math.unit(5.3, "cm"),
  32630. default: true
  32631. },
  32632. {
  32633. name: "Normal",
  32634. height: math.unit(1.85, "meters")
  32635. },
  32636. {
  32637. name: "Macro",
  32638. height: math.unit(64.7, "meters")
  32639. },
  32640. {
  32641. name: "Megamacro",
  32642. height: math.unit(2.26, "km")
  32643. },
  32644. {
  32645. name: "Gigamacro",
  32646. height: math.unit(79, "km")
  32647. },
  32648. {
  32649. name: "Teramacro",
  32650. height: math.unit(2765, "km")
  32651. },
  32652. {
  32653. name: "Petamacro",
  32654. height: math.unit(96678, "km")
  32655. },
  32656. ]
  32657. ))
  32658. characterMakers.push(() => makeCharacter(
  32659. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32660. {
  32661. front: {
  32662. height: math.unit(30, "meters"),
  32663. weight: math.unit(400, "tons"),
  32664. name: "Front",
  32665. image: {
  32666. source: "./media/characters/zeel/front.svg",
  32667. extra: 2599/2599,
  32668. bottom: 226/2825
  32669. }
  32670. },
  32671. },
  32672. [
  32673. {
  32674. name: "Macro",
  32675. height: math.unit(30, "meters"),
  32676. default: true
  32677. },
  32678. ]
  32679. ))
  32680. characterMakers.push(() => makeCharacter(
  32681. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32682. {
  32683. front: {
  32684. height: math.unit(6 + 7/12, "feet"),
  32685. weight: math.unit(210, "lb"),
  32686. name: "Front",
  32687. image: {
  32688. source: "./media/characters/tarn/front.svg",
  32689. extra: 3517/3220,
  32690. bottom: 91/3608
  32691. }
  32692. },
  32693. back: {
  32694. height: math.unit(6 + 7/12, "feet"),
  32695. weight: math.unit(210, "lb"),
  32696. name: "Back",
  32697. image: {
  32698. source: "./media/characters/tarn/back.svg",
  32699. extra: 3566/3241,
  32700. bottom: 34/3600
  32701. }
  32702. },
  32703. dick: {
  32704. height: math.unit(1.65, "feet"),
  32705. name: "Dick",
  32706. image: {
  32707. source: "./media/characters/tarn/dick.svg"
  32708. }
  32709. },
  32710. paw: {
  32711. height: math.unit(1.80, "feet"),
  32712. name: "Paw",
  32713. image: {
  32714. source: "./media/characters/tarn/paw.svg"
  32715. }
  32716. },
  32717. tongue: {
  32718. height: math.unit(0.97, "feet"),
  32719. name: "Tongue",
  32720. image: {
  32721. source: "./media/characters/tarn/tongue.svg"
  32722. }
  32723. },
  32724. },
  32725. [
  32726. {
  32727. name: "Micro",
  32728. height: math.unit(4, "inches")
  32729. },
  32730. {
  32731. name: "Normal",
  32732. height: math.unit(6 + 7/12, "feet"),
  32733. default: true
  32734. },
  32735. {
  32736. name: "Macro",
  32737. height: math.unit(300, "feet")
  32738. },
  32739. ]
  32740. ))
  32741. characterMakers.push(() => makeCharacter(
  32742. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32743. {
  32744. front: {
  32745. height: math.unit(5 + 7/12, "feet"),
  32746. weight: math.unit(80, "kg"),
  32747. name: "Front",
  32748. image: {
  32749. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32750. extra: 3023/2865,
  32751. bottom: 33/3056
  32752. }
  32753. },
  32754. back: {
  32755. height: math.unit(5 + 7/12, "feet"),
  32756. weight: math.unit(80, "kg"),
  32757. name: "Back",
  32758. image: {
  32759. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32760. extra: 3020/2886,
  32761. bottom: 30/3050
  32762. }
  32763. },
  32764. dick: {
  32765. height: math.unit(0.98, "feet"),
  32766. name: "Dick",
  32767. image: {
  32768. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32769. }
  32770. },
  32771. anatomy: {
  32772. height: math.unit(2.86, "feet"),
  32773. name: "Anatomy",
  32774. image: {
  32775. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32776. }
  32777. },
  32778. },
  32779. [
  32780. {
  32781. name: "Really Small",
  32782. height: math.unit(2, "inches")
  32783. },
  32784. {
  32785. name: "Micro",
  32786. height: math.unit(5.583, "inches")
  32787. },
  32788. {
  32789. name: "Normal",
  32790. height: math.unit(5 + 7/12, "feet"),
  32791. default: true
  32792. },
  32793. {
  32794. name: "Macro",
  32795. height: math.unit(67, "feet")
  32796. },
  32797. {
  32798. name: "Megamacro",
  32799. height: math.unit(134, "feet")
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32805. {
  32806. front: {
  32807. height: math.unit(9, "feet"),
  32808. weight: math.unit(120, "lb"),
  32809. name: "Front",
  32810. image: {
  32811. source: "./media/characters/sally/front.svg",
  32812. extra: 1506/1349,
  32813. bottom: 66/1572
  32814. }
  32815. },
  32816. },
  32817. [
  32818. {
  32819. name: "Normal",
  32820. height: math.unit(9, "feet"),
  32821. default: true
  32822. },
  32823. ]
  32824. ))
  32825. characterMakers.push(() => makeCharacter(
  32826. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32827. {
  32828. front: {
  32829. height: math.unit(8, "feet"),
  32830. weight: math.unit(900, "lb"),
  32831. name: "Front",
  32832. image: {
  32833. source: "./media/characters/owen/front.svg",
  32834. extra: 1761/1657,
  32835. bottom: 74/1835
  32836. }
  32837. },
  32838. side: {
  32839. height: math.unit(8, "feet"),
  32840. weight: math.unit(900, "lb"),
  32841. name: "Side",
  32842. image: {
  32843. source: "./media/characters/owen/side.svg",
  32844. extra: 1797/1734,
  32845. bottom: 30/1827
  32846. }
  32847. },
  32848. back: {
  32849. height: math.unit(8, "feet"),
  32850. weight: math.unit(900, "lb"),
  32851. name: "Back",
  32852. image: {
  32853. source: "./media/characters/owen/back.svg",
  32854. extra: 1796/1706,
  32855. bottom: 59/1855
  32856. }
  32857. },
  32858. maw: {
  32859. height: math.unit(1.76, "feet"),
  32860. name: "Maw",
  32861. image: {
  32862. source: "./media/characters/owen/maw.svg"
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Normal",
  32869. height: math.unit(8, "feet"),
  32870. default: true
  32871. },
  32872. ]
  32873. ))
  32874. characterMakers.push(() => makeCharacter(
  32875. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32876. {
  32877. front: {
  32878. height: math.unit(4, "feet"),
  32879. weight: math.unit(400, "lb"),
  32880. name: "Front",
  32881. image: {
  32882. source: "./media/characters/ryth/front.svg",
  32883. extra: 1920/1748,
  32884. bottom: 42/1962
  32885. }
  32886. },
  32887. back: {
  32888. height: math.unit(4, "feet"),
  32889. weight: math.unit(400, "lb"),
  32890. name: "Back",
  32891. image: {
  32892. source: "./media/characters/ryth/back.svg",
  32893. extra: 1897/1690,
  32894. bottom: 89/1986
  32895. }
  32896. },
  32897. mouth: {
  32898. height: math.unit(1.39, "feet"),
  32899. name: "Mouth",
  32900. image: {
  32901. source: "./media/characters/ryth/mouth.svg"
  32902. }
  32903. },
  32904. tailmaw: {
  32905. height: math.unit(1.23, "feet"),
  32906. name: "Tailmaw",
  32907. image: {
  32908. source: "./media/characters/ryth/tailmaw.svg"
  32909. }
  32910. },
  32911. goia: {
  32912. height: math.unit(4, "meters"),
  32913. weight: math.unit(10800, "lb"),
  32914. name: "Goia",
  32915. image: {
  32916. source: "./media/characters/ryth/goia.svg",
  32917. extra: 745/640,
  32918. bottom: 107/852
  32919. }
  32920. },
  32921. goiaFront: {
  32922. height: math.unit(4, "meters"),
  32923. weight: math.unit(10800, "lb"),
  32924. name: "Goia (Front)",
  32925. image: {
  32926. source: "./media/characters/ryth/goia-front.svg",
  32927. extra: 750/586,
  32928. bottom: 114/864
  32929. }
  32930. },
  32931. goiaMaw: {
  32932. height: math.unit(5.55, "feet"),
  32933. name: "Goia Maw",
  32934. image: {
  32935. source: "./media/characters/ryth/goia-maw.svg"
  32936. }
  32937. },
  32938. goiaForepaw: {
  32939. height: math.unit(3.5, "feet"),
  32940. name: "Goia Forepaw",
  32941. image: {
  32942. source: "./media/characters/ryth/goia-forepaw.svg"
  32943. }
  32944. },
  32945. goiaHindpaw: {
  32946. height: math.unit(5.55, "feet"),
  32947. name: "Goia Hindpaw",
  32948. image: {
  32949. source: "./media/characters/ryth/goia-hindpaw.svg"
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Normal",
  32956. height: math.unit(4, "feet"),
  32957. default: true
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32963. {
  32964. front: {
  32965. height: math.unit(7, "feet"),
  32966. weight: math.unit(180, "lb"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/necrolance/front.svg",
  32970. extra: 1062/947,
  32971. bottom: 41/1103
  32972. }
  32973. },
  32974. back: {
  32975. height: math.unit(7, "feet"),
  32976. weight: math.unit(180, "lb"),
  32977. name: "Back",
  32978. image: {
  32979. source: "./media/characters/necrolance/back.svg",
  32980. extra: 1045/984,
  32981. bottom: 14/1059
  32982. }
  32983. },
  32984. wing: {
  32985. height: math.unit(2.67, "feet"),
  32986. name: "Wing",
  32987. image: {
  32988. source: "./media/characters/necrolance/wing.svg"
  32989. }
  32990. },
  32991. },
  32992. [
  32993. {
  32994. name: "Normal",
  32995. height: math.unit(7, "feet"),
  32996. default: true
  32997. },
  32998. ]
  32999. ))
  33000. characterMakers.push(() => makeCharacter(
  33001. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33002. {
  33003. front: {
  33004. height: math.unit(76, "meters"),
  33005. weight: math.unit(30000, "tons"),
  33006. name: "Front",
  33007. image: {
  33008. source: "./media/characters/tyler/front.svg",
  33009. extra: 1640/1640,
  33010. bottom: 114/1754
  33011. }
  33012. },
  33013. },
  33014. [
  33015. {
  33016. name: "Macro",
  33017. height: math.unit(76, "meters"),
  33018. default: true
  33019. },
  33020. ]
  33021. ))
  33022. characterMakers.push(() => makeCharacter(
  33023. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33024. {
  33025. front: {
  33026. height: math.unit(4 + 11/12, "feet"),
  33027. weight: math.unit(132, "lb"),
  33028. name: "Front",
  33029. image: {
  33030. source: "./media/characters/icey/front.svg",
  33031. extra: 2750/2550,
  33032. bottom: 33/2783
  33033. }
  33034. },
  33035. back: {
  33036. height: math.unit(4 + 11/12, "feet"),
  33037. weight: math.unit(132, "lb"),
  33038. name: "Back",
  33039. image: {
  33040. source: "./media/characters/icey/back.svg",
  33041. extra: 2624/2481,
  33042. bottom: 35/2659
  33043. }
  33044. },
  33045. },
  33046. [
  33047. {
  33048. name: "Normal",
  33049. height: math.unit(4 + 11/12, "feet"),
  33050. default: true
  33051. },
  33052. ]
  33053. ))
  33054. characterMakers.push(() => makeCharacter(
  33055. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33056. {
  33057. front: {
  33058. height: math.unit(100, "feet"),
  33059. weight: math.unit(0, "lb"),
  33060. name: "Front",
  33061. image: {
  33062. source: "./media/characters/smile/front.svg",
  33063. extra: 2983/2912,
  33064. bottom: 162/3145
  33065. }
  33066. },
  33067. back: {
  33068. height: math.unit(100, "feet"),
  33069. weight: math.unit(0, "lb"),
  33070. name: "Back",
  33071. image: {
  33072. source: "./media/characters/smile/back.svg",
  33073. extra: 3143/3031,
  33074. bottom: 91/3234
  33075. }
  33076. },
  33077. head: {
  33078. height: math.unit(26.3, "feet"),
  33079. weight: math.unit(0, "lb"),
  33080. name: "Head",
  33081. image: {
  33082. source: "./media/characters/smile/head.svg"
  33083. }
  33084. },
  33085. collar: {
  33086. height: math.unit(5.3, "feet"),
  33087. weight: math.unit(0, "lb"),
  33088. name: "Collar",
  33089. image: {
  33090. source: "./media/characters/smile/collar.svg"
  33091. }
  33092. },
  33093. },
  33094. [
  33095. {
  33096. name: "Macro",
  33097. height: math.unit(100, "feet"),
  33098. default: true
  33099. },
  33100. ]
  33101. ))
  33102. characterMakers.push(() => makeCharacter(
  33103. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33104. {
  33105. dragon: {
  33106. height: math.unit(26, "feet"),
  33107. weight: math.unit(36, "tons"),
  33108. name: "Dragon",
  33109. image: {
  33110. source: "./media/characters/arimphae/dragon.svg",
  33111. extra: 1574/983,
  33112. bottom: 357/1931
  33113. }
  33114. },
  33115. drake: {
  33116. height: math.unit(9, "feet"),
  33117. weight: math.unit(1.5, "tons"),
  33118. name: "Drake",
  33119. image: {
  33120. source: "./media/characters/arimphae/drake.svg",
  33121. extra: 1120/925,
  33122. bottom: 435/1555
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Small",
  33129. height: math.unit(26*5/9, "feet")
  33130. },
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(26, "feet"),
  33134. default: true
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33140. {
  33141. front: {
  33142. height: math.unit(8 + 9/12, "feet"),
  33143. name: "Front",
  33144. image: {
  33145. source: "./media/characters/xander/front.svg",
  33146. extra: 1237/974,
  33147. bottom: 94/1331
  33148. }
  33149. },
  33150. },
  33151. [
  33152. {
  33153. name: "Normal",
  33154. height: math.unit(8 + 9/12, "feet"),
  33155. default: true
  33156. },
  33157. {
  33158. name: "Gaze Grabber",
  33159. height: math.unit(13 + 8/12, "feet")
  33160. },
  33161. {
  33162. name: "Jaw Dropper",
  33163. height: math.unit(27, "feet")
  33164. },
  33165. {
  33166. name: "Show Stopper",
  33167. height: math.unit(136, "feet")
  33168. },
  33169. {
  33170. name: "Superstar",
  33171. height: math.unit(1.9e6, "miles")
  33172. },
  33173. ]
  33174. ))
  33175. characterMakers.push(() => makeCharacter(
  33176. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33177. {
  33178. side: {
  33179. height: math.unit(2100, "feet"),
  33180. name: "Side",
  33181. image: {
  33182. source: "./media/characters/osiris/side.svg",
  33183. extra: 1105/939,
  33184. bottom: 167/1272
  33185. }
  33186. },
  33187. },
  33188. [
  33189. {
  33190. name: "Macro",
  33191. height: math.unit(2100, "feet"),
  33192. default: true
  33193. },
  33194. ]
  33195. ))
  33196. characterMakers.push(() => makeCharacter(
  33197. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33198. {
  33199. front: {
  33200. height: math.unit(6 + 8/12, "feet"),
  33201. weight: math.unit(225, "lb"),
  33202. name: "Front",
  33203. image: {
  33204. source: "./media/characters/rhys-londe/front.svg",
  33205. extra: 2258/2141,
  33206. bottom: 188/2446
  33207. }
  33208. },
  33209. back: {
  33210. height: math.unit(6 + 8/12, "feet"),
  33211. weight: math.unit(225, "lb"),
  33212. name: "Back",
  33213. image: {
  33214. source: "./media/characters/rhys-londe/back.svg",
  33215. extra: 2237/2137,
  33216. bottom: 63/2300
  33217. }
  33218. },
  33219. frontNsfw: {
  33220. height: math.unit(6 + 8/12, "feet"),
  33221. weight: math.unit(225, "lb"),
  33222. name: "Front (NSFW)",
  33223. image: {
  33224. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33225. extra: 2258/2141,
  33226. bottom: 188/2446
  33227. }
  33228. },
  33229. backNsfw: {
  33230. height: math.unit(6 + 8/12, "feet"),
  33231. weight: math.unit(225, "lb"),
  33232. name: "Back (NSFW)",
  33233. image: {
  33234. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33235. extra: 2237/2137,
  33236. bottom: 63/2300
  33237. }
  33238. },
  33239. dick: {
  33240. height: math.unit(30, "inches"),
  33241. name: "Dick",
  33242. image: {
  33243. source: "./media/characters/rhys-londe/dick.svg"
  33244. }
  33245. },
  33246. maw: {
  33247. height: math.unit(1.6, "feet"),
  33248. name: "Maw",
  33249. image: {
  33250. source: "./media/characters/rhys-londe/maw.svg"
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(6 + 8/12, "feet"),
  33258. default: true
  33259. },
  33260. ]
  33261. ))
  33262. characterMakers.push(() => makeCharacter(
  33263. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33264. {
  33265. front: {
  33266. height: math.unit(3 + 10/12, "feet"),
  33267. weight: math.unit(90, "lb"),
  33268. name: "Front",
  33269. image: {
  33270. source: "./media/characters/taivas-ensim/front.svg",
  33271. extra: 1327/1216,
  33272. bottom: 96/1423
  33273. }
  33274. },
  33275. back: {
  33276. height: math.unit(3 + 10/12, "feet"),
  33277. weight: math.unit(90, "lb"),
  33278. name: "Back",
  33279. image: {
  33280. source: "./media/characters/taivas-ensim/back.svg",
  33281. extra: 1355/1247,
  33282. bottom: 11/1366
  33283. }
  33284. },
  33285. frontNsfw: {
  33286. height: math.unit(3 + 10/12, "feet"),
  33287. weight: math.unit(90, "lb"),
  33288. name: "Front (NSFW)",
  33289. image: {
  33290. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33291. extra: 1327/1216,
  33292. bottom: 96/1423
  33293. }
  33294. },
  33295. backNsfw: {
  33296. height: math.unit(3 + 10/12, "feet"),
  33297. weight: math.unit(90, "lb"),
  33298. name: "Back (NSFW)",
  33299. image: {
  33300. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33301. extra: 1355/1247,
  33302. bottom: 11/1366
  33303. }
  33304. },
  33305. },
  33306. [
  33307. {
  33308. name: "Normal",
  33309. height: math.unit(3 + 10/12, "feet"),
  33310. default: true
  33311. },
  33312. ]
  33313. ))
  33314. characterMakers.push(() => makeCharacter(
  33315. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33316. {
  33317. front: {
  33318. height: math.unit(9 + 6/12, "feet"),
  33319. weight: math.unit(940, "lb"),
  33320. name: "Front",
  33321. image: {
  33322. source: "./media/characters/byliss/front.svg",
  33323. extra: 1327/1290,
  33324. bottom: 82/1409
  33325. }
  33326. },
  33327. back: {
  33328. height: math.unit(9 + 6/12, "feet"),
  33329. weight: math.unit(940, "lb"),
  33330. name: "Back",
  33331. image: {
  33332. source: "./media/characters/byliss/back.svg",
  33333. extra: 1376/1349,
  33334. bottom: 9/1385
  33335. }
  33336. },
  33337. frontNsfw: {
  33338. height: math.unit(9 + 6/12, "feet"),
  33339. weight: math.unit(940, "lb"),
  33340. name: "Front (NSFW)",
  33341. image: {
  33342. source: "./media/characters/byliss/front-nsfw.svg",
  33343. extra: 1327/1290,
  33344. bottom: 82/1409
  33345. }
  33346. },
  33347. backNsfw: {
  33348. height: math.unit(9 + 6/12, "feet"),
  33349. weight: math.unit(940, "lb"),
  33350. name: "Back (NSFW)",
  33351. image: {
  33352. source: "./media/characters/byliss/back-nsfw.svg",
  33353. extra: 1376/1349,
  33354. bottom: 9/1385
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Normal",
  33361. height: math.unit(9 + 6/12, "feet"),
  33362. default: true
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33368. {
  33369. front: {
  33370. height: math.unit(5 + 2/12, "feet"),
  33371. weight: math.unit(200, "lb"),
  33372. name: "Front",
  33373. image: {
  33374. source: "./media/characters/noraly/front.svg",
  33375. extra: 4985/4773,
  33376. bottom: 150/5135
  33377. }
  33378. },
  33379. full: {
  33380. height: math.unit(5 + 2/12, "feet"),
  33381. weight: math.unit(164, "lb"),
  33382. name: "Full",
  33383. image: {
  33384. source: "./media/characters/noraly/full.svg",
  33385. extra: 1114/1059,
  33386. bottom: 35/1149
  33387. }
  33388. },
  33389. fuller: {
  33390. height: math.unit(5 + 2/12, "feet"),
  33391. weight: math.unit(230, "lb"),
  33392. name: "Fuller",
  33393. image: {
  33394. source: "./media/characters/noraly/fuller.svg",
  33395. extra: 1114/1059,
  33396. bottom: 35/1149
  33397. }
  33398. },
  33399. fullest: {
  33400. height: math.unit(5 + 2/12, "feet"),
  33401. weight: math.unit(300, "lb"),
  33402. name: "Fullest",
  33403. image: {
  33404. source: "./media/characters/noraly/fullest.svg",
  33405. extra: 1114/1059,
  33406. bottom: 35/1149
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(5 + 2/12, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33420. {
  33421. front: {
  33422. height: math.unit(5 + 2/12, "feet"),
  33423. weight: math.unit(210, "lb"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/pera/front.svg",
  33427. extra: 1560/1531,
  33428. bottom: 165/1725
  33429. }
  33430. },
  33431. back: {
  33432. height: math.unit(5 + 2/12, "feet"),
  33433. weight: math.unit(210, "lb"),
  33434. name: "Back",
  33435. image: {
  33436. source: "./media/characters/pera/back.svg",
  33437. extra: 1523/1493,
  33438. bottom: 152/1675
  33439. }
  33440. },
  33441. dick: {
  33442. height: math.unit(2.4, "feet"),
  33443. name: "Dick",
  33444. image: {
  33445. source: "./media/characters/pera/dick.svg"
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(5 + 2/12, "feet"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(12, "feet"),
  33462. weight: math.unit(3200, "lb"),
  33463. name: "Front",
  33464. image: {
  33465. source: "./media/characters/julian/front.svg",
  33466. extra: 2962/2701,
  33467. bottom: 184/3146
  33468. }
  33469. },
  33470. maw: {
  33471. height: math.unit(5.35, "feet"),
  33472. name: "Maw",
  33473. image: {
  33474. source: "./media/characters/julian/maw.svg"
  33475. }
  33476. },
  33477. paw: {
  33478. height: math.unit(3.07, "feet"),
  33479. name: "Paw",
  33480. image: {
  33481. source: "./media/characters/julian/paw.svg"
  33482. }
  33483. },
  33484. },
  33485. [
  33486. {
  33487. name: "Default",
  33488. height: math.unit(12, "feet"),
  33489. default: true
  33490. },
  33491. {
  33492. name: "Big",
  33493. height: math.unit(50, "feet")
  33494. },
  33495. {
  33496. name: "Really Big",
  33497. height: math.unit(1, "mile")
  33498. },
  33499. {
  33500. name: "Extremely Big",
  33501. height: math.unit(100, "miles")
  33502. },
  33503. {
  33504. name: "Planet Hugger",
  33505. height: math.unit(200, "megameters")
  33506. },
  33507. {
  33508. name: "Unreasonably Big",
  33509. height: math.unit(1e300, "meters")
  33510. },
  33511. ]
  33512. ))
  33513. characterMakers.push(() => makeCharacter(
  33514. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33515. {
  33516. solgooleo: {
  33517. height: math.unit(4, "meters"),
  33518. weight: math.unit(6000*1.5, "kg"),
  33519. volume: math.unit(6000, "liters"),
  33520. name: "Solgooleo",
  33521. image: {
  33522. source: "./media/characters/pi/solgooleo.svg",
  33523. extra: 388/331,
  33524. bottom: 29/417
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(4, "meters"),
  33532. default: true
  33533. },
  33534. ]
  33535. ))
  33536. characterMakers.push(() => makeCharacter(
  33537. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33538. {
  33539. front: {
  33540. height: math.unit(8, "feet"),
  33541. weight: math.unit(4, "tons"),
  33542. name: "Front",
  33543. image: {
  33544. source: "./media/characters/shaun/front.svg",
  33545. extra: 503/495,
  33546. bottom: 20/523
  33547. }
  33548. },
  33549. back: {
  33550. height: math.unit(8, "feet"),
  33551. weight: math.unit(4, "tons"),
  33552. name: "Back",
  33553. image: {
  33554. source: "./media/characters/shaun/back.svg",
  33555. extra: 487/480,
  33556. bottom: 20/507
  33557. }
  33558. },
  33559. },
  33560. [
  33561. {
  33562. name: "Lorg",
  33563. height: math.unit(8, "feet"),
  33564. default: true
  33565. },
  33566. ]
  33567. ))
  33568. characterMakers.push(() => makeCharacter(
  33569. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33570. {
  33571. frontAnthro: {
  33572. height: math.unit(7, "feet"),
  33573. name: "Front",
  33574. image: {
  33575. source: "./media/characters/sini/front-anthro.svg",
  33576. extra: 726/678,
  33577. bottom: 35/761
  33578. },
  33579. form: "anthro",
  33580. default: true
  33581. },
  33582. backAnthro: {
  33583. height: math.unit(7, "feet"),
  33584. name: "Back",
  33585. image: {
  33586. source: "./media/characters/sini/back-anthro.svg",
  33587. extra: 743/701,
  33588. bottom: 12/755
  33589. },
  33590. form: "anthro",
  33591. },
  33592. frontAnthroNsfw: {
  33593. height: math.unit(7, "feet"),
  33594. name: "Front (NSFW)",
  33595. image: {
  33596. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33597. extra: 726/678,
  33598. bottom: 35/761
  33599. },
  33600. form: "anthro"
  33601. },
  33602. backAnthroNsfw: {
  33603. height: math.unit(7, "feet"),
  33604. name: "Back (NSFW)",
  33605. image: {
  33606. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33607. extra: 743/701,
  33608. bottom: 12/755
  33609. },
  33610. form: "anthro",
  33611. },
  33612. mawAnthro: {
  33613. height: math.unit(2.14, "feet"),
  33614. name: "Maw",
  33615. image: {
  33616. source: "./media/characters/sini/maw-anthro.svg"
  33617. },
  33618. form: "anthro"
  33619. },
  33620. dick: {
  33621. height: math.unit(1.45, "feet"),
  33622. name: "Dick",
  33623. image: {
  33624. source: "./media/characters/sini/dick-anthro.svg"
  33625. },
  33626. form: "anthro"
  33627. },
  33628. feral: {
  33629. height: math.unit(16, "feet"),
  33630. name: "Feral",
  33631. image: {
  33632. source: "./media/characters/sini/feral.svg",
  33633. extra: 814/605,
  33634. bottom: 11/825
  33635. },
  33636. form: "feral",
  33637. default: true
  33638. },
  33639. feralNsfw: {
  33640. height: math.unit(16, "feet"),
  33641. name: "Feral (NSFW)",
  33642. image: {
  33643. source: "./media/characters/sini/feral-nsfw.svg",
  33644. extra: 814/605,
  33645. bottom: 11/825
  33646. },
  33647. form: "feral"
  33648. },
  33649. mawFeral: {
  33650. height: math.unit(5.66, "feet"),
  33651. name: "Maw",
  33652. image: {
  33653. source: "./media/characters/sini/maw-feral.svg"
  33654. },
  33655. form: "feral",
  33656. },
  33657. pawFeral: {
  33658. height: math.unit(5.17, "feet"),
  33659. name: "Paw",
  33660. image: {
  33661. source: "./media/characters/sini/paw-feral.svg"
  33662. },
  33663. form: "feral",
  33664. },
  33665. rumpFeral: {
  33666. height: math.unit(13.11, "feet"),
  33667. name: "Rump",
  33668. image: {
  33669. source: "./media/characters/sini/rump-feral.svg"
  33670. },
  33671. form: "feral",
  33672. },
  33673. dickFeral: {
  33674. height: math.unit(1, "feet"),
  33675. name: "Dick",
  33676. image: {
  33677. source: "./media/characters/sini/dick-feral.svg"
  33678. },
  33679. form: "feral",
  33680. },
  33681. eyeFeral: {
  33682. height: math.unit(1.23, "feet"),
  33683. name: "Eye",
  33684. image: {
  33685. source: "./media/characters/sini/eye-feral.svg"
  33686. },
  33687. form: "feral",
  33688. },
  33689. },
  33690. [
  33691. {
  33692. name: "Normal",
  33693. height: math.unit(7, "feet"),
  33694. default: true,
  33695. form: "anthro"
  33696. },
  33697. {
  33698. name: "Normal",
  33699. height: math.unit(16, "feet"),
  33700. default: true,
  33701. form: "feral"
  33702. },
  33703. ],
  33704. {
  33705. "anthro": {
  33706. name: "Anthro",
  33707. default: true
  33708. },
  33709. "feral": {
  33710. name: "Feral",
  33711. }
  33712. }
  33713. ))
  33714. characterMakers.push(() => makeCharacter(
  33715. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33716. {
  33717. side: {
  33718. height: math.unit(13, "meters"),
  33719. weight: math.unit(9072, "kg"),
  33720. name: "Side",
  33721. image: {
  33722. source: "./media/characters/raylldo/side.svg",
  33723. extra: 403/344,
  33724. bottom: 42/445
  33725. }
  33726. },
  33727. leaping: {
  33728. height: math.unit(12.3, "meters"),
  33729. weight: math.unit(9072, "kg"),
  33730. name: "Leaping",
  33731. image: {
  33732. source: "./media/characters/raylldo/leaping.svg",
  33733. extra: 470/249,
  33734. bottom: 13/483
  33735. }
  33736. },
  33737. flying: {
  33738. height: math.unit(18, "meters"),
  33739. weight: math.unit(9072, "kg"),
  33740. name: "Flying",
  33741. image: {
  33742. source: "./media/characters/raylldo/flying.svg"
  33743. }
  33744. },
  33745. head: {
  33746. height: math.unit(5.85, "meters"),
  33747. name: "Head",
  33748. image: {
  33749. source: "./media/characters/raylldo/head.svg"
  33750. }
  33751. },
  33752. maw: {
  33753. height: math.unit(5.32, "meters"),
  33754. name: "Maw",
  33755. image: {
  33756. source: "./media/characters/raylldo/maw.svg"
  33757. }
  33758. },
  33759. eye: {
  33760. height: math.unit(0.54, "meters"),
  33761. name: "Eye",
  33762. image: {
  33763. source: "./media/characters/raylldo/eye.svg"
  33764. }
  33765. },
  33766. },
  33767. [
  33768. {
  33769. name: "Normal",
  33770. height: math.unit(13, "meters"),
  33771. default: true
  33772. },
  33773. ]
  33774. ))
  33775. characterMakers.push(() => makeCharacter(
  33776. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33777. {
  33778. anthroFront: {
  33779. height: math.unit(9, "feet"),
  33780. weight: math.unit(600, "lb"),
  33781. name: "Anthro (Front)",
  33782. image: {
  33783. source: "./media/characters/glint/anthro-front.svg",
  33784. extra: 1097/1018,
  33785. bottom: 28/1125
  33786. }
  33787. },
  33788. anthroBack: {
  33789. height: math.unit(9, "feet"),
  33790. weight: math.unit(600, "lb"),
  33791. name: "Anthro (Back)",
  33792. image: {
  33793. source: "./media/characters/glint/anthro-back.svg",
  33794. extra: 1154/997,
  33795. bottom: 36/1190
  33796. }
  33797. },
  33798. feral: {
  33799. height: math.unit(11, "feet"),
  33800. weight: math.unit(50000, "lb"),
  33801. name: "Feral",
  33802. image: {
  33803. source: "./media/characters/glint/feral.svg",
  33804. extra: 3035/1585,
  33805. bottom: 1169/4204
  33806. }
  33807. },
  33808. dickAnthro: {
  33809. height: math.unit(0.7, "meters"),
  33810. name: "Dick (Anthro)",
  33811. image: {
  33812. source: "./media/characters/glint/dick-anthro.svg"
  33813. }
  33814. },
  33815. dickFeral: {
  33816. height: math.unit(2.65, "meters"),
  33817. name: "Dick (Feral)",
  33818. image: {
  33819. source: "./media/characters/glint/dick-feral.svg"
  33820. }
  33821. },
  33822. slitHidden: {
  33823. height: math.unit(5.85, "meters"),
  33824. name: "Slit (Hidden)",
  33825. image: {
  33826. source: "./media/characters/glint/slit-hidden.svg"
  33827. }
  33828. },
  33829. slitErect: {
  33830. height: math.unit(5.85, "meters"),
  33831. name: "Slit (Erect)",
  33832. image: {
  33833. source: "./media/characters/glint/slit-erect.svg"
  33834. }
  33835. },
  33836. mawAnthro: {
  33837. height: math.unit(0.63, "meters"),
  33838. name: "Maw (Anthro)",
  33839. image: {
  33840. source: "./media/characters/glint/maw.svg"
  33841. }
  33842. },
  33843. mawFeral: {
  33844. height: math.unit(2.89, "meters"),
  33845. name: "Maw (Feral)",
  33846. image: {
  33847. source: "./media/characters/glint/maw.svg"
  33848. }
  33849. },
  33850. },
  33851. [
  33852. {
  33853. name: "Normal",
  33854. height: math.unit(9, "feet"),
  33855. default: true
  33856. },
  33857. ]
  33858. ))
  33859. characterMakers.push(() => makeCharacter(
  33860. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33861. {
  33862. side: {
  33863. height: math.unit(15, "feet"),
  33864. weight: math.unit(5000, "kg"),
  33865. name: "Side",
  33866. image: {
  33867. source: "./media/characters/kairne/side.svg",
  33868. extra: 979/811,
  33869. bottom: 13/992
  33870. }
  33871. },
  33872. front: {
  33873. height: math.unit(15, "feet"),
  33874. weight: math.unit(5000, "kg"),
  33875. name: "Front",
  33876. image: {
  33877. source: "./media/characters/kairne/front.svg",
  33878. extra: 908/814,
  33879. bottom: 26/934
  33880. }
  33881. },
  33882. sideNsfw: {
  33883. height: math.unit(15, "feet"),
  33884. weight: math.unit(5000, "kg"),
  33885. name: "Side (NSFW)",
  33886. image: {
  33887. source: "./media/characters/kairne/side-nsfw.svg",
  33888. extra: 979/811,
  33889. bottom: 13/992
  33890. }
  33891. },
  33892. frontNsfw: {
  33893. height: math.unit(15, "feet"),
  33894. weight: math.unit(5000, "kg"),
  33895. name: "Front (NSFW)",
  33896. image: {
  33897. source: "./media/characters/kairne/front-nsfw.svg",
  33898. extra: 908/814,
  33899. bottom: 26/934
  33900. }
  33901. },
  33902. dickCaged: {
  33903. height: math.unit(0.65, "meters"),
  33904. name: "Dick-caged",
  33905. image: {
  33906. source: "./media/characters/kairne/dick-caged.svg"
  33907. }
  33908. },
  33909. dick: {
  33910. height: math.unit(0.79, "meters"),
  33911. name: "Dick",
  33912. image: {
  33913. source: "./media/characters/kairne/dick.svg"
  33914. }
  33915. },
  33916. genitals: {
  33917. height: math.unit(1.29, "meters"),
  33918. name: "Genitals",
  33919. image: {
  33920. source: "./media/characters/kairne/genitals.svg"
  33921. }
  33922. },
  33923. maw: {
  33924. height: math.unit(1.73, "meters"),
  33925. name: "Maw",
  33926. image: {
  33927. source: "./media/characters/kairne/maw.svg"
  33928. }
  33929. },
  33930. },
  33931. [
  33932. {
  33933. name: "Normal",
  33934. height: math.unit(15, "feet"),
  33935. default: true
  33936. },
  33937. ]
  33938. ))
  33939. characterMakers.push(() => makeCharacter(
  33940. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33941. {
  33942. front: {
  33943. height: math.unit(5 + 8/12, "feet"),
  33944. weight: math.unit(139, "lb"),
  33945. name: "Front",
  33946. image: {
  33947. source: "./media/characters/biscuit-jackal/front.svg",
  33948. extra: 2106/1961,
  33949. bottom: 58/2164
  33950. }
  33951. },
  33952. back: {
  33953. height: math.unit(5 + 8/12, "feet"),
  33954. weight: math.unit(139, "lb"),
  33955. name: "Back",
  33956. image: {
  33957. source: "./media/characters/biscuit-jackal/back.svg",
  33958. extra: 2132/1976,
  33959. bottom: 57/2189
  33960. }
  33961. },
  33962. werejackal: {
  33963. height: math.unit(6 + 3/12, "feet"),
  33964. weight: math.unit(188, "lb"),
  33965. name: "Werejackal",
  33966. image: {
  33967. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33968. extra: 2373/2178,
  33969. bottom: 53/2426
  33970. }
  33971. },
  33972. },
  33973. [
  33974. {
  33975. name: "Normal",
  33976. height: math.unit(5 + 8/12, "feet"),
  33977. default: true
  33978. },
  33979. ]
  33980. ))
  33981. characterMakers.push(() => makeCharacter(
  33982. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33983. {
  33984. front: {
  33985. height: math.unit(140, "cm"),
  33986. weight: math.unit(45, "kg"),
  33987. name: "Front",
  33988. image: {
  33989. source: "./media/characters/tayra-white/front.svg",
  33990. extra: 2229/2192,
  33991. bottom: 75/2304
  33992. }
  33993. },
  33994. },
  33995. [
  33996. {
  33997. name: "Normal",
  33998. height: math.unit(140, "cm"),
  33999. default: true
  34000. },
  34001. ]
  34002. ))
  34003. characterMakers.push(() => makeCharacter(
  34004. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34005. {
  34006. front: {
  34007. height: math.unit(4 + 5/12, "feet"),
  34008. name: "Front",
  34009. image: {
  34010. source: "./media/characters/scoop/front.svg",
  34011. extra: 1257/1136,
  34012. bottom: 69/1326
  34013. }
  34014. },
  34015. back: {
  34016. height: math.unit(4 + 5/12, "feet"),
  34017. name: "Back",
  34018. image: {
  34019. source: "./media/characters/scoop/back.svg",
  34020. extra: 1321/1152,
  34021. bottom: 32/1353
  34022. }
  34023. },
  34024. maw: {
  34025. height: math.unit(0.68, "feet"),
  34026. name: "Maw",
  34027. image: {
  34028. source: "./media/characters/scoop/maw.svg"
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Really Small",
  34035. height: math.unit(1, "mm")
  34036. },
  34037. {
  34038. name: "Micro",
  34039. height: math.unit(1, "inch")
  34040. },
  34041. {
  34042. name: "Normal",
  34043. height: math.unit(4 + 5/12, "feet"),
  34044. default: true
  34045. },
  34046. {
  34047. name: "Macro",
  34048. height: math.unit(200, "feet")
  34049. },
  34050. {
  34051. name: "Megamacro",
  34052. height: math.unit(3240, "feet")
  34053. },
  34054. {
  34055. name: "Teramacro",
  34056. height: math.unit(2500, "miles")
  34057. },
  34058. ]
  34059. ))
  34060. characterMakers.push(() => makeCharacter(
  34061. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34062. {
  34063. front: {
  34064. height: math.unit(15 + 7/12, "feet"),
  34065. weight: math.unit(1150, "tons"),
  34066. name: "Front",
  34067. image: {
  34068. source: "./media/characters/saphinara/front.svg",
  34069. extra: 1837/1643,
  34070. bottom: 84/1921
  34071. },
  34072. form: "normal",
  34073. default: true
  34074. },
  34075. side: {
  34076. height: math.unit(15 + 7/12, "feet"),
  34077. weight: math.unit(1150, "tons"),
  34078. name: "Side",
  34079. image: {
  34080. source: "./media/characters/saphinara/side.svg",
  34081. extra: 605/547,
  34082. bottom: 6/611
  34083. },
  34084. form: "normal"
  34085. },
  34086. back: {
  34087. height: math.unit(15 + 7/12, "feet"),
  34088. weight: math.unit(1150, "tons"),
  34089. name: "Back",
  34090. image: {
  34091. source: "./media/characters/saphinara/back.svg",
  34092. extra: 591/531,
  34093. bottom: 13/604
  34094. },
  34095. form: "normal"
  34096. },
  34097. frontTail: {
  34098. height: math.unit(15 + 7/12, "feet"),
  34099. weight: math.unit(1150, "tons"),
  34100. name: "Front (Full Tail)",
  34101. image: {
  34102. source: "./media/characters/saphinara/front-tail.svg",
  34103. extra: 2256/1630,
  34104. bottom: 261/2517
  34105. },
  34106. form: "normal"
  34107. },
  34108. insides: {
  34109. height: math.unit(11.92, "feet"),
  34110. name: "Insides",
  34111. image: {
  34112. source: "./media/characters/saphinara/insides.svg"
  34113. },
  34114. form: "normal"
  34115. },
  34116. head: {
  34117. height: math.unit(4.17, "feet"),
  34118. name: "Head",
  34119. image: {
  34120. source: "./media/characters/saphinara/head.svg"
  34121. },
  34122. form: "normal"
  34123. },
  34124. tongue: {
  34125. height: math.unit(4.60, "feet"),
  34126. name: "Tongue",
  34127. image: {
  34128. source: "./media/characters/saphinara/tongue.svg"
  34129. },
  34130. form: "normal"
  34131. },
  34132. headEnraged: {
  34133. height: math.unit(5.55, "feet"),
  34134. name: "Head (Enraged)",
  34135. image: {
  34136. source: "./media/characters/saphinara/head-enraged.svg"
  34137. },
  34138. form: "normal"
  34139. },
  34140. wings: {
  34141. height: math.unit(11.95, "feet"),
  34142. name: "Wings",
  34143. image: {
  34144. source: "./media/characters/saphinara/wings.svg"
  34145. },
  34146. form: "normal"
  34147. },
  34148. feathers: {
  34149. height: math.unit(8.92, "feet"),
  34150. name: "Feathers",
  34151. image: {
  34152. source: "./media/characters/saphinara/feathers.svg"
  34153. },
  34154. form: "normal"
  34155. },
  34156. shackles: {
  34157. height: math.unit(2, "feet"),
  34158. name: "Shackles",
  34159. image: {
  34160. source: "./media/characters/saphinara/shackles.svg"
  34161. },
  34162. form: "normal"
  34163. },
  34164. eyes: {
  34165. height: math.unit(1.331, "feet"),
  34166. name: "Eyes",
  34167. image: {
  34168. source: "./media/characters/saphinara/eyes.svg"
  34169. },
  34170. form: "normal"
  34171. },
  34172. eyesEnraged: {
  34173. height: math.unit(1.331, "feet"),
  34174. name: "Eyes (Enraged)",
  34175. image: {
  34176. source: "./media/characters/saphinara/eyes-enraged.svg"
  34177. },
  34178. form: "normal"
  34179. },
  34180. trueFormSide: {
  34181. height: math.unit(200, "feet"),
  34182. weight: math.unit(1e7, "tons"),
  34183. name: "Side",
  34184. image: {
  34185. source: "./media/characters/saphinara/true-form-side.svg",
  34186. extra: 1399/770,
  34187. bottom: 97/1496
  34188. },
  34189. form: "true-form",
  34190. default: true
  34191. },
  34192. trueFormMaw: {
  34193. height: math.unit(71.5, "feet"),
  34194. name: "Maw",
  34195. image: {
  34196. source: "./media/characters/saphinara/true-form-maw.svg",
  34197. extra: 2302/1453,
  34198. bottom: 0/2302
  34199. },
  34200. form: "true-form"
  34201. },
  34202. },
  34203. [
  34204. {
  34205. name: "Normal",
  34206. height: math.unit(15 + 7/12, "feet"),
  34207. default: true,
  34208. form: "normal"
  34209. },
  34210. {
  34211. name: "Angry",
  34212. height: math.unit(30 + 6/12, "feet"),
  34213. form: "normal"
  34214. },
  34215. {
  34216. name: "Enraged",
  34217. height: math.unit(102 + 1/12, "feet"),
  34218. form: "normal"
  34219. },
  34220. {
  34221. name: "True",
  34222. height: math.unit(200, "feet"),
  34223. default: true,
  34224. form: "true-form"
  34225. }
  34226. ],
  34227. {
  34228. "normal": {
  34229. name: "Normal",
  34230. default: true
  34231. },
  34232. "true-form": {
  34233. name: "True Form"
  34234. }
  34235. }
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34239. {
  34240. front: {
  34241. height: math.unit(6 + 8/12, "feet"),
  34242. weight: math.unit(300, "lb"),
  34243. name: "Front",
  34244. image: {
  34245. source: "./media/characters/jrain/front.svg",
  34246. extra: 3039/2865,
  34247. bottom: 399/3438
  34248. }
  34249. },
  34250. back: {
  34251. height: math.unit(6 + 8/12, "feet"),
  34252. weight: math.unit(300, "lb"),
  34253. name: "Back",
  34254. image: {
  34255. source: "./media/characters/jrain/back.svg",
  34256. extra: 3089/2938,
  34257. bottom: 172/3261
  34258. }
  34259. },
  34260. head: {
  34261. height: math.unit(2.14, "feet"),
  34262. name: "Head",
  34263. image: {
  34264. source: "./media/characters/jrain/head.svg"
  34265. }
  34266. },
  34267. maw: {
  34268. height: math.unit(1.77, "feet"),
  34269. name: "Maw",
  34270. image: {
  34271. source: "./media/characters/jrain/maw.svg"
  34272. }
  34273. },
  34274. leftHand: {
  34275. height: math.unit(1.1, "feet"),
  34276. name: "Left Hand",
  34277. image: {
  34278. source: "./media/characters/jrain/left-hand.svg"
  34279. }
  34280. },
  34281. rightHand: {
  34282. height: math.unit(1.1, "feet"),
  34283. name: "Right Hand",
  34284. image: {
  34285. source: "./media/characters/jrain/right-hand.svg"
  34286. }
  34287. },
  34288. eye: {
  34289. height: math.unit(0.35, "feet"),
  34290. name: "Eye",
  34291. image: {
  34292. source: "./media/characters/jrain/eye.svg"
  34293. }
  34294. },
  34295. },
  34296. [
  34297. {
  34298. name: "Normal",
  34299. height: math.unit(6 + 8/12, "feet"),
  34300. default: true
  34301. },
  34302. {
  34303. name: "Casually Large",
  34304. height: math.unit(25, "feet")
  34305. },
  34306. {
  34307. name: "Giant",
  34308. height: math.unit(100, "feet")
  34309. },
  34310. {
  34311. name: "Kaiju",
  34312. height: math.unit(300, "feet")
  34313. },
  34314. ]
  34315. ))
  34316. characterMakers.push(() => makeCharacter(
  34317. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34318. {
  34319. dragon: {
  34320. height: math.unit(5, "meters"),
  34321. name: "Dragon",
  34322. image: {
  34323. source: "./media/characters/sabrina/dragon.svg",
  34324. extra: 3670 / 2365,
  34325. bottom: 333 / 4003
  34326. }
  34327. },
  34328. gryphon: {
  34329. height: math.unit(3, "meters"),
  34330. name: "Gryphon",
  34331. image: {
  34332. source: "./media/characters/sabrina/gryphon.svg",
  34333. extra: 1576 / 945,
  34334. bottom: 71 / 1647
  34335. }
  34336. },
  34337. snake: {
  34338. height: math.unit(12, "meters"),
  34339. name: "Snake",
  34340. image: {
  34341. source: "./media/characters/sabrina/snake.svg",
  34342. extra: 1758 / 1320,
  34343. bottom: 186 / 1944
  34344. }
  34345. },
  34346. collar: {
  34347. height: math.unit(1.86, "meters"),
  34348. name: "Collar",
  34349. image: {
  34350. source: "./media/characters/sabrina/collar.svg"
  34351. }
  34352. },
  34353. eye: {
  34354. height: math.unit(0.53, "meters"),
  34355. name: "Eye",
  34356. image: {
  34357. source: "./media/characters/sabrina/eye.svg"
  34358. }
  34359. },
  34360. foot: {
  34361. height: math.unit(1.86, "meters"),
  34362. name: "Foot",
  34363. image: {
  34364. source: "./media/characters/sabrina/foot.svg"
  34365. }
  34366. },
  34367. hand: {
  34368. height: math.unit(1.32, "meters"),
  34369. name: "Hand",
  34370. image: {
  34371. source: "./media/characters/sabrina/hand.svg"
  34372. }
  34373. },
  34374. head: {
  34375. height: math.unit(2.44, "meters"),
  34376. name: "Head",
  34377. image: {
  34378. source: "./media/characters/sabrina/head.svg"
  34379. }
  34380. },
  34381. headAngry: {
  34382. height: math.unit(2.44, "meters"),
  34383. name: "Head (Angry))",
  34384. image: {
  34385. source: "./media/characters/sabrina/head-angry.svg"
  34386. }
  34387. },
  34388. maw: {
  34389. height: math.unit(1.65, "meters"),
  34390. name: "Maw",
  34391. image: {
  34392. source: "./media/characters/sabrina/maw.svg"
  34393. }
  34394. },
  34395. spikes: {
  34396. height: math.unit(1.69, "meters"),
  34397. name: "Spikes",
  34398. image: {
  34399. source: "./media/characters/sabrina/spikes.svg"
  34400. }
  34401. },
  34402. stomach: {
  34403. height: math.unit(1.15, "meters"),
  34404. name: "Stomach",
  34405. image: {
  34406. source: "./media/characters/sabrina/stomach.svg"
  34407. }
  34408. },
  34409. tongue: {
  34410. height: math.unit(1.27, "meters"),
  34411. name: "Tongue",
  34412. image: {
  34413. source: "./media/characters/sabrina/tongue.svg"
  34414. }
  34415. },
  34416. wingDorsal: {
  34417. height: math.unit(4.85, "meters"),
  34418. name: "Wing (Dorsal)",
  34419. image: {
  34420. source: "./media/characters/sabrina/wing-dorsal.svg"
  34421. }
  34422. },
  34423. wingVentral: {
  34424. height: math.unit(4.85, "meters"),
  34425. name: "Wing (Ventral)",
  34426. image: {
  34427. source: "./media/characters/sabrina/wing-ventral.svg"
  34428. }
  34429. },
  34430. },
  34431. [
  34432. {
  34433. name: "Normal",
  34434. height: math.unit(5, "meters"),
  34435. default: true
  34436. },
  34437. ]
  34438. ))
  34439. characterMakers.push(() => makeCharacter(
  34440. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34441. {
  34442. frontMaid: {
  34443. height: math.unit(5 + 5/12, "feet"),
  34444. weight: math.unit(130, "lb"),
  34445. name: "Front (Maid)",
  34446. image: {
  34447. source: "./media/characters/midnight-tales/front-maid.svg",
  34448. extra: 489/454,
  34449. bottom: 61/550
  34450. }
  34451. },
  34452. frontFormal: {
  34453. height: math.unit(5 + 5/12, "feet"),
  34454. weight: math.unit(130, "lb"),
  34455. name: "Front (Formal)",
  34456. image: {
  34457. source: "./media/characters/midnight-tales/front-formal.svg",
  34458. extra: 489/454,
  34459. bottom: 61/550
  34460. }
  34461. },
  34462. back: {
  34463. height: math.unit(5 + 5/12, "feet"),
  34464. weight: math.unit(130, "lb"),
  34465. name: "Back",
  34466. image: {
  34467. source: "./media/characters/midnight-tales/back.svg",
  34468. extra: 498/456,
  34469. bottom: 33/531
  34470. }
  34471. },
  34472. frontBeast: {
  34473. height: math.unit(40, "feet"),
  34474. weight: math.unit(64000, "lb"),
  34475. name: "Front (Beast)",
  34476. image: {
  34477. source: "./media/characters/midnight-tales/front-beast.svg",
  34478. extra: 927/860,
  34479. bottom: 53/980
  34480. }
  34481. },
  34482. backBeast: {
  34483. height: math.unit(40, "feet"),
  34484. weight: math.unit(64000, "lb"),
  34485. name: "Back (Beast)",
  34486. image: {
  34487. source: "./media/characters/midnight-tales/back-beast.svg",
  34488. extra: 929/855,
  34489. bottom: 16/945
  34490. }
  34491. },
  34492. footBeast: {
  34493. height: math.unit(6.7, "feet"),
  34494. name: "Foot (Beast)",
  34495. image: {
  34496. source: "./media/characters/midnight-tales/foot-beast.svg"
  34497. }
  34498. },
  34499. headBeast: {
  34500. height: math.unit(8, "feet"),
  34501. name: "Head (Beast)",
  34502. image: {
  34503. source: "./media/characters/midnight-tales/head-beast.svg"
  34504. }
  34505. },
  34506. },
  34507. [
  34508. {
  34509. name: "Normal",
  34510. height: math.unit(5 + 5 / 12, "feet"),
  34511. default: true
  34512. },
  34513. {
  34514. name: "Macro",
  34515. height: math.unit(25, "feet")
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(5 + 10/12, "feet"),
  34524. name: "Front",
  34525. image: {
  34526. source: "./media/characters/argon/front.svg",
  34527. extra: 2009/1935,
  34528. bottom: 118/2127
  34529. }
  34530. },
  34531. back: {
  34532. height: math.unit(5 + 10/12, "feet"),
  34533. name: "Back",
  34534. image: {
  34535. source: "./media/characters/argon/back.svg",
  34536. extra: 2047/1992,
  34537. bottom: 20/2067
  34538. }
  34539. },
  34540. frontDressed: {
  34541. height: math.unit(5 + 10/12, "feet"),
  34542. name: "Front (Dressed)",
  34543. image: {
  34544. source: "./media/characters/argon/front-dressed.svg",
  34545. extra: 2009/1935,
  34546. bottom: 118/2127
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Normal",
  34553. height: math.unit(5 + 10/12, "feet"),
  34554. default: true
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34560. {
  34561. front: {
  34562. height: math.unit(8 + 6/12, "feet"),
  34563. weight: math.unit(1150, "lb"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/kichi/front.svg",
  34567. extra: 1267/1164,
  34568. bottom: 61/1328
  34569. }
  34570. },
  34571. back: {
  34572. height: math.unit(8 + 6/12, "feet"),
  34573. weight: math.unit(1150, "lb"),
  34574. name: "Back",
  34575. image: {
  34576. source: "./media/characters/kichi/back.svg",
  34577. extra: 1273/1166,
  34578. bottom: 33/1306
  34579. }
  34580. },
  34581. },
  34582. [
  34583. {
  34584. name: "Normal",
  34585. height: math.unit(8 + 6/12, "feet"),
  34586. default: true
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(6, "feet"),
  34595. weight: math.unit(210, "lb"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/manetel-greyscale/front.svg",
  34599. extra: 350/312,
  34600. bottom: 8/358
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Micro",
  34607. height: math.unit(2, "inches")
  34608. },
  34609. {
  34610. name: "Normal",
  34611. height: math.unit(6, "feet"),
  34612. default: true
  34613. },
  34614. {
  34615. name: "Minimacro",
  34616. height: math.unit(17, "feet")
  34617. },
  34618. {
  34619. name: "Macro",
  34620. height: math.unit(117, "feet")
  34621. },
  34622. ]
  34623. ))
  34624. characterMakers.push(() => makeCharacter(
  34625. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34626. {
  34627. side: {
  34628. height: math.unit(5 + 1/12, "feet"),
  34629. weight: math.unit(418, "lb"),
  34630. name: "Side",
  34631. image: {
  34632. source: "./media/characters/softpurr/side.svg",
  34633. extra: 1993/1945,
  34634. bottom: 134/2127
  34635. }
  34636. },
  34637. front: {
  34638. height: math.unit(5 + 1/12, "feet"),
  34639. weight: math.unit(418, "lb"),
  34640. name: "Front",
  34641. image: {
  34642. source: "./media/characters/softpurr/front.svg",
  34643. extra: 1950/1856,
  34644. bottom: 174/2124
  34645. }
  34646. },
  34647. paw: {
  34648. height: math.unit(1, "feet"),
  34649. name: "Paw",
  34650. image: {
  34651. source: "./media/characters/softpurr/paw.svg"
  34652. }
  34653. },
  34654. },
  34655. [
  34656. {
  34657. name: "Normal",
  34658. height: math.unit(5 + 1/12, "feet"),
  34659. default: true
  34660. },
  34661. ]
  34662. ))
  34663. characterMakers.push(() => makeCharacter(
  34664. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34665. {
  34666. front: {
  34667. height: math.unit(260, "meters"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/anahita/front.svg",
  34671. extra: 665/635,
  34672. bottom: 89/754
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Macro",
  34679. height: math.unit(260, "meters"),
  34680. default: true
  34681. },
  34682. ]
  34683. ))
  34684. characterMakers.push(() => makeCharacter(
  34685. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34686. {
  34687. front: {
  34688. height: math.unit(4 + 10/12, "feet"),
  34689. weight: math.unit(160, "lb"),
  34690. name: "Front",
  34691. image: {
  34692. source: "./media/characters/chip-mouse/front.svg",
  34693. extra: 3528/3408,
  34694. bottom: 0/3528
  34695. }
  34696. },
  34697. frontNsfw: {
  34698. height: math.unit(4 + 10/12, "feet"),
  34699. weight: math.unit(160, "lb"),
  34700. name: "Front (NSFW)",
  34701. image: {
  34702. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34703. extra: 3528/3408,
  34704. bottom: 0/3528
  34705. }
  34706. },
  34707. },
  34708. [
  34709. {
  34710. name: "Normal",
  34711. height: math.unit(4 + 10/12, "feet"),
  34712. default: true
  34713. },
  34714. ]
  34715. ))
  34716. characterMakers.push(() => makeCharacter(
  34717. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34718. {
  34719. side: {
  34720. height: math.unit(10, "feet"),
  34721. weight: math.unit(14000, "lb"),
  34722. name: "Side",
  34723. image: {
  34724. source: "./media/characters/kremm/side.svg",
  34725. extra: 1390/1053,
  34726. bottom: 90/1480
  34727. }
  34728. },
  34729. gut: {
  34730. height: math.unit(5.8, "feet"),
  34731. name: "Gut",
  34732. image: {
  34733. source: "./media/characters/kremm/gut.svg"
  34734. }
  34735. },
  34736. ass: {
  34737. height: math.unit(6.1, "feet"),
  34738. name: "Ass",
  34739. image: {
  34740. source: "./media/characters/kremm/ass.svg"
  34741. }
  34742. },
  34743. jaws: {
  34744. height: math.unit(2.2, "feet"),
  34745. name: "Jaws",
  34746. image: {
  34747. source: "./media/characters/kremm/jaws.svg"
  34748. }
  34749. },
  34750. dick: {
  34751. height: math.unit(4.26, "feet"),
  34752. name: "Dick",
  34753. image: {
  34754. source: "./media/characters/kremm/dick.svg"
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(10, "feet"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(30, "stories"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/kai/front.svg",
  34774. extra: 1892/1718,
  34775. bottom: 162/2054
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Macro",
  34782. height: math.unit(30, "stories"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34789. {
  34790. front: {
  34791. height: math.unit(6 + 4/12, "feet"),
  34792. weight: math.unit(145, "lb"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/sykes/front.svg",
  34796. extra: 1321 / 1187,
  34797. bottom: 66 / 1387
  34798. }
  34799. },
  34800. back: {
  34801. height: math.unit(6 + 4/12, "feet"),
  34802. weight: math.unit(145, "lb"),
  34803. name: "Back",
  34804. image: {
  34805. source: "./media/characters/sykes/back.svg",
  34806. extra: 1326/1181,
  34807. bottom: 31/1357
  34808. }
  34809. },
  34810. traditionalOutfit: {
  34811. height: math.unit(6 + 4/12, "feet"),
  34812. weight: math.unit(145, "lb"),
  34813. name: "Traditional Outfit",
  34814. image: {
  34815. source: "./media/characters/sykes/traditional-outfit.svg",
  34816. extra: 1321 / 1187,
  34817. bottom: 66 / 1387
  34818. }
  34819. },
  34820. adventureOutfit: {
  34821. height: math.unit(6 + 4/12, "feet"),
  34822. weight: math.unit(145, "lb"),
  34823. name: "Adventure Outfit",
  34824. image: {
  34825. source: "./media/characters/sykes/adventure-outfit.svg",
  34826. extra: 1321 / 1187,
  34827. bottom: 66 / 1387
  34828. }
  34829. },
  34830. handLeft: {
  34831. height: math.unit(0.9, "feet"),
  34832. name: "Hand (Left)",
  34833. image: {
  34834. source: "./media/characters/sykes/hand-left.svg"
  34835. }
  34836. },
  34837. handRight: {
  34838. height: math.unit(0.839, "feet"),
  34839. name: "Hand (Right)",
  34840. image: {
  34841. source: "./media/characters/sykes/hand-right.svg"
  34842. }
  34843. },
  34844. leftFoot: {
  34845. height: math.unit(1.2, "feet"),
  34846. name: "Foot (Left)",
  34847. image: {
  34848. source: "./media/characters/sykes/foot-left.svg"
  34849. }
  34850. },
  34851. rightFoot: {
  34852. height: math.unit(1.2, "feet"),
  34853. name: "Foot (Right)",
  34854. image: {
  34855. source: "./media/characters/sykes/foot-right.svg"
  34856. }
  34857. },
  34858. maw: {
  34859. height: math.unit(1.93, "feet"),
  34860. name: "Maw",
  34861. image: {
  34862. source: "./media/characters/sykes/maw.svg"
  34863. }
  34864. },
  34865. teeth: {
  34866. height: math.unit(0.51, "feet"),
  34867. name: "Teeth",
  34868. image: {
  34869. source: "./media/characters/sykes/teeth.svg"
  34870. }
  34871. },
  34872. tongue: {
  34873. height: math.unit(2.13, "feet"),
  34874. name: "Tongue",
  34875. image: {
  34876. source: "./media/characters/sykes/tongue.svg"
  34877. }
  34878. },
  34879. uvula: {
  34880. height: math.unit(0.16, "feet"),
  34881. name: "Uvula",
  34882. image: {
  34883. source: "./media/characters/sykes/uvula.svg"
  34884. }
  34885. },
  34886. collar: {
  34887. height: math.unit(0.287, "feet"),
  34888. name: "Collar",
  34889. image: {
  34890. source: "./media/characters/sykes/collar.svg"
  34891. }
  34892. },
  34893. tail: {
  34894. height: math.unit(3.8, "feet"),
  34895. name: "Tail",
  34896. image: {
  34897. source: "./media/characters/sykes/tail.svg"
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "Shrunken",
  34904. height: math.unit(5, "inches")
  34905. },
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(6 + 4 / 12, "feet"),
  34909. default: true
  34910. },
  34911. {
  34912. name: "Big",
  34913. height: math.unit(15, "feet")
  34914. },
  34915. ]
  34916. ))
  34917. characterMakers.push(() => makeCharacter(
  34918. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34919. {
  34920. front: {
  34921. height: math.unit(5 + 8/12, "feet"),
  34922. weight: math.unit(190, "lb"),
  34923. name: "Front",
  34924. image: {
  34925. source: "./media/characters/oven-otter/front.svg",
  34926. extra: 1809/1740,
  34927. bottom: 181/1990
  34928. }
  34929. },
  34930. back: {
  34931. height: math.unit(5 + 8/12, "feet"),
  34932. weight: math.unit(190, "lb"),
  34933. name: "Back",
  34934. image: {
  34935. source: "./media/characters/oven-otter/back.svg",
  34936. extra: 1709/1635,
  34937. bottom: 118/1827
  34938. }
  34939. },
  34940. hand: {
  34941. height: math.unit(1.07, "feet"),
  34942. name: "Hand",
  34943. image: {
  34944. source: "./media/characters/oven-otter/hand.svg"
  34945. }
  34946. },
  34947. beans: {
  34948. height: math.unit(1.74, "feet"),
  34949. name: "Beans",
  34950. image: {
  34951. source: "./media/characters/oven-otter/beans.svg"
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Micro",
  34958. height: math.unit(0.5, "inches")
  34959. },
  34960. {
  34961. name: "Normal",
  34962. height: math.unit(5 + 8/12, "feet"),
  34963. default: true
  34964. },
  34965. {
  34966. name: "Macro",
  34967. height: math.unit(250, "feet")
  34968. },
  34969. {
  34970. name: "Really High",
  34971. height: math.unit(420, "feet")
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(5, "meters"),
  34980. weight: math.unit(292000000000000, "kg"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/devourer/front.svg",
  34984. extra: 1800/1733,
  34985. bottom: 211/2011
  34986. }
  34987. },
  34988. maw: {
  34989. height: math.unit(1.1, "meter"),
  34990. name: "Maw",
  34991. image: {
  34992. source: "./media/characters/devourer/maw.svg"
  34993. }
  34994. },
  34995. },
  34996. [
  34997. {
  34998. name: "Small",
  34999. height: math.unit(3, "meters")
  35000. },
  35001. {
  35002. name: "Large",
  35003. height: math.unit(5, "meters"),
  35004. default: true
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35010. {
  35011. front: {
  35012. height: math.unit(6, "feet"),
  35013. weight: math.unit(400, "lb"),
  35014. name: "Front",
  35015. image: {
  35016. source: "./media/characters/ellarby/front.svg",
  35017. extra: 1909/1763,
  35018. bottom: 80/1989
  35019. }
  35020. },
  35021. back: {
  35022. height: math.unit(6, "feet"),
  35023. weight: math.unit(400, "lb"),
  35024. name: "Back",
  35025. image: {
  35026. source: "./media/characters/ellarby/back.svg",
  35027. extra: 1914/1784,
  35028. bottom: 172/2086
  35029. }
  35030. },
  35031. },
  35032. [
  35033. {
  35034. name: "Mischief",
  35035. height: math.unit(18, "inches")
  35036. },
  35037. {
  35038. name: "Trouble",
  35039. height: math.unit(12, "feet")
  35040. },
  35041. {
  35042. name: "Havoc",
  35043. height: math.unit(200, "feet"),
  35044. default: true
  35045. },
  35046. {
  35047. name: "Pandemonium",
  35048. height: math.unit(1, "mile")
  35049. },
  35050. {
  35051. name: "Catastrophe",
  35052. height: math.unit(100, "miles")
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35058. {
  35059. front: {
  35060. height: math.unit(4.7, "meters"),
  35061. weight: math.unit(6500, "kg"),
  35062. name: "Front",
  35063. image: {
  35064. source: "./media/characters/vex/front.svg",
  35065. extra: 1288/1140,
  35066. bottom: 100/1388
  35067. }
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(4.7, "meters"),
  35074. default: true
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35080. {
  35081. normal: {
  35082. height: math.unit(6, "feet"),
  35083. weight: math.unit(350, "lb"),
  35084. name: "Normal",
  35085. image: {
  35086. source: "./media/characters/teshy/normal.svg",
  35087. extra: 1795/1735,
  35088. bottom: 16/1811
  35089. }
  35090. },
  35091. monsterFront: {
  35092. height: math.unit(12, "feet"),
  35093. weight: math.unit(4700, "lb"),
  35094. name: "Monster (Front)",
  35095. image: {
  35096. source: "./media/characters/teshy/monster-front.svg",
  35097. extra: 2042/2034,
  35098. bottom: 128/2170
  35099. }
  35100. },
  35101. monsterSide: {
  35102. height: math.unit(12, "feet"),
  35103. weight: math.unit(4700, "lb"),
  35104. name: "Monster (Side)",
  35105. image: {
  35106. source: "./media/characters/teshy/monster-side.svg",
  35107. extra: 2067/2056,
  35108. bottom: 70/2137
  35109. }
  35110. },
  35111. monsterBack: {
  35112. height: math.unit(12, "feet"),
  35113. weight: math.unit(4700, "lb"),
  35114. name: "Monster (Back)",
  35115. image: {
  35116. source: "./media/characters/teshy/monster-back.svg",
  35117. extra: 1921/1914,
  35118. bottom: 171/2092
  35119. }
  35120. },
  35121. },
  35122. [
  35123. {
  35124. name: "Normal",
  35125. height: math.unit(6, "feet"),
  35126. default: true
  35127. },
  35128. ]
  35129. ))
  35130. characterMakers.push(() => makeCharacter(
  35131. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35132. {
  35133. front: {
  35134. height: math.unit(6, "feet"),
  35135. name: "Front",
  35136. image: {
  35137. source: "./media/characters/ramey/front.svg",
  35138. extra: 790/787,
  35139. bottom: 27/817
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(6, "feet"),
  35147. default: true
  35148. },
  35149. ]
  35150. ))
  35151. characterMakers.push(() => makeCharacter(
  35152. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35153. {
  35154. front: {
  35155. height: math.unit(5 + 5/12, "feet"),
  35156. weight: math.unit(120, "lb"),
  35157. name: "Front",
  35158. image: {
  35159. source: "./media/characters/phirae/front.svg",
  35160. extra: 2491/2436,
  35161. bottom: 38/2529
  35162. }
  35163. },
  35164. },
  35165. [
  35166. {
  35167. name: "Normal",
  35168. height: math.unit(5 + 5/12, "feet"),
  35169. default: true
  35170. },
  35171. ]
  35172. ))
  35173. characterMakers.push(() => makeCharacter(
  35174. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35175. {
  35176. front: {
  35177. height: math.unit(5 + 3/12, "feet"),
  35178. name: "Front",
  35179. image: {
  35180. source: "./media/characters/stagglas/front.svg",
  35181. extra: 962/882,
  35182. bottom: 53/1015
  35183. }
  35184. },
  35185. feral: {
  35186. height: math.unit(335, "cm"),
  35187. name: "Feral",
  35188. image: {
  35189. source: "./media/characters/stagglas/feral.svg",
  35190. extra: 1732/1090,
  35191. bottom: 48/1780
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(5 + 3/12, "feet"),
  35199. default: true
  35200. },
  35201. ]
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35205. {
  35206. front: {
  35207. height: math.unit(5 + 4/12, "feet"),
  35208. weight: math.unit(145, "lb"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/starra/front.svg",
  35212. extra: 1790/1691,
  35213. bottom: 91/1881
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(5 + 4/12, "feet"),
  35221. default: true
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35227. {
  35228. front: {
  35229. height: math.unit(2.2, "meters"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35233. extra: 1194/1005,
  35234. bottom: 25/1219
  35235. }
  35236. },
  35237. },
  35238. [
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(2.2, "meters"),
  35242. default: true
  35243. },
  35244. ]
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35248. {
  35249. side: {
  35250. height: math.unit(8 + 2/12, "feet"),
  35251. weight: math.unit(1240, "lb"),
  35252. name: "Side",
  35253. image: {
  35254. source: "./media/characters/mika-valentine/side.svg",
  35255. extra: 2670/2501,
  35256. bottom: 250/2920
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(8 + 2/12, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(7 + 2/12, "feet"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/xoltol/front.svg",
  35276. extra: 2212/2124,
  35277. bottom: 84/2296
  35278. }
  35279. },
  35280. side: {
  35281. height: math.unit(7 + 2/12, "feet"),
  35282. name: "Side",
  35283. image: {
  35284. source: "./media/characters/xoltol/side.svg",
  35285. extra: 2273/2197,
  35286. bottom: 26/2299
  35287. }
  35288. },
  35289. hand: {
  35290. height: math.unit(2.5, "feet"),
  35291. name: "Hand",
  35292. image: {
  35293. source: "./media/characters/xoltol/hand.svg"
  35294. }
  35295. },
  35296. },
  35297. [
  35298. {
  35299. name: "Small-ish",
  35300. height: math.unit(5 + 11/12, "feet")
  35301. },
  35302. {
  35303. name: "Normal",
  35304. height: math.unit(7 + 2/12, "feet")
  35305. },
  35306. {
  35307. name: "\"Macro\"",
  35308. height: math.unit(14 + 9/12, "feet"),
  35309. default: true
  35310. },
  35311. {
  35312. name: "Alternate Height",
  35313. height: math.unit(20, "feet")
  35314. },
  35315. {
  35316. name: "Actually Macro",
  35317. height: math.unit(100, "feet")
  35318. },
  35319. ]
  35320. ))
  35321. characterMakers.push(() => makeCharacter(
  35322. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35323. {
  35324. front: {
  35325. height: math.unit(5 + 2/12, "feet"),
  35326. name: "Front",
  35327. image: {
  35328. source: "./media/characters/kotetsu-redwood/front.svg",
  35329. extra: 1053/942,
  35330. bottom: 60/1113
  35331. }
  35332. },
  35333. },
  35334. [
  35335. {
  35336. name: "Normal",
  35337. height: math.unit(5 + 2/12, "feet"),
  35338. default: true
  35339. },
  35340. ]
  35341. ))
  35342. characterMakers.push(() => makeCharacter(
  35343. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35344. {
  35345. front: {
  35346. height: math.unit(2.4, "meters"),
  35347. weight: math.unit(125, "kg"),
  35348. name: "Front",
  35349. image: {
  35350. source: "./media/characters/lilith/front.svg",
  35351. extra: 1590/1513,
  35352. bottom: 203/1793
  35353. }
  35354. },
  35355. },
  35356. [
  35357. {
  35358. name: "Humanoid",
  35359. height: math.unit(2.4, "meters")
  35360. },
  35361. {
  35362. name: "Normal",
  35363. height: math.unit(6, "meters"),
  35364. default: true
  35365. },
  35366. {
  35367. name: "Largest",
  35368. height: math.unit(55, "meters")
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(8 + 4/12, "feet"),
  35377. weight: math.unit(535, "lb"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/beh'kah-bolger/front.svg",
  35381. extra: 1660/1603,
  35382. bottom: 37/1697
  35383. }
  35384. },
  35385. },
  35386. [
  35387. {
  35388. name: "Normal",
  35389. height: math.unit(8 + 4/12, "feet"),
  35390. default: true
  35391. },
  35392. {
  35393. name: "Kaiju",
  35394. height: math.unit(250, "feet")
  35395. },
  35396. {
  35397. name: "Still Growing",
  35398. height: math.unit(10, "miles")
  35399. },
  35400. {
  35401. name: "Continental",
  35402. height: math.unit(5000, "miles")
  35403. },
  35404. {
  35405. name: "Final Form",
  35406. height: math.unit(2500000, "miles")
  35407. },
  35408. ]
  35409. ))
  35410. characterMakers.push(() => makeCharacter(
  35411. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35412. {
  35413. front: {
  35414. height: math.unit(7 + 2/12, "feet"),
  35415. weight: math.unit(230, "kg"),
  35416. name: "Front",
  35417. image: {
  35418. source: "./media/characters/tatyana-milewska/front.svg",
  35419. extra: 1199/1150,
  35420. bottom: 86/1285
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Normal",
  35427. height: math.unit(7 + 2/12, "feet"),
  35428. default: true
  35429. },
  35430. {
  35431. name: "Big",
  35432. height: math.unit(12, "feet")
  35433. },
  35434. {
  35435. name: "Minimacro",
  35436. height: math.unit(20, "feet")
  35437. },
  35438. {
  35439. name: "Macro",
  35440. height: math.unit(120, "feet")
  35441. },
  35442. ]
  35443. ))
  35444. characterMakers.push(() => makeCharacter(
  35445. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35446. {
  35447. front: {
  35448. height: math.unit(7 + 8/12, "feet"),
  35449. weight: math.unit(152, "kg"),
  35450. name: "Front",
  35451. image: {
  35452. source: "./media/characters/helen-arri/front.svg",
  35453. extra: 440/423,
  35454. bottom: 14/454
  35455. }
  35456. },
  35457. back: {
  35458. height: math.unit(7 + 8/12, "feet"),
  35459. weight: math.unit(152, "kg"),
  35460. name: "Back",
  35461. image: {
  35462. source: "./media/characters/helen-arri/back.svg",
  35463. extra: 443/426,
  35464. bottom: 8/451
  35465. }
  35466. },
  35467. },
  35468. [
  35469. {
  35470. name: "Normal",
  35471. height: math.unit(7 + 8/12, "feet"),
  35472. default: true
  35473. },
  35474. {
  35475. name: "Big",
  35476. height: math.unit(14, "feet")
  35477. },
  35478. {
  35479. name: "Minimacro",
  35480. height: math.unit(24, "feet")
  35481. },
  35482. {
  35483. name: "Macro",
  35484. height: math.unit(140, "feet")
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(6, "meters"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/ehanu-rehu/front.svg",
  35496. extra: 1800/1800,
  35497. bottom: 59/1859
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(6, "meters"),
  35505. default: true
  35506. },
  35507. ]
  35508. ))
  35509. characterMakers.push(() => makeCharacter(
  35510. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35511. {
  35512. front: {
  35513. height: math.unit(7 + 3/12, "feet"),
  35514. name: "Front",
  35515. image: {
  35516. source: "./media/characters/renholder/front.svg",
  35517. extra: 3096/2960,
  35518. bottom: 250/3346
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Normal Bat",
  35525. height: math.unit(7 + 3/12, "feet"),
  35526. default: true
  35527. },
  35528. {
  35529. name: "Slightly Tall Bat",
  35530. height: math.unit(100, "feet")
  35531. },
  35532. {
  35533. name: "Big Bat",
  35534. height: math.unit(1000, "feet")
  35535. },
  35536. {
  35537. name: "City-Sized Bat",
  35538. height: math.unit(200000, "feet")
  35539. },
  35540. {
  35541. name: "Bigger Bat",
  35542. height: math.unit(10000, "miles")
  35543. },
  35544. {
  35545. name: "Solar Sized Bat",
  35546. height: math.unit(100, "AU")
  35547. },
  35548. {
  35549. name: "Galactic Bat",
  35550. height: math.unit(200000, "lightyears")
  35551. },
  35552. {
  35553. name: "Universally Known Bat",
  35554. height: math.unit(1, "universe")
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35560. {
  35561. front: {
  35562. height: math.unit(6 + 11/12, "feet"),
  35563. weight: math.unit(250, "lb"),
  35564. name: "Front",
  35565. image: {
  35566. source: "./media/characters/cookiecat/front.svg",
  35567. extra: 893/827,
  35568. bottom: 14/907
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Micro",
  35575. height: math.unit(3, "inches")
  35576. },
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(6 + 11/12, "feet"),
  35580. default: true
  35581. },
  35582. {
  35583. name: "Macro",
  35584. height: math.unit(100, "feet")
  35585. },
  35586. {
  35587. name: "Macro+",
  35588. height: math.unit(404, "feet")
  35589. },
  35590. {
  35591. name: "Megamacro",
  35592. height: math.unit(165, "miles")
  35593. },
  35594. {
  35595. name: "Planetary",
  35596. height: math.unit(4600, "miles")
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35602. {
  35603. front: {
  35604. height: math.unit(10 + 3/12, "feet"),
  35605. weight: math.unit(1500, "lb"),
  35606. name: "Front",
  35607. image: {
  35608. source: "./media/characters/tux-kusanagi/front.svg",
  35609. extra: 944/840,
  35610. bottom: 39/983
  35611. }
  35612. },
  35613. back: {
  35614. height: math.unit(10 + 3/12, "feet"),
  35615. weight: math.unit(1500, "lb"),
  35616. name: "Back",
  35617. image: {
  35618. source: "./media/characters/tux-kusanagi/back.svg",
  35619. extra: 941/842,
  35620. bottom: 28/969
  35621. }
  35622. },
  35623. rump: {
  35624. height: math.unit(5.25, "feet"),
  35625. name: "Rump",
  35626. image: {
  35627. source: "./media/characters/tux-kusanagi/rump.svg"
  35628. }
  35629. },
  35630. beak: {
  35631. height: math.unit(1.54, "feet"),
  35632. name: "Beak",
  35633. image: {
  35634. source: "./media/characters/tux-kusanagi/beak.svg"
  35635. }
  35636. },
  35637. },
  35638. [
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(10 + 3/12, "feet"),
  35642. default: true
  35643. },
  35644. ]
  35645. ))
  35646. characterMakers.push(() => makeCharacter(
  35647. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35648. {
  35649. front: {
  35650. height: math.unit(58, "feet"),
  35651. weight: math.unit(200, "tons"),
  35652. name: "Front",
  35653. image: {
  35654. source: "./media/characters/uzarmazari/front.svg",
  35655. extra: 1575/1455,
  35656. bottom: 152/1727
  35657. }
  35658. },
  35659. back: {
  35660. height: math.unit(58, "feet"),
  35661. weight: math.unit(200, "tons"),
  35662. name: "Back",
  35663. image: {
  35664. source: "./media/characters/uzarmazari/back.svg",
  35665. extra: 1585/1510,
  35666. bottom: 157/1742
  35667. }
  35668. },
  35669. head: {
  35670. height: math.unit(26, "feet"),
  35671. name: "Head",
  35672. image: {
  35673. source: "./media/characters/uzarmazari/head.svg"
  35674. }
  35675. },
  35676. },
  35677. [
  35678. {
  35679. name: "Normal",
  35680. height: math.unit(58, "feet"),
  35681. default: true
  35682. },
  35683. ]
  35684. ))
  35685. characterMakers.push(() => makeCharacter(
  35686. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35687. {
  35688. side: {
  35689. height: math.unit(15, "feet"),
  35690. name: "Side",
  35691. image: {
  35692. source: "./media/characters/akitu/side.svg",
  35693. extra: 1421/1321,
  35694. bottom: 157/1578
  35695. }
  35696. },
  35697. front: {
  35698. height: math.unit(15, "feet"),
  35699. name: "Front",
  35700. image: {
  35701. source: "./media/characters/akitu/front.svg",
  35702. extra: 1435/1326,
  35703. bottom: 232/1667
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(15, "feet"),
  35711. default: true
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35717. {
  35718. front: {
  35719. height: math.unit(10 + 8/12, "feet"),
  35720. name: "Front",
  35721. image: {
  35722. source: "./media/characters/azalie-croixland/front.svg",
  35723. extra: 1972/1856,
  35724. bottom: 31/2003
  35725. }
  35726. },
  35727. },
  35728. [
  35729. {
  35730. name: "Original Height",
  35731. height: math.unit(5 + 4/12, "feet")
  35732. },
  35733. {
  35734. name: "Normal Height",
  35735. height: math.unit(10 + 8/12, "feet"),
  35736. default: true
  35737. },
  35738. ]
  35739. ))
  35740. characterMakers.push(() => makeCharacter(
  35741. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35742. {
  35743. side: {
  35744. height: math.unit(7 + 1/12, "feet"),
  35745. weight: math.unit(245, "lb"),
  35746. name: "Side",
  35747. image: {
  35748. source: "./media/characters/kavus-kazian/side.svg",
  35749. extra: 349/342,
  35750. bottom: 15/364
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(7 + 1/12, "feet"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35764. {
  35765. normalFront: {
  35766. height: math.unit(5 + 11/12, "feet"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/moonlight-rose/normal-front.svg",
  35770. extra: 1980/1825,
  35771. bottom: 18/1998
  35772. },
  35773. form: "normal",
  35774. default: true
  35775. },
  35776. normalBack: {
  35777. height: math.unit(5 + 11/12, "feet"),
  35778. name: "Back",
  35779. image: {
  35780. source: "./media/characters/moonlight-rose/normal-back.svg",
  35781. extra: 2010/1839,
  35782. bottom: 10/2020
  35783. },
  35784. form: "normal"
  35785. },
  35786. demonFront: {
  35787. height: math.unit(1.5, "earths"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/moonlight-rose/demon.svg",
  35791. extra: 1400/1294,
  35792. bottom: 45/1445
  35793. },
  35794. form: "demon",
  35795. default: true
  35796. },
  35797. terraFront: {
  35798. height: math.unit(1.5, "earths"),
  35799. name: "Front",
  35800. image: {
  35801. source: "./media/characters/moonlight-rose/terra.svg"
  35802. },
  35803. form: "terra",
  35804. default: true
  35805. },
  35806. jupiterFront: {
  35807. height: math.unit(69911*2, "km"),
  35808. name: "Front",
  35809. image: {
  35810. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35811. extra: 1367/1286,
  35812. bottom: 55/1422
  35813. },
  35814. form: "jupiter",
  35815. default: true
  35816. },
  35817. neptuneFront: {
  35818. height: math.unit(24622*2, "feet"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35822. extra: 1851/1712,
  35823. bottom: 0/1851
  35824. },
  35825. form: "neptune",
  35826. default: true
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "\"Natural\" Height",
  35832. height: math.unit(5 + 11/12, "feet"),
  35833. form: "normal"
  35834. },
  35835. {
  35836. name: "Smallest comfortable size",
  35837. height: math.unit(40, "meters"),
  35838. form: "normal"
  35839. },
  35840. {
  35841. name: "Common size",
  35842. height: math.unit(50, "km"),
  35843. form: "normal",
  35844. default: true
  35845. },
  35846. {
  35847. name: "Normal",
  35848. height: math.unit(1.5, "earths"),
  35849. form: "demon",
  35850. default: true
  35851. },
  35852. {
  35853. name: "Universal",
  35854. height: math.unit(15, "universes"),
  35855. form: "demon"
  35856. },
  35857. {
  35858. name: "Earth",
  35859. height: math.unit(1.5, "earths"),
  35860. form: "terra",
  35861. default: true
  35862. },
  35863. {
  35864. name: "Super Earth",
  35865. height: math.unit(67.5, "earths"),
  35866. form: "terra"
  35867. },
  35868. {
  35869. name: "Doesn't fit in a solar system...",
  35870. height: math.unit(1, "galaxy"),
  35871. form: "terra"
  35872. },
  35873. {
  35874. name: "Saturn",
  35875. height: math.unit(58232*2, "km"),
  35876. form: "jupiter"
  35877. },
  35878. {
  35879. name: "Jupiter",
  35880. height: math.unit(69911*2, "km"),
  35881. form: "jupiter",
  35882. default: true
  35883. },
  35884. {
  35885. name: "HD 100546 b",
  35886. height: math.unit(482938, "km"),
  35887. form: "jupiter"
  35888. },
  35889. {
  35890. name: "Enceladus",
  35891. height: math.unit(513*2, "km"),
  35892. form: "neptune"
  35893. },
  35894. {
  35895. name: "Europe",
  35896. height: math.unit(1560*2, "km"),
  35897. form: "neptune"
  35898. },
  35899. {
  35900. name: "Neptune",
  35901. height: math.unit(24622*2, "km"),
  35902. form: "neptune",
  35903. default: true
  35904. },
  35905. {
  35906. name: "CoRoT-9b",
  35907. height: math.unit(75067*2, "km"),
  35908. form: "neptune"
  35909. },
  35910. ],
  35911. {
  35912. "normal": {
  35913. name: "Normal",
  35914. default: true
  35915. },
  35916. "demon": {
  35917. name: "Demon"
  35918. },
  35919. "terra": {
  35920. name: "Terra"
  35921. },
  35922. "jupiter": {
  35923. name: "Jupiter"
  35924. },
  35925. "neptune": {
  35926. name: "Neptune"
  35927. }
  35928. }
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35932. {
  35933. front: {
  35934. height: math.unit(16, "feet"),
  35935. weight: math.unit(610, "kg"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/huckle/front.svg",
  35939. extra: 1731/1625,
  35940. bottom: 33/1764
  35941. }
  35942. },
  35943. back: {
  35944. height: math.unit(16, "feet"),
  35945. weight: math.unit(610, "kg"),
  35946. name: "Back",
  35947. image: {
  35948. source: "./media/characters/huckle/back.svg",
  35949. extra: 1738/1651,
  35950. bottom: 37/1775
  35951. }
  35952. },
  35953. laughing: {
  35954. height: math.unit(3.75, "feet"),
  35955. name: "Laughing",
  35956. image: {
  35957. source: "./media/characters/huckle/laughing.svg"
  35958. }
  35959. },
  35960. angry: {
  35961. height: math.unit(4.15, "feet"),
  35962. name: "Angry",
  35963. image: {
  35964. source: "./media/characters/huckle/angry.svg"
  35965. }
  35966. },
  35967. },
  35968. [
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(16, "feet"),
  35972. default: true
  35973. },
  35974. {
  35975. name: "Mini Macro",
  35976. height: math.unit(463, "feet")
  35977. },
  35978. {
  35979. name: "Macro",
  35980. height: math.unit(1680, "meters")
  35981. },
  35982. {
  35983. name: "Mega Macro",
  35984. height: math.unit(175, "km")
  35985. },
  35986. {
  35987. name: "Terra Macro",
  35988. height: math.unit(32, "gigameters")
  35989. },
  35990. {
  35991. name: "Multiverse+",
  35992. height: math.unit(2.56e23, "yottameters")
  35993. },
  35994. ]
  35995. ))
  35996. characterMakers.push(() => makeCharacter(
  35997. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35998. {
  35999. front: {
  36000. height: math.unit(6 + 9/12, "feet"),
  36001. weight: math.unit(280, "lb"),
  36002. name: "Front",
  36003. image: {
  36004. source: "./media/characters/candy/front.svg",
  36005. extra: 234/217,
  36006. bottom: 11/245
  36007. }
  36008. },
  36009. },
  36010. [
  36011. {
  36012. name: "Really Small",
  36013. height: math.unit(0.1, "nm")
  36014. },
  36015. {
  36016. name: "Micro",
  36017. height: math.unit(2, "inches")
  36018. },
  36019. {
  36020. name: "Normal",
  36021. height: math.unit(6 + 9/12, "feet"),
  36022. default: true
  36023. },
  36024. {
  36025. name: "Small Macro",
  36026. height: math.unit(69, "feet")
  36027. },
  36028. {
  36029. name: "Macro",
  36030. height: math.unit(160, "feet")
  36031. },
  36032. {
  36033. name: "Megamacro",
  36034. height: math.unit(22000, "miles")
  36035. },
  36036. {
  36037. name: "Gigamacro",
  36038. height: math.unit(50000, "miles")
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(4, "feet"),
  36047. weight: math.unit(90, "lb"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/joey-mcdonald/front.svg",
  36051. extra: 1059/852,
  36052. bottom: 33/1092
  36053. }
  36054. },
  36055. back: {
  36056. height: math.unit(4, "feet"),
  36057. weight: math.unit(90, "lb"),
  36058. name: "Back",
  36059. image: {
  36060. source: "./media/characters/joey-mcdonald/back.svg",
  36061. extra: 1077/879,
  36062. bottom: 5/1082
  36063. }
  36064. },
  36065. frontKobold: {
  36066. height: math.unit(4, "feet"),
  36067. weight: math.unit(100, "lb"),
  36068. name: "Front-kobold",
  36069. image: {
  36070. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36071. extra: 1480/1367,
  36072. bottom: 0/1480
  36073. }
  36074. },
  36075. backKobold: {
  36076. height: math.unit(4, "feet"),
  36077. weight: math.unit(100, "lb"),
  36078. name: "Back-kobold",
  36079. image: {
  36080. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36081. extra: 1449/1361,
  36082. bottom: 0/1449
  36083. }
  36084. },
  36085. },
  36086. [
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(4, "feet"),
  36090. default: true
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36096. {
  36097. front: {
  36098. height: math.unit(12 + 6/12, "feet"),
  36099. name: "Front",
  36100. image: {
  36101. source: "./media/characters/kass-lockheed/front.svg",
  36102. extra: 354/343,
  36103. bottom: 9/363
  36104. }
  36105. },
  36106. back: {
  36107. height: math.unit(12 + 6/12, "feet"),
  36108. name: "Back",
  36109. image: {
  36110. source: "./media/characters/kass-lockheed/back.svg",
  36111. extra: 364/352,
  36112. bottom: 3/367
  36113. }
  36114. },
  36115. dick: {
  36116. height: math.unit(3.12, "feet"),
  36117. name: "Dick",
  36118. image: {
  36119. source: "./media/characters/kass-lockheed/dick.svg"
  36120. }
  36121. },
  36122. head: {
  36123. height: math.unit(2.6, "feet"),
  36124. name: "Head",
  36125. image: {
  36126. source: "./media/characters/kass-lockheed/head.svg"
  36127. }
  36128. },
  36129. bleh: {
  36130. height: math.unit(2.85, "feet"),
  36131. name: "Bleh",
  36132. image: {
  36133. source: "./media/characters/kass-lockheed/bleh.svg"
  36134. }
  36135. },
  36136. smug: {
  36137. height: math.unit(2.85, "feet"),
  36138. name: "Smug",
  36139. image: {
  36140. source: "./media/characters/kass-lockheed/smug.svg"
  36141. }
  36142. },
  36143. },
  36144. [
  36145. {
  36146. name: "Normal",
  36147. height: math.unit(12 + 6/12, "feet"),
  36148. default: true
  36149. },
  36150. ]
  36151. ))
  36152. characterMakers.push(() => makeCharacter(
  36153. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36154. {
  36155. front: {
  36156. height: math.unit(6 + 2/12, "feet"),
  36157. name: "Front",
  36158. image: {
  36159. source: "./media/characters/taylor/front.svg",
  36160. extra: 639/495,
  36161. bottom: 12/651
  36162. }
  36163. },
  36164. },
  36165. [
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(6 + 2/12, "feet"),
  36169. default: true
  36170. },
  36171. {
  36172. name: "Big",
  36173. height: math.unit(15, "feet")
  36174. },
  36175. {
  36176. name: "Lorg",
  36177. height: math.unit(80, "feet")
  36178. },
  36179. {
  36180. name: "Too Lorg",
  36181. height: math.unit(120, "feet")
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(15, "feet"),
  36190. name: "Front",
  36191. image: {
  36192. source: "./media/characters/kaizer/front.svg",
  36193. extra: 1612/1436,
  36194. bottom: 43/1655
  36195. }
  36196. },
  36197. },
  36198. [
  36199. {
  36200. name: "Normal",
  36201. height: math.unit(15, "feet"),
  36202. default: true
  36203. },
  36204. ]
  36205. ))
  36206. characterMakers.push(() => makeCharacter(
  36207. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36208. {
  36209. front: {
  36210. height: math.unit(2, "feet"),
  36211. weight: math.unit(30, "lb"),
  36212. name: "Front",
  36213. image: {
  36214. source: "./media/characters/sandy/front.svg",
  36215. extra: 1439/1307,
  36216. bottom: 194/1633
  36217. }
  36218. },
  36219. },
  36220. [
  36221. {
  36222. name: "Normal",
  36223. height: math.unit(2, "feet"),
  36224. default: true
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36230. {
  36231. front: {
  36232. height: math.unit(3, "feet"),
  36233. name: "Front",
  36234. image: {
  36235. source: "./media/characters/mellvi/front.svg",
  36236. extra: 1831/1630,
  36237. bottom: 58/1889
  36238. }
  36239. },
  36240. },
  36241. [
  36242. {
  36243. name: "Normal",
  36244. height: math.unit(3, "feet"),
  36245. default: true
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36251. {
  36252. front: {
  36253. height: math.unit(5 + 11/12, "feet"),
  36254. weight: math.unit(200, "lb"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/shirou/front.svg",
  36258. extra: 2491/2383,
  36259. bottom: 189/2680
  36260. }
  36261. },
  36262. back: {
  36263. height: math.unit(5 + 11/12, "feet"),
  36264. weight: math.unit(200, "lb"),
  36265. name: "Back",
  36266. image: {
  36267. source: "./media/characters/shirou/back.svg",
  36268. extra: 2554/2450,
  36269. bottom: 76/2630
  36270. }
  36271. },
  36272. },
  36273. [
  36274. {
  36275. name: "Normal",
  36276. height: math.unit(5 + 11/12, "feet"),
  36277. default: true
  36278. },
  36279. ]
  36280. ))
  36281. characterMakers.push(() => makeCharacter(
  36282. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36283. {
  36284. front: {
  36285. height: math.unit(6 + 3/12, "feet"),
  36286. weight: math.unit(177, "lb"),
  36287. name: "Front",
  36288. image: {
  36289. source: "./media/characters/noryu/front.svg",
  36290. extra: 973/885,
  36291. bottom: 10/983
  36292. }
  36293. },
  36294. },
  36295. [
  36296. {
  36297. name: "Normal",
  36298. height: math.unit(6 + 3/12, "feet"),
  36299. default: true
  36300. },
  36301. ]
  36302. ))
  36303. characterMakers.push(() => makeCharacter(
  36304. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36305. {
  36306. front: {
  36307. height: math.unit(5 + 6/12, "feet"),
  36308. weight: math.unit(170, "lb"),
  36309. name: "Front",
  36310. image: {
  36311. source: "./media/characters/mevolas-rubenido/front.svg",
  36312. extra: 2109/1901,
  36313. bottom: 96/2205
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Normal",
  36320. height: math.unit(5 + 6/12, "feet"),
  36321. default: true
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36327. {
  36328. front: {
  36329. height: math.unit(100, "feet"),
  36330. name: "Front",
  36331. image: {
  36332. source: "./media/characters/dee/front.svg",
  36333. extra: 2153/2036,
  36334. bottom: 59/2212
  36335. }
  36336. },
  36337. back: {
  36338. height: math.unit(100, "feet"),
  36339. name: "Back",
  36340. image: {
  36341. source: "./media/characters/dee/back.svg",
  36342. extra: 2183/2058,
  36343. bottom: 75/2258
  36344. }
  36345. },
  36346. foot: {
  36347. height: math.unit(19.43, "feet"),
  36348. name: "Foot",
  36349. image: {
  36350. source: "./media/characters/dee/foot.svg"
  36351. }
  36352. },
  36353. hoof: {
  36354. height: math.unit(20.6, "feet"),
  36355. name: "Hoof",
  36356. image: {
  36357. source: "./media/characters/dee/hoof.svg"
  36358. }
  36359. },
  36360. },
  36361. [
  36362. {
  36363. name: "Macro",
  36364. height: math.unit(100, "feet"),
  36365. default: true
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36371. {
  36372. front: {
  36373. height: math.unit(5 + 6/12, "feet"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/teh/front.svg",
  36377. extra: 1002/847,
  36378. bottom: 62/1064
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(5 + 6/12, "feet"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36392. {
  36393. side: {
  36394. height: math.unit(6 + 1/12, "feet"),
  36395. weight: math.unit(204, "lb"),
  36396. name: "Side",
  36397. image: {
  36398. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36399. extra: 974/775,
  36400. bottom: 169/1143
  36401. }
  36402. },
  36403. sitting: {
  36404. height: math.unit(6 + 2/12, "feet"),
  36405. weight: math.unit(204, "lb"),
  36406. name: "Sitting",
  36407. image: {
  36408. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36409. extra: 1175/964,
  36410. bottom: 378/1553
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(6 + 1/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(6, "inches"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/tululi/front.svg",
  36430. extra: 1997/1876,
  36431. bottom: 20/2017
  36432. }
  36433. },
  36434. },
  36435. [
  36436. {
  36437. name: "Normal",
  36438. height: math.unit(6, "inches"),
  36439. default: true
  36440. },
  36441. ]
  36442. ))
  36443. characterMakers.push(() => makeCharacter(
  36444. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36445. {
  36446. front: {
  36447. height: math.unit(4 + 1/12, "feet"),
  36448. name: "Front",
  36449. image: {
  36450. source: "./media/characters/star/front.svg",
  36451. extra: 1493/1189,
  36452. bottom: 48/1541
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(4 + 1/12, "feet"),
  36460. default: true
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36466. {
  36467. front: {
  36468. height: math.unit(6 + 3/12, "feet"),
  36469. name: "Front",
  36470. image: {
  36471. source: "./media/characters/comet/front.svg",
  36472. extra: 1681/1462,
  36473. bottom: 26/1707
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Normal",
  36480. height: math.unit(6 + 3/12, "feet"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(950, "feet"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/vortex/front.svg",
  36493. extra: 1497/1434,
  36494. bottom: 56/1553
  36495. }
  36496. },
  36497. maw: {
  36498. height: math.unit(285, "feet"),
  36499. name: "Maw",
  36500. image: {
  36501. source: "./media/characters/vortex/maw.svg"
  36502. }
  36503. },
  36504. },
  36505. [
  36506. {
  36507. name: "Macro",
  36508. height: math.unit(950, "feet"),
  36509. default: true
  36510. },
  36511. ]
  36512. ))
  36513. characterMakers.push(() => makeCharacter(
  36514. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36515. {
  36516. front: {
  36517. height: math.unit(600, "feet"),
  36518. weight: math.unit(0.02, "grams"),
  36519. name: "Front",
  36520. image: {
  36521. source: "./media/characters/doodle/front.svg",
  36522. extra: 1578/1413,
  36523. bottom: 37/1615
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Macro",
  36530. height: math.unit(600, "feet"),
  36531. default: true
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(6 + 6/12, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/jai/front.svg",
  36543. extra: 1645/1534,
  36544. bottom: 115/1760
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(6 + 6/12, "feet"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36558. {
  36559. front: {
  36560. height: math.unit(6 + 8/12, "feet"),
  36561. name: "Front",
  36562. image: {
  36563. source: "./media/characters/pixel/front.svg",
  36564. extra: 1900/1735,
  36565. bottom: 63/1963
  36566. }
  36567. },
  36568. },
  36569. [
  36570. {
  36571. name: "Normal",
  36572. height: math.unit(6 + 8/12, "feet"),
  36573. default: true
  36574. },
  36575. ]
  36576. ))
  36577. characterMakers.push(() => makeCharacter(
  36578. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36579. {
  36580. back: {
  36581. height: math.unit(4 + 1/12, "feet"),
  36582. weight: math.unit(75, "lb"),
  36583. name: "Back",
  36584. image: {
  36585. source: "./media/characters/rhett/back.svg",
  36586. extra: 930/878,
  36587. bottom: 25/955
  36588. }
  36589. },
  36590. front: {
  36591. height: math.unit(4 + 1/12, "feet"),
  36592. weight: math.unit(75, "lb"),
  36593. name: "Front",
  36594. image: {
  36595. source: "./media/characters/rhett/front.svg",
  36596. extra: 1682/1586,
  36597. bottom: 92/1774
  36598. }
  36599. },
  36600. },
  36601. [
  36602. {
  36603. name: "Micro",
  36604. height: math.unit(8, "inches")
  36605. },
  36606. {
  36607. name: "Tiny",
  36608. height: math.unit(2, "feet")
  36609. },
  36610. {
  36611. name: "Normal",
  36612. height: math.unit(4 + 1/12, "feet"),
  36613. default: true
  36614. },
  36615. ]
  36616. ))
  36617. characterMakers.push(() => makeCharacter(
  36618. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36619. {
  36620. front: {
  36621. height: math.unit(3 + 3/12, "feet"),
  36622. name: "Front",
  36623. image: {
  36624. source: "./media/characters/penny/front.svg",
  36625. extra: 1406/1311,
  36626. bottom: 26/1432
  36627. }
  36628. },
  36629. },
  36630. [
  36631. {
  36632. name: "Normal",
  36633. height: math.unit(3 + 3/12, "feet"),
  36634. default: true
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(4 + 11/12, "feet"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/monty/front.svg",
  36646. extra: 1479/1209,
  36647. bottom: 0/1479
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Normal",
  36654. height: math.unit(4 + 11/12, "feet"),
  36655. default: true
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(8 + 4/12, "feet"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/sterling/front.svg",
  36667. extra: 1420/1236,
  36668. bottom: 27/1447
  36669. }
  36670. },
  36671. },
  36672. [
  36673. {
  36674. name: "Normal",
  36675. height: math.unit(8 + 4/12, "feet"),
  36676. default: true
  36677. },
  36678. ]
  36679. ))
  36680. characterMakers.push(() => makeCharacter(
  36681. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36682. {
  36683. front: {
  36684. height: math.unit(15, "feet"),
  36685. name: "Front",
  36686. image: {
  36687. source: "./media/characters/marble/front.svg",
  36688. extra: 973/937,
  36689. bottom: 32/1005
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(15, "feet"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36703. {
  36704. front: {
  36705. height: math.unit(3, "inches"),
  36706. name: "Front",
  36707. image: {
  36708. source: "./media/characters/powder/front.svg",
  36709. extra: 1504/1334,
  36710. bottom: 518/2022
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(3, "inches"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(4 + 5/12, "feet"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/joey-raccoon/front.svg",
  36730. extra: 1273/1197,
  36731. bottom: 0/1273
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Normal",
  36738. height: math.unit(4 + 5/12, "feet"),
  36739. default: true
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(8 + 4/12, "feet"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/vick/front.svg",
  36751. extra: 2187/2118,
  36752. bottom: 47/2234
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(8 + 4/12, "feet"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(5 + 5/12, "feet"),
  36769. name: "Front",
  36770. image: {
  36771. source: "./media/characters/mitsy/front.svg",
  36772. extra: 1842/1695,
  36773. bottom: 0/1842
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(5 + 5/12, "feet"),
  36781. default: true
  36782. },
  36783. ]
  36784. ))
  36785. characterMakers.push(() => makeCharacter(
  36786. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36787. {
  36788. front: {
  36789. height: math.unit(6 + 3/12, "feet"),
  36790. name: "Front",
  36791. image: {
  36792. source: "./media/characters/silvy/front.svg",
  36793. extra: 1995/1836,
  36794. bottom: 225/2220
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(6 + 3/12, "feet"),
  36802. default: true
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(3 + 8/12, "feet"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/rodney/front.svg",
  36814. extra: 1956/1747,
  36815. bottom: 31/1987
  36816. }
  36817. },
  36818. frontDressed: {
  36819. height: math.unit(2.9, "feet"),
  36820. name: "Front (Dressed)",
  36821. image: {
  36822. source: "./media/characters/rodney/front-dressed.svg",
  36823. extra: 1382/1241,
  36824. bottom: 385/1767
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(3 + 8/12, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(5 + 9/12, "feet"),
  36841. weight: math.unit(194, "lbs"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/zakail-sudekai/front.svg",
  36845. extra: 2696/2533,
  36846. bottom: 248/2944
  36847. }
  36848. },
  36849. maw: {
  36850. height: math.unit(1.35, "feet"),
  36851. name: "Maw",
  36852. image: {
  36853. source: "./media/characters/zakail-sudekai/maw.svg"
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Normal",
  36860. height: math.unit(5 + 9/12, "feet"),
  36861. default: true
  36862. },
  36863. ]
  36864. ))
  36865. characterMakers.push(() => makeCharacter(
  36866. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36867. {
  36868. front: {
  36869. height: math.unit(8 + 4/12, "feet"),
  36870. weight: math.unit(1200, "lb"),
  36871. name: "Front",
  36872. image: {
  36873. source: "./media/characters/eleanor/front.svg",
  36874. extra: 1226/1192,
  36875. bottom: 52/1278
  36876. }
  36877. },
  36878. back: {
  36879. height: math.unit(8 + 4/12, "feet"),
  36880. weight: math.unit(1200, "lb"),
  36881. name: "Back",
  36882. image: {
  36883. source: "./media/characters/eleanor/back.svg",
  36884. extra: 1242/1184,
  36885. bottom: 60/1302
  36886. }
  36887. },
  36888. head: {
  36889. height: math.unit(2.62, "feet"),
  36890. name: "Head",
  36891. image: {
  36892. source: "./media/characters/eleanor/head.svg"
  36893. }
  36894. },
  36895. },
  36896. [
  36897. {
  36898. name: "Normal",
  36899. height: math.unit(8 + 4/12, "feet"),
  36900. default: true
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36906. {
  36907. front: {
  36908. height: math.unit(8 + 4/12, "feet"),
  36909. weight: math.unit(750, "lb"),
  36910. name: "Front",
  36911. image: {
  36912. source: "./media/characters/tanya/front.svg",
  36913. extra: 1749/1615,
  36914. bottom: 33/1782
  36915. }
  36916. },
  36917. },
  36918. [
  36919. {
  36920. name: "Normal",
  36921. height: math.unit(8 + 4/12, "feet"),
  36922. default: true
  36923. },
  36924. ]
  36925. ))
  36926. characterMakers.push(() => makeCharacter(
  36927. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36928. {
  36929. front: {
  36930. height: math.unit(5, "feet"),
  36931. weight: math.unit(225, "lb"),
  36932. name: "Front",
  36933. image: {
  36934. source: "./media/characters/cindy/front.svg",
  36935. extra: 1320/1250,
  36936. bottom: 42/1362
  36937. }
  36938. },
  36939. frontDressed: {
  36940. height: math.unit(5, "feet"),
  36941. weight: math.unit(225, "lb"),
  36942. name: "Front (Dressed)",
  36943. image: {
  36944. source: "./media/characters/cindy/front-dressed.svg",
  36945. extra: 1320/1250,
  36946. bottom: 42/1362
  36947. }
  36948. },
  36949. back: {
  36950. height: math.unit(5, "feet"),
  36951. weight: math.unit(225, "lb"),
  36952. name: "Back",
  36953. image: {
  36954. source: "./media/characters/cindy/back.svg",
  36955. extra: 1384/1346,
  36956. bottom: 14/1398
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Normal",
  36963. height: math.unit(5, "feet"),
  36964. default: true
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36970. {
  36971. front: {
  36972. height: math.unit(6 + 9/12, "feet"),
  36973. weight: math.unit(440, "lb"),
  36974. name: "Front",
  36975. image: {
  36976. source: "./media/characters/wilbur-owen/front.svg",
  36977. extra: 1575/1448,
  36978. bottom: 72/1647
  36979. }
  36980. },
  36981. back: {
  36982. height: math.unit(6 + 9/12, "feet"),
  36983. weight: math.unit(440, "lb"),
  36984. name: "Back",
  36985. image: {
  36986. source: "./media/characters/wilbur-owen/back.svg",
  36987. extra: 1578/1445,
  36988. bottom: 36/1614
  36989. }
  36990. },
  36991. },
  36992. [
  36993. {
  36994. name: "Normal",
  36995. height: math.unit(6 + 9/12, "feet"),
  36996. default: true
  36997. },
  36998. ]
  36999. ))
  37000. characterMakers.push(() => makeCharacter(
  37001. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37002. {
  37003. front: {
  37004. height: math.unit(6 + 5/12, "feet"),
  37005. weight: math.unit(650, "lb"),
  37006. name: "Front",
  37007. image: {
  37008. source: "./media/characters/keegan/front.svg",
  37009. extra: 2387/2198,
  37010. bottom: 33/2420
  37011. }
  37012. },
  37013. side: {
  37014. height: math.unit(6 + 5/12, "feet"),
  37015. weight: math.unit(650, "lb"),
  37016. name: "Side",
  37017. image: {
  37018. source: "./media/characters/keegan/side.svg",
  37019. extra: 2390/2202,
  37020. bottom: 47/2437
  37021. }
  37022. },
  37023. back: {
  37024. height: math.unit(6 + 5/12, "feet"),
  37025. weight: math.unit(650, "lb"),
  37026. name: "Back",
  37027. image: {
  37028. source: "./media/characters/keegan/back.svg",
  37029. extra: 2418/2268,
  37030. bottom: 15/2433
  37031. }
  37032. },
  37033. frontSfw: {
  37034. height: math.unit(6 + 5/12, "feet"),
  37035. weight: math.unit(650, "lb"),
  37036. name: "Front (SFW)",
  37037. image: {
  37038. source: "./media/characters/keegan/front-sfw.svg",
  37039. extra: 2387/2198,
  37040. bottom: 33/2420
  37041. }
  37042. },
  37043. beans: {
  37044. height: math.unit(1.85, "feet"),
  37045. name: "Beans",
  37046. image: {
  37047. source: "./media/characters/keegan/beans.svg"
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(6 + 5/12, "feet"),
  37055. default: true
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37061. {
  37062. front: {
  37063. height: math.unit(9, "feet"),
  37064. name: "Front",
  37065. image: {
  37066. source: "./media/characters/colton/front.svg",
  37067. extra: 1589/1326,
  37068. bottom: 139/1728
  37069. }
  37070. },
  37071. },
  37072. [
  37073. {
  37074. name: "Normal",
  37075. height: math.unit(9, "feet"),
  37076. default: true
  37077. },
  37078. ]
  37079. ))
  37080. characterMakers.push(() => makeCharacter(
  37081. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37082. {
  37083. front: {
  37084. height: math.unit(2 + 9/12, "feet"),
  37085. name: "Front",
  37086. image: {
  37087. source: "./media/characters/bora/front.svg",
  37088. extra: 1265/1250,
  37089. bottom: 24/1289
  37090. }
  37091. },
  37092. },
  37093. [
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(2 + 9/12, "feet"),
  37097. default: true
  37098. },
  37099. ]
  37100. ))
  37101. characterMakers.push(() => makeCharacter(
  37102. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37103. {
  37104. front: {
  37105. height: math.unit(8, "feet"),
  37106. name: "Front",
  37107. image: {
  37108. source: "./media/characters/myu-myu/front.svg",
  37109. extra: 1949/1857,
  37110. bottom: 90/2039
  37111. }
  37112. },
  37113. },
  37114. [
  37115. {
  37116. name: "Normal",
  37117. height: math.unit(8, "feet"),
  37118. default: true
  37119. },
  37120. {
  37121. name: "Big",
  37122. height: math.unit(15, "feet")
  37123. },
  37124. {
  37125. name: "BIG",
  37126. height: math.unit(25, "feet")
  37127. },
  37128. ]
  37129. ))
  37130. characterMakers.push(() => makeCharacter(
  37131. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37132. {
  37133. side: {
  37134. height: math.unit(7 + 5/12, "feet"),
  37135. weight: math.unit(2800, "lb"),
  37136. name: "Side",
  37137. image: {
  37138. source: "./media/characters/haloren/side.svg",
  37139. extra: 1793/409,
  37140. bottom: 59/1852
  37141. }
  37142. },
  37143. frontPaw: {
  37144. height: math.unit(2.36, "feet"),
  37145. name: "Front paw",
  37146. image: {
  37147. source: "./media/characters/haloren/front-paw.svg"
  37148. }
  37149. },
  37150. hindPaw: {
  37151. height: math.unit(3.18, "feet"),
  37152. name: "Hind paw",
  37153. image: {
  37154. source: "./media/characters/haloren/hind-paw.svg"
  37155. }
  37156. },
  37157. maw: {
  37158. height: math.unit(5.05, "feet"),
  37159. name: "Maw",
  37160. image: {
  37161. source: "./media/characters/haloren/maw.svg"
  37162. }
  37163. },
  37164. dick: {
  37165. height: math.unit(2.90, "feet"),
  37166. name: "Dick",
  37167. image: {
  37168. source: "./media/characters/haloren/dick.svg"
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(7 + 5/12, "feet"),
  37176. default: true
  37177. },
  37178. {
  37179. name: "Enhanced",
  37180. height: math.unit(14 + 3/12, "feet")
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(171, "cm"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/kimmy/front.svg",
  37192. extra: 1491/1435,
  37193. bottom: 53/1544
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Small",
  37200. height: math.unit(9, "cm")
  37201. },
  37202. {
  37203. name: "Normal",
  37204. height: math.unit(171, "cm"),
  37205. default: true
  37206. },
  37207. ]
  37208. ))
  37209. characterMakers.push(() => makeCharacter(
  37210. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37211. {
  37212. front: {
  37213. height: math.unit(8, "feet"),
  37214. weight: math.unit(300, "lb"),
  37215. name: "Front",
  37216. image: {
  37217. source: "./media/characters/galeboomer/front.svg",
  37218. extra: 4651/4415,
  37219. bottom: 162/4813
  37220. }
  37221. },
  37222. back: {
  37223. height: math.unit(8, "feet"),
  37224. weight: math.unit(300, "lb"),
  37225. name: "Back",
  37226. image: {
  37227. source: "./media/characters/galeboomer/back.svg",
  37228. extra: 4544/4314,
  37229. bottom: 16/4560
  37230. }
  37231. },
  37232. frontAlt: {
  37233. height: math.unit(8, "feet"),
  37234. weight: math.unit(300, "lb"),
  37235. name: "Front (Alt)",
  37236. image: {
  37237. source: "./media/characters/galeboomer/front-alt.svg",
  37238. extra: 4458/4228,
  37239. bottom: 68/4526
  37240. }
  37241. },
  37242. maw: {
  37243. height: math.unit(1.2, "feet"),
  37244. name: "Maw",
  37245. image: {
  37246. source: "./media/characters/galeboomer/maw.svg"
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(8, "feet"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(5 + 9/12, "feet"),
  37263. weight: math.unit(120, "lb"),
  37264. name: "Front",
  37265. image: {
  37266. source: "./media/characters/chyr/front.svg",
  37267. extra: 1323/1254,
  37268. bottom: 63/1386
  37269. }
  37270. },
  37271. back: {
  37272. height: math.unit(5 + 9/12, "feet"),
  37273. weight: math.unit(120, "lb"),
  37274. name: "Back",
  37275. image: {
  37276. source: "./media/characters/chyr/back.svg",
  37277. extra: 1323/1252,
  37278. bottom: 48/1371
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(5 + 9/12, "feet"),
  37286. default: true
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37292. {
  37293. front: {
  37294. height: math.unit(7, "feet"),
  37295. weight: math.unit(310, "lb"),
  37296. name: "Front",
  37297. image: {
  37298. source: "./media/characters/solarus/front.svg",
  37299. extra: 2415/2021,
  37300. bottom: 103/2518
  37301. }
  37302. },
  37303. back: {
  37304. height: math.unit(7, "feet"),
  37305. weight: math.unit(310, "lb"),
  37306. name: "Back",
  37307. image: {
  37308. source: "./media/characters/solarus/back.svg",
  37309. extra: 2463/2089,
  37310. bottom: 79/2542
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(7, "feet"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37324. {
  37325. front: {
  37326. height: math.unit(16, "feet"),
  37327. name: "Front",
  37328. image: {
  37329. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37330. extra: 1844/1780,
  37331. bottom: 58/1902
  37332. }
  37333. },
  37334. winterCoat: {
  37335. height: math.unit(16, "feet"),
  37336. name: "Winter Coat",
  37337. image: {
  37338. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37339. extra: 1807/1775,
  37340. bottom: 69/1876
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Normal",
  37347. height: math.unit(16, "feet"),
  37348. default: true
  37349. },
  37350. {
  37351. name: "Chicago Size",
  37352. height: math.unit(560, "feet")
  37353. },
  37354. ]
  37355. ))
  37356. characterMakers.push(() => makeCharacter(
  37357. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37358. {
  37359. front: {
  37360. height: math.unit(11 + 6/12, "feet"),
  37361. weight: math.unit(1366, "lb"),
  37362. name: "Front",
  37363. image: {
  37364. source: "./media/characters/lexor/front.svg",
  37365. extra: 1560/1481,
  37366. bottom: 211/1771
  37367. }
  37368. },
  37369. back: {
  37370. height: math.unit(11 + 6/12, "feet"),
  37371. weight: math.unit(1366, "lb"),
  37372. name: "Back",
  37373. image: {
  37374. source: "./media/characters/lexor/back.svg",
  37375. extra: 1614/1533,
  37376. bottom: 76/1690
  37377. }
  37378. },
  37379. maw: {
  37380. height: math.unit(3, "feet"),
  37381. name: "Maw",
  37382. image: {
  37383. source: "./media/characters/lexor/maw.svg"
  37384. }
  37385. },
  37386. dick: {
  37387. height: math.unit(2.59, "feet"),
  37388. name: "Dick",
  37389. image: {
  37390. source: "./media/characters/lexor/dick.svg"
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(11 + 6/12, "feet"),
  37398. default: true
  37399. },
  37400. ]
  37401. ))
  37402. characterMakers.push(() => makeCharacter(
  37403. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37404. {
  37405. front: {
  37406. height: math.unit(5 + 8/12, "feet"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/magnum/front.svg",
  37410. extra: 942/855,
  37411. bottom: 26/968
  37412. }
  37413. },
  37414. },
  37415. [
  37416. {
  37417. name: "Normal",
  37418. height: math.unit(5 + 8/12, "feet"),
  37419. default: true
  37420. },
  37421. ]
  37422. ))
  37423. characterMakers.push(() => makeCharacter(
  37424. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37425. {
  37426. front: {
  37427. height: math.unit(18 + 4/12, "feet"),
  37428. weight: math.unit(1500, "kg"),
  37429. name: "Front",
  37430. image: {
  37431. source: "./media/characters/solas-sharpsman/front.svg",
  37432. extra: 1698/1589,
  37433. bottom: 0/1698
  37434. }
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "Normal",
  37440. height: math.unit(18 + 4/12, "feet"),
  37441. default: true
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37447. {
  37448. front: {
  37449. height: math.unit(5 + 5/12, "feet"),
  37450. weight: math.unit(180, "lb"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/october/front.svg",
  37454. extra: 1800/1650,
  37455. bottom: 0/1800
  37456. }
  37457. },
  37458. frontNsfw: {
  37459. height: math.unit(5 + 5/12, "feet"),
  37460. weight: math.unit(180, "lb"),
  37461. name: "Front (NSFW)",
  37462. image: {
  37463. source: "./media/characters/october/front-nsfw.svg",
  37464. extra: 1392/1307,
  37465. bottom: 42/1434
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(5 + 5/12, "feet"),
  37473. default: true
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(8 + 6/12, "feet"),
  37482. name: "Front",
  37483. image: {
  37484. source: "./media/characters/essynkardi/front.svg",
  37485. extra: 1914/1846,
  37486. bottom: 22/1936
  37487. }
  37488. },
  37489. },
  37490. [
  37491. {
  37492. name: "Normal",
  37493. height: math.unit(8 + 6/12, "feet"),
  37494. default: true
  37495. },
  37496. ]
  37497. ))
  37498. characterMakers.push(() => makeCharacter(
  37499. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37500. {
  37501. front: {
  37502. height: math.unit(6 + 6/12, "feet"),
  37503. weight: math.unit(7, "lb"),
  37504. name: "Front",
  37505. image: {
  37506. source: "./media/characters/icky/front.svg",
  37507. extra: 813/782,
  37508. bottom: 66/879
  37509. }
  37510. },
  37511. back: {
  37512. height: math.unit(6 + 6/12, "feet"),
  37513. weight: math.unit(7, "lb"),
  37514. name: "Back",
  37515. image: {
  37516. source: "./media/characters/icky/back.svg",
  37517. extra: 754/735,
  37518. bottom: 56/810
  37519. }
  37520. },
  37521. },
  37522. [
  37523. {
  37524. name: "Normal",
  37525. height: math.unit(6 + 6/12, "feet"),
  37526. default: true
  37527. },
  37528. ]
  37529. ))
  37530. characterMakers.push(() => makeCharacter(
  37531. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37532. {
  37533. front: {
  37534. height: math.unit(15, "feet"),
  37535. name: "Front",
  37536. image: {
  37537. source: "./media/characters/rojas/front.svg",
  37538. extra: 1462/1408,
  37539. bottom: 95/1557
  37540. }
  37541. },
  37542. back: {
  37543. height: math.unit(15, "feet"),
  37544. name: "Back",
  37545. image: {
  37546. source: "./media/characters/rojas/back.svg",
  37547. extra: 1023/954,
  37548. bottom: 28/1051
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(15, "feet"),
  37556. default: true
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37562. {
  37563. frontHuman: {
  37564. height: math.unit(5 + 7/12, "feet"),
  37565. name: "Front (Human)",
  37566. image: {
  37567. source: "./media/characters/alek-dryagan/front-human.svg",
  37568. extra: 1687/1667,
  37569. bottom: 69/1756
  37570. }
  37571. },
  37572. backHuman: {
  37573. height: math.unit(5 + 7/12, "feet"),
  37574. name: "Back (Human)",
  37575. image: {
  37576. source: "./media/characters/alek-dryagan/back-human.svg",
  37577. extra: 1670/1649,
  37578. bottom: 65/1735
  37579. }
  37580. },
  37581. frontDemi: {
  37582. height: math.unit(65, "feet"),
  37583. name: "Front (Demi)",
  37584. image: {
  37585. source: "./media/characters/alek-dryagan/front-demi.svg",
  37586. extra: 1669/1642,
  37587. bottom: 49/1718
  37588. }
  37589. },
  37590. backDemi: {
  37591. height: math.unit(65, "feet"),
  37592. name: "Back (Demi)",
  37593. image: {
  37594. source: "./media/characters/alek-dryagan/back-demi.svg",
  37595. extra: 1658/1637,
  37596. bottom: 40/1698
  37597. }
  37598. },
  37599. mawHuman: {
  37600. height: math.unit(0.3, "feet"),
  37601. name: "Maw (Human)",
  37602. image: {
  37603. source: "./media/characters/alek-dryagan/maw-human.svg"
  37604. }
  37605. },
  37606. mawDemi: {
  37607. height: math.unit(3.8, "feet"),
  37608. name: "Maw (Demi)",
  37609. image: {
  37610. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37611. }
  37612. },
  37613. },
  37614. [
  37615. {
  37616. name: "Normal",
  37617. height: math.unit(5 + 7/12, "feet"),
  37618. default: true
  37619. },
  37620. ]
  37621. ))
  37622. characterMakers.push(() => makeCharacter(
  37623. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37624. {
  37625. frontHuman: {
  37626. height: math.unit(5 + 2/12, "feet"),
  37627. name: "Front (Human)",
  37628. image: {
  37629. source: "./media/characters/gen/front-human.svg",
  37630. extra: 1627/1538,
  37631. bottom: 71/1698
  37632. }
  37633. },
  37634. backHuman: {
  37635. height: math.unit(5 + 2/12, "feet"),
  37636. name: "Back (Human)",
  37637. image: {
  37638. source: "./media/characters/gen/back-human.svg",
  37639. extra: 1638/1548,
  37640. bottom: 69/1707
  37641. }
  37642. },
  37643. frontDemi: {
  37644. height: math.unit(5 + 2/12, "feet"),
  37645. name: "Front (Demi)",
  37646. image: {
  37647. source: "./media/characters/gen/front-demi.svg",
  37648. extra: 1627/1538,
  37649. bottom: 71/1698
  37650. }
  37651. },
  37652. backDemi: {
  37653. height: math.unit(5 + 2/12, "feet"),
  37654. name: "Back (Demi)",
  37655. image: {
  37656. source: "./media/characters/gen/back-demi.svg",
  37657. extra: 1638/1548,
  37658. bottom: 69/1707
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(5 + 2/12, "feet"),
  37666. default: true
  37667. },
  37668. ]
  37669. ))
  37670. characterMakers.push(() => makeCharacter(
  37671. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37672. {
  37673. frontImp: {
  37674. height: math.unit(1 + 11/12, "feet"),
  37675. name: "Front (Imp)",
  37676. image: {
  37677. source: "./media/characters/max-kobold/front-imp.svg",
  37678. extra: 1238/1134,
  37679. bottom: 81/1319
  37680. }
  37681. },
  37682. backImp: {
  37683. height: math.unit(1 + 11/12, "feet"),
  37684. name: "Back (Imp)",
  37685. image: {
  37686. source: "./media/characters/max-kobold/back-imp.svg",
  37687. extra: 1334/1175,
  37688. bottom: 34/1368
  37689. }
  37690. },
  37691. frontDemi: {
  37692. height: math.unit(5 + 9/12, "feet"),
  37693. name: "Front (Demi)",
  37694. image: {
  37695. source: "./media/characters/max-kobold/front-demi.svg",
  37696. extra: 1715/1685,
  37697. bottom: 54/1769
  37698. }
  37699. },
  37700. backDemi: {
  37701. height: math.unit(5 + 9/12, "feet"),
  37702. name: "Back (Demi)",
  37703. image: {
  37704. source: "./media/characters/max-kobold/back-demi.svg",
  37705. extra: 1752/1729,
  37706. bottom: 41/1793
  37707. }
  37708. },
  37709. handImp: {
  37710. height: math.unit(0.45, "feet"),
  37711. name: "Hand (Imp)",
  37712. image: {
  37713. source: "./media/characters/max-kobold/hand.svg"
  37714. }
  37715. },
  37716. pawImp: {
  37717. height: math.unit(0.46, "feet"),
  37718. name: "Paw (Imp)",
  37719. image: {
  37720. source: "./media/characters/max-kobold/paw.svg"
  37721. }
  37722. },
  37723. handDemi: {
  37724. height: math.unit(0.80, "feet"),
  37725. name: "Hand (Demi)",
  37726. image: {
  37727. source: "./media/characters/max-kobold/hand.svg"
  37728. }
  37729. },
  37730. pawDemi: {
  37731. height: math.unit(1.1, "feet"),
  37732. name: "Paw (Demi)",
  37733. image: {
  37734. source: "./media/characters/max-kobold/paw.svg"
  37735. }
  37736. },
  37737. headImp: {
  37738. height: math.unit(1.33, "feet"),
  37739. name: "Head (Imp)",
  37740. image: {
  37741. source: "./media/characters/max-kobold/head-imp.svg"
  37742. }
  37743. },
  37744. mawImp: {
  37745. height: math.unit(0.75, "feet"),
  37746. name: "Maw (Imp)",
  37747. image: {
  37748. source: "./media/characters/max-kobold/maw-imp.svg"
  37749. }
  37750. },
  37751. mawDemi: {
  37752. height: math.unit(0.42, "feet"),
  37753. name: "Maw (Demi)",
  37754. image: {
  37755. source: "./media/characters/max-kobold/maw-demi.svg"
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Normal",
  37762. height: math.unit(1 + 11/12, "feet"),
  37763. default: true
  37764. },
  37765. ]
  37766. ))
  37767. characterMakers.push(() => makeCharacter(
  37768. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37769. {
  37770. front: {
  37771. height: math.unit(7 + 5/12, "feet"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/carbon/front.svg",
  37775. extra: 1754/1689,
  37776. bottom: 65/1819
  37777. }
  37778. },
  37779. back: {
  37780. height: math.unit(7 + 5/12, "feet"),
  37781. name: "Back",
  37782. image: {
  37783. source: "./media/characters/carbon/back.svg",
  37784. extra: 1762/1695,
  37785. bottom: 24/1786
  37786. }
  37787. },
  37788. frontGigantamax: {
  37789. height: math.unit(150, "feet"),
  37790. name: "Front (Gigantamax)",
  37791. image: {
  37792. source: "./media/characters/carbon/front-gigantamax.svg",
  37793. extra: 1826/1669,
  37794. bottom: 59/1885
  37795. }
  37796. },
  37797. backGigantamax: {
  37798. height: math.unit(150, "feet"),
  37799. name: "Back (Gigantamax)",
  37800. image: {
  37801. source: "./media/characters/carbon/back-gigantamax.svg",
  37802. extra: 1796/1653,
  37803. bottom: 53/1849
  37804. }
  37805. },
  37806. maw: {
  37807. height: math.unit(0.48, "feet"),
  37808. name: "Maw",
  37809. image: {
  37810. source: "./media/characters/carbon/maw.svg"
  37811. }
  37812. },
  37813. mawGigantamax: {
  37814. height: math.unit(7.5, "feet"),
  37815. name: "Maw (Gigantamax)",
  37816. image: {
  37817. source: "./media/characters/carbon/maw-gigantamax.svg"
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(7 + 5/12, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(6, "feet"),
  37834. name: "Front",
  37835. image: {
  37836. source: "./media/characters/maverick/front.svg",
  37837. extra: 1672/1661,
  37838. bottom: 85/1757
  37839. }
  37840. },
  37841. back: {
  37842. height: math.unit(6, "feet"),
  37843. name: "Back",
  37844. image: {
  37845. source: "./media/characters/maverick/back.svg",
  37846. extra: 1642/1631,
  37847. bottom: 38/1680
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(6, "feet"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(15, "feet"),
  37864. weight: math.unit(615, "lb"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/grockle/front.svg",
  37868. extra: 1535/1427,
  37869. bottom: 56/1591
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(15, "feet"),
  37877. default: true
  37878. },
  37879. {
  37880. name: "Large",
  37881. height: math.unit(150, "feet")
  37882. },
  37883. {
  37884. name: "Macro",
  37885. height: math.unit(1876, "feet")
  37886. },
  37887. {
  37888. name: "Mega Macro",
  37889. height: math.unit(121940, "feet")
  37890. },
  37891. {
  37892. name: "Giga Macro",
  37893. height: math.unit(750, "km")
  37894. },
  37895. {
  37896. name: "Tera Macro",
  37897. height: math.unit(750000, "km")
  37898. },
  37899. {
  37900. name: "Galactic",
  37901. height: math.unit(1.4e5, "km")
  37902. },
  37903. {
  37904. name: "Godlike",
  37905. height: math.unit(9.8e280, "galaxies")
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(11, "meters"),
  37914. weight: math.unit(20, "tonnes"),
  37915. name: "Front",
  37916. image: {
  37917. source: "./media/characters/alistair/front.svg",
  37918. extra: 1265/1009,
  37919. bottom: 93/1358
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(11, "meters"),
  37927. default: true
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37933. {
  37934. front: {
  37935. height: math.unit(5 + 8/12, "feet"),
  37936. name: "Front",
  37937. image: {
  37938. source: "./media/characters/haruka/front.svg",
  37939. extra: 2012/1952,
  37940. bottom: 0/2012
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(5 + 8/12, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37954. {
  37955. back: {
  37956. height: math.unit(9, "feet"),
  37957. name: "Back",
  37958. image: {
  37959. source: "./media/characters/vivian-sylveon/back.svg",
  37960. extra: 1853/1714,
  37961. bottom: 0/1853
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Normal",
  37968. height: math.unit(9, "feet"),
  37969. default: true
  37970. },
  37971. {
  37972. name: "Macro",
  37973. height: math.unit(500, "feet")
  37974. },
  37975. {
  37976. name: "Megamacro",
  37977. height: math.unit(600, "miles")
  37978. },
  37979. {
  37980. name: "Gigamacro",
  37981. height: math.unit(30000, "miles")
  37982. },
  37983. ]
  37984. ))
  37985. characterMakers.push(() => makeCharacter(
  37986. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37987. {
  37988. anthro: {
  37989. height: math.unit(5 + 10/12, "feet"),
  37990. weight: math.unit(100, "lb"),
  37991. name: "Anthro",
  37992. image: {
  37993. source: "./media/characters/daiki/anthro.svg",
  37994. extra: 1115/1027,
  37995. bottom: 69/1184
  37996. }
  37997. },
  37998. feral: {
  37999. height: math.unit(200, "feet"),
  38000. name: "Feral",
  38001. image: {
  38002. source: "./media/characters/daiki/feral.svg",
  38003. extra: 1256/313,
  38004. bottom: 39/1295
  38005. }
  38006. },
  38007. feralHead: {
  38008. height: math.unit(171, "feet"),
  38009. name: "Feral Head",
  38010. image: {
  38011. source: "./media/characters/daiki/feral-head.svg"
  38012. }
  38013. },
  38014. manaDragon: {
  38015. height: math.unit(170, "meters"),
  38016. name: "Mana-dragon",
  38017. image: {
  38018. source: "./media/characters/daiki/mana-dragon.svg",
  38019. extra: 763/420,
  38020. bottom: 97/860
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(5 + 10/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38034. {
  38035. fullyEquippedFront: {
  38036. height: math.unit(3 + 1/12, "feet"),
  38037. weight: math.unit(24, "lb"),
  38038. name: "Fully Equipped (Front)",
  38039. image: {
  38040. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38041. extra: 687/605,
  38042. bottom: 18/705
  38043. }
  38044. },
  38045. fullyEquippedBack: {
  38046. height: math.unit(3 + 1/12, "feet"),
  38047. weight: math.unit(24, "lb"),
  38048. name: "Fully Equipped (Back)",
  38049. image: {
  38050. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38051. extra: 689/590,
  38052. bottom: 18/707
  38053. }
  38054. },
  38055. dailyWear: {
  38056. height: math.unit(3 + 1/12, "feet"),
  38057. weight: math.unit(24, "lb"),
  38058. name: "Daily Wear",
  38059. image: {
  38060. source: "./media/characters/tea-spot/daily-wear.svg",
  38061. extra: 701/620,
  38062. bottom: 21/722
  38063. }
  38064. },
  38065. maidWork: {
  38066. height: math.unit(3 + 1/12, "feet"),
  38067. weight: math.unit(24, "lb"),
  38068. name: "Maid Work",
  38069. image: {
  38070. source: "./media/characters/tea-spot/maid-work.svg",
  38071. extra: 693/609,
  38072. bottom: 15/708
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(3 + 1/12, "feet"),
  38080. default: true
  38081. },
  38082. ]
  38083. ))
  38084. characterMakers.push(() => makeCharacter(
  38085. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38086. {
  38087. front: {
  38088. height: math.unit(175, "cm"),
  38089. weight: math.unit(75, "kg"),
  38090. name: "Front",
  38091. image: {
  38092. source: "./media/characters/chee/front.svg",
  38093. extra: 1796/1740,
  38094. bottom: 40/1836
  38095. }
  38096. },
  38097. },
  38098. [
  38099. {
  38100. name: "Micro-Micro",
  38101. height: math.unit(1, "nm")
  38102. },
  38103. {
  38104. name: "Micro-erst",
  38105. height: math.unit(1, "micrometer")
  38106. },
  38107. {
  38108. name: "Micro-er",
  38109. height: math.unit(1, "cm")
  38110. },
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(175, "cm"),
  38114. default: true
  38115. },
  38116. {
  38117. name: "Macro",
  38118. height: math.unit(100, "m")
  38119. },
  38120. {
  38121. name: "Macro-er",
  38122. height: math.unit(1, "km")
  38123. },
  38124. {
  38125. name: "Macro-erst",
  38126. height: math.unit(10, "km")
  38127. },
  38128. {
  38129. name: "Macro-Macro",
  38130. height: math.unit(100, "km")
  38131. },
  38132. ]
  38133. ))
  38134. characterMakers.push(() => makeCharacter(
  38135. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38136. {
  38137. front: {
  38138. height: math.unit(11 + 9/12, "feet"),
  38139. weight: math.unit(935, "lb"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/kingsley/front.svg",
  38143. extra: 1803/1674,
  38144. bottom: 127/1930
  38145. }
  38146. },
  38147. frontNude: {
  38148. height: math.unit(11 + 9/12, "feet"),
  38149. weight: math.unit(935, "lb"),
  38150. name: "Front (Nude)",
  38151. image: {
  38152. source: "./media/characters/kingsley/front-nude.svg",
  38153. extra: 1803/1674,
  38154. bottom: 127/1930
  38155. }
  38156. },
  38157. },
  38158. [
  38159. {
  38160. name: "Normal",
  38161. height: math.unit(11 + 9/12, "feet"),
  38162. default: true
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38168. {
  38169. side: {
  38170. height: math.unit(9, "feet"),
  38171. name: "Side",
  38172. image: {
  38173. source: "./media/characters/rymel/side.svg",
  38174. extra: 792/469,
  38175. bottom: 121/913
  38176. }
  38177. },
  38178. maw: {
  38179. height: math.unit(2.4, "meters"),
  38180. name: "Maw",
  38181. image: {
  38182. source: "./media/characters/rymel/maw.svg"
  38183. }
  38184. },
  38185. },
  38186. [
  38187. {
  38188. name: "House Drake",
  38189. height: math.unit(2, "feet")
  38190. },
  38191. {
  38192. name: "Reduced",
  38193. height: math.unit(4.5, "feet")
  38194. },
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(9, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(1.74, "meters"),
  38207. weight: math.unit(55, "kg"),
  38208. name: "Front",
  38209. image: {
  38210. source: "./media/characters/rubus/front.svg",
  38211. extra: 1894/1742,
  38212. bottom: 44/1938
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Normal",
  38219. height: math.unit(1.74, "meters"),
  38220. default: true
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(5 + 2/12, "feet"),
  38229. weight: math.unit(112, "lb"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/cassie-kingston/front.svg",
  38233. extra: 1438/1390,
  38234. bottom: 47/1485
  38235. }
  38236. },
  38237. },
  38238. [
  38239. {
  38240. name: "Normal",
  38241. height: math.unit(5 + 2/12, "feet"),
  38242. default: true
  38243. },
  38244. {
  38245. name: "Macro",
  38246. height: math.unit(128, "feet")
  38247. },
  38248. {
  38249. name: "Megamacro",
  38250. height: math.unit(2.56, "miles")
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38256. {
  38257. front: {
  38258. height: math.unit(7, "feet"),
  38259. name: "Front",
  38260. image: {
  38261. source: "./media/characters/fox/front.svg",
  38262. extra: 1798/1703,
  38263. bottom: 55/1853
  38264. }
  38265. },
  38266. back: {
  38267. height: math.unit(7, "feet"),
  38268. name: "Back",
  38269. image: {
  38270. source: "./media/characters/fox/back.svg",
  38271. extra: 1748/1649,
  38272. bottom: 32/1780
  38273. }
  38274. },
  38275. head: {
  38276. height: math.unit(1.95, "feet"),
  38277. name: "Head",
  38278. image: {
  38279. source: "./media/characters/fox/head.svg"
  38280. }
  38281. },
  38282. dick: {
  38283. height: math.unit(1.33, "feet"),
  38284. name: "Dick",
  38285. image: {
  38286. source: "./media/characters/fox/dick.svg"
  38287. }
  38288. },
  38289. foot: {
  38290. height: math.unit(1, "feet"),
  38291. name: "Foot",
  38292. image: {
  38293. source: "./media/characters/fox/foot.svg"
  38294. }
  38295. },
  38296. paw: {
  38297. height: math.unit(0.92, "feet"),
  38298. name: "Paw",
  38299. image: {
  38300. source: "./media/characters/fox/paw.svg"
  38301. }
  38302. },
  38303. },
  38304. [
  38305. {
  38306. name: "Small",
  38307. height: math.unit(3, "inches")
  38308. },
  38309. {
  38310. name: "\"Realistic\"",
  38311. height: math.unit(7, "feet")
  38312. },
  38313. {
  38314. name: "Normal",
  38315. height: math.unit(150, "feet"),
  38316. default: true
  38317. },
  38318. {
  38319. name: "BIG",
  38320. height: math.unit(1200, "feet")
  38321. },
  38322. {
  38323. name: "👀",
  38324. height: math.unit(5, "miles")
  38325. },
  38326. {
  38327. name: "👀👀👀",
  38328. height: math.unit(64, "miles")
  38329. },
  38330. ]
  38331. ))
  38332. characterMakers.push(() => makeCharacter(
  38333. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38334. {
  38335. front: {
  38336. height: math.unit(625, "feet"),
  38337. name: "Front",
  38338. image: {
  38339. source: "./media/characters/asonja-rossa/front.svg",
  38340. extra: 1833/1686,
  38341. bottom: 24/1857
  38342. }
  38343. },
  38344. back: {
  38345. height: math.unit(625, "feet"),
  38346. name: "Back",
  38347. image: {
  38348. source: "./media/characters/asonja-rossa/back.svg",
  38349. extra: 1852/1753,
  38350. bottom: 26/1878
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Macro",
  38357. height: math.unit(625, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38364. {
  38365. side: {
  38366. height: math.unit(8, "feet"),
  38367. name: "Side",
  38368. image: {
  38369. source: "./media/characters/rezukii/side.svg",
  38370. extra: 979/542,
  38371. bottom: 87/1066
  38372. }
  38373. },
  38374. sitting: {
  38375. height: math.unit(14.6, "feet"),
  38376. name: "Sitting",
  38377. image: {
  38378. source: "./media/characters/rezukii/sitting.svg",
  38379. extra: 1023/813,
  38380. bottom: 45/1068
  38381. }
  38382. },
  38383. },
  38384. [
  38385. {
  38386. name: "Tiny",
  38387. height: math.unit(2, "feet")
  38388. },
  38389. {
  38390. name: "Smol",
  38391. height: math.unit(4, "feet")
  38392. },
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(8, "feet"),
  38396. default: true
  38397. },
  38398. {
  38399. name: "Big",
  38400. height: math.unit(12, "feet")
  38401. },
  38402. {
  38403. name: "Macro",
  38404. height: math.unit(30, "feet")
  38405. },
  38406. ]
  38407. ))
  38408. characterMakers.push(() => makeCharacter(
  38409. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38410. {
  38411. front: {
  38412. height: math.unit(14, "feet"),
  38413. weight: math.unit(9.5, "tonnes"),
  38414. name: "Front",
  38415. image: {
  38416. source: "./media/characters/dawnheart/front.svg",
  38417. extra: 2792/2675,
  38418. bottom: 64/2856
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Normal",
  38425. height: math.unit(14, "feet"),
  38426. default: true
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38432. {
  38433. front: {
  38434. height: math.unit(1.7, "m"),
  38435. name: "Front",
  38436. image: {
  38437. source: "./media/characters/gladi/front.svg",
  38438. extra: 1460/1362,
  38439. bottom: 19/1479
  38440. }
  38441. },
  38442. back: {
  38443. height: math.unit(1.7, "m"),
  38444. name: "Back",
  38445. image: {
  38446. source: "./media/characters/gladi/back.svg",
  38447. extra: 1459/1357,
  38448. bottom: 12/1471
  38449. }
  38450. },
  38451. feral: {
  38452. height: math.unit(2.05, "m"),
  38453. name: "Feral",
  38454. image: {
  38455. source: "./media/characters/gladi/feral.svg",
  38456. extra: 821/557,
  38457. bottom: 91/912
  38458. }
  38459. },
  38460. },
  38461. [
  38462. {
  38463. name: "Shortest",
  38464. height: math.unit(70, "cm")
  38465. },
  38466. {
  38467. name: "Normal",
  38468. height: math.unit(1.7, "m")
  38469. },
  38470. {
  38471. name: "Macro",
  38472. height: math.unit(10, "m"),
  38473. default: true
  38474. },
  38475. {
  38476. name: "Tallest",
  38477. height: math.unit(200, "m")
  38478. },
  38479. ]
  38480. ))
  38481. characterMakers.push(() => makeCharacter(
  38482. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38483. {
  38484. front: {
  38485. height: math.unit(5 + 7/12, "feet"),
  38486. weight: math.unit(2, "tons"),
  38487. name: "Front",
  38488. image: {
  38489. source: "./media/characters/erdno/front.svg",
  38490. extra: 1234/1129,
  38491. bottom: 35/1269
  38492. }
  38493. },
  38494. angled: {
  38495. height: math.unit(5 + 7/12, "feet"),
  38496. weight: math.unit(2, "tons"),
  38497. name: "Angled",
  38498. image: {
  38499. source: "./media/characters/erdno/angled.svg",
  38500. extra: 1185/1139,
  38501. bottom: 36/1221
  38502. }
  38503. },
  38504. side: {
  38505. height: math.unit(5 + 7/12, "feet"),
  38506. weight: math.unit(2, "tons"),
  38507. name: "Side",
  38508. image: {
  38509. source: "./media/characters/erdno/side.svg",
  38510. extra: 1191/1144,
  38511. bottom: 40/1231
  38512. }
  38513. },
  38514. back: {
  38515. height: math.unit(5 + 7/12, "feet"),
  38516. weight: math.unit(2, "tons"),
  38517. name: "Back",
  38518. image: {
  38519. source: "./media/characters/erdno/back.svg",
  38520. extra: 1202/1146,
  38521. bottom: 17/1219
  38522. }
  38523. },
  38524. frontNsfw: {
  38525. height: math.unit(5 + 7/12, "feet"),
  38526. weight: math.unit(2, "tons"),
  38527. name: "Front (NSFW)",
  38528. image: {
  38529. source: "./media/characters/erdno/front-nsfw.svg",
  38530. extra: 1234/1129,
  38531. bottom: 35/1269
  38532. }
  38533. },
  38534. angledNsfw: {
  38535. height: math.unit(5 + 7/12, "feet"),
  38536. weight: math.unit(2, "tons"),
  38537. name: "Angled (NSFW)",
  38538. image: {
  38539. source: "./media/characters/erdno/angled-nsfw.svg",
  38540. extra: 1185/1139,
  38541. bottom: 36/1221
  38542. }
  38543. },
  38544. sideNsfw: {
  38545. height: math.unit(5 + 7/12, "feet"),
  38546. weight: math.unit(2, "tons"),
  38547. name: "Side (NSFW)",
  38548. image: {
  38549. source: "./media/characters/erdno/side-nsfw.svg",
  38550. extra: 1191/1144,
  38551. bottom: 40/1231
  38552. }
  38553. },
  38554. backNsfw: {
  38555. height: math.unit(5 + 7/12, "feet"),
  38556. weight: math.unit(2, "tons"),
  38557. name: "Back (NSFW)",
  38558. image: {
  38559. source: "./media/characters/erdno/back-nsfw.svg",
  38560. extra: 1202/1146,
  38561. bottom: 17/1219
  38562. }
  38563. },
  38564. frontHyper: {
  38565. height: math.unit(5 + 7/12, "feet"),
  38566. weight: math.unit(2, "tons"),
  38567. name: "Front (Hyper)",
  38568. image: {
  38569. source: "./media/characters/erdno/front-hyper.svg",
  38570. extra: 1298/1136,
  38571. bottom: 35/1333
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(5 + 7/12, "feet"),
  38579. default: true
  38580. },
  38581. {
  38582. name: "Big",
  38583. height: math.unit(5.7, "meters")
  38584. },
  38585. {
  38586. name: "Macro",
  38587. height: math.unit(5.7, "kilometers")
  38588. },
  38589. {
  38590. name: "Megamacro",
  38591. height: math.unit(5.7, "earths")
  38592. },
  38593. ]
  38594. ))
  38595. characterMakers.push(() => makeCharacter(
  38596. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38597. {
  38598. front: {
  38599. height: math.unit(5 + 10/12, "feet"),
  38600. weight: math.unit(150, "lb"),
  38601. name: "Front",
  38602. image: {
  38603. source: "./media/characters/jamie/front.svg",
  38604. extra: 1908/1768,
  38605. bottom: 19/1927
  38606. }
  38607. },
  38608. },
  38609. [
  38610. {
  38611. name: "Minimum",
  38612. height: math.unit(2, "cm")
  38613. },
  38614. {
  38615. name: "Micro",
  38616. height: math.unit(3, "inches")
  38617. },
  38618. {
  38619. name: "Normal",
  38620. height: math.unit(5 + 10/12, "feet"),
  38621. default: true
  38622. },
  38623. {
  38624. name: "Macro",
  38625. height: math.unit(150, "feet")
  38626. },
  38627. {
  38628. name: "Megamacro",
  38629. height: math.unit(10000, "m")
  38630. },
  38631. ]
  38632. ))
  38633. characterMakers.push(() => makeCharacter(
  38634. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38635. {
  38636. front: {
  38637. height: math.unit(2, "meters"),
  38638. weight: math.unit(100, "kg"),
  38639. name: "Front",
  38640. image: {
  38641. source: "./media/characters/shiron/front.svg",
  38642. extra: 2103/1985,
  38643. bottom: 98/2201
  38644. }
  38645. },
  38646. back: {
  38647. height: math.unit(2, "meters"),
  38648. weight: math.unit(100, "kg"),
  38649. name: "Back",
  38650. image: {
  38651. source: "./media/characters/shiron/back.svg",
  38652. extra: 2110/2015,
  38653. bottom: 89/2199
  38654. }
  38655. },
  38656. hand: {
  38657. height: math.unit(0.96, "feet"),
  38658. name: "Hand",
  38659. image: {
  38660. source: "./media/characters/shiron/hand.svg"
  38661. }
  38662. },
  38663. foot: {
  38664. height: math.unit(1.464, "feet"),
  38665. name: "Foot",
  38666. image: {
  38667. source: "./media/characters/shiron/foot.svg"
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(2, "meters")
  38675. },
  38676. {
  38677. name: "Macro",
  38678. height: math.unit(500, "meters"),
  38679. default: true
  38680. },
  38681. {
  38682. name: "Megamacro",
  38683. height: math.unit(20, "km")
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(6, "feet"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/sam/front.svg",
  38695. extra: 849/826,
  38696. bottom: 19/868
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Normal",
  38703. height: math.unit(6, "feet"),
  38704. default: true
  38705. },
  38706. ]
  38707. ))
  38708. characterMakers.push(() => makeCharacter(
  38709. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38710. {
  38711. front: {
  38712. height: math.unit(8 + 4/12, "feet"),
  38713. weight: math.unit(122, "kg"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/namori-kurogawa/front.svg",
  38717. extra: 1894/1576,
  38718. bottom: 34/1928
  38719. }
  38720. },
  38721. },
  38722. [
  38723. {
  38724. name: "Normal",
  38725. height: math.unit(8 + 4/12, "feet"),
  38726. default: true
  38727. },
  38728. ]
  38729. ))
  38730. characterMakers.push(() => makeCharacter(
  38731. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38732. {
  38733. front: {
  38734. height: math.unit(9, "feet"),
  38735. weight: math.unit(621, "lb"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/unmru/front.svg",
  38739. extra: 1853/1747,
  38740. bottom: 73/1926
  38741. }
  38742. },
  38743. side: {
  38744. height: math.unit(9, "feet"),
  38745. weight: math.unit(621, "lb"),
  38746. name: "Side",
  38747. image: {
  38748. source: "./media/characters/unmru/side.svg",
  38749. extra: 1781/1671,
  38750. bottom: 127/1908
  38751. }
  38752. },
  38753. back: {
  38754. height: math.unit(9, "feet"),
  38755. weight: math.unit(621, "lb"),
  38756. name: "Back",
  38757. image: {
  38758. source: "./media/characters/unmru/back.svg",
  38759. extra: 1894/1765,
  38760. bottom: 75/1969
  38761. }
  38762. },
  38763. dick: {
  38764. height: math.unit(3, "feet"),
  38765. weight: math.unit(35, "lb"),
  38766. name: "Dick",
  38767. image: {
  38768. source: "./media/characters/unmru/dick.svg"
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Normal",
  38775. height: math.unit(9, "feet")
  38776. },
  38777. {
  38778. name: "Natural",
  38779. height: math.unit(27, "feet"),
  38780. default: true
  38781. },
  38782. {
  38783. name: "Giant",
  38784. height: math.unit(90, "feet")
  38785. },
  38786. {
  38787. name: "Kaiju",
  38788. height: math.unit(270, "feet")
  38789. },
  38790. {
  38791. name: "Macro",
  38792. height: math.unit(900, "feet")
  38793. },
  38794. {
  38795. name: "Macro+",
  38796. height: math.unit(2700, "feet")
  38797. },
  38798. {
  38799. name: "Megamacro",
  38800. height: math.unit(9000, "feet")
  38801. },
  38802. {
  38803. name: "City-Crushing",
  38804. height: math.unit(27000, "feet")
  38805. },
  38806. {
  38807. name: "Mountain-Mashing",
  38808. height: math.unit(90000, "feet")
  38809. },
  38810. {
  38811. name: "Earth-Eclipsing",
  38812. height: math.unit(2.7e8, "feet")
  38813. },
  38814. {
  38815. name: "Sol-Swallowing",
  38816. height: math.unit(9e10, "feet")
  38817. },
  38818. {
  38819. name: "Majoris-Munching",
  38820. height: math.unit(2.7e13, "feet")
  38821. },
  38822. ]
  38823. ))
  38824. characterMakers.push(() => makeCharacter(
  38825. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38826. {
  38827. front: {
  38828. height: math.unit(1, "inch"),
  38829. name: "Front",
  38830. image: {
  38831. source: "./media/characters/squeaks-mouse/front.svg",
  38832. extra: 352/308,
  38833. bottom: 25/377
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Micro",
  38840. height: math.unit(1, "inch"),
  38841. default: true
  38842. },
  38843. ]
  38844. ))
  38845. characterMakers.push(() => makeCharacter(
  38846. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38847. {
  38848. side: {
  38849. height: math.unit(35, "feet"),
  38850. name: "Side",
  38851. image: {
  38852. source: "./media/characters/sayko/side.svg",
  38853. extra: 1697/1021,
  38854. bottom: 82/1779
  38855. }
  38856. },
  38857. head: {
  38858. height: math.unit(16, "feet"),
  38859. name: "Head",
  38860. image: {
  38861. source: "./media/characters/sayko/head.svg"
  38862. }
  38863. },
  38864. forepaw: {
  38865. height: math.unit(7.85, "feet"),
  38866. name: "Forepaw",
  38867. image: {
  38868. source: "./media/characters/sayko/forepaw.svg"
  38869. }
  38870. },
  38871. hindpaw: {
  38872. height: math.unit(8.8, "feet"),
  38873. name: "Hindpaw",
  38874. image: {
  38875. source: "./media/characters/sayko/hindpaw.svg"
  38876. }
  38877. },
  38878. },
  38879. [
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(35, "feet"),
  38883. default: true
  38884. },
  38885. {
  38886. name: "Colossus",
  38887. height: math.unit(100, "meters")
  38888. },
  38889. {
  38890. name: "\"Small\" Deity",
  38891. height: math.unit(1, "km")
  38892. },
  38893. {
  38894. name: "\"Large\" Deity",
  38895. height: math.unit(15, "km")
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38901. {
  38902. front: {
  38903. height: math.unit(6, "feet"),
  38904. weight: math.unit(250, "lb"),
  38905. name: "Front",
  38906. image: {
  38907. source: "./media/characters/mukiro/front.svg",
  38908. extra: 1368/1310,
  38909. bottom: 34/1402
  38910. }
  38911. },
  38912. },
  38913. [
  38914. {
  38915. name: "Normal",
  38916. height: math.unit(6, "feet"),
  38917. default: true
  38918. },
  38919. ]
  38920. ))
  38921. characterMakers.push(() => makeCharacter(
  38922. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38923. {
  38924. front: {
  38925. height: math.unit(12 + 4/12, "feet"),
  38926. name: "Front",
  38927. image: {
  38928. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38929. extra: 1346/1311,
  38930. bottom: 65/1411
  38931. }
  38932. },
  38933. },
  38934. [
  38935. {
  38936. name: "Base",
  38937. height: math.unit(12 + 4/12, "feet"),
  38938. default: true
  38939. },
  38940. {
  38941. name: "Macro",
  38942. height: math.unit(150, "feet")
  38943. },
  38944. {
  38945. name: "Mega",
  38946. height: math.unit(2, "miles")
  38947. },
  38948. {
  38949. name: "Demi God",
  38950. height: math.unit(4, "AU")
  38951. },
  38952. {
  38953. name: "God Size",
  38954. height: math.unit(1, "universe")
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38960. {
  38961. front: {
  38962. height: math.unit(3 + 3/12, "feet"),
  38963. weight: math.unit(88, "lb"),
  38964. name: "Front",
  38965. image: {
  38966. source: "./media/characters/trey/front.svg",
  38967. extra: 1815/1509,
  38968. bottom: 60/1875
  38969. }
  38970. },
  38971. },
  38972. [
  38973. {
  38974. name: "Normal",
  38975. height: math.unit(3 + 3/12, "feet"),
  38976. default: true
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38982. {
  38983. front: {
  38984. height: math.unit(4, "meters"),
  38985. name: "Front",
  38986. image: {
  38987. source: "./media/characters/adelonda/front.svg",
  38988. extra: 1077/982,
  38989. bottom: 39/1116
  38990. }
  38991. },
  38992. back: {
  38993. height: math.unit(4, "meters"),
  38994. name: "Back",
  38995. image: {
  38996. source: "./media/characters/adelonda/back.svg",
  38997. extra: 1105/1003,
  38998. bottom: 25/1130
  38999. }
  39000. },
  39001. feral: {
  39002. height: math.unit(40/1.5, "meters"),
  39003. name: "Feral",
  39004. image: {
  39005. source: "./media/characters/adelonda/feral.svg",
  39006. extra: 597/271,
  39007. bottom: 387/984
  39008. }
  39009. },
  39010. },
  39011. [
  39012. {
  39013. name: "Normal",
  39014. height: math.unit(4, "meters"),
  39015. default: true
  39016. },
  39017. ]
  39018. ))
  39019. characterMakers.push(() => makeCharacter(
  39020. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39021. {
  39022. front: {
  39023. height: math.unit(8 + 4/12, "feet"),
  39024. weight: math.unit(670, "lb"),
  39025. name: "Front",
  39026. image: {
  39027. source: "./media/characters/acadiel/front.svg",
  39028. extra: 1901/1595,
  39029. bottom: 142/2043
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Normal",
  39036. height: math.unit(8 + 4/12, "feet"),
  39037. default: true
  39038. },
  39039. {
  39040. name: "Macro",
  39041. height: math.unit(200, "feet")
  39042. },
  39043. ]
  39044. ))
  39045. characterMakers.push(() => makeCharacter(
  39046. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39047. {
  39048. front: {
  39049. height: math.unit(6 + 2/12, "feet"),
  39050. weight: math.unit(185, "lb"),
  39051. name: "Front",
  39052. image: {
  39053. source: "./media/characters/kayne-ein/front.svg",
  39054. extra: 1780/1560,
  39055. bottom: 81/1861
  39056. }
  39057. },
  39058. },
  39059. [
  39060. {
  39061. name: "Normal",
  39062. height: math.unit(6 + 2/12, "feet"),
  39063. default: true
  39064. },
  39065. {
  39066. name: "Transformation Stage",
  39067. height: math.unit(15, "feet")
  39068. },
  39069. {
  39070. name: "Macro",
  39071. height: math.unit(150, "feet")
  39072. },
  39073. {
  39074. name: "Earth's Shadow",
  39075. height: math.unit(6200, "miles")
  39076. },
  39077. {
  39078. name: "Universal Demon",
  39079. height: math.unit(28e9, "parsecs")
  39080. },
  39081. {
  39082. name: "Multiverse God",
  39083. height: math.unit(3, "multiverses")
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39089. {
  39090. front: {
  39091. height: math.unit(5 + 5/12, "feet"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/fawn/front.svg",
  39095. extra: 1873/1731,
  39096. bottom: 95/1968
  39097. }
  39098. },
  39099. back: {
  39100. height: math.unit(5 + 5/12, "feet"),
  39101. name: "Back",
  39102. image: {
  39103. source: "./media/characters/fawn/back.svg",
  39104. extra: 1813/1700,
  39105. bottom: 14/1827
  39106. }
  39107. },
  39108. hoof: {
  39109. height: math.unit(1.45, "feet"),
  39110. name: "Hoof",
  39111. image: {
  39112. source: "./media/characters/fawn/hoof.svg"
  39113. }
  39114. },
  39115. },
  39116. [
  39117. {
  39118. name: "Normal",
  39119. height: math.unit(5 + 5/12, "feet"),
  39120. default: true
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39126. {
  39127. front: {
  39128. height: math.unit(2 + 5/12, "feet"),
  39129. name: "Front",
  39130. image: {
  39131. source: "./media/characters/orion/front.svg",
  39132. extra: 1366/1304,
  39133. bottom: 43/1409
  39134. }
  39135. },
  39136. paw: {
  39137. height: math.unit(0.52, "feet"),
  39138. name: "Paw",
  39139. image: {
  39140. source: "./media/characters/orion/paw.svg"
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(2 + 5/12, "feet"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(5 + 10/12, "feet"),
  39157. name: "Front",
  39158. image: {
  39159. source: "./media/characters/vera/front.svg",
  39160. extra: 1680/1575,
  39161. bottom: 49/1729
  39162. }
  39163. },
  39164. back: {
  39165. height: math.unit(5 + 10/12, "feet"),
  39166. name: "Back",
  39167. image: {
  39168. source: "./media/characters/vera/back.svg",
  39169. extra: 1700/1588,
  39170. bottom: 18/1718
  39171. }
  39172. },
  39173. arcanine: {
  39174. height: math.unit(6 + 8/12, "feet"),
  39175. name: "Arcanine",
  39176. image: {
  39177. source: "./media/characters/vera/arcanine.svg",
  39178. extra: 1590/1511,
  39179. bottom: 71/1661
  39180. }
  39181. },
  39182. maw: {
  39183. height: math.unit(0.82, "feet"),
  39184. name: "Maw",
  39185. image: {
  39186. source: "./media/characters/vera/maw.svg"
  39187. }
  39188. },
  39189. mawArcanine: {
  39190. height: math.unit(0.97, "feet"),
  39191. name: "Maw (Arcanine)",
  39192. image: {
  39193. source: "./media/characters/vera/maw-arcanine.svg"
  39194. }
  39195. },
  39196. paw: {
  39197. height: math.unit(0.75, "feet"),
  39198. name: "Paw",
  39199. image: {
  39200. source: "./media/characters/vera/paw.svg"
  39201. }
  39202. },
  39203. pawprint: {
  39204. height: math.unit(0.52, "feet"),
  39205. name: "Pawprint",
  39206. image: {
  39207. source: "./media/characters/vera/pawprint.svg"
  39208. }
  39209. },
  39210. },
  39211. [
  39212. {
  39213. name: "Normal",
  39214. height: math.unit(5 + 10/12, "feet"),
  39215. default: true
  39216. },
  39217. {
  39218. name: "Macro",
  39219. height: math.unit(75, "feet")
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39225. {
  39226. front: {
  39227. height: math.unit(4, "feet"),
  39228. weight: math.unit(40, "lb"),
  39229. name: "Front",
  39230. image: {
  39231. source: "./media/characters/orvan-rabbit/front.svg",
  39232. extra: 1896/1642,
  39233. bottom: 29/1925
  39234. }
  39235. },
  39236. },
  39237. [
  39238. {
  39239. name: "Normal",
  39240. height: math.unit(4, "feet"),
  39241. default: true
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39247. {
  39248. front: {
  39249. height: math.unit(6, "feet"),
  39250. weight: math.unit(168, "lb"),
  39251. name: "Front",
  39252. image: {
  39253. source: "./media/characters/lisa/front.svg",
  39254. extra: 2065/1867,
  39255. bottom: 46/2111
  39256. }
  39257. },
  39258. back: {
  39259. height: math.unit(6, "feet"),
  39260. weight: math.unit(168, "lb"),
  39261. name: "Back",
  39262. image: {
  39263. source: "./media/characters/lisa/back.svg",
  39264. extra: 1982/1838,
  39265. bottom: 29/2011
  39266. }
  39267. },
  39268. maw: {
  39269. height: math.unit(0.81, "feet"),
  39270. name: "Maw",
  39271. image: {
  39272. source: "./media/characters/lisa/maw.svg"
  39273. }
  39274. },
  39275. paw: {
  39276. height: math.unit(0.9, "feet"),
  39277. name: "Paw",
  39278. image: {
  39279. source: "./media/characters/lisa/paw.svg"
  39280. }
  39281. },
  39282. caribousune: {
  39283. height: math.unit(7 + 2/12, "feet"),
  39284. weight: math.unit(268, "lb"),
  39285. name: "Caribousune",
  39286. image: {
  39287. source: "./media/characters/lisa/caribousune.svg",
  39288. extra: 1843/1633,
  39289. bottom: 29/1872
  39290. }
  39291. },
  39292. frontCaribousune: {
  39293. height: math.unit(7 + 2/12, "feet"),
  39294. weight: math.unit(268, "lb"),
  39295. name: "Front (Caribousune)",
  39296. image: {
  39297. source: "./media/characters/lisa/front-caribousune.svg",
  39298. extra: 1818/1638,
  39299. bottom: 52/1870
  39300. }
  39301. },
  39302. sideCaribousune: {
  39303. height: math.unit(7 + 2/12, "feet"),
  39304. weight: math.unit(268, "lb"),
  39305. name: "Side (Caribousune)",
  39306. image: {
  39307. source: "./media/characters/lisa/side-caribousune.svg",
  39308. extra: 1851/1635,
  39309. bottom: 16/1867
  39310. }
  39311. },
  39312. backCaribousune: {
  39313. height: math.unit(7 + 2/12, "feet"),
  39314. weight: math.unit(268, "lb"),
  39315. name: "Back (Caribousune)",
  39316. image: {
  39317. source: "./media/characters/lisa/back-caribousune.svg",
  39318. extra: 1801/1604,
  39319. bottom: 44/1845
  39320. }
  39321. },
  39322. caribou: {
  39323. height: math.unit(7 + 2/12, "feet"),
  39324. weight: math.unit(268, "lb"),
  39325. name: "Caribou",
  39326. image: {
  39327. source: "./media/characters/lisa/caribou.svg",
  39328. extra: 1843/1633,
  39329. bottom: 29/1872
  39330. }
  39331. },
  39332. frontCaribou: {
  39333. height: math.unit(7 + 2/12, "feet"),
  39334. weight: math.unit(268, "lb"),
  39335. name: "Front (Caribou)",
  39336. image: {
  39337. source: "./media/characters/lisa/front-caribou.svg",
  39338. extra: 1818/1638,
  39339. bottom: 52/1870
  39340. }
  39341. },
  39342. sideCaribou: {
  39343. height: math.unit(7 + 2/12, "feet"),
  39344. weight: math.unit(268, "lb"),
  39345. name: "Side (Caribou)",
  39346. image: {
  39347. source: "./media/characters/lisa/side-caribou.svg",
  39348. extra: 1851/1635,
  39349. bottom: 16/1867
  39350. }
  39351. },
  39352. backCaribou: {
  39353. height: math.unit(7 + 2/12, "feet"),
  39354. weight: math.unit(268, "lb"),
  39355. name: "Back (Caribou)",
  39356. image: {
  39357. source: "./media/characters/lisa/back-caribou.svg",
  39358. extra: 1801/1604,
  39359. bottom: 44/1845
  39360. }
  39361. },
  39362. mawCaribou: {
  39363. height: math.unit(1.45, "feet"),
  39364. name: "Maw (Caribou)",
  39365. image: {
  39366. source: "./media/characters/lisa/maw-caribou.svg"
  39367. }
  39368. },
  39369. mawCaribousune: {
  39370. height: math.unit(1.45, "feet"),
  39371. name: "Maw (Caribousune)",
  39372. image: {
  39373. source: "./media/characters/lisa/maw-caribousune.svg"
  39374. }
  39375. },
  39376. pawCaribousune: {
  39377. height: math.unit(1.61, "feet"),
  39378. name: "Paw (Caribou)",
  39379. image: {
  39380. source: "./media/characters/lisa/paw-caribousune.svg"
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Normal",
  39387. height: math.unit(6, "feet")
  39388. },
  39389. {
  39390. name: "God Size",
  39391. height: math.unit(72, "feet"),
  39392. default: true
  39393. },
  39394. {
  39395. name: "Towering",
  39396. height: math.unit(288, "feet")
  39397. },
  39398. {
  39399. name: "City Size",
  39400. height: math.unit(48384, "feet")
  39401. },
  39402. {
  39403. name: "Continental",
  39404. height: math.unit(4200, "miles")
  39405. },
  39406. {
  39407. name: "Planet Eater",
  39408. height: math.unit(42, "earths")
  39409. },
  39410. {
  39411. name: "Star Swallower",
  39412. height: math.unit(42, "solarradii")
  39413. },
  39414. {
  39415. name: "System Swallower",
  39416. height: math.unit(84000, "AU")
  39417. },
  39418. {
  39419. name: "Galaxy Gobbler",
  39420. height: math.unit(42, "galaxies")
  39421. },
  39422. {
  39423. name: "Universe Devourer",
  39424. height: math.unit(42, "universes")
  39425. },
  39426. {
  39427. name: "Multiverse Muncher",
  39428. height: math.unit(42, "multiverses")
  39429. },
  39430. ]
  39431. ))
  39432. characterMakers.push(() => makeCharacter(
  39433. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39434. {
  39435. front: {
  39436. height: math.unit(36, "feet"),
  39437. name: "Front",
  39438. image: {
  39439. source: "./media/characters/shadow-rat/front.svg",
  39440. extra: 1845/1758,
  39441. bottom: 83/1928
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Macro",
  39448. height: math.unit(36, "feet"),
  39449. default: true
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39455. {
  39456. side: {
  39457. height: math.unit(8, "feet"),
  39458. weight: math.unit(2630, "lb"),
  39459. name: "Side",
  39460. image: {
  39461. source: "./media/characters/torallia/side.svg",
  39462. extra: 2164/2021,
  39463. bottom: 371/2535
  39464. }
  39465. },
  39466. },
  39467. [
  39468. {
  39469. name: "Mortal Interaction",
  39470. height: math.unit(8, "feet")
  39471. },
  39472. {
  39473. name: "Natural",
  39474. height: math.unit(24, "feet"),
  39475. default: true
  39476. },
  39477. {
  39478. name: "Giant",
  39479. height: math.unit(80, "feet")
  39480. },
  39481. {
  39482. name: "Kaiju",
  39483. height: math.unit(240, "feet")
  39484. },
  39485. {
  39486. name: "Macro",
  39487. height: math.unit(800, "feet")
  39488. },
  39489. {
  39490. name: "Macro+",
  39491. height: math.unit(2400, "feet")
  39492. },
  39493. {
  39494. name: "Macro++",
  39495. height: math.unit(8000, "feet")
  39496. },
  39497. {
  39498. name: "City-Crushing",
  39499. height: math.unit(24000, "feet")
  39500. },
  39501. {
  39502. name: "Mountain-Mashing",
  39503. height: math.unit(80000, "feet")
  39504. },
  39505. {
  39506. name: "District Demolisher",
  39507. height: math.unit(240000, "feet")
  39508. },
  39509. {
  39510. name: "Tri-County Terror",
  39511. height: math.unit(800000, "feet")
  39512. },
  39513. {
  39514. name: "State Smasher",
  39515. height: math.unit(2.4e6, "feet")
  39516. },
  39517. {
  39518. name: "Nation Nemesis",
  39519. height: math.unit(8e6, "feet")
  39520. },
  39521. {
  39522. name: "Continent Cracker",
  39523. height: math.unit(2.4e7, "feet")
  39524. },
  39525. {
  39526. name: "Planet-Pillaging",
  39527. height: math.unit(8e7, "feet")
  39528. },
  39529. {
  39530. name: "Earth-Eclipsing",
  39531. height: math.unit(2.4e8, "feet")
  39532. },
  39533. {
  39534. name: "Jovian-Jostling",
  39535. height: math.unit(8e8, "feet")
  39536. },
  39537. {
  39538. name: "Gas Giant Gulper",
  39539. height: math.unit(2.4e9, "feet")
  39540. },
  39541. {
  39542. name: "Astral Annihilator",
  39543. height: math.unit(8e9, "feet")
  39544. },
  39545. {
  39546. name: "Celestial Conqueror",
  39547. height: math.unit(2.4e10, "feet")
  39548. },
  39549. {
  39550. name: "Sol-Swallowing",
  39551. height: math.unit(8e10, "feet")
  39552. },
  39553. {
  39554. name: "Hunter of the Heavens",
  39555. height: math.unit(2.4e13, "feet")
  39556. },
  39557. ]
  39558. ))
  39559. characterMakers.push(() => makeCharacter(
  39560. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39561. {
  39562. front: {
  39563. height: math.unit(6 + 8/12, "feet"),
  39564. name: "Front",
  39565. image: {
  39566. source: "./media/characters/rebecca-pawlson/front.svg",
  39567. extra: 1737/1596,
  39568. bottom: 107/1844
  39569. }
  39570. },
  39571. back: {
  39572. height: math.unit(6 + 8/12, "feet"),
  39573. name: "Back",
  39574. image: {
  39575. source: "./media/characters/rebecca-pawlson/back.svg",
  39576. extra: 1702/1523,
  39577. bottom: 86/1788
  39578. }
  39579. },
  39580. },
  39581. [
  39582. {
  39583. name: "Normal",
  39584. height: math.unit(6 + 8/12, "feet")
  39585. },
  39586. {
  39587. name: "Mini Macro",
  39588. height: math.unit(10, "feet"),
  39589. default: true
  39590. },
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(100, "feet")
  39594. },
  39595. {
  39596. name: "Mega Macro",
  39597. height: math.unit(2500, "feet")
  39598. },
  39599. {
  39600. name: "Giga Macro",
  39601. height: math.unit(50, "miles")
  39602. },
  39603. ]
  39604. ))
  39605. characterMakers.push(() => makeCharacter(
  39606. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39607. {
  39608. front: {
  39609. height: math.unit(7 + 6/12, "feet"),
  39610. weight: math.unit(600, "lb"),
  39611. name: "Front",
  39612. image: {
  39613. source: "./media/characters/moxie-nova/front.svg",
  39614. extra: 1734/1652,
  39615. bottom: 41/1775
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Normal",
  39622. height: math.unit(7 + 6/12, "feet"),
  39623. default: true
  39624. },
  39625. ]
  39626. ))
  39627. characterMakers.push(() => makeCharacter(
  39628. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39629. {
  39630. goat: {
  39631. height: math.unit(4, "feet"),
  39632. weight: math.unit(180, "lb"),
  39633. name: "Goat",
  39634. image: {
  39635. source: "./media/characters/tiffany/goat.svg",
  39636. extra: 1845/1595,
  39637. bottom: 106/1951
  39638. }
  39639. },
  39640. front: {
  39641. height: math.unit(5, "feet"),
  39642. weight: math.unit(150, "lb"),
  39643. name: "Foxcoon",
  39644. image: {
  39645. source: "./media/characters/tiffany/foxcoon.svg",
  39646. extra: 1941/1845,
  39647. bottom: 58/1999
  39648. }
  39649. },
  39650. },
  39651. [
  39652. {
  39653. name: "Normal",
  39654. height: math.unit(5, "feet"),
  39655. default: true
  39656. },
  39657. ]
  39658. ))
  39659. characterMakers.push(() => makeCharacter(
  39660. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39661. {
  39662. front: {
  39663. height: math.unit(8, "feet"),
  39664. weight: math.unit(300, "lb"),
  39665. name: "Front",
  39666. image: {
  39667. source: "./media/characters/raxinath/front.svg",
  39668. extra: 1407/1309,
  39669. bottom: 39/1446
  39670. }
  39671. },
  39672. back: {
  39673. height: math.unit(8, "feet"),
  39674. weight: math.unit(300, "lb"),
  39675. name: "Back",
  39676. image: {
  39677. source: "./media/characters/raxinath/back.svg",
  39678. extra: 1405/1315,
  39679. bottom: 9/1414
  39680. }
  39681. },
  39682. },
  39683. [
  39684. {
  39685. name: "Speck",
  39686. height: math.unit(0.5, "nm")
  39687. },
  39688. {
  39689. name: "Micro",
  39690. height: math.unit(3, "inches")
  39691. },
  39692. {
  39693. name: "Kobold",
  39694. height: math.unit(3, "feet")
  39695. },
  39696. {
  39697. name: "Normal",
  39698. height: math.unit(8, "feet"),
  39699. default: true
  39700. },
  39701. {
  39702. name: "Giant",
  39703. height: math.unit(50, "feet")
  39704. },
  39705. {
  39706. name: "Macro",
  39707. height: math.unit(1000, "feet")
  39708. },
  39709. {
  39710. name: "Megamacro",
  39711. height: math.unit(1, "mile")
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(10, "feet"),
  39720. weight: math.unit(1442, "lb"),
  39721. name: "Front",
  39722. image: {
  39723. source: "./media/characters/mal-dragon/front.svg",
  39724. extra: 1515/1444,
  39725. bottom: 113/1628
  39726. }
  39727. },
  39728. back: {
  39729. height: math.unit(10, "feet"),
  39730. weight: math.unit(1442, "lb"),
  39731. name: "Back",
  39732. image: {
  39733. source: "./media/characters/mal-dragon/back.svg",
  39734. extra: 1527/1434,
  39735. bottom: 25/1552
  39736. }
  39737. },
  39738. },
  39739. [
  39740. {
  39741. name: "Mortal Interaction",
  39742. height: math.unit(10, "feet"),
  39743. default: true
  39744. },
  39745. {
  39746. name: "Large",
  39747. height: math.unit(30, "feet")
  39748. },
  39749. {
  39750. name: "Kaiju",
  39751. height: math.unit(300, "feet")
  39752. },
  39753. {
  39754. name: "Megamacro",
  39755. height: math.unit(10000, "feet")
  39756. },
  39757. {
  39758. name: "Continent Cracker",
  39759. height: math.unit(30000000, "feet")
  39760. },
  39761. {
  39762. name: "Sol-Swallowing",
  39763. height: math.unit(1e11, "feet")
  39764. },
  39765. {
  39766. name: "Light Universal",
  39767. height: math.unit(5, "universes")
  39768. },
  39769. {
  39770. name: "Universe Atoms",
  39771. height: math.unit(1.829e9, "universes")
  39772. },
  39773. {
  39774. name: "Light Multiversal",
  39775. height: math.unit(5, "multiverses")
  39776. },
  39777. {
  39778. name: "Multiverse Atoms",
  39779. height: math.unit(1.829e9, "multiverses")
  39780. },
  39781. {
  39782. name: "Fabric of Time",
  39783. height: math.unit(1e262, "multiverses")
  39784. },
  39785. ]
  39786. ))
  39787. characterMakers.push(() => makeCharacter(
  39788. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39789. {
  39790. front: {
  39791. height: math.unit(9, "feet"),
  39792. weight: math.unit(1050, "lb"),
  39793. name: "Front",
  39794. image: {
  39795. source: "./media/characters/tabitha/front.svg",
  39796. extra: 2083/1994,
  39797. bottom: 68/2151
  39798. }
  39799. },
  39800. },
  39801. [
  39802. {
  39803. name: "Baseline",
  39804. height: math.unit(9, "feet"),
  39805. default: true
  39806. },
  39807. {
  39808. name: "Giant",
  39809. height: math.unit(90, "feet")
  39810. },
  39811. {
  39812. name: "Macro",
  39813. height: math.unit(900, "feet")
  39814. },
  39815. {
  39816. name: "Megamacro",
  39817. height: math.unit(9000, "feet")
  39818. },
  39819. {
  39820. name: "City-Crushing",
  39821. height: math.unit(27000, "feet")
  39822. },
  39823. {
  39824. name: "Mountain-Mashing",
  39825. height: math.unit(90000, "feet")
  39826. },
  39827. {
  39828. name: "Nation Nemesis",
  39829. height: math.unit(9e6, "feet")
  39830. },
  39831. {
  39832. name: "Continent Cracker",
  39833. height: math.unit(27e6, "feet")
  39834. },
  39835. {
  39836. name: "Earth-Eclipsing",
  39837. height: math.unit(2.7e8, "feet")
  39838. },
  39839. {
  39840. name: "Gas Giant Gulper",
  39841. height: math.unit(2.7e9, "feet")
  39842. },
  39843. {
  39844. name: "Sol-Swallowing",
  39845. height: math.unit(9e10, "feet")
  39846. },
  39847. {
  39848. name: "Galaxy Gulper",
  39849. height: math.unit(9, "galaxies")
  39850. },
  39851. {
  39852. name: "Cosmos Churner",
  39853. height: math.unit(9, "universes")
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(160, "cm"),
  39862. weight: math.unit(55, "kg"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/tow/front.svg",
  39866. extra: 1751/1722,
  39867. bottom: 74/1825
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Norm",
  39874. height: math.unit(160, "cm")
  39875. },
  39876. {
  39877. name: "Casual",
  39878. height: math.unit(3200, "m"),
  39879. default: true
  39880. },
  39881. {
  39882. name: "Show-Off",
  39883. height: math.unit(160, "km")
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39889. {
  39890. front: {
  39891. height: math.unit(7 + 11/12, "feet"),
  39892. weight: math.unit(342.8, "lb"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/vivian-orca-dragon/front.svg",
  39896. extra: 1890/1865,
  39897. bottom: 28/1918
  39898. }
  39899. },
  39900. },
  39901. [
  39902. {
  39903. name: "Micro",
  39904. height: math.unit(5, "inches")
  39905. },
  39906. {
  39907. name: "Normal",
  39908. height: math.unit(7 + 11/12, "feet"),
  39909. default: true
  39910. },
  39911. {
  39912. name: "Macro",
  39913. height: math.unit(395 + 7/12, "feet")
  39914. },
  39915. ]
  39916. ))
  39917. characterMakers.push(() => makeCharacter(
  39918. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39919. {
  39920. side: {
  39921. height: math.unit(10, "feet"),
  39922. weight: math.unit(1442, "lb"),
  39923. name: "Side",
  39924. image: {
  39925. source: "./media/characters/lotherakon/side.svg",
  39926. extra: 1604/1497,
  39927. bottom: 89/1693
  39928. }
  39929. },
  39930. },
  39931. [
  39932. {
  39933. name: "Mortal Interaction",
  39934. height: math.unit(10, "feet")
  39935. },
  39936. {
  39937. name: "Large",
  39938. height: math.unit(30, "feet"),
  39939. default: true
  39940. },
  39941. {
  39942. name: "Giant",
  39943. height: math.unit(100, "feet")
  39944. },
  39945. {
  39946. name: "Kaiju",
  39947. height: math.unit(300, "feet")
  39948. },
  39949. {
  39950. name: "Macro",
  39951. height: math.unit(1000, "feet")
  39952. },
  39953. {
  39954. name: "Macro+",
  39955. height: math.unit(3000, "feet")
  39956. },
  39957. {
  39958. name: "Megamacro",
  39959. height: math.unit(10000, "feet")
  39960. },
  39961. {
  39962. name: "City-Crushing",
  39963. height: math.unit(30000, "feet")
  39964. },
  39965. {
  39966. name: "Continent Cracker",
  39967. height: math.unit(30e6, "feet")
  39968. },
  39969. {
  39970. name: "Earth Eclipsing",
  39971. height: math.unit(3e8, "feet")
  39972. },
  39973. {
  39974. name: "Gas Giant Gulper",
  39975. height: math.unit(3e9, "feet")
  39976. },
  39977. {
  39978. name: "Sol-Swallowing",
  39979. height: math.unit(1e11, "feet")
  39980. },
  39981. {
  39982. name: "System Swallower",
  39983. height: math.unit(3e14, "feet")
  39984. },
  39985. {
  39986. name: "Galaxy Gulper",
  39987. height: math.unit(10, "galaxies")
  39988. },
  39989. {
  39990. name: "Light Universal",
  39991. height: math.unit(5, "universes")
  39992. },
  39993. {
  39994. name: "Universe Palm",
  39995. height: math.unit(20, "universes")
  39996. },
  39997. {
  39998. name: "Light Multiversal",
  39999. height: math.unit(5, "multiverses")
  40000. },
  40001. {
  40002. name: "Multiverse Palm",
  40003. height: math.unit(20, "multiverses")
  40004. },
  40005. {
  40006. name: "Inferno Incarnate",
  40007. height: math.unit(1e7, "multiverses")
  40008. },
  40009. ]
  40010. ))
  40011. characterMakers.push(() => makeCharacter(
  40012. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40013. {
  40014. front: {
  40015. height: math.unit(8, "feet"),
  40016. weight: math.unit(1200, "lb"),
  40017. name: "Front",
  40018. image: {
  40019. source: "./media/characters/malithee/front.svg",
  40020. extra: 1675/1640,
  40021. bottom: 162/1837
  40022. }
  40023. },
  40024. },
  40025. [
  40026. {
  40027. name: "Mortal Interaction",
  40028. height: math.unit(8, "feet"),
  40029. default: true
  40030. },
  40031. {
  40032. name: "Large",
  40033. height: math.unit(24, "feet")
  40034. },
  40035. {
  40036. name: "Kaiju",
  40037. height: math.unit(240, "feet")
  40038. },
  40039. {
  40040. name: "Megamacro",
  40041. height: math.unit(8000, "feet")
  40042. },
  40043. {
  40044. name: "Continent Cracker",
  40045. height: math.unit(24e6, "feet")
  40046. },
  40047. {
  40048. name: "Earth-Eclipsing",
  40049. height: math.unit(2.4e8, "feet")
  40050. },
  40051. {
  40052. name: "Sol-Swallowing",
  40053. height: math.unit(8e10, "feet")
  40054. },
  40055. {
  40056. name: "Galaxy Gulper",
  40057. height: math.unit(8, "galaxies")
  40058. },
  40059. {
  40060. name: "Light Universal",
  40061. height: math.unit(4, "universes")
  40062. },
  40063. {
  40064. name: "Universe Atoms",
  40065. height: math.unit(1.829e9, "universes")
  40066. },
  40067. {
  40068. name: "Light Multiversal",
  40069. height: math.unit(4, "multiverses")
  40070. },
  40071. {
  40072. name: "Multiverse Atoms",
  40073. height: math.unit(1.829e9, "multiverses")
  40074. },
  40075. {
  40076. name: "Nigh-Omnipresence",
  40077. height: math.unit(8e261, "multiverses")
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40083. {
  40084. front: {
  40085. height: math.unit(10, "feet"),
  40086. weight: math.unit(1500, "lb"),
  40087. name: "Front",
  40088. image: {
  40089. source: "./media/characters/miles-thestia/front.svg",
  40090. extra: 1812/1727,
  40091. bottom: 86/1898
  40092. }
  40093. },
  40094. back: {
  40095. height: math.unit(10, "feet"),
  40096. weight: math.unit(1500, "lb"),
  40097. name: "Back",
  40098. image: {
  40099. source: "./media/characters/miles-thestia/back.svg",
  40100. extra: 1799/1690,
  40101. bottom: 47/1846
  40102. }
  40103. },
  40104. frontNsfw: {
  40105. height: math.unit(10, "feet"),
  40106. weight: math.unit(1500, "lb"),
  40107. name: "Front (NSFW)",
  40108. image: {
  40109. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40110. extra: 1812/1727,
  40111. bottom: 86/1898
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Mini-Macro",
  40118. height: math.unit(10, "feet"),
  40119. default: true
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40125. {
  40126. front: {
  40127. height: math.unit(25, "feet"),
  40128. name: "Front",
  40129. image: {
  40130. source: "./media/characters/titan-s-wulf/front.svg",
  40131. extra: 1560/1484,
  40132. bottom: 76/1636
  40133. }
  40134. },
  40135. },
  40136. [
  40137. {
  40138. name: "Smallest",
  40139. height: math.unit(25, "feet"),
  40140. default: true
  40141. },
  40142. {
  40143. name: "Normal",
  40144. height: math.unit(200, "feet")
  40145. },
  40146. {
  40147. name: "Macro",
  40148. height: math.unit(200000, "feet")
  40149. },
  40150. {
  40151. name: "Multiversal Original",
  40152. height: math.unit(10000, "multiverses")
  40153. },
  40154. ]
  40155. ))
  40156. characterMakers.push(() => makeCharacter(
  40157. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40158. {
  40159. front: {
  40160. height: math.unit(8, "feet"),
  40161. weight: math.unit(553, "lb"),
  40162. name: "Front",
  40163. image: {
  40164. source: "./media/characters/tawendeh/front.svg",
  40165. extra: 2365/2268,
  40166. bottom: 83/2448
  40167. }
  40168. },
  40169. frontClothed: {
  40170. height: math.unit(8, "feet"),
  40171. weight: math.unit(553, "lb"),
  40172. name: "Front (Clothed)",
  40173. image: {
  40174. source: "./media/characters/tawendeh/front-clothed.svg",
  40175. extra: 2365/2268,
  40176. bottom: 83/2448
  40177. }
  40178. },
  40179. back: {
  40180. height: math.unit(8, "feet"),
  40181. weight: math.unit(553, "lb"),
  40182. name: "Back",
  40183. image: {
  40184. source: "./media/characters/tawendeh/back.svg",
  40185. extra: 2397/2294,
  40186. bottom: 42/2439
  40187. }
  40188. },
  40189. },
  40190. [
  40191. {
  40192. name: "Mortal Interaction",
  40193. height: math.unit(8, "feet"),
  40194. default: true
  40195. },
  40196. {
  40197. name: "Giant",
  40198. height: math.unit(80, "feet")
  40199. },
  40200. {
  40201. name: "Macro",
  40202. height: math.unit(800, "feet")
  40203. },
  40204. {
  40205. name: "Megamacro",
  40206. height: math.unit(8000, "feet")
  40207. },
  40208. {
  40209. name: "City-Crushing",
  40210. height: math.unit(24000, "feet")
  40211. },
  40212. {
  40213. name: "Mountain-Mashing",
  40214. height: math.unit(80000, "feet")
  40215. },
  40216. {
  40217. name: "Nation Nemesis",
  40218. height: math.unit(8e6, "feet")
  40219. },
  40220. {
  40221. name: "Continent Cracker",
  40222. height: math.unit(24e6, "feet")
  40223. },
  40224. {
  40225. name: "Earth-Eclipsing",
  40226. height: math.unit(2.4e8, "feet")
  40227. },
  40228. {
  40229. name: "Gas Giant Gulper",
  40230. height: math.unit(2.4e9, "feet")
  40231. },
  40232. {
  40233. name: "Sol-Swallowing",
  40234. height: math.unit(8e10, "feet")
  40235. },
  40236. {
  40237. name: "Galaxy Gulper",
  40238. height: math.unit(8, "galaxies")
  40239. },
  40240. {
  40241. name: "Cosmos Churner",
  40242. height: math.unit(8, "universes")
  40243. },
  40244. {
  40245. name: "Omnipotent Otter",
  40246. height: math.unit(80, "universes")
  40247. },
  40248. ]
  40249. ))
  40250. characterMakers.push(() => makeCharacter(
  40251. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40252. {
  40253. front: {
  40254. height: math.unit(2.6, "meters"),
  40255. weight: math.unit(900, "kg"),
  40256. name: "Front",
  40257. image: {
  40258. source: "./media/characters/neesha/front.svg",
  40259. extra: 1803/1653,
  40260. bottom: 128/1931
  40261. }
  40262. },
  40263. },
  40264. [
  40265. {
  40266. name: "Normal",
  40267. height: math.unit(2.6, "meters"),
  40268. default: true
  40269. },
  40270. {
  40271. name: "Macro",
  40272. height: math.unit(50, "meters")
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40278. {
  40279. front: {
  40280. height: math.unit(5, "feet"),
  40281. weight: math.unit(185, "lb"),
  40282. name: "Front",
  40283. image: {
  40284. source: "./media/characters/kyera/front.svg",
  40285. extra: 1875/1790,
  40286. bottom: 96/1971
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Normal",
  40293. height: math.unit(5, "feet"),
  40294. default: true
  40295. },
  40296. ]
  40297. ))
  40298. characterMakers.push(() => makeCharacter(
  40299. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40300. {
  40301. front: {
  40302. height: math.unit(7 + 6/12, "feet"),
  40303. weight: math.unit(540, "lb"),
  40304. name: "Front",
  40305. image: {
  40306. source: "./media/characters/yuko/front.svg",
  40307. extra: 1282/1222,
  40308. bottom: 101/1383
  40309. }
  40310. },
  40311. frontClothed: {
  40312. height: math.unit(7 + 6/12, "feet"),
  40313. weight: math.unit(540, "lb"),
  40314. name: "Front (Clothed)",
  40315. image: {
  40316. source: "./media/characters/yuko/front-clothed.svg",
  40317. extra: 1282/1222,
  40318. bottom: 101/1383
  40319. }
  40320. },
  40321. },
  40322. [
  40323. {
  40324. name: "Normal",
  40325. height: math.unit(7 + 6/12, "feet"),
  40326. default: true
  40327. },
  40328. {
  40329. name: "Macro",
  40330. height: math.unit(26 + 9/12, "feet")
  40331. },
  40332. {
  40333. name: "Megamacro",
  40334. height: math.unit(300, "feet")
  40335. },
  40336. {
  40337. name: "Gigamacro",
  40338. height: math.unit(5000, "feet")
  40339. },
  40340. {
  40341. name: "Planetary",
  40342. height: math.unit(10000, "miles")
  40343. },
  40344. ]
  40345. ))
  40346. characterMakers.push(() => makeCharacter(
  40347. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40348. {
  40349. front: {
  40350. height: math.unit(8 + 2/12, "feet"),
  40351. weight: math.unit(600, "lb"),
  40352. name: "Front",
  40353. image: {
  40354. source: "./media/characters/deam-nitrel/front.svg",
  40355. extra: 1308/1234,
  40356. bottom: 125/1433
  40357. }
  40358. },
  40359. },
  40360. [
  40361. {
  40362. name: "Normal",
  40363. height: math.unit(8 + 2/12, "feet"),
  40364. default: true
  40365. },
  40366. ]
  40367. ))
  40368. characterMakers.push(() => makeCharacter(
  40369. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40370. {
  40371. front: {
  40372. height: math.unit(6.1, "feet"),
  40373. weight: math.unit(180, "lb"),
  40374. name: "Front",
  40375. image: {
  40376. source: "./media/characters/skyress/front.svg",
  40377. extra: 1045/915,
  40378. bottom: 28/1073
  40379. }
  40380. },
  40381. maw: {
  40382. height: math.unit(1, "feet"),
  40383. name: "Maw",
  40384. image: {
  40385. source: "./media/characters/skyress/maw.svg"
  40386. }
  40387. },
  40388. },
  40389. [
  40390. {
  40391. name: "Normal",
  40392. height: math.unit(6.1, "feet"),
  40393. default: true
  40394. },
  40395. {
  40396. name: "Macro",
  40397. height: math.unit(200, "feet")
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(4 + 2/12, "feet"),
  40406. weight: math.unit(40, "kg"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/amethyst-jones/front.svg",
  40410. extra: 1220/1150,
  40411. bottom: 101/1321
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Normal",
  40418. height: math.unit(4 + 2/12, "feet"),
  40419. default: true
  40420. },
  40421. ]
  40422. ))
  40423. characterMakers.push(() => makeCharacter(
  40424. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40425. {
  40426. front: {
  40427. height: math.unit(1.7, "m"),
  40428. weight: math.unit(135, "lb"),
  40429. name: "Front",
  40430. image: {
  40431. source: "./media/characters/jade/front.svg",
  40432. extra: 1818/1767,
  40433. bottom: 32/1850
  40434. }
  40435. },
  40436. back: {
  40437. height: math.unit(1.7, "m"),
  40438. weight: math.unit(135, "lb"),
  40439. name: "Back",
  40440. image: {
  40441. source: "./media/characters/jade/back.svg",
  40442. extra: 1869/1809,
  40443. bottom: 35/1904
  40444. }
  40445. },
  40446. hand: {
  40447. height: math.unit(0.24, "m"),
  40448. name: "Hand",
  40449. image: {
  40450. source: "./media/characters/jade/hand.svg"
  40451. }
  40452. },
  40453. foot: {
  40454. height: math.unit(0.263, "m"),
  40455. name: "Foot",
  40456. image: {
  40457. source: "./media/characters/jade/foot.svg"
  40458. }
  40459. },
  40460. dick: {
  40461. height: math.unit(0.47, "m"),
  40462. name: "Dick",
  40463. image: {
  40464. source: "./media/characters/jade/dick.svg"
  40465. }
  40466. },
  40467. },
  40468. [
  40469. {
  40470. name: "Micro",
  40471. height: math.unit(22, "cm")
  40472. },
  40473. {
  40474. name: "Normal",
  40475. height: math.unit(1.7, "m"),
  40476. default: true
  40477. },
  40478. {
  40479. name: "Macro",
  40480. height: math.unit(152, "m")
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(100, "miles"),
  40489. weight: math.unit(20000, "tons"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/cookie/front.svg",
  40493. extra: 1125/1070,
  40494. bottom: 30/1155
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Big",
  40501. height: math.unit(50, "feet")
  40502. },
  40503. {
  40504. name: "Macro",
  40505. height: math.unit(100, "miles"),
  40506. default: true
  40507. },
  40508. {
  40509. name: "Megamacro",
  40510. height: math.unit(90000, "miles")
  40511. },
  40512. ]
  40513. ))
  40514. characterMakers.push(() => makeCharacter(
  40515. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40516. {
  40517. front: {
  40518. height: math.unit(6, "feet"),
  40519. weight: math.unit(145, "lb"),
  40520. name: "Front",
  40521. image: {
  40522. source: "./media/characters/farzian/front.svg",
  40523. extra: 1902/1693,
  40524. bottom: 108/2010
  40525. }
  40526. },
  40527. },
  40528. [
  40529. {
  40530. name: "Macro",
  40531. height: math.unit(500, "feet"),
  40532. default: true
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40538. {
  40539. front: {
  40540. height: math.unit(3 + 6/12, "feet"),
  40541. weight: math.unit(50, "lb"),
  40542. name: "Front",
  40543. image: {
  40544. source: "./media/characters/kimberly-tilson/front.svg",
  40545. extra: 1400/1322,
  40546. bottom: 36/1436
  40547. }
  40548. },
  40549. back: {
  40550. height: math.unit(3 + 6/12, "feet"),
  40551. weight: math.unit(50, "lb"),
  40552. name: "Back",
  40553. image: {
  40554. source: "./media/characters/kimberly-tilson/back.svg",
  40555. extra: 1370/1307,
  40556. bottom: 20/1390
  40557. }
  40558. },
  40559. },
  40560. [
  40561. {
  40562. name: "Normal",
  40563. height: math.unit(3 + 6/12, "feet"),
  40564. default: true
  40565. },
  40566. ]
  40567. ))
  40568. characterMakers.push(() => makeCharacter(
  40569. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40570. {
  40571. front: {
  40572. height: math.unit(1148, "feet"),
  40573. weight: math.unit(34057, "lb"),
  40574. name: "Front",
  40575. image: {
  40576. source: "./media/characters/harthos/front.svg",
  40577. extra: 1391/1339,
  40578. bottom: 13/1404
  40579. }
  40580. },
  40581. },
  40582. [
  40583. {
  40584. name: "Macro",
  40585. height: math.unit(1148, "feet"),
  40586. default: true
  40587. },
  40588. ]
  40589. ))
  40590. characterMakers.push(() => makeCharacter(
  40591. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40592. {
  40593. front: {
  40594. height: math.unit(15, "feet"),
  40595. name: "Front",
  40596. image: {
  40597. source: "./media/characters/hypatia/front.svg",
  40598. extra: 1653/1591,
  40599. bottom: 79/1732
  40600. }
  40601. },
  40602. },
  40603. [
  40604. {
  40605. name: "Normal",
  40606. height: math.unit(15, "feet")
  40607. },
  40608. {
  40609. name: "Small",
  40610. height: math.unit(300, "feet")
  40611. },
  40612. {
  40613. name: "Macro",
  40614. height: math.unit(2500, "feet"),
  40615. default: true
  40616. },
  40617. {
  40618. name: "Mega Macro",
  40619. height: math.unit(1500, "miles")
  40620. },
  40621. {
  40622. name: "Giga Macro",
  40623. height: math.unit(1.5e6, "miles")
  40624. },
  40625. ]
  40626. ))
  40627. characterMakers.push(() => makeCharacter(
  40628. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40629. {
  40630. front: {
  40631. height: math.unit(6, "feet"),
  40632. weight: math.unit(200, "lb"),
  40633. name: "Front",
  40634. image: {
  40635. source: "./media/characters/wulver/front.svg",
  40636. extra: 1724/1632,
  40637. bottom: 130/1854
  40638. }
  40639. },
  40640. frontNsfw: {
  40641. height: math.unit(6, "feet"),
  40642. weight: math.unit(200, "lb"),
  40643. name: "Front (NSFW)",
  40644. image: {
  40645. source: "./media/characters/wulver/front-nsfw.svg",
  40646. extra: 1724/1632,
  40647. bottom: 130/1854
  40648. }
  40649. },
  40650. },
  40651. [
  40652. {
  40653. name: "Human-Sized",
  40654. height: math.unit(6, "feet")
  40655. },
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(4, "meters"),
  40659. default: true
  40660. },
  40661. {
  40662. name: "Large",
  40663. height: math.unit(6, "m")
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40669. {
  40670. front: {
  40671. height: math.unit(7, "feet"),
  40672. name: "Front",
  40673. image: {
  40674. source: "./media/characters/maru/front.svg",
  40675. extra: 1595/1570,
  40676. bottom: 0/1595
  40677. }
  40678. },
  40679. },
  40680. [
  40681. {
  40682. name: "Normal",
  40683. height: math.unit(7, "feet"),
  40684. default: true
  40685. },
  40686. {
  40687. name: "Macro",
  40688. height: math.unit(700, "feet")
  40689. },
  40690. {
  40691. name: "Mega Macro",
  40692. height: math.unit(25, "miles")
  40693. },
  40694. ]
  40695. ))
  40696. characterMakers.push(() => makeCharacter(
  40697. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40698. {
  40699. front: {
  40700. height: math.unit(6, "feet"),
  40701. weight: math.unit(170, "lb"),
  40702. name: "Front",
  40703. image: {
  40704. source: "./media/characters/xenon/front.svg",
  40705. extra: 1376/1305,
  40706. bottom: 56/1432
  40707. }
  40708. },
  40709. back: {
  40710. height: math.unit(6, "feet"),
  40711. weight: math.unit(170, "lb"),
  40712. name: "Back",
  40713. image: {
  40714. source: "./media/characters/xenon/back.svg",
  40715. extra: 1328/1259,
  40716. bottom: 95/1423
  40717. }
  40718. },
  40719. maw: {
  40720. height: math.unit(0.52, "feet"),
  40721. name: "Maw",
  40722. image: {
  40723. source: "./media/characters/xenon/maw.svg"
  40724. }
  40725. },
  40726. hand: {
  40727. height: math.unit(0.82, "feet"),
  40728. name: "Hand",
  40729. image: {
  40730. source: "./media/characters/xenon/hand.svg"
  40731. }
  40732. },
  40733. foot: {
  40734. height: math.unit(1.13, "feet"),
  40735. name: "Foot",
  40736. image: {
  40737. source: "./media/characters/xenon/foot.svg"
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Micro",
  40744. height: math.unit(0.8, "inches")
  40745. },
  40746. {
  40747. name: "Normal",
  40748. height: math.unit(6, "feet")
  40749. },
  40750. {
  40751. name: "Macro",
  40752. height: math.unit(50, "feet"),
  40753. default: true
  40754. },
  40755. {
  40756. name: "Macro+",
  40757. height: math.unit(250, "feet")
  40758. },
  40759. {
  40760. name: "Megamacro",
  40761. height: math.unit(1500, "feet")
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(7 + 5/12, "feet"),
  40770. name: "Front",
  40771. image: {
  40772. source: "./media/characters/zane/front.svg",
  40773. extra: 1260/1203,
  40774. bottom: 94/1354
  40775. }
  40776. },
  40777. back: {
  40778. height: math.unit(5.05, "feet"),
  40779. name: "Back",
  40780. image: {
  40781. source: "./media/characters/zane/back.svg",
  40782. extra: 893/829,
  40783. bottom: 30/923
  40784. }
  40785. },
  40786. werewolf: {
  40787. height: math.unit(11, "feet"),
  40788. name: "Werewolf",
  40789. image: {
  40790. source: "./media/characters/zane/werewolf.svg",
  40791. extra: 1383/1323,
  40792. bottom: 89/1472
  40793. }
  40794. },
  40795. foot: {
  40796. height: math.unit(1.46, "feet"),
  40797. name: "Foot",
  40798. image: {
  40799. source: "./media/characters/zane/foot.svg"
  40800. }
  40801. },
  40802. footFront: {
  40803. height: math.unit(0.784, "feet"),
  40804. name: "Foot (Front)",
  40805. image: {
  40806. source: "./media/characters/zane/foot-front.svg"
  40807. }
  40808. },
  40809. dick: {
  40810. height: math.unit(1.95, "feet"),
  40811. name: "Dick",
  40812. image: {
  40813. source: "./media/characters/zane/dick.svg"
  40814. }
  40815. },
  40816. dickWerewolf: {
  40817. height: math.unit(3.77, "feet"),
  40818. name: "Dick (Werewolf)",
  40819. image: {
  40820. source: "./media/characters/zane/dick.svg"
  40821. }
  40822. },
  40823. },
  40824. [
  40825. {
  40826. name: "Normal",
  40827. height: math.unit(7 + 5/12, "feet"),
  40828. default: true
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40834. {
  40835. front: {
  40836. height: math.unit(6 + 2/12, "feet"),
  40837. weight: math.unit(284, "lb"),
  40838. name: "Front",
  40839. image: {
  40840. source: "./media/characters/benni-desparque/front.svg",
  40841. extra: 1353/1126,
  40842. bottom: 69/1422
  40843. }
  40844. },
  40845. },
  40846. [
  40847. {
  40848. name: "Civilian",
  40849. height: math.unit(6 + 2/12, "feet")
  40850. },
  40851. {
  40852. name: "Normal",
  40853. height: math.unit(98, "feet"),
  40854. default: true
  40855. },
  40856. {
  40857. name: "Kaiju Fighter",
  40858. height: math.unit(268, "feet")
  40859. },
  40860. ]
  40861. ))
  40862. characterMakers.push(() => makeCharacter(
  40863. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40864. {
  40865. front: {
  40866. height: math.unit(5, "feet"),
  40867. weight: math.unit(105, "lb"),
  40868. name: "Front",
  40869. image: {
  40870. source: "./media/characters/maxine/front.svg",
  40871. extra: 1386/1250,
  40872. bottom: 71/1457
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Normal",
  40879. height: math.unit(5, "feet"),
  40880. default: true
  40881. },
  40882. ]
  40883. ))
  40884. characterMakers.push(() => makeCharacter(
  40885. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40886. {
  40887. front: {
  40888. height: math.unit(11 + 7/12, "feet"),
  40889. weight: math.unit(9576, "lb"),
  40890. name: "Front",
  40891. image: {
  40892. source: "./media/characters/scaly/front.svg",
  40893. extra: 888/867,
  40894. bottom: 36/924
  40895. }
  40896. },
  40897. },
  40898. [
  40899. {
  40900. name: "Normal",
  40901. height: math.unit(11 + 7/12, "feet"),
  40902. default: true
  40903. },
  40904. ]
  40905. ))
  40906. characterMakers.push(() => makeCharacter(
  40907. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40908. {
  40909. front: {
  40910. height: math.unit(6 + 3/12, "feet"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/saelria/front.svg",
  40914. extra: 1243/1138,
  40915. bottom: 46/1289
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Micro",
  40922. height: math.unit(6, "inches"),
  40923. },
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(6 + 3/12, "feet"),
  40927. default: true
  40928. },
  40929. {
  40930. name: "Macro",
  40931. height: math.unit(25, "feet")
  40932. },
  40933. ]
  40934. ))
  40935. characterMakers.push(() => makeCharacter(
  40936. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40937. {
  40938. front: {
  40939. height: math.unit(80, "meters"),
  40940. weight: math.unit(7000, "tonnes"),
  40941. name: "Front",
  40942. image: {
  40943. source: "./media/characters/tef/front.svg",
  40944. extra: 2036/1991,
  40945. bottom: 54/2090
  40946. }
  40947. },
  40948. back: {
  40949. height: math.unit(80, "meters"),
  40950. weight: math.unit(7000, "tonnes"),
  40951. name: "Back",
  40952. image: {
  40953. source: "./media/characters/tef/back.svg",
  40954. extra: 2036/1991,
  40955. bottom: 54/2090
  40956. }
  40957. },
  40958. },
  40959. [
  40960. {
  40961. name: "Macro",
  40962. height: math.unit(80, "meters"),
  40963. default: true
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(13, "feet"),
  40972. weight: math.unit(6, "tons"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/rover/front.svg",
  40976. extra: 1233/1156,
  40977. bottom: 50/1283
  40978. }
  40979. },
  40980. back: {
  40981. height: math.unit(13, "feet"),
  40982. weight: math.unit(6, "tons"),
  40983. name: "Back",
  40984. image: {
  40985. source: "./media/characters/rover/back.svg",
  40986. extra: 1327/1258,
  40987. bottom: 39/1366
  40988. }
  40989. },
  40990. },
  40991. [
  40992. {
  40993. name: "Normal",
  40994. height: math.unit(13, "feet"),
  40995. default: true
  40996. },
  40997. {
  40998. name: "Macro",
  40999. height: math.unit(1300, "feet")
  41000. },
  41001. {
  41002. name: "Megamacro",
  41003. height: math.unit(1300, "miles")
  41004. },
  41005. {
  41006. name: "Gigamacro",
  41007. height: math.unit(1300000, "miles")
  41008. },
  41009. ]
  41010. ))
  41011. characterMakers.push(() => makeCharacter(
  41012. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41013. {
  41014. front: {
  41015. height: math.unit(6, "feet"),
  41016. weight: math.unit(150, "lb"),
  41017. name: "Front",
  41018. image: {
  41019. source: "./media/characters/ariz/front.svg",
  41020. extra: 1401/1346,
  41021. bottom: 5/1406
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(10, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41035. {
  41036. front: {
  41037. height: math.unit(6, "feet"),
  41038. weight: math.unit(140, "lb"),
  41039. name: "Front",
  41040. image: {
  41041. source: "./media/characters/sigrun/front.svg",
  41042. extra: 1418/1359,
  41043. bottom: 27/1445
  41044. }
  41045. },
  41046. },
  41047. [
  41048. {
  41049. name: "Macro",
  41050. height: math.unit(35, "feet"),
  41051. default: true
  41052. },
  41053. ]
  41054. ))
  41055. characterMakers.push(() => makeCharacter(
  41056. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41057. {
  41058. front: {
  41059. height: math.unit(6, "feet"),
  41060. weight: math.unit(150, "lb"),
  41061. name: "Front",
  41062. image: {
  41063. source: "./media/characters/numin/front.svg",
  41064. extra: 1433/1388,
  41065. bottom: 12/1445
  41066. }
  41067. },
  41068. },
  41069. [
  41070. {
  41071. name: "Macro",
  41072. height: math.unit(21.5, "km"),
  41073. default: true
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41079. {
  41080. front: {
  41081. height: math.unit(6, "feet"),
  41082. weight: math.unit(463, "lb"),
  41083. name: "Front",
  41084. image: {
  41085. source: "./media/characters/melwa/front.svg",
  41086. extra: 1307/1248,
  41087. bottom: 93/1400
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Macro",
  41094. height: math.unit(50, "meters"),
  41095. default: true
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(325, "feet"),
  41104. name: "Front",
  41105. image: {
  41106. source: "./media/characters/zorkaiju/front.svg",
  41107. extra: 1955/1814,
  41108. bottom: 40/1995
  41109. }
  41110. },
  41111. frontExtended: {
  41112. height: math.unit(325, "feet"),
  41113. name: "Front (Extended)",
  41114. image: {
  41115. source: "./media/characters/zorkaiju/front-extended.svg",
  41116. extra: 1955/1814,
  41117. bottom: 40/1995
  41118. }
  41119. },
  41120. side: {
  41121. height: math.unit(325, "feet"),
  41122. name: "Side",
  41123. image: {
  41124. source: "./media/characters/zorkaiju/side.svg",
  41125. extra: 1495/1396,
  41126. bottom: 17/1512
  41127. }
  41128. },
  41129. sideExtended: {
  41130. height: math.unit(325, "feet"),
  41131. name: "Side (Extended)",
  41132. image: {
  41133. source: "./media/characters/zorkaiju/side-extended.svg",
  41134. extra: 1495/1396,
  41135. bottom: 17/1512
  41136. }
  41137. },
  41138. back: {
  41139. height: math.unit(325, "feet"),
  41140. name: "Back",
  41141. image: {
  41142. source: "./media/characters/zorkaiju/back.svg",
  41143. extra: 1959/1821,
  41144. bottom: 31/1990
  41145. }
  41146. },
  41147. backExtended: {
  41148. height: math.unit(325, "feet"),
  41149. name: "Back (Extended)",
  41150. image: {
  41151. source: "./media/characters/zorkaiju/back-extended.svg",
  41152. extra: 1959/1821,
  41153. bottom: 31/1990
  41154. }
  41155. },
  41156. hand: {
  41157. height: math.unit(58.4, "feet"),
  41158. name: "Hand",
  41159. image: {
  41160. source: "./media/characters/zorkaiju/hand.svg"
  41161. }
  41162. },
  41163. handExtended: {
  41164. height: math.unit(61.4, "feet"),
  41165. name: "Hand (Extended)",
  41166. image: {
  41167. source: "./media/characters/zorkaiju/hand-extended.svg"
  41168. }
  41169. },
  41170. foot: {
  41171. height: math.unit(95, "feet"),
  41172. name: "Foot",
  41173. image: {
  41174. source: "./media/characters/zorkaiju/foot.svg"
  41175. }
  41176. },
  41177. leftArm: {
  41178. height: math.unit(59, "feet"),
  41179. name: "Left Arm",
  41180. image: {
  41181. source: "./media/characters/zorkaiju/left-arm.svg"
  41182. }
  41183. },
  41184. rightArm: {
  41185. height: math.unit(59, "feet"),
  41186. name: "Right Arm",
  41187. image: {
  41188. source: "./media/characters/zorkaiju/right-arm.svg"
  41189. }
  41190. },
  41191. tail: {
  41192. height: math.unit(104, "feet"),
  41193. name: "Tail",
  41194. image: {
  41195. source: "./media/characters/zorkaiju/tail.svg"
  41196. }
  41197. },
  41198. tailExtended: {
  41199. height: math.unit(104, "feet"),
  41200. name: "Tail (Extended)",
  41201. image: {
  41202. source: "./media/characters/zorkaiju/tail-extended.svg"
  41203. }
  41204. },
  41205. tailBottom: {
  41206. height: math.unit(104, "feet"),
  41207. name: "Tail Bottom",
  41208. image: {
  41209. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41210. }
  41211. },
  41212. crystal: {
  41213. height: math.unit(27.54, "feet"),
  41214. name: "Crystal",
  41215. image: {
  41216. source: "./media/characters/zorkaiju/crystal.svg"
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Kaiju",
  41223. height: math.unit(325, "feet"),
  41224. default: true
  41225. },
  41226. ]
  41227. ))
  41228. characterMakers.push(() => makeCharacter(
  41229. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41230. {
  41231. front: {
  41232. height: math.unit(6 + 1/12, "feet"),
  41233. weight: math.unit(115, "lb"),
  41234. name: "Front",
  41235. image: {
  41236. source: "./media/characters/bailey-belfry/front.svg",
  41237. extra: 1240/1121,
  41238. bottom: 101/1341
  41239. }
  41240. },
  41241. },
  41242. [
  41243. {
  41244. name: "Normal",
  41245. height: math.unit(6 + 1/12, "feet"),
  41246. default: true
  41247. },
  41248. ]
  41249. ))
  41250. characterMakers.push(() => makeCharacter(
  41251. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41252. {
  41253. side: {
  41254. height: math.unit(4, "meters"),
  41255. weight: math.unit(250, "kg"),
  41256. name: "Side",
  41257. image: {
  41258. source: "./media/characters/blacky/side.svg",
  41259. extra: 1027/919,
  41260. bottom: 43/1070
  41261. }
  41262. },
  41263. maw: {
  41264. height: math.unit(1, "meters"),
  41265. name: "Maw",
  41266. image: {
  41267. source: "./media/characters/blacky/maw.svg"
  41268. }
  41269. },
  41270. paw: {
  41271. height: math.unit(1, "meters"),
  41272. name: "Paw",
  41273. image: {
  41274. source: "./media/characters/blacky/paw.svg"
  41275. }
  41276. },
  41277. },
  41278. [
  41279. {
  41280. name: "Normal",
  41281. height: math.unit(4, "meters"),
  41282. default: true
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(170, "cm"),
  41291. weight: math.unit(66, "kg"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/thux-ei/front.svg",
  41295. extra: 1109/1011,
  41296. bottom: 8/1117
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Normal",
  41303. height: math.unit(170, "cm"),
  41304. default: true
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(5, "feet"),
  41313. weight: math.unit(120, "lb"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/roxanne-voltaire/front.svg",
  41317. extra: 1901/1779,
  41318. bottom: 53/1954
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "Normal",
  41325. height: math.unit(5, "feet"),
  41326. default: true
  41327. },
  41328. {
  41329. name: "Giant",
  41330. height: math.unit(50, "feet")
  41331. },
  41332. {
  41333. name: "Titan",
  41334. height: math.unit(500, "feet")
  41335. },
  41336. {
  41337. name: "Macro",
  41338. height: math.unit(5000, "feet")
  41339. },
  41340. {
  41341. name: "Megamacro",
  41342. height: math.unit(50000, "feet")
  41343. },
  41344. {
  41345. name: "Gigamacro",
  41346. height: math.unit(500000, "feet")
  41347. },
  41348. {
  41349. name: "Teramacro",
  41350. height: math.unit(5e6, "feet")
  41351. },
  41352. ]
  41353. ))
  41354. characterMakers.push(() => makeCharacter(
  41355. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41356. {
  41357. front: {
  41358. height: math.unit(6 + 2/12, "feet"),
  41359. name: "Front",
  41360. image: {
  41361. source: "./media/characters/squeaks/front.svg",
  41362. extra: 1823/1768,
  41363. bottom: 138/1961
  41364. }
  41365. },
  41366. },
  41367. [
  41368. {
  41369. name: "Micro",
  41370. height: math.unit(0.5, "inches")
  41371. },
  41372. {
  41373. name: "Normal",
  41374. height: math.unit(6 + 2/12, "feet"),
  41375. default: true
  41376. },
  41377. {
  41378. name: "Macro",
  41379. height: math.unit(600, "feet")
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41385. {
  41386. front: {
  41387. height: math.unit(1.72, "meters"),
  41388. name: "Front",
  41389. image: {
  41390. source: "./media/characters/archinger/front.svg",
  41391. extra: 1861/1675,
  41392. bottom: 125/1986
  41393. }
  41394. },
  41395. back: {
  41396. height: math.unit(1.72, "meters"),
  41397. name: "Back",
  41398. image: {
  41399. source: "./media/characters/archinger/back.svg",
  41400. extra: 1844/1701,
  41401. bottom: 104/1948
  41402. }
  41403. },
  41404. cock: {
  41405. height: math.unit(0.59, "feet"),
  41406. name: "Cock",
  41407. image: {
  41408. source: "./media/characters/archinger/cock.svg"
  41409. }
  41410. },
  41411. },
  41412. [
  41413. {
  41414. name: "Normal",
  41415. height: math.unit(1.72, "meters"),
  41416. default: true
  41417. },
  41418. {
  41419. name: "Macro",
  41420. height: math.unit(84, "meters")
  41421. },
  41422. {
  41423. name: "Macro+",
  41424. height: math.unit(112, "meters")
  41425. },
  41426. {
  41427. name: "Macro++",
  41428. height: math.unit(960, "meters")
  41429. },
  41430. {
  41431. name: "Macro+++",
  41432. height: math.unit(4, "km")
  41433. },
  41434. {
  41435. name: "Macro++++",
  41436. height: math.unit(48, "km")
  41437. },
  41438. {
  41439. name: "Macro+++++",
  41440. height: math.unit(4500, "km")
  41441. },
  41442. ]
  41443. ))
  41444. characterMakers.push(() => makeCharacter(
  41445. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41446. {
  41447. front: {
  41448. height: math.unit(5 + 5/12, "feet"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/alsnapz/front.svg",
  41452. extra: 1157/1065,
  41453. bottom: 42/1199
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(5 + 5/12, "feet"),
  41461. default: true
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41467. {
  41468. side: {
  41469. height: math.unit(3.2, "earths"),
  41470. name: "Side",
  41471. image: {
  41472. source: "./media/characters/mag/side.svg",
  41473. extra: 1331/1008,
  41474. bottom: 52/1383
  41475. }
  41476. },
  41477. wing: {
  41478. height: math.unit(1.94, "earths"),
  41479. name: "Wing",
  41480. image: {
  41481. source: "./media/characters/mag/wing.svg"
  41482. }
  41483. },
  41484. dick: {
  41485. height: math.unit(1.8, "earths"),
  41486. name: "Dick",
  41487. image: {
  41488. source: "./media/characters/mag/dick.svg"
  41489. }
  41490. },
  41491. ass: {
  41492. height: math.unit(1.33, "earths"),
  41493. name: "Ass",
  41494. image: {
  41495. source: "./media/characters/mag/ass.svg"
  41496. }
  41497. },
  41498. head: {
  41499. height: math.unit(1.1, "earths"),
  41500. name: "Head",
  41501. image: {
  41502. source: "./media/characters/mag/head.svg"
  41503. }
  41504. },
  41505. maw: {
  41506. height: math.unit(1.62, "earths"),
  41507. name: "Maw",
  41508. image: {
  41509. source: "./media/characters/mag/maw.svg"
  41510. }
  41511. },
  41512. },
  41513. [
  41514. {
  41515. name: "Small",
  41516. height: math.unit(162, "feet")
  41517. },
  41518. {
  41519. name: "Normal",
  41520. height: math.unit(3.2, "earths"),
  41521. default: true
  41522. },
  41523. ]
  41524. ))
  41525. characterMakers.push(() => makeCharacter(
  41526. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41527. {
  41528. front: {
  41529. height: math.unit(512, "feet"),
  41530. weight: math.unit(63509, "tonnes"),
  41531. name: "Front",
  41532. image: {
  41533. source: "./media/characters/vorrel-harroc/front.svg",
  41534. extra: 1075/1063,
  41535. bottom: 62/1137
  41536. }
  41537. },
  41538. },
  41539. [
  41540. {
  41541. name: "Normal",
  41542. height: math.unit(10, "feet")
  41543. },
  41544. {
  41545. name: "Macro",
  41546. height: math.unit(512, "feet"),
  41547. default: true
  41548. },
  41549. {
  41550. name: "Megamacro",
  41551. height: math.unit(256, "miles")
  41552. },
  41553. {
  41554. name: "Gigamacro",
  41555. height: math.unit(4096, "miles")
  41556. },
  41557. ]
  41558. ))
  41559. characterMakers.push(() => makeCharacter(
  41560. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41561. {
  41562. side: {
  41563. height: math.unit(50, "feet"),
  41564. name: "Side",
  41565. image: {
  41566. source: "./media/characters/froimar/side.svg",
  41567. extra: 855/638,
  41568. bottom: 99/954
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Macro",
  41575. height: math.unit(50, "feet"),
  41576. default: true
  41577. },
  41578. ]
  41579. ))
  41580. characterMakers.push(() => makeCharacter(
  41581. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41582. {
  41583. front: {
  41584. height: math.unit(210, "miles"),
  41585. name: "Front",
  41586. image: {
  41587. source: "./media/characters/timothy/front.svg",
  41588. extra: 1007/943,
  41589. bottom: 62/1069
  41590. }
  41591. },
  41592. frontSkirt: {
  41593. height: math.unit(210, "miles"),
  41594. name: "Front (Skirt)",
  41595. image: {
  41596. source: "./media/characters/timothy/front-skirt.svg",
  41597. extra: 1007/943,
  41598. bottom: 62/1069
  41599. }
  41600. },
  41601. frontCoat: {
  41602. height: math.unit(210, "miles"),
  41603. name: "Front (Coat)",
  41604. image: {
  41605. source: "./media/characters/timothy/front-coat.svg",
  41606. extra: 1007/943,
  41607. bottom: 62/1069
  41608. }
  41609. },
  41610. },
  41611. [
  41612. {
  41613. name: "Macro",
  41614. height: math.unit(210, "miles"),
  41615. default: true
  41616. },
  41617. {
  41618. name: "Megamacro",
  41619. height: math.unit(210000, "miles")
  41620. },
  41621. ]
  41622. ))
  41623. characterMakers.push(() => makeCharacter(
  41624. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41625. {
  41626. front: {
  41627. height: math.unit(188, "feet"),
  41628. name: "Front",
  41629. image: {
  41630. source: "./media/characters/pyotr/front.svg",
  41631. extra: 1912/1826,
  41632. bottom: 18/1930
  41633. }
  41634. },
  41635. },
  41636. [
  41637. {
  41638. name: "Macro",
  41639. height: math.unit(188, "feet"),
  41640. default: true
  41641. },
  41642. {
  41643. name: "Megamacro",
  41644. height: math.unit(8, "miles")
  41645. },
  41646. ]
  41647. ))
  41648. characterMakers.push(() => makeCharacter(
  41649. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41650. {
  41651. side: {
  41652. height: math.unit(10, "feet"),
  41653. weight: math.unit(4500, "lb"),
  41654. name: "Side",
  41655. image: {
  41656. source: "./media/characters/ackart/side.svg",
  41657. extra: 1776/1668,
  41658. bottom: 116/1892
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Normal",
  41665. height: math.unit(10, "feet"),
  41666. default: true
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41672. {
  41673. side: {
  41674. height: math.unit(21, "feet"),
  41675. name: "Side",
  41676. image: {
  41677. source: "./media/characters/nolow/side.svg",
  41678. extra: 1484/1434,
  41679. bottom: 85/1569
  41680. }
  41681. },
  41682. sideErect: {
  41683. height: math.unit(21, "feet"),
  41684. name: "Side-erect",
  41685. image: {
  41686. source: "./media/characters/nolow/side-erect.svg",
  41687. extra: 1484/1434,
  41688. bottom: 85/1569
  41689. }
  41690. },
  41691. },
  41692. [
  41693. {
  41694. name: "Regular",
  41695. height: math.unit(12, "feet")
  41696. },
  41697. {
  41698. name: "Big Chee",
  41699. height: math.unit(21, "feet"),
  41700. default: true
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41706. {
  41707. front: {
  41708. height: math.unit(7, "feet"),
  41709. weight: math.unit(250, "lb"),
  41710. name: "Front",
  41711. image: {
  41712. source: "./media/characters/nines/front.svg",
  41713. extra: 1741/1607,
  41714. bottom: 41/1782
  41715. }
  41716. },
  41717. side: {
  41718. height: math.unit(7, "feet"),
  41719. weight: math.unit(250, "lb"),
  41720. name: "Side",
  41721. image: {
  41722. source: "./media/characters/nines/side.svg",
  41723. extra: 1854/1735,
  41724. bottom: 93/1947
  41725. }
  41726. },
  41727. back: {
  41728. height: math.unit(7, "feet"),
  41729. weight: math.unit(250, "lb"),
  41730. name: "Back",
  41731. image: {
  41732. source: "./media/characters/nines/back.svg",
  41733. extra: 1748/1615,
  41734. bottom: 20/1768
  41735. }
  41736. },
  41737. },
  41738. [
  41739. {
  41740. name: "Megamacro",
  41741. height: math.unit(99, "km"),
  41742. default: true
  41743. },
  41744. ]
  41745. ))
  41746. characterMakers.push(() => makeCharacter(
  41747. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41748. {
  41749. front: {
  41750. height: math.unit(5 + 10/12, "feet"),
  41751. weight: math.unit(210, "lb"),
  41752. name: "Front",
  41753. image: {
  41754. source: "./media/characters/zenith/front.svg",
  41755. extra: 1531/1452,
  41756. bottom: 198/1729
  41757. }
  41758. },
  41759. back: {
  41760. height: math.unit(5 + 10/12, "feet"),
  41761. weight: math.unit(210, "lb"),
  41762. name: "Back",
  41763. image: {
  41764. source: "./media/characters/zenith/back.svg",
  41765. extra: 1571/1487,
  41766. bottom: 75/1646
  41767. }
  41768. },
  41769. },
  41770. [
  41771. {
  41772. name: "Normal",
  41773. height: math.unit(5 + 10/12, "feet"),
  41774. default: true
  41775. }
  41776. ]
  41777. ))
  41778. characterMakers.push(() => makeCharacter(
  41779. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41780. {
  41781. front: {
  41782. height: math.unit(4, "feet"),
  41783. weight: math.unit(60, "lb"),
  41784. name: "Front",
  41785. image: {
  41786. source: "./media/characters/jasper/front.svg",
  41787. extra: 1450/1379,
  41788. bottom: 19/1469
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Normal",
  41795. height: math.unit(4, "feet"),
  41796. default: true
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41802. {
  41803. front: {
  41804. height: math.unit(6 + 5/12, "feet"),
  41805. weight: math.unit(290, "lb"),
  41806. name: "Front",
  41807. image: {
  41808. source: "./media/characters/tiberius-thyben/front.svg",
  41809. extra: 757/739,
  41810. bottom: 39/796
  41811. }
  41812. },
  41813. },
  41814. [
  41815. {
  41816. name: "Micro",
  41817. height: math.unit(1.5, "inches")
  41818. },
  41819. {
  41820. name: "Normal",
  41821. height: math.unit(6 + 5/12, "feet"),
  41822. default: true
  41823. },
  41824. {
  41825. name: "Macro",
  41826. height: math.unit(300, "feet")
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41832. {
  41833. front: {
  41834. height: math.unit(5 + 6/12, "feet"),
  41835. weight: math.unit(60, "kg"),
  41836. name: "Front",
  41837. image: {
  41838. source: "./media/characters/sabre/front.svg",
  41839. extra: 738/671,
  41840. bottom: 27/765
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Teeny",
  41847. height: math.unit(2, "inches")
  41848. },
  41849. {
  41850. name: "Smol",
  41851. height: math.unit(8, "inches")
  41852. },
  41853. {
  41854. name: "Normal",
  41855. height: math.unit(5 + 6/12, "feet"),
  41856. default: true
  41857. },
  41858. {
  41859. name: "Mini-Macro",
  41860. height: math.unit(15, "feet")
  41861. },
  41862. {
  41863. name: "Macro",
  41864. height: math.unit(50, "feet")
  41865. },
  41866. ]
  41867. ))
  41868. characterMakers.push(() => makeCharacter(
  41869. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41870. {
  41871. front: {
  41872. height: math.unit(6 + 4/12, "feet"),
  41873. weight: math.unit(170, "lb"),
  41874. name: "Front",
  41875. image: {
  41876. source: "./media/characters/charlie/front.svg",
  41877. extra: 1348/1228,
  41878. bottom: 15/1363
  41879. }
  41880. },
  41881. },
  41882. [
  41883. {
  41884. name: "Macro",
  41885. height: math.unit(1700, "meters"),
  41886. default: true
  41887. },
  41888. {
  41889. name: "MegaMacro",
  41890. height: math.unit(20400, "meters")
  41891. },
  41892. ]
  41893. ))
  41894. characterMakers.push(() => makeCharacter(
  41895. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41896. {
  41897. front: {
  41898. height: math.unit(6 + 3/12, "feet"),
  41899. weight: math.unit(185, "lb"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/susan-grant/front.svg",
  41903. extra: 1351/1327,
  41904. bottom: 26/1377
  41905. }
  41906. },
  41907. },
  41908. [
  41909. {
  41910. name: "Normal",
  41911. height: math.unit(6 + 3/12, "feet"),
  41912. default: true
  41913. },
  41914. {
  41915. name: "Macro",
  41916. height: math.unit(225, "feet")
  41917. },
  41918. {
  41919. name: "Macro+",
  41920. height: math.unit(900, "feet")
  41921. },
  41922. {
  41923. name: "MegaMacro",
  41924. height: math.unit(14400, "feet")
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41930. {
  41931. front: {
  41932. height: math.unit(5 + 4/12, "feet"),
  41933. weight: math.unit(110, "lb"),
  41934. name: "Front",
  41935. image: {
  41936. source: "./media/characters/axel-isanov/front.svg",
  41937. extra: 1096/1065,
  41938. bottom: 13/1109
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Normal",
  41945. height: math.unit(5 + 4/12, "feet"),
  41946. default: true
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41952. {
  41953. front: {
  41954. height: math.unit(9, "feet"),
  41955. weight: math.unit(467, "lb"),
  41956. name: "Front",
  41957. image: {
  41958. source: "./media/characters/necahual/front.svg",
  41959. extra: 920/873,
  41960. bottom: 26/946
  41961. }
  41962. },
  41963. back: {
  41964. height: math.unit(9, "feet"),
  41965. weight: math.unit(467, "lb"),
  41966. name: "Back",
  41967. image: {
  41968. source: "./media/characters/necahual/back.svg",
  41969. extra: 930/884,
  41970. bottom: 16/946
  41971. }
  41972. },
  41973. frontUnderwear: {
  41974. height: math.unit(9, "feet"),
  41975. weight: math.unit(467, "lb"),
  41976. name: "Front (Underwear)",
  41977. image: {
  41978. source: "./media/characters/necahual/front-underwear.svg",
  41979. extra: 920/873,
  41980. bottom: 26/946
  41981. }
  41982. },
  41983. frontDressed: {
  41984. height: math.unit(9, "feet"),
  41985. weight: math.unit(467, "lb"),
  41986. name: "Front (Dressed)",
  41987. image: {
  41988. source: "./media/characters/necahual/front-dressed.svg",
  41989. extra: 920/873,
  41990. bottom: 26/946
  41991. }
  41992. },
  41993. },
  41994. [
  41995. {
  41996. name: "Comprsesed",
  41997. height: math.unit(9, "feet")
  41998. },
  41999. {
  42000. name: "Natural",
  42001. height: math.unit(15, "feet"),
  42002. default: true
  42003. },
  42004. {
  42005. name: "Boosted",
  42006. height: math.unit(50, "feet")
  42007. },
  42008. {
  42009. name: "Boosted+",
  42010. height: math.unit(150, "feet")
  42011. },
  42012. {
  42013. name: "Max",
  42014. height: math.unit(500, "feet")
  42015. },
  42016. ]
  42017. ))
  42018. characterMakers.push(() => makeCharacter(
  42019. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42020. {
  42021. front: {
  42022. height: math.unit(22 + 1/12, "feet"),
  42023. weight: math.unit(3200, "lb"),
  42024. name: "Front",
  42025. image: {
  42026. source: "./media/characters/theo-acacia/front.svg",
  42027. extra: 1796/1741,
  42028. bottom: 83/1879
  42029. }
  42030. },
  42031. frontUnderwear: {
  42032. height: math.unit(22 + 1/12, "feet"),
  42033. weight: math.unit(3200, "lb"),
  42034. name: "Front (Underwear)",
  42035. image: {
  42036. source: "./media/characters/theo-acacia/front-underwear.svg",
  42037. extra: 1796/1741,
  42038. bottom: 83/1879
  42039. }
  42040. },
  42041. frontNude: {
  42042. height: math.unit(22 + 1/12, "feet"),
  42043. weight: math.unit(3200, "lb"),
  42044. name: "Front (Nude)",
  42045. image: {
  42046. source: "./media/characters/theo-acacia/front-nude.svg",
  42047. extra: 1796/1741,
  42048. bottom: 83/1879
  42049. }
  42050. },
  42051. },
  42052. [
  42053. {
  42054. name: "Normal",
  42055. height: math.unit(22 + 1/12, "feet"),
  42056. default: true
  42057. },
  42058. ]
  42059. ))
  42060. characterMakers.push(() => makeCharacter(
  42061. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42062. {
  42063. front: {
  42064. height: math.unit(20, "feet"),
  42065. name: "Front",
  42066. image: {
  42067. source: "./media/characters/astra/front.svg",
  42068. extra: 1850/1714,
  42069. bottom: 106/1956
  42070. }
  42071. },
  42072. frontUndressed: {
  42073. height: math.unit(20, "feet"),
  42074. name: "Front (Undressed)",
  42075. image: {
  42076. source: "./media/characters/astra/front-undressed.svg",
  42077. extra: 1926/1749,
  42078. bottom: 0/1926
  42079. }
  42080. },
  42081. hand: {
  42082. height: math.unit(1.53, "feet"),
  42083. name: "Hand",
  42084. image: {
  42085. source: "./media/characters/astra/hand.svg"
  42086. }
  42087. },
  42088. paw: {
  42089. height: math.unit(1.53, "feet"),
  42090. name: "Paw",
  42091. image: {
  42092. source: "./media/characters/astra/paw.svg"
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Smallest",
  42099. height: math.unit(20, "feet")
  42100. },
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(1e9, "miles"),
  42104. default: true
  42105. },
  42106. {
  42107. name: "Larger",
  42108. height: math.unit(5, "multiverses")
  42109. },
  42110. {
  42111. name: "Largest",
  42112. height: math.unit(1e9, "multiverses")
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42118. {
  42119. front: {
  42120. height: math.unit(8, "feet"),
  42121. name: "Front",
  42122. image: {
  42123. source: "./media/characters/breanna/front.svg",
  42124. extra: 1912/1632,
  42125. bottom: 33/1945
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Smallest",
  42132. height: math.unit(8, "feet")
  42133. },
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(1, "mile"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Maximum",
  42141. height: math.unit(1500000000000, "lightyears")
  42142. },
  42143. ]
  42144. ))
  42145. characterMakers.push(() => makeCharacter(
  42146. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42147. {
  42148. front: {
  42149. height: math.unit(5 + 11/12, "feet"),
  42150. weight: math.unit(155, "lb"),
  42151. name: "Front",
  42152. image: {
  42153. source: "./media/characters/cai/front.svg",
  42154. extra: 1823/1702,
  42155. bottom: 32/1855
  42156. }
  42157. },
  42158. back: {
  42159. height: math.unit(5 + 11/12, "feet"),
  42160. weight: math.unit(155, "lb"),
  42161. name: "Back",
  42162. image: {
  42163. source: "./media/characters/cai/back.svg",
  42164. extra: 1809/1708,
  42165. bottom: 31/1840
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Normal",
  42172. height: math.unit(5 + 11/12, "feet"),
  42173. default: true
  42174. },
  42175. {
  42176. name: "Big",
  42177. height: math.unit(15, "feet")
  42178. },
  42179. {
  42180. name: "Macro",
  42181. height: math.unit(200, "feet")
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42187. {
  42188. front: {
  42189. height: math.unit(5 + 6/12, "feet"),
  42190. weight: math.unit(160, "lb"),
  42191. name: "Front",
  42192. image: {
  42193. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42194. extra: 1227/1174,
  42195. bottom: 37/1264
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Macro",
  42202. height: math.unit(444, "meters"),
  42203. default: true
  42204. },
  42205. ]
  42206. ))
  42207. characterMakers.push(() => makeCharacter(
  42208. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42209. {
  42210. front: {
  42211. height: math.unit(18 + 7/12, "feet"),
  42212. name: "Front",
  42213. image: {
  42214. source: "./media/characters/rex/front.svg",
  42215. extra: 1941/1807,
  42216. bottom: 66/2007
  42217. }
  42218. },
  42219. back: {
  42220. height: math.unit(18 + 7/12, "feet"),
  42221. name: "Back",
  42222. image: {
  42223. source: "./media/characters/rex/back.svg",
  42224. extra: 1937/1822,
  42225. bottom: 42/1979
  42226. }
  42227. },
  42228. boot: {
  42229. height: math.unit(3.45, "feet"),
  42230. name: "Boot",
  42231. image: {
  42232. source: "./media/characters/rex/boot.svg"
  42233. }
  42234. },
  42235. paw: {
  42236. height: math.unit(4.17, "feet"),
  42237. name: "Paw",
  42238. image: {
  42239. source: "./media/characters/rex/paw.svg"
  42240. }
  42241. },
  42242. head: {
  42243. height: math.unit(6.728, "feet"),
  42244. name: "Head",
  42245. image: {
  42246. source: "./media/characters/rex/head.svg"
  42247. }
  42248. },
  42249. },
  42250. [
  42251. {
  42252. name: "Nano",
  42253. height: math.unit(18 + 7/12, "feet")
  42254. },
  42255. {
  42256. name: "Micro",
  42257. height: math.unit(1.5, "megameters")
  42258. },
  42259. {
  42260. name: "Normal",
  42261. height: math.unit(440, "megameters"),
  42262. default: true
  42263. },
  42264. {
  42265. name: "Macro",
  42266. height: math.unit(2.5, "gigameters")
  42267. },
  42268. {
  42269. name: "Gigamacro",
  42270. height: math.unit(2, "galaxies")
  42271. },
  42272. ]
  42273. ))
  42274. characterMakers.push(() => makeCharacter(
  42275. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42276. {
  42277. side: {
  42278. height: math.unit(32, "feet"),
  42279. weight: math.unit(250000, "lb"),
  42280. name: "Side",
  42281. image: {
  42282. source: "./media/characters/silverwing/side.svg",
  42283. extra: 1100/1019,
  42284. bottom: 204/1304
  42285. }
  42286. },
  42287. },
  42288. [
  42289. {
  42290. name: "Normal",
  42291. height: math.unit(32, "feet"),
  42292. default: true
  42293. },
  42294. ]
  42295. ))
  42296. characterMakers.push(() => makeCharacter(
  42297. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42298. {
  42299. front: {
  42300. height: math.unit(6 + 6/12, "feet"),
  42301. weight: math.unit(350, "lb"),
  42302. name: "Front",
  42303. image: {
  42304. source: "./media/characters/tristan-hawthorne/front.svg",
  42305. extra: 1159/1124,
  42306. bottom: 37/1196
  42307. },
  42308. form: "labrador",
  42309. default: true
  42310. },
  42311. skunkFront: {
  42312. height: math.unit(4 + 6/12, "feet"),
  42313. weight: math.unit(120, "lb"),
  42314. name: "Front",
  42315. image: {
  42316. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42317. extra: 1609/1551,
  42318. bottom: 169/1778
  42319. },
  42320. form: "skunk",
  42321. default: true
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Normal",
  42327. height: math.unit(6 + 6/12, "feet"),
  42328. form: "labrador",
  42329. default: true
  42330. },
  42331. {
  42332. name: "Normal",
  42333. height: math.unit(4 + 6/12, "feet"),
  42334. form: "skunk",
  42335. default: true
  42336. },
  42337. ],
  42338. {
  42339. "labrador": {
  42340. name: "Labrador",
  42341. default: true
  42342. },
  42343. "skunk": {
  42344. name: "Skunk"
  42345. }
  42346. }
  42347. ))
  42348. characterMakers.push(() => makeCharacter(
  42349. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42350. {
  42351. front: {
  42352. height: math.unit(5 + 11/12, "feet"),
  42353. weight: math.unit(190, "lb"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/mizu/front.svg",
  42357. extra: 1988/1788,
  42358. bottom: 14/2002
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(5 + 11/12, "feet"),
  42366. default: true
  42367. },
  42368. ]
  42369. ))
  42370. characterMakers.push(() => makeCharacter(
  42371. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42372. {
  42373. front: {
  42374. height: math.unit(1.7, "feet"),
  42375. weight: math.unit(50, "lb"),
  42376. name: "Front",
  42377. image: {
  42378. source: "./media/characters/dechroma/front.svg",
  42379. extra: 1095/859,
  42380. bottom: 64/1159
  42381. }
  42382. },
  42383. },
  42384. [
  42385. {
  42386. name: "Normal",
  42387. height: math.unit(1.7, "feet"),
  42388. default: true
  42389. },
  42390. ]
  42391. ))
  42392. characterMakers.push(() => makeCharacter(
  42393. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42394. {
  42395. side: {
  42396. height: math.unit(30, "feet"),
  42397. name: "Side",
  42398. image: {
  42399. source: "./media/characters/veluren-thanazel/side.svg",
  42400. extra: 1611/633,
  42401. bottom: 118/1729
  42402. }
  42403. },
  42404. front: {
  42405. height: math.unit(30, "feet"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/veluren-thanazel/front.svg",
  42409. extra: 1486/636,
  42410. bottom: 238/1724
  42411. }
  42412. },
  42413. head: {
  42414. height: math.unit(21.4, "feet"),
  42415. name: "Head",
  42416. image: {
  42417. source: "./media/characters/veluren-thanazel/head.svg"
  42418. }
  42419. },
  42420. genitals: {
  42421. height: math.unit(19.4, "feet"),
  42422. name: "Genitals",
  42423. image: {
  42424. source: "./media/characters/veluren-thanazel/genitals.svg"
  42425. }
  42426. },
  42427. },
  42428. [
  42429. {
  42430. name: "Social",
  42431. height: math.unit(6, "feet")
  42432. },
  42433. {
  42434. name: "Play",
  42435. height: math.unit(12, "feet")
  42436. },
  42437. {
  42438. name: "True",
  42439. height: math.unit(30, "feet"),
  42440. default: true
  42441. },
  42442. ]
  42443. ))
  42444. characterMakers.push(() => makeCharacter(
  42445. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42446. {
  42447. front: {
  42448. height: math.unit(7 + 6/12, "feet"),
  42449. weight: math.unit(500, "kg"),
  42450. name: "Front",
  42451. image: {
  42452. source: "./media/characters/arcturas/front.svg",
  42453. extra: 1700/1500,
  42454. bottom: 145/1845
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Normal",
  42461. height: math.unit(7 + 6/12, "feet"),
  42462. default: true
  42463. },
  42464. ]
  42465. ))
  42466. characterMakers.push(() => makeCharacter(
  42467. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42468. {
  42469. side: {
  42470. height: math.unit(6, "feet"),
  42471. weight: math.unit(2, "tons"),
  42472. name: "Side",
  42473. image: {
  42474. source: "./media/characters/vitaen/side.svg",
  42475. extra: 1157/617,
  42476. bottom: 122/1279
  42477. }
  42478. },
  42479. },
  42480. [
  42481. {
  42482. name: "Normal",
  42483. height: math.unit(6, "feet"),
  42484. default: true
  42485. },
  42486. ]
  42487. ))
  42488. characterMakers.push(() => makeCharacter(
  42489. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42490. {
  42491. front: {
  42492. height: math.unit(19, "feet"),
  42493. name: "Front",
  42494. image: {
  42495. source: "./media/characters/fia-dreamweaver/front.svg",
  42496. extra: 1630/1504,
  42497. bottom: 25/1655
  42498. }
  42499. },
  42500. },
  42501. [
  42502. {
  42503. name: "Normal",
  42504. height: math.unit(19, "feet"),
  42505. default: true
  42506. },
  42507. ]
  42508. ))
  42509. characterMakers.push(() => makeCharacter(
  42510. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42511. {
  42512. front: {
  42513. height: math.unit(5 + 4/12, "feet"),
  42514. name: "Front",
  42515. image: {
  42516. source: "./media/characters/artan/front.svg",
  42517. extra: 1618/1535,
  42518. bottom: 46/1664
  42519. }
  42520. },
  42521. back: {
  42522. height: math.unit(5 + 4/12, "feet"),
  42523. name: "Back",
  42524. image: {
  42525. source: "./media/characters/artan/back.svg",
  42526. extra: 1618/1543,
  42527. bottom: 31/1649
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Normal",
  42534. height: math.unit(5 + 4/12, "feet"),
  42535. default: true
  42536. },
  42537. ]
  42538. ))
  42539. characterMakers.push(() => makeCharacter(
  42540. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42541. {
  42542. side: {
  42543. height: math.unit(182, "cm"),
  42544. weight: math.unit(1000, "lb"),
  42545. name: "Side",
  42546. image: {
  42547. source: "./media/characters/silver-dragon/side.svg",
  42548. extra: 710/287,
  42549. bottom: 88/798
  42550. }
  42551. },
  42552. },
  42553. [
  42554. {
  42555. name: "Normal",
  42556. height: math.unit(182, "cm"),
  42557. default: true
  42558. },
  42559. ]
  42560. ))
  42561. characterMakers.push(() => makeCharacter(
  42562. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42563. {
  42564. side: {
  42565. height: math.unit(6 + 6/12, "feet"),
  42566. weight: math.unit(1.5, "tons"),
  42567. name: "Side",
  42568. image: {
  42569. source: "./media/characters/zephyr/side.svg",
  42570. extra: 1433/586,
  42571. bottom: 109/1542
  42572. }
  42573. },
  42574. },
  42575. [
  42576. {
  42577. name: "Normal",
  42578. height: math.unit(6 + 6/12, "feet"),
  42579. default: true
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42585. {
  42586. side: {
  42587. height: math.unit(1, "feet"),
  42588. name: "Side",
  42589. image: {
  42590. source: "./media/characters/vixye/side.svg",
  42591. extra: 632/541,
  42592. bottom: 0/632
  42593. }
  42594. },
  42595. },
  42596. [
  42597. {
  42598. name: "Normal",
  42599. height: math.unit(1, "feet"),
  42600. default: true
  42601. },
  42602. {
  42603. name: "True",
  42604. height: math.unit(1e15, "multiverses")
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(8 + 2/12, "feet"),
  42613. weight: math.unit(650, "lb"),
  42614. name: "Front",
  42615. image: {
  42616. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42617. extra: 1174/1137,
  42618. bottom: 82/1256
  42619. }
  42620. },
  42621. back: {
  42622. height: math.unit(8 + 2/12, "feet"),
  42623. weight: math.unit(650, "lb"),
  42624. name: "Back",
  42625. image: {
  42626. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42627. extra: 1204/1157,
  42628. bottom: 46/1250
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Wildform",
  42635. height: math.unit(8 + 2/12, "feet"),
  42636. default: true
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(18, "feet"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/cyphin/front.svg",
  42648. extra: 970/886,
  42649. bottom: 42/1012
  42650. }
  42651. },
  42652. back: {
  42653. height: math.unit(18, "feet"),
  42654. name: "Back",
  42655. image: {
  42656. source: "./media/characters/cyphin/back.svg",
  42657. extra: 1009/894,
  42658. bottom: 24/1033
  42659. }
  42660. },
  42661. head: {
  42662. height: math.unit(5.05, "feet"),
  42663. name: "Head",
  42664. image: {
  42665. source: "./media/characters/cyphin/head.svg"
  42666. }
  42667. },
  42668. tailbud: {
  42669. height: math.unit(5, "feet"),
  42670. name: "Tailbud",
  42671. image: {
  42672. source: "./media/characters/cyphin/tailbud.svg"
  42673. }
  42674. },
  42675. },
  42676. [
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42681. {
  42682. side: {
  42683. height: math.unit(10, "feet"),
  42684. weight: math.unit(6, "tons"),
  42685. name: "Side",
  42686. image: {
  42687. source: "./media/characters/raijin/side.svg",
  42688. extra: 1529/613,
  42689. bottom: 337/1866
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(10, "feet"),
  42697. default: true
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42703. {
  42704. side: {
  42705. height: math.unit(9, "feet"),
  42706. name: "Side",
  42707. image: {
  42708. source: "./media/characters/nilghais/side.svg",
  42709. extra: 1047/744,
  42710. bottom: 91/1138
  42711. }
  42712. },
  42713. head: {
  42714. height: math.unit(3.14, "feet"),
  42715. name: "Head",
  42716. image: {
  42717. source: "./media/characters/nilghais/head.svg"
  42718. }
  42719. },
  42720. mouth: {
  42721. height: math.unit(4.6, "feet"),
  42722. name: "Mouth",
  42723. image: {
  42724. source: "./media/characters/nilghais/mouth.svg"
  42725. }
  42726. },
  42727. wings: {
  42728. height: math.unit(24, "feet"),
  42729. name: "Wings",
  42730. image: {
  42731. source: "./media/characters/nilghais/wings.svg"
  42732. }
  42733. },
  42734. ass: {
  42735. height: math.unit(6.12, "feet"),
  42736. name: "Ass",
  42737. image: {
  42738. source: "./media/characters/nilghais/ass.svg"
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(9, "feet"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42752. {
  42753. regular: {
  42754. height: math.unit(16 + 2/12, "feet"),
  42755. weight: math.unit(2300, "lb"),
  42756. name: "Regular",
  42757. image: {
  42758. source: "./media/characters/zolgar/regular.svg",
  42759. extra: 1246/1004,
  42760. bottom: 124/1370
  42761. }
  42762. },
  42763. boxers: {
  42764. height: math.unit(16 + 2/12, "feet"),
  42765. weight: math.unit(2300, "lb"),
  42766. name: "Boxers",
  42767. image: {
  42768. source: "./media/characters/zolgar/boxers.svg",
  42769. extra: 1246/1004,
  42770. bottom: 124/1370
  42771. }
  42772. },
  42773. armored: {
  42774. height: math.unit(16 + 2/12, "feet"),
  42775. weight: math.unit(2300, "lb"),
  42776. name: "Armored",
  42777. image: {
  42778. source: "./media/characters/zolgar/armored.svg",
  42779. extra: 1246/1004,
  42780. bottom: 124/1370
  42781. }
  42782. },
  42783. goth: {
  42784. height: math.unit(16 + 2/12, "feet"),
  42785. weight: math.unit(2300, "lb"),
  42786. name: "Goth",
  42787. image: {
  42788. source: "./media/characters/zolgar/goth.svg",
  42789. extra: 1246/1004,
  42790. bottom: 124/1370
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Shrunken Down",
  42797. height: math.unit(9 + 2/12, "feet")
  42798. },
  42799. {
  42800. name: "Normal",
  42801. height: math.unit(16 + 2/12, "feet"),
  42802. default: true
  42803. },
  42804. ]
  42805. ))
  42806. characterMakers.push(() => makeCharacter(
  42807. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42808. {
  42809. front: {
  42810. height: math.unit(6, "feet"),
  42811. weight: math.unit(168, "lb"),
  42812. name: "Front",
  42813. image: {
  42814. source: "./media/characters/luca/front.svg",
  42815. extra: 841/667,
  42816. bottom: 102/943
  42817. }
  42818. },
  42819. },
  42820. [
  42821. {
  42822. name: "Normal",
  42823. height: math.unit(6, "feet"),
  42824. default: true
  42825. },
  42826. ]
  42827. ))
  42828. characterMakers.push(() => makeCharacter(
  42829. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42830. {
  42831. side: {
  42832. height: math.unit(7 + 3/12, "feet"),
  42833. weight: math.unit(312, "lb"),
  42834. name: "Side",
  42835. image: {
  42836. source: "./media/characters/zezo/side.svg",
  42837. extra: 1192/1067,
  42838. bottom: 63/1255
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Normal",
  42845. height: math.unit(7 + 3/12, "feet"),
  42846. default: true
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42852. {
  42853. front: {
  42854. height: math.unit(5 + 5/12, "feet"),
  42855. weight: math.unit(170, "lb"),
  42856. name: "Front",
  42857. image: {
  42858. source: "./media/characters/mayso/front.svg",
  42859. extra: 1215/1108,
  42860. bottom: 16/1231
  42861. }
  42862. },
  42863. },
  42864. [
  42865. {
  42866. name: "Normal",
  42867. height: math.unit(5 + 5/12, "feet"),
  42868. default: true
  42869. },
  42870. ]
  42871. ))
  42872. characterMakers.push(() => makeCharacter(
  42873. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42874. {
  42875. front: {
  42876. height: math.unit(4 + 3/12, "feet"),
  42877. weight: math.unit(80, "lb"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/hess/front.svg",
  42881. extra: 1200/1123,
  42882. bottom: 16/1216
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Normal",
  42889. height: math.unit(4 + 3/12, "feet"),
  42890. default: true
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42896. {
  42897. front: {
  42898. height: math.unit(1.9, "meters"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/ashgar/front.svg",
  42902. extra: 1177/1146,
  42903. bottom: 99/1276
  42904. }
  42905. },
  42906. back: {
  42907. height: math.unit(1.9, "meters"),
  42908. name: "Back",
  42909. image: {
  42910. source: "./media/characters/ashgar/back.svg",
  42911. extra: 1201/1183,
  42912. bottom: 53/1254
  42913. }
  42914. },
  42915. feral: {
  42916. height: math.unit(1.4, "meters"),
  42917. name: "Feral",
  42918. image: {
  42919. source: "./media/characters/ashgar/feral.svg",
  42920. extra: 370/345,
  42921. bottom: 45/415
  42922. }
  42923. },
  42924. },
  42925. [
  42926. {
  42927. name: "Normal",
  42928. height: math.unit(1.9, "meters"),
  42929. default: true
  42930. },
  42931. ]
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42935. {
  42936. regular: {
  42937. height: math.unit(6, "feet"),
  42938. weight: math.unit(220, "lb"),
  42939. name: "Regular",
  42940. image: {
  42941. source: "./media/characters/phillip/regular.svg",
  42942. extra: 1373/1277,
  42943. bottom: 75/1448
  42944. }
  42945. },
  42946. dressed: {
  42947. height: math.unit(6, "feet"),
  42948. weight: math.unit(220, "lb"),
  42949. name: "Dressed",
  42950. image: {
  42951. source: "./media/characters/phillip/dressed.svg",
  42952. extra: 1373/1277,
  42953. bottom: 75/1448
  42954. }
  42955. },
  42956. paw: {
  42957. height: math.unit(1.44, "feet"),
  42958. name: "Paw",
  42959. image: {
  42960. source: "./media/characters/phillip/paw.svg"
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Normal",
  42967. height: math.unit(6, "feet"),
  42968. default: true
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42974. {
  42975. side: {
  42976. height: math.unit(42, "feet"),
  42977. name: "Side",
  42978. image: {
  42979. source: "./media/characters/uvula/side.svg",
  42980. extra: 683/586,
  42981. bottom: 60/743
  42982. }
  42983. },
  42984. front: {
  42985. height: math.unit(42, "feet"),
  42986. name: "Front",
  42987. image: {
  42988. source: "./media/characters/uvula/front.svg",
  42989. extra: 705/613,
  42990. bottom: 54/759
  42991. }
  42992. },
  42993. maw: {
  42994. height: math.unit(23.5, "feet"),
  42995. name: "Maw",
  42996. image: {
  42997. source: "./media/characters/uvula/maw.svg"
  42998. }
  42999. },
  43000. },
  43001. [
  43002. {
  43003. name: "Original Size",
  43004. height: math.unit(14, "inches")
  43005. },
  43006. {
  43007. name: "Human Size",
  43008. height: math.unit(6, "feet")
  43009. },
  43010. {
  43011. name: "Big",
  43012. height: math.unit(42, "feet"),
  43013. default: true
  43014. },
  43015. {
  43016. name: "Bigger",
  43017. height: math.unit(100, "feet")
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43023. {
  43024. front: {
  43025. height: math.unit(5 + 11/12, "feet"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/lannah/front.svg",
  43029. extra: 1208/1113,
  43030. bottom: 97/1305
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Normal",
  43037. height: math.unit(5 + 11/12, "feet"),
  43038. default: true
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43044. {
  43045. front: {
  43046. height: math.unit(6 + 3/12, "feet"),
  43047. weight: math.unit(3.5, "tons"),
  43048. name: "Front",
  43049. image: {
  43050. source: "./media/characters/emberflame/front.svg",
  43051. extra: 1198/672,
  43052. bottom: 82/1280
  43053. }
  43054. },
  43055. side: {
  43056. height: math.unit(6 + 3/12, "feet"),
  43057. weight: math.unit(3.5, "tons"),
  43058. name: "Side",
  43059. image: {
  43060. source: "./media/characters/emberflame/side.svg",
  43061. extra: 938/527,
  43062. bottom: 56/994
  43063. }
  43064. },
  43065. },
  43066. [
  43067. {
  43068. name: "Normal",
  43069. height: math.unit(6 + 3/12, "feet"),
  43070. default: true
  43071. },
  43072. ]
  43073. ))
  43074. characterMakers.push(() => makeCharacter(
  43075. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43076. {
  43077. side: {
  43078. height: math.unit(17.5, "feet"),
  43079. weight: math.unit(35, "tons"),
  43080. name: "Side",
  43081. image: {
  43082. source: "./media/characters/sophie-ambrose/side.svg",
  43083. extra: 1573/1242,
  43084. bottom: 71/1644
  43085. }
  43086. },
  43087. maw: {
  43088. height: math.unit(7.4, "feet"),
  43089. name: "Maw",
  43090. image: {
  43091. source: "./media/characters/sophie-ambrose/maw.svg"
  43092. }
  43093. },
  43094. },
  43095. [
  43096. {
  43097. name: "Normal",
  43098. height: math.unit(17.5, "feet"),
  43099. default: true
  43100. },
  43101. ]
  43102. ))
  43103. characterMakers.push(() => makeCharacter(
  43104. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43105. {
  43106. front: {
  43107. height: math.unit(280, "feet"),
  43108. weight: math.unit(550, "tons"),
  43109. name: "Front",
  43110. image: {
  43111. source: "./media/characters/king-mugi/front.svg",
  43112. extra: 1102/947,
  43113. bottom: 104/1206
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "King Mugi",
  43120. height: math.unit(280, "feet"),
  43121. default: true
  43122. },
  43123. ]
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43127. {
  43128. front: {
  43129. height: math.unit(64, "meters"),
  43130. name: "Front",
  43131. image: {
  43132. source: "./media/characters/nova-fox/front.svg",
  43133. extra: 1310/1246,
  43134. bottom: 65/1375
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Macro",
  43141. height: math.unit(64, "meters"),
  43142. default: true
  43143. },
  43144. ]
  43145. ))
  43146. characterMakers.push(() => makeCharacter(
  43147. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43148. {
  43149. front: {
  43150. height: math.unit(6 + 3/12, "feet"),
  43151. weight: math.unit(170, "lb"),
  43152. name: "Front",
  43153. image: {
  43154. source: "./media/characters/sam-bat/front.svg",
  43155. extra: 1601/1411,
  43156. bottom: 125/1726
  43157. }
  43158. },
  43159. back: {
  43160. height: math.unit(6 + 3/12, "feet"),
  43161. weight: math.unit(170, "lb"),
  43162. name: "Back",
  43163. image: {
  43164. source: "./media/characters/sam-bat/back.svg",
  43165. extra: 1577/1405,
  43166. bottom: 58/1635
  43167. }
  43168. },
  43169. },
  43170. [
  43171. {
  43172. name: "Normal",
  43173. height: math.unit(6 + 3/12, "feet"),
  43174. default: true
  43175. },
  43176. ]
  43177. ))
  43178. characterMakers.push(() => makeCharacter(
  43179. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43180. {
  43181. front: {
  43182. height: math.unit(59, "feet"),
  43183. weight: math.unit(40000, "lb"),
  43184. name: "Front",
  43185. image: {
  43186. source: "./media/characters/inari/front.svg",
  43187. extra: 1884/1350,
  43188. bottom: 95/1979
  43189. }
  43190. },
  43191. },
  43192. [
  43193. {
  43194. name: "Gigantamax",
  43195. height: math.unit(59, "feet"),
  43196. default: true
  43197. },
  43198. ]
  43199. ))
  43200. characterMakers.push(() => makeCharacter(
  43201. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43202. {
  43203. front: {
  43204. height: math.unit(5 + 8/12, "feet"),
  43205. name: "Front",
  43206. image: {
  43207. source: "./media/characters/elizabeth/front.svg",
  43208. extra: 1395/1298,
  43209. bottom: 54/1449
  43210. }
  43211. },
  43212. mouth: {
  43213. height: math.unit(1.97, "feet"),
  43214. name: "Mouth",
  43215. image: {
  43216. source: "./media/characters/elizabeth/mouth.svg"
  43217. }
  43218. },
  43219. foot: {
  43220. height: math.unit(1.17, "feet"),
  43221. name: "Foot",
  43222. image: {
  43223. source: "./media/characters/elizabeth/foot.svg"
  43224. }
  43225. },
  43226. },
  43227. [
  43228. {
  43229. name: "Normal",
  43230. height: math.unit(5 + 8/12, "feet"),
  43231. default: true
  43232. },
  43233. {
  43234. name: "Minimacro",
  43235. height: math.unit(18, "feet")
  43236. },
  43237. {
  43238. name: "Macro",
  43239. height: math.unit(180, "feet")
  43240. },
  43241. ]
  43242. ))
  43243. characterMakers.push(() => makeCharacter(
  43244. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43245. {
  43246. front: {
  43247. height: math.unit(5 + 2/12, "feet"),
  43248. name: "Front",
  43249. image: {
  43250. source: "./media/characters/october-gossamer/front.svg",
  43251. extra: 505/454,
  43252. bottom: 7/512
  43253. }
  43254. },
  43255. back: {
  43256. height: math.unit(5 + 2/12, "feet"),
  43257. name: "Back",
  43258. image: {
  43259. source: "./media/characters/october-gossamer/back.svg",
  43260. extra: 501/454,
  43261. bottom: 11/512
  43262. }
  43263. },
  43264. },
  43265. [
  43266. {
  43267. name: "Normal",
  43268. height: math.unit(5 + 2/12, "feet"),
  43269. default: true
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43275. {
  43276. front: {
  43277. height: math.unit(5, "feet"),
  43278. name: "Front",
  43279. image: {
  43280. source: "./media/characters/epiglottis/front.svg",
  43281. extra: 923/849,
  43282. bottom: 17/940
  43283. }
  43284. },
  43285. },
  43286. [
  43287. {
  43288. name: "Original Size",
  43289. height: math.unit(10, "inches")
  43290. },
  43291. {
  43292. name: "Human Size",
  43293. height: math.unit(5, "feet"),
  43294. default: true
  43295. },
  43296. {
  43297. name: "Big",
  43298. height: math.unit(25, "feet")
  43299. },
  43300. {
  43301. name: "Bigger",
  43302. height: math.unit(50, "feet")
  43303. },
  43304. {
  43305. name: "oh lawd",
  43306. height: math.unit(75, "feet")
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43312. {
  43313. front: {
  43314. height: math.unit(2 + 4/12, "feet"),
  43315. weight: math.unit(60, "lb"),
  43316. name: "Front",
  43317. image: {
  43318. source: "./media/characters/lerm/front.svg",
  43319. extra: 796/790,
  43320. bottom: 79/875
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Normal",
  43327. height: math.unit(2 + 4/12, "feet"),
  43328. default: true
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43334. {
  43335. front: {
  43336. height: math.unit(5.5, "feet"),
  43337. weight: math.unit(130, "lb"),
  43338. name: "Front",
  43339. image: {
  43340. source: "./media/characters/xena-nebadon/front.svg",
  43341. extra: 1828/1730,
  43342. bottom: 79/1907
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Tiny Puppy",
  43349. height: math.unit(3, "inches")
  43350. },
  43351. {
  43352. name: "Normal",
  43353. height: math.unit(5.5, "feet"),
  43354. default: true
  43355. },
  43356. {
  43357. name: "Lotta Lady",
  43358. height: math.unit(12, "feet")
  43359. },
  43360. {
  43361. name: "Pretty Big",
  43362. height: math.unit(100, "feet")
  43363. },
  43364. {
  43365. name: "Big",
  43366. height: math.unit(500, "feet")
  43367. },
  43368. {
  43369. name: "Skyscraper Toys",
  43370. height: math.unit(2500, "feet")
  43371. },
  43372. {
  43373. name: "Plane Catcher",
  43374. height: math.unit(8, "miles")
  43375. },
  43376. {
  43377. name: "Planet Toys",
  43378. height: math.unit(15, "earths")
  43379. },
  43380. {
  43381. name: "Stardust",
  43382. height: math.unit(0.25, "galaxies")
  43383. },
  43384. {
  43385. name: "Snacks",
  43386. height: math.unit(70, "universes")
  43387. },
  43388. ]
  43389. ))
  43390. characterMakers.push(() => makeCharacter(
  43391. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43392. {
  43393. front: {
  43394. height: math.unit(1.6, "meters"),
  43395. weight: math.unit(60, "kg"),
  43396. name: "Front",
  43397. image: {
  43398. source: "./media/characters/bounty/front.svg",
  43399. extra: 1426/1308,
  43400. bottom: 15/1441
  43401. }
  43402. },
  43403. back: {
  43404. height: math.unit(1.6, "meters"),
  43405. weight: math.unit(60, "kg"),
  43406. name: "Back",
  43407. image: {
  43408. source: "./media/characters/bounty/back.svg",
  43409. extra: 1417/1307,
  43410. bottom: 8/1425
  43411. }
  43412. },
  43413. },
  43414. [
  43415. {
  43416. name: "Normal",
  43417. height: math.unit(1.6, "meters"),
  43418. default: true
  43419. },
  43420. {
  43421. name: "Macro",
  43422. height: math.unit(300, "meters")
  43423. },
  43424. ]
  43425. ))
  43426. characterMakers.push(() => makeCharacter(
  43427. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43428. {
  43429. front: {
  43430. height: math.unit(2 + 8/12, "feet"),
  43431. weight: math.unit(15, "lb"),
  43432. name: "Front",
  43433. image: {
  43434. source: "./media/characters/mochi/front.svg",
  43435. extra: 1022/852,
  43436. bottom: 435/1457
  43437. }
  43438. },
  43439. back: {
  43440. height: math.unit(2 + 8/12, "feet"),
  43441. weight: math.unit(15, "lb"),
  43442. name: "Back",
  43443. image: {
  43444. source: "./media/characters/mochi/back.svg",
  43445. extra: 1335/1119,
  43446. bottom: 39/1374
  43447. }
  43448. },
  43449. bird: {
  43450. height: math.unit(2 + 8/12, "feet"),
  43451. weight: math.unit(15, "lb"),
  43452. name: "Bird",
  43453. image: {
  43454. source: "./media/characters/mochi/bird.svg",
  43455. extra: 1251/1113,
  43456. bottom: 178/1429
  43457. }
  43458. },
  43459. kaiju: {
  43460. height: math.unit(154, "feet"),
  43461. weight: math.unit(1e7, "lb"),
  43462. name: "Kaiju",
  43463. image: {
  43464. source: "./media/characters/mochi/kaiju.svg",
  43465. extra: 460/324,
  43466. bottom: 40/500
  43467. }
  43468. },
  43469. head: {
  43470. height: math.unit(1.21, "feet"),
  43471. name: "Head",
  43472. image: {
  43473. source: "./media/characters/mochi/head.svg"
  43474. }
  43475. },
  43476. alternateTail: {
  43477. height: math.unit(2 + 8/12, "feet"),
  43478. weight: math.unit(45, "lb"),
  43479. name: "Alternate Tail",
  43480. image: {
  43481. source: "./media/characters/mochi/alternate-tail.svg",
  43482. extra: 139/76,
  43483. bottom: 45/184
  43484. }
  43485. },
  43486. },
  43487. [
  43488. {
  43489. name: "Micro",
  43490. height: math.unit(2, "inches")
  43491. },
  43492. {
  43493. name: "Normal",
  43494. height: math.unit(2 + 8/12, "feet"),
  43495. default: true
  43496. },
  43497. {
  43498. name: "Macro",
  43499. height: math.unit(106, "feet")
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43505. {
  43506. front: {
  43507. height: math.unit(5.67, "feet"),
  43508. weight: math.unit(135, "lb"),
  43509. name: "Front",
  43510. image: {
  43511. source: "./media/characters/sarel/front.svg",
  43512. extra: 865/788,
  43513. bottom: 97/962
  43514. }
  43515. },
  43516. back: {
  43517. height: math.unit(5.67, "feet"),
  43518. weight: math.unit(135, "lb"),
  43519. name: "Back",
  43520. image: {
  43521. source: "./media/characters/sarel/back.svg",
  43522. extra: 857/777,
  43523. bottom: 32/889
  43524. }
  43525. },
  43526. chozoan: {
  43527. height: math.unit(5.67, "feet"),
  43528. weight: math.unit(135, "lb"),
  43529. name: "Chozoan",
  43530. image: {
  43531. source: "./media/characters/sarel/chozoan.svg",
  43532. extra: 865/788,
  43533. bottom: 97/962
  43534. }
  43535. },
  43536. current: {
  43537. height: math.unit(5.67, "feet"),
  43538. weight: math.unit(135, "lb"),
  43539. name: "Current",
  43540. image: {
  43541. source: "./media/characters/sarel/current.svg",
  43542. extra: 865/788,
  43543. bottom: 97/962
  43544. }
  43545. },
  43546. head: {
  43547. height: math.unit(1.77, "feet"),
  43548. name: "Head",
  43549. image: {
  43550. source: "./media/characters/sarel/head.svg"
  43551. }
  43552. },
  43553. claws: {
  43554. height: math.unit(1.8, "feet"),
  43555. name: "Claws",
  43556. image: {
  43557. source: "./media/characters/sarel/claws.svg"
  43558. }
  43559. },
  43560. clawsAlt: {
  43561. height: math.unit(1.8, "feet"),
  43562. name: "Claws-alt",
  43563. image: {
  43564. source: "./media/characters/sarel/claws-alt.svg"
  43565. }
  43566. },
  43567. },
  43568. [
  43569. {
  43570. name: "Normal",
  43571. height: math.unit(5.67, "feet"),
  43572. default: true
  43573. },
  43574. ]
  43575. ))
  43576. characterMakers.push(() => makeCharacter(
  43577. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43578. {
  43579. front: {
  43580. height: math.unit(5500, "feet"),
  43581. name: "Front",
  43582. image: {
  43583. source: "./media/characters/alyonia/front.svg",
  43584. extra: 1200/1135,
  43585. bottom: 29/1229
  43586. }
  43587. },
  43588. back: {
  43589. height: math.unit(5500, "feet"),
  43590. name: "Back",
  43591. image: {
  43592. source: "./media/characters/alyonia/back.svg",
  43593. extra: 1205/1138,
  43594. bottom: 10/1215
  43595. }
  43596. },
  43597. },
  43598. [
  43599. {
  43600. name: "Small",
  43601. height: math.unit(10, "feet")
  43602. },
  43603. {
  43604. name: "Macro",
  43605. height: math.unit(500, "feet")
  43606. },
  43607. {
  43608. name: "Mega Macro",
  43609. height: math.unit(5500, "feet"),
  43610. default: true
  43611. },
  43612. {
  43613. name: "Mega Macro+",
  43614. height: math.unit(500000, "feet")
  43615. },
  43616. {
  43617. name: "Giga Macro",
  43618. height: math.unit(3000, "miles")
  43619. },
  43620. {
  43621. name: "Tera Macro",
  43622. height: math.unit(2.8e6, "miles")
  43623. },
  43624. {
  43625. name: "Galactic",
  43626. height: math.unit(120000, "lightyears")
  43627. },
  43628. ]
  43629. ))
  43630. characterMakers.push(() => makeCharacter(
  43631. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43632. {
  43633. werewolf: {
  43634. height: math.unit(8, "feet"),
  43635. weight: math.unit(425, "lb"),
  43636. name: "Werewolf",
  43637. image: {
  43638. source: "./media/characters/autumn/werewolf.svg",
  43639. extra: 2154/2031,
  43640. bottom: 160/2314
  43641. }
  43642. },
  43643. human: {
  43644. height: math.unit(5 + 8/12, "feet"),
  43645. weight: math.unit(150, "lb"),
  43646. name: "Human",
  43647. image: {
  43648. source: "./media/characters/autumn/human.svg",
  43649. extra: 1200/1149,
  43650. bottom: 30/1230
  43651. }
  43652. },
  43653. },
  43654. [
  43655. {
  43656. name: "Normal",
  43657. height: math.unit(8, "feet"),
  43658. default: true
  43659. },
  43660. ]
  43661. ))
  43662. characterMakers.push(() => makeCharacter(
  43663. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43664. {
  43665. front: {
  43666. height: math.unit(8 + 5/12, "feet"),
  43667. weight: math.unit(825, "lb"),
  43668. name: "Front",
  43669. image: {
  43670. source: "./media/characters/cobalt-charizard/front.svg",
  43671. extra: 1268/1155,
  43672. bottom: 122/1390
  43673. }
  43674. },
  43675. side: {
  43676. height: math.unit(8 + 5/12, "feet"),
  43677. weight: math.unit(825, "lb"),
  43678. name: "Side",
  43679. image: {
  43680. source: "./media/characters/cobalt-charizard/side.svg",
  43681. extra: 1348/1257,
  43682. bottom: 58/1406
  43683. }
  43684. },
  43685. gMax: {
  43686. height: math.unit(134 + 11/12, "feet"),
  43687. name: "G-Max",
  43688. image: {
  43689. source: "./media/characters/cobalt-charizard/g-max.svg",
  43690. extra: 1835/1541,
  43691. bottom: 151/1986
  43692. }
  43693. },
  43694. },
  43695. [
  43696. {
  43697. name: "Normal",
  43698. height: math.unit(8 + 5/12, "feet"),
  43699. default: true
  43700. },
  43701. ]
  43702. ))
  43703. characterMakers.push(() => makeCharacter(
  43704. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43705. {
  43706. front: {
  43707. height: math.unit(6 + 3/12, "feet"),
  43708. weight: math.unit(210, "lb"),
  43709. name: "Front",
  43710. image: {
  43711. source: "./media/characters/stella/front.svg",
  43712. extra: 3549/3335,
  43713. bottom: 51/3600
  43714. }
  43715. },
  43716. },
  43717. [
  43718. {
  43719. name: "Normal",
  43720. height: math.unit(6 + 3/12, "feet"),
  43721. default: true
  43722. },
  43723. ]
  43724. ))
  43725. characterMakers.push(() => makeCharacter(
  43726. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43727. {
  43728. front: {
  43729. height: math.unit(5, "feet"),
  43730. weight: math.unit(90, "lb"),
  43731. name: "Front",
  43732. image: {
  43733. source: "./media/characters/riley-bishop/front.svg",
  43734. extra: 1450/1428,
  43735. bottom: 152/1602
  43736. }
  43737. },
  43738. },
  43739. [
  43740. {
  43741. name: "Normal",
  43742. height: math.unit(5, "feet"),
  43743. default: true
  43744. },
  43745. ]
  43746. ))
  43747. characterMakers.push(() => makeCharacter(
  43748. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43749. {
  43750. side: {
  43751. height: math.unit(8 + 2/12, "feet"),
  43752. weight: math.unit(500, "kg"),
  43753. name: "Side",
  43754. image: {
  43755. source: "./media/characters/theo-arcanine/side.svg",
  43756. extra: 1342/1074,
  43757. bottom: 111/1453
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "Normal",
  43764. height: math.unit(8 + 2/12, "feet"),
  43765. default: true
  43766. },
  43767. ]
  43768. ))
  43769. characterMakers.push(() => makeCharacter(
  43770. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43771. {
  43772. front: {
  43773. height: math.unit(4, "feet"),
  43774. name: "Front",
  43775. image: {
  43776. source: "./media/characters/kali/front.svg",
  43777. extra: 1921/1357,
  43778. bottom: 70/1991
  43779. }
  43780. },
  43781. },
  43782. [
  43783. {
  43784. name: "Normal",
  43785. height: math.unit(4, "feet"),
  43786. default: true
  43787. },
  43788. {
  43789. name: "Macro",
  43790. height: math.unit(32, "meters")
  43791. },
  43792. {
  43793. name: "Macro+",
  43794. height: math.unit(150, "meters")
  43795. },
  43796. {
  43797. name: "Megamacro",
  43798. height: math.unit(7500, "meters")
  43799. },
  43800. {
  43801. name: "Megamacro+",
  43802. height: math.unit(80, "kilometers")
  43803. },
  43804. ]
  43805. ))
  43806. characterMakers.push(() => makeCharacter(
  43807. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43808. {
  43809. side: {
  43810. height: math.unit(5 + 11/12, "feet"),
  43811. weight: math.unit(236, "lb"),
  43812. name: "Side",
  43813. image: {
  43814. source: "./media/characters/gapp/side.svg",
  43815. extra: 775/340,
  43816. bottom: 58/833
  43817. }
  43818. },
  43819. mouth: {
  43820. height: math.unit(2.98, "feet"),
  43821. name: "Mouth",
  43822. image: {
  43823. source: "./media/characters/gapp/mouth.svg"
  43824. }
  43825. },
  43826. },
  43827. [
  43828. {
  43829. name: "Normal",
  43830. height: math.unit(5 + 1/12, "feet"),
  43831. default: true
  43832. },
  43833. ]
  43834. ))
  43835. characterMakers.push(() => makeCharacter(
  43836. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43837. {
  43838. front: {
  43839. height: math.unit(6, "feet"),
  43840. name: "Front",
  43841. image: {
  43842. source: "./media/characters/persephone/front.svg",
  43843. extra: 1895/1717,
  43844. bottom: 96/1991
  43845. }
  43846. },
  43847. back: {
  43848. height: math.unit(6, "feet"),
  43849. name: "Back",
  43850. image: {
  43851. source: "./media/characters/persephone/back.svg",
  43852. extra: 1868/1679,
  43853. bottom: 26/1894
  43854. }
  43855. },
  43856. casual: {
  43857. height: math.unit(6, "feet"),
  43858. name: "Casual",
  43859. image: {
  43860. source: "./media/characters/persephone/casual.svg",
  43861. extra: 1713/1541,
  43862. bottom: 76/1789
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Human Size",
  43869. height: math.unit(6, "feet")
  43870. },
  43871. {
  43872. name: "Big Steppy",
  43873. height: math.unit(600, "meters"),
  43874. default: true
  43875. },
  43876. {
  43877. name: "Galaxy Brain",
  43878. height: math.unit(1, "zettameter")
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43884. {
  43885. front: {
  43886. height: math.unit(1.85, "meters"),
  43887. name: "Front",
  43888. image: {
  43889. source: "./media/characters/riley-foxthing/front.svg",
  43890. extra: 1495/1354,
  43891. bottom: 122/1617
  43892. }
  43893. },
  43894. frontAlt: {
  43895. height: math.unit(1.85, "meters"),
  43896. name: "Front (Alt)",
  43897. image: {
  43898. source: "./media/characters/riley-foxthing/front-alt.svg",
  43899. extra: 1572/1389,
  43900. bottom: 116/1688
  43901. }
  43902. },
  43903. },
  43904. [
  43905. {
  43906. name: "Normal Sized",
  43907. height: math.unit(1.85, "meters"),
  43908. default: true
  43909. },
  43910. {
  43911. name: "Quite Sizable",
  43912. height: math.unit(5, "meters")
  43913. },
  43914. {
  43915. name: "Rather Large",
  43916. height: math.unit(20, "meters")
  43917. },
  43918. {
  43919. name: "Macro",
  43920. height: math.unit(450, "meters")
  43921. },
  43922. {
  43923. name: "Giga",
  43924. height: math.unit(5, "km")
  43925. },
  43926. ]
  43927. ))
  43928. characterMakers.push(() => makeCharacter(
  43929. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43930. {
  43931. front: {
  43932. height: math.unit(6, "feet"),
  43933. weight: math.unit(200, "lb"),
  43934. name: "Front",
  43935. image: {
  43936. source: "./media/characters/blizzard/front.svg",
  43937. extra: 1136/990,
  43938. bottom: 136/1272
  43939. }
  43940. },
  43941. back: {
  43942. height: math.unit(6, "feet"),
  43943. weight: math.unit(200, "lb"),
  43944. name: "Back",
  43945. image: {
  43946. source: "./media/characters/blizzard/back.svg",
  43947. extra: 1175/1034,
  43948. bottom: 97/1272
  43949. }
  43950. },
  43951. sitting: {
  43952. height: math.unit(3.725, "feet"),
  43953. weight: math.unit(200, "lb"),
  43954. name: "Sitting",
  43955. image: {
  43956. source: "./media/characters/blizzard/sitting.svg",
  43957. extra: 581/485,
  43958. bottom: 90/671
  43959. }
  43960. },
  43961. frontWizard: {
  43962. height: math.unit(7.9, "feet"),
  43963. weight: math.unit(200, "lb"),
  43964. name: "Front (Wizard)",
  43965. image: {
  43966. source: "./media/characters/blizzard/front-wizard.svg"
  43967. }
  43968. },
  43969. backWizard: {
  43970. height: math.unit(7.9, "feet"),
  43971. weight: math.unit(200, "lb"),
  43972. name: "Back (Wizard)",
  43973. image: {
  43974. source: "./media/characters/blizzard/back-wizard.svg"
  43975. }
  43976. },
  43977. frontNsfw: {
  43978. height: math.unit(6, "feet"),
  43979. weight: math.unit(200, "lb"),
  43980. name: "Front (NSFW)",
  43981. image: {
  43982. source: "./media/characters/blizzard/front-nsfw.svg",
  43983. extra: 1136/990,
  43984. bottom: 136/1272
  43985. }
  43986. },
  43987. backNsfw: {
  43988. height: math.unit(6, "feet"),
  43989. weight: math.unit(200, "lb"),
  43990. name: "Back (NSFW)",
  43991. image: {
  43992. source: "./media/characters/blizzard/back-nsfw.svg",
  43993. extra: 1175/1034,
  43994. bottom: 97/1272
  43995. }
  43996. },
  43997. sittingNsfw: {
  43998. height: math.unit(3.725, "feet"),
  43999. weight: math.unit(200, "lb"),
  44000. name: "Sitting (NSFW)",
  44001. image: {
  44002. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44003. extra: 581/485,
  44004. bottom: 90/671
  44005. }
  44006. },
  44007. wizardFrontNsfw: {
  44008. height: math.unit(7.9, "feet"),
  44009. weight: math.unit(200, "lb"),
  44010. name: "Wizard (Front, NSFW)",
  44011. image: {
  44012. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44013. }
  44014. },
  44015. },
  44016. [
  44017. {
  44018. name: "Normal",
  44019. height: math.unit(6, "feet"),
  44020. default: true
  44021. },
  44022. ]
  44023. ))
  44024. characterMakers.push(() => makeCharacter(
  44025. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44026. {
  44027. front: {
  44028. height: math.unit(5 + 2/12, "feet"),
  44029. name: "Front",
  44030. image: {
  44031. source: "./media/characters/lumi/front.svg",
  44032. extra: 1328/1268,
  44033. bottom: 103/1431
  44034. }
  44035. },
  44036. back: {
  44037. height: math.unit(5 + 2/12, "feet"),
  44038. name: "Back",
  44039. image: {
  44040. source: "./media/characters/lumi/back.svg",
  44041. extra: 1381/1327,
  44042. bottom: 43/1424
  44043. }
  44044. },
  44045. },
  44046. [
  44047. {
  44048. name: "Normal",
  44049. height: math.unit(5 + 2/12, "feet"),
  44050. default: true
  44051. },
  44052. ]
  44053. ))
  44054. characterMakers.push(() => makeCharacter(
  44055. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44056. {
  44057. front: {
  44058. height: math.unit(5 + 9/12, "feet"),
  44059. name: "Front",
  44060. image: {
  44061. source: "./media/characters/aliya-cotton/front.svg",
  44062. extra: 577/564,
  44063. bottom: 29/606
  44064. }
  44065. },
  44066. },
  44067. [
  44068. {
  44069. name: "Normal",
  44070. height: math.unit(5 + 9/12, "feet"),
  44071. default: true
  44072. },
  44073. ]
  44074. ))
  44075. characterMakers.push(() => makeCharacter(
  44076. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44077. {
  44078. front: {
  44079. height: math.unit(2.7, "meters"),
  44080. weight: math.unit(25000, "lb"),
  44081. name: "Front",
  44082. image: {
  44083. source: "./media/characters/noah-luxray/front.svg",
  44084. extra: 1644/825,
  44085. bottom: 339/1983
  44086. }
  44087. },
  44088. side: {
  44089. height: math.unit(2.97, "meters"),
  44090. weight: math.unit(25000, "lb"),
  44091. name: "Side",
  44092. image: {
  44093. source: "./media/characters/noah-luxray/side.svg",
  44094. extra: 1319/650,
  44095. bottom: 163/1482
  44096. }
  44097. },
  44098. dick: {
  44099. height: math.unit(7.4, "feet"),
  44100. weight: math.unit(2500, "lb"),
  44101. name: "Dick",
  44102. image: {
  44103. source: "./media/characters/noah-luxray/dick.svg"
  44104. }
  44105. },
  44106. dickAlt: {
  44107. height: math.unit(10.83, "feet"),
  44108. weight: math.unit(2500, "lb"),
  44109. name: "Dick-alt",
  44110. image: {
  44111. source: "./media/characters/noah-luxray/dick-alt.svg"
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "BIG",
  44118. height: math.unit(2.7, "meters"),
  44119. default: true
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44125. {
  44126. standing: {
  44127. height: math.unit(183, "cm"),
  44128. weight: math.unit(68, "kg"),
  44129. name: "Standing",
  44130. image: {
  44131. source: "./media/characters/arion/standing.svg",
  44132. extra: 1869/1807,
  44133. bottom: 93/1962
  44134. }
  44135. },
  44136. reclining: {
  44137. height: math.unit(70.5, "cm"),
  44138. weight: math.unit(68, "lb"),
  44139. name: "Reclining",
  44140. image: {
  44141. source: "./media/characters/arion/reclining.svg",
  44142. extra: 937/870,
  44143. bottom: 63/1000
  44144. }
  44145. },
  44146. },
  44147. [
  44148. {
  44149. name: "Colossus Size, Low",
  44150. height: math.unit(33, "meters"),
  44151. default: true
  44152. },
  44153. {
  44154. name: "Colossus Size, Mid",
  44155. height: math.unit(52, "meters")
  44156. },
  44157. {
  44158. name: "Colossus Size, High",
  44159. height: math.unit(60, "meters")
  44160. },
  44161. {
  44162. name: "Titan Size, Low",
  44163. height: math.unit(91, "meters"),
  44164. },
  44165. {
  44166. name: "Titan Size, Mid",
  44167. height: math.unit(122, "meters")
  44168. },
  44169. {
  44170. name: "Titan Size, High",
  44171. height: math.unit(162, "meters")
  44172. },
  44173. ]
  44174. ))
  44175. characterMakers.push(() => makeCharacter(
  44176. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44177. {
  44178. front: {
  44179. height: math.unit(53, "meters"),
  44180. name: "Front",
  44181. image: {
  44182. source: "./media/characters/stellar-marbey/front.svg",
  44183. extra: 1913/1805,
  44184. bottom: 92/2005
  44185. }
  44186. },
  44187. back: {
  44188. height: math.unit(53, "meters"),
  44189. name: "Back",
  44190. image: {
  44191. source: "./media/characters/stellar-marbey/back.svg",
  44192. extra: 1960/1851,
  44193. bottom: 28/1988
  44194. }
  44195. },
  44196. mouth: {
  44197. height: math.unit(3.5, "meters"),
  44198. name: "Mouth",
  44199. image: {
  44200. source: "./media/characters/stellar-marbey/mouth.svg"
  44201. }
  44202. },
  44203. },
  44204. [
  44205. {
  44206. name: "Macro",
  44207. height: math.unit(53, "meters"),
  44208. default: true
  44209. },
  44210. ]
  44211. ))
  44212. characterMakers.push(() => makeCharacter(
  44213. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44214. {
  44215. front: {
  44216. height: math.unit(8 + 1/12, "feet"),
  44217. weight: math.unit(233, "lb"),
  44218. name: "Front",
  44219. image: {
  44220. source: "./media/characters/matsu/front.svg",
  44221. extra: 832/772,
  44222. bottom: 40/872
  44223. }
  44224. },
  44225. back: {
  44226. height: math.unit(8 + 1/12, "feet"),
  44227. weight: math.unit(233, "lb"),
  44228. name: "Back",
  44229. image: {
  44230. source: "./media/characters/matsu/back.svg",
  44231. extra: 839/780,
  44232. bottom: 47/886
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(8 + 1/12, "feet"),
  44240. default: true
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(4, "feet"),
  44249. weight: math.unit(148, "lb"),
  44250. name: "Front",
  44251. image: {
  44252. source: "./media/characters/thiz/front.svg",
  44253. extra: 1913/1748,
  44254. bottom: 62/1975
  44255. }
  44256. },
  44257. },
  44258. [
  44259. {
  44260. name: "Normal",
  44261. height: math.unit(4, "feet"),
  44262. default: true
  44263. },
  44264. ]
  44265. ))
  44266. characterMakers.push(() => makeCharacter(
  44267. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44268. {
  44269. front: {
  44270. height: math.unit(7 + 6/12, "feet"),
  44271. weight: math.unit(267, "lb"),
  44272. name: "Front",
  44273. image: {
  44274. source: "./media/characters/marcel/front.svg",
  44275. extra: 1221/1096,
  44276. bottom: 76/1297
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(7 + 6/12, "feet"),
  44284. default: true
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44290. {
  44291. side: {
  44292. height: math.unit(42, "meters"),
  44293. name: "Side",
  44294. image: {
  44295. source: "./media/characters/flake/side.svg",
  44296. extra: 1525/1306,
  44297. bottom: 209/1734
  44298. }
  44299. },
  44300. },
  44301. [
  44302. {
  44303. name: "Normal",
  44304. height: math.unit(42, "meters"),
  44305. default: true
  44306. },
  44307. ]
  44308. ))
  44309. characterMakers.push(() => makeCharacter(
  44310. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44311. {
  44312. dressed: {
  44313. height: math.unit(6 + 4/12, "feet"),
  44314. weight: math.unit(520, "lb"),
  44315. name: "Dressed",
  44316. image: {
  44317. source: "./media/characters/someonne/dressed.svg",
  44318. extra: 1020/1010,
  44319. bottom: 178/1198
  44320. }
  44321. },
  44322. undressed: {
  44323. height: math.unit(6 + 4/12, "feet"),
  44324. weight: math.unit(520, "lb"),
  44325. name: "Undressed",
  44326. image: {
  44327. source: "./media/characters/someonne/undressed.svg",
  44328. extra: 1019/1014,
  44329. bottom: 169/1188
  44330. }
  44331. },
  44332. },
  44333. [
  44334. {
  44335. name: "Normal",
  44336. height: math.unit(6 + 4/12, "feet"),
  44337. default: true
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(3, "feet"),
  44346. weight: math.unit(30, "lb"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/till/front.svg",
  44350. extra: 892/823,
  44351. bottom: 55/947
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Normal",
  44358. height: math.unit(3, "feet"),
  44359. default: true
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(9 + 8/12, "feet"),
  44368. weight: math.unit(800, "lb"),
  44369. name: "Front",
  44370. image: {
  44371. source: "./media/characters/sydney-heki/front.svg",
  44372. extra: 1360/1300,
  44373. bottom: 22/1382
  44374. }
  44375. },
  44376. back: {
  44377. height: math.unit(9 + 8/12, "feet"),
  44378. weight: math.unit(800, "lb"),
  44379. name: "Back",
  44380. image: {
  44381. source: "./media/characters/sydney-heki/back.svg",
  44382. extra: 1356/1293,
  44383. bottom: 12/1368
  44384. }
  44385. },
  44386. frontDressed: {
  44387. height: math.unit(9 + 8/12, "feet"),
  44388. weight: math.unit(800, "lb"),
  44389. name: "Front-dressed",
  44390. image: {
  44391. source: "./media/characters/sydney-heki/front-dressed.svg",
  44392. extra: 1360/1300,
  44393. bottom: 22/1382
  44394. }
  44395. },
  44396. },
  44397. [
  44398. {
  44399. name: "Normal",
  44400. height: math.unit(9 + 8/12, "feet"),
  44401. default: true
  44402. },
  44403. {
  44404. name: "Macro",
  44405. height: math.unit(500, "feet")
  44406. },
  44407. {
  44408. name: "Megamacro",
  44409. height: math.unit(3.6, "miles")
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44415. {
  44416. front: {
  44417. height: math.unit(200, "cm"),
  44418. weight: math.unit(250, "lb"),
  44419. name: "Front",
  44420. image: {
  44421. source: "./media/characters/fowler-karlsson/front.svg",
  44422. extra: 897/845,
  44423. bottom: 123/1020
  44424. }
  44425. },
  44426. back: {
  44427. height: math.unit(200, "cm"),
  44428. weight: math.unit(250, "lb"),
  44429. name: "Back",
  44430. image: {
  44431. source: "./media/characters/fowler-karlsson/back.svg",
  44432. extra: 999/944,
  44433. bottom: 26/1025
  44434. }
  44435. },
  44436. dick: {
  44437. height: math.unit(1.92, "feet"),
  44438. weight: math.unit(150, "lb"),
  44439. name: "Dick",
  44440. image: {
  44441. source: "./media/characters/fowler-karlsson/dick.svg"
  44442. }
  44443. },
  44444. },
  44445. [
  44446. {
  44447. name: "Normal",
  44448. height: math.unit(200, "cm"),
  44449. default: true
  44450. },
  44451. {
  44452. name: "Smaller Macro",
  44453. height: math.unit(90, "m")
  44454. },
  44455. {
  44456. name: "Macro",
  44457. height: math.unit(150, "m")
  44458. },
  44459. {
  44460. name: "Bigger Macro",
  44461. height: math.unit(300, "m")
  44462. },
  44463. ]
  44464. ))
  44465. characterMakers.push(() => makeCharacter(
  44466. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44467. {
  44468. side: {
  44469. height: math.unit(8 + 2/12, "feet"),
  44470. weight: math.unit(1, "tonne"),
  44471. name: "Side",
  44472. image: {
  44473. source: "./media/characters/rylide/side.svg",
  44474. extra: 1318/1034,
  44475. bottom: 106/1424
  44476. }
  44477. },
  44478. sitting: {
  44479. height: math.unit(303, "cm"),
  44480. weight: math.unit(1, "tonne"),
  44481. name: "Sitting",
  44482. image: {
  44483. source: "./media/characters/rylide/sitting.svg",
  44484. extra: 1303/1103,
  44485. bottom: 36/1339
  44486. }
  44487. },
  44488. },
  44489. [
  44490. {
  44491. name: "Normal",
  44492. height: math.unit(8 + 2/12, "feet"),
  44493. default: true
  44494. },
  44495. ]
  44496. ))
  44497. characterMakers.push(() => makeCharacter(
  44498. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44499. {
  44500. front: {
  44501. height: math.unit(5 + 10/12, "feet"),
  44502. weight: math.unit(160, "lb"),
  44503. name: "Front",
  44504. image: {
  44505. source: "./media/characters/pudask/front.svg",
  44506. extra: 1616/1590,
  44507. bottom: 161/1777
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Ferret Height",
  44514. height: math.unit(2 + 5/12, "feet")
  44515. },
  44516. {
  44517. name: "Canon Height",
  44518. height: math.unit(5 + 10/12, "feet"),
  44519. default: true
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(3 + 6/12, "feet"),
  44528. weight: math.unit(60, "lb"),
  44529. name: "Front",
  44530. image: {
  44531. source: "./media/characters/ramita/front.svg",
  44532. extra: 1402/1232,
  44533. bottom: 62/1464
  44534. }
  44535. },
  44536. dressed: {
  44537. height: math.unit(3 + 6/12, "feet"),
  44538. weight: math.unit(60, "lb"),
  44539. name: "Dressed",
  44540. image: {
  44541. source: "./media/characters/ramita/dressed.svg",
  44542. extra: 1534/1249,
  44543. bottom: 50/1584
  44544. }
  44545. },
  44546. },
  44547. [
  44548. {
  44549. name: "Normal",
  44550. height: math.unit(3 + 6/12, "feet"),
  44551. default: true
  44552. },
  44553. ]
  44554. ))
  44555. characterMakers.push(() => makeCharacter(
  44556. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44557. {
  44558. front: {
  44559. height: math.unit(8, "feet"),
  44560. name: "Front",
  44561. image: {
  44562. source: "./media/characters/ark/front.svg",
  44563. extra: 772/693,
  44564. bottom: 45/817
  44565. }
  44566. },
  44567. },
  44568. [
  44569. {
  44570. name: "Normal",
  44571. height: math.unit(8, "feet"),
  44572. default: true
  44573. },
  44574. ]
  44575. ))
  44576. characterMakers.push(() => makeCharacter(
  44577. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44578. {
  44579. front: {
  44580. height: math.unit(6, "feet"),
  44581. weight: math.unit(250, "lb"),
  44582. volume: math.unit(5/8, "gallons"),
  44583. name: "Front",
  44584. image: {
  44585. source: "./media/characters/ludwig-horn/front.svg",
  44586. extra: 1782/1635,
  44587. bottom: 96/1878
  44588. }
  44589. },
  44590. back: {
  44591. height: math.unit(6, "feet"),
  44592. weight: math.unit(250, "lb"),
  44593. volume: math.unit(5/8, "gallons"),
  44594. name: "Back",
  44595. image: {
  44596. source: "./media/characters/ludwig-horn/back.svg",
  44597. extra: 1874/1729,
  44598. bottom: 27/1901
  44599. }
  44600. },
  44601. dick: {
  44602. height: math.unit(1.05, "feet"),
  44603. weight: math.unit(15, "lb"),
  44604. volume: math.unit(5/8, "gallons"),
  44605. name: "Dick",
  44606. image: {
  44607. source: "./media/characters/ludwig-horn/dick.svg"
  44608. }
  44609. },
  44610. },
  44611. [
  44612. {
  44613. name: "Small",
  44614. height: math.unit(6, "feet")
  44615. },
  44616. {
  44617. name: "Typical",
  44618. height: math.unit(12, "feet"),
  44619. default: true
  44620. },
  44621. {
  44622. name: "Building",
  44623. height: math.unit(80, "feet")
  44624. },
  44625. {
  44626. name: "Town",
  44627. height: math.unit(800, "feet")
  44628. },
  44629. {
  44630. name: "Kingdom",
  44631. height: math.unit(80000, "feet")
  44632. },
  44633. {
  44634. name: "Planet",
  44635. height: math.unit(8000000, "feet")
  44636. },
  44637. {
  44638. name: "Universe",
  44639. height: math.unit(8000000000, "feet")
  44640. },
  44641. {
  44642. name: "Transcended",
  44643. height: math.unit(8e27, "feet")
  44644. },
  44645. ]
  44646. ))
  44647. characterMakers.push(() => makeCharacter(
  44648. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44649. {
  44650. front: {
  44651. height: math.unit(5, "feet"),
  44652. weight: math.unit(50, "kg"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/biot-avery/front.svg",
  44656. extra: 1295/1232,
  44657. bottom: 86/1381
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(5, "feet"),
  44665. default: true
  44666. },
  44667. ]
  44668. ))
  44669. characterMakers.push(() => makeCharacter(
  44670. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44671. {
  44672. front: {
  44673. height: math.unit(6, "feet"),
  44674. name: "Front",
  44675. image: {
  44676. source: "./media/characters/kitsune-kiro/front.svg",
  44677. extra: 1270/1158,
  44678. bottom: 42/1312
  44679. }
  44680. },
  44681. frontAlt: {
  44682. height: math.unit(6, "feet"),
  44683. name: "Front-alt",
  44684. image: {
  44685. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44686. extra: 1130/1081,
  44687. bottom: 36/1166
  44688. }
  44689. },
  44690. },
  44691. [
  44692. {
  44693. name: "Smol",
  44694. height: math.unit(3, "feet")
  44695. },
  44696. {
  44697. name: "Normal",
  44698. height: math.unit(6, "feet"),
  44699. default: true
  44700. },
  44701. ]
  44702. ))
  44703. characterMakers.push(() => makeCharacter(
  44704. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44705. {
  44706. front: {
  44707. height: math.unit(6, "feet"),
  44708. weight: math.unit(125, "lb"),
  44709. name: "Front",
  44710. image: {
  44711. source: "./media/characters/jack-thatcher/front.svg",
  44712. extra: 1474/1370,
  44713. bottom: 26/1500
  44714. }
  44715. },
  44716. back: {
  44717. height: math.unit(6, "feet"),
  44718. weight: math.unit(125, "lb"),
  44719. name: "Back",
  44720. image: {
  44721. source: "./media/characters/jack-thatcher/back.svg",
  44722. extra: 1489/1384,
  44723. bottom: 18/1507
  44724. }
  44725. },
  44726. },
  44727. [
  44728. {
  44729. name: "Normal",
  44730. height: math.unit(6, "feet"),
  44731. default: true
  44732. },
  44733. {
  44734. name: "Macro",
  44735. height: math.unit(75, "feet")
  44736. },
  44737. {
  44738. name: "Macro-er",
  44739. height: math.unit(250, "feet")
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44745. {
  44746. front: {
  44747. height: math.unit(7, "feet"),
  44748. weight: math.unit(110, "kg"),
  44749. name: "Front",
  44750. image: {
  44751. source: "./media/characters/max-hyper/front.svg",
  44752. extra: 1969/1881,
  44753. bottom: 49/2018
  44754. }
  44755. },
  44756. },
  44757. [
  44758. {
  44759. name: "Normal",
  44760. height: math.unit(7, "feet"),
  44761. default: true
  44762. },
  44763. ]
  44764. ))
  44765. characterMakers.push(() => makeCharacter(
  44766. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44767. {
  44768. front: {
  44769. height: math.unit(5 + 5/12, "feet"),
  44770. weight: math.unit(160, "lb"),
  44771. name: "Front",
  44772. image: {
  44773. source: "./media/characters/spook/front.svg",
  44774. extra: 794/791,
  44775. bottom: 54/848
  44776. }
  44777. },
  44778. back: {
  44779. height: math.unit(5 + 5/12, "feet"),
  44780. weight: math.unit(160, "lb"),
  44781. name: "Back",
  44782. image: {
  44783. source: "./media/characters/spook/back.svg",
  44784. extra: 812/798,
  44785. bottom: 32/844
  44786. }
  44787. },
  44788. },
  44789. [
  44790. {
  44791. name: "Normal",
  44792. height: math.unit(5 + 5/12, "feet"),
  44793. default: true
  44794. },
  44795. ]
  44796. ))
  44797. characterMakers.push(() => makeCharacter(
  44798. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44799. {
  44800. front: {
  44801. height: math.unit(18, "feet"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/xeaduulix/front.svg",
  44805. extra: 1380/1166,
  44806. bottom: 110/1490
  44807. }
  44808. },
  44809. back: {
  44810. height: math.unit(18, "feet"),
  44811. name: "Back",
  44812. image: {
  44813. source: "./media/characters/xeaduulix/back.svg",
  44814. extra: 1592/1170,
  44815. bottom: 128/1720
  44816. }
  44817. },
  44818. frontNsfw: {
  44819. height: math.unit(18, "feet"),
  44820. name: "Front (NSFW)",
  44821. image: {
  44822. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44823. extra: 1380/1166,
  44824. bottom: 110/1490
  44825. }
  44826. },
  44827. backNsfw: {
  44828. height: math.unit(18, "feet"),
  44829. name: "Back (NSFW)",
  44830. image: {
  44831. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44832. extra: 1592/1170,
  44833. bottom: 128/1720
  44834. }
  44835. },
  44836. },
  44837. [
  44838. {
  44839. name: "Normal",
  44840. height: math.unit(18, "feet"),
  44841. default: true
  44842. },
  44843. ]
  44844. ))
  44845. characterMakers.push(() => makeCharacter(
  44846. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44847. {
  44848. spreadWings: {
  44849. height: math.unit(20, "feet"),
  44850. name: "Spread Wings",
  44851. image: {
  44852. source: "./media/characters/fledge/spread-wings.svg",
  44853. extra: 693/635,
  44854. bottom: 26/719
  44855. }
  44856. },
  44857. front: {
  44858. height: math.unit(20, "feet"),
  44859. name: "Front",
  44860. image: {
  44861. source: "./media/characters/fledge/front.svg",
  44862. extra: 684/637,
  44863. bottom: 18/702
  44864. }
  44865. },
  44866. frontAlt: {
  44867. height: math.unit(20, "feet"),
  44868. name: "Front (Alt)",
  44869. image: {
  44870. source: "./media/characters/fledge/front-alt.svg",
  44871. extra: 708/664,
  44872. bottom: 13/721
  44873. }
  44874. },
  44875. back: {
  44876. height: math.unit(20, "feet"),
  44877. name: "Back",
  44878. image: {
  44879. source: "./media/characters/fledge/back.svg",
  44880. extra: 718/634,
  44881. bottom: 22/740
  44882. }
  44883. },
  44884. head: {
  44885. height: math.unit(5.55, "feet"),
  44886. name: "Head",
  44887. image: {
  44888. source: "./media/characters/fledge/head.svg"
  44889. }
  44890. },
  44891. headAlt: {
  44892. height: math.unit(5.1, "feet"),
  44893. name: "Head (Alt)",
  44894. image: {
  44895. source: "./media/characters/fledge/head-alt.svg"
  44896. }
  44897. },
  44898. },
  44899. [
  44900. {
  44901. name: "Small",
  44902. height: math.unit(6 + 2/12, "feet")
  44903. },
  44904. {
  44905. name: "Big",
  44906. height: math.unit(20, "feet"),
  44907. default: true
  44908. },
  44909. {
  44910. name: "Giant",
  44911. height: math.unit(100, "feet")
  44912. },
  44913. {
  44914. name: "Macro",
  44915. height: math.unit(200, "feet")
  44916. },
  44917. ]
  44918. ))
  44919. characterMakers.push(() => makeCharacter(
  44920. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44921. {
  44922. front: {
  44923. height: math.unit(1, "meter"),
  44924. name: "Front",
  44925. image: {
  44926. source: "./media/characters/atlas-morenai/front.svg",
  44927. extra: 1275/1043,
  44928. bottom: 19/1294
  44929. }
  44930. },
  44931. back: {
  44932. height: math.unit(1, "meter"),
  44933. name: "Back",
  44934. image: {
  44935. source: "./media/characters/atlas-morenai/back.svg",
  44936. extra: 1141/1001,
  44937. bottom: 25/1166
  44938. }
  44939. },
  44940. },
  44941. [
  44942. {
  44943. name: "Normal",
  44944. height: math.unit(1, "meter"),
  44945. default: true
  44946. },
  44947. {
  44948. name: "Magic-Infused",
  44949. height: math.unit(5, "meters")
  44950. },
  44951. ]
  44952. ))
  44953. characterMakers.push(() => makeCharacter(
  44954. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44955. {
  44956. front: {
  44957. height: math.unit(5, "meters"),
  44958. name: "Front",
  44959. image: {
  44960. source: "./media/characters/cintia/front.svg",
  44961. extra: 1312/1228,
  44962. bottom: 38/1350
  44963. }
  44964. },
  44965. back: {
  44966. height: math.unit(5, "meters"),
  44967. name: "Back",
  44968. image: {
  44969. source: "./media/characters/cintia/back.svg",
  44970. extra: 1260/1166,
  44971. bottom: 98/1358
  44972. }
  44973. },
  44974. frontDick: {
  44975. height: math.unit(5, "meters"),
  44976. name: "Front (Dick)",
  44977. image: {
  44978. source: "./media/characters/cintia/front-dick.svg",
  44979. extra: 1312/1228,
  44980. bottom: 38/1350
  44981. }
  44982. },
  44983. backDick: {
  44984. height: math.unit(5, "meters"),
  44985. name: "Back (Dick)",
  44986. image: {
  44987. source: "./media/characters/cintia/back-dick.svg",
  44988. extra: 1260/1166,
  44989. bottom: 98/1358
  44990. }
  44991. },
  44992. bust: {
  44993. height: math.unit(1.97, "meters"),
  44994. name: "Bust",
  44995. image: {
  44996. source: "./media/characters/cintia/bust.svg",
  44997. extra: 617/565,
  44998. bottom: 0/617
  44999. }
  45000. },
  45001. },
  45002. [
  45003. {
  45004. name: "Normal",
  45005. height: math.unit(5, "meters"),
  45006. default: true
  45007. },
  45008. ]
  45009. ))
  45010. characterMakers.push(() => makeCharacter(
  45011. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45012. {
  45013. side: {
  45014. height: math.unit(100, "feet"),
  45015. name: "Side",
  45016. image: {
  45017. source: "./media/characters/denora/side.svg",
  45018. extra: 875/803,
  45019. bottom: 9/884
  45020. }
  45021. },
  45022. },
  45023. [
  45024. {
  45025. name: "Standard",
  45026. height: math.unit(100, "feet"),
  45027. default: true
  45028. },
  45029. {
  45030. name: "Grand",
  45031. height: math.unit(1000, "feet")
  45032. },
  45033. {
  45034. name: "Conquering",
  45035. height: math.unit(10000, "feet")
  45036. },
  45037. ]
  45038. ))
  45039. characterMakers.push(() => makeCharacter(
  45040. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45041. {
  45042. dressed: {
  45043. height: math.unit(8 + 5/12, "feet"),
  45044. weight: math.unit(700, "lb"),
  45045. name: "Dressed",
  45046. image: {
  45047. source: "./media/characters/kiva/dressed.svg",
  45048. extra: 1102/1055,
  45049. bottom: 60/1162
  45050. }
  45051. },
  45052. nude: {
  45053. height: math.unit(8 + 5/12, "feet"),
  45054. weight: math.unit(700, "lb"),
  45055. name: "Nude",
  45056. image: {
  45057. source: "./media/characters/kiva/nude.svg",
  45058. extra: 1102/1055,
  45059. bottom: 60/1162
  45060. }
  45061. },
  45062. },
  45063. [
  45064. {
  45065. name: "Base Height",
  45066. height: math.unit(8 + 5/12, "feet"),
  45067. default: true
  45068. },
  45069. {
  45070. name: "Macro",
  45071. height: math.unit(100, "feet")
  45072. },
  45073. {
  45074. name: "Max",
  45075. height: math.unit(3280, "feet")
  45076. },
  45077. ]
  45078. ))
  45079. characterMakers.push(() => makeCharacter(
  45080. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45081. {
  45082. front: {
  45083. height: math.unit(6 + 8/12, "feet"),
  45084. weight: math.unit(250, "lb"),
  45085. name: "Front",
  45086. image: {
  45087. source: "./media/characters/ztragon/front.svg",
  45088. extra: 1825/1684,
  45089. bottom: 98/1923
  45090. }
  45091. },
  45092. },
  45093. [
  45094. {
  45095. name: "Normal",
  45096. height: math.unit(6 + 8/12, "feet"),
  45097. default: true
  45098. },
  45099. {
  45100. name: "Macro",
  45101. height: math.unit(80, "feet")
  45102. },
  45103. ]
  45104. ))
  45105. characterMakers.push(() => makeCharacter(
  45106. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45107. {
  45108. front: {
  45109. height: math.unit(10.4, "feet"),
  45110. weight: math.unit(2, "tons"),
  45111. name: "Front",
  45112. image: {
  45113. source: "./media/characters/yesenia/front.svg",
  45114. extra: 1479/1474,
  45115. bottom: 233/1712
  45116. }
  45117. },
  45118. },
  45119. [
  45120. {
  45121. name: "Normal",
  45122. height: math.unit(10.4, "feet"),
  45123. default: true
  45124. },
  45125. ]
  45126. ))
  45127. characterMakers.push(() => makeCharacter(
  45128. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45129. {
  45130. normal: {
  45131. height: math.unit(6 + 1/12, "feet"),
  45132. weight: math.unit(180, "lb"),
  45133. name: "Normal",
  45134. image: {
  45135. source: "./media/characters/leanne-lycheborne/normal.svg",
  45136. extra: 1748/1660,
  45137. bottom: 98/1846
  45138. }
  45139. },
  45140. were: {
  45141. height: math.unit(12, "feet"),
  45142. weight: math.unit(1600, "lb"),
  45143. name: "Were",
  45144. image: {
  45145. source: "./media/characters/leanne-lycheborne/were.svg",
  45146. extra: 1485/1432,
  45147. bottom: 66/1551
  45148. }
  45149. },
  45150. },
  45151. [
  45152. {
  45153. name: "Normal",
  45154. height: math.unit(6 + 1/12, "feet"),
  45155. default: true
  45156. },
  45157. ]
  45158. ))
  45159. characterMakers.push(() => makeCharacter(
  45160. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45161. {
  45162. side: {
  45163. height: math.unit(13, "feet"),
  45164. name: "Side",
  45165. image: {
  45166. source: "./media/characters/kira-tyler/side.svg",
  45167. extra: 693/393,
  45168. bottom: 58/751
  45169. }
  45170. },
  45171. },
  45172. [
  45173. {
  45174. name: "Normal",
  45175. height: math.unit(13, "feet"),
  45176. default: true
  45177. },
  45178. ]
  45179. ))
  45180. characterMakers.push(() => makeCharacter(
  45181. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45182. {
  45183. front: {
  45184. height: math.unit(10.3, "feet"),
  45185. weight: math.unit(150, "lb"),
  45186. name: "Front",
  45187. image: {
  45188. source: "./media/characters/blaze/front.svg",
  45189. extra: 1378/1286,
  45190. bottom: 172/1550
  45191. }
  45192. },
  45193. },
  45194. [
  45195. {
  45196. name: "Normal",
  45197. height: math.unit(10.3, "feet"),
  45198. default: true
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45204. {
  45205. side: {
  45206. height: math.unit(2, "meters"),
  45207. weight: math.unit(400, "kg"),
  45208. name: "Side",
  45209. image: {
  45210. source: "./media/characters/anu/side.svg",
  45211. extra: 506/394,
  45212. bottom: 18/524
  45213. }
  45214. },
  45215. },
  45216. [
  45217. {
  45218. name: "Humanoid",
  45219. height: math.unit(2, "meters")
  45220. },
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(5, "meters"),
  45224. default: true
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45230. {
  45231. front: {
  45232. height: math.unit(5 + 5/12, "feet"),
  45233. weight: math.unit(170, "lb"),
  45234. name: "Front",
  45235. image: {
  45236. source: "./media/characters/synx-the-lynx/front.svg",
  45237. extra: 1893/1745,
  45238. bottom: 17/1910
  45239. }
  45240. },
  45241. side: {
  45242. height: math.unit(5 + 5/12, "feet"),
  45243. weight: math.unit(170, "lb"),
  45244. name: "Side",
  45245. image: {
  45246. source: "./media/characters/synx-the-lynx/side.svg",
  45247. extra: 1884/1740,
  45248. bottom: 39/1923
  45249. }
  45250. },
  45251. back: {
  45252. height: math.unit(5 + 5/12, "feet"),
  45253. weight: math.unit(170, "lb"),
  45254. name: "Back",
  45255. image: {
  45256. source: "./media/characters/synx-the-lynx/back.svg",
  45257. extra: 1903/1755,
  45258. bottom: 14/1917
  45259. }
  45260. },
  45261. },
  45262. [
  45263. {
  45264. name: "Normal",
  45265. height: math.unit(5 + 5/12, "feet"),
  45266. default: true
  45267. },
  45268. ]
  45269. ))
  45270. characterMakers.push(() => makeCharacter(
  45271. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45272. {
  45273. back: {
  45274. height: math.unit(15, "feet"),
  45275. name: "Back",
  45276. image: {
  45277. source: "./media/characters/nadezda-fex/back.svg",
  45278. extra: 1695/1481,
  45279. bottom: 25/1720
  45280. }
  45281. },
  45282. },
  45283. [
  45284. {
  45285. name: "Normal",
  45286. height: math.unit(15, "feet"),
  45287. default: true
  45288. },
  45289. {
  45290. name: "Macro",
  45291. height: math.unit(2.5, "miles")
  45292. },
  45293. {
  45294. name: "Goddess",
  45295. height: math.unit(2, "multiverses")
  45296. },
  45297. ]
  45298. ))
  45299. characterMakers.push(() => makeCharacter(
  45300. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45301. {
  45302. front: {
  45303. height: math.unit(216, "cm"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/lev/front.svg",
  45307. extra: 1728/1670,
  45308. bottom: 82/1810
  45309. }
  45310. },
  45311. back: {
  45312. height: math.unit(216, "cm"),
  45313. name: "Back",
  45314. image: {
  45315. source: "./media/characters/lev/back.svg",
  45316. extra: 1738/1675,
  45317. bottom: 24/1762
  45318. }
  45319. },
  45320. dressed: {
  45321. height: math.unit(216, "cm"),
  45322. name: "Dressed",
  45323. image: {
  45324. source: "./media/characters/lev/dressed.svg",
  45325. extra: 1397/1351,
  45326. bottom: 73/1470
  45327. }
  45328. },
  45329. head: {
  45330. height: math.unit(0.51, "meter"),
  45331. name: "Head",
  45332. image: {
  45333. source: "./media/characters/lev/head.svg"
  45334. }
  45335. },
  45336. },
  45337. [
  45338. {
  45339. name: "Normal",
  45340. height: math.unit(216, "cm"),
  45341. default: true
  45342. },
  45343. {
  45344. name: "Relatively Macro",
  45345. height: math.unit(80, "meters")
  45346. },
  45347. {
  45348. name: "Megamacro",
  45349. height: math.unit(21600, "meters")
  45350. },
  45351. {
  45352. name: "Megamacro+",
  45353. height: math.unit(64800, "meters")
  45354. },
  45355. ]
  45356. ))
  45357. characterMakers.push(() => makeCharacter(
  45358. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45359. {
  45360. front: {
  45361. height: math.unit(2, "meters"),
  45362. weight: math.unit(80, "kg"),
  45363. name: "Front",
  45364. image: {
  45365. source: "./media/characters/moka/front.svg",
  45366. extra: 1337/1255,
  45367. bottom: 58/1395
  45368. }
  45369. },
  45370. },
  45371. [
  45372. {
  45373. name: "Micro",
  45374. height: math.unit(15, "cm")
  45375. },
  45376. {
  45377. name: "Normal",
  45378. height: math.unit(2, "meters"),
  45379. default: true
  45380. },
  45381. {
  45382. name: "Macro",
  45383. height: math.unit(20, "meters"),
  45384. },
  45385. ]
  45386. ))
  45387. characterMakers.push(() => makeCharacter(
  45388. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45389. {
  45390. front: {
  45391. height: math.unit(9, "feet"),
  45392. weight: math.unit(240, "lb"),
  45393. name: "Front",
  45394. image: {
  45395. source: "./media/characters/kuzco/front.svg",
  45396. extra: 1593/1487,
  45397. bottom: 32/1625
  45398. }
  45399. },
  45400. side: {
  45401. height: math.unit(9, "feet"),
  45402. weight: math.unit(240, "lb"),
  45403. name: "Side",
  45404. image: {
  45405. source: "./media/characters/kuzco/side.svg",
  45406. extra: 1575/1485,
  45407. bottom: 30/1605
  45408. }
  45409. },
  45410. back: {
  45411. height: math.unit(9, "feet"),
  45412. weight: math.unit(240, "lb"),
  45413. name: "Back",
  45414. image: {
  45415. source: "./media/characters/kuzco/back.svg",
  45416. extra: 1603/1514,
  45417. bottom: 14/1617
  45418. }
  45419. },
  45420. },
  45421. [
  45422. {
  45423. name: "Normal",
  45424. height: math.unit(9, "feet"),
  45425. default: true
  45426. },
  45427. ]
  45428. ))
  45429. characterMakers.push(() => makeCharacter(
  45430. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45431. {
  45432. side: {
  45433. height: math.unit(2, "meters"),
  45434. weight: math.unit(300, "kg"),
  45435. name: "Side",
  45436. image: {
  45437. source: "./media/characters/ceruleus/side.svg",
  45438. extra: 1068/974,
  45439. bottom: 126/1194
  45440. }
  45441. },
  45442. },
  45443. [
  45444. {
  45445. name: "Normal",
  45446. height: math.unit(16, "meters"),
  45447. default: true
  45448. },
  45449. ]
  45450. ))
  45451. characterMakers.push(() => makeCharacter(
  45452. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45453. {
  45454. front: {
  45455. height: math.unit(9, "feet"),
  45456. weight: math.unit(500, "kg"),
  45457. name: "Front",
  45458. image: {
  45459. source: "./media/characters/acouya/front.svg",
  45460. extra: 1660/1473,
  45461. bottom: 28/1688
  45462. }
  45463. },
  45464. },
  45465. [
  45466. {
  45467. name: "Normal",
  45468. height: math.unit(9, "feet"),
  45469. default: true
  45470. },
  45471. ]
  45472. ))
  45473. characterMakers.push(() => makeCharacter(
  45474. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45475. {
  45476. front: {
  45477. height: math.unit(5 + 6/12, "feet"),
  45478. weight: math.unit(195, "lb"),
  45479. name: "Front",
  45480. image: {
  45481. source: "./media/characters/vant/front.svg",
  45482. extra: 1396/1320,
  45483. bottom: 20/1416
  45484. }
  45485. },
  45486. back: {
  45487. height: math.unit(5 + 6/12, "feet"),
  45488. weight: math.unit(195, "lb"),
  45489. name: "Back",
  45490. image: {
  45491. source: "./media/characters/vant/back.svg",
  45492. extra: 1396/1320,
  45493. bottom: 20/1416
  45494. }
  45495. },
  45496. maw: {
  45497. height: math.unit(0.75, "feet"),
  45498. name: "Maw",
  45499. image: {
  45500. source: "./media/characters/vant/maw.svg"
  45501. }
  45502. },
  45503. paw: {
  45504. height: math.unit(1.07, "feet"),
  45505. name: "Paw",
  45506. image: {
  45507. source: "./media/characters/vant/paw.svg"
  45508. }
  45509. },
  45510. },
  45511. [
  45512. {
  45513. name: "Micro",
  45514. height: math.unit(0.25, "inches")
  45515. },
  45516. {
  45517. name: "Normal",
  45518. height: math.unit(5 + 6/12, "feet"),
  45519. default: true
  45520. },
  45521. {
  45522. name: "Macro",
  45523. height: math.unit(75, "feet")
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45529. {
  45530. front: {
  45531. height: math.unit(30, "meters"),
  45532. weight: math.unit(363, "tons"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/ahra/front.svg",
  45536. extra: 1914/1814,
  45537. bottom: 46/1960
  45538. }
  45539. },
  45540. },
  45541. [
  45542. {
  45543. name: "Macro",
  45544. height: math.unit(30, "meters"),
  45545. default: true
  45546. },
  45547. ]
  45548. ))
  45549. characterMakers.push(() => makeCharacter(
  45550. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45551. {
  45552. undressed: {
  45553. height: math.unit(2, "m"),
  45554. weight: math.unit(250, "kg"),
  45555. name: "Undressed",
  45556. image: {
  45557. source: "./media/characters/coriander/undressed.svg",
  45558. extra: 1757/1606,
  45559. bottom: 107/1864
  45560. }
  45561. },
  45562. dressed: {
  45563. height: math.unit(2, "m"),
  45564. weight: math.unit(250, "kg"),
  45565. name: "Dressed",
  45566. image: {
  45567. source: "./media/characters/coriander/dressed.svg",
  45568. extra: 1757/1606,
  45569. bottom: 107/1864
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Normal",
  45576. height: math.unit(4, "meters"),
  45577. default: true
  45578. },
  45579. {
  45580. name: "XL",
  45581. height: math.unit(6, "meters")
  45582. },
  45583. {
  45584. name: "XXL",
  45585. height: math.unit(8, "meters")
  45586. },
  45587. ]
  45588. ))
  45589. characterMakers.push(() => makeCharacter(
  45590. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45591. {
  45592. front: {
  45593. height: math.unit(6, "feet"),
  45594. name: "Front",
  45595. image: {
  45596. source: "./media/characters/syrinx/front.svg",
  45597. extra: 1557/1259,
  45598. bottom: 171/1728
  45599. }
  45600. },
  45601. },
  45602. [
  45603. {
  45604. name: "Normal",
  45605. height: math.unit(6 + 3/12, "feet"),
  45606. default: true
  45607. },
  45608. ]
  45609. ))
  45610. characterMakers.push(() => makeCharacter(
  45611. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45612. {
  45613. front: {
  45614. height: math.unit(11 + 6/12, "feet"),
  45615. weight: math.unit(1.5, "tons"),
  45616. name: "Front",
  45617. image: {
  45618. source: "./media/characters/bor/front.svg",
  45619. extra: 1189/1109,
  45620. bottom: 170/1359
  45621. }
  45622. },
  45623. },
  45624. [
  45625. {
  45626. name: "Normal",
  45627. height: math.unit(11 + 6/12, "feet"),
  45628. default: true
  45629. },
  45630. {
  45631. name: "Macro",
  45632. height: math.unit(32 + 9/12, "feet")
  45633. },
  45634. ]
  45635. ))
  45636. characterMakers.push(() => makeCharacter(
  45637. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45638. {
  45639. anthro: {
  45640. height: math.unit(9, "feet"),
  45641. weight: math.unit(2076, "lb"),
  45642. name: "Anthro",
  45643. image: {
  45644. source: "./media/characters/abacus/anthro.svg",
  45645. extra: 1540/1494,
  45646. bottom: 233/1773
  45647. }
  45648. },
  45649. pigeon: {
  45650. height: math.unit(1, "feet"),
  45651. name: "Pigeon",
  45652. image: {
  45653. source: "./media/characters/abacus/pigeon.svg",
  45654. extra: 528/525,
  45655. bottom: 46/574
  45656. }
  45657. },
  45658. },
  45659. [
  45660. {
  45661. name: "Normal",
  45662. height: math.unit(9, "feet"),
  45663. default: true
  45664. },
  45665. ]
  45666. ))
  45667. characterMakers.push(() => makeCharacter(
  45668. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45669. {
  45670. side: {
  45671. height: math.unit(6, "feet"),
  45672. name: "Side",
  45673. image: {
  45674. source: "./media/characters/delkhan/side.svg",
  45675. extra: 1884/1786,
  45676. bottom: 308/2192
  45677. }
  45678. },
  45679. head: {
  45680. height: math.unit(3.38, "feet"),
  45681. name: "Head",
  45682. image: {
  45683. source: "./media/characters/delkhan/head.svg"
  45684. }
  45685. },
  45686. },
  45687. [
  45688. {
  45689. name: "Normal",
  45690. height: math.unit(72, "feet"),
  45691. default: true
  45692. },
  45693. {
  45694. name: "Giant",
  45695. height: math.unit(172, "feet")
  45696. },
  45697. ]
  45698. ))
  45699. characterMakers.push(() => makeCharacter(
  45700. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45701. {
  45702. standing: {
  45703. height: math.unit(6, "feet"),
  45704. name: "Standing",
  45705. image: {
  45706. source: "./media/characters/euchidat/standing.svg",
  45707. extra: 1612/1553,
  45708. bottom: 116/1728
  45709. }
  45710. },
  45711. leaning: {
  45712. height: math.unit(6, "feet"),
  45713. name: "Leaning",
  45714. image: {
  45715. source: "./media/characters/euchidat/leaning.svg",
  45716. extra: 1719/1674,
  45717. bottom: 27/1746
  45718. }
  45719. },
  45720. },
  45721. [
  45722. {
  45723. name: "Normal",
  45724. height: math.unit(175, "feet"),
  45725. default: true
  45726. },
  45727. {
  45728. name: "Megamacro",
  45729. height: math.unit(190, "miles")
  45730. },
  45731. {
  45732. name: "Gigamacro",
  45733. height: math.unit(190000, "miles")
  45734. },
  45735. ]
  45736. ))
  45737. characterMakers.push(() => makeCharacter(
  45738. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45739. {
  45740. front: {
  45741. height: math.unit(6, "feet"),
  45742. weight: math.unit(150, "lb"),
  45743. name: "Front",
  45744. image: {
  45745. source: "./media/characters/rebecca-stack/front.svg",
  45746. extra: 1256/1201,
  45747. bottom: 18/1274
  45748. }
  45749. },
  45750. },
  45751. [
  45752. {
  45753. name: "Normal",
  45754. height: math.unit(5 + 8/12, "feet"),
  45755. default: true
  45756. },
  45757. {
  45758. name: "Demolitionist",
  45759. height: math.unit(200, "feet")
  45760. },
  45761. {
  45762. name: "Out of Control",
  45763. height: math.unit(2, "miles")
  45764. },
  45765. {
  45766. name: "Giga",
  45767. height: math.unit(7200, "miles")
  45768. },
  45769. ]
  45770. ))
  45771. characterMakers.push(() => makeCharacter(
  45772. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45773. {
  45774. front: {
  45775. height: math.unit(6, "feet"),
  45776. weight: math.unit(150, "lb"),
  45777. name: "Front",
  45778. image: {
  45779. source: "./media/characters/jenny-cartwright/front.svg",
  45780. extra: 1384/1376,
  45781. bottom: 58/1442
  45782. }
  45783. },
  45784. },
  45785. [
  45786. {
  45787. name: "Normal",
  45788. height: math.unit(6 + 7/12, "feet"),
  45789. default: true
  45790. },
  45791. {
  45792. name: "Librarian",
  45793. height: math.unit(55, "feet")
  45794. },
  45795. {
  45796. name: "Sightseer",
  45797. height: math.unit(50, "miles")
  45798. },
  45799. {
  45800. name: "Giga",
  45801. height: math.unit(30000, "miles")
  45802. },
  45803. ]
  45804. ))
  45805. characterMakers.push(() => makeCharacter(
  45806. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45807. {
  45808. nude: {
  45809. height: math.unit(8, "feet"),
  45810. weight: math.unit(225, "lb"),
  45811. name: "Nude",
  45812. image: {
  45813. source: "./media/characters/marvy/nude.svg",
  45814. extra: 1900/1683,
  45815. bottom: 89/1989
  45816. }
  45817. },
  45818. dressed: {
  45819. height: math.unit(8, "feet"),
  45820. weight: math.unit(225, "lb"),
  45821. name: "Dressed",
  45822. image: {
  45823. source: "./media/characters/marvy/dressed.svg",
  45824. extra: 1900/1683,
  45825. bottom: 89/1989
  45826. }
  45827. },
  45828. head: {
  45829. height: math.unit(2.85, "feet"),
  45830. name: "Head",
  45831. image: {
  45832. source: "./media/characters/marvy/head.svg"
  45833. }
  45834. },
  45835. },
  45836. [
  45837. {
  45838. name: "Normal",
  45839. height: math.unit(8, "feet"),
  45840. default: true
  45841. },
  45842. ]
  45843. ))
  45844. characterMakers.push(() => makeCharacter(
  45845. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45846. {
  45847. front: {
  45848. height: math.unit(8, "feet"),
  45849. weight: math.unit(250, "lb"),
  45850. name: "Front",
  45851. image: {
  45852. source: "./media/characters/leah/front.svg",
  45853. extra: 1257/1149,
  45854. bottom: 109/1366
  45855. }
  45856. },
  45857. },
  45858. [
  45859. {
  45860. name: "Normal",
  45861. height: math.unit(8, "feet"),
  45862. default: true
  45863. },
  45864. {
  45865. name: "Minimacro",
  45866. height: math.unit(40, "feet")
  45867. },
  45868. {
  45869. name: "Macro",
  45870. height: math.unit(124, "feet")
  45871. },
  45872. {
  45873. name: "Megamacro",
  45874. height: math.unit(850, "feet")
  45875. },
  45876. ]
  45877. ))
  45878. characterMakers.push(() => makeCharacter(
  45879. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45880. {
  45881. side: {
  45882. height: math.unit(13 + 6/12, "feet"),
  45883. weight: math.unit(3200, "lb"),
  45884. name: "Side",
  45885. image: {
  45886. source: "./media/characters/alvir/side.svg",
  45887. extra: 896/589,
  45888. bottom: 26/922
  45889. }
  45890. },
  45891. },
  45892. [
  45893. {
  45894. name: "Normal",
  45895. height: math.unit(13 + 6/12, "feet"),
  45896. default: true
  45897. },
  45898. ]
  45899. ))
  45900. characterMakers.push(() => makeCharacter(
  45901. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45902. {
  45903. front: {
  45904. height: math.unit(5 + 4/12, "feet"),
  45905. weight: math.unit(236, "lb"),
  45906. name: "Front",
  45907. image: {
  45908. source: "./media/characters/zaina-khalil/front.svg",
  45909. extra: 1533/1485,
  45910. bottom: 94/1627
  45911. }
  45912. },
  45913. side: {
  45914. height: math.unit(5 + 4/12, "feet"),
  45915. weight: math.unit(236, "lb"),
  45916. name: "Side",
  45917. image: {
  45918. source: "./media/characters/zaina-khalil/side.svg",
  45919. extra: 1537/1498,
  45920. bottom: 66/1603
  45921. }
  45922. },
  45923. back: {
  45924. height: math.unit(5 + 4/12, "feet"),
  45925. weight: math.unit(236, "lb"),
  45926. name: "Back",
  45927. image: {
  45928. source: "./media/characters/zaina-khalil/back.svg",
  45929. extra: 1546/1494,
  45930. bottom: 89/1635
  45931. }
  45932. },
  45933. },
  45934. [
  45935. {
  45936. name: "Normal",
  45937. height: math.unit(5 + 4/12, "feet"),
  45938. default: true
  45939. },
  45940. ]
  45941. ))
  45942. characterMakers.push(() => makeCharacter(
  45943. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45944. {
  45945. side: {
  45946. height: math.unit(12, "feet"),
  45947. weight: math.unit(4000, "lb"),
  45948. name: "Side",
  45949. image: {
  45950. source: "./media/characters/terry/side.svg",
  45951. extra: 1518/1439,
  45952. bottom: 149/1667
  45953. }
  45954. },
  45955. },
  45956. [
  45957. {
  45958. name: "Normal",
  45959. height: math.unit(12, "feet"),
  45960. default: true
  45961. },
  45962. ]
  45963. ))
  45964. characterMakers.push(() => makeCharacter(
  45965. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45966. {
  45967. front: {
  45968. height: math.unit(12, "feet"),
  45969. weight: math.unit(1500, "lb"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/kahea/front.svg",
  45973. extra: 1722/1617,
  45974. bottom: 179/1901
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Normal",
  45981. height: math.unit(12, "feet"),
  45982. default: true
  45983. },
  45984. ]
  45985. ))
  45986. characterMakers.push(() => makeCharacter(
  45987. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45988. {
  45989. demonFront: {
  45990. height: math.unit(36, "feet"),
  45991. name: "Front",
  45992. image: {
  45993. source: "./media/characters/alex-xuria/demon-front.svg",
  45994. extra: 1705/1673,
  45995. bottom: 198/1903
  45996. },
  45997. form: "demon",
  45998. default: true
  45999. },
  46000. demonBack: {
  46001. height: math.unit(36, "feet"),
  46002. name: "Back",
  46003. image: {
  46004. source: "./media/characters/alex-xuria/demon-back.svg",
  46005. extra: 1725/1693,
  46006. bottom: 70/1795
  46007. },
  46008. form: "demon"
  46009. },
  46010. demonHead: {
  46011. height: math.unit(2.14, "meters"),
  46012. name: "Head",
  46013. image: {
  46014. source: "./media/characters/alex-xuria/demon-head.svg"
  46015. },
  46016. form: "demon"
  46017. },
  46018. demonHand: {
  46019. height: math.unit(1.61, "meters"),
  46020. name: "Hand",
  46021. image: {
  46022. source: "./media/characters/alex-xuria/demon-hand.svg"
  46023. },
  46024. form: "demon"
  46025. },
  46026. demonPaw: {
  46027. height: math.unit(1.35, "meters"),
  46028. name: "Paw",
  46029. image: {
  46030. source: "./media/characters/alex-xuria/demon-paw.svg"
  46031. },
  46032. form: "demon"
  46033. },
  46034. demonFoot: {
  46035. height: math.unit(2.2, "meters"),
  46036. name: "Foot",
  46037. image: {
  46038. source: "./media/characters/alex-xuria/demon-foot.svg"
  46039. },
  46040. form: "demon"
  46041. },
  46042. demonCock: {
  46043. height: math.unit(1.74, "meters"),
  46044. name: "Cock",
  46045. image: {
  46046. source: "./media/characters/alex-xuria/demon-cock.svg"
  46047. },
  46048. form: "demon"
  46049. },
  46050. demonTailClosed: {
  46051. height: math.unit(1.47, "meters"),
  46052. name: "Tail (Closed)",
  46053. image: {
  46054. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46055. },
  46056. form: "demon"
  46057. },
  46058. demonTailOpen: {
  46059. height: math.unit(2.85, "meters"),
  46060. name: "Tail (Open)",
  46061. image: {
  46062. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46063. },
  46064. form: "demon"
  46065. },
  46066. incubusFront: {
  46067. height: math.unit(12, "feet"),
  46068. name: "Front",
  46069. image: {
  46070. source: "./media/characters/alex-xuria/incubus-front.svg",
  46071. extra: 1754/1677,
  46072. bottom: 125/1879
  46073. },
  46074. form: "incubus",
  46075. default: true
  46076. },
  46077. incubusBack: {
  46078. height: math.unit(12, "feet"),
  46079. name: "Back",
  46080. image: {
  46081. source: "./media/characters/alex-xuria/incubus-back.svg",
  46082. extra: 1702/1647,
  46083. bottom: 30/1732
  46084. },
  46085. form: "incubus"
  46086. },
  46087. incubusHead: {
  46088. height: math.unit(3.45, "feet"),
  46089. name: "Head",
  46090. image: {
  46091. source: "./media/characters/alex-xuria/incubus-head.svg"
  46092. },
  46093. form: "incubus"
  46094. },
  46095. rabbitFront: {
  46096. height: math.unit(6, "feet"),
  46097. name: "Front",
  46098. image: {
  46099. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46100. extra: 1369/1349,
  46101. bottom: 45/1414
  46102. },
  46103. form: "rabbit",
  46104. default: true
  46105. },
  46106. rabbitSide: {
  46107. height: math.unit(6, "feet"),
  46108. name: "Side",
  46109. image: {
  46110. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46111. extra: 1370/1356,
  46112. bottom: 37/1407
  46113. },
  46114. form: "rabbit"
  46115. },
  46116. rabbitBack: {
  46117. height: math.unit(6, "feet"),
  46118. name: "Back",
  46119. image: {
  46120. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46121. extra: 1375/1358,
  46122. bottom: 43/1418
  46123. },
  46124. form: "rabbit"
  46125. },
  46126. },
  46127. [
  46128. {
  46129. name: "Normal",
  46130. height: math.unit(6, "feet"),
  46131. default: true,
  46132. form: "rabbit"
  46133. },
  46134. {
  46135. name: "Incubus",
  46136. height: math.unit(12, "feet"),
  46137. default: true,
  46138. form: "incubus"
  46139. },
  46140. {
  46141. name: "Demon",
  46142. height: math.unit(36, "feet"),
  46143. default: true,
  46144. form: "demon"
  46145. }
  46146. ],
  46147. {
  46148. "demon": {
  46149. name: "Demon",
  46150. default: true
  46151. },
  46152. "incubus": {
  46153. name: "Incubus",
  46154. },
  46155. "rabbit": {
  46156. name: "Rabbit"
  46157. }
  46158. }
  46159. ))
  46160. characterMakers.push(() => makeCharacter(
  46161. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46162. {
  46163. front: {
  46164. height: math.unit(7 + 5/12, "feet"),
  46165. weight: math.unit(510, "lb"),
  46166. name: "Front",
  46167. image: {
  46168. source: "./media/characters/syrup/front.svg",
  46169. extra: 932/916,
  46170. bottom: 26/958
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(7 + 5/12, "feet"),
  46178. default: true
  46179. },
  46180. {
  46181. name: "Big",
  46182. height: math.unit(50, "feet")
  46183. },
  46184. {
  46185. name: "Macro",
  46186. height: math.unit(300, "feet")
  46187. },
  46188. {
  46189. name: "Megamacro",
  46190. height: math.unit(1, "mile")
  46191. },
  46192. ]
  46193. ))
  46194. characterMakers.push(() => makeCharacter(
  46195. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46196. {
  46197. front: {
  46198. height: math.unit(6 + 9/12, "feet"),
  46199. name: "Front",
  46200. image: {
  46201. source: "./media/characters/zeimne/front.svg",
  46202. extra: 1969/1806,
  46203. bottom: 53/2022
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "Normal",
  46210. height: math.unit(6 + 9/12, "feet"),
  46211. default: true
  46212. },
  46213. {
  46214. name: "Giant",
  46215. height: math.unit(550, "feet")
  46216. },
  46217. {
  46218. name: "Mega",
  46219. height: math.unit(3, "miles")
  46220. },
  46221. {
  46222. name: "Giga",
  46223. height: math.unit(250, "miles")
  46224. },
  46225. {
  46226. name: "Tera",
  46227. height: math.unit(1, "AU")
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46233. {
  46234. front: {
  46235. height: math.unit(5 + 2/12, "feet"),
  46236. name: "Front",
  46237. image: {
  46238. source: "./media/characters/grar/front.svg",
  46239. extra: 1331/1119,
  46240. bottom: 60/1391
  46241. }
  46242. },
  46243. back: {
  46244. height: math.unit(5 + 2/12, "feet"),
  46245. name: "Back",
  46246. image: {
  46247. source: "./media/characters/grar/back.svg",
  46248. extra: 1385/1169,
  46249. bottom: 23/1408
  46250. }
  46251. },
  46252. },
  46253. [
  46254. {
  46255. name: "Normal",
  46256. height: math.unit(5 + 2/12, "feet"),
  46257. default: true
  46258. },
  46259. ]
  46260. ))
  46261. characterMakers.push(() => makeCharacter(
  46262. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46263. {
  46264. front: {
  46265. height: math.unit(13 + 7/12, "feet"),
  46266. weight: math.unit(2200, "lb"),
  46267. name: "Front",
  46268. image: {
  46269. source: "./media/characters/endraya/front.svg",
  46270. extra: 1289/1215,
  46271. bottom: 50/1339
  46272. }
  46273. },
  46274. nude: {
  46275. height: math.unit(13 + 7/12, "feet"),
  46276. weight: math.unit(2200, "lb"),
  46277. name: "Nude",
  46278. image: {
  46279. source: "./media/characters/endraya/nude.svg",
  46280. extra: 1247/1171,
  46281. bottom: 40/1287
  46282. }
  46283. },
  46284. head: {
  46285. height: math.unit(2.6, "feet"),
  46286. name: "Head",
  46287. image: {
  46288. source: "./media/characters/endraya/head.svg"
  46289. }
  46290. },
  46291. slit: {
  46292. height: math.unit(3.4, "feet"),
  46293. name: "Slit",
  46294. image: {
  46295. source: "./media/characters/endraya/slit.svg"
  46296. }
  46297. },
  46298. },
  46299. [
  46300. {
  46301. name: "Normal",
  46302. height: math.unit(13 + 7/12, "feet"),
  46303. default: true
  46304. },
  46305. {
  46306. name: "Macro",
  46307. height: math.unit(200, "feet")
  46308. },
  46309. ]
  46310. ))
  46311. characterMakers.push(() => makeCharacter(
  46312. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46313. {
  46314. front: {
  46315. height: math.unit(1.81, "meters"),
  46316. weight: math.unit(69, "kg"),
  46317. name: "Front",
  46318. image: {
  46319. source: "./media/characters/rodryana/front.svg",
  46320. extra: 2002/1921,
  46321. bottom: 53/2055
  46322. }
  46323. },
  46324. back: {
  46325. height: math.unit(1.81, "meters"),
  46326. weight: math.unit(69, "kg"),
  46327. name: "Back",
  46328. image: {
  46329. source: "./media/characters/rodryana/back.svg",
  46330. extra: 1993/1926,
  46331. bottom: 48/2041
  46332. }
  46333. },
  46334. maw: {
  46335. height: math.unit(0.19769417475, "meters"),
  46336. name: "Maw",
  46337. image: {
  46338. source: "./media/characters/rodryana/maw.svg"
  46339. }
  46340. },
  46341. slit: {
  46342. height: math.unit(0.31631067961, "meters"),
  46343. name: "Slit",
  46344. image: {
  46345. source: "./media/characters/rodryana/slit.svg"
  46346. }
  46347. },
  46348. },
  46349. [
  46350. {
  46351. name: "Normal",
  46352. height: math.unit(1.81, "meters")
  46353. },
  46354. {
  46355. name: "Mini Macro",
  46356. height: math.unit(181, "meters")
  46357. },
  46358. {
  46359. name: "Macro",
  46360. height: math.unit(452, "meters"),
  46361. default: true
  46362. },
  46363. {
  46364. name: "Mega Macro",
  46365. height: math.unit(1.375, "km")
  46366. },
  46367. {
  46368. name: "Giga Macro",
  46369. height: math.unit(13.575, "km")
  46370. },
  46371. ]
  46372. ))
  46373. characterMakers.push(() => makeCharacter(
  46374. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46375. {
  46376. front: {
  46377. height: math.unit(6, "feet"),
  46378. weight: math.unit(1000, "lb"),
  46379. name: "Front",
  46380. image: {
  46381. source: "./media/characters/asaya/front.svg",
  46382. extra: 1460/1200,
  46383. bottom: 71/1531
  46384. }
  46385. },
  46386. },
  46387. [
  46388. {
  46389. name: "Normal",
  46390. height: math.unit(8, "km"),
  46391. default: true
  46392. },
  46393. ]
  46394. ))
  46395. characterMakers.push(() => makeCharacter(
  46396. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46397. {
  46398. front: {
  46399. height: math.unit(3.5, "meters"),
  46400. name: "Front",
  46401. image: {
  46402. source: "./media/characters/sarzu-and-israz/front.svg",
  46403. extra: 1570/1558,
  46404. bottom: 150/1720
  46405. },
  46406. },
  46407. back: {
  46408. height: math.unit(3.5, "meters"),
  46409. name: "Back",
  46410. image: {
  46411. source: "./media/characters/sarzu-and-israz/back.svg",
  46412. extra: 1523/1509,
  46413. bottom: 132/1655
  46414. },
  46415. },
  46416. frontFemale: {
  46417. height: math.unit(3.5, "meters"),
  46418. name: "Front (Female)",
  46419. image: {
  46420. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46421. extra: 1570/1558,
  46422. bottom: 150/1720
  46423. },
  46424. },
  46425. frontHerm: {
  46426. height: math.unit(3.5, "meters"),
  46427. name: "Front (Herm)",
  46428. image: {
  46429. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46430. extra: 1570/1558,
  46431. bottom: 150/1720
  46432. },
  46433. },
  46434. },
  46435. [
  46436. {
  46437. name: "Normal",
  46438. height: math.unit(3.5, "meters"),
  46439. default: true,
  46440. },
  46441. {
  46442. name: "Macro",
  46443. height: math.unit(65.5, "meters"),
  46444. },
  46445. ],
  46446. ))
  46447. characterMakers.push(() => makeCharacter(
  46448. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46449. {
  46450. front: {
  46451. height: math.unit(6, "feet"),
  46452. weight: math.unit(250, "lb"),
  46453. name: "Front",
  46454. image: {
  46455. source: "./media/characters/zenimma/front.svg",
  46456. extra: 1346/1320,
  46457. bottom: 58/1404
  46458. }
  46459. },
  46460. back: {
  46461. height: math.unit(6, "feet"),
  46462. weight: math.unit(250, "lb"),
  46463. name: "Back",
  46464. image: {
  46465. source: "./media/characters/zenimma/back.svg",
  46466. extra: 1324/1308,
  46467. bottom: 44/1368
  46468. }
  46469. },
  46470. dick: {
  46471. height: math.unit(1.44, "feet"),
  46472. name: "Dick",
  46473. image: {
  46474. source: "./media/characters/zenimma/dick.svg"
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Canon Height",
  46481. height: math.unit(66, "miles"),
  46482. default: true
  46483. },
  46484. ]
  46485. ))
  46486. characterMakers.push(() => makeCharacter(
  46487. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46488. {
  46489. nude: {
  46490. height: math.unit(6, "feet"),
  46491. weight: math.unit(150, "lb"),
  46492. name: "Nude",
  46493. image: {
  46494. source: "./media/characters/shavon/nude.svg",
  46495. extra: 1242/1096,
  46496. bottom: 98/1340
  46497. }
  46498. },
  46499. dressed: {
  46500. height: math.unit(6, "feet"),
  46501. weight: math.unit(150, "lb"),
  46502. name: "Dressed",
  46503. image: {
  46504. source: "./media/characters/shavon/dressed.svg",
  46505. extra: 1242/1096,
  46506. bottom: 98/1340
  46507. }
  46508. },
  46509. },
  46510. [
  46511. {
  46512. name: "Macro",
  46513. height: math.unit(255, "feet"),
  46514. default: true
  46515. },
  46516. ]
  46517. ))
  46518. characterMakers.push(() => makeCharacter(
  46519. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46520. {
  46521. front: {
  46522. height: math.unit(6, "feet"),
  46523. name: "Front",
  46524. image: {
  46525. source: "./media/characters/steph/front.svg",
  46526. extra: 1430/1330,
  46527. bottom: 54/1484
  46528. }
  46529. },
  46530. },
  46531. [
  46532. {
  46533. name: "Normal",
  46534. height: math.unit(6, "feet"),
  46535. default: true
  46536. },
  46537. ]
  46538. ))
  46539. characterMakers.push(() => makeCharacter(
  46540. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46541. {
  46542. front: {
  46543. height: math.unit(9, "feet"),
  46544. weight: math.unit(400, "lb"),
  46545. name: "Front",
  46546. image: {
  46547. source: "./media/characters/kil'aman/front.svg",
  46548. extra: 1210/1159,
  46549. bottom: 109/1319
  46550. }
  46551. },
  46552. head: {
  46553. height: math.unit(2.14, "feet"),
  46554. name: "Head",
  46555. image: {
  46556. source: "./media/characters/kil'aman/head.svg"
  46557. }
  46558. },
  46559. maw: {
  46560. height: math.unit(1.21, "feet"),
  46561. name: "Maw",
  46562. image: {
  46563. source: "./media/characters/kil'aman/maw.svg"
  46564. }
  46565. },
  46566. foot: {
  46567. height: math.unit(1.7, "feet"),
  46568. name: "Foot",
  46569. image: {
  46570. source: "./media/characters/kil'aman/foot.svg"
  46571. }
  46572. },
  46573. dick: {
  46574. height: math.unit(2.1, "feet"),
  46575. name: "Dick",
  46576. image: {
  46577. source: "./media/characters/kil'aman/dick.svg"
  46578. }
  46579. },
  46580. },
  46581. [
  46582. {
  46583. name: "Normal",
  46584. height: math.unit(9, "feet")
  46585. },
  46586. {
  46587. name: "Canon Height",
  46588. height: math.unit(10, "miles"),
  46589. default: true
  46590. },
  46591. {
  46592. name: "Maximum",
  46593. height: math.unit(6e9, "miles")
  46594. },
  46595. ]
  46596. ))
  46597. characterMakers.push(() => makeCharacter(
  46598. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46599. {
  46600. front: {
  46601. height: math.unit(90, "feet"),
  46602. weight: math.unit(675000, "lb"),
  46603. name: "Front",
  46604. image: {
  46605. source: "./media/characters/qadan/front.svg",
  46606. extra: 1012/1004,
  46607. bottom: 78/1090
  46608. }
  46609. },
  46610. back: {
  46611. height: math.unit(90, "feet"),
  46612. weight: math.unit(675000, "lb"),
  46613. name: "Back",
  46614. image: {
  46615. source: "./media/characters/qadan/back.svg",
  46616. extra: 1042/1031,
  46617. bottom: 55/1097
  46618. }
  46619. },
  46620. armored: {
  46621. height: math.unit(90, "feet"),
  46622. weight: math.unit(675000, "lb"),
  46623. name: "Armored",
  46624. image: {
  46625. source: "./media/characters/qadan/armored.svg",
  46626. extra: 1047/1037,
  46627. bottom: 48/1095
  46628. }
  46629. },
  46630. },
  46631. [
  46632. {
  46633. name: "Normal",
  46634. height: math.unit(90, "feet"),
  46635. default: true
  46636. },
  46637. ]
  46638. ))
  46639. characterMakers.push(() => makeCharacter(
  46640. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46641. {
  46642. front: {
  46643. height: math.unit(6, "feet"),
  46644. weight: math.unit(225, "lb"),
  46645. name: "Front",
  46646. image: {
  46647. source: "./media/characters/brooke/front.svg",
  46648. extra: 1050/1010,
  46649. bottom: 66/1116
  46650. }
  46651. },
  46652. back: {
  46653. height: math.unit(6, "feet"),
  46654. weight: math.unit(225, "lb"),
  46655. name: "Back",
  46656. image: {
  46657. source: "./media/characters/brooke/back.svg",
  46658. extra: 1053/1013,
  46659. bottom: 41/1094
  46660. }
  46661. },
  46662. dressed: {
  46663. height: math.unit(6, "feet"),
  46664. weight: math.unit(225, "lb"),
  46665. name: "Dressed",
  46666. image: {
  46667. source: "./media/characters/brooke/dressed.svg",
  46668. extra: 1050/1010,
  46669. bottom: 66/1116
  46670. }
  46671. },
  46672. },
  46673. [
  46674. {
  46675. name: "Canon Height",
  46676. height: math.unit(500, "miles"),
  46677. default: true
  46678. },
  46679. ]
  46680. ))
  46681. characterMakers.push(() => makeCharacter(
  46682. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46683. {
  46684. front: {
  46685. height: math.unit(6 + 2/12, "feet"),
  46686. weight: math.unit(210, "lb"),
  46687. name: "Front",
  46688. image: {
  46689. source: "./media/characters/wubs/front.svg",
  46690. extra: 1345/1325,
  46691. bottom: 70/1415
  46692. }
  46693. },
  46694. back: {
  46695. height: math.unit(6 + 2/12, "feet"),
  46696. weight: math.unit(210, "lb"),
  46697. name: "Back",
  46698. image: {
  46699. source: "./media/characters/wubs/back.svg",
  46700. extra: 1296/1275,
  46701. bottom: 58/1354
  46702. }
  46703. },
  46704. },
  46705. [
  46706. {
  46707. name: "Normal",
  46708. height: math.unit(6 + 2/12, "feet"),
  46709. default: true
  46710. },
  46711. {
  46712. name: "Macro",
  46713. height: math.unit(1000, "feet")
  46714. },
  46715. {
  46716. name: "Megamacro",
  46717. height: math.unit(1, "mile")
  46718. },
  46719. ]
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46723. {
  46724. front: {
  46725. height: math.unit(4, "feet"),
  46726. weight: math.unit(120, "lb"),
  46727. name: "Front",
  46728. image: {
  46729. source: "./media/characters/blue/front.svg",
  46730. extra: 1636/1525,
  46731. bottom: 43/1679
  46732. }
  46733. },
  46734. back: {
  46735. height: math.unit(4, "feet"),
  46736. weight: math.unit(120, "lb"),
  46737. name: "Back",
  46738. image: {
  46739. source: "./media/characters/blue/back.svg",
  46740. extra: 1660/1560,
  46741. bottom: 57/1717
  46742. }
  46743. },
  46744. paws: {
  46745. height: math.unit(0.826, "feet"),
  46746. name: "Paws",
  46747. image: {
  46748. source: "./media/characters/blue/paws.svg"
  46749. }
  46750. },
  46751. },
  46752. [
  46753. {
  46754. name: "Micro",
  46755. height: math.unit(3, "inches")
  46756. },
  46757. {
  46758. name: "Normal",
  46759. height: math.unit(4, "feet"),
  46760. default: true
  46761. },
  46762. {
  46763. name: "Femenine Form",
  46764. height: math.unit(14, "feet")
  46765. },
  46766. {
  46767. name: "Werebat Form",
  46768. height: math.unit(18, "feet")
  46769. },
  46770. ]
  46771. ))
  46772. characterMakers.push(() => makeCharacter(
  46773. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46774. {
  46775. female: {
  46776. height: math.unit(7 + 4/12, "feet"),
  46777. weight: math.unit(243, "lb"),
  46778. name: "Female",
  46779. image: {
  46780. source: "./media/characters/kaya/female.svg",
  46781. extra: 975/898,
  46782. bottom: 34/1009
  46783. }
  46784. },
  46785. herm: {
  46786. height: math.unit(7 + 4/12, "feet"),
  46787. weight: math.unit(243, "lb"),
  46788. name: "Herm",
  46789. image: {
  46790. source: "./media/characters/kaya/herm.svg",
  46791. extra: 975/898,
  46792. bottom: 34/1009
  46793. }
  46794. },
  46795. },
  46796. [
  46797. {
  46798. name: "Normal",
  46799. height: math.unit(7 + 4/12, "feet"),
  46800. default: true
  46801. },
  46802. ]
  46803. ))
  46804. characterMakers.push(() => makeCharacter(
  46805. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46806. {
  46807. female: {
  46808. height: math.unit(9 + 4/12, "feet"),
  46809. weight: math.unit(398, "lb"),
  46810. name: "Female",
  46811. image: {
  46812. source: "./media/characters/kassandra/female.svg",
  46813. extra: 908/839,
  46814. bottom: 61/969
  46815. }
  46816. },
  46817. intersex: {
  46818. height: math.unit(9 + 4/12, "feet"),
  46819. weight: math.unit(398, "lb"),
  46820. name: "Intersex",
  46821. image: {
  46822. source: "./media/characters/kassandra/intersex.svg",
  46823. extra: 908/839,
  46824. bottom: 61/969
  46825. }
  46826. },
  46827. },
  46828. [
  46829. {
  46830. name: "Normal",
  46831. height: math.unit(9 + 4/12, "feet"),
  46832. default: true
  46833. },
  46834. ]
  46835. ))
  46836. characterMakers.push(() => makeCharacter(
  46837. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46838. {
  46839. front: {
  46840. height: math.unit(3, "meters"),
  46841. name: "Front",
  46842. image: {
  46843. source: "./media/characters/amy/front.svg",
  46844. extra: 1380/1343,
  46845. bottom: 70/1450
  46846. }
  46847. },
  46848. back: {
  46849. height: math.unit(3, "meters"),
  46850. name: "Back",
  46851. image: {
  46852. source: "./media/characters/amy/back.svg",
  46853. extra: 1380/1347,
  46854. bottom: 66/1446
  46855. }
  46856. },
  46857. },
  46858. [
  46859. {
  46860. name: "Normal",
  46861. height: math.unit(3, "meters"),
  46862. default: true
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46868. {
  46869. side: {
  46870. height: math.unit(47, "cm"),
  46871. weight: math.unit(10.8, "kg"),
  46872. name: "Side",
  46873. image: {
  46874. source: "./media/characters/alphaschakal/side.svg",
  46875. extra: 1058/568,
  46876. bottom: 62/1120
  46877. }
  46878. },
  46879. back: {
  46880. height: math.unit(78, "cm"),
  46881. weight: math.unit(10.8, "kg"),
  46882. name: "Back",
  46883. image: {
  46884. source: "./media/characters/alphaschakal/back.svg",
  46885. extra: 1102/942,
  46886. bottom: 185/1287
  46887. }
  46888. },
  46889. head: {
  46890. height: math.unit(28, "cm"),
  46891. name: "Head",
  46892. image: {
  46893. source: "./media/characters/alphaschakal/head.svg",
  46894. extra: 696/508,
  46895. bottom: 0/696
  46896. }
  46897. },
  46898. paw: {
  46899. height: math.unit(16, "cm"),
  46900. name: "Paw",
  46901. image: {
  46902. source: "./media/characters/alphaschakal/paw.svg"
  46903. }
  46904. },
  46905. },
  46906. [
  46907. {
  46908. name: "Normal",
  46909. height: math.unit(47, "cm"),
  46910. default: true
  46911. },
  46912. {
  46913. name: "Macro",
  46914. height: math.unit(340, "cm")
  46915. },
  46916. ]
  46917. ))
  46918. characterMakers.push(() => makeCharacter(
  46919. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46920. {
  46921. front: {
  46922. height: math.unit(36, "earths"),
  46923. name: "Front",
  46924. image: {
  46925. source: "./media/characters/ecobyss/front.svg",
  46926. extra: 1282/1215,
  46927. bottom: 11/1293
  46928. }
  46929. },
  46930. back: {
  46931. height: math.unit(36, "earths"),
  46932. name: "Back",
  46933. image: {
  46934. source: "./media/characters/ecobyss/back.svg",
  46935. extra: 1291/1222,
  46936. bottom: 8/1299
  46937. }
  46938. },
  46939. },
  46940. [
  46941. {
  46942. name: "Normal",
  46943. height: math.unit(36, "earths"),
  46944. default: true
  46945. },
  46946. ]
  46947. ))
  46948. characterMakers.push(() => makeCharacter(
  46949. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46950. {
  46951. front: {
  46952. height: math.unit(12, "feet"),
  46953. name: "Front",
  46954. image: {
  46955. source: "./media/characters/vasuk/front.svg",
  46956. extra: 1326/1207,
  46957. bottom: 64/1390
  46958. }
  46959. },
  46960. },
  46961. [
  46962. {
  46963. name: "Normal",
  46964. height: math.unit(12, "feet"),
  46965. default: true
  46966. },
  46967. ]
  46968. ))
  46969. characterMakers.push(() => makeCharacter(
  46970. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46971. {
  46972. side: {
  46973. height: math.unit(100, "feet"),
  46974. name: "Side",
  46975. image: {
  46976. source: "./media/characters/linneaus/side.svg",
  46977. extra: 987/807,
  46978. bottom: 47/1034
  46979. }
  46980. },
  46981. },
  46982. [
  46983. {
  46984. name: "Macro",
  46985. height: math.unit(100, "feet"),
  46986. default: true
  46987. },
  46988. ]
  46989. ))
  46990. characterMakers.push(() => makeCharacter(
  46991. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46992. {
  46993. front: {
  46994. height: math.unit(8, "feet"),
  46995. weight: math.unit(1200, "lb"),
  46996. name: "Front",
  46997. image: {
  46998. source: "./media/characters/nyterious-daligdig/front.svg",
  46999. extra: 1284/1094,
  47000. bottom: 84/1368
  47001. }
  47002. },
  47003. back: {
  47004. height: math.unit(8, "feet"),
  47005. weight: math.unit(1200, "lb"),
  47006. name: "Back",
  47007. image: {
  47008. source: "./media/characters/nyterious-daligdig/back.svg",
  47009. extra: 1301/1121,
  47010. bottom: 129/1430
  47011. }
  47012. },
  47013. mouth: {
  47014. height: math.unit(1.464, "feet"),
  47015. name: "Mouth",
  47016. image: {
  47017. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47018. }
  47019. },
  47020. },
  47021. [
  47022. {
  47023. name: "Small",
  47024. height: math.unit(8, "feet"),
  47025. default: true
  47026. },
  47027. {
  47028. name: "Normal",
  47029. height: math.unit(15, "feet")
  47030. },
  47031. {
  47032. name: "Macro",
  47033. height: math.unit(90, "feet")
  47034. },
  47035. ]
  47036. ))
  47037. characterMakers.push(() => makeCharacter(
  47038. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47039. {
  47040. front: {
  47041. height: math.unit(7 + 4/12, "feet"),
  47042. weight: math.unit(252, "lb"),
  47043. name: "Front",
  47044. image: {
  47045. source: "./media/characters/bandel/front.svg",
  47046. extra: 1946/1775,
  47047. bottom: 26/1972
  47048. }
  47049. },
  47050. back: {
  47051. height: math.unit(7 + 4/12, "feet"),
  47052. weight: math.unit(252, "lb"),
  47053. name: "Back",
  47054. image: {
  47055. source: "./media/characters/bandel/back.svg",
  47056. extra: 1940/1770,
  47057. bottom: 25/1965
  47058. }
  47059. },
  47060. maw: {
  47061. height: math.unit(2.15, "feet"),
  47062. name: "Maw",
  47063. image: {
  47064. source: "./media/characters/bandel/maw.svg"
  47065. }
  47066. },
  47067. stomach: {
  47068. height: math.unit(1.95, "feet"),
  47069. name: "Stomach",
  47070. image: {
  47071. source: "./media/characters/bandel/stomach.svg"
  47072. }
  47073. },
  47074. },
  47075. [
  47076. {
  47077. name: "Normal",
  47078. height: math.unit(7 + 4/12, "feet"),
  47079. default: true
  47080. },
  47081. ]
  47082. ))
  47083. characterMakers.push(() => makeCharacter(
  47084. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47085. {
  47086. front: {
  47087. height: math.unit(10 + 5/12, "feet"),
  47088. weight: math.unit(773.5, "kg"),
  47089. name: "Front",
  47090. image: {
  47091. source: "./media/characters/zed/front.svg",
  47092. extra: 987/941,
  47093. bottom: 52/1039
  47094. }
  47095. },
  47096. },
  47097. [
  47098. {
  47099. name: "Short",
  47100. height: math.unit(5 + 4/12, "feet")
  47101. },
  47102. {
  47103. name: "Average",
  47104. height: math.unit(10 + 5/12, "feet"),
  47105. default: true
  47106. },
  47107. {
  47108. name: "Mini-Macro",
  47109. height: math.unit(24 + 9/12, "feet")
  47110. },
  47111. {
  47112. name: "Macro",
  47113. height: math.unit(249, "feet")
  47114. },
  47115. {
  47116. name: "Mega-Macro",
  47117. height: math.unit(12490, "feet")
  47118. },
  47119. {
  47120. name: "Giga-Macro",
  47121. height: math.unit(24.9, "miles")
  47122. },
  47123. {
  47124. name: "Tera-Macro",
  47125. height: math.unit(24900, "miles")
  47126. },
  47127. {
  47128. name: "Cosmic Scale",
  47129. height: math.unit(38.9, "lightyears")
  47130. },
  47131. {
  47132. name: "Universal Scale",
  47133. height: math.unit(138e12, "lightyears")
  47134. },
  47135. ]
  47136. ))
  47137. characterMakers.push(() => makeCharacter(
  47138. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47139. {
  47140. front: {
  47141. height: math.unit(1561, "inches"),
  47142. name: "Front",
  47143. image: {
  47144. source: "./media/characters/ivan/front.svg",
  47145. extra: 1126/1071,
  47146. bottom: 26/1152
  47147. }
  47148. },
  47149. back: {
  47150. height: math.unit(1561, "inches"),
  47151. name: "Back",
  47152. image: {
  47153. source: "./media/characters/ivan/back.svg",
  47154. extra: 1134/1079,
  47155. bottom: 30/1164
  47156. }
  47157. },
  47158. },
  47159. [
  47160. {
  47161. name: "Normal",
  47162. height: math.unit(1561, "inches"),
  47163. default: true
  47164. },
  47165. ]
  47166. ))
  47167. characterMakers.push(() => makeCharacter(
  47168. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47169. {
  47170. front: {
  47171. height: math.unit(5 + 7/12, "feet"),
  47172. weight: math.unit(150, "lb"),
  47173. name: "Front",
  47174. image: {
  47175. source: "./media/characters/robin-arctic-hare/front.svg",
  47176. extra: 1148/974,
  47177. bottom: 20/1168
  47178. }
  47179. },
  47180. },
  47181. [
  47182. {
  47183. name: "Normal",
  47184. height: math.unit(5 + 7/12, "feet"),
  47185. default: true
  47186. },
  47187. ]
  47188. ))
  47189. characterMakers.push(() => makeCharacter(
  47190. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47191. {
  47192. side: {
  47193. height: math.unit(5, "feet"),
  47194. name: "Side",
  47195. image: {
  47196. source: "./media/characters/birch/side.svg",
  47197. extra: 985/796,
  47198. bottom: 111/1096
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(5, "feet"),
  47206. default: true
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47212. {
  47213. front: {
  47214. height: math.unit(4, "feet"),
  47215. name: "Front",
  47216. image: {
  47217. source: "./media/characters/rasp/front.svg",
  47218. extra: 561/478,
  47219. bottom: 74/635
  47220. }
  47221. },
  47222. },
  47223. [
  47224. {
  47225. name: "Normal",
  47226. height: math.unit(4, "feet"),
  47227. default: true
  47228. },
  47229. ]
  47230. ))
  47231. characterMakers.push(() => makeCharacter(
  47232. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47233. {
  47234. front: {
  47235. height: math.unit(4 + 6/12, "feet"),
  47236. name: "Front",
  47237. image: {
  47238. source: "./media/characters/agatha/front.svg",
  47239. extra: 947/933,
  47240. bottom: 42/989
  47241. }
  47242. },
  47243. back: {
  47244. height: math.unit(4 + 6/12, "feet"),
  47245. name: "Back",
  47246. image: {
  47247. source: "./media/characters/agatha/back.svg",
  47248. extra: 935/922,
  47249. bottom: 48/983
  47250. }
  47251. },
  47252. },
  47253. [
  47254. {
  47255. name: "Normal",
  47256. height: math.unit(4 + 6 /12, "feet"),
  47257. default: true
  47258. },
  47259. {
  47260. name: "Max Size",
  47261. height: math.unit(500, "feet")
  47262. },
  47263. ]
  47264. ))
  47265. characterMakers.push(() => makeCharacter(
  47266. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47267. {
  47268. side: {
  47269. height: math.unit(30, "feet"),
  47270. name: "Side",
  47271. image: {
  47272. source: "./media/characters/roggy/side.svg",
  47273. extra: 909/643,
  47274. bottom: 63/972
  47275. }
  47276. },
  47277. lounging: {
  47278. height: math.unit(20, "feet"),
  47279. name: "Lounging",
  47280. image: {
  47281. source: "./media/characters/roggy/lounging.svg",
  47282. extra: 643/479,
  47283. bottom: 145/788
  47284. }
  47285. },
  47286. handpaw: {
  47287. height: math.unit(13.1, "feet"),
  47288. name: "Handpaw",
  47289. image: {
  47290. source: "./media/characters/roggy/handpaw.svg"
  47291. }
  47292. },
  47293. footpaw: {
  47294. height: math.unit(15.8, "feet"),
  47295. name: "Footpaw",
  47296. image: {
  47297. source: "./media/characters/roggy/footpaw.svg"
  47298. }
  47299. },
  47300. },
  47301. [
  47302. {
  47303. name: "Menacing",
  47304. height: math.unit(30, "feet"),
  47305. default: true
  47306. },
  47307. ]
  47308. ))
  47309. characterMakers.push(() => makeCharacter(
  47310. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47311. {
  47312. front: {
  47313. height: math.unit(5 + 7/12, "feet"),
  47314. weight: math.unit(135, "lb"),
  47315. name: "Front",
  47316. image: {
  47317. source: "./media/characters/naomi/front.svg",
  47318. extra: 1209/1154,
  47319. bottom: 129/1338
  47320. }
  47321. },
  47322. back: {
  47323. height: math.unit(5 + 7/12, "feet"),
  47324. weight: math.unit(135, "lb"),
  47325. name: "Back",
  47326. image: {
  47327. source: "./media/characters/naomi/back.svg",
  47328. extra: 1252/1190,
  47329. bottom: 23/1275
  47330. }
  47331. },
  47332. },
  47333. [
  47334. {
  47335. name: "Normal",
  47336. height: math.unit(5 + 7 /12, "feet"),
  47337. default: true
  47338. },
  47339. ]
  47340. ))
  47341. characterMakers.push(() => makeCharacter(
  47342. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47343. {
  47344. side: {
  47345. height: math.unit(35, "meters"),
  47346. name: "Side",
  47347. image: {
  47348. source: "./media/characters/kimpi/side.svg",
  47349. extra: 419/382,
  47350. bottom: 63/482
  47351. }
  47352. },
  47353. hand: {
  47354. height: math.unit(8.96, "meters"),
  47355. name: "Hand",
  47356. image: {
  47357. source: "./media/characters/kimpi/hand.svg"
  47358. }
  47359. },
  47360. },
  47361. [
  47362. {
  47363. name: "Normal",
  47364. height: math.unit(35, "meters"),
  47365. default: true
  47366. },
  47367. ]
  47368. ))
  47369. characterMakers.push(() => makeCharacter(
  47370. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47371. {
  47372. front: {
  47373. height: math.unit(4 + 4/12, "feet"),
  47374. name: "Front",
  47375. image: {
  47376. source: "./media/characters/pepper-purrloin/front.svg",
  47377. extra: 1141/1024,
  47378. bottom: 21/1162
  47379. }
  47380. },
  47381. },
  47382. [
  47383. {
  47384. name: "Normal",
  47385. height: math.unit(4 + 4/12, "feet"),
  47386. default: true
  47387. },
  47388. ]
  47389. ))
  47390. characterMakers.push(() => makeCharacter(
  47391. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47392. {
  47393. front: {
  47394. height: math.unit(6 + 2/12, "feet"),
  47395. name: "Front",
  47396. image: {
  47397. source: "./media/characters/raphael/front.svg",
  47398. extra: 1101/962,
  47399. bottom: 59/1160
  47400. }
  47401. },
  47402. },
  47403. [
  47404. {
  47405. name: "Normal",
  47406. height: math.unit(6 + 2/12, "feet"),
  47407. default: true
  47408. },
  47409. ]
  47410. ))
  47411. characterMakers.push(() => makeCharacter(
  47412. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47413. {
  47414. front: {
  47415. height: math.unit(6, "feet"),
  47416. weight: math.unit(150, "lb"),
  47417. name: "Front",
  47418. image: {
  47419. source: "./media/characters/victor-williams/front.svg",
  47420. extra: 1894/1825,
  47421. bottom: 67/1961
  47422. }
  47423. },
  47424. },
  47425. [
  47426. {
  47427. name: "Normal",
  47428. height: math.unit(6, "feet"),
  47429. default: true
  47430. },
  47431. ]
  47432. ))
  47433. characterMakers.push(() => makeCharacter(
  47434. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47435. {
  47436. front: {
  47437. height: math.unit(5 + 8/12, "feet"),
  47438. weight: math.unit(150, "lb"),
  47439. name: "Front",
  47440. image: {
  47441. source: "./media/characters/rachel/front.svg",
  47442. extra: 1902/1787,
  47443. bottom: 46/1948
  47444. }
  47445. },
  47446. },
  47447. [
  47448. {
  47449. name: "Base Height",
  47450. height: math.unit(5 + 8/12, "feet"),
  47451. default: true
  47452. },
  47453. {
  47454. name: "Macro",
  47455. height: math.unit(200, "feet")
  47456. },
  47457. {
  47458. name: "Mega Macro",
  47459. height: math.unit(1, "mile")
  47460. },
  47461. {
  47462. name: "Giga Macro",
  47463. height: math.unit(1500, "miles")
  47464. },
  47465. {
  47466. name: "Tera Macro",
  47467. height: math.unit(8000, "miles")
  47468. },
  47469. {
  47470. name: "Tera Macro+",
  47471. height: math.unit(2e5, "miles")
  47472. },
  47473. ]
  47474. ))
  47475. characterMakers.push(() => makeCharacter(
  47476. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47477. {
  47478. front: {
  47479. height: math.unit(6.5, "feet"),
  47480. name: "Front",
  47481. image: {
  47482. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47483. extra: 860/819,
  47484. bottom: 307/1167
  47485. }
  47486. },
  47487. back: {
  47488. height: math.unit(6.5, "feet"),
  47489. name: "Back",
  47490. image: {
  47491. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47492. extra: 880/837,
  47493. bottom: 395/1275
  47494. }
  47495. },
  47496. sleeping: {
  47497. height: math.unit(2.79, "feet"),
  47498. name: "Sleeping",
  47499. image: {
  47500. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47501. extra: 465/383,
  47502. bottom: 263/728
  47503. }
  47504. },
  47505. maw: {
  47506. height: math.unit(2.52, "feet"),
  47507. name: "Maw",
  47508. image: {
  47509. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47510. }
  47511. },
  47512. },
  47513. [
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(6.5, "feet"),
  47517. default: true
  47518. },
  47519. ]
  47520. ))
  47521. characterMakers.push(() => makeCharacter(
  47522. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47523. {
  47524. front: {
  47525. height: math.unit(5, "feet"),
  47526. name: "Front",
  47527. image: {
  47528. source: "./media/characters/nova-nerium/front.svg",
  47529. extra: 1548/1392,
  47530. bottom: 374/1922
  47531. }
  47532. },
  47533. back: {
  47534. height: math.unit(5, "feet"),
  47535. name: "Back",
  47536. image: {
  47537. source: "./media/characters/nova-nerium/back.svg",
  47538. extra: 1658/1468,
  47539. bottom: 257/1915
  47540. }
  47541. },
  47542. },
  47543. [
  47544. {
  47545. name: "Normal",
  47546. height: math.unit(5, "feet"),
  47547. default: true
  47548. },
  47549. ]
  47550. ))
  47551. characterMakers.push(() => makeCharacter(
  47552. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47553. {
  47554. front: {
  47555. height: math.unit(5 + 4/12, "feet"),
  47556. name: "Front",
  47557. image: {
  47558. source: "./media/characters/ashe-pyriph/front.svg",
  47559. extra: 1935/1747,
  47560. bottom: 60/1995
  47561. }
  47562. },
  47563. },
  47564. [
  47565. {
  47566. name: "Normal",
  47567. height: math.unit(5 + 4/12, "feet"),
  47568. default: true
  47569. },
  47570. ]
  47571. ))
  47572. characterMakers.push(() => makeCharacter(
  47573. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47574. {
  47575. front: {
  47576. height: math.unit(8.7, "feet"),
  47577. name: "Front",
  47578. image: {
  47579. source: "./media/characters/flicker-wisp/front.svg",
  47580. extra: 1835/1613,
  47581. bottom: 449/2284
  47582. }
  47583. },
  47584. side: {
  47585. height: math.unit(8.7, "feet"),
  47586. name: "Side",
  47587. image: {
  47588. source: "./media/characters/flicker-wisp/side.svg",
  47589. extra: 1841/1642,
  47590. bottom: 336/2177
  47591. },
  47592. default: true
  47593. },
  47594. maw: {
  47595. height: math.unit(3.35, "feet"),
  47596. name: "Maw",
  47597. image: {
  47598. source: "./media/characters/flicker-wisp/maw.svg",
  47599. extra: 2338/1506,
  47600. bottom: 0/2338
  47601. }
  47602. },
  47603. ovipositor: {
  47604. height: math.unit(4.95, "feet"),
  47605. name: "Ovipositor",
  47606. image: {
  47607. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47608. }
  47609. },
  47610. egg: {
  47611. height: math.unit(0.385, "feet"),
  47612. weight: math.unit(2, "lb"),
  47613. name: "Egg",
  47614. image: {
  47615. source: "./media/characters/flicker-wisp/egg.svg"
  47616. }
  47617. },
  47618. },
  47619. [
  47620. {
  47621. name: "Normal",
  47622. height: math.unit(8.7, "feet"),
  47623. default: true
  47624. },
  47625. ]
  47626. ))
  47627. characterMakers.push(() => makeCharacter(
  47628. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47629. {
  47630. side: {
  47631. height: math.unit(11, "feet"),
  47632. name: "Side",
  47633. image: {
  47634. source: "./media/characters/faefnul/side.svg",
  47635. extra: 1100/1007,
  47636. bottom: 0/1100
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(11, "feet"),
  47644. default: true
  47645. },
  47646. ]
  47647. ))
  47648. characterMakers.push(() => makeCharacter(
  47649. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47650. {
  47651. front: {
  47652. height: math.unit(6 + 2/12, "feet"),
  47653. name: "Front",
  47654. image: {
  47655. source: "./media/characters/shady/front.svg",
  47656. extra: 502/461,
  47657. bottom: 9/511
  47658. }
  47659. },
  47660. kneeling: {
  47661. height: math.unit(4.6, "feet"),
  47662. name: "Kneeling",
  47663. image: {
  47664. source: "./media/characters/shady/kneeling.svg",
  47665. extra: 1328/1219,
  47666. bottom: 117/1445
  47667. }
  47668. },
  47669. maw: {
  47670. height: math.unit(2, "feet"),
  47671. name: "Maw",
  47672. image: {
  47673. source: "./media/characters/shady/maw.svg"
  47674. }
  47675. },
  47676. },
  47677. [
  47678. {
  47679. name: "Nano",
  47680. height: math.unit(1, "mm")
  47681. },
  47682. {
  47683. name: "Micro",
  47684. height: math.unit(12, "mm")
  47685. },
  47686. {
  47687. name: "Tiny",
  47688. height: math.unit(3, "inches")
  47689. },
  47690. {
  47691. name: "Normal",
  47692. height: math.unit(6 + 2/12, "feet"),
  47693. default: true
  47694. },
  47695. {
  47696. name: "Big",
  47697. height: math.unit(15, "feet")
  47698. },
  47699. {
  47700. name: "Macro",
  47701. height: math.unit(150, "feet")
  47702. },
  47703. {
  47704. name: "Titanic",
  47705. height: math.unit(500, "feet")
  47706. },
  47707. ]
  47708. ))
  47709. characterMakers.push(() => makeCharacter(
  47710. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47711. {
  47712. front: {
  47713. height: math.unit(12, "feet"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/fenrir/front.svg",
  47717. extra: 968/875,
  47718. bottom: 22/990
  47719. }
  47720. },
  47721. },
  47722. [
  47723. {
  47724. name: "Big",
  47725. height: math.unit(12, "feet"),
  47726. default: true
  47727. },
  47728. ]
  47729. ))
  47730. characterMakers.push(() => makeCharacter(
  47731. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47732. {
  47733. front: {
  47734. height: math.unit(5 + 4/12, "feet"),
  47735. name: "Front",
  47736. image: {
  47737. source: "./media/characters/makar/front.svg",
  47738. extra: 1181/1112,
  47739. bottom: 78/1259
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Normal",
  47746. height: math.unit(5 + 4/12, "feet"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(5 + 7/12, "feet"),
  47756. name: "Front",
  47757. image: {
  47758. source: "./media/characters/callow/front.svg",
  47759. extra: 1482/1304,
  47760. bottom: 23/1505
  47761. }
  47762. },
  47763. back: {
  47764. height: math.unit(5 + 7/12, "feet"),
  47765. name: "Back",
  47766. image: {
  47767. source: "./media/characters/callow/back.svg",
  47768. extra: 1484/1296,
  47769. bottom: 25/1509
  47770. }
  47771. },
  47772. },
  47773. [
  47774. {
  47775. name: "Micro",
  47776. height: math.unit(3, "inches"),
  47777. default: true
  47778. },
  47779. {
  47780. name: "Normal",
  47781. height: math.unit(5 + 7/12, "feet")
  47782. },
  47783. ]
  47784. ))
  47785. characterMakers.push(() => makeCharacter(
  47786. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47787. {
  47788. front: {
  47789. height: math.unit(6 + 2/12, "feet"),
  47790. name: "Front",
  47791. image: {
  47792. source: "./media/characters/natel/front.svg",
  47793. extra: 1833/1692,
  47794. bottom: 166/1999
  47795. }
  47796. },
  47797. },
  47798. [
  47799. {
  47800. name: "Normal",
  47801. height: math.unit(6 + 2/12, "feet"),
  47802. default: true
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47808. {
  47809. front: {
  47810. height: math.unit(1.75, "meters"),
  47811. name: "Front",
  47812. image: {
  47813. source: "./media/characters/misu/front.svg",
  47814. extra: 1690/1558,
  47815. bottom: 234/1924
  47816. }
  47817. },
  47818. back: {
  47819. height: math.unit(1.75, "meters"),
  47820. name: "Back",
  47821. image: {
  47822. source: "./media/characters/misu/back.svg",
  47823. extra: 1762/1618,
  47824. bottom: 146/1908
  47825. }
  47826. },
  47827. frontNude: {
  47828. height: math.unit(1.75, "meters"),
  47829. name: "Front (Nude)",
  47830. image: {
  47831. source: "./media/characters/misu/front-nude.svg",
  47832. extra: 1690/1558,
  47833. bottom: 234/1924
  47834. }
  47835. },
  47836. backNude: {
  47837. height: math.unit(1.75, "meters"),
  47838. name: "Back (Nude)",
  47839. image: {
  47840. source: "./media/characters/misu/back-nude.svg",
  47841. extra: 1762/1618,
  47842. bottom: 146/1908
  47843. }
  47844. },
  47845. frontErect: {
  47846. height: math.unit(1.75, "meters"),
  47847. name: "Front (Erect)",
  47848. image: {
  47849. source: "./media/characters/misu/front-erect.svg",
  47850. extra: 1690/1558,
  47851. bottom: 234/1924
  47852. }
  47853. },
  47854. maw: {
  47855. height: math.unit(0.47, "meters"),
  47856. name: "Maw",
  47857. image: {
  47858. source: "./media/characters/misu/maw.svg"
  47859. }
  47860. },
  47861. head: {
  47862. height: math.unit(0.35, "meters"),
  47863. name: "Head",
  47864. image: {
  47865. source: "./media/characters/misu/head.svg"
  47866. }
  47867. },
  47868. rear: {
  47869. height: math.unit(0.47, "meters"),
  47870. name: "Rear",
  47871. image: {
  47872. source: "./media/characters/misu/rear.svg"
  47873. }
  47874. },
  47875. },
  47876. [
  47877. {
  47878. name: "Normal",
  47879. height: math.unit(1.75, "meters")
  47880. },
  47881. {
  47882. name: "Not good for the people",
  47883. height: math.unit(42, "meters")
  47884. },
  47885. {
  47886. name: "Not good for the neighborhood",
  47887. height: math.unit(135, "meters")
  47888. },
  47889. {
  47890. name: "Bit bigger problem",
  47891. height: math.unit(380, "meters"),
  47892. default: true
  47893. },
  47894. {
  47895. name: "Not good for the city",
  47896. height: math.unit(1.5, "km")
  47897. },
  47898. {
  47899. name: "Not good for the county",
  47900. height: math.unit(5.5, "km")
  47901. },
  47902. {
  47903. name: "Not good for the state",
  47904. height: math.unit(25, "km")
  47905. },
  47906. {
  47907. name: "Not good for the country",
  47908. height: math.unit(125, "km")
  47909. },
  47910. {
  47911. name: "Not good for the continent",
  47912. height: math.unit(2100, "km")
  47913. },
  47914. {
  47915. name: "Not good for the planet",
  47916. height: math.unit(35000, "km")
  47917. },
  47918. {
  47919. name: "Just no",
  47920. height: math.unit(8.5e18, "km")
  47921. },
  47922. ]
  47923. ))
  47924. characterMakers.push(() => makeCharacter(
  47925. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47926. {
  47927. front: {
  47928. height: math.unit(6.5, "feet"),
  47929. name: "Front",
  47930. image: {
  47931. source: "./media/characters/poppy/front.svg",
  47932. extra: 1878/1812,
  47933. bottom: 43/1921
  47934. }
  47935. },
  47936. feet: {
  47937. height: math.unit(1.06, "feet"),
  47938. name: "Feet",
  47939. image: {
  47940. source: "./media/characters/poppy/feet.svg",
  47941. extra: 1083/1083,
  47942. bottom: 87/1170
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Human",
  47949. height: math.unit(6.5, "feet")
  47950. },
  47951. {
  47952. name: "Default",
  47953. height: math.unit(300, "feet"),
  47954. default: true
  47955. },
  47956. {
  47957. name: "Huge",
  47958. height: math.unit(850, "feet")
  47959. },
  47960. {
  47961. name: "Mega",
  47962. height: math.unit(8000, "feet")
  47963. },
  47964. {
  47965. name: "Giga",
  47966. height: math.unit(300, "miles")
  47967. },
  47968. ]
  47969. ))
  47970. characterMakers.push(() => makeCharacter(
  47971. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47972. {
  47973. bipedal: {
  47974. height: math.unit(7, "feet"),
  47975. name: "Bipedal",
  47976. image: {
  47977. source: "./media/characters/zener/bipedal.svg",
  47978. extra: 874/805,
  47979. bottom: 109/983
  47980. }
  47981. },
  47982. quadrupedal: {
  47983. height: math.unit(4.64, "feet"),
  47984. name: "Quadrupedal",
  47985. image: {
  47986. source: "./media/characters/zener/quadrupedal.svg",
  47987. extra: 638/507,
  47988. bottom: 190/828
  47989. }
  47990. },
  47991. cock: {
  47992. height: math.unit(18, "inches"),
  47993. name: "Cock",
  47994. image: {
  47995. source: "./media/characters/zener/cock.svg"
  47996. }
  47997. },
  47998. },
  47999. [
  48000. {
  48001. name: "Normal",
  48002. height: math.unit(7, "feet"),
  48003. default: true
  48004. },
  48005. ]
  48006. ))
  48007. characterMakers.push(() => makeCharacter(
  48008. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48009. {
  48010. nude: {
  48011. height: math.unit(5 + 6/12, "feet"),
  48012. name: "Nude",
  48013. image: {
  48014. source: "./media/characters/charlie-dog/nude.svg",
  48015. extra: 768/734,
  48016. bottom: 26/794
  48017. }
  48018. },
  48019. dressed: {
  48020. height: math.unit(5 + 6/12, "feet"),
  48021. name: "Dressed",
  48022. image: {
  48023. source: "./media/characters/charlie-dog/dressed.svg",
  48024. extra: 768/734,
  48025. bottom: 26/794
  48026. }
  48027. },
  48028. },
  48029. [
  48030. {
  48031. name: "Normal",
  48032. height: math.unit(5 + 6/12, "feet"),
  48033. default: true
  48034. },
  48035. ]
  48036. ))
  48037. characterMakers.push(() => makeCharacter(
  48038. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48039. {
  48040. front: {
  48041. height: math.unit(6 + 4/12, "feet"),
  48042. name: "Front",
  48043. image: {
  48044. source: "./media/characters/ir'istrasz/front.svg",
  48045. extra: 1014/977,
  48046. bottom: 65/1079
  48047. }
  48048. },
  48049. back: {
  48050. height: math.unit(6 + 4/12, "feet"),
  48051. name: "Back",
  48052. image: {
  48053. source: "./media/characters/ir'istrasz/back.svg",
  48054. extra: 1024/992,
  48055. bottom: 34/1058
  48056. }
  48057. },
  48058. },
  48059. [
  48060. {
  48061. name: "Normal",
  48062. height: math.unit(6 + 4/12, "feet"),
  48063. default: true
  48064. },
  48065. ]
  48066. ))
  48067. characterMakers.push(() => makeCharacter(
  48068. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48069. {
  48070. front: {
  48071. height: math.unit(5 + 8/12, "feet"),
  48072. name: "Front",
  48073. image: {
  48074. source: "./media/characters/dee-ditto/front.svg",
  48075. extra: 1874/1785,
  48076. bottom: 68/1942
  48077. }
  48078. },
  48079. back: {
  48080. height: math.unit(5 + 8/12, "feet"),
  48081. name: "Back",
  48082. image: {
  48083. source: "./media/characters/dee-ditto/back.svg",
  48084. extra: 1870/1783,
  48085. bottom: 77/1947
  48086. }
  48087. },
  48088. },
  48089. [
  48090. {
  48091. name: "Normal",
  48092. height: math.unit(5 + 8/12, "feet"),
  48093. default: true
  48094. },
  48095. ]
  48096. ))
  48097. characterMakers.push(() => makeCharacter(
  48098. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48099. {
  48100. front: {
  48101. height: math.unit(7 + 6/12, "feet"),
  48102. name: "Front",
  48103. image: {
  48104. source: "./media/characters/fey/front.svg",
  48105. extra: 995/979,
  48106. bottom: 30/1025
  48107. }
  48108. },
  48109. back: {
  48110. height: math.unit(7 + 6/12, "feet"),
  48111. name: "Back",
  48112. image: {
  48113. source: "./media/characters/fey/back.svg",
  48114. extra: 1079/1008,
  48115. bottom: 5/1084
  48116. }
  48117. },
  48118. dressed: {
  48119. height: math.unit(7 + 6/12, "feet"),
  48120. name: "Dressed",
  48121. image: {
  48122. source: "./media/characters/fey/dressed.svg",
  48123. extra: 995/979,
  48124. bottom: 30/1025
  48125. }
  48126. },
  48127. },
  48128. [
  48129. {
  48130. name: "Normal",
  48131. height: math.unit(7 + 6/12, "feet"),
  48132. default: true
  48133. },
  48134. ]
  48135. ))
  48136. characterMakers.push(() => makeCharacter(
  48137. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48138. {
  48139. standing: {
  48140. height: math.unit(17, "feet"),
  48141. name: "Standing",
  48142. image: {
  48143. source: "./media/characters/aster/standing.svg",
  48144. extra: 1798/1598,
  48145. bottom: 117/1915
  48146. }
  48147. },
  48148. },
  48149. [
  48150. {
  48151. name: "Normal",
  48152. height: math.unit(17, "feet"),
  48153. default: true
  48154. },
  48155. {
  48156. name: "Homewrecker",
  48157. height: math.unit(95, "feet")
  48158. },
  48159. {
  48160. name: "Planet Devourer",
  48161. height: math.unit(1008000, "miles")
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48167. {
  48168. front: {
  48169. height: math.unit(6 + 5/12, "feet"),
  48170. weight: math.unit(265, "lb"),
  48171. name: "Front",
  48172. image: {
  48173. source: "./media/characters/devon-childs/front.svg",
  48174. extra: 1795/1721,
  48175. bottom: 41/1836
  48176. }
  48177. },
  48178. side: {
  48179. height: math.unit(6 + 5/12, "feet"),
  48180. weight: math.unit(265, "lb"),
  48181. name: "Side",
  48182. image: {
  48183. source: "./media/characters/devon-childs/side.svg",
  48184. extra: 1812/1738,
  48185. bottom: 30/1842
  48186. }
  48187. },
  48188. back: {
  48189. height: math.unit(6 + 5/12, "feet"),
  48190. weight: math.unit(265, "lb"),
  48191. name: "Back",
  48192. image: {
  48193. source: "./media/characters/devon-childs/back.svg",
  48194. extra: 1808/1735,
  48195. bottom: 23/1831
  48196. }
  48197. },
  48198. hand: {
  48199. height: math.unit(1.464, "feet"),
  48200. name: "Hand",
  48201. image: {
  48202. source: "./media/characters/devon-childs/hand.svg"
  48203. }
  48204. },
  48205. foot: {
  48206. height: math.unit(1.6, "feet"),
  48207. name: "Foot",
  48208. image: {
  48209. source: "./media/characters/devon-childs/foot.svg"
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Micro",
  48216. height: math.unit(7, "cm")
  48217. },
  48218. {
  48219. name: "Normal",
  48220. height: math.unit(6 + 5/12, "feet"),
  48221. default: true
  48222. },
  48223. {
  48224. name: "Macro",
  48225. height: math.unit(154, "feet")
  48226. },
  48227. ]
  48228. ))
  48229. characterMakers.push(() => makeCharacter(
  48230. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48231. {
  48232. front: {
  48233. height: math.unit(6, "feet"),
  48234. weight: math.unit(180, "lb"),
  48235. name: "Front",
  48236. image: {
  48237. source: "./media/characters/lydemox-vir/front.svg",
  48238. extra: 1632/1435,
  48239. bottom: 58/1690
  48240. }
  48241. },
  48242. frontSFW: {
  48243. height: math.unit(6, "feet"),
  48244. weight: math.unit(180, "lb"),
  48245. name: "Front (SFW)",
  48246. image: {
  48247. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48248. extra: 1632/1435,
  48249. bottom: 58/1690
  48250. }
  48251. },
  48252. back: {
  48253. height: math.unit(6, "feet"),
  48254. weight: math.unit(180, "lb"),
  48255. name: "Back",
  48256. image: {
  48257. source: "./media/characters/lydemox-vir/back.svg",
  48258. extra: 1593/1408,
  48259. bottom: 31/1624
  48260. }
  48261. },
  48262. paw: {
  48263. height: math.unit(1.85, "feet"),
  48264. name: "Paw",
  48265. image: {
  48266. source: "./media/characters/lydemox-vir/paw.svg"
  48267. }
  48268. },
  48269. dick: {
  48270. height: math.unit(1.8, "feet"),
  48271. name: "Dick",
  48272. image: {
  48273. source: "./media/characters/lydemox-vir/dick.svg"
  48274. }
  48275. },
  48276. },
  48277. [
  48278. {
  48279. name: "Macro",
  48280. height: math.unit(100, "feet"),
  48281. default: true
  48282. },
  48283. {
  48284. name: "Teramacro",
  48285. height: math.unit(1, "earth")
  48286. },
  48287. {
  48288. name: "Planetary",
  48289. height: math.unit(20, "earths")
  48290. },
  48291. ]
  48292. ))
  48293. characterMakers.push(() => makeCharacter(
  48294. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48295. {
  48296. front: {
  48297. height: math.unit(15 + 8/12, "feet"),
  48298. weight: math.unit(1237, "kg"),
  48299. name: "Front",
  48300. image: {
  48301. source: "./media/characters/mia/front.svg",
  48302. extra: 1573/1446,
  48303. bottom: 58/1631
  48304. }
  48305. },
  48306. },
  48307. [
  48308. {
  48309. name: "Small",
  48310. height: math.unit(9 + 5/12, "feet")
  48311. },
  48312. {
  48313. name: "Normal",
  48314. height: math.unit(15 + 8/12, "feet"),
  48315. default: true
  48316. },
  48317. ]
  48318. ))
  48319. characterMakers.push(() => makeCharacter(
  48320. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48321. {
  48322. front: {
  48323. height: math.unit(10 + 6/12, "feet"),
  48324. weight: math.unit(1.3, "tons"),
  48325. name: "Front",
  48326. image: {
  48327. source: "./media/characters/mr-graves/front.svg",
  48328. extra: 1779/1695,
  48329. bottom: 198/1977
  48330. }
  48331. },
  48332. },
  48333. [
  48334. {
  48335. name: "Normal",
  48336. height: math.unit(10 + 6 /12, "feet"),
  48337. default: true
  48338. },
  48339. ]
  48340. ))
  48341. characterMakers.push(() => makeCharacter(
  48342. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48343. {
  48344. dressedFront: {
  48345. height: math.unit(5 + 8/12, "feet"),
  48346. weight: math.unit(125, "lb"),
  48347. name: "Dressed (Front)",
  48348. image: {
  48349. source: "./media/characters/jess/dressed-front.svg",
  48350. extra: 1176/1152,
  48351. bottom: 42/1218
  48352. }
  48353. },
  48354. dressedSide: {
  48355. height: math.unit(5 + 8/12, "feet"),
  48356. weight: math.unit(125, "lb"),
  48357. name: "Dressed (Side)",
  48358. image: {
  48359. source: "./media/characters/jess/dressed-side.svg",
  48360. extra: 1204/1190,
  48361. bottom: 6/1210
  48362. }
  48363. },
  48364. nudeFront: {
  48365. height: math.unit(5 + 8/12, "feet"),
  48366. weight: math.unit(125, "lb"),
  48367. name: "Nude (Front)",
  48368. image: {
  48369. source: "./media/characters/jess/nude-front.svg",
  48370. extra: 1176/1152,
  48371. bottom: 42/1218
  48372. }
  48373. },
  48374. nudeSide: {
  48375. height: math.unit(5 + 8/12, "feet"),
  48376. weight: math.unit(125, "lb"),
  48377. name: "Nude (Side)",
  48378. image: {
  48379. source: "./media/characters/jess/nude-side.svg",
  48380. extra: 1204/1190,
  48381. bottom: 6/1210
  48382. }
  48383. },
  48384. organsFront: {
  48385. height: math.unit(2.83799342105, "feet"),
  48386. name: "Organs (Front)",
  48387. image: {
  48388. source: "./media/characters/jess/organs-front.svg"
  48389. }
  48390. },
  48391. organsSide: {
  48392. height: math.unit(2.64225290474, "feet"),
  48393. name: "Organs (Side)",
  48394. image: {
  48395. source: "./media/characters/jess/organs-side.svg"
  48396. }
  48397. },
  48398. digestiveTractFront: {
  48399. height: math.unit(2.8106580871, "feet"),
  48400. name: "Digestive Tract (Front)",
  48401. image: {
  48402. source: "./media/characters/jess/digestive-tract-front.svg"
  48403. }
  48404. },
  48405. digestiveTractSide: {
  48406. height: math.unit(2.54365045014, "feet"),
  48407. name: "Digestive Tract (Side)",
  48408. image: {
  48409. source: "./media/characters/jess/digestive-tract-side.svg"
  48410. }
  48411. },
  48412. respiratorySystemFront: {
  48413. height: math.unit(1.11196233456, "feet"),
  48414. name: "Respiratory System (Front)",
  48415. image: {
  48416. source: "./media/characters/jess/respiratory-system-front.svg"
  48417. }
  48418. },
  48419. respiratorySystemSide: {
  48420. height: math.unit(0.89327966297, "feet"),
  48421. name: "Respiratory System (Side)",
  48422. image: {
  48423. source: "./media/characters/jess/respiratory-system-side.svg"
  48424. }
  48425. },
  48426. urinaryTractFront: {
  48427. height: math.unit(1.16126356186, "feet"),
  48428. name: "Urinary Tract (Front)",
  48429. image: {
  48430. source: "./media/characters/jess/urinary-tract-front.svg"
  48431. }
  48432. },
  48433. urinaryTractSide: {
  48434. height: math.unit(1.20910039627, "feet"),
  48435. name: "Urinary Tract (Side)",
  48436. image: {
  48437. source: "./media/characters/jess/urinary-tract-side.svg"
  48438. }
  48439. },
  48440. reproductiveOrgansFront: {
  48441. height: math.unit(0.48422591566, "feet"),
  48442. name: "Reproductive Organs (Front)",
  48443. image: {
  48444. source: "./media/characters/jess/reproductive-organs-front.svg"
  48445. }
  48446. },
  48447. reproductiveOrgansSide: {
  48448. height: math.unit(0.61553314481, "feet"),
  48449. name: "Reproductive Organs (Side)",
  48450. image: {
  48451. source: "./media/characters/jess/reproductive-organs-side.svg"
  48452. }
  48453. },
  48454. breastsFront: {
  48455. height: math.unit(0.47690395121, "feet"),
  48456. name: "Breasts (Front)",
  48457. image: {
  48458. source: "./media/characters/jess/breasts-front.svg"
  48459. }
  48460. },
  48461. breastsSide: {
  48462. height: math.unit(0.30556998307, "feet"),
  48463. name: "Breasts (Side)",
  48464. image: {
  48465. source: "./media/characters/jess/breasts-side.svg"
  48466. }
  48467. },
  48468. heartFront: {
  48469. height: math.unit(0.53011022622, "feet"),
  48470. name: "Heart (Front)",
  48471. image: {
  48472. source: "./media/characters/jess/heart-front.svg"
  48473. }
  48474. },
  48475. heartSide: {
  48476. height: math.unit(0.51790695213, "feet"),
  48477. name: "Heart (Side)",
  48478. image: {
  48479. source: "./media/characters/jess/heart-side.svg"
  48480. }
  48481. },
  48482. earsAndNoseFront: {
  48483. height: math.unit(0.29385483995, "feet"),
  48484. name: "Ears and Nose (Front)",
  48485. image: {
  48486. source: "./media/characters/jess/ears-and-nose-front.svg"
  48487. }
  48488. },
  48489. earsAndNoseSide: {
  48490. height: math.unit(0.18109658741, "feet"),
  48491. name: "Ears and Nose (Side)",
  48492. image: {
  48493. source: "./media/characters/jess/ears-and-nose-side.svg"
  48494. }
  48495. },
  48496. },
  48497. [
  48498. {
  48499. name: "Normal",
  48500. height: math.unit(5 + 8/12, "feet"),
  48501. default: true
  48502. },
  48503. ]
  48504. ))
  48505. characterMakers.push(() => makeCharacter(
  48506. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48507. {
  48508. front: {
  48509. height: math.unit(6, "feet"),
  48510. weight: math.unit(6.64467e-7, "grams"),
  48511. name: "Front",
  48512. image: {
  48513. source: "./media/characters/wimpering/front.svg",
  48514. extra: 597/587,
  48515. bottom: 34/631
  48516. }
  48517. },
  48518. },
  48519. [
  48520. {
  48521. name: "Micro",
  48522. height: math.unit(0.4, "mm"),
  48523. default: true
  48524. },
  48525. ]
  48526. ))
  48527. characterMakers.push(() => makeCharacter(
  48528. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48529. {
  48530. front: {
  48531. height: math.unit(6, "feet"),
  48532. weight: math.unit(150, "lb"),
  48533. name: "Front",
  48534. image: {
  48535. source: "./media/characters/keltre/front.svg",
  48536. extra: 1099/1057,
  48537. bottom: 22/1121
  48538. }
  48539. },
  48540. back: {
  48541. height: math.unit(6, "feet"),
  48542. weight: math.unit(150, "lb"),
  48543. name: "Back",
  48544. image: {
  48545. source: "./media/characters/keltre/back.svg",
  48546. extra: 1095/1053,
  48547. bottom: 17/1112
  48548. }
  48549. },
  48550. dressed: {
  48551. height: math.unit(6, "feet"),
  48552. weight: math.unit(150, "lb"),
  48553. name: "Dressed",
  48554. image: {
  48555. source: "./media/characters/keltre/dressed.svg",
  48556. extra: 1099/1057,
  48557. bottom: 22/1121
  48558. }
  48559. },
  48560. winter: {
  48561. height: math.unit(6, "feet"),
  48562. weight: math.unit(150, "lb"),
  48563. name: "Winter",
  48564. image: {
  48565. source: "./media/characters/keltre/winter.svg",
  48566. extra: 1099/1057,
  48567. bottom: 22/1121
  48568. }
  48569. },
  48570. head: {
  48571. height: math.unit(1.61, "feet"),
  48572. name: "Head",
  48573. image: {
  48574. source: "./media/characters/keltre/head.svg",
  48575. extra: 534/421,
  48576. bottom: 0/534
  48577. }
  48578. },
  48579. hand: {
  48580. height: math.unit(1.3, "feet"),
  48581. name: "Hand",
  48582. image: {
  48583. source: "./media/characters/keltre/hand.svg"
  48584. }
  48585. },
  48586. foot: {
  48587. height: math.unit(1.8, "feet"),
  48588. name: "Foot",
  48589. image: {
  48590. source: "./media/characters/keltre/foot.svg"
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(6, "feet"),
  48598. default: true
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48604. {
  48605. front: {
  48606. height: math.unit(6 + 2/12, "feet"),
  48607. name: "Front",
  48608. image: {
  48609. source: "./media/characters/nox/front.svg",
  48610. extra: 1917/1830,
  48611. bottom: 74/1991
  48612. }
  48613. },
  48614. back: {
  48615. height: math.unit(6 + 2/12, "feet"),
  48616. name: "Back",
  48617. image: {
  48618. source: "./media/characters/nox/back.svg",
  48619. extra: 1896/1815,
  48620. bottom: 21/1917
  48621. }
  48622. },
  48623. head: {
  48624. height: math.unit(1.1, "feet"),
  48625. name: "Head",
  48626. image: {
  48627. source: "./media/characters/nox/head.svg",
  48628. extra: 874/704,
  48629. bottom: 0/874
  48630. }
  48631. },
  48632. tattoo: {
  48633. height: math.unit(0.729, "feet"),
  48634. name: "Tattoo",
  48635. image: {
  48636. source: "./media/characters/nox/tattoo.svg"
  48637. }
  48638. },
  48639. },
  48640. [
  48641. {
  48642. name: "Normal",
  48643. height: math.unit(6 + 2/12, "feet")
  48644. },
  48645. {
  48646. name: "Gigamacro",
  48647. height: math.unit(2, "earths"),
  48648. default: true
  48649. },
  48650. {
  48651. name: "Cosmic",
  48652. height: math.unit(867, "yottameters")
  48653. },
  48654. ]
  48655. ))
  48656. //characters
  48657. function makeCharacters() {
  48658. const results = [];
  48659. characterMakers.forEach(character => {
  48660. results.push(character());
  48661. });
  48662. return results;
  48663. }