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

48947 строки
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. }
  1904. //species
  1905. function getSpeciesInfo(speciesList) {
  1906. let result = new Set();
  1907. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1908. result.add(entry)
  1909. });
  1910. return Array.from(result);
  1911. };
  1912. function getSpeciesInfoHelper(species) {
  1913. if (!speciesData[species]) {
  1914. console.warn(species + " doesn't exist");
  1915. return [];
  1916. }
  1917. if (speciesData[species].parents) {
  1918. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1919. } else {
  1920. return [species];
  1921. }
  1922. }
  1923. characterMakers.push(() => makeCharacter(
  1924. {
  1925. name: "Fen",
  1926. species: ["crux"],
  1927. description: {
  1928. title: "Bio",
  1929. text: "Very furry. Sheds on everything."
  1930. },
  1931. tags: [
  1932. "anthro",
  1933. "goo"
  1934. ]
  1935. },
  1936. {
  1937. front: {
  1938. height: math.unit(12, "feet"),
  1939. weight: math.unit(2400, "lb"),
  1940. name: "Front",
  1941. image: {
  1942. source: "./media/characters/fen/front.svg",
  1943. extra: 1804/1562,
  1944. bottom: 205/2009
  1945. }
  1946. },
  1947. diving: {
  1948. height: math.unit(4.9, "meters"),
  1949. weight: math.unit(2400, "lb"),
  1950. name: "Diving",
  1951. image: {
  1952. source: "./media/characters/fen/diving.svg"
  1953. }
  1954. },
  1955. goo: {
  1956. height: math.unit(12, "feet"),
  1957. weight: math.unit(3600, "lb"),
  1958. volume: math.unit(1000, "liters"),
  1959. capacity: math.unit(6, "people"),
  1960. name: "Goo",
  1961. image: {
  1962. source: "./media/characters/fen/goo.svg",
  1963. extra: 1307/1071,
  1964. bottom: 134/1441
  1965. }
  1966. },
  1967. maw: {
  1968. height: math.unit(5.03, "feet"),
  1969. name: "Maw",
  1970. image: {
  1971. source: "./media/characters/fen/maw.svg"
  1972. }
  1973. },
  1974. gooCeiling: {
  1975. height: math.unit(6.6, "feet"),
  1976. weight: math.unit(3000, "lb"),
  1977. volume: math.unit(1000, "liters"),
  1978. capacity: math.unit(6, "people"),
  1979. name: "Goo (Ceiling)",
  1980. image: {
  1981. source: "./media/characters/fen/goo-ceiling.svg"
  1982. }
  1983. },
  1984. back: {
  1985. height: math.unit(12, "feet"),
  1986. weight: math.unit(2400, "lb"),
  1987. name: "Back",
  1988. image: {
  1989. source: "./media/characters/fen/back.svg",
  1990. },
  1991. info: {
  1992. description: {
  1993. mode: "append",
  1994. text: "\n\nHe is not currently looking at you."
  1995. }
  1996. }
  1997. },
  1998. full: {
  1999. height: math.unit(1.6, "meter"),
  2000. weight: math.unit(3200, "lb"),
  2001. name: "Full",
  2002. image: {
  2003. source: "./media/characters/fen/full.svg",
  2004. extra: 1133/859,
  2005. bottom: 145/1278
  2006. },
  2007. info: {
  2008. description: {
  2009. mode: "append",
  2010. text: "\n\nMunch."
  2011. }
  2012. }
  2013. },
  2014. gooLounging: {
  2015. height: math.unit(4.53, "feet"),
  2016. weight: math.unit(3000, "lb"),
  2017. capacity: math.unit(6, "people"),
  2018. name: "Goo (Lounging)",
  2019. image: {
  2020. source: "./media/characters/fen/goo-lounging.svg",
  2021. bottom: 116 / 613
  2022. }
  2023. },
  2024. lounging: {
  2025. height: math.unit(10.52, "feet"),
  2026. weight: math.unit(2400, "lb"),
  2027. name: "Lounging",
  2028. image: {
  2029. source: "./media/characters/fen/lounging.svg"
  2030. }
  2031. },
  2032. },
  2033. [
  2034. {
  2035. name: "Small",
  2036. height: math.unit(2.2428, "meter")
  2037. },
  2038. {
  2039. name: "Normal",
  2040. height: math.unit(12, "feet"),
  2041. default: true,
  2042. },
  2043. {
  2044. name: "Big",
  2045. height: math.unit(20, "feet")
  2046. },
  2047. {
  2048. name: "Minimacro",
  2049. height: math.unit(40, "feet"),
  2050. info: {
  2051. description: {
  2052. mode: "append",
  2053. text: "\n\nTOO DAMN BIG"
  2054. }
  2055. }
  2056. },
  2057. {
  2058. name: "Macro",
  2059. height: math.unit(100, "feet"),
  2060. info: {
  2061. description: {
  2062. mode: "append",
  2063. text: "\n\nTOO DAMN BIG"
  2064. }
  2065. }
  2066. },
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(2, "miles")
  2070. },
  2071. {
  2072. name: "Gigamacro",
  2073. height: math.unit(10, "earths")
  2074. },
  2075. ]
  2076. ))
  2077. characterMakers.push(() => makeCharacter(
  2078. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2079. {
  2080. front: {
  2081. height: math.unit(183, "cm"),
  2082. weight: math.unit(80, "kg"),
  2083. name: "Front",
  2084. image: {
  2085. source: "./media/characters/sofia-fluttertail/front.svg",
  2086. bottom: 0.01,
  2087. extra: 2154 / 2081
  2088. }
  2089. },
  2090. frontAlt: {
  2091. height: math.unit(183, "cm"),
  2092. weight: math.unit(80, "kg"),
  2093. name: "Front (alt)",
  2094. image: {
  2095. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2096. }
  2097. },
  2098. back: {
  2099. height: math.unit(183, "cm"),
  2100. weight: math.unit(80, "kg"),
  2101. name: "Back",
  2102. image: {
  2103. source: "./media/characters/sofia-fluttertail/back.svg"
  2104. }
  2105. },
  2106. kneeling: {
  2107. height: math.unit(125, "cm"),
  2108. weight: math.unit(80, "kg"),
  2109. name: "Kneeling",
  2110. image: {
  2111. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2112. extra: 1033 / 977,
  2113. bottom: 23.7 / 1057
  2114. }
  2115. },
  2116. maw: {
  2117. height: math.unit(183 / 5, "cm"),
  2118. name: "Maw",
  2119. image: {
  2120. source: "./media/characters/sofia-fluttertail/maw.svg"
  2121. }
  2122. },
  2123. mawcloseup: {
  2124. height: math.unit(183 / 5 * 0.41, "cm"),
  2125. name: "Maw (Closeup)",
  2126. image: {
  2127. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2128. }
  2129. },
  2130. paws: {
  2131. height: math.unit(1.17, "feet"),
  2132. name: "Paws",
  2133. image: {
  2134. source: "./media/characters/sofia-fluttertail/paws.svg",
  2135. extra: 851 / 851,
  2136. bottom: 17 / 868
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Normal",
  2143. height: math.unit(1.83, "meter")
  2144. },
  2145. {
  2146. name: "Size Thief",
  2147. height: math.unit(18, "feet")
  2148. },
  2149. {
  2150. name: "50 Foot Collie",
  2151. height: math.unit(50, "feet")
  2152. },
  2153. {
  2154. name: "Macro",
  2155. height: math.unit(96, "feet"),
  2156. default: true
  2157. },
  2158. {
  2159. name: "Megamerger",
  2160. height: math.unit(650, "feet")
  2161. },
  2162. ]
  2163. ))
  2164. characterMakers.push(() => makeCharacter(
  2165. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2166. {
  2167. front: {
  2168. height: math.unit(7, "feet"),
  2169. weight: math.unit(100, "kg"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/march/front.svg",
  2173. extra: 1992/1851,
  2174. bottom: 39/2031
  2175. }
  2176. },
  2177. foot: {
  2178. height: math.unit(0.9, "feet"),
  2179. name: "Foot",
  2180. image: {
  2181. source: "./media/characters/march/foot.svg"
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Normal",
  2188. height: math.unit(7.9, "feet")
  2189. },
  2190. {
  2191. name: "Macro",
  2192. height: math.unit(220, "meters")
  2193. },
  2194. {
  2195. name: "Megamacro",
  2196. height: math.unit(2.98, "km"),
  2197. default: true
  2198. },
  2199. {
  2200. name: "Gigamacro",
  2201. height: math.unit(15963, "km")
  2202. },
  2203. {
  2204. name: "Teramacro",
  2205. height: math.unit(2980000000, "km")
  2206. },
  2207. {
  2208. name: "Examacro",
  2209. height: math.unit(250, "parsecs")
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(6, "feet"),
  2218. weight: math.unit(60, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/noir/front.svg",
  2222. extra: 1,
  2223. bottom: 0.032
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(6.6, "feet")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(500, "feet")
  2235. },
  2236. {
  2237. name: "Megamacro",
  2238. height: math.unit(2.5, "km"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Gigamacro",
  2243. height: math.unit(22500, "km")
  2244. },
  2245. {
  2246. name: "Teramacro",
  2247. height: math.unit(2500000000, "km")
  2248. },
  2249. {
  2250. name: "Examacro",
  2251. height: math.unit(200, "parsecs")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/okuri/front.svg",
  2264. extra: 739/665,
  2265. bottom: 39/778
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/okuri/back.svg",
  2274. extra: 734/653,
  2275. bottom: 13/747
  2276. }
  2277. },
  2278. sitting: {
  2279. height: math.unit(2.95, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Sitting",
  2282. image: {
  2283. source: "./media/characters/okuri/sitting.svg",
  2284. extra: 370/318,
  2285. bottom: 99/469
  2286. }
  2287. },
  2288. },
  2289. [
  2290. {
  2291. name: "Smallest",
  2292. height: math.unit(5 + 2/12, "feet")
  2293. },
  2294. {
  2295. name: "Smaller",
  2296. height: math.unit(300, "feet")
  2297. },
  2298. {
  2299. name: "Small",
  2300. height: math.unit(1000, "feet")
  2301. },
  2302. {
  2303. name: "Macro",
  2304. height: math.unit(1, "mile")
  2305. },
  2306. {
  2307. name: "Mega Macro (Small)",
  2308. height: math.unit(20, "km")
  2309. },
  2310. {
  2311. name: "Mega Macro (Large)",
  2312. height: math.unit(600, "km")
  2313. },
  2314. {
  2315. name: "Giga Macro",
  2316. height: math.unit(10000, "km")
  2317. },
  2318. {
  2319. name: "Normal",
  2320. height: math.unit(577560, "km"),
  2321. default: true
  2322. },
  2323. {
  2324. name: "Large",
  2325. height: math.unit(4, "galaxies")
  2326. },
  2327. {
  2328. name: "Largest",
  2329. height: math.unit(15, "multiverses")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(7, "feet"),
  2338. weight: math.unit(100, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/manny/front.svg",
  2342. extra: 1,
  2343. bottom: 0.06
  2344. }
  2345. },
  2346. back: {
  2347. height: math.unit(7, "feet"),
  2348. weight: math.unit(100, "kg"),
  2349. name: "Back",
  2350. image: {
  2351. source: "./media/characters/manny/back.svg",
  2352. extra: 1,
  2353. bottom: 0.014
  2354. }
  2355. },
  2356. },
  2357. [
  2358. {
  2359. name: "Normal",
  2360. height: math.unit(7, "feet"),
  2361. },
  2362. {
  2363. name: "Macro",
  2364. height: math.unit(78, "feet"),
  2365. default: true
  2366. },
  2367. {
  2368. name: "Macro+",
  2369. height: math.unit(300, "meters")
  2370. },
  2371. {
  2372. name: "Macro++",
  2373. height: math.unit(2400, "meters")
  2374. },
  2375. {
  2376. name: "Megamacro",
  2377. height: math.unit(5167, "meters")
  2378. },
  2379. {
  2380. name: "Gigamacro",
  2381. height: math.unit(41769, "miles")
  2382. },
  2383. ]
  2384. ))
  2385. characterMakers.push(() => makeCharacter(
  2386. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2387. {
  2388. front: {
  2389. height: math.unit(7, "feet"),
  2390. weight: math.unit(100, "kg"),
  2391. name: "Front",
  2392. image: {
  2393. source: "./media/characters/adake/front-1.svg"
  2394. }
  2395. },
  2396. frontAlt: {
  2397. height: math.unit(7, "feet"),
  2398. weight: math.unit(100, "kg"),
  2399. name: "Front (Alt)",
  2400. image: {
  2401. source: "./media/characters/adake/front-2.svg",
  2402. extra: 1,
  2403. bottom: 0.01
  2404. }
  2405. },
  2406. back: {
  2407. height: math.unit(7, "feet"),
  2408. weight: math.unit(100, "kg"),
  2409. name: "Back",
  2410. image: {
  2411. source: "./media/characters/adake/back.svg",
  2412. }
  2413. },
  2414. kneel: {
  2415. height: math.unit(5.385, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Kneeling",
  2418. image: {
  2419. source: "./media/characters/adake/kneel.svg",
  2420. bottom: 0.052
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(7, "feet"),
  2428. },
  2429. {
  2430. name: "Macro",
  2431. height: math.unit(78, "feet"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Macro+",
  2436. height: math.unit(300, "meters")
  2437. },
  2438. {
  2439. name: "Macro++",
  2440. height: math.unit(2400, "meters")
  2441. },
  2442. {
  2443. name: "Megamacro",
  2444. height: math.unit(5167, "meters")
  2445. },
  2446. {
  2447. name: "Gigamacro",
  2448. height: math.unit(41769, "miles")
  2449. },
  2450. ]
  2451. ))
  2452. characterMakers.push(() => makeCharacter(
  2453. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2454. {
  2455. front: {
  2456. height: math.unit(1.65, "meters"),
  2457. weight: math.unit(50, "kg"),
  2458. name: "Front",
  2459. image: {
  2460. source: "./media/characters/elijah/front.svg",
  2461. extra: 858 / 830,
  2462. bottom: 95.5 / 953.8559
  2463. }
  2464. },
  2465. back: {
  2466. height: math.unit(1.65, "meters"),
  2467. weight: math.unit(50, "kg"),
  2468. name: "Back",
  2469. image: {
  2470. source: "./media/characters/elijah/back.svg",
  2471. extra: 895 / 850,
  2472. bottom: 5.3 / 897.956
  2473. }
  2474. },
  2475. frontNsfw: {
  2476. height: math.unit(1.65, "meters"),
  2477. weight: math.unit(50, "kg"),
  2478. name: "Front (NSFW)",
  2479. image: {
  2480. source: "./media/characters/elijah/front-nsfw.svg",
  2481. extra: 858 / 830,
  2482. bottom: 95.5 / 953.8559
  2483. }
  2484. },
  2485. backNsfw: {
  2486. height: math.unit(1.65, "meters"),
  2487. weight: math.unit(50, "kg"),
  2488. name: "Back (NSFW)",
  2489. image: {
  2490. source: "./media/characters/elijah/back-nsfw.svg",
  2491. extra: 895 / 850,
  2492. bottom: 5.3 / 897.956
  2493. }
  2494. },
  2495. dick: {
  2496. height: math.unit(1, "feet"),
  2497. name: "Dick",
  2498. image: {
  2499. source: "./media/characters/elijah/dick.svg"
  2500. }
  2501. },
  2502. beakOpen: {
  2503. height: math.unit(1.25, "feet"),
  2504. name: "Beak (Open)",
  2505. image: {
  2506. source: "./media/characters/elijah/beak-open.svg"
  2507. }
  2508. },
  2509. beakShut: {
  2510. height: math.unit(1.25, "feet"),
  2511. name: "Beak (Shut)",
  2512. image: {
  2513. source: "./media/characters/elijah/beak-shut.svg"
  2514. }
  2515. },
  2516. footFlexing: {
  2517. height: math.unit(1.61, "feet"),
  2518. name: "Foot (Flexing)",
  2519. image: {
  2520. source: "./media/characters/elijah/foot-flexing.svg"
  2521. }
  2522. },
  2523. footStepping: {
  2524. height: math.unit(1.44, "feet"),
  2525. name: "Foot (Stepping)",
  2526. image: {
  2527. source: "./media/characters/elijah/foot-stepping.svg"
  2528. }
  2529. },
  2530. plantigradeLeg: {
  2531. height: math.unit(2.34, "feet"),
  2532. name: "Plantigrade Leg",
  2533. image: {
  2534. source: "./media/characters/elijah/plantigrade-leg.svg"
  2535. }
  2536. },
  2537. plantigradeFootLeft: {
  2538. height: math.unit(0.9, "feet"),
  2539. name: "Plantigrade Foot (Left)",
  2540. image: {
  2541. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2542. }
  2543. },
  2544. plantigradeFootRight: {
  2545. height: math.unit(0.9, "feet"),
  2546. name: "Plantigrade Foot (Right)",
  2547. image: {
  2548. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Normal",
  2555. height: math.unit(1.65, "meters")
  2556. },
  2557. {
  2558. name: "Macro",
  2559. height: math.unit(55, "meters"),
  2560. default: true
  2561. },
  2562. {
  2563. name: "Macro+",
  2564. height: math.unit(105, "meters")
  2565. },
  2566. ]
  2567. ))
  2568. characterMakers.push(() => makeCharacter(
  2569. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2570. {
  2571. front: {
  2572. height: math.unit(7 + 2/12, "feet"),
  2573. weight: math.unit(320, "kg"),
  2574. name: "Front",
  2575. image: {
  2576. source: "./media/characters/rai/front.svg",
  2577. extra: 1802/1696,
  2578. bottom: 68/1870
  2579. }
  2580. },
  2581. frontDressed: {
  2582. height: math.unit(7 + 2/12, "feet"),
  2583. weight: math.unit(320, "kg"),
  2584. name: "Front (Dressed)",
  2585. image: {
  2586. source: "./media/characters/rai/front-dressed.svg",
  2587. extra: 1802/1696,
  2588. bottom: 68/1870
  2589. }
  2590. },
  2591. side: {
  2592. height: math.unit(7 + 2/12, "feet"),
  2593. weight: math.unit(320, "kg"),
  2594. name: "Side",
  2595. image: {
  2596. source: "./media/characters/rai/side.svg",
  2597. extra: 1789/1710,
  2598. bottom: 115/1904
  2599. }
  2600. },
  2601. back: {
  2602. height: math.unit(7 + 2/12, "feet"),
  2603. weight: math.unit(320, "kg"),
  2604. name: "Back",
  2605. image: {
  2606. source: "./media/characters/rai/back.svg",
  2607. extra: 1770/1707,
  2608. bottom: 28/1798
  2609. }
  2610. },
  2611. feral: {
  2612. height: math.unit(9.5, "feet"),
  2613. weight: math.unit(640, "kg"),
  2614. name: "Feral",
  2615. image: {
  2616. source: "./media/characters/rai/feral.svg",
  2617. extra: 945/553,
  2618. bottom: 176/1121
  2619. }
  2620. },
  2621. dragon: {
  2622. height: math.unit(23, "feet"),
  2623. weight: math.unit(50000, "lb"),
  2624. name: "Dragon",
  2625. image: {
  2626. source: "./media/characters/rai/dragon.svg",
  2627. extra: 2498 / 2030,
  2628. bottom: 85.2 / 2584
  2629. }
  2630. },
  2631. maw: {
  2632. height: math.unit(1.69, "feet"),
  2633. name: "Maw",
  2634. image: {
  2635. source: "./media/characters/rai/maw.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(7 + 2/12, "feet")
  2643. },
  2644. {
  2645. name: "Big",
  2646. height: math.unit(11, "feet")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(302, "feet"),
  2651. default: true
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2657. {
  2658. frontDressed: {
  2659. height: math.unit(216, "feet"),
  2660. weight: math.unit(7000000, "lb"),
  2661. name: "Front (Dressed)",
  2662. image: {
  2663. source: "./media/characters/jazzy/front-dressed.svg",
  2664. extra: 2738 / 2651,
  2665. bottom: 41.8 / 2786
  2666. }
  2667. },
  2668. backDressed: {
  2669. height: math.unit(216, "feet"),
  2670. weight: math.unit(7000000, "lb"),
  2671. name: "Back (Dressed)",
  2672. image: {
  2673. source: "./media/characters/jazzy/back-dressed.svg",
  2674. extra: 2775 / 2673,
  2675. bottom: 36.8 / 2817
  2676. }
  2677. },
  2678. front: {
  2679. height: math.unit(216, "feet"),
  2680. weight: math.unit(7000000, "lb"),
  2681. name: "Front",
  2682. image: {
  2683. source: "./media/characters/jazzy/front.svg",
  2684. extra: 2738 / 2651,
  2685. bottom: 41.8 / 2786
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(216, "feet"),
  2690. weight: math.unit(7000000, "lb"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/jazzy/back.svg",
  2694. extra: 2775 / 2673,
  2695. bottom: 36.8 / 2817
  2696. }
  2697. },
  2698. maw: {
  2699. height: math.unit(20, "feet"),
  2700. name: "Maw",
  2701. image: {
  2702. source: "./media/characters/jazzy/maw.svg"
  2703. }
  2704. },
  2705. paws: {
  2706. height: math.unit(27.5, "feet"),
  2707. name: "Paws",
  2708. image: {
  2709. source: "./media/characters/jazzy/paws.svg"
  2710. }
  2711. },
  2712. eye: {
  2713. height: math.unit(4.4, "feet"),
  2714. name: "Eye",
  2715. image: {
  2716. source: "./media/characters/jazzy/eye.svg"
  2717. }
  2718. },
  2719. droneOffense: {
  2720. height: math.unit(9.5, "inches"),
  2721. name: "Drone (Offense)",
  2722. image: {
  2723. source: "./media/characters/jazzy/drone-offense.svg"
  2724. }
  2725. },
  2726. droneRecon: {
  2727. height: math.unit(9.5, "inches"),
  2728. name: "Drone (Recon)",
  2729. image: {
  2730. source: "./media/characters/jazzy/drone-recon.svg"
  2731. }
  2732. },
  2733. droneDefense: {
  2734. height: math.unit(9.5, "inches"),
  2735. name: "Drone (Defense)",
  2736. image: {
  2737. source: "./media/characters/jazzy/drone-defense.svg"
  2738. }
  2739. },
  2740. },
  2741. [
  2742. {
  2743. name: "Macro",
  2744. height: math.unit(216, "feet"),
  2745. default: true
  2746. },
  2747. ]
  2748. ))
  2749. characterMakers.push(() => makeCharacter(
  2750. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2751. {
  2752. front: {
  2753. height: math.unit(9 + 6/12, "feet"),
  2754. weight: math.unit(700, "lb"),
  2755. name: "Front",
  2756. image: {
  2757. source: "./media/characters/flamm/front.svg",
  2758. extra: 1751/1632,
  2759. bottom: 46/1797
  2760. }
  2761. },
  2762. buff: {
  2763. height: math.unit(9 + 6/12, "feet"),
  2764. weight: math.unit(950, "lb"),
  2765. name: "Buff",
  2766. image: {
  2767. source: "./media/characters/flamm/buff.svg",
  2768. extra: 3018/2874,
  2769. bottom: 221/3239
  2770. }
  2771. },
  2772. },
  2773. [
  2774. {
  2775. name: "Normal",
  2776. height: math.unit(9.5, "feet")
  2777. },
  2778. {
  2779. name: "Macro",
  2780. height: math.unit(200, "feet"),
  2781. default: true
  2782. },
  2783. ]
  2784. ))
  2785. characterMakers.push(() => makeCharacter(
  2786. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2787. {
  2788. front: {
  2789. height: math.unit(5 + 3/12, "feet"),
  2790. weight: math.unit(60, "kg"),
  2791. name: "Front",
  2792. image: {
  2793. source: "./media/characters/zephiro/front.svg",
  2794. extra: 2309 / 2162,
  2795. bottom: 0.069
  2796. }
  2797. },
  2798. side: {
  2799. height: math.unit(5 + 3/12, "feet"),
  2800. weight: math.unit(60, "kg"),
  2801. name: "Side",
  2802. image: {
  2803. source: "./media/characters/zephiro/side.svg",
  2804. extra: 2403 / 2279,
  2805. bottom: 0.015
  2806. }
  2807. },
  2808. back: {
  2809. height: math.unit(5 + 3/12, "feet"),
  2810. weight: math.unit(60, "kg"),
  2811. name: "Back",
  2812. image: {
  2813. source: "./media/characters/zephiro/back.svg",
  2814. extra: 2373 / 2244,
  2815. bottom: 0.013
  2816. }
  2817. },
  2818. hand: {
  2819. height: math.unit(0.68, "feet"),
  2820. name: "Hand",
  2821. image: {
  2822. source: "./media/characters/zephiro/hand.svg"
  2823. }
  2824. },
  2825. paw: {
  2826. height: math.unit(1, "feet"),
  2827. name: "Paw",
  2828. image: {
  2829. source: "./media/characters/zephiro/paw.svg"
  2830. }
  2831. },
  2832. beans: {
  2833. height: math.unit(0.93, "feet"),
  2834. name: "Beans",
  2835. image: {
  2836. source: "./media/characters/zephiro/beans.svg"
  2837. }
  2838. },
  2839. },
  2840. [
  2841. {
  2842. name: "Micro",
  2843. height: math.unit(3, "inches")
  2844. },
  2845. {
  2846. name: "Normal",
  2847. height: math.unit(5 + 3 / 12, "feet"),
  2848. default: true
  2849. },
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(118, "feet")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(5, "feet"),
  2861. weight: math.unit(90, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/fory/front.svg",
  2865. extra: 2862 / 2674,
  2866. bottom: 180 / 3043.8
  2867. }
  2868. },
  2869. back: {
  2870. height: math.unit(5, "feet"),
  2871. weight: math.unit(90, "kg"),
  2872. name: "Back",
  2873. image: {
  2874. source: "./media/characters/fory/back.svg",
  2875. extra: 2962 / 2791,
  2876. bottom: 106 / 3071.8
  2877. }
  2878. },
  2879. foot: {
  2880. height: math.unit(2.14, "feet"),
  2881. name: "Foot",
  2882. image: {
  2883. source: "./media/characters/fory/foot.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(5, "feet")
  2891. },
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(50, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(10, "miles")
  2900. },
  2901. {
  2902. name: "Gigamacro",
  2903. height: math.unit(5, "earths")
  2904. },
  2905. ]
  2906. ))
  2907. characterMakers.push(() => makeCharacter(
  2908. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2909. {
  2910. front: {
  2911. height: math.unit(7, "feet"),
  2912. weight: math.unit(90, "kg"),
  2913. name: "Front",
  2914. image: {
  2915. source: "./media/characters/kurrikage/front.svg",
  2916. extra: 1845/1733,
  2917. bottom: 119/1964
  2918. }
  2919. },
  2920. back: {
  2921. height: math.unit(7, "feet"),
  2922. weight: math.unit(90, "kg"),
  2923. name: "Back",
  2924. image: {
  2925. source: "./media/characters/kurrikage/back.svg",
  2926. extra: 1790/1677,
  2927. bottom: 61/1851
  2928. }
  2929. },
  2930. dressed: {
  2931. height: math.unit(7, "feet"),
  2932. weight: math.unit(90, "kg"),
  2933. name: "Dressed",
  2934. image: {
  2935. source: "./media/characters/kurrikage/dressed.svg",
  2936. extra: 1845/1733,
  2937. bottom: 119/1964
  2938. }
  2939. },
  2940. foot: {
  2941. height: math.unit(1.5, "feet"),
  2942. name: "Foot",
  2943. image: {
  2944. source: "./media/characters/kurrikage/foot.svg"
  2945. }
  2946. },
  2947. staff: {
  2948. height: math.unit(6.7, "feet"),
  2949. name: "Staff",
  2950. image: {
  2951. source: "./media/characters/kurrikage/staff.svg"
  2952. }
  2953. },
  2954. peek: {
  2955. height: math.unit(1.05, "feet"),
  2956. name: "Peeking",
  2957. image: {
  2958. source: "./media/characters/kurrikage/peek.svg",
  2959. bottom: 0.08
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Normal",
  2966. height: math.unit(12, "feet"),
  2967. default: true
  2968. },
  2969. {
  2970. name: "Big",
  2971. height: math.unit(20, "feet")
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(500, "feet")
  2976. },
  2977. {
  2978. name: "Megamacro",
  2979. height: math.unit(20, "miles")
  2980. },
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/shingo/front.svg",
  2992. extra: 1900/1825,
  2993. bottom: 82/1982
  2994. }
  2995. },
  2996. side: {
  2997. height: math.unit(6, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Side",
  3000. image: {
  3001. source: "./media/characters/shingo/side.svg",
  3002. extra: 1930/1865,
  3003. bottom: 16/1946
  3004. }
  3005. },
  3006. back: {
  3007. height: math.unit(6, "feet"),
  3008. weight: math.unit(75, "kg"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/shingo/back.svg",
  3012. extra: 1922/1852,
  3013. bottom: 16/1938
  3014. }
  3015. },
  3016. frontDressed: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(150, "lb"),
  3019. name: "Front-dressed",
  3020. image: {
  3021. source: "./media/characters/shingo/front-dressed.svg",
  3022. extra: 1900/1825,
  3023. bottom: 82/1982
  3024. }
  3025. },
  3026. paw: {
  3027. height: math.unit(1.29, "feet"),
  3028. name: "Paw",
  3029. image: {
  3030. source: "./media/characters/shingo/paw.svg"
  3031. }
  3032. },
  3033. hand: {
  3034. height: math.unit(1.07, "feet"),
  3035. name: "Hand",
  3036. image: {
  3037. source: "./media/characters/shingo/hand.svg"
  3038. }
  3039. },
  3040. frontAlt: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front (Alt)",
  3044. image: {
  3045. source: "./media/characters/shingo/front-alt.svg",
  3046. extra: 3511 / 3338,
  3047. bottom: 0.005
  3048. }
  3049. },
  3050. frontAlt2: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Front (Alt 2)",
  3054. image: {
  3055. source: "./media/characters/shingo/front-alt-2.svg",
  3056. extra: 706/681,
  3057. bottom: 11/717
  3058. }
  3059. },
  3060. pawAlt: {
  3061. height: math.unit(1, "feet"),
  3062. name: "Paw (Alt)",
  3063. image: {
  3064. source: "./media/characters/shingo/paw-alt.svg"
  3065. }
  3066. },
  3067. },
  3068. [
  3069. {
  3070. name: "Micro",
  3071. height: math.unit(4, "inches")
  3072. },
  3073. {
  3074. name: "Normal",
  3075. height: math.unit(6, "feet"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Macro",
  3080. height: math.unit(108, "feet")
  3081. },
  3082. {
  3083. name: "Macro+",
  3084. height: math.unit(1500, "feet")
  3085. },
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3090. {
  3091. side: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(75, "kg"),
  3094. name: "Side",
  3095. image: {
  3096. source: "./media/characters/aigey/side.svg"
  3097. }
  3098. },
  3099. },
  3100. [
  3101. {
  3102. name: "Macro",
  3103. height: math.unit(200, "feet"),
  3104. default: true
  3105. },
  3106. {
  3107. name: "Megamacro",
  3108. height: math.unit(100, "miles")
  3109. },
  3110. ]
  3111. )
  3112. )
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(5 + 5 / 12, "feet"),
  3118. weight: math.unit(75, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/natasha/front.svg",
  3122. extra: 859 / 824,
  3123. bottom: 23 / 879.6
  3124. }
  3125. },
  3126. frontNsfw: {
  3127. height: math.unit(5 + 5 / 12, "feet"),
  3128. weight: math.unit(75, "kg"),
  3129. name: "Front (NSFW)",
  3130. image: {
  3131. source: "./media/characters/natasha/front-nsfw.svg",
  3132. extra: 859 / 824,
  3133. bottom: 23 / 879.6
  3134. }
  3135. },
  3136. frontErect: {
  3137. height: math.unit(5 + 5 / 12, "feet"),
  3138. weight: math.unit(75, "kg"),
  3139. name: "Front (Erect)",
  3140. image: {
  3141. source: "./media/characters/natasha/front-erect.svg",
  3142. extra: 859 / 824,
  3143. bottom: 23 / 879.6
  3144. }
  3145. },
  3146. back: {
  3147. height: math.unit(5 + 5 / 12, "feet"),
  3148. weight: math.unit(75, "kg"),
  3149. name: "Back",
  3150. image: {
  3151. source: "./media/characters/natasha/back.svg",
  3152. extra: 887.9 / 852.6,
  3153. bottom: 9.7 / 896.4
  3154. }
  3155. },
  3156. backAlt: {
  3157. height: math.unit(5 + 5 / 12, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Back (Alt)",
  3160. image: {
  3161. source: "./media/characters/natasha/back-alt.svg",
  3162. extra: 1236.7 / 1192,
  3163. bottom: 22.3 / 1258.2
  3164. }
  3165. },
  3166. dick: {
  3167. height: math.unit(1.772, "feet"),
  3168. name: "Dick",
  3169. image: {
  3170. source: "./media/characters/natasha/dick.svg"
  3171. }
  3172. },
  3173. paw: {
  3174. height: math.unit(0.250, "meters"),
  3175. name: "Paw",
  3176. image: {
  3177. source: "./media/characters/natasha/paw.svg"
  3178. }
  3179. },
  3180. },
  3181. [
  3182. {
  3183. name: "Normal",
  3184. height: math.unit(5 + 5 / 12, "feet")
  3185. },
  3186. {
  3187. name: "Large",
  3188. height: math.unit(12, "feet")
  3189. },
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(100, "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Macro+",
  3197. height: math.unit(260, "feet")
  3198. },
  3199. {
  3200. name: "Macro++",
  3201. height: math.unit(1, "mile")
  3202. },
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(75, "kg"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/malik/front.svg"
  3214. }
  3215. },
  3216. side: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/malik/side.svg",
  3222. extra: 1.1539
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(6, "feet"),
  3227. weight: math.unit(75, "kg"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/malik/back.svg"
  3231. }
  3232. },
  3233. },
  3234. [
  3235. {
  3236. name: "Macro",
  3237. height: math.unit(156, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Macro+",
  3242. height: math.unit(1188, "feet")
  3243. },
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(6, "feet"),
  3251. weight: math.unit(75, "kg"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/sefer/front.svg",
  3255. extra: 848 / 659,
  3256. bottom: 28.3 / 876.442
  3257. }
  3258. },
  3259. back: {
  3260. height: math.unit(6, "feet"),
  3261. weight: math.unit(75, "kg"),
  3262. name: "Back",
  3263. image: {
  3264. source: "./media/characters/sefer/back.svg",
  3265. extra: 864 / 695,
  3266. bottom: 10 / 871
  3267. }
  3268. },
  3269. frontDressed: {
  3270. height: math.unit(6, "feet"),
  3271. weight: math.unit(75, "kg"),
  3272. name: "Front (Dressed)",
  3273. image: {
  3274. source: "./media/characters/sefer/front-dressed.svg",
  3275. extra: 839 / 653,
  3276. bottom: 37.6 / 878
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(6, "feet"),
  3284. default: true
  3285. },
  3286. ]
  3287. ))
  3288. characterMakers.push(() => makeCharacter(
  3289. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3290. {
  3291. body: {
  3292. height: math.unit(2.2428, "meter"),
  3293. weight: math.unit(124.738, "kg"),
  3294. name: "Body",
  3295. image: {
  3296. extra: 1225 / 1050,
  3297. source: "./media/characters/north/front.svg"
  3298. }
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Micro",
  3304. height: math.unit(4, "inches")
  3305. },
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(63, "meters")
  3309. },
  3310. {
  3311. name: "Megamacro",
  3312. height: math.unit(101, "miles"),
  3313. default: true
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3319. {
  3320. angled: {
  3321. height: math.unit(4, "meter"),
  3322. weight: math.unit(150, "kg"),
  3323. name: "Angled",
  3324. image: {
  3325. source: "./media/characters/talan/angled-sfw.svg",
  3326. bottom: 29 / 3734
  3327. }
  3328. },
  3329. angledNsfw: {
  3330. height: math.unit(4, "meter"),
  3331. weight: math.unit(150, "kg"),
  3332. name: "Angled (NSFW)",
  3333. image: {
  3334. source: "./media/characters/talan/angled-nsfw.svg",
  3335. bottom: 29 / 3734
  3336. }
  3337. },
  3338. frontNsfw: {
  3339. height: math.unit(4, "meter"),
  3340. weight: math.unit(150, "kg"),
  3341. name: "Front (NSFW)",
  3342. image: {
  3343. source: "./media/characters/talan/front-nsfw.svg",
  3344. bottom: 29 / 3734
  3345. }
  3346. },
  3347. sideNsfw: {
  3348. height: math.unit(4, "meter"),
  3349. weight: math.unit(150, "kg"),
  3350. name: "Side (NSFW)",
  3351. image: {
  3352. source: "./media/characters/talan/side-nsfw.svg",
  3353. bottom: 29 / 3734
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(4, "meter"),
  3358. weight: math.unit(150, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/talan/back.svg"
  3362. }
  3363. },
  3364. dickBottom: {
  3365. height: math.unit(0.621, "meter"),
  3366. name: "Dick (Bottom)",
  3367. image: {
  3368. source: "./media/characters/talan/dick-bottom.svg"
  3369. }
  3370. },
  3371. dickTop: {
  3372. height: math.unit(0.621, "meter"),
  3373. name: "Dick (Top)",
  3374. image: {
  3375. source: "./media/characters/talan/dick-top.svg"
  3376. }
  3377. },
  3378. dickSide: {
  3379. height: math.unit(0.305, "meter"),
  3380. name: "Dick (Side)",
  3381. image: {
  3382. source: "./media/characters/talan/dick-side.svg"
  3383. }
  3384. },
  3385. dickFront: {
  3386. height: math.unit(0.305, "meter"),
  3387. name: "Dick (Front)",
  3388. image: {
  3389. source: "./media/characters/talan/dick-front.svg"
  3390. }
  3391. },
  3392. },
  3393. [
  3394. {
  3395. name: "Normal",
  3396. height: math.unit(4, "meters")
  3397. },
  3398. {
  3399. name: "Macro",
  3400. height: math.unit(100, "meters")
  3401. },
  3402. {
  3403. name: "Megamacro",
  3404. height: math.unit(2, "miles"),
  3405. default: true
  3406. },
  3407. {
  3408. name: "Gigamacro",
  3409. height: math.unit(5000, "miles")
  3410. },
  3411. {
  3412. name: "Teramacro",
  3413. height: math.unit(100, "parsecs")
  3414. }
  3415. ]
  3416. ))
  3417. characterMakers.push(() => makeCharacter(
  3418. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3419. {
  3420. front: {
  3421. height: math.unit(2, "meter"),
  3422. weight: math.unit(90, "kg"),
  3423. name: "Front",
  3424. image: {
  3425. source: "./media/characters/gael'rathus/front.svg"
  3426. }
  3427. },
  3428. frontAlt: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(90, "kg"),
  3431. name: "Front (alt)",
  3432. image: {
  3433. source: "./media/characters/gael'rathus/front-alt.svg"
  3434. }
  3435. },
  3436. frontAlt2: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Front (alt 2)",
  3440. image: {
  3441. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3442. }
  3443. }
  3444. },
  3445. [
  3446. {
  3447. name: "Normal",
  3448. height: math.unit(9, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Large",
  3453. height: math.unit(25, "feet")
  3454. },
  3455. {
  3456. name: "Macro",
  3457. height: math.unit(0.25, "miles")
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(10, "miles")
  3462. }
  3463. ]
  3464. ))
  3465. characterMakers.push(() => makeCharacter(
  3466. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3467. {
  3468. side: {
  3469. height: math.unit(2, "meter"),
  3470. weight: math.unit(140, "kg"),
  3471. name: "Side",
  3472. image: {
  3473. source: "./media/characters/sosha/side.svg",
  3474. bottom: 0.042
  3475. }
  3476. },
  3477. },
  3478. [
  3479. {
  3480. name: "Normal",
  3481. height: math.unit(12, "feet"),
  3482. default: true
  3483. }
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3488. {
  3489. side: {
  3490. height: math.unit(5 + 5 / 12, "feet"),
  3491. weight: math.unit(170, "kg"),
  3492. name: "Side",
  3493. image: {
  3494. source: "./media/characters/runnola/side.svg",
  3495. extra: 741 / 448,
  3496. bottom: 0.05
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Small",
  3503. height: math.unit(3, "feet")
  3504. },
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(5 + 5 / 12, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Big",
  3512. height: math.unit(10, "feet")
  3513. },
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(50, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/kurribird/front.svg",
  3525. bottom: 0.015
  3526. }
  3527. },
  3528. frontAlt: {
  3529. height: math.unit(1.5, "meter"),
  3530. weight: math.unit(50, "kg"),
  3531. name: "Front (Alt)",
  3532. image: {
  3533. source: "./media/characters/kurribird/front-alt.svg",
  3534. extra: 1.45
  3535. }
  3536. },
  3537. },
  3538. [
  3539. {
  3540. name: "Normal",
  3541. height: math.unit(7, "feet")
  3542. },
  3543. {
  3544. name: "Big",
  3545. height: math.unit(12, "feet"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(1500, "feet")
  3551. },
  3552. {
  3553. name: "Megamacro",
  3554. height: math.unit(2, "miles")
  3555. }
  3556. ]
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(2, "meter"),
  3563. weight: math.unit(80, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/elbial/front.svg",
  3567. extra: 1643 / 1556,
  3568. bottom: 60.2 / 1696
  3569. }
  3570. },
  3571. side: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(80, "kg"),
  3574. name: "Side",
  3575. image: {
  3576. source: "./media/characters/elbial/side.svg",
  3577. extra: 1601/1528,
  3578. bottom: 97/1698
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(80, "kg"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/elbial/back.svg",
  3587. extra: 1653/1569,
  3588. bottom: 20/1673
  3589. }
  3590. },
  3591. frontDressed: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(80, "kg"),
  3594. name: "Front (Dressed)",
  3595. image: {
  3596. source: "./media/characters/elbial/front-dressed.svg",
  3597. extra: 1638/1569,
  3598. bottom: 70/1708
  3599. }
  3600. },
  3601. genitals: {
  3602. height: math.unit(2 / 3.367, "meter"),
  3603. name: "Genitals",
  3604. image: {
  3605. source: "./media/characters/elbial/genitals.svg"
  3606. }
  3607. },
  3608. },
  3609. [
  3610. {
  3611. name: "Large",
  3612. height: math.unit(100, "feet")
  3613. },
  3614. {
  3615. name: "Macro",
  3616. height: math.unit(500, "feet"),
  3617. default: true
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(10, "miles")
  3622. },
  3623. {
  3624. name: "Gigamacro",
  3625. height: math.unit(25000, "miles")
  3626. },
  3627. {
  3628. name: "Full-Size",
  3629. height: math.unit(8000000, "gigaparsecs")
  3630. }
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3635. {
  3636. front: {
  3637. height: math.unit(2, "meter"),
  3638. weight: math.unit(60, "kg"),
  3639. name: "Front",
  3640. image: {
  3641. source: "./media/characters/noah/front.svg"
  3642. }
  3643. },
  3644. talons: {
  3645. height: math.unit(0.315, "meter"),
  3646. name: "Talons",
  3647. image: {
  3648. source: "./media/characters/noah/talons.svg"
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Large",
  3655. height: math.unit(50, "feet")
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(750, "feet"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Megamacro",
  3664. height: math.unit(50, "miles")
  3665. },
  3666. {
  3667. name: "Gigamacro",
  3668. height: math.unit(100000, "miles")
  3669. },
  3670. {
  3671. name: "Full-Size",
  3672. height: math.unit(3000000000, "miles")
  3673. }
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(80, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/natalya/front.svg"
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(80, "kg"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/natalya/back.svg"
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(150, "feet"),
  3700. default: true
  3701. },
  3702. {
  3703. name: "Megamacro",
  3704. height: math.unit(5, "miles")
  3705. },
  3706. {
  3707. name: "Full-Size",
  3708. height: math.unit(600, "kiloparsecs")
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(2, "meter"),
  3717. weight: math.unit(50, "kg"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/erestrebah/front.svg",
  3721. extra: 1262/1162,
  3722. bottom: 96/1358
  3723. }
  3724. },
  3725. back: {
  3726. height: math.unit(2, "meter"),
  3727. weight: math.unit(50, "kg"),
  3728. name: "Back",
  3729. image: {
  3730. source: "./media/characters/erestrebah/back.svg",
  3731. extra: 1257/1139,
  3732. bottom: 13/1270
  3733. }
  3734. },
  3735. wing: {
  3736. height: math.unit(2, "meter"),
  3737. weight: math.unit(50, "kg"),
  3738. name: "Wing",
  3739. image: {
  3740. source: "./media/characters/erestrebah/wing.svg",
  3741. extra: 1262/1162,
  3742. bottom: 96/1358
  3743. }
  3744. },
  3745. mouth: {
  3746. height: math.unit(0.39, "feet"),
  3747. name: "Mouth",
  3748. image: {
  3749. source: "./media/characters/erestrebah/mouth.svg"
  3750. }
  3751. }
  3752. },
  3753. [
  3754. {
  3755. name: "Normal",
  3756. height: math.unit(10, "feet")
  3757. },
  3758. {
  3759. name: "Large",
  3760. height: math.unit(50, "feet"),
  3761. default: true
  3762. },
  3763. {
  3764. name: "Macro",
  3765. height: math.unit(300, "feet")
  3766. },
  3767. {
  3768. name: "Macro+",
  3769. height: math.unit(750, "feet")
  3770. },
  3771. {
  3772. name: "Megamacro",
  3773. height: math.unit(3, "miles")
  3774. }
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(2, "meter"),
  3782. weight: math.unit(80, "kg"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/jennifer/front.svg",
  3786. bottom: 0.11,
  3787. extra: 1.16
  3788. }
  3789. },
  3790. frontAlt: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(80, "kg"),
  3793. name: "Front (Alt)",
  3794. image: {
  3795. source: "./media/characters/jennifer/front-alt.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Canon Height",
  3802. height: math.unit(120, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Macro+",
  3807. height: math.unit(300, "feet")
  3808. },
  3809. {
  3810. name: "Megamacro",
  3811. height: math.unit(20000, "feet")
  3812. }
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3817. {
  3818. front: {
  3819. height: math.unit(2, "meter"),
  3820. weight: math.unit(50, "kg"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/kalista/front.svg",
  3824. extra: 1314/1145,
  3825. bottom: 101/1415
  3826. }
  3827. },
  3828. back: {
  3829. height: math.unit(2, "meter"),
  3830. weight: math.unit(50, "kg"),
  3831. name: "Back",
  3832. image: {
  3833. source: "./media/characters/kalista/back.svg",
  3834. extra: 1366 / 1156,
  3835. bottom: 33.9 / 1362.78
  3836. }
  3837. }
  3838. },
  3839. [
  3840. {
  3841. name: "Uncomfortably Small",
  3842. height: math.unit(10, "feet")
  3843. },
  3844. {
  3845. name: "Small",
  3846. height: math.unit(30, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(100, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Macro+",
  3855. height: math.unit(2000, "feet")
  3856. },
  3857. {
  3858. name: "True Form",
  3859. height: math.unit(8924, "miles")
  3860. }
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3865. {
  3866. front: {
  3867. height: math.unit(2, "meter"),
  3868. weight: math.unit(120, "kg"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/ggv/front.svg"
  3872. }
  3873. },
  3874. side: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(120, "kg"),
  3877. name: "Side",
  3878. image: {
  3879. source: "./media/characters/ggv/side.svg"
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Extremely Puny",
  3886. height: math.unit(9 + 5 / 12, "feet")
  3887. },
  3888. {
  3889. name: "Horribly Small",
  3890. height: math.unit(47.7, "miles"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Reasonably Sized",
  3895. height: math.unit(25000, "parsecs")
  3896. },
  3897. {
  3898. name: "Slightly Uncompressed",
  3899. height: math.unit(7.77e31, "parsecs")
  3900. },
  3901. {
  3902. name: "Omniversal",
  3903. height: math.unit(1e300, "meters")
  3904. },
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3909. {
  3910. front: {
  3911. height: math.unit(2, "meter"),
  3912. weight: math.unit(75, "lb"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/napalm/front.svg"
  3916. }
  3917. },
  3918. back: {
  3919. height: math.unit(2, "meter"),
  3920. weight: math.unit(75, "lb"),
  3921. name: "Back",
  3922. image: {
  3923. source: "./media/characters/napalm/back.svg"
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Standard",
  3930. height: math.unit(55, "feet"),
  3931. default: true
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(7 + 5 / 6, "feet"),
  3940. weight: math.unit(325, "lb"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/asana/front.svg",
  3944. extra: 1133 / 1060,
  3945. bottom: 15.2 / 1148.6
  3946. }
  3947. },
  3948. back: {
  3949. height: math.unit(7 + 5 / 6, "feet"),
  3950. weight: math.unit(325, "lb"),
  3951. name: "Back",
  3952. image: {
  3953. source: "./media/characters/asana/back.svg",
  3954. extra: 1114 / 1043,
  3955. bottom: 5 / 1120
  3956. }
  3957. },
  3958. dressedDark: {
  3959. height: math.unit(7 + 5 / 6, "feet"),
  3960. weight: math.unit(325, "lb"),
  3961. name: "Dressed (Dark)",
  3962. image: {
  3963. source: "./media/characters/asana/dressed-dark.svg",
  3964. extra: 1133 / 1060,
  3965. bottom: 15.2 / 1148.6
  3966. }
  3967. },
  3968. dressedLight: {
  3969. height: math.unit(7 + 5 / 6, "feet"),
  3970. weight: math.unit(325, "lb"),
  3971. name: "Dressed (Light)",
  3972. image: {
  3973. source: "./media/characters/asana/dressed-light.svg",
  3974. extra: 1133 / 1060,
  3975. bottom: 15.2 / 1148.6
  3976. }
  3977. },
  3978. },
  3979. [
  3980. {
  3981. name: "Standard",
  3982. height: math.unit(7 + 5 / 6, "feet"),
  3983. default: true
  3984. },
  3985. {
  3986. name: "Large",
  3987. height: math.unit(10, "meters")
  3988. },
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(2500, "meters")
  3992. },
  3993. {
  3994. name: "Megamacro",
  3995. height: math.unit(5e6, "meters")
  3996. },
  3997. {
  3998. name: "Examacro",
  3999. height: math.unit(5e12, "lightyears")
  4000. },
  4001. {
  4002. name: "Max Size",
  4003. height: math.unit(1e31, "lightyears")
  4004. }
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(2, "meter"),
  4012. weight: math.unit(60, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/ebony/front.svg",
  4016. bottom: 0.03,
  4017. extra: 1045 / 810 + 0.03
  4018. }
  4019. },
  4020. side: {
  4021. height: math.unit(2, "meter"),
  4022. weight: math.unit(60, "kg"),
  4023. name: "Side",
  4024. image: {
  4025. source: "./media/characters/ebony/side.svg",
  4026. bottom: 0.03,
  4027. extra: 1045 / 810 + 0.03
  4028. }
  4029. },
  4030. back: {
  4031. height: math.unit(2, "meter"),
  4032. weight: math.unit(60, "kg"),
  4033. name: "Back",
  4034. image: {
  4035. source: "./media/characters/ebony/back.svg",
  4036. bottom: 0.01,
  4037. extra: 1045 / 810 + 0.01
  4038. }
  4039. },
  4040. },
  4041. [
  4042. // TODO check why I did this lol
  4043. {
  4044. name: "Standard",
  4045. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4046. default: true
  4047. },
  4048. {
  4049. name: "Macro",
  4050. height: math.unit(200, "feet")
  4051. },
  4052. {
  4053. name: "Gigamacro",
  4054. height: math.unit(13000, "km")
  4055. }
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(6, "feet"),
  4063. weight: math.unit(175, "lb"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/mountain/front.svg",
  4067. extra: 972 / 955,
  4068. bottom: 64 / 1036.6
  4069. }
  4070. },
  4071. back: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(175, "lb"),
  4074. name: "Back",
  4075. image: {
  4076. source: "./media/characters/mountain/back.svg",
  4077. extra: 970 / 950,
  4078. bottom: 28.25 / 999
  4079. }
  4080. },
  4081. },
  4082. [
  4083. {
  4084. name: "Large",
  4085. height: math.unit(20, "meters")
  4086. },
  4087. {
  4088. name: "Macro",
  4089. height: math.unit(300, "meters")
  4090. },
  4091. {
  4092. name: "Gigamacro",
  4093. height: math.unit(10000, "km"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Examacro",
  4098. height: math.unit(10e9, "lightyears")
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(8, "feet"),
  4107. weight: math.unit(500, "lb"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/rick/front.svg"
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(8, "feet"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(5, "km")
  4123. }
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(8, "feet"),
  4131. weight: math.unit(120, "lb"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/ona/front.svg"
  4135. }
  4136. },
  4137. frontAlt: {
  4138. height: math.unit(8, "feet"),
  4139. weight: math.unit(120, "lb"),
  4140. name: "Front (Alt)",
  4141. image: {
  4142. source: "./media/characters/ona/front-alt.svg"
  4143. }
  4144. },
  4145. back: {
  4146. height: math.unit(8, "feet"),
  4147. weight: math.unit(120, "lb"),
  4148. name: "Back",
  4149. image: {
  4150. source: "./media/characters/ona/back.svg"
  4151. }
  4152. },
  4153. foot: {
  4154. height: math.unit(1.1, "feet"),
  4155. name: "Foot",
  4156. image: {
  4157. source: "./media/characters/ona/foot.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Megamacro",
  4164. height: math.unit(70, "km"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Gigamacro",
  4169. height: math.unit(681818, "miles")
  4170. },
  4171. {
  4172. name: "Examacro",
  4173. height: math.unit(3800000, "lightyears")
  4174. },
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(12, "feet"),
  4182. weight: math.unit(3000, "lb"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/mech/front.svg",
  4186. extra: 2900 / 2770,
  4187. bottom: 110 / 3010
  4188. }
  4189. },
  4190. back: {
  4191. height: math.unit(12, "feet"),
  4192. weight: math.unit(3000, "lb"),
  4193. name: "Back",
  4194. image: {
  4195. source: "./media/characters/mech/back.svg",
  4196. extra: 3011 / 2890,
  4197. bottom: 94 / 3105
  4198. }
  4199. },
  4200. maw: {
  4201. height: math.unit(3.07, "feet"),
  4202. name: "Maw",
  4203. image: {
  4204. source: "./media/characters/mech/maw.svg"
  4205. }
  4206. },
  4207. head: {
  4208. height: math.unit(2.82, "feet"),
  4209. name: "Head",
  4210. image: {
  4211. source: "./media/characters/mech/head.svg"
  4212. }
  4213. },
  4214. dick: {
  4215. height: math.unit(1.43, "feet"),
  4216. name: "Dick",
  4217. image: {
  4218. source: "./media/characters/mech/dick.svg"
  4219. }
  4220. },
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(12, "feet")
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(300, "feet"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Macro+",
  4234. height: math.unit(1500, "feet")
  4235. },
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(1.3, "meter"),
  4243. weight: math.unit(30, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/gregory/front.svg",
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Normal",
  4253. height: math.unit(1.3, "meter"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(20, "meter")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4264. {
  4265. front: {
  4266. height: math.unit(2.8, "meter"),
  4267. weight: math.unit(200, "kg"),
  4268. name: "Front",
  4269. image: {
  4270. source: "./media/characters/elory/front.svg",
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(2.8, "meter"),
  4278. default: true
  4279. },
  4280. {
  4281. name: "Macro",
  4282. height: math.unit(38, "meter")
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4288. {
  4289. front: {
  4290. height: math.unit(470, "feet"),
  4291. weight: math.unit(924, "tons"),
  4292. name: "Front",
  4293. image: {
  4294. source: "./media/characters/angelpatamon/front.svg",
  4295. }
  4296. }
  4297. },
  4298. [
  4299. {
  4300. name: "Normal",
  4301. height: math.unit(470, "feet"),
  4302. default: true
  4303. },
  4304. {
  4305. name: "Deity Size I",
  4306. height: math.unit(28651.2, "km")
  4307. },
  4308. {
  4309. name: "Deity Size II",
  4310. height: math.unit(171907.2, "km")
  4311. }
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4316. {
  4317. side: {
  4318. height: math.unit(7.2, "meter"),
  4319. weight: math.unit(8.2, "tons"),
  4320. name: "Side",
  4321. image: {
  4322. source: "./media/characters/cryae/side.svg",
  4323. extra: 3500 / 1500
  4324. }
  4325. }
  4326. },
  4327. [
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(7.2, "meter"),
  4331. default: true
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(6, "feet"),
  4340. weight: math.unit(175, "lb"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/xera/front.svg",
  4344. extra: 2377 / 1972,
  4345. bottom: 75.5 / 2452
  4346. }
  4347. },
  4348. side: {
  4349. height: math.unit(6, "feet"),
  4350. weight: math.unit(175, "lb"),
  4351. name: "Side",
  4352. image: {
  4353. source: "./media/characters/xera/side.svg",
  4354. extra: 2345 / 2019,
  4355. bottom: 39.7 / 2384
  4356. }
  4357. },
  4358. back: {
  4359. height: math.unit(6, "feet"),
  4360. weight: math.unit(175, "lb"),
  4361. name: "Back",
  4362. image: {
  4363. source: "./media/characters/xera/back.svg",
  4364. extra: 2095 / 1984,
  4365. bottom: 67 / 2166
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Small",
  4372. height: math.unit(10, "feet")
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(500, "meters"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Macro+",
  4381. height: math.unit(10, "km")
  4382. },
  4383. {
  4384. name: "Gigamacro",
  4385. height: math.unit(25000, "km")
  4386. },
  4387. {
  4388. name: "Teramacro",
  4389. height: math.unit(3e6, "km")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(6, "feet"),
  4398. weight: math.unit(175, "lb"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/nebula/front.svg",
  4402. extra: 2566 / 2362,
  4403. bottom: 81 / 2644
  4404. }
  4405. }
  4406. },
  4407. [
  4408. {
  4409. name: "Small",
  4410. height: math.unit(4.5, "meters")
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(1500, "meters"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "Megamacro",
  4419. height: math.unit(150, "km")
  4420. },
  4421. {
  4422. name: "Gigamacro",
  4423. height: math.unit(27000, "km")
  4424. }
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(6, "feet"),
  4432. weight: math.unit(225, "lb"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/abysgar/front.svg"
  4436. }
  4437. }
  4438. },
  4439. [
  4440. {
  4441. name: "Small",
  4442. height: math.unit(4.5, "meters")
  4443. },
  4444. {
  4445. name: "Macro",
  4446. height: math.unit(1250, "meters"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Megamacro",
  4451. height: math.unit(125, "km")
  4452. },
  4453. {
  4454. name: "Gigamacro",
  4455. height: math.unit(26000, "km")
  4456. }
  4457. ]
  4458. ))
  4459. characterMakers.push(() => makeCharacter(
  4460. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4461. {
  4462. front: {
  4463. height: math.unit(6, "feet"),
  4464. weight: math.unit(180, "lb"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/yakuz/front.svg"
  4468. }
  4469. }
  4470. },
  4471. [
  4472. {
  4473. name: "Small",
  4474. height: math.unit(5, "meters")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(1500, "meters"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(200, "km")
  4484. },
  4485. {
  4486. name: "Gigamacro",
  4487. height: math.unit(100000, "km")
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(6, "feet"),
  4496. weight: math.unit(175, "lb"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/mirova/front.svg",
  4500. extra: 3334 / 3071,
  4501. bottom: 42 / 3375.6
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Small",
  4508. height: math.unit(5, "meters")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(900, "meters"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Megamacro",
  4517. height: math.unit(135, "km")
  4518. },
  4519. {
  4520. name: "Gigamacro",
  4521. height: math.unit(20000, "km")
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4527. {
  4528. side: {
  4529. height: math.unit(28.35, "feet"),
  4530. weight: math.unit(99.75, "tons"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/asana-mech/side.svg",
  4534. extra: 923 / 699,
  4535. bottom: 50 / 975
  4536. }
  4537. },
  4538. chaingun: {
  4539. height: math.unit(7, "feet"),
  4540. weight: math.unit(2400, "lb"),
  4541. name: "Chaingun",
  4542. image: {
  4543. source: "./media/characters/asana-mech/chaingun.svg"
  4544. }
  4545. },
  4546. laser: {
  4547. height: math.unit(7.12, "feet"),
  4548. weight: math.unit(2000, "lb"),
  4549. name: "Laser",
  4550. image: {
  4551. source: "./media/characters/asana-mech/laser.svg"
  4552. }
  4553. },
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(28.35, "feet"),
  4559. default: true
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(2500, "feet")
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(25, "miles")
  4568. },
  4569. {
  4570. name: "Examacro",
  4571. height: math.unit(6e8, "lightyears")
  4572. },
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4577. {
  4578. front: {
  4579. height: math.unit(5, "meters"),
  4580. weight: math.unit(1000, "kg"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/asche/front.svg",
  4584. extra: 1258 / 1190,
  4585. bottom: 47 / 1305
  4586. }
  4587. },
  4588. frontUnderwear: {
  4589. height: math.unit(5, "meters"),
  4590. weight: math.unit(1000, "kg"),
  4591. name: "Front (Underwear)",
  4592. image: {
  4593. source: "./media/characters/asche/front-underwear.svg",
  4594. extra: 1258 / 1190,
  4595. bottom: 47 / 1305
  4596. }
  4597. },
  4598. frontDressed: {
  4599. height: math.unit(5, "meters"),
  4600. weight: math.unit(1000, "kg"),
  4601. name: "Front (Dressed)",
  4602. image: {
  4603. source: "./media/characters/asche/front-dressed.svg",
  4604. extra: 1258 / 1190,
  4605. bottom: 47 / 1305
  4606. }
  4607. },
  4608. frontArmor: {
  4609. height: math.unit(5, "meters"),
  4610. weight: math.unit(1000, "kg"),
  4611. name: "Front (Armored)",
  4612. image: {
  4613. source: "./media/characters/asche/front-armored.svg",
  4614. extra: 1374 / 1308,
  4615. bottom: 23 / 1397
  4616. }
  4617. },
  4618. mp724: {
  4619. height: math.unit(0.96, "meters"),
  4620. weight: math.unit(38, "kg"),
  4621. name: "H&K MP724",
  4622. image: {
  4623. source: "./media/characters/asche/h&k-mp724.svg"
  4624. }
  4625. },
  4626. side: {
  4627. height: math.unit(5, "meters"),
  4628. weight: math.unit(1000, "kg"),
  4629. name: "Side",
  4630. image: {
  4631. source: "./media/characters/asche/side.svg",
  4632. extra: 1717 / 1609,
  4633. bottom: 0.005
  4634. }
  4635. },
  4636. back: {
  4637. height: math.unit(5, "meters"),
  4638. weight: math.unit(1000, "kg"),
  4639. name: "Back",
  4640. image: {
  4641. source: "./media/characters/asche/back.svg",
  4642. extra: 1570 / 1501
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "DEFCON 5",
  4649. height: math.unit(5, "meters")
  4650. },
  4651. {
  4652. name: "DEFCON 4",
  4653. height: math.unit(500, "meters"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "DEFCON 3",
  4658. height: math.unit(5, "km")
  4659. },
  4660. {
  4661. name: "DEFCON 2",
  4662. height: math.unit(500, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 1",
  4666. height: math.unit(500000, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 0",
  4670. height: math.unit(3, "gigaparsecs")
  4671. },
  4672. ]
  4673. ))
  4674. characterMakers.push(() => makeCharacter(
  4675. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4676. {
  4677. front: {
  4678. height: math.unit(2, "meters"),
  4679. weight: math.unit(76, "kg"),
  4680. name: "Front",
  4681. image: {
  4682. source: "./media/characters/gale/front.svg"
  4683. }
  4684. },
  4685. frontAlt1: {
  4686. height: math.unit(2, "meters"),
  4687. weight: math.unit(76, "kg"),
  4688. name: "Front (Alt 1)",
  4689. image: {
  4690. source: "./media/characters/gale/front-alt-1.svg"
  4691. }
  4692. },
  4693. frontAlt2: {
  4694. height: math.unit(2, "meters"),
  4695. weight: math.unit(76, "kg"),
  4696. name: "Front (Alt 2)",
  4697. image: {
  4698. source: "./media/characters/gale/front-alt-2.svg"
  4699. }
  4700. },
  4701. },
  4702. [
  4703. {
  4704. name: "Normal",
  4705. height: math.unit(7, "feet")
  4706. },
  4707. {
  4708. name: "Macro",
  4709. height: math.unit(150, "feet"),
  4710. default: true
  4711. },
  4712. {
  4713. name: "Macro+",
  4714. height: math.unit(300, "feet")
  4715. },
  4716. ]
  4717. ))
  4718. characterMakers.push(() => makeCharacter(
  4719. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4720. {
  4721. front: {
  4722. height: math.unit(5 + 10/12, "feet"),
  4723. weight: math.unit(67, "kg"),
  4724. name: "Front",
  4725. image: {
  4726. source: "./media/characters/draylen/front.svg",
  4727. extra: 832/777,
  4728. bottom: 85/917
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(5 + 10/12, "feet")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(150, "feet"),
  4740. default: true
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(7 + 9 / 12, "feet"),
  4749. weight: math.unit(379, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/chez/front.svg"
  4753. }
  4754. },
  4755. side: {
  4756. height: math.unit(7 + 9 / 12, "feet"),
  4757. weight: math.unit(379, "lbs"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/chez/side.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Normal",
  4767. height: math.unit(7 + 9 / 12, "feet"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "God King",
  4772. height: math.unit(9750000, "meters")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(275, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/kaylum/front.svg",
  4785. bottom: 0.01,
  4786. extra: 1166 / 1031
  4787. }
  4788. },
  4789. frontWingless: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(275, "lbs"),
  4792. name: "Front (Wingless)",
  4793. image: {
  4794. source: "./media/characters/kaylum/front-wingless.svg",
  4795. bottom: 0.01,
  4796. extra: 1117 / 1031
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(3.05, "meters")
  4804. },
  4805. {
  4806. name: "Master",
  4807. height: math.unit(5.5, "meters")
  4808. },
  4809. {
  4810. name: "Rampage",
  4811. height: math.unit(19, "meters")
  4812. },
  4813. {
  4814. name: "Macro Lite",
  4815. height: math.unit(37, "meters")
  4816. },
  4817. {
  4818. name: "Hyper Predator",
  4819. height: math.unit(61, "meters")
  4820. },
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(138, "meters"),
  4824. default: true
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(150, "lbs"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/geta/front.svg"
  4837. }
  4838. }
  4839. },
  4840. [
  4841. {
  4842. name: "Micro",
  4843. height: math.unit(3, "inches"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(5 + 5 / 12, "feet")
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(300, "lbs"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/tyrnn/front.svg"
  4861. }
  4862. }
  4863. },
  4864. [
  4865. {
  4866. name: "Main Height",
  4867. height: math.unit(355, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Fave. Height",
  4872. height: math.unit(2400, "feet")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(300, "lbs"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/appledectomy/front.svg"
  4885. }
  4886. }
  4887. },
  4888. [
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(2500, "feet")
  4892. },
  4893. {
  4894. name: "Megamacro",
  4895. height: math.unit(50, "miles"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Gigamacro",
  4900. height: math.unit(5000, "miles")
  4901. },
  4902. {
  4903. name: "Teramacro",
  4904. height: math.unit(250000, "miles")
  4905. },
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(200, "lbs"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/vulpes/front.svg",
  4917. extra: 573 / 543,
  4918. bottom: 0.033
  4919. }
  4920. },
  4921. side: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(200, "lbs"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/vulpes/side.svg",
  4927. extra: 577 / 549,
  4928. bottom: 11 / 588
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(200, "lbs"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/vulpes/back.svg",
  4937. extra: 573 / 549,
  4938. bottom: 20 / 593
  4939. }
  4940. },
  4941. feet: {
  4942. height: math.unit(1.276, "feet"),
  4943. name: "Feet",
  4944. image: {
  4945. source: "./media/characters/vulpes/feet.svg"
  4946. }
  4947. },
  4948. maw: {
  4949. height: math.unit(1.18, "feet"),
  4950. name: "Maw",
  4951. image: {
  4952. source: "./media/characters/vulpes/maw.svg"
  4953. }
  4954. },
  4955. },
  4956. [
  4957. {
  4958. name: "Micro",
  4959. height: math.unit(2, "inches")
  4960. },
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(6.3, "feet")
  4964. },
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(850, "feet")
  4968. },
  4969. {
  4970. name: "Megamacro",
  4971. height: math.unit(7500, "feet"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Gigamacro",
  4976. height: math.unit(570000, "miles")
  4977. }
  4978. ]
  4979. ))
  4980. characterMakers.push(() => makeCharacter(
  4981. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4982. {
  4983. front: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(210, "lbs"),
  4986. name: "Front",
  4987. image: {
  4988. source: "./media/characters/rain-fallen/front.svg"
  4989. }
  4990. },
  4991. side: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(210, "lbs"),
  4994. name: "Side",
  4995. image: {
  4996. source: "./media/characters/rain-fallen/side.svg"
  4997. }
  4998. },
  4999. back: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(210, "lbs"),
  5002. name: "Back",
  5003. image: {
  5004. source: "./media/characters/rain-fallen/back.svg"
  5005. }
  5006. },
  5007. feral: {
  5008. height: math.unit(9, "feet"),
  5009. weight: math.unit(700, "lbs"),
  5010. name: "Feral",
  5011. image: {
  5012. source: "./media/characters/rain-fallen/feral.svg"
  5013. }
  5014. },
  5015. },
  5016. [
  5017. {
  5018. name: "Meddling with Mortals",
  5019. height: math.unit(8 + 8/12, "feet")
  5020. },
  5021. {
  5022. name: "Normal",
  5023. height: math.unit(5, "meter")
  5024. },
  5025. {
  5026. name: "Macro",
  5027. height: math.unit(150, "meter"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Megamacro",
  5032. height: math.unit(278e6, "meter")
  5033. },
  5034. {
  5035. name: "Gigamacro",
  5036. height: math.unit(2e9, "meter")
  5037. },
  5038. {
  5039. name: "Teramacro",
  5040. height: math.unit(8e12, "meter")
  5041. },
  5042. {
  5043. name: "Devourer",
  5044. height: math.unit(14, "zettameters")
  5045. },
  5046. {
  5047. name: "Scarlet King",
  5048. height: math.unit(18, "yottameters")
  5049. },
  5050. {
  5051. name: "Void",
  5052. height: math.unit(1e88, "yottameters")
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5058. {
  5059. standing: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(180, "lbs"),
  5062. name: "Standing",
  5063. image: {
  5064. source: "./media/characters/zaakira/standing.svg",
  5065. extra: 1599/1504,
  5066. bottom: 39/1638
  5067. }
  5068. },
  5069. laying: {
  5070. height: math.unit(3, "feet"),
  5071. weight: math.unit(180, "lbs"),
  5072. name: "Laying",
  5073. image: {
  5074. source: "./media/characters/zaakira/laying.svg"
  5075. }
  5076. },
  5077. },
  5078. [
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(12, "feet")
  5082. },
  5083. {
  5084. name: "Macro",
  5085. height: math.unit(279, "feet"),
  5086. default: true
  5087. }
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5092. {
  5093. femSfw: {
  5094. height: math.unit(8, "feet"),
  5095. weight: math.unit(350, "lb"),
  5096. name: "Fem",
  5097. image: {
  5098. source: "./media/characters/sigvald/fem-sfw.svg",
  5099. extra: 182 / 164,
  5100. bottom: 8.7 / 190.5
  5101. }
  5102. },
  5103. femNsfw: {
  5104. height: math.unit(8, "feet"),
  5105. weight: math.unit(350, "lb"),
  5106. name: "Fem (NSFW)",
  5107. image: {
  5108. source: "./media/characters/sigvald/fem-nsfw.svg",
  5109. extra: 182 / 164,
  5110. bottom: 8.7 / 190.5
  5111. }
  5112. },
  5113. maleNsfw: {
  5114. height: math.unit(8, "feet"),
  5115. weight: math.unit(350, "lb"),
  5116. name: "Male (NSFW)",
  5117. image: {
  5118. source: "./media/characters/sigvald/male-nsfw.svg",
  5119. extra: 182 / 164,
  5120. bottom: 8.7 / 190.5
  5121. }
  5122. },
  5123. hermNsfw: {
  5124. height: math.unit(8, "feet"),
  5125. weight: math.unit(350, "lb"),
  5126. name: "Herm (NSFW)",
  5127. image: {
  5128. source: "./media/characters/sigvald/herm-nsfw.svg",
  5129. extra: 182 / 164,
  5130. bottom: 8.7 / 190.5
  5131. }
  5132. },
  5133. dick: {
  5134. height: math.unit(2.36, "feet"),
  5135. name: "Dick",
  5136. image: {
  5137. source: "./media/characters/sigvald/dick.svg"
  5138. }
  5139. },
  5140. eye: {
  5141. height: math.unit(0.31, "feet"),
  5142. name: "Eye",
  5143. image: {
  5144. source: "./media/characters/sigvald/eye.svg"
  5145. }
  5146. },
  5147. mouth: {
  5148. height: math.unit(0.92, "feet"),
  5149. name: "Mouth",
  5150. image: {
  5151. source: "./media/characters/sigvald/mouth.svg"
  5152. }
  5153. },
  5154. paws: {
  5155. height: math.unit(2.2, "feet"),
  5156. name: "Paws",
  5157. image: {
  5158. source: "./media/characters/sigvald/paws.svg"
  5159. }
  5160. }
  5161. },
  5162. [
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(8, "feet")
  5166. },
  5167. {
  5168. name: "Large",
  5169. height: math.unit(12, "feet")
  5170. },
  5171. {
  5172. name: "Larger",
  5173. height: math.unit(20, "feet")
  5174. },
  5175. {
  5176. name: "Macro",
  5177. height: math.unit(150, "feet")
  5178. },
  5179. {
  5180. name: "Macro+",
  5181. height: math.unit(200, "feet"),
  5182. default: true
  5183. },
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5188. {
  5189. side: {
  5190. height: math.unit(12, "feet"),
  5191. weight: math.unit(2000, "kg"),
  5192. name: "Side",
  5193. image: {
  5194. source: "./media/characters/scott/side.svg",
  5195. extra: 754 / 724,
  5196. bottom: 0.069
  5197. }
  5198. },
  5199. upright: {
  5200. height: math.unit(12, "feet"),
  5201. weight: math.unit(2000, "kg"),
  5202. name: "Upright",
  5203. image: {
  5204. source: "./media/characters/scott/upright.svg",
  5205. extra: 3881 / 3722,
  5206. bottom: 0.05
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(12, "feet"),
  5214. default: true
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5220. {
  5221. side: {
  5222. height: math.unit(8, "meters"),
  5223. weight: math.unit(84755, "lbs"),
  5224. name: "Side",
  5225. image: {
  5226. source: "./media/characters/tobias/side.svg",
  5227. extra: 1474 / 1096,
  5228. bottom: 38.9 / 1513.1235
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(8, "meters"),
  5236. default: true
  5237. },
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5242. {
  5243. front: {
  5244. height: math.unit(5.5, "feet"),
  5245. weight: math.unit(400, "lbs"),
  5246. name: "Front",
  5247. image: {
  5248. source: "./media/characters/kieran/front.svg",
  5249. extra: 2694 / 2364,
  5250. bottom: 217 / 2908
  5251. }
  5252. },
  5253. side: {
  5254. height: math.unit(5.5, "feet"),
  5255. weight: math.unit(400, "lbs"),
  5256. name: "Side",
  5257. image: {
  5258. source: "./media/characters/kieran/side.svg",
  5259. extra: 875 / 777,
  5260. bottom: 84.6 / 959
  5261. }
  5262. },
  5263. },
  5264. [
  5265. {
  5266. name: "Normal",
  5267. height: math.unit(5.5, "feet"),
  5268. default: true
  5269. },
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5274. {
  5275. side: {
  5276. height: math.unit(2, "meters"),
  5277. weight: math.unit(70, "kg"),
  5278. name: "Side",
  5279. image: {
  5280. source: "./media/characters/sanya/side.svg",
  5281. bottom: 0.02,
  5282. extra: 1.02
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Small",
  5289. height: math.unit(2, "meters")
  5290. },
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(3, "meters")
  5294. },
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(16, "meters"),
  5298. default: true
  5299. },
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(2, "meters"),
  5307. weight: math.unit(120, "kg"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/miranda/front.svg",
  5311. extra: 195 / 185,
  5312. bottom: 10.9 / 206.5
  5313. }
  5314. },
  5315. back: {
  5316. height: math.unit(2, "meters"),
  5317. weight: math.unit(120, "kg"),
  5318. name: "Back",
  5319. image: {
  5320. source: "./media/characters/miranda/back.svg",
  5321. extra: 201 / 193,
  5322. bottom: 2.3 / 203.7
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(10, "feet"),
  5330. default: true
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "James", species: ["deer"], tags: ["anthro"] },
  5336. {
  5337. side: {
  5338. height: math.unit(2, "meters"),
  5339. weight: math.unit(100, "kg"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/james/front.svg",
  5343. extra: 10 / 8.5
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(8.5, "feet"),
  5351. default: true
  5352. }
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5357. {
  5358. side: {
  5359. height: math.unit(9.5, "feet"),
  5360. weight: math.unit(2500, "lbs"),
  5361. name: "Side",
  5362. image: {
  5363. source: "./media/characters/heather/side.svg"
  5364. }
  5365. },
  5366. },
  5367. [
  5368. {
  5369. name: "Normal",
  5370. height: math.unit(9.5, "feet"),
  5371. default: true
  5372. }
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5377. {
  5378. side: {
  5379. height: math.unit(6.5, "feet"),
  5380. weight: math.unit(400, "lbs"),
  5381. name: "Side",
  5382. image: {
  5383. source: "./media/characters/lukas/side.svg",
  5384. extra: 7.25 / 6.5
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(6.5, "feet"),
  5392. default: true
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5398. {
  5399. side: {
  5400. height: math.unit(5, "feet"),
  5401. weight: math.unit(3000, "lbs"),
  5402. name: "Side",
  5403. image: {
  5404. source: "./media/characters/louise/side.svg"
  5405. }
  5406. },
  5407. },
  5408. [
  5409. {
  5410. name: "Normal",
  5411. height: math.unit(5, "feet"),
  5412. default: true
  5413. }
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5418. {
  5419. side: {
  5420. height: math.unit(6, "feet"),
  5421. weight: math.unit(150, "lbs"),
  5422. name: "Side",
  5423. image: {
  5424. source: "./media/characters/ramona/side.svg",
  5425. extra: 871/854,
  5426. bottom: 41/912
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(5.3, "meters"),
  5434. default: true
  5435. },
  5436. {
  5437. name: "Macro",
  5438. height: math.unit(20, "stories")
  5439. },
  5440. {
  5441. name: "Macro+",
  5442. height: math.unit(50, "stories")
  5443. },
  5444. ]
  5445. ))
  5446. characterMakers.push(() => makeCharacter(
  5447. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5448. {
  5449. standing: {
  5450. height: math.unit(5.75, "feet"),
  5451. weight: math.unit(160, "lbs"),
  5452. name: "Standing",
  5453. image: {
  5454. source: "./media/characters/deerpuff/standing.svg",
  5455. extra: 682 / 624
  5456. }
  5457. },
  5458. sitting: {
  5459. height: math.unit(5.75 / 1.79, "feet"),
  5460. weight: math.unit(160, "lbs"),
  5461. name: "Sitting",
  5462. image: {
  5463. source: "./media/characters/deerpuff/sitting.svg",
  5464. bottom: 44 / 400,
  5465. extra: 1
  5466. }
  5467. },
  5468. taurLaying: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(400, "lbs"),
  5471. name: "Taur (Laying)",
  5472. image: {
  5473. source: "./media/characters/deerpuff/taur-laying.svg"
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Puffball",
  5480. height: math.unit(6, "inches")
  5481. },
  5482. {
  5483. name: "Normalpuff",
  5484. height: math.unit(5.75, "feet")
  5485. },
  5486. {
  5487. name: "Macropuff",
  5488. height: math.unit(1500, "feet"),
  5489. default: true
  5490. },
  5491. {
  5492. name: "Megapuff",
  5493. height: math.unit(500, "miles")
  5494. },
  5495. {
  5496. name: "Gigapuff",
  5497. height: math.unit(250000, "miles")
  5498. },
  5499. {
  5500. name: "Omegapuff",
  5501. height: math.unit(1000, "lightyears")
  5502. },
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5507. {
  5508. stomping: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(170, "lbs"),
  5511. name: "Stomping",
  5512. image: {
  5513. source: "./media/characters/vivian/stomping.svg"
  5514. }
  5515. },
  5516. sitting: {
  5517. height: math.unit(6 / 1.75, "feet"),
  5518. weight: math.unit(170, "lbs"),
  5519. name: "Sitting",
  5520. image: {
  5521. source: "./media/characters/vivian/sitting.svg",
  5522. bottom: 1 / 6.4,
  5523. extra: 1,
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(7, "feet"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(10, "stories")
  5536. },
  5537. {
  5538. name: "Macro+",
  5539. height: math.unit(30, "stories")
  5540. },
  5541. {
  5542. name: "Megamacro",
  5543. height: math.unit(10, "miles")
  5544. },
  5545. {
  5546. name: "Megamacro+",
  5547. height: math.unit(2750000, "meters")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(160, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/prince/front.svg",
  5560. extra: 3400 / 3000
  5561. }
  5562. },
  5563. jumping: {
  5564. height: math.unit(6, "feet"),
  5565. weight: math.unit(160, "lbs"),
  5566. name: "Jumping",
  5567. image: {
  5568. source: "./media/characters/prince/jump.svg",
  5569. extra: 2555 / 2134
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(7.75, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Not cute",
  5581. height: math.unit(17, "feet")
  5582. },
  5583. {
  5584. name: "I said NOT",
  5585. height: math.unit(91, "feet")
  5586. },
  5587. {
  5588. name: "Please stop",
  5589. height: math.unit(560, "feet")
  5590. },
  5591. {
  5592. name: "What have you done",
  5593. height: math.unit(2200, "feet")
  5594. },
  5595. {
  5596. name: "Deer God",
  5597. height: math.unit(3.6, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5603. {
  5604. standing: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(300, "lbs"),
  5607. name: "Standing",
  5608. image: {
  5609. source: "./media/characters/psymon/standing.svg",
  5610. extra: 1888 / 1810,
  5611. bottom: 0.05
  5612. }
  5613. },
  5614. slithering: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(300, "lbs"),
  5617. name: "Slithering",
  5618. image: {
  5619. source: "./media/characters/psymon/slithering.svg",
  5620. extra: 1330 / 1224
  5621. }
  5622. },
  5623. slitheringAlt: {
  5624. height: math.unit(6, "feet"),
  5625. weight: math.unit(300, "lbs"),
  5626. name: "Slithering (Alt)",
  5627. image: {
  5628. source: "./media/characters/psymon/slithering-alt.svg",
  5629. extra: 1330 / 1224
  5630. }
  5631. },
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(11.25, "feet"),
  5637. default: true
  5638. },
  5639. {
  5640. name: "Large",
  5641. height: math.unit(27, "feet")
  5642. },
  5643. {
  5644. name: "Giant",
  5645. height: math.unit(87, "feet")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(365, "feet")
  5650. },
  5651. {
  5652. name: "Megamacro",
  5653. height: math.unit(3, "miles")
  5654. },
  5655. {
  5656. name: "World Serpent",
  5657. height: math.unit(8000, "miles")
  5658. },
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(180, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/daimos/front.svg",
  5670. extra: 4160 / 3897,
  5671. bottom: 0.021
  5672. }
  5673. }
  5674. },
  5675. [
  5676. {
  5677. name: "Normal",
  5678. height: math.unit(8, "feet"),
  5679. default: true
  5680. },
  5681. {
  5682. name: "Big Dog",
  5683. height: math.unit(22, "feet")
  5684. },
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(127, "feet")
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(3600, "feet")
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5697. {
  5698. side: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(180, "lbs"),
  5701. name: "Side",
  5702. image: {
  5703. source: "./media/characters/blake/side.svg",
  5704. extra: 1212 / 1120,
  5705. bottom: 0.05
  5706. }
  5707. },
  5708. crouched: {
  5709. height: math.unit(6 * 0.57, "feet"),
  5710. weight: math.unit(180, "lbs"),
  5711. name: "Crouched",
  5712. image: {
  5713. source: "./media/characters/blake/crouched.svg",
  5714. extra: 840 / 587,
  5715. bottom: 0.04
  5716. }
  5717. },
  5718. bent: {
  5719. height: math.unit(6 * 0.75, "feet"),
  5720. weight: math.unit(180, "lbs"),
  5721. name: "Bent",
  5722. image: {
  5723. source: "./media/characters/blake/bent.svg",
  5724. extra: 592 / 544,
  5725. bottom: 0.035
  5726. }
  5727. },
  5728. },
  5729. [
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(8 + 1 / 6, "feet"),
  5733. default: true
  5734. },
  5735. {
  5736. name: "Big Backside",
  5737. height: math.unit(37, "feet")
  5738. },
  5739. {
  5740. name: "Subway Shredder",
  5741. height: math.unit(72, "feet")
  5742. },
  5743. {
  5744. name: "City Carver",
  5745. height: math.unit(1675, "feet")
  5746. },
  5747. {
  5748. name: "Tectonic Tweaker",
  5749. height: math.unit(2300, "miles")
  5750. },
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5755. {
  5756. front: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(180, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/guisetto/front.svg",
  5762. extra: 856 / 817,
  5763. bottom: 0.06
  5764. }
  5765. },
  5766. airborne: {
  5767. height: math.unit(6, "feet"),
  5768. weight: math.unit(180, "lbs"),
  5769. name: "Airborne",
  5770. image: {
  5771. source: "./media/characters/guisetto/airborne.svg",
  5772. extra: 584 / 525
  5773. }
  5774. },
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(10 + 11 / 12, "feet"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Large",
  5784. height: math.unit(35, "feet")
  5785. },
  5786. {
  5787. name: "Macro",
  5788. height: math.unit(475, "feet")
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(180, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/luxor/front.svg",
  5801. extra: 2940 / 2152
  5802. }
  5803. },
  5804. back: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(180, "lbs"),
  5807. name: "Back",
  5808. image: {
  5809. source: "./media/characters/luxor/back.svg",
  5810. extra: 1083 / 960
  5811. }
  5812. },
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(5 + 5 / 6, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Lamp",
  5822. height: math.unit(50, "feet")
  5823. },
  5824. {
  5825. name: "Lämp",
  5826. height: math.unit(300, "feet")
  5827. },
  5828. {
  5829. name: "The sun is a lamp",
  5830. height: math.unit(250000, "miles")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(50, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/huoyan/front.svg"
  5843. }
  5844. },
  5845. side: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(180, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/huoyan/side.svg"
  5851. }
  5852. },
  5853. },
  5854. [
  5855. {
  5856. name: "Chef",
  5857. height: math.unit(9, "feet")
  5858. },
  5859. {
  5860. name: "Normal",
  5861. height: math.unit(65, "feet"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(780, "feet")
  5867. },
  5868. {
  5869. name: "Flaming Mountain",
  5870. height: math.unit(4.8, "miles")
  5871. },
  5872. {
  5873. name: "Celestial",
  5874. height: math.unit(765000, "miles")
  5875. },
  5876. ]
  5877. ))
  5878. characterMakers.push(() => makeCharacter(
  5879. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5880. {
  5881. front: {
  5882. height: math.unit(5 + 3 / 4, "feet"),
  5883. weight: math.unit(120, "lbs"),
  5884. name: "Front",
  5885. image: {
  5886. source: "./media/characters/tails/front.svg"
  5887. }
  5888. }
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(5 + 3 / 4, "feet"),
  5894. default: true
  5895. }
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5900. {
  5901. front: {
  5902. height: math.unit(4, "feet"),
  5903. weight: math.unit(50, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/rainy/front.svg"
  5907. }
  5908. }
  5909. },
  5910. [
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(800, "feet"),
  5914. default: true
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5920. {
  5921. front: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(150, "lbs"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/rainier/front.svg"
  5927. }
  5928. }
  5929. },
  5930. [
  5931. {
  5932. name: "Micro",
  5933. height: math.unit(2, "mm"),
  5934. default: true
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(8 + 4/12, "feet"),
  5943. name: "Front",
  5944. image: {
  5945. source: "./media/characters/andy-renard/front.svg",
  5946. extra: 1839/1726,
  5947. bottom: 134/1973
  5948. }
  5949. },
  5950. back: {
  5951. height: math.unit(8 + 4/12, "feet"),
  5952. name: "Back",
  5953. image: {
  5954. source: "./media/characters/andy-renard/back.svg",
  5955. extra: 1838/1710,
  5956. bottom: 105/1943
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Tall",
  5963. height: math.unit(8 + 4/12, "feet")
  5964. },
  5965. {
  5966. name: "Mini Macro",
  5967. height: math.unit(15, "feet"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Macro",
  5972. height: math.unit(100, "feet")
  5973. },
  5974. {
  5975. name: "Mega Macro",
  5976. height: math.unit(1000, "feet")
  5977. },
  5978. {
  5979. name: "Giga Macro",
  5980. height: math.unit(10, "miles")
  5981. },
  5982. {
  5983. name: "God Macro",
  5984. height: math.unit(1, "multiverse")
  5985. },
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5990. {
  5991. front: {
  5992. height: math.unit(6, "feet"),
  5993. weight: math.unit(210, "lbs"),
  5994. name: "Front",
  5995. image: {
  5996. source: "./media/characters/cimmaron/front-sfw.svg",
  5997. extra: 701 / 676,
  5998. bottom: 0.046
  5999. }
  6000. },
  6001. back: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(210, "lbs"),
  6004. name: "Back",
  6005. image: {
  6006. source: "./media/characters/cimmaron/back-sfw.svg",
  6007. extra: 701 / 676,
  6008. bottom: 0.046
  6009. }
  6010. },
  6011. frontNsfw: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(210, "lbs"),
  6014. name: "Front (NSFW)",
  6015. image: {
  6016. source: "./media/characters/cimmaron/front-nsfw.svg",
  6017. extra: 701 / 676,
  6018. bottom: 0.046
  6019. }
  6020. },
  6021. backNsfw: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(210, "lbs"),
  6024. name: "Back (NSFW)",
  6025. image: {
  6026. source: "./media/characters/cimmaron/back-nsfw.svg",
  6027. extra: 701 / 676,
  6028. bottom: 0.046
  6029. }
  6030. },
  6031. dick: {
  6032. height: math.unit(1.714, "feet"),
  6033. name: "Dick",
  6034. image: {
  6035. source: "./media/characters/cimmaron/dick.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(6, "feet"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Macro Mayor",
  6047. height: math.unit(350, "meters")
  6048. },
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6053. {
  6054. front: {
  6055. height: math.unit(6, "feet"),
  6056. weight: math.unit(200, "lbs"),
  6057. name: "Front",
  6058. image: {
  6059. source: "./media/characters/akari/front.svg",
  6060. extra: 962 / 901,
  6061. bottom: 0.04
  6062. }
  6063. }
  6064. },
  6065. [
  6066. {
  6067. name: "Micro",
  6068. height: math.unit(5, "inches"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(7, "feet")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(140, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/cynosura/front.svg",
  6086. extra: 896 / 847
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(140, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/cynosura/back.svg",
  6095. extra: 1365 / 1250
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Micro",
  6102. height: math.unit(4, "inches")
  6103. },
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(5.75, "feet"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Tall",
  6111. height: math.unit(10, "feet")
  6112. },
  6113. {
  6114. name: "Big",
  6115. height: math.unit(20, "feet")
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(50, "feet")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(13 + 2/12, "feet"),
  6128. weight: math.unit(800, "kg"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/gin/front.svg",
  6132. extra: 1312/1191,
  6133. bottom: 45/1357
  6134. }
  6135. },
  6136. mouth: {
  6137. height: math.unit(2.39 * 1.8, "feet"),
  6138. name: "Mouth",
  6139. image: {
  6140. source: "./media/characters/gin/mouth.svg"
  6141. }
  6142. },
  6143. hand: {
  6144. height: math.unit(1.57 * 2.19, "feet"),
  6145. name: "Hand",
  6146. image: {
  6147. source: "./media/characters/gin/hand.svg"
  6148. }
  6149. },
  6150. foot: {
  6151. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6152. name: "Foot",
  6153. image: {
  6154. source: "./media/characters/gin/foot.svg"
  6155. }
  6156. },
  6157. sole: {
  6158. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6159. name: "Sole",
  6160. image: {
  6161. source: "./media/characters/gin/sole.svg"
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Very Small",
  6168. height: math.unit(13 + 2 / 12, "feet")
  6169. },
  6170. {
  6171. name: "Micro",
  6172. height: math.unit(600, "miles")
  6173. },
  6174. {
  6175. name: "Regular",
  6176. height: math.unit(20, "earths"),
  6177. default: true
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(2.2, "solarradii")
  6182. },
  6183. {
  6184. name: "Teramacro",
  6185. height: math.unit(1.2, "galaxies")
  6186. },
  6187. {
  6188. name: "Omegamacro",
  6189. height: math.unit(200, "universes")
  6190. },
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6195. {
  6196. front: {
  6197. height: math.unit(6 + 1 / 6, "feet"),
  6198. weight: math.unit(178, "lbs"),
  6199. name: "Front",
  6200. image: {
  6201. source: "./media/characters/guy/front.svg"
  6202. }
  6203. }
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(6 + 1 / 6, "feet"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Large",
  6213. height: math.unit(25 + 7 / 12, "feet")
  6214. },
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(60 + 9 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro+",
  6221. height: math.unit(246, "feet")
  6222. },
  6223. {
  6224. name: "Macro++",
  6225. height: math.unit(878, "feet")
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(9, "feet"),
  6234. weight: math.unit(800, "lbs"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/tiberius/front.svg",
  6238. extra: 2295 / 2071
  6239. }
  6240. },
  6241. back: {
  6242. height: math.unit(9, "feet"),
  6243. weight: math.unit(800, "lbs"),
  6244. name: "Back",
  6245. image: {
  6246. source: "./media/characters/tiberius/back.svg",
  6247. extra: 2373 / 2160
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(9, "feet"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6261. {
  6262. front: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(600, "lbs"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/surgo/front.svg",
  6268. extra: 3591 / 2227
  6269. }
  6270. },
  6271. back: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(600, "lbs"),
  6274. name: "Back",
  6275. image: {
  6276. source: "./media/characters/surgo/back.svg",
  6277. extra: 3557 / 2228
  6278. }
  6279. },
  6280. laying: {
  6281. height: math.unit(6 * 0.85, "feet"),
  6282. weight: math.unit(600, "lbs"),
  6283. name: "Laying",
  6284. image: {
  6285. source: "./media/characters/surgo/laying.svg"
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(6, "feet"),
  6293. default: true
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6299. {
  6300. side: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(150, "lbs"),
  6303. name: "Side",
  6304. image: {
  6305. source: "./media/characters/cibus/side.svg",
  6306. extra: 800 / 400
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(6, "feet"),
  6314. default: true
  6315. }
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(240, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/nibbles/front.svg"
  6327. }
  6328. },
  6329. side: {
  6330. height: math.unit(6, "feet"),
  6331. weight: math.unit(240, "lbs"),
  6332. name: "Side",
  6333. image: {
  6334. source: "./media/characters/nibbles/side.svg"
  6335. }
  6336. },
  6337. },
  6338. [
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(9, "feet"),
  6342. default: true
  6343. }
  6344. ]
  6345. ))
  6346. characterMakers.push(() => makeCharacter(
  6347. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6348. {
  6349. side: {
  6350. height: math.unit(5 + 1 / 6, "feet"),
  6351. weight: math.unit(130, "lbs"),
  6352. name: "Side",
  6353. image: {
  6354. source: "./media/characters/rikky/side.svg",
  6355. extra: 851 / 801
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(5 + 1 / 6, "feet")
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(152, "feet"),
  6367. default: true
  6368. },
  6369. {
  6370. name: "Megamacro",
  6371. height: math.unit(7, "miles")
  6372. }
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6377. {
  6378. side: {
  6379. height: math.unit(370, "cm"),
  6380. weight: math.unit(350, "lbs"),
  6381. name: "Side",
  6382. image: {
  6383. source: "./media/characters/malfressa/side.svg"
  6384. }
  6385. },
  6386. walking: {
  6387. height: math.unit(370, "cm"),
  6388. weight: math.unit(350, "lbs"),
  6389. name: "Walking",
  6390. image: {
  6391. source: "./media/characters/malfressa/walking.svg"
  6392. }
  6393. },
  6394. feral: {
  6395. height: math.unit(2500, "cm"),
  6396. weight: math.unit(100000, "lbs"),
  6397. name: "Feral",
  6398. image: {
  6399. source: "./media/characters/malfressa/feral.svg",
  6400. extra: 2108 / 837,
  6401. bottom: 0.02
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Normal",
  6408. height: math.unit(370, "cm")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(300, "meters"),
  6413. default: true
  6414. }
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(60, "kg"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/jaro/front.svg",
  6426. extra: 845/817,
  6427. bottom: 45/890
  6428. }
  6429. },
  6430. back: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(60, "kg"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/jaro/back.svg",
  6436. extra: 847/817,
  6437. bottom: 34/881
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(7, "inches")
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(5.5, "feet"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Minimacro",
  6453. height: math.unit(20, "feet")
  6454. },
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(200, "meters")
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(6, "feet"),
  6466. weight: math.unit(195, "lb"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/rogue/front.svg"
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Macro",
  6476. height: math.unit(90, "feet"),
  6477. default: true
  6478. },
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6483. {
  6484. front: {
  6485. height: math.unit(5 + 8 / 12, "feet"),
  6486. weight: math.unit(140, "lb"),
  6487. name: "Front",
  6488. image: {
  6489. source: "./media/characters/piper/front.svg",
  6490. extra: 3948/3655,
  6491. bottom: 0/3948
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(2, "inches")
  6499. },
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(5 + 8 / 12, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(250, "feet"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(7, "miles")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(6, "feet"),
  6520. weight: math.unit(220, "lb"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/gemini/front.svg"
  6524. }
  6525. },
  6526. back: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(220, "lb"),
  6529. name: "Back",
  6530. image: {
  6531. source: "./media/characters/gemini/back.svg"
  6532. }
  6533. },
  6534. kneeling: {
  6535. height: math.unit(6 / 1.5, "feet"),
  6536. weight: math.unit(220, "lb"),
  6537. name: "Kneeling",
  6538. image: {
  6539. source: "./media/characters/gemini/kneeling.svg",
  6540. bottom: 0.02
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(300, "meters"),
  6548. default: true
  6549. },
  6550. {
  6551. name: "Megamacro",
  6552. height: math.unit(6900, "meters")
  6553. },
  6554. ]
  6555. ))
  6556. characterMakers.push(() => makeCharacter(
  6557. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6558. {
  6559. anthro: {
  6560. height: math.unit(2.35, "meters"),
  6561. weight: math.unit(73, "kg"),
  6562. name: "Anthro",
  6563. image: {
  6564. source: "./media/characters/alicia/anthro.svg",
  6565. extra: 2571 / 2385,
  6566. bottom: 75 / 2648
  6567. }
  6568. },
  6569. paw: {
  6570. height: math.unit(1.32, "feet"),
  6571. name: "Paw",
  6572. image: {
  6573. source: "./media/characters/alicia/paw.svg"
  6574. }
  6575. },
  6576. feral: {
  6577. height: math.unit(1.69, "meters"),
  6578. weight: math.unit(73, "kg"),
  6579. name: "Feral",
  6580. image: {
  6581. source: "./media/characters/alicia/feral.svg",
  6582. extra: 2123 / 1715,
  6583. bottom: 222 / 2349
  6584. }
  6585. },
  6586. },
  6587. [
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(2.35, "meters")
  6591. },
  6592. {
  6593. name: "Macro",
  6594. height: math.unit(60, "meters"),
  6595. default: true
  6596. },
  6597. {
  6598. name: "Megamacro",
  6599. height: math.unit(10000, "kilometers")
  6600. },
  6601. ]
  6602. ))
  6603. characterMakers.push(() => makeCharacter(
  6604. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6605. {
  6606. front: {
  6607. height: math.unit(7, "feet"),
  6608. weight: math.unit(250, "lbs"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/archy/front.svg"
  6612. }
  6613. }
  6614. },
  6615. [
  6616. {
  6617. name: "Micro",
  6618. height: math.unit(1, "inch")
  6619. },
  6620. {
  6621. name: "Shorty",
  6622. height: math.unit(5, "feet")
  6623. },
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(7, "feet")
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(600, "meters"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Megamacro",
  6635. height: math.unit(1, "mile")
  6636. },
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6641. {
  6642. front: {
  6643. height: math.unit(1.65, "meters"),
  6644. weight: math.unit(74, "kg"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/berri/front.svg",
  6648. extra: 857 / 837,
  6649. bottom: 18 / 877
  6650. }
  6651. },
  6652. bum: {
  6653. height: math.unit(1.46, "feet"),
  6654. name: "Bum",
  6655. image: {
  6656. source: "./media/characters/berri/bum.svg"
  6657. }
  6658. },
  6659. mouth: {
  6660. height: math.unit(0.44, "feet"),
  6661. name: "Mouth",
  6662. image: {
  6663. source: "./media/characters/berri/mouth.svg"
  6664. }
  6665. },
  6666. paw: {
  6667. height: math.unit(0.826, "feet"),
  6668. name: "Paw",
  6669. image: {
  6670. source: "./media/characters/berri/paw.svg"
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(1.65, "meters")
  6678. },
  6679. {
  6680. name: "Macro",
  6681. height: math.unit(60, "m"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Megamacro",
  6686. height: math.unit(9.213, "km")
  6687. },
  6688. {
  6689. name: "Planet Eater",
  6690. height: math.unit(489, "megameters")
  6691. },
  6692. {
  6693. name: "Teramacro",
  6694. height: math.unit(2471635000000, "meters")
  6695. },
  6696. {
  6697. name: "Examacro",
  6698. height: math.unit(8.0624e+26, "meters")
  6699. }
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(1.72, "meters"),
  6707. weight: math.unit(68, "kg"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/lexi/front.svg"
  6711. }
  6712. }
  6713. },
  6714. [
  6715. {
  6716. name: "Very Smol",
  6717. height: math.unit(10, "mm")
  6718. },
  6719. {
  6720. name: "Micro",
  6721. height: math.unit(6.8, "cm"),
  6722. default: true
  6723. },
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(1.72, "m")
  6727. }
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6732. {
  6733. front: {
  6734. height: math.unit(1.69, "meters"),
  6735. weight: math.unit(68, "kg"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/martin/front.svg",
  6739. extra: 596 / 581
  6740. }
  6741. }
  6742. },
  6743. [
  6744. {
  6745. name: "Micro",
  6746. height: math.unit(6.85, "cm"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(1.69, "m")
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(1.69, "meters"),
  6760. weight: math.unit(68, "kg"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/juno/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Micro",
  6770. height: math.unit(7, "cm")
  6771. },
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(1.89, "m")
  6775. },
  6776. {
  6777. name: "Macro",
  6778. height: math.unit(353, "meters"),
  6779. default: true
  6780. }
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(1.93, "meters"),
  6788. weight: math.unit(83, "kg"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/samantha/front.svg"
  6792. }
  6793. },
  6794. frontClothed: {
  6795. height: math.unit(1.93, "meters"),
  6796. weight: math.unit(83, "kg"),
  6797. name: "Front (Clothed)",
  6798. image: {
  6799. source: "./media/characters/samantha/front-clothed.svg"
  6800. }
  6801. },
  6802. back: {
  6803. height: math.unit(1.93, "meters"),
  6804. weight: math.unit(83, "kg"),
  6805. name: "Back",
  6806. image: {
  6807. source: "./media/characters/samantha/back.svg"
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(1.93, "m")
  6815. },
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(74, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Macro+",
  6823. height: math.unit(223, "meters"),
  6824. },
  6825. {
  6826. name: "Megamacro",
  6827. height: math.unit(8381, "meters"),
  6828. },
  6829. {
  6830. name: "Megamacro+",
  6831. height: math.unit(12000, "kilometers")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(1.92, "meters"),
  6840. weight: math.unit(80, "kg"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/dr-clay/front.svg"
  6844. }
  6845. },
  6846. frontClothed: {
  6847. height: math.unit(1.92, "meters"),
  6848. weight: math.unit(80, "kg"),
  6849. name: "Front (Clothed)",
  6850. image: {
  6851. source: "./media/characters/dr-clay/front-clothed.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(1.92, "m")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(214, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Macro+",
  6867. height: math.unit(12.237, "meters"),
  6868. },
  6869. {
  6870. name: "Megamacro",
  6871. height: math.unit(557, "megameters"),
  6872. },
  6873. {
  6874. name: "Unimaginable",
  6875. height: math.unit(120e9, "lightyears")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(2, "meters"),
  6884. weight: math.unit(80, "kg"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Teramacro",
  6894. height: math.unit(500000, "lightyears"),
  6895. default: true
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6901. {
  6902. crux: {
  6903. height: math.unit(2, "meters"),
  6904. weight: math.unit(150, "kg"),
  6905. name: "Crux",
  6906. image: {
  6907. source: "./media/characters/vemus/crux.svg",
  6908. extra: 1074/936,
  6909. bottom: 23/1097
  6910. }
  6911. },
  6912. skunkTanuki: {
  6913. height: math.unit(2, "meters"),
  6914. weight: math.unit(150, "kg"),
  6915. name: "Skunk-Tanuki",
  6916. image: {
  6917. source: "./media/characters/vemus/skunk-tanuki.svg",
  6918. extra: 926/893,
  6919. bottom: 20/946
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(3.75, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Big",
  6931. height: math.unit(8, "meters")
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(100, "meters")
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(1500, "meters")
  6940. },
  6941. {
  6942. name: "Stellar",
  6943. height: math.unit(14e8, "meters")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(2, "meters"),
  6952. weight: math.unit(70, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/beherit/front.svg",
  6956. extra: 1234/1109,
  6957. bottom: 55/1289
  6958. }
  6959. }
  6960. },
  6961. [
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(6, "feet")
  6965. },
  6966. {
  6967. name: "Lorg",
  6968. height: math.unit(25, "feet"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Lorger",
  6973. height: math.unit(75, "feet")
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(200, "meters")
  6978. },
  6979. ]
  6980. ))
  6981. characterMakers.push(() => makeCharacter(
  6982. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6983. {
  6984. front: {
  6985. height: math.unit(2, "meters"),
  6986. weight: math.unit(150, "kg"),
  6987. name: "Front",
  6988. image: {
  6989. source: "./media/characters/everett/front.svg",
  6990. extra: 1017/866,
  6991. bottom: 86/1103
  6992. }
  6993. },
  6994. paw: {
  6995. height: math.unit(2 / 3.6, "meters"),
  6996. name: "Paw",
  6997. image: {
  6998. source: "./media/characters/everett/paw.svg"
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(15, "feet"),
  7006. default: true
  7007. },
  7008. {
  7009. name: "Lorg",
  7010. height: math.unit(70, "feet"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Lorger",
  7015. height: math.unit(250, "feet")
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(500, "meters")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(2, "meters"),
  7028. weight: math.unit(86, "kg"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/rose/front.svg",
  7032. extra: 1785/1636,
  7033. bottom: 30/1815
  7034. }
  7035. },
  7036. frontSporty: {
  7037. height: math.unit(2, "meters"),
  7038. weight: math.unit(86, "kg"),
  7039. name: "Front (Sporty)",
  7040. image: {
  7041. source: "./media/characters/rose/front-sporty.svg",
  7042. extra: 350/335,
  7043. bottom: 10/360
  7044. }
  7045. },
  7046. frontAlt: {
  7047. height: math.unit(1.6, "meters"),
  7048. weight: math.unit(86, "kg"),
  7049. name: "Front (Alt)",
  7050. image: {
  7051. source: "./media/characters/rose/front-alt.svg",
  7052. extra: 299/283,
  7053. bottom: 3/302
  7054. }
  7055. },
  7056. plush: {
  7057. height: math.unit(2, "meters"),
  7058. weight: math.unit(86/3, "kg"),
  7059. name: "Plush",
  7060. image: {
  7061. source: "./media/characters/rose/plush.svg",
  7062. extra: 361/337,
  7063. bottom: 11/372
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "True Micro",
  7070. height: math.unit(9, "cm")
  7071. },
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(16, "cm")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(1.85, "meters"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Mini-Macro",
  7083. height: math.unit(5, "meters")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(15, "meters")
  7088. },
  7089. {
  7090. name: "True Macro",
  7091. height: math.unit(40, "meters")
  7092. },
  7093. {
  7094. name: "City Scale",
  7095. height: math.unit(1, "km")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(2, "meters"),
  7104. weight: math.unit(350, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/regal/front.svg"
  7108. }
  7109. },
  7110. back: {
  7111. height: math.unit(2, "meters"),
  7112. weight: math.unit(350, "lbs"),
  7113. name: "Back",
  7114. image: {
  7115. source: "./media/characters/regal/back.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(350, "feet"),
  7123. default: true
  7124. }
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(4 + 11 / 12, "feet"),
  7132. weight: math.unit(100, "lbs"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/opal/front.svg"
  7136. }
  7137. },
  7138. frontAlt: {
  7139. height: math.unit(4 + 11 / 12, "feet"),
  7140. weight: math.unit(100, "lbs"),
  7141. name: "Front (Alt)",
  7142. image: {
  7143. source: "./media/characters/opal/front-alt.svg"
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Small",
  7150. height: math.unit(4 + 11 / 12, "feet")
  7151. },
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(20, "feet"),
  7155. default: true
  7156. },
  7157. {
  7158. name: "Macro",
  7159. height: math.unit(120, "feet")
  7160. },
  7161. {
  7162. name: "Megamacro",
  7163. height: math.unit(80, "miles")
  7164. },
  7165. {
  7166. name: "True Size",
  7167. height: math.unit(100000, "lightyears")
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(200, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/vector-wuff/front.svg"
  7180. }
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(2.8, "meters")
  7187. },
  7188. {
  7189. name: "Macro",
  7190. height: math.unit(450, "meters"),
  7191. default: true
  7192. },
  7193. {
  7194. name: "Megamacro",
  7195. height: math.unit(15, "kilometers")
  7196. }
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7201. {
  7202. front: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(256, "lbs"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/dannik/front.svg"
  7208. }
  7209. }
  7210. },
  7211. [
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(69.57, "meters"),
  7215. default: true
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(6, "feet"),
  7224. weight: math.unit(120, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/azura-saharah/front.svg"
  7228. }
  7229. },
  7230. back: {
  7231. height: math.unit(6, "feet"),
  7232. weight: math.unit(120, "lbs"),
  7233. name: "Back",
  7234. image: {
  7235. source: "./media/characters/azura-saharah/back.svg"
  7236. }
  7237. },
  7238. },
  7239. [
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(100, "feet"),
  7243. default: true
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7249. {
  7250. side: {
  7251. height: math.unit(5 + 4 / 12, "feet"),
  7252. weight: math.unit(163, "lbs"),
  7253. name: "Side",
  7254. image: {
  7255. source: "./media/characters/kennedy/side.svg"
  7256. }
  7257. }
  7258. },
  7259. [
  7260. {
  7261. name: "Standard Doggo",
  7262. height: math.unit(5 + 4 / 12, "feet")
  7263. },
  7264. {
  7265. name: "Big Doggo",
  7266. height: math.unit(25 + 3 / 12, "feet"),
  7267. default: true
  7268. },
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7273. {
  7274. front: {
  7275. height: math.unit(5 + 5/12, "feet"),
  7276. weight: math.unit(100, "lbs"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/odios-de-lunar/front.svg",
  7280. extra: 1468/1323,
  7281. bottom: 22/1490
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(3, "inches")
  7289. },
  7290. {
  7291. name: "Normal",
  7292. height: math.unit(5.5, "feet"),
  7293. default: true
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(100, "feet")
  7298. },
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7303. {
  7304. back: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(220, "lbs"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/mandake/back.svg"
  7310. }
  7311. }
  7312. },
  7313. [
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(7, "feet"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(78, "feet")
  7322. },
  7323. {
  7324. name: "Macro+",
  7325. height: math.unit(300, "meters")
  7326. },
  7327. {
  7328. name: "Macro++",
  7329. height: math.unit(2400, "feet")
  7330. },
  7331. {
  7332. name: "Megamacro",
  7333. height: math.unit(5167, "meters")
  7334. },
  7335. {
  7336. name: "Gigamacro",
  7337. height: math.unit(41769, "miles")
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(6, "feet"),
  7346. weight: math.unit(120, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/yozey/front.svg"
  7350. }
  7351. },
  7352. frontAlt: {
  7353. height: math.unit(6, "feet"),
  7354. weight: math.unit(120, "lbs"),
  7355. name: "Front (Alt)",
  7356. image: {
  7357. source: "./media/characters/yozey/front-alt.svg"
  7358. }
  7359. },
  7360. side: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(120, "lbs"),
  7363. name: "Side",
  7364. image: {
  7365. source: "./media/characters/yozey/side.svg"
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(3, "inches"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(6, "feet")
  7378. }
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7383. {
  7384. front: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(103, "lbs"),
  7387. name: "Front",
  7388. image: {
  7389. source: "./media/characters/valeska-voss/front.svg"
  7390. }
  7391. }
  7392. },
  7393. [
  7394. {
  7395. name: "Mini-Sized Sub",
  7396. height: math.unit(3.1, "inches")
  7397. },
  7398. {
  7399. name: "Mid-Sized Sub",
  7400. height: math.unit(6.2, "inches")
  7401. },
  7402. {
  7403. name: "Full-Sized Sub",
  7404. height: math.unit(9.3, "inches")
  7405. },
  7406. {
  7407. name: "Normal",
  7408. height: math.unit(5 + 2 / 12, "foot"),
  7409. default: true
  7410. },
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7415. {
  7416. front: {
  7417. height: math.unit(6, "feet"),
  7418. weight: math.unit(160, "lbs"),
  7419. name: "Front",
  7420. image: {
  7421. source: "./media/characters/gene-zeta/front.svg",
  7422. extra: 3006 / 2826,
  7423. bottom: 182 / 3188
  7424. }
  7425. }
  7426. },
  7427. [
  7428. {
  7429. name: "Micro",
  7430. height: math.unit(6, "inches")
  7431. },
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(5 + 11 / 12, "foot"),
  7435. default: true
  7436. },
  7437. {
  7438. name: "Macro",
  7439. height: math.unit(140, "feet")
  7440. },
  7441. {
  7442. name: "Supercharged",
  7443. height: math.unit(2500, "feet")
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(350, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/razinox/front.svg",
  7456. extra: 1686 / 1548,
  7457. bottom: 28.2 / 1868
  7458. }
  7459. },
  7460. back: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(350, "lbs"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/razinox/back.svg",
  7466. extra: 1660 / 1590,
  7467. bottom: 15 / 1665
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(10 + 8 / 12, "foot")
  7475. },
  7476. {
  7477. name: "Minimacro",
  7478. height: math.unit(15, "foot")
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(60, "foot"),
  7483. default: true
  7484. },
  7485. {
  7486. name: "Megamacro",
  7487. height: math.unit(5, "miles")
  7488. },
  7489. {
  7490. name: "Gigamacro",
  7491. height: math.unit(6000, "miles")
  7492. },
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(150, "lbs"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/cobalt/front.svg"
  7504. }
  7505. }
  7506. },
  7507. [
  7508. {
  7509. name: "Normal",
  7510. height: math.unit(8 + 1 / 12, "foot")
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(111, "foot"),
  7515. default: true
  7516. },
  7517. {
  7518. name: "Supracosmic",
  7519. height: math.unit(1e42, "feet")
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7525. {
  7526. front: {
  7527. height: math.unit(6, "feet"),
  7528. weight: math.unit(140, "lbs"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/amanda/front.svg"
  7532. }
  7533. }
  7534. },
  7535. [
  7536. {
  7537. name: "Micro",
  7538. height: math.unit(5, "inches"),
  7539. default: true
  7540. },
  7541. ]
  7542. ))
  7543. characterMakers.push(() => makeCharacter(
  7544. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7545. {
  7546. front: {
  7547. height: math.unit(2.75, "meters"),
  7548. weight: math.unit(1200, "lb"),
  7549. name: "Front",
  7550. image: {
  7551. source: "./media/characters/teal/front.svg",
  7552. extra: 2463 / 2320,
  7553. bottom: 166 / 2629
  7554. }
  7555. },
  7556. back: {
  7557. height: math.unit(2.75, "meters"),
  7558. weight: math.unit(1200, "lb"),
  7559. name: "Back",
  7560. image: {
  7561. source: "./media/characters/teal/back.svg",
  7562. extra: 2580 / 2489,
  7563. bottom: 151 / 2731
  7564. }
  7565. },
  7566. sitting: {
  7567. height: math.unit(1.9, "meters"),
  7568. weight: math.unit(1200, "lb"),
  7569. name: "Sitting",
  7570. image: {
  7571. source: "./media/characters/teal/sitting.svg",
  7572. extra: 623 / 590,
  7573. bottom: 121 / 744
  7574. }
  7575. },
  7576. standing: {
  7577. height: math.unit(2.75, "meters"),
  7578. weight: math.unit(1200, "lb"),
  7579. name: "Standing",
  7580. image: {
  7581. source: "./media/characters/teal/standing.svg",
  7582. extra: 923 / 893,
  7583. bottom: 60 / 983
  7584. }
  7585. },
  7586. stretching: {
  7587. height: math.unit(3.65, "meters"),
  7588. weight: math.unit(1200, "lb"),
  7589. name: "Stretching",
  7590. image: {
  7591. source: "./media/characters/teal/stretching.svg",
  7592. extra: 1276 / 1244,
  7593. bottom: 0 / 1276
  7594. }
  7595. },
  7596. legged: {
  7597. height: math.unit(1.3, "meters"),
  7598. weight: math.unit(100, "lb"),
  7599. name: "Legged",
  7600. image: {
  7601. source: "./media/characters/teal/legged.svg",
  7602. extra: 462 / 437,
  7603. bottom: 24 / 486
  7604. }
  7605. },
  7606. naga: {
  7607. height: math.unit(5.4, "meters"),
  7608. weight: math.unit(4000, "lb"),
  7609. name: "Naga",
  7610. image: {
  7611. source: "./media/characters/teal/naga.svg",
  7612. extra: 1902 / 1858,
  7613. bottom: 0 / 1902
  7614. }
  7615. },
  7616. hand: {
  7617. height: math.unit(0.52, "meters"),
  7618. name: "Hand",
  7619. image: {
  7620. source: "./media/characters/teal/hand.svg"
  7621. }
  7622. },
  7623. maw: {
  7624. height: math.unit(0.43, "meters"),
  7625. name: "Maw",
  7626. image: {
  7627. source: "./media/characters/teal/maw.svg"
  7628. }
  7629. },
  7630. slit: {
  7631. height: math.unit(0.25, "meters"),
  7632. name: "Slit",
  7633. image: {
  7634. source: "./media/characters/teal/slit.svg"
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(2.75, "meters"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(300, "feet")
  7647. },
  7648. {
  7649. name: "Macro+",
  7650. height: math.unit(2000, "feet")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7656. {
  7657. frontCat: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(180, "lbs"),
  7660. name: "Front (Cat)",
  7661. image: {
  7662. source: "./media/characters/ravin-amulet/front-cat.svg"
  7663. }
  7664. },
  7665. frontCatAlt: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(180, "lbs"),
  7668. name: "Front (Alt, Cat)",
  7669. image: {
  7670. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7671. }
  7672. },
  7673. frontWerewolf: {
  7674. height: math.unit(6 * 1.2, "feet"),
  7675. weight: math.unit(225, "lbs"),
  7676. name: "Front (Werewolf)",
  7677. image: {
  7678. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7679. }
  7680. },
  7681. backWerewolf: {
  7682. height: math.unit(6 * 1.2, "feet"),
  7683. weight: math.unit(225, "lbs"),
  7684. name: "Back (Werewolf)",
  7685. image: {
  7686. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Nano",
  7693. height: math.unit(1, "micrometer")
  7694. },
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(1, "inch")
  7698. },
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(6, "feet"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(60, "feet")
  7707. }
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(6, "feet"),
  7715. weight: math.unit(165, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/fluoresce/front.svg"
  7719. }
  7720. }
  7721. },
  7722. [
  7723. {
  7724. name: "Micro",
  7725. height: math.unit(6, "cm")
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(5 + 7 / 12, "feet"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(56, "feet")
  7735. },
  7736. {
  7737. name: "Megamacro",
  7738. height: math.unit(1.9, "miles")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(9 + 6 / 12, "feet"),
  7747. weight: math.unit(523, "lbs"),
  7748. name: "Side",
  7749. image: {
  7750. source: "./media/characters/aurora/side.svg"
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(9 + 6 / 12, "feet")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(96, "feet"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Macro+",
  7766. height: math.unit(243, "feet")
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(194, "cm"),
  7775. weight: math.unit(90, "kg"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/ranek/front.svg",
  7779. extra: 1862/1791,
  7780. bottom: 80/1942
  7781. }
  7782. },
  7783. back: {
  7784. height: math.unit(194, "cm"),
  7785. weight: math.unit(90, "kg"),
  7786. name: "Back",
  7787. image: {
  7788. source: "./media/characters/ranek/back.svg",
  7789. extra: 1853/1787,
  7790. bottom: 74/1927
  7791. }
  7792. },
  7793. feral: {
  7794. height: math.unit(30, "cm"),
  7795. weight: math.unit(1.6, "lbs"),
  7796. name: "Feral",
  7797. image: {
  7798. source: "./media/characters/ranek/feral.svg",
  7799. extra: 990/631,
  7800. bottom: 29/1019
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(194, "cm"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Macro",
  7812. height: math.unit(100, "meters")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(5 + 6 / 12, "feet"),
  7821. weight: math.unit(153, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/andrew-cooper/front.svg"
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Nano",
  7831. height: math.unit(1, "mm")
  7832. },
  7833. {
  7834. name: "Micro",
  7835. height: math.unit(2, "inches")
  7836. },
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(5 + 6 / 12, "feet"),
  7840. default: true
  7841. }
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(180, "lbs"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/akane-sato/front.svg",
  7853. extra: 1219 / 1140
  7854. }
  7855. },
  7856. back: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(180, "lbs"),
  7859. name: "Back",
  7860. image: {
  7861. source: "./media/characters/akane-sato/back.svg",
  7862. extra: 1219 / 1170
  7863. }
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(2.5, "meters")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(250, "meters"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(25, "km")
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(65, "kg"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/rook/front.svg",
  7891. extra: 960 / 950
  7892. }
  7893. }
  7894. },
  7895. [
  7896. {
  7897. name: "Normal",
  7898. height: math.unit(8.8, "feet")
  7899. },
  7900. {
  7901. name: "Macro",
  7902. height: math.unit(88, "feet"),
  7903. default: true
  7904. },
  7905. {
  7906. name: "Megamacro",
  7907. height: math.unit(8, "miles")
  7908. },
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(12 + 2 / 12, "feet"),
  7916. weight: math.unit(808, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/prodigy/front.svg"
  7920. }
  7921. }
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(12 + 2 / 12, "feet"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(143, "feet")
  7932. },
  7933. {
  7934. name: "Macro+",
  7935. height: math.unit(400, "feet")
  7936. },
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7941. {
  7942. front: {
  7943. height: math.unit(6, "feet"),
  7944. weight: math.unit(225, "lbs"),
  7945. name: "Front",
  7946. image: {
  7947. source: "./media/characters/daniel/front.svg"
  7948. }
  7949. },
  7950. leaning: {
  7951. height: math.unit(6, "feet"),
  7952. weight: math.unit(225, "lbs"),
  7953. name: "Leaning",
  7954. image: {
  7955. source: "./media/characters/daniel/leaning.svg"
  7956. }
  7957. },
  7958. },
  7959. [
  7960. {
  7961. name: "Macro",
  7962. height: math.unit(1000, "feet"),
  7963. default: true
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(88, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/chiros/front.svg",
  7976. extra: 306 / 226
  7977. }
  7978. },
  7979. side: {
  7980. height: math.unit(6, "feet"),
  7981. weight: math.unit(88, "lbs"),
  7982. name: "Side",
  7983. image: {
  7984. source: "./media/characters/chiros/side.svg",
  7985. extra: 306 / 226
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(6, "cm"),
  7993. default: true
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7999. {
  8000. front: {
  8001. height: math.unit(6, "feet"),
  8002. weight: math.unit(100, "lbs"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/selka/front.svg",
  8006. extra: 947 / 887
  8007. }
  8008. }
  8009. },
  8010. [
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(5, "cm"),
  8014. default: true
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8020. {
  8021. front: {
  8022. height: math.unit(8 + 3 / 12, "feet"),
  8023. weight: math.unit(424, "lbs"),
  8024. name: "Front",
  8025. image: {
  8026. source: "./media/characters/verin/front.svg",
  8027. extra: 1845 / 1550
  8028. }
  8029. },
  8030. frontArmored: {
  8031. height: math.unit(8 + 3 / 12, "feet"),
  8032. weight: math.unit(424, "lbs"),
  8033. name: "Front (Armored)",
  8034. image: {
  8035. source: "./media/characters/verin/front-armor.svg",
  8036. extra: 1845 / 1550,
  8037. bottom: 0.01
  8038. }
  8039. },
  8040. back: {
  8041. height: math.unit(8 + 3 / 12, "feet"),
  8042. weight: math.unit(424, "lbs"),
  8043. name: "Back",
  8044. image: {
  8045. source: "./media/characters/verin/back.svg",
  8046. bottom: 0.1,
  8047. extra: 1
  8048. }
  8049. },
  8050. foot: {
  8051. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8052. name: "Foot",
  8053. image: {
  8054. source: "./media/characters/verin/foot.svg"
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(8 + 3 / 12, "feet")
  8062. },
  8063. {
  8064. name: "Minimacro",
  8065. height: math.unit(21, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Macro",
  8070. height: math.unit(626, "feet")
  8071. },
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(2.718, "meters"),
  8079. weight: math.unit(150, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/sovrim-terraquian/front.svg",
  8083. extra: 1752/1689,
  8084. bottom: 36/1788
  8085. }
  8086. },
  8087. back: {
  8088. height: math.unit(2.718, "meters"),
  8089. weight: math.unit(150, "lbs"),
  8090. name: "Back",
  8091. image: {
  8092. source: "./media/characters/sovrim-terraquian/back.svg",
  8093. extra: 1698/1657,
  8094. bottom: 58/1756
  8095. }
  8096. },
  8097. tongue: {
  8098. height: math.unit(2.865, "feet"),
  8099. name: "Tongue",
  8100. image: {
  8101. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8102. }
  8103. },
  8104. hand: {
  8105. height: math.unit(1.61, "feet"),
  8106. name: "Hand",
  8107. image: {
  8108. source: "./media/characters/sovrim-terraquian/hand.svg"
  8109. }
  8110. },
  8111. foot: {
  8112. height: math.unit(1.05, "feet"),
  8113. name: "Foot",
  8114. image: {
  8115. source: "./media/characters/sovrim-terraquian/foot.svg"
  8116. }
  8117. },
  8118. footAlt: {
  8119. height: math.unit(0.88, "feet"),
  8120. name: "Foot (Alt)",
  8121. image: {
  8122. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Micro",
  8129. height: math.unit(2, "inches")
  8130. },
  8131. {
  8132. name: "Small",
  8133. height: math.unit(1, "meter")
  8134. },
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(Math.E, "meters"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(20, "meters")
  8143. },
  8144. {
  8145. name: "Macro+",
  8146. height: math.unit(400, "meters")
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(7, "feet"),
  8155. weight: math.unit(489, "lbs"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/reece-silvermane/front.svg",
  8159. bottom: 0.02,
  8160. extra: 1
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Macro",
  8167. height: math.unit(1.5, "miles"),
  8168. default: true
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(6, "feet"),
  8177. weight: math.unit(78, "kg"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/kane/front.svg",
  8181. extra: 978 / 899
  8182. }
  8183. },
  8184. },
  8185. [
  8186. {
  8187. name: "Normal",
  8188. height: math.unit(2.1, "m"),
  8189. },
  8190. {
  8191. name: "Macro",
  8192. height: math.unit(1, "km"),
  8193. default: true
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(6, "feet"),
  8202. weight: math.unit(200, "kg"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/tegon/front.svg",
  8206. bottom: 0.01,
  8207. extra: 1
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Micro",
  8214. height: math.unit(1, "inch")
  8215. },
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(6 + 3 / 12, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro",
  8223. height: math.unit(300, "feet")
  8224. },
  8225. {
  8226. name: "Megamacro",
  8227. height: math.unit(69, "miles")
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8233. {
  8234. side: {
  8235. height: math.unit(6, "feet"),
  8236. weight: math.unit(2304, "lbs"),
  8237. name: "Side",
  8238. image: {
  8239. source: "./media/characters/arcturax/side.svg",
  8240. extra: 790 / 376,
  8241. bottom: 0.01
  8242. }
  8243. },
  8244. },
  8245. [
  8246. {
  8247. name: "Micro",
  8248. height: math.unit(2, "inch")
  8249. },
  8250. {
  8251. name: "Normal",
  8252. height: math.unit(6, "feet")
  8253. },
  8254. {
  8255. name: "Macro",
  8256. height: math.unit(39, "feet"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Megamacro",
  8261. height: math.unit(7, "miles")
  8262. },
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8267. {
  8268. front: {
  8269. height: math.unit(6, "feet"),
  8270. weight: math.unit(50, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/sentri/front.svg",
  8274. extra: 1750 / 1570,
  8275. bottom: 0.025
  8276. }
  8277. },
  8278. frontAlt: {
  8279. height: math.unit(6, "feet"),
  8280. weight: math.unit(50, "lbs"),
  8281. name: "Front (Alt)",
  8282. image: {
  8283. source: "./media/characters/sentri/front-alt.svg",
  8284. extra: 1750 / 1570,
  8285. bottom: 0.025
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Normal",
  8292. height: math.unit(15, "feet"),
  8293. default: true
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(2500, "feet")
  8298. }
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(5 + 8 / 12, "feet"),
  8306. weight: math.unit(130, "lbs"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/corvin/front.svg",
  8310. extra: 1803 / 1629
  8311. }
  8312. },
  8313. frontShirt: {
  8314. height: math.unit(5 + 8 / 12, "feet"),
  8315. weight: math.unit(130, "lbs"),
  8316. name: "Front (Shirt)",
  8317. image: {
  8318. source: "./media/characters/corvin/front-shirt.svg",
  8319. extra: 1803 / 1629
  8320. }
  8321. },
  8322. frontPoncho: {
  8323. height: math.unit(5 + 8 / 12, "feet"),
  8324. weight: math.unit(130, "lbs"),
  8325. name: "Front (Poncho)",
  8326. image: {
  8327. source: "./media/characters/corvin/front-poncho.svg",
  8328. extra: 1803 / 1629
  8329. }
  8330. },
  8331. side: {
  8332. height: math.unit(5 + 8 / 12, "feet"),
  8333. weight: math.unit(130, "lbs"),
  8334. name: "Side",
  8335. image: {
  8336. source: "./media/characters/corvin/side.svg",
  8337. extra: 1012 / 945
  8338. }
  8339. },
  8340. back: {
  8341. height: math.unit(5 + 8 / 12, "feet"),
  8342. weight: math.unit(130, "lbs"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/corvin/back.svg",
  8346. extra: 1803 / 1629
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Micro",
  8353. height: math.unit(3, "inches")
  8354. },
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(5 + 8 / 12, "feet")
  8358. },
  8359. {
  8360. name: "Macro",
  8361. height: math.unit(300, "feet"),
  8362. default: true
  8363. },
  8364. {
  8365. name: "Megamacro",
  8366. height: math.unit(500, "miles")
  8367. }
  8368. ]
  8369. ))
  8370. characterMakers.push(() => makeCharacter(
  8371. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8372. {
  8373. front: {
  8374. height: math.unit(6, "feet"),
  8375. weight: math.unit(135, "lbs"),
  8376. name: "Front",
  8377. image: {
  8378. source: "./media/characters/q/front.svg",
  8379. extra: 854 / 752,
  8380. bottom: 0.005
  8381. }
  8382. },
  8383. back: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(130, "lbs"),
  8386. name: "Back",
  8387. image: {
  8388. source: "./media/characters/q/back.svg",
  8389. extra: 854 / 752
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Macro",
  8396. height: math.unit(90, "feet"),
  8397. default: true
  8398. },
  8399. {
  8400. name: "Extra Macro",
  8401. height: math.unit(300, "feet"),
  8402. },
  8403. {
  8404. name: "BIG WALF",
  8405. height: math.unit(750, "feet"),
  8406. },
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8411. {
  8412. front: {
  8413. height: math.unit(6, "feet"),
  8414. weight: math.unit(150, "lbs"),
  8415. name: "Front",
  8416. image: {
  8417. source: "./media/characters/carley/front.svg",
  8418. extra: 3927 / 3540,
  8419. bottom: 29.2 / 735
  8420. }
  8421. }
  8422. },
  8423. [
  8424. {
  8425. name: "Normal",
  8426. height: math.unit(6 + 3 / 12, "feet")
  8427. },
  8428. {
  8429. name: "Macro",
  8430. height: math.unit(185, "feet"),
  8431. default: true
  8432. },
  8433. {
  8434. name: "Megamacro",
  8435. height: math.unit(8, "miles"),
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(3, "feet"),
  8444. weight: math.unit(28, "lbs"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/citrine/front.svg"
  8448. }
  8449. }
  8450. },
  8451. [
  8452. {
  8453. name: "Normal",
  8454. height: math.unit(3, "feet"),
  8455. default: true
  8456. }
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8461. {
  8462. front: {
  8463. height: math.unit(14, "feet"),
  8464. weight: math.unit(1450, "kg"),
  8465. capacity: math.unit(15, "people"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/aura-starwind/front.svg",
  8469. extra: 1440/1327,
  8470. bottom: 11/1451
  8471. }
  8472. },
  8473. side: {
  8474. height: math.unit(14, "feet"),
  8475. weight: math.unit(1450, "kg"),
  8476. capacity: math.unit(15, "people"),
  8477. name: "Side",
  8478. image: {
  8479. source: "./media/characters/aura-starwind/side.svg",
  8480. extra: 1654 / 1497
  8481. }
  8482. },
  8483. taur: {
  8484. height: math.unit(18, "feet"),
  8485. weight: math.unit(5500, "kg"),
  8486. capacity: math.unit(50, "people"),
  8487. name: "Taur",
  8488. image: {
  8489. source: "./media/characters/aura-starwind/taur.svg",
  8490. extra: 1760 / 1650
  8491. }
  8492. },
  8493. feral: {
  8494. height: math.unit(46, "feet"),
  8495. weight: math.unit(25000, "kg"),
  8496. capacity: math.unit(120, "people"),
  8497. name: "Feral",
  8498. image: {
  8499. source: "./media/characters/aura-starwind/feral.svg"
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(14, "feet"),
  8507. default: true
  8508. },
  8509. {
  8510. name: "Macro",
  8511. height: math.unit(50, "meters")
  8512. },
  8513. {
  8514. name: "Megamacro",
  8515. height: math.unit(5000, "meters")
  8516. },
  8517. {
  8518. name: "Gigamacro",
  8519. height: math.unit(100000, "kilometers")
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(2 + 7 / 12, "feet"),
  8528. weight: math.unit(32, "lbs"),
  8529. name: "Front",
  8530. image: {
  8531. source: "./media/characters/rivet/front.svg",
  8532. extra: 1716 / 1658,
  8533. bottom: 0.03
  8534. }
  8535. },
  8536. foot: {
  8537. height: math.unit(0.551, "feet"),
  8538. name: "Rivet's Foot",
  8539. image: {
  8540. source: "./media/characters/rivet/foot.svg"
  8541. },
  8542. rename: true
  8543. }
  8544. },
  8545. [
  8546. {
  8547. name: "Micro",
  8548. height: math.unit(1.5, "inches"),
  8549. },
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(2 + 7 / 12, "feet"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(85, "feet")
  8558. },
  8559. {
  8560. name: "Megamacro",
  8561. height: math.unit(2.2, "km")
  8562. }
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(5 + 9 / 12, "feet"),
  8570. weight: math.unit(150, "lbs"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/coffee/front.svg",
  8574. extra: 3666 / 3032,
  8575. bottom: 0.04
  8576. }
  8577. },
  8578. foot: {
  8579. height: math.unit(1.29, "feet"),
  8580. name: "Foot",
  8581. image: {
  8582. source: "./media/characters/coffee/foot.svg"
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Micro",
  8589. height: math.unit(2, "inches"),
  8590. },
  8591. {
  8592. name: "Normal",
  8593. height: math.unit(5 + 9 / 12, "feet"),
  8594. default: true
  8595. },
  8596. {
  8597. name: "Macro",
  8598. height: math.unit(800, "feet")
  8599. },
  8600. {
  8601. name: "Megamacro",
  8602. height: math.unit(25, "miles")
  8603. }
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(200, "lbs"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/chari-gal/front.svg",
  8615. extra: 1568 / 1385,
  8616. bottom: 0.047
  8617. }
  8618. },
  8619. gigantamax: {
  8620. height: math.unit(6 * 16, "feet"),
  8621. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8622. name: "Gigantamax",
  8623. image: {
  8624. source: "./media/characters/chari-gal/gigantamax.svg",
  8625. extra: 1124 / 888,
  8626. bottom: 0.03
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(5 + 7 / 12, "feet")
  8634. },
  8635. {
  8636. name: "Macro",
  8637. height: math.unit(200, "feet"),
  8638. default: true
  8639. }
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8644. {
  8645. front: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(150, "lbs"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/nova/front.svg",
  8651. extra: 5000 / 4722,
  8652. bottom: 0.02
  8653. }
  8654. }
  8655. },
  8656. [
  8657. {
  8658. name: "Micro-",
  8659. height: math.unit(0.8, "inches")
  8660. },
  8661. {
  8662. name: "Micro",
  8663. height: math.unit(2, "inches"),
  8664. default: true
  8665. },
  8666. ]
  8667. ))
  8668. characterMakers.push(() => makeCharacter(
  8669. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8670. {
  8671. front: {
  8672. height: math.unit(3 + 1 / 12, "feet"),
  8673. weight: math.unit(21.7, "lbs"),
  8674. name: "Front",
  8675. image: {
  8676. source: "./media/characters/argent/front.svg",
  8677. extra: 1471 / 1331,
  8678. bottom: 100.8 / 1575.5
  8679. }
  8680. }
  8681. },
  8682. [
  8683. {
  8684. name: "Micro",
  8685. height: math.unit(2, "inches")
  8686. },
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(3 + 1 / 12, "feet"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(120, "feet")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8700. {
  8701. lamp: {
  8702. height: math.unit(7 * 1559 / 989, "feet"),
  8703. name: "Magic Lamp",
  8704. image: {
  8705. source: "./media/characters/mira-al-cul/lamp.svg",
  8706. extra: 1617 / 1559
  8707. }
  8708. },
  8709. front: {
  8710. height: math.unit(7, "feet"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/mira-al-cul/front.svg",
  8714. extra: 1044 / 990
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Heavily Restricted",
  8721. height: math.unit(7 * 1559 / 989, "feet")
  8722. },
  8723. {
  8724. name: "Freshly Freed",
  8725. height: math.unit(50 * 1559 / 989, "feet")
  8726. },
  8727. {
  8728. name: "World Encompassing",
  8729. height: math.unit(10000 * 1559 / 989, "miles")
  8730. },
  8731. {
  8732. name: "Galactic",
  8733. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8734. },
  8735. {
  8736. name: "Palmed Universe",
  8737. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8738. default: true
  8739. },
  8740. {
  8741. name: "Multiversal Matriarch",
  8742. height: math.unit(8.87e10, "yottameters")
  8743. },
  8744. {
  8745. name: "Void Mother",
  8746. height: math.unit(3.14e110, "yottaparsecs")
  8747. },
  8748. {
  8749. name: "Toying with Transcendence",
  8750. height: math.unit(1e307, "meters")
  8751. },
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8756. {
  8757. front: {
  8758. height: math.unit(17 + 1 / 12, "feet"),
  8759. weight: math.unit(476.2 * 5, "lbs"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/kuro-shi-uchū/front.svg",
  8763. extra: 2329 / 1835,
  8764. bottom: 0.02
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Micro",
  8771. height: math.unit(2, "inches")
  8772. },
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(12, "meters")
  8776. },
  8777. {
  8778. name: "Planetary",
  8779. height: math.unit(0.00929, "AU"),
  8780. default: true
  8781. },
  8782. {
  8783. name: "Universal",
  8784. height: math.unit(20, "gigaparsecs")
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8790. {
  8791. front: {
  8792. height: math.unit(5 + 2 / 12, "feet"),
  8793. weight: math.unit(120, "lbs"),
  8794. name: "Front",
  8795. image: {
  8796. source: "./media/characters/katherine/front.svg",
  8797. extra: 2075 / 1969
  8798. }
  8799. },
  8800. dress: {
  8801. height: math.unit(5 + 2 / 12, "feet"),
  8802. weight: math.unit(120, "lbs"),
  8803. name: "Dress",
  8804. image: {
  8805. source: "./media/characters/katherine/dress.svg",
  8806. extra: 2258 / 2064
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(1, "inches"),
  8814. default: true
  8815. },
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(5 + 2 / 12, "feet")
  8819. },
  8820. {
  8821. name: "Macro",
  8822. height: math.unit(100, "meters")
  8823. },
  8824. {
  8825. name: "Megamacro",
  8826. height: math.unit(80, "miles")
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8832. {
  8833. front: {
  8834. height: math.unit(7 + 8 / 12, "feet"),
  8835. weight: math.unit(250, "lbs"),
  8836. name: "Front",
  8837. image: {
  8838. source: "./media/characters/yevis/front.svg",
  8839. extra: 1938 / 1755
  8840. }
  8841. }
  8842. },
  8843. [
  8844. {
  8845. name: "Mortal",
  8846. height: math.unit(7 + 8 / 12, "feet")
  8847. },
  8848. {
  8849. name: "Battle",
  8850. height: math.unit(25 + 11 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Wrath",
  8854. height: math.unit(1654 + 11 / 12, "feet")
  8855. },
  8856. {
  8857. name: "Planet Destroyer",
  8858. height: math.unit(12000, "miles")
  8859. },
  8860. {
  8861. name: "Galaxy Conqueror",
  8862. height: math.unit(1.45, "zettameters"),
  8863. default: true
  8864. },
  8865. {
  8866. name: "Universal War",
  8867. height: math.unit(184, "gigaparsecs")
  8868. },
  8869. {
  8870. name: "Eternity War",
  8871. height: math.unit(1.98e55, "yottaparsecs")
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(5 + 8 / 12, "feet"),
  8880. weight: math.unit(63, "kg"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/xavier/front.svg",
  8884. extra: 944 / 883
  8885. }
  8886. },
  8887. frontStretch: {
  8888. height: math.unit(5 + 8 / 12, "feet"),
  8889. weight: math.unit(63, "kg"),
  8890. name: "Stretching",
  8891. image: {
  8892. source: "./media/characters/xavier/front-stretch.svg",
  8893. extra: 962 / 820
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Normal",
  8900. height: math.unit(5 + 8 / 12, "feet")
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(100, "meters"),
  8905. default: true
  8906. },
  8907. {
  8908. name: "McLargeHuge",
  8909. height: math.unit(10, "miles")
  8910. },
  8911. ]
  8912. ))
  8913. characterMakers.push(() => makeCharacter(
  8914. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8915. {
  8916. front: {
  8917. height: math.unit(5 + 5 / 12, "feet"),
  8918. weight: math.unit(150, "lb"),
  8919. name: "Front",
  8920. image: {
  8921. source: "./media/characters/joshii/front.svg",
  8922. extra: 765 / 653,
  8923. bottom: 51 / 816
  8924. }
  8925. },
  8926. foot: {
  8927. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8928. name: "Foot",
  8929. image: {
  8930. source: "./media/characters/joshii/foot.svg"
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(2, "inches"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Normal",
  8942. height: math.unit(5 + 5 / 12, "feet")
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(785, "feet")
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(24.5, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(150, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/goddess-elizabeth/front.svg",
  8963. extra: 1800 / 1525,
  8964. bottom: 0.005
  8965. }
  8966. },
  8967. foot: {
  8968. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8969. name: "Foot",
  8970. image: {
  8971. source: "./media/characters/goddess-elizabeth/foot.svg"
  8972. }
  8973. },
  8974. mouth: {
  8975. height: math.unit(6, "feet"),
  8976. name: "Mouth",
  8977. image: {
  8978. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Micro",
  8985. height: math.unit(12, "feet")
  8986. },
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(80, "miles"),
  8990. default: true
  8991. },
  8992. {
  8993. name: "Macro",
  8994. height: math.unit(15000, "parsecs")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(5 + 9 / 12, "feet"),
  9003. weight: math.unit(144, "lb"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/kara/front.svg"
  9007. }
  9008. },
  9009. feet: {
  9010. height: math.unit(6 / 6.765, "feet"),
  9011. name: "Kara's Feet",
  9012. rename: true,
  9013. image: {
  9014. source: "./media/characters/kara/feet.svg"
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(5 + 9 / 12, "feet")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(174, "feet"),
  9026. default: true
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(18, "feet"),
  9035. weight: math.unit(4050, "lb"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/tyrone/front.svg",
  9039. extra: 2405 / 2270,
  9040. bottom: 182 / 2587
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(18, "feet"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Macro",
  9052. height: math.unit(300, "feet")
  9053. },
  9054. {
  9055. name: "Megamacro",
  9056. height: math.unit(15, "km")
  9057. },
  9058. {
  9059. name: "Gigamacro",
  9060. height: math.unit(500, "km")
  9061. },
  9062. {
  9063. name: "Teramacro",
  9064. height: math.unit(0.5, "gigameters")
  9065. },
  9066. {
  9067. name: "Omnimacro",
  9068. height: math.unit(1e252, "yottauniverse")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(7 + 8 / 12, "feet"),
  9077. weight: math.unit(120, "lb"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/danny/front.svg",
  9081. extra: 1490 / 1350
  9082. }
  9083. },
  9084. back: {
  9085. height: math.unit(7 + 8 / 12, "feet"),
  9086. weight: math.unit(120, "lb"),
  9087. name: "Back",
  9088. image: {
  9089. source: "./media/characters/danny/back.svg",
  9090. extra: 1490 / 1350
  9091. }
  9092. },
  9093. },
  9094. [
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(7 + 8 / 12, "feet"),
  9098. default: true
  9099. },
  9100. ]
  9101. ))
  9102. characterMakers.push(() => makeCharacter(
  9103. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9104. {
  9105. front: {
  9106. height: math.unit(3.5, "inches"),
  9107. weight: math.unit(19, "grams"),
  9108. name: "Front",
  9109. image: {
  9110. source: "./media/characters/mallow/front.svg",
  9111. extra: 471 / 431
  9112. }
  9113. },
  9114. back: {
  9115. height: math.unit(3.5, "inches"),
  9116. weight: math.unit(19, "grams"),
  9117. name: "Back",
  9118. image: {
  9119. source: "./media/characters/mallow/back.svg",
  9120. extra: 471 / 431
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Normal",
  9127. height: math.unit(3.5, "inches"),
  9128. default: true
  9129. },
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9134. {
  9135. front: {
  9136. height: math.unit(9, "feet"),
  9137. weight: math.unit(230, "kg"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/starry-aqua/front.svg"
  9141. }
  9142. },
  9143. back: {
  9144. height: math.unit(9, "feet"),
  9145. weight: math.unit(230, "kg"),
  9146. name: "Back",
  9147. image: {
  9148. source: "./media/characters/starry-aqua/back.svg"
  9149. }
  9150. },
  9151. hand: {
  9152. height: math.unit(9 * 0.1168, "feet"),
  9153. name: "Hand",
  9154. image: {
  9155. source: "./media/characters/starry-aqua/hand.svg"
  9156. }
  9157. },
  9158. foot: {
  9159. height: math.unit(9 * 0.18, "feet"),
  9160. name: "Foot",
  9161. image: {
  9162. source: "./media/characters/starry-aqua/foot.svg"
  9163. }
  9164. }
  9165. },
  9166. [
  9167. {
  9168. name: "Micro",
  9169. height: math.unit(3, "inches")
  9170. },
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(9, "feet")
  9174. },
  9175. {
  9176. name: "Macro",
  9177. height: math.unit(300, "feet"),
  9178. default: true
  9179. },
  9180. {
  9181. name: "Megamacro",
  9182. height: math.unit(3200, "feet")
  9183. }
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(15, "feet"),
  9191. weight: math.unit(5026, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/luka-towers/front.svg",
  9195. extra: 1269/1133,
  9196. bottom: 51/1320
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(15, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Minimacro",
  9208. height: math.unit(25, "feet")
  9209. },
  9210. {
  9211. name: "Macro",
  9212. height: math.unit(320, "feet")
  9213. },
  9214. {
  9215. name: "Megamacro",
  9216. height: math.unit(35000, "feet")
  9217. },
  9218. {
  9219. name: "Gigamacro",
  9220. height: math.unit(4000, "miles")
  9221. },
  9222. {
  9223. name: "Teramacro",
  9224. height: math.unit(15000, "miles")
  9225. },
  9226. ]
  9227. ))
  9228. characterMakers.push(() => makeCharacter(
  9229. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9230. {
  9231. front: {
  9232. height: math.unit(6, "feet"),
  9233. weight: math.unit(150, "lb"),
  9234. name: "Front",
  9235. image: {
  9236. source: "./media/characters/natalie-nightring/front.svg",
  9237. extra: 1,
  9238. bottom: 0.06
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Uh Oh",
  9245. height: math.unit(0.1, "mm")
  9246. },
  9247. {
  9248. name: "Small",
  9249. height: math.unit(3, "inches")
  9250. },
  9251. {
  9252. name: "Human Scale",
  9253. height: math.unit(6, "feet")
  9254. },
  9255. {
  9256. name: "Librarian",
  9257. height: math.unit(50, "feet"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "Immense",
  9262. height: math.unit(200, "miles")
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(6, "feet"),
  9271. weight: math.unit(180, "lbs"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/danni-rosie/front.svg",
  9275. extra: 1260 / 1128,
  9276. bottom: 0.022
  9277. }
  9278. },
  9279. },
  9280. [
  9281. {
  9282. name: "Micro",
  9283. height: math.unit(2, "inches"),
  9284. default: true
  9285. },
  9286. ]
  9287. ))
  9288. characterMakers.push(() => makeCharacter(
  9289. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9290. {
  9291. front: {
  9292. height: math.unit(5 + 9 / 12, "feet"),
  9293. weight: math.unit(220, "lb"),
  9294. name: "Front",
  9295. image: {
  9296. source: "./media/characters/samantha-kruse/front.svg",
  9297. extra: (985 / 935),
  9298. bottom: 0.03
  9299. }
  9300. },
  9301. frontUndressed: {
  9302. height: math.unit(5 + 9 / 12, "feet"),
  9303. weight: math.unit(220, "lb"),
  9304. name: "Front (Undressed)",
  9305. image: {
  9306. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9307. extra: (973 / 923),
  9308. bottom: 0.025
  9309. }
  9310. },
  9311. fat: {
  9312. height: math.unit(5 + 9 / 12, "feet"),
  9313. weight: math.unit(900, "lb"),
  9314. name: "Front (Fat)",
  9315. image: {
  9316. source: "./media/characters/samantha-kruse/fat.svg",
  9317. extra: 2688 / 2561
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(5 + 9 / 12, "feet"),
  9325. default: true
  9326. }
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9331. {
  9332. back: {
  9333. height: math.unit(5 + 4 / 12, "feet"),
  9334. weight: math.unit(4963, "lb"),
  9335. name: "Back",
  9336. image: {
  9337. source: "./media/characters/amelia-rosie/back.svg",
  9338. extra: 1113 / 963,
  9339. bottom: 0.01
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Level 0",
  9346. height: math.unit(5 + 4 / 12, "feet")
  9347. },
  9348. {
  9349. name: "Level 1",
  9350. height: math.unit(164597, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Level 2",
  9355. height: math.unit(956243, "miles")
  9356. },
  9357. {
  9358. name: "Level 3",
  9359. height: math.unit(29421709423, "miles")
  9360. },
  9361. {
  9362. name: "Level 4",
  9363. height: math.unit(154, "lightyears")
  9364. },
  9365. {
  9366. name: "Level 5",
  9367. height: math.unit(4738272, "lightyears")
  9368. },
  9369. {
  9370. name: "Level 6",
  9371. height: math.unit(145787152896, "lightyears")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(5 + 11 / 12, "feet"),
  9380. weight: math.unit(65, "kg"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/rook-kitara/front.svg",
  9384. extra: 1347 / 1274,
  9385. bottom: 0.005
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Totally Unfair",
  9392. height: math.unit(1.8, "mm")
  9393. },
  9394. {
  9395. name: "Lap Rookie",
  9396. height: math.unit(1.4, "feet")
  9397. },
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(5 + 11 / 12, "feet"),
  9401. default: true
  9402. },
  9403. {
  9404. name: "How Did This Happen",
  9405. height: math.unit(80, "miles")
  9406. }
  9407. ]
  9408. ))
  9409. characterMakers.push(() => makeCharacter(
  9410. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9411. {
  9412. front: {
  9413. height: math.unit(7, "feet"),
  9414. weight: math.unit(300, "lb"),
  9415. name: "Front",
  9416. image: {
  9417. source: "./media/characters/pisces/front.svg",
  9418. extra: 2255 / 2115,
  9419. bottom: 0.03
  9420. }
  9421. },
  9422. back: {
  9423. height: math.unit(7, "feet"),
  9424. weight: math.unit(300, "lb"),
  9425. name: "Back",
  9426. image: {
  9427. source: "./media/characters/pisces/back.svg",
  9428. extra: 2146 / 2055,
  9429. bottom: 0.04
  9430. }
  9431. },
  9432. },
  9433. [
  9434. {
  9435. name: "Normal",
  9436. height: math.unit(7, "feet"),
  9437. default: true
  9438. },
  9439. {
  9440. name: "Swimming Pool",
  9441. height: math.unit(12.2, "meters")
  9442. },
  9443. {
  9444. name: "Olympic Swimming Pool",
  9445. height: math.unit(56.3, "meters")
  9446. },
  9447. {
  9448. name: "Lake Superior",
  9449. height: math.unit(93900, "meters")
  9450. },
  9451. {
  9452. name: "Mediterranean Sea",
  9453. height: math.unit(644457, "meters")
  9454. },
  9455. {
  9456. name: "World's Oceans",
  9457. height: math.unit(4567491, "meters")
  9458. },
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9463. {
  9464. front: {
  9465. height: math.unit(2.3, "meters"),
  9466. weight: math.unit(120, "kg"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/zelas/front.svg"
  9470. }
  9471. },
  9472. side: {
  9473. height: math.unit(2.3, "meters"),
  9474. weight: math.unit(120, "kg"),
  9475. name: "Side",
  9476. image: {
  9477. source: "./media/characters/zelas/side.svg"
  9478. }
  9479. },
  9480. back: {
  9481. height: math.unit(2.3, "meters"),
  9482. weight: math.unit(120, "kg"),
  9483. name: "Back",
  9484. image: {
  9485. source: "./media/characters/zelas/back.svg"
  9486. }
  9487. },
  9488. foot: {
  9489. height: math.unit(1.116, "feet"),
  9490. name: "Foot",
  9491. image: {
  9492. source: "./media/characters/zelas/foot.svg"
  9493. }
  9494. },
  9495. },
  9496. [
  9497. {
  9498. name: "Normal",
  9499. height: math.unit(2.3, "meters")
  9500. },
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(30, "meters"),
  9504. default: true
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(1, "inch"),
  9513. weight: math.unit(0.21, "grams"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/talbot/front.svg",
  9517. extra: 594 / 544
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Micro",
  9524. height: math.unit(1, "inch"),
  9525. default: true
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9531. {
  9532. front: {
  9533. height: math.unit(3 + 3 / 12, "feet"),
  9534. weight: math.unit(51.8, "lb"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/fliss/front.svg",
  9538. extra: 840 / 640
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Teeny Tiny",
  9545. height: math.unit(1, "mm")
  9546. },
  9547. {
  9548. name: "Small",
  9549. height: math.unit(1, "inch"),
  9550. default: true
  9551. },
  9552. {
  9553. name: "Standard Sylveon",
  9554. height: math.unit(3 + 3 / 12, "feet")
  9555. },
  9556. {
  9557. name: "Large Nuisance",
  9558. height: math.unit(33, "feet")
  9559. },
  9560. {
  9561. name: "City Filler",
  9562. height: math.unit(3000, "feet")
  9563. },
  9564. {
  9565. name: "New Horizon",
  9566. height: math.unit(6000, "miles")
  9567. },
  9568. ]
  9569. ))
  9570. characterMakers.push(() => makeCharacter(
  9571. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9572. {
  9573. front: {
  9574. height: math.unit(5, "cm"),
  9575. weight: math.unit(1.94, "g"),
  9576. name: "Front",
  9577. image: {
  9578. source: "./media/characters/fleta/front.svg",
  9579. extra: 835 / 803
  9580. }
  9581. },
  9582. back: {
  9583. height: math.unit(5, "cm"),
  9584. weight: math.unit(1.94, "g"),
  9585. name: "Back",
  9586. image: {
  9587. source: "./media/characters/fleta/back.svg",
  9588. extra: 835 / 803
  9589. }
  9590. },
  9591. },
  9592. [
  9593. {
  9594. name: "Micro",
  9595. height: math.unit(5, "cm"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9602. {
  9603. front: {
  9604. height: math.unit(6, "feet"),
  9605. weight: math.unit(225, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/dominic/front.svg",
  9609. extra: 1770 / 1620,
  9610. bottom: 0.025
  9611. }
  9612. },
  9613. back: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(225, "lb"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/dominic/back.svg",
  9619. extra: 1745 / 1620,
  9620. bottom: 0.065
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Nano",
  9627. height: math.unit(0.1, "mm")
  9628. },
  9629. {
  9630. name: "Micro-",
  9631. height: math.unit(1, "mm")
  9632. },
  9633. {
  9634. name: "Micro",
  9635. height: math.unit(4, "inches")
  9636. },
  9637. {
  9638. name: "Normal",
  9639. height: math.unit(6 + 4 / 12, "feet"),
  9640. default: true
  9641. },
  9642. {
  9643. name: "Macro",
  9644. height: math.unit(115, "feet")
  9645. },
  9646. {
  9647. name: "Macro+",
  9648. height: math.unit(955, "feet")
  9649. },
  9650. {
  9651. name: "Megamacro",
  9652. height: math.unit(8990, "feet")
  9653. },
  9654. {
  9655. name: "Gigmacro",
  9656. height: math.unit(9310, "miles")
  9657. },
  9658. {
  9659. name: "Teramacro",
  9660. height: math.unit(1567005010, "miles")
  9661. },
  9662. {
  9663. name: "Examacro",
  9664. height: math.unit(1425, "parsecs")
  9665. },
  9666. ]
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9670. {
  9671. front: {
  9672. height: math.unit(400, "feet"),
  9673. weight: math.unit(44444444, "lb"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/major-colonel/front.svg"
  9677. }
  9678. },
  9679. back: {
  9680. height: math.unit(400, "feet"),
  9681. weight: math.unit(44444444, "lb"),
  9682. name: "Back",
  9683. image: {
  9684. source: "./media/characters/major-colonel/back.svg"
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(400, "feet"),
  9692. default: true
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9698. {
  9699. catFront: {
  9700. height: math.unit(6, "feet"),
  9701. weight: math.unit(120, "lb"),
  9702. name: "Front (Cat Side)",
  9703. image: {
  9704. source: "./media/characters/axel-lycan/cat-front.svg",
  9705. extra: 430 / 402,
  9706. bottom: 43 / 472.35
  9707. }
  9708. },
  9709. catBack: {
  9710. height: math.unit(6, "feet"),
  9711. weight: math.unit(120, "lb"),
  9712. name: "Back (Cat Side)",
  9713. image: {
  9714. source: "./media/characters/axel-lycan/cat-back.svg",
  9715. extra: 447 / 419,
  9716. bottom: 23.3 / 469
  9717. }
  9718. },
  9719. wolfFront: {
  9720. height: math.unit(6, "feet"),
  9721. weight: math.unit(120, "lb"),
  9722. name: "Front (Wolf Side)",
  9723. image: {
  9724. source: "./media/characters/axel-lycan/wolf-front.svg",
  9725. extra: 485 / 456,
  9726. bottom: 19 / 504
  9727. }
  9728. },
  9729. wolfBack: {
  9730. height: math.unit(6, "feet"),
  9731. weight: math.unit(120, "lb"),
  9732. name: "Back (Wolf Side)",
  9733. image: {
  9734. source: "./media/characters/axel-lycan/wolf-back.svg",
  9735. extra: 475 / 438,
  9736. bottom: 39.2 / 514
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Macro",
  9743. height: math.unit(1, "km"),
  9744. default: true
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9750. {
  9751. front: {
  9752. height: math.unit(5 + 9 / 12, "feet"),
  9753. weight: math.unit(175, "lb"),
  9754. name: "Front",
  9755. image: {
  9756. source: "./media/characters/vanrel-hyena/front.svg",
  9757. extra: 1086 / 1010,
  9758. bottom: 0.04
  9759. }
  9760. },
  9761. },
  9762. [
  9763. {
  9764. name: "Normal",
  9765. height: math.unit(5 + 9 / 12, "feet"),
  9766. default: true
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(6, "feet"),
  9775. weight: math.unit(103, "lb"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/abbott-absol/front.svg",
  9779. extra: 2010 / 1842
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Megamicro",
  9786. height: math.unit(0.1, "mm")
  9787. },
  9788. {
  9789. name: "Micro",
  9790. height: math.unit(1, "inch")
  9791. },
  9792. {
  9793. name: "Normal",
  9794. height: math.unit(6, "feet"),
  9795. default: true
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(6, "feet"),
  9804. weight: math.unit(264, "lb"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/hector/front.svg",
  9808. extra: 2280 / 2130,
  9809. bottom: 0.07
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(12.25, "foot"),
  9817. default: true
  9818. },
  9819. {
  9820. name: "Macro",
  9821. height: math.unit(160, "feet")
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9827. {
  9828. front: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(150, "lb"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/sal/front.svg",
  9834. extra: 1846 / 1699,
  9835. bottom: 0.04
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(10, "miles"),
  9843. default: true
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9849. {
  9850. front: {
  9851. height: math.unit(3, "meters"),
  9852. weight: math.unit(450, "kg"),
  9853. name: "front",
  9854. image: {
  9855. source: "./media/characters/ranger/front.svg",
  9856. extra: 2401 / 2243,
  9857. bottom: 0.05
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(3, "meters"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9871. {
  9872. front: {
  9873. height: math.unit(14, "feet"),
  9874. weight: math.unit(800, "kg"),
  9875. name: "Front",
  9876. image: {
  9877. source: "./media/characters/theresa/front.svg",
  9878. extra: 3575 / 3346,
  9879. bottom: 0.03
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(14, "feet"),
  9887. default: true
  9888. },
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9893. {
  9894. front: {
  9895. height: math.unit(6, "feet"),
  9896. weight: math.unit(3, "kg"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/ine/front.svg",
  9900. extra: 678 / 539,
  9901. bottom: 0.023
  9902. }
  9903. },
  9904. },
  9905. [
  9906. {
  9907. name: "Normal",
  9908. height: math.unit(2.265, "feet"),
  9909. default: true
  9910. },
  9911. ]
  9912. ))
  9913. characterMakers.push(() => makeCharacter(
  9914. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9915. {
  9916. front: {
  9917. height: math.unit(5, "feet"),
  9918. weight: math.unit(30, "kg"),
  9919. name: "Front",
  9920. image: {
  9921. source: "./media/characters/vial/front.svg",
  9922. extra: 1365 / 1277,
  9923. bottom: 0.04
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(5, "feet"),
  9931. default: true
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9937. {
  9938. side: {
  9939. height: math.unit(3.4, "meters"),
  9940. weight: math.unit(1000, "lb"),
  9941. name: "Side",
  9942. image: {
  9943. source: "./media/characters/rovoska/side.svg",
  9944. extra: 4403 / 1515
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(3.4, "meters"),
  9952. default: true
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9958. {
  9959. front: {
  9960. height: math.unit(8, "feet"),
  9961. weight: math.unit(315, "lb"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/gunner-rotthbauer/front.svg"
  9965. }
  9966. },
  9967. back: {
  9968. height: math.unit(8, "feet"),
  9969. weight: math.unit(315, "lb"),
  9970. name: "Back",
  9971. image: {
  9972. source: "./media/characters/gunner-rotthbauer/back.svg"
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Micro",
  9979. height: math.unit(3.5, "inches")
  9980. },
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(8, "feet"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Macro",
  9988. height: math.unit(250, "feet")
  9989. },
  9990. {
  9991. name: "Megamacro",
  9992. height: math.unit(1, "AU")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(5 + 5 / 12, "feet"),
  10001. weight: math.unit(140, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/allatia/front.svg",
  10005. extra: 1227 / 1180,
  10006. bottom: 0.027
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(5 + 5 / 12, "feet")
  10014. },
  10015. {
  10016. name: "Macro",
  10017. height: math.unit(250, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Megamacro",
  10022. height: math.unit(8, "miles")
  10023. }
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10028. {
  10029. front: {
  10030. height: math.unit(6, "feet"),
  10031. weight: math.unit(120, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/tene/front.svg",
  10035. extra: 1728 / 1578,
  10036. bottom: 0.022
  10037. }
  10038. },
  10039. stomping: {
  10040. height: math.unit(2.025, "meters"),
  10041. weight: math.unit(120, "lb"),
  10042. name: "Stomping",
  10043. image: {
  10044. source: "./media/characters/tene/stomping.svg",
  10045. extra: 938 / 873,
  10046. bottom: 0.01
  10047. }
  10048. },
  10049. sitting: {
  10050. height: math.unit(1, "meter"),
  10051. weight: math.unit(120, "lb"),
  10052. name: "Sitting",
  10053. image: {
  10054. source: "./media/characters/tene/sitting.svg",
  10055. extra: 437 / 415,
  10056. bottom: 0.1
  10057. }
  10058. },
  10059. feral: {
  10060. height: math.unit(3.9, "feet"),
  10061. weight: math.unit(250, "lb"),
  10062. name: "Feral",
  10063. image: {
  10064. source: "./media/characters/tene/feral.svg",
  10065. extra: 717 / 458,
  10066. bottom: 0.179
  10067. }
  10068. },
  10069. },
  10070. [
  10071. {
  10072. name: "Normal",
  10073. height: math.unit(6, "feet")
  10074. },
  10075. {
  10076. name: "Macro",
  10077. height: math.unit(300, "feet"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(5, "miles")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10088. {
  10089. side: {
  10090. height: math.unit(6, "feet"),
  10091. name: "Side",
  10092. image: {
  10093. source: "./media/characters/evander/side.svg",
  10094. extra: 877 / 477
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(0.83, "meters"),
  10102. default: true
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10108. {
  10109. front: {
  10110. height: math.unit(12, "feet"),
  10111. weight: math.unit(1000, "lb"),
  10112. name: "Front",
  10113. image: {
  10114. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10115. extra: 1762 / 1611
  10116. }
  10117. },
  10118. back: {
  10119. height: math.unit(12, "feet"),
  10120. weight: math.unit(1000, "lb"),
  10121. name: "Back",
  10122. image: {
  10123. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10124. extra: 1762 / 1611
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(12, "feet"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Kaiju",
  10136. height: math.unit(150, "feet")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(6, "feet"),
  10145. weight: math.unit(150, "lb"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/zero-alurus/front.svg"
  10149. }
  10150. },
  10151. back: {
  10152. height: math.unit(6, "feet"),
  10153. weight: math.unit(150, "lb"),
  10154. name: "Back",
  10155. image: {
  10156. source: "./media/characters/zero-alurus/back.svg"
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(5 + 10 / 12, "feet")
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(60, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Macro+",
  10172. height: math.unit(450, "feet")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(200, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/mega-shi/front.svg",
  10185. extra: 1279 / 1250,
  10186. bottom: 0.02
  10187. }
  10188. },
  10189. back: {
  10190. height: math.unit(6, "feet"),
  10191. weight: math.unit(200, "lb"),
  10192. name: "Back",
  10193. image: {
  10194. source: "./media/characters/mega-shi/back.svg",
  10195. extra: 1279 / 1250,
  10196. bottom: 0.02
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Micro",
  10203. height: math.unit(16 + 6 / 12, "feet")
  10204. },
  10205. {
  10206. name: "Third Dimension",
  10207. height: math.unit(40, "meters")
  10208. },
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(660, "feet"),
  10212. default: true
  10213. },
  10214. {
  10215. name: "Megamacro",
  10216. height: math.unit(10, "miles")
  10217. },
  10218. {
  10219. name: "Planetary Launch",
  10220. height: math.unit(500, "miles")
  10221. },
  10222. {
  10223. name: "Interstellar",
  10224. height: math.unit(1e9, "miles")
  10225. },
  10226. {
  10227. name: "Leaving the Universe",
  10228. height: math.unit(1, "gigaparsec")
  10229. },
  10230. {
  10231. name: "Travelling Universes",
  10232. height: math.unit(30e15, "parsecs")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(5 + 4/12, "feet"),
  10241. weight: math.unit(120, "lb"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/odyssey/front.svg",
  10245. extra: 1747/1571,
  10246. bottom: 47/1794
  10247. }
  10248. },
  10249. side: {
  10250. height: math.unit(5.1, "feet"),
  10251. weight: math.unit(120, "lb"),
  10252. name: "Side",
  10253. image: {
  10254. source: "./media/characters/odyssey/side.svg",
  10255. extra: 1847/1619,
  10256. bottom: 47/1894
  10257. }
  10258. },
  10259. lounging: {
  10260. height: math.unit(1.464, "feet"),
  10261. weight: math.unit(120, "lb"),
  10262. name: "Lounging",
  10263. image: {
  10264. source: "./media/characters/odyssey/lounging.svg",
  10265. extra: 1235/837,
  10266. bottom: 551/1786
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(5 + 4 / 12, "feet")
  10274. },
  10275. {
  10276. name: "Macro",
  10277. height: math.unit(1, "km")
  10278. },
  10279. {
  10280. name: "Megamacro",
  10281. height: math.unit(3000, "km")
  10282. },
  10283. {
  10284. name: "Gigamacro",
  10285. height: math.unit(1, "AU"),
  10286. default: true
  10287. },
  10288. {
  10289. name: "Omniversal",
  10290. height: math.unit(100e14, "lightyears")
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10296. {
  10297. front: {
  10298. height: math.unit(6, "feet"),
  10299. weight: math.unit(300, "lb"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/mekuto/front.svg",
  10303. extra: 921 / 832,
  10304. bottom: 0.03
  10305. }
  10306. },
  10307. hand: {
  10308. height: math.unit(6 / 10.24, "feet"),
  10309. name: "Hand",
  10310. image: {
  10311. source: "./media/characters/mekuto/hand.svg"
  10312. }
  10313. },
  10314. foot: {
  10315. height: math.unit(6 / 5.05, "feet"),
  10316. name: "Foot",
  10317. image: {
  10318. source: "./media/characters/mekuto/foot.svg"
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Minimicro",
  10325. height: math.unit(0.2, "inches")
  10326. },
  10327. {
  10328. name: "Micro",
  10329. height: math.unit(1.5, "inches")
  10330. },
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(5 + 11 / 12, "feet"),
  10334. default: true
  10335. },
  10336. {
  10337. name: "Minimacro",
  10338. height: math.unit(17 + 9 / 12, "feet")
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(177.5, "feet")
  10343. },
  10344. {
  10345. name: "Megamacro",
  10346. height: math.unit(152, "miles")
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(6.5, "inches"),
  10355. weight: math.unit(13, "oz"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/dafydd-tomos/front.svg",
  10359. extra: 2990 / 2603,
  10360. bottom: 0.03
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Micro",
  10367. height: math.unit(6.5, "inches"),
  10368. default: true
  10369. },
  10370. ]
  10371. ))
  10372. characterMakers.push(() => makeCharacter(
  10373. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10374. {
  10375. front: {
  10376. height: math.unit(6, "feet"),
  10377. weight: math.unit(150, "lb"),
  10378. name: "Front",
  10379. image: {
  10380. source: "./media/characters/splinter/front.svg",
  10381. extra: 2990 / 2882,
  10382. bottom: 0.04
  10383. }
  10384. },
  10385. back: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(150, "lb"),
  10388. name: "Back",
  10389. image: {
  10390. source: "./media/characters/splinter/back.svg",
  10391. extra: 2990 / 2882,
  10392. bottom: 0.04
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(6, "feet")
  10400. },
  10401. {
  10402. name: "Macro",
  10403. height: math.unit(230, "meters"),
  10404. default: true
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(4 + 10 / 12, "feet"),
  10413. weight: math.unit(480, "lb"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/snow-gabumon/front.svg",
  10417. extra: 1140 / 963,
  10418. bottom: 0.058
  10419. }
  10420. },
  10421. back: {
  10422. height: math.unit(4 + 10 / 12, "feet"),
  10423. weight: math.unit(480, "lb"),
  10424. name: "Back",
  10425. image: {
  10426. source: "./media/characters/snow-gabumon/back.svg",
  10427. extra: 1115 / 962,
  10428. bottom: 0.041
  10429. }
  10430. },
  10431. frontUndresed: {
  10432. height: math.unit(4 + 10 / 12, "feet"),
  10433. weight: math.unit(480, "lb"),
  10434. name: "Front (Undressed)",
  10435. image: {
  10436. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10437. extra: 1061 / 960,
  10438. bottom: 0.045
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Micro",
  10445. height: math.unit(1, "inch")
  10446. },
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(4 + 10 / 12, "feet"),
  10450. default: true
  10451. },
  10452. {
  10453. name: "Macro",
  10454. height: math.unit(200, "feet")
  10455. },
  10456. {
  10457. name: "Megamacro",
  10458. height: math.unit(120, "miles")
  10459. },
  10460. {
  10461. name: "Gigamacro",
  10462. height: math.unit(9800, "miles")
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(1.7, "meters"),
  10471. weight: math.unit(140, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/moody/front.svg",
  10475. extra: 3226 / 3007,
  10476. bottom: 0.087
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Micro",
  10483. height: math.unit(1, "mm")
  10484. },
  10485. {
  10486. name: "Normal",
  10487. height: math.unit(1.7, "meters"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(80, "meters")
  10493. },
  10494. {
  10495. name: "Macro+",
  10496. height: math.unit(500, "meters")
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(150, "lb"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/zyas/front.svg",
  10509. extra: 1180 / 1120,
  10510. bottom: 0.045
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(10, "feet"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(500, "feet")
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(5, "miles")
  10527. },
  10528. {
  10529. name: "Teramacro",
  10530. height: math.unit(150000, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(150, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/cuon/front.svg",
  10543. extra: 1390 / 1320,
  10544. bottom: 0.008
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Micro",
  10551. height: math.unit(3, "inches")
  10552. },
  10553. {
  10554. name: "Normal",
  10555. height: math.unit(18 + 9 / 12, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Macro",
  10560. height: math.unit(360, "feet")
  10561. },
  10562. {
  10563. name: "Megamacro",
  10564. height: math.unit(360, "miles")
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(2.4, "meters"),
  10573. weight: math.unit(70, "kg"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/nyanuxk/front.svg",
  10577. extra: 1172 / 1084,
  10578. bottom: 0.065
  10579. }
  10580. },
  10581. side: {
  10582. height: math.unit(2.4, "meters"),
  10583. weight: math.unit(70, "kg"),
  10584. name: "Side",
  10585. image: {
  10586. source: "./media/characters/nyanuxk/side.svg",
  10587. extra: 1190 / 1132,
  10588. bottom: 0.007
  10589. }
  10590. },
  10591. back: {
  10592. height: math.unit(2.4, "meters"),
  10593. weight: math.unit(70, "kg"),
  10594. name: "Back",
  10595. image: {
  10596. source: "./media/characters/nyanuxk/back.svg",
  10597. extra: 1200 / 1141,
  10598. bottom: 0.015
  10599. }
  10600. },
  10601. foot: {
  10602. height: math.unit(0.52, "meters"),
  10603. name: "Foot",
  10604. image: {
  10605. source: "./media/characters/nyanuxk/foot.svg"
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Micro",
  10612. height: math.unit(2, "cm")
  10613. },
  10614. {
  10615. name: "Normal",
  10616. height: math.unit(2.4, "meters"),
  10617. default: true
  10618. },
  10619. {
  10620. name: "Smaller Macro",
  10621. height: math.unit(120, "meters")
  10622. },
  10623. {
  10624. name: "Bigger Macro",
  10625. height: math.unit(1.2, "km")
  10626. },
  10627. {
  10628. name: "Megamacro",
  10629. height: math.unit(15, "kilometers")
  10630. },
  10631. {
  10632. name: "Gigamacro",
  10633. height: math.unit(2000, "km")
  10634. },
  10635. {
  10636. name: "Teramacro",
  10637. height: math.unit(500000, "km")
  10638. },
  10639. ]
  10640. ))
  10641. characterMakers.push(() => makeCharacter(
  10642. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10643. {
  10644. side: {
  10645. height: math.unit(6, "feet"),
  10646. name: "Side",
  10647. image: {
  10648. source: "./media/characters/ailbhe/side.svg",
  10649. extra: 757 / 464,
  10650. bottom: 0.041
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(1.07, "meters"),
  10658. default: true
  10659. },
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10664. {
  10665. front: {
  10666. height: math.unit(6, "feet"),
  10667. weight: math.unit(120, "kg"),
  10668. name: "Front",
  10669. image: {
  10670. source: "./media/characters/zevulfius/front.svg",
  10671. extra: 965 / 903
  10672. }
  10673. },
  10674. side: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(120, "kg"),
  10677. name: "Side",
  10678. image: {
  10679. source: "./media/characters/zevulfius/side.svg",
  10680. extra: 939 / 900
  10681. }
  10682. },
  10683. back: {
  10684. height: math.unit(6, "feet"),
  10685. weight: math.unit(120, "kg"),
  10686. name: "Back",
  10687. image: {
  10688. source: "./media/characters/zevulfius/back.svg",
  10689. extra: 918 / 854,
  10690. bottom: 0.005
  10691. }
  10692. },
  10693. foot: {
  10694. height: math.unit(6 / 3.72, "feet"),
  10695. name: "Foot",
  10696. image: {
  10697. source: "./media/characters/zevulfius/foot.svg"
  10698. }
  10699. },
  10700. },
  10701. [
  10702. {
  10703. name: "Macro",
  10704. height: math.unit(750, "meters")
  10705. },
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(20, "km"),
  10709. default: true
  10710. },
  10711. {
  10712. name: "Gigamacro",
  10713. height: math.unit(2000, "km")
  10714. },
  10715. {
  10716. name: "Teramacro",
  10717. height: math.unit(250000, "km")
  10718. },
  10719. ]
  10720. ))
  10721. characterMakers.push(() => makeCharacter(
  10722. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10723. {
  10724. front: {
  10725. height: math.unit(100, "feet"),
  10726. weight: math.unit(350, "kg"),
  10727. name: "Front",
  10728. image: {
  10729. source: "./media/characters/rikes/front.svg",
  10730. extra: 1565 / 1483,
  10731. bottom: 0.017
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Macro",
  10738. height: math.unit(100, "feet"),
  10739. default: true
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(8, "feet"),
  10748. weight: math.unit(356, "lb"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/adam-silver-mane/front.svg",
  10752. extra: 1036/937,
  10753. bottom: 63/1099
  10754. }
  10755. },
  10756. side: {
  10757. height: math.unit(8, "feet"),
  10758. weight: math.unit(356, "lb"),
  10759. name: "Side",
  10760. image: {
  10761. source: "./media/characters/adam-silver-mane/side.svg",
  10762. extra: 997/901,
  10763. bottom: 59/1056
  10764. }
  10765. },
  10766. frontNsfw: {
  10767. height: math.unit(8, "feet"),
  10768. weight: math.unit(356, "lb"),
  10769. name: "Front (NSFW)",
  10770. image: {
  10771. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10772. extra: 1036/937,
  10773. bottom: 63/1099
  10774. }
  10775. },
  10776. sideNsfw: {
  10777. height: math.unit(8, "feet"),
  10778. weight: math.unit(356, "lb"),
  10779. name: "Side (NSFW)",
  10780. image: {
  10781. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10782. extra: 997/901,
  10783. bottom: 59/1056
  10784. }
  10785. },
  10786. dick: {
  10787. height: math.unit(2.1, "feet"),
  10788. name: "Dick",
  10789. image: {
  10790. source: "./media/characters/adam-silver-mane/dick.svg"
  10791. }
  10792. },
  10793. taur: {
  10794. height: math.unit(16, "feet"),
  10795. weight: math.unit(1500, "kg"),
  10796. name: "Taur",
  10797. image: {
  10798. source: "./media/characters/adam-silver-mane/taur.svg",
  10799. extra: 1713 / 1571,
  10800. bottom: 0.01
  10801. }
  10802. },
  10803. },
  10804. [
  10805. {
  10806. name: "Normal",
  10807. height: math.unit(8, "feet")
  10808. },
  10809. {
  10810. name: "Minimacro",
  10811. height: math.unit(80, "feet")
  10812. },
  10813. {
  10814. name: "MDA",
  10815. height: math.unit(80, "meters")
  10816. },
  10817. {
  10818. name: "Macro",
  10819. height: math.unit(800, "feet"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Megamacro",
  10824. height: math.unit(8000, "feet")
  10825. },
  10826. {
  10827. name: "Gigamacro",
  10828. height: math.unit(800, "miles")
  10829. },
  10830. {
  10831. name: "Teramacro",
  10832. height: math.unit(80000, "miles")
  10833. },
  10834. {
  10835. name: "Celestial",
  10836. height: math.unit(8e6, "miles")
  10837. },
  10838. {
  10839. name: "Star Dragon",
  10840. height: math.unit(800000, "parsecs")
  10841. },
  10842. {
  10843. name: "Godly",
  10844. height: math.unit(800, "teraparsecs")
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(150, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/ky'owin/front.svg",
  10857. extra: 3888 / 3068,
  10858. bottom: 0.015
  10859. }
  10860. },
  10861. },
  10862. [
  10863. {
  10864. name: "Normal",
  10865. height: math.unit(6 + 8 / 12, "feet")
  10866. },
  10867. {
  10868. name: "Large",
  10869. height: math.unit(68, "feet")
  10870. },
  10871. {
  10872. name: "Macro",
  10873. height: math.unit(132, "feet")
  10874. },
  10875. {
  10876. name: "Macro+",
  10877. height: math.unit(340, "feet")
  10878. },
  10879. {
  10880. name: "Macro++",
  10881. height: math.unit(680, "feet"),
  10882. default: true
  10883. },
  10884. {
  10885. name: "Megamacro",
  10886. height: math.unit(1, "mile")
  10887. },
  10888. {
  10889. name: "Megamacro+",
  10890. height: math.unit(10, "miles")
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(4, "feet"),
  10899. weight: math.unit(50, "lb"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/mal/front.svg",
  10903. extra: 785 / 724,
  10904. bottom: 0.07
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Micro",
  10911. height: math.unit(4, "inches")
  10912. },
  10913. {
  10914. name: "Normal",
  10915. height: math.unit(4, "feet"),
  10916. default: true
  10917. },
  10918. {
  10919. name: "Macro",
  10920. height: math.unit(200, "feet")
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(150, "lb"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/jordan-deware/front.svg",
  10933. extra: 1191 / 1012
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Nano",
  10940. height: math.unit(0.01, "mm")
  10941. },
  10942. {
  10943. name: "Minimicro",
  10944. height: math.unit(1, "mm")
  10945. },
  10946. {
  10947. name: "Micro",
  10948. height: math.unit(0.5, "inches")
  10949. },
  10950. {
  10951. name: "Normal",
  10952. height: math.unit(4, "feet"),
  10953. default: true
  10954. },
  10955. {
  10956. name: "Minimacro",
  10957. height: math.unit(40, "meters")
  10958. },
  10959. {
  10960. name: "Small Macro",
  10961. height: math.unit(400, "meters")
  10962. },
  10963. {
  10964. name: "Macro",
  10965. height: math.unit(4, "miles")
  10966. },
  10967. {
  10968. name: "Megamacro",
  10969. height: math.unit(40, "miles")
  10970. },
  10971. {
  10972. name: "Megamacro+",
  10973. height: math.unit(400, "miles")
  10974. },
  10975. {
  10976. name: "Gigamacro",
  10977. height: math.unit(400000, "miles")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10983. {
  10984. side: {
  10985. height: math.unit(6, "feet"),
  10986. weight: math.unit(150, "lb"),
  10987. name: "Side",
  10988. image: {
  10989. source: "./media/characters/kimiko/side.svg",
  10990. extra: 600 / 358
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(15, "feet"),
  10998. default: true
  10999. },
  11000. {
  11001. name: "Macro",
  11002. height: math.unit(220, "feet")
  11003. },
  11004. {
  11005. name: "Macro+",
  11006. height: math.unit(1450, "feet")
  11007. },
  11008. {
  11009. name: "Megamacro",
  11010. height: math.unit(11500, "feet")
  11011. },
  11012. {
  11013. name: "Gigamacro",
  11014. height: math.unit(9500, "miles")
  11015. },
  11016. {
  11017. name: "Teramacro",
  11018. height: math.unit(2208005005, "miles")
  11019. },
  11020. {
  11021. name: "Examacro",
  11022. height: math.unit(2750, "parsecs")
  11023. },
  11024. {
  11025. name: "Zettamacro",
  11026. height: math.unit(101500, "parsecs")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(70, "kg"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/andrew-sleepy/front.svg"
  11039. }
  11040. },
  11041. side: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(70, "kg"),
  11044. name: "Side",
  11045. image: {
  11046. source: "./media/characters/andrew-sleepy/side.svg"
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Micro",
  11053. height: math.unit(1, "mm"),
  11054. default: true
  11055. },
  11056. ]
  11057. ))
  11058. characterMakers.push(() => makeCharacter(
  11059. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11060. {
  11061. front: {
  11062. height: math.unit(6, "feet"),
  11063. weight: math.unit(150, "lb"),
  11064. name: "Front",
  11065. image: {
  11066. source: "./media/characters/judio/front.svg",
  11067. extra: 1258 / 1110
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(5 + 6 / 12, "feet")
  11075. },
  11076. {
  11077. name: "Macro",
  11078. height: math.unit(1000, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Megamacro",
  11083. height: math.unit(10, "miles")
  11084. },
  11085. ]
  11086. ))
  11087. characterMakers.push(() => makeCharacter(
  11088. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11089. {
  11090. frontDressed: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(68, "kg"),
  11093. name: "Front (Dressed)",
  11094. image: {
  11095. source: "./media/characters/nomaxice/front-dressed.svg",
  11096. extra: 1137/824,
  11097. bottom: 74/1211
  11098. }
  11099. },
  11100. frontShorts: {
  11101. height: math.unit(6, "feet"),
  11102. weight: math.unit(68, "kg"),
  11103. name: "Front (Shorts)",
  11104. image: {
  11105. source: "./media/characters/nomaxice/front-shorts.svg",
  11106. extra: 1137/824,
  11107. bottom: 74/1211
  11108. }
  11109. },
  11110. back: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(68, "kg"),
  11113. name: "Back",
  11114. image: {
  11115. source: "./media/characters/nomaxice/back.svg",
  11116. extra: 822/786,
  11117. bottom: 39/861
  11118. }
  11119. },
  11120. hand: {
  11121. height: math.unit(0.565, "feet"),
  11122. name: "Hand",
  11123. image: {
  11124. source: "./media/characters/nomaxice/hand.svg"
  11125. }
  11126. },
  11127. foot: {
  11128. height: math.unit(1, "feet"),
  11129. name: "Foot",
  11130. image: {
  11131. source: "./media/characters/nomaxice/foot.svg"
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Micro",
  11138. height: math.unit(8, "cm")
  11139. },
  11140. {
  11141. name: "Norm",
  11142. height: math.unit(1.82, "m")
  11143. },
  11144. {
  11145. name: "Norm+",
  11146. height: math.unit(8.8, "feet"),
  11147. default: true
  11148. },
  11149. {
  11150. name: "Big",
  11151. height: math.unit(8, "meters")
  11152. },
  11153. {
  11154. name: "Macro",
  11155. height: math.unit(18, "meters")
  11156. },
  11157. {
  11158. name: "Macro+",
  11159. height: math.unit(88, "meters")
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(12, "feet"),
  11168. weight: math.unit(1.5, "tons"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/dydros/front.svg",
  11172. extra: 863 / 800,
  11173. bottom: 0.015
  11174. }
  11175. },
  11176. back: {
  11177. height: math.unit(12, "feet"),
  11178. weight: math.unit(1.5, "tons"),
  11179. name: "Back",
  11180. image: {
  11181. source: "./media/characters/dydros/back.svg",
  11182. extra: 900 / 843,
  11183. bottom: 0.005
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(12, "feet"),
  11191. default: true
  11192. },
  11193. ]
  11194. ))
  11195. characterMakers.push(() => makeCharacter(
  11196. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11197. {
  11198. front: {
  11199. height: math.unit(6, "feet"),
  11200. weight: math.unit(100, "kg"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/riggi/front.svg",
  11204. extra: 5787 / 5303
  11205. }
  11206. },
  11207. hyper: {
  11208. height: math.unit(6 * 5 / 3, "feet"),
  11209. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11210. name: "Hyper",
  11211. image: {
  11212. source: "./media/characters/riggi/hyper.svg",
  11213. extra: 3595 / 3485
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Small Macro",
  11220. height: math.unit(50, "feet")
  11221. },
  11222. {
  11223. name: "Default",
  11224. height: math.unit(200, "feet"),
  11225. default: true
  11226. },
  11227. {
  11228. name: "Loom",
  11229. height: math.unit(10000, "feet")
  11230. },
  11231. {
  11232. name: "Cruising Altitude",
  11233. height: math.unit(30000, "feet")
  11234. },
  11235. {
  11236. name: "Megamacro",
  11237. height: math.unit(100, "miles")
  11238. },
  11239. {
  11240. name: "Continent Sized",
  11241. height: math.unit(2800, "miles")
  11242. },
  11243. {
  11244. name: "Earth Sized",
  11245. height: math.unit(8000, "miles")
  11246. },
  11247. ]
  11248. ))
  11249. characterMakers.push(() => makeCharacter(
  11250. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11251. {
  11252. front: {
  11253. height: math.unit(6, "feet"),
  11254. weight: math.unit(250, "lb"),
  11255. name: "Front",
  11256. image: {
  11257. source: "./media/characters/alexi/front.svg",
  11258. extra: 3483 / 3291,
  11259. bottom: 0.04
  11260. }
  11261. },
  11262. back: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(250, "lb"),
  11265. name: "Back",
  11266. image: {
  11267. source: "./media/characters/alexi/back.svg",
  11268. extra: 3533 / 3356,
  11269. bottom: 0.021
  11270. }
  11271. },
  11272. frontTransforming: {
  11273. height: math.unit(8.58, "feet"),
  11274. weight: math.unit(1300, "lb"),
  11275. name: "Transforming",
  11276. image: {
  11277. source: "./media/characters/alexi/front-transforming.svg",
  11278. extra: 437 / 409,
  11279. bottom: 19 / 458.66
  11280. }
  11281. },
  11282. frontTransformed: {
  11283. height: math.unit(12.5, "feet"),
  11284. weight: math.unit(4000, "lb"),
  11285. name: "Transformed",
  11286. image: {
  11287. source: "./media/characters/alexi/front-transformed.svg",
  11288. extra: 639 / 614,
  11289. bottom: 30.55 / 671
  11290. }
  11291. },
  11292. },
  11293. [
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(14, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Minimacro",
  11301. height: math.unit(30, "meters")
  11302. },
  11303. {
  11304. name: "Macro",
  11305. height: math.unit(500, "meters")
  11306. },
  11307. {
  11308. name: "Megamacro",
  11309. height: math.unit(9000, "km")
  11310. },
  11311. {
  11312. name: "Teramacro",
  11313. height: math.unit(384000, "km")
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11319. {
  11320. front: {
  11321. height: math.unit(6, "feet"),
  11322. weight: math.unit(150, "lb"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/kayroo/front.svg",
  11326. extra: 1153 / 1038,
  11327. bottom: 0.06
  11328. }
  11329. },
  11330. foot: {
  11331. height: math.unit(6, "feet"),
  11332. weight: math.unit(150, "lb"),
  11333. name: "Foot",
  11334. image: {
  11335. source: "./media/characters/kayroo/foot.svg"
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(8, "feet"),
  11343. default: true
  11344. },
  11345. {
  11346. name: "Minimacro",
  11347. height: math.unit(250, "feet")
  11348. },
  11349. {
  11350. name: "Macro",
  11351. height: math.unit(2800, "feet")
  11352. },
  11353. {
  11354. name: "Megamacro",
  11355. height: math.unit(5200, "feet")
  11356. },
  11357. {
  11358. name: "Gigamacro",
  11359. height: math.unit(27000, "feet")
  11360. },
  11361. {
  11362. name: "Omega",
  11363. height: math.unit(45000, "feet")
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11369. {
  11370. front: {
  11371. height: math.unit(18, "feet"),
  11372. weight: math.unit(5800, "lb"),
  11373. name: "Front",
  11374. image: {
  11375. source: "./media/characters/rhys/front.svg",
  11376. extra: 3386 / 3090,
  11377. bottom: 0.07
  11378. }
  11379. },
  11380. },
  11381. [
  11382. {
  11383. name: "Normal",
  11384. height: math.unit(18, "feet"),
  11385. default: true
  11386. },
  11387. {
  11388. name: "Working Size",
  11389. height: math.unit(200, "feet")
  11390. },
  11391. {
  11392. name: "Demolition Size",
  11393. height: math.unit(2000, "feet")
  11394. },
  11395. {
  11396. name: "Maximum Licensed Size",
  11397. height: math.unit(5, "miles")
  11398. },
  11399. {
  11400. name: "Maximum Observed Size",
  11401. height: math.unit(10, "yottameters")
  11402. },
  11403. ]
  11404. ))
  11405. characterMakers.push(() => makeCharacter(
  11406. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11407. {
  11408. front: {
  11409. height: math.unit(6, "feet"),
  11410. weight: math.unit(250, "lb"),
  11411. name: "Front",
  11412. image: {
  11413. source: "./media/characters/toto/front.svg",
  11414. extra: 527 / 479,
  11415. bottom: 0.05
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Micro",
  11422. height: math.unit(3, "feet")
  11423. },
  11424. {
  11425. name: "Normal",
  11426. height: math.unit(10, "feet")
  11427. },
  11428. {
  11429. name: "Macro",
  11430. height: math.unit(150, "feet"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Megamacro",
  11435. height: math.unit(1200, "feet")
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "King", species: ["lion"], tags: ["anthro"] },
  11441. {
  11442. back: {
  11443. height: math.unit(6, "feet"),
  11444. weight: math.unit(150, "lb"),
  11445. name: "Back",
  11446. image: {
  11447. source: "./media/characters/king/back.svg"
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Micro",
  11454. height: math.unit(2, "inches")
  11455. },
  11456. {
  11457. name: "Normal",
  11458. height: math.unit(8, "feet")
  11459. },
  11460. {
  11461. name: "Macro",
  11462. height: math.unit(200, "feet"),
  11463. default: true
  11464. },
  11465. {
  11466. name: "Megamacro",
  11467. height: math.unit(50, "miles")
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(11, "feet"),
  11476. weight: math.unit(1400, "lb"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/cordite/front.svg",
  11480. extra: 1919/1827,
  11481. bottom: 40/1959
  11482. }
  11483. },
  11484. side: {
  11485. height: math.unit(11, "feet"),
  11486. weight: math.unit(1400, "lb"),
  11487. name: "Side",
  11488. image: {
  11489. source: "./media/characters/cordite/side.svg",
  11490. extra: 1908/1793,
  11491. bottom: 38/1946
  11492. }
  11493. },
  11494. back: {
  11495. height: math.unit(11, "feet"),
  11496. weight: math.unit(1400, "lb"),
  11497. name: "Back",
  11498. image: {
  11499. source: "./media/characters/cordite/back.svg",
  11500. extra: 1938/1837,
  11501. bottom: 10/1948
  11502. }
  11503. },
  11504. feral: {
  11505. height: math.unit(2, "feet"),
  11506. weight: math.unit(90, "lb"),
  11507. name: "Feral",
  11508. image: {
  11509. source: "./media/characters/cordite/feral.svg",
  11510. extra: 1260 / 755,
  11511. bottom: 0.05
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Normal",
  11518. height: math.unit(11, "feet"),
  11519. default: true
  11520. },
  11521. ]
  11522. ))
  11523. characterMakers.push(() => makeCharacter(
  11524. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11525. {
  11526. front: {
  11527. height: math.unit(6, "feet"),
  11528. weight: math.unit(150, "lb"),
  11529. name: "Front",
  11530. image: {
  11531. source: "./media/characters/pianostrong/front.svg",
  11532. extra: 6577 / 6254,
  11533. bottom: 0.02
  11534. }
  11535. },
  11536. side: {
  11537. height: math.unit(6, "feet"),
  11538. weight: math.unit(150, "lb"),
  11539. name: "Side",
  11540. image: {
  11541. source: "./media/characters/pianostrong/side.svg",
  11542. extra: 6106 / 5730
  11543. }
  11544. },
  11545. back: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(150, "lb"),
  11548. name: "Back",
  11549. image: {
  11550. source: "./media/characters/pianostrong/back.svg",
  11551. extra: 6085 / 5733,
  11552. bottom: 0.01
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Macro",
  11559. height: math.unit(100, "feet")
  11560. },
  11561. {
  11562. name: "Macro+",
  11563. height: math.unit(300, "feet"),
  11564. default: true
  11565. },
  11566. {
  11567. name: "Macro++",
  11568. height: math.unit(1000, "feet")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(6, "feet"),
  11577. weight: math.unit(150, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/kona/front.svg",
  11581. extra: 2960 / 2629,
  11582. bottom: 0.005
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(11 + 8 / 12, "feet")
  11590. },
  11591. {
  11592. name: "Macro",
  11593. height: math.unit(850, "feet"),
  11594. default: true
  11595. },
  11596. {
  11597. name: "Macro+",
  11598. height: math.unit(1.5, "km"),
  11599. default: true
  11600. },
  11601. {
  11602. name: "Megamacro",
  11603. height: math.unit(80, "miles")
  11604. },
  11605. {
  11606. name: "Gigamacro",
  11607. height: math.unit(3500, "miles")
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11613. {
  11614. side: {
  11615. height: math.unit(1.9, "meters"),
  11616. weight: math.unit(326, "kg"),
  11617. name: "Side",
  11618. image: {
  11619. source: "./media/characters/levi/side.svg",
  11620. extra: 1704 / 1334,
  11621. bottom: 0.02
  11622. }
  11623. },
  11624. },
  11625. [
  11626. {
  11627. name: "Normal",
  11628. height: math.unit(1.9, "meters"),
  11629. default: true
  11630. },
  11631. {
  11632. name: "Macro",
  11633. height: math.unit(20, "meters")
  11634. },
  11635. {
  11636. name: "Macro+",
  11637. height: math.unit(200, "meters")
  11638. },
  11639. {
  11640. name: "Megamacro",
  11641. height: math.unit(2, "km")
  11642. },
  11643. {
  11644. name: "Megamacro+",
  11645. height: math.unit(20, "km")
  11646. },
  11647. {
  11648. name: "Gigamacro",
  11649. height: math.unit(2500, "km")
  11650. },
  11651. {
  11652. name: "Gigamacro+",
  11653. height: math.unit(120000, "km")
  11654. },
  11655. {
  11656. name: "Teramacro",
  11657. height: math.unit(7.77e6, "km")
  11658. },
  11659. ]
  11660. ))
  11661. characterMakers.push(() => makeCharacter(
  11662. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11663. {
  11664. front: {
  11665. height: math.unit(6 + 4/12, "feet"),
  11666. weight: math.unit(190, "lb"),
  11667. name: "Front",
  11668. image: {
  11669. source: "./media/characters/bmc/front.svg",
  11670. extra: 1626/1472,
  11671. bottom: 79/1705
  11672. }
  11673. },
  11674. back: {
  11675. height: math.unit(6 + 4/12, "feet"),
  11676. weight: math.unit(190, "lb"),
  11677. name: "Back",
  11678. image: {
  11679. source: "./media/characters/bmc/back.svg",
  11680. extra: 1640/1479,
  11681. bottom: 45/1685
  11682. }
  11683. },
  11684. frontArmor: {
  11685. height: math.unit(6 + 4/12, "feet"),
  11686. weight: math.unit(190, "lb"),
  11687. name: "Front-armor",
  11688. image: {
  11689. source: "./media/characters/bmc/front-armor.svg",
  11690. extra: 1538/1468,
  11691. bottom: 79/1617
  11692. }
  11693. },
  11694. },
  11695. [
  11696. {
  11697. name: "Human-sized",
  11698. height: math.unit(6 + 4 / 12, "feet")
  11699. },
  11700. {
  11701. name: "Interactive Size",
  11702. height: math.unit(25, "feet")
  11703. },
  11704. {
  11705. name: "Small",
  11706. height: math.unit(250, "feet")
  11707. },
  11708. {
  11709. name: "Normal",
  11710. height: math.unit(1250, "feet"),
  11711. default: true
  11712. },
  11713. {
  11714. name: "Good Day",
  11715. height: math.unit(88, "miles")
  11716. },
  11717. {
  11718. name: "Largest Measured Size",
  11719. height: math.unit(105.960, "galaxies")
  11720. },
  11721. ]
  11722. ))
  11723. characterMakers.push(() => makeCharacter(
  11724. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11725. {
  11726. front: {
  11727. height: math.unit(20, "feet"),
  11728. weight: math.unit(2016, "kg"),
  11729. name: "Front",
  11730. image: {
  11731. source: "./media/characters/sven-the-kaiju/front.svg",
  11732. extra: 1277/1250,
  11733. bottom: 35/1312
  11734. }
  11735. },
  11736. mouth: {
  11737. height: math.unit(1.85, "feet"),
  11738. name: "Mouth",
  11739. image: {
  11740. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Fairy",
  11747. height: math.unit(6, "inches")
  11748. },
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(20, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Rampage",
  11756. height: math.unit(200, "feet")
  11757. },
  11758. {
  11759. name: "Archfey Forest Guardian",
  11760. height: math.unit(1, "mile")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(4, "meters"),
  11769. weight: math.unit(2, "tons"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/marik/front.svg",
  11773. extra: 1057 / 1003,
  11774. bottom: 0.08
  11775. }
  11776. },
  11777. },
  11778. [
  11779. {
  11780. name: "Normal",
  11781. height: math.unit(4, "meters"),
  11782. default: true
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(20, "meters")
  11787. },
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(50, "km")
  11791. },
  11792. {
  11793. name: "Gigamacro",
  11794. height: math.unit(100, "km")
  11795. },
  11796. {
  11797. name: "Alpha Macro",
  11798. height: math.unit(7.88e7, "yottameters")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(110, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/mel/front.svg",
  11811. extra: 736 / 617,
  11812. bottom: 0.017
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Pico",
  11819. height: math.unit(3, "pm")
  11820. },
  11821. {
  11822. name: "Nano",
  11823. height: math.unit(3, "nm")
  11824. },
  11825. {
  11826. name: "Micro",
  11827. height: math.unit(0.3, "mm"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Micro+",
  11832. height: math.unit(3, "mm")
  11833. },
  11834. {
  11835. name: "Normal",
  11836. height: math.unit(5 + 10.5 / 12, "feet")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11842. {
  11843. kaiju: {
  11844. height: math.unit(1.75, "meters"),
  11845. weight: math.unit(55, "kg"),
  11846. name: "Kaiju",
  11847. image: {
  11848. source: "./media/characters/lykonous/kaiju.svg",
  11849. extra: 1055 / 946,
  11850. bottom: 0.135
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(2.5, "meters"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Kaiju Dragon",
  11862. height: math.unit(60, "meters")
  11863. },
  11864. {
  11865. name: "Mega Kaiju",
  11866. height: math.unit(120, "km")
  11867. },
  11868. {
  11869. name: "Giga Kaiju",
  11870. height: math.unit(200, "megameters")
  11871. },
  11872. {
  11873. name: "Terra Kaiju",
  11874. height: math.unit(400, "gigameters")
  11875. },
  11876. {
  11877. name: "Kaiju Dragon God",
  11878. height: math.unit(13000, "exaparsecs")
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11884. {
  11885. front: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(150, "lb"),
  11888. name: "Front",
  11889. image: {
  11890. source: "./media/characters/blü/front.svg",
  11891. extra: 1883 / 1564,
  11892. bottom: 0.031
  11893. }
  11894. },
  11895. },
  11896. [
  11897. {
  11898. name: "Normal",
  11899. height: math.unit(13, "feet"),
  11900. default: true
  11901. },
  11902. {
  11903. name: "Big Boi",
  11904. height: math.unit(150, "meters")
  11905. },
  11906. {
  11907. name: "Mini Stomper",
  11908. height: math.unit(300, "meters")
  11909. },
  11910. {
  11911. name: "Macro",
  11912. height: math.unit(1000, "meters")
  11913. },
  11914. {
  11915. name: "Megamacro",
  11916. height: math.unit(11000, "meters")
  11917. },
  11918. {
  11919. name: "Gigamacro",
  11920. height: math.unit(11000, "km")
  11921. },
  11922. {
  11923. name: "Teramacro",
  11924. height: math.unit(420000, "km")
  11925. },
  11926. {
  11927. name: "Examacro",
  11928. height: math.unit(120, "parsecs")
  11929. },
  11930. {
  11931. name: "God Tho",
  11932. height: math.unit(98000000000, "parsecs")
  11933. },
  11934. ]
  11935. ))
  11936. characterMakers.push(() => makeCharacter(
  11937. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11938. {
  11939. taurFront: {
  11940. height: math.unit(6, "feet"),
  11941. weight: math.unit(200, "lb"),
  11942. name: "Taur (Front)",
  11943. image: {
  11944. source: "./media/characters/scales/taur-front.svg",
  11945. extra: 1,
  11946. bottom: 0.05
  11947. }
  11948. },
  11949. taurBack: {
  11950. height: math.unit(6, "feet"),
  11951. weight: math.unit(200, "lb"),
  11952. name: "Taur (Back)",
  11953. image: {
  11954. source: "./media/characters/scales/taur-back.svg",
  11955. extra: 1,
  11956. bottom: 0.08
  11957. }
  11958. },
  11959. anthro: {
  11960. height: math.unit(6 * 7 / 12, "feet"),
  11961. weight: math.unit(100, "lb"),
  11962. name: "Anthro",
  11963. image: {
  11964. source: "./media/characters/scales/anthro.svg",
  11965. extra: 1,
  11966. bottom: 0.06
  11967. }
  11968. },
  11969. },
  11970. [
  11971. {
  11972. name: "Normal",
  11973. height: math.unit(12, "feet"),
  11974. default: true
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11980. {
  11981. front: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(150, "lb"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/koragos/front.svg",
  11987. extra: 841 / 794,
  11988. bottom: 0.035
  11989. }
  11990. },
  11991. back: {
  11992. height: math.unit(6, "feet"),
  11993. weight: math.unit(150, "lb"),
  11994. name: "Back",
  11995. image: {
  11996. source: "./media/characters/koragos/back.svg",
  11997. extra: 841 / 810,
  11998. bottom: 0.022
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Normal",
  12005. height: math.unit(6 + 11 / 12, "feet"),
  12006. default: true
  12007. },
  12008. {
  12009. name: "Macro",
  12010. height: math.unit(490, "feet")
  12011. },
  12012. {
  12013. name: "Megamacro",
  12014. height: math.unit(10, "miles")
  12015. },
  12016. {
  12017. name: "Gigamacro",
  12018. height: math.unit(50, "miles")
  12019. },
  12020. ]
  12021. ))
  12022. characterMakers.push(() => makeCharacter(
  12023. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12024. {
  12025. front: {
  12026. height: math.unit(6, "feet"),
  12027. weight: math.unit(250, "lb"),
  12028. name: "Front",
  12029. image: {
  12030. source: "./media/characters/xylrem/front.svg",
  12031. extra: 3323 / 3050,
  12032. bottom: 0.065
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Micro",
  12039. height: math.unit(4, "feet")
  12040. },
  12041. {
  12042. name: "Normal",
  12043. height: math.unit(16, "feet"),
  12044. default: true
  12045. },
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(2720, "feet")
  12049. },
  12050. {
  12051. name: "Megamacro",
  12052. height: math.unit(25000, "miles")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12058. {
  12059. front: {
  12060. height: math.unit(8, "feet"),
  12061. weight: math.unit(250, "kg"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/ikideru/front.svg",
  12065. extra: 930 / 870,
  12066. bottom: 0.087
  12067. }
  12068. },
  12069. back: {
  12070. height: math.unit(8, "feet"),
  12071. weight: math.unit(250, "kg"),
  12072. name: "Back",
  12073. image: {
  12074. source: "./media/characters/ikideru/back.svg",
  12075. extra: 919 / 852,
  12076. bottom: 0.055
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Rare",
  12083. height: math.unit(8, "feet"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Playful Loom",
  12088. height: math.unit(80, "feet")
  12089. },
  12090. {
  12091. name: "City Leaner",
  12092. height: math.unit(230, "feet")
  12093. },
  12094. {
  12095. name: "Megamacro",
  12096. height: math.unit(2500, "feet")
  12097. },
  12098. {
  12099. name: "Gigamacro",
  12100. height: math.unit(26400, "feet")
  12101. },
  12102. {
  12103. name: "Tectonic Shifter",
  12104. height: math.unit(1.7, "megameters")
  12105. },
  12106. {
  12107. name: "Planet Carer",
  12108. height: math.unit(21, "megameters")
  12109. },
  12110. {
  12111. name: "God",
  12112. height: math.unit(11157.22, "parsecs")
  12113. },
  12114. ]
  12115. ))
  12116. characterMakers.push(() => makeCharacter(
  12117. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12118. {
  12119. front: {
  12120. height: math.unit(6, "feet"),
  12121. weight: math.unit(120, "lb"),
  12122. name: "Front",
  12123. image: {
  12124. source: "./media/characters/neo/front.svg"
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Micro",
  12131. height: math.unit(2, "inches"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Human Size",
  12136. height: math.unit(5 + 8 / 12, "feet")
  12137. },
  12138. ]
  12139. ))
  12140. characterMakers.push(() => makeCharacter(
  12141. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12142. {
  12143. front: {
  12144. height: math.unit(13 + 10 / 12, "feet"),
  12145. weight: math.unit(5320, "lb"),
  12146. name: "Front",
  12147. image: {
  12148. source: "./media/characters/chauncey-chantz/front.svg",
  12149. extra: 1587 / 1435,
  12150. bottom: 0.02
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(13 + 10 / 12, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Macro",
  12162. height: math.unit(45, "feet")
  12163. },
  12164. {
  12165. name: "Megamacro",
  12166. height: math.unit(250, "miles")
  12167. },
  12168. {
  12169. name: "Planetary",
  12170. height: math.unit(10000, "miles")
  12171. },
  12172. {
  12173. name: "Galactic",
  12174. height: math.unit(40000, "parsecs")
  12175. },
  12176. {
  12177. name: "Universal",
  12178. height: math.unit(1, "yottameter")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12184. {
  12185. front: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(150, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/epifox/front.svg",
  12191. extra: 1,
  12192. bottom: 0.075
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Micro",
  12199. height: math.unit(6, "inches")
  12200. },
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(12, "feet"),
  12204. default: true
  12205. },
  12206. {
  12207. name: "Macro",
  12208. height: math.unit(3810, "feet")
  12209. },
  12210. {
  12211. name: "Megamacro",
  12212. height: math.unit(500, "miles")
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12218. {
  12219. front: {
  12220. height: math.unit(1.8796, "m"),
  12221. weight: math.unit(230, "lb"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/colin-t/front.svg",
  12225. extra: 1272 / 1193,
  12226. bottom: 0.07
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Micro",
  12233. height: math.unit(0.571, "meters")
  12234. },
  12235. {
  12236. name: "Normal",
  12237. height: math.unit(1.8796, "meters"),
  12238. default: true
  12239. },
  12240. {
  12241. name: "Tall",
  12242. height: math.unit(4, "meters")
  12243. },
  12244. {
  12245. name: "Macro",
  12246. height: math.unit(67.241, "meters")
  12247. },
  12248. {
  12249. name: "Megamacro",
  12250. height: math.unit(371.856, "meters")
  12251. },
  12252. {
  12253. name: "Planetary",
  12254. height: math.unit(12631.5689, "km")
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(1.85, "meters"),
  12263. weight: math.unit(80, "kg"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/matvei/front.svg",
  12267. extra: 614 / 594,
  12268. bottom: 0.01
  12269. }
  12270. },
  12271. },
  12272. [
  12273. {
  12274. name: "Normal",
  12275. height: math.unit(1.85, "meters"),
  12276. default: true
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(5 + 9 / 12, "feet"),
  12285. weight: math.unit(70, "lb"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/quincy/front.svg",
  12289. extra: 3041 / 2751
  12290. }
  12291. },
  12292. back: {
  12293. height: math.unit(5 + 9 / 12, "feet"),
  12294. weight: math.unit(70, "lb"),
  12295. name: "Back",
  12296. image: {
  12297. source: "./media/characters/quincy/back.svg",
  12298. extra: 3041 / 2751
  12299. }
  12300. },
  12301. flying: {
  12302. height: math.unit(5 + 4 / 12, "feet"),
  12303. weight: math.unit(70, "lb"),
  12304. name: "Flying",
  12305. image: {
  12306. source: "./media/characters/quincy/flying.svg",
  12307. extra: 1044 / 930
  12308. }
  12309. },
  12310. },
  12311. [
  12312. {
  12313. name: "Micro",
  12314. height: math.unit(3, "cm")
  12315. },
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(5 + 9 / 12, "feet")
  12319. },
  12320. {
  12321. name: "Macro",
  12322. height: math.unit(200, "meters"),
  12323. default: true
  12324. },
  12325. {
  12326. name: "Megamacro",
  12327. height: math.unit(1000, "meters")
  12328. },
  12329. ]
  12330. ))
  12331. characterMakers.push(() => makeCharacter(
  12332. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12333. {
  12334. front: {
  12335. height: math.unit(3 + 11/12, "feet"),
  12336. weight: math.unit(50, "lb"),
  12337. name: "Front",
  12338. image: {
  12339. source: "./media/characters/vanrel/front.svg",
  12340. extra: 1104/949,
  12341. bottom: 52/1156
  12342. }
  12343. },
  12344. back: {
  12345. height: math.unit(3 + 11/12, "feet"),
  12346. weight: math.unit(50, "lb"),
  12347. name: "Back",
  12348. image: {
  12349. source: "./media/characters/vanrel/back.svg",
  12350. extra: 1119/976,
  12351. bottom: 37/1156
  12352. }
  12353. },
  12354. tome: {
  12355. height: math.unit(1.35, "feet"),
  12356. weight: math.unit(10, "lb"),
  12357. name: "Vanrel's Tome",
  12358. rename: true,
  12359. image: {
  12360. source: "./media/characters/vanrel/tome.svg"
  12361. }
  12362. },
  12363. beans: {
  12364. height: math.unit(0.89, "feet"),
  12365. name: "Beans",
  12366. image: {
  12367. source: "./media/characters/vanrel/beans.svg"
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Normal",
  12374. height: math.unit(3 + 11/12, "feet"),
  12375. default: true
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(7 + 5 / 12, "feet"),
  12384. name: "Front",
  12385. image: {
  12386. source: "./media/characters/kuiper-vanrel/front.svg",
  12387. extra: 1219/1169,
  12388. bottom: 69/1288
  12389. }
  12390. },
  12391. back: {
  12392. height: math.unit(7 + 5 / 12, "feet"),
  12393. name: "Back",
  12394. image: {
  12395. source: "./media/characters/kuiper-vanrel/back.svg",
  12396. extra: 1236/1193,
  12397. bottom: 27/1263
  12398. }
  12399. },
  12400. foot: {
  12401. height: math.unit(0.55, "meters"),
  12402. name: "Foot",
  12403. image: {
  12404. source: "./media/characters/kuiper-vanrel/foot.svg",
  12405. }
  12406. },
  12407. battle: {
  12408. height: math.unit(6.824, "feet"),
  12409. name: "Battle",
  12410. image: {
  12411. source: "./media/characters/kuiper-vanrel/battle.svg",
  12412. extra: 1466 / 1327,
  12413. bottom: 29 / 1492.5
  12414. }
  12415. },
  12416. meerkui: {
  12417. height: math.unit(18, "inches"),
  12418. name: "Meerkui",
  12419. image: {
  12420. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12421. extra: 1354/1289,
  12422. bottom: 69/1423
  12423. }
  12424. },
  12425. },
  12426. [
  12427. {
  12428. name: "Normal",
  12429. height: math.unit(7 + 5 / 12, "feet"),
  12430. default: true
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12436. {
  12437. front: {
  12438. height: math.unit(8 + 5 / 12, "feet"),
  12439. name: "Front",
  12440. image: {
  12441. source: "./media/characters/keset-vanrel/front.svg",
  12442. extra: 1231/1148,
  12443. bottom: 82/1313
  12444. }
  12445. },
  12446. back: {
  12447. height: math.unit(8 + 5 / 12, "feet"),
  12448. name: "Back",
  12449. image: {
  12450. source: "./media/characters/keset-vanrel/back.svg",
  12451. extra: 1240/1174,
  12452. bottom: 33/1273
  12453. }
  12454. },
  12455. hand: {
  12456. height: math.unit(0.6, "meters"),
  12457. name: "Hand",
  12458. image: {
  12459. source: "./media/characters/keset-vanrel/hand.svg"
  12460. }
  12461. },
  12462. foot: {
  12463. height: math.unit(0.94978, "meters"),
  12464. name: "Foot",
  12465. image: {
  12466. source: "./media/characters/keset-vanrel/foot.svg"
  12467. }
  12468. },
  12469. battle: {
  12470. height: math.unit(7.408, "feet"),
  12471. name: "Battle",
  12472. image: {
  12473. source: "./media/characters/keset-vanrel/battle.svg",
  12474. extra: 1890 / 1386,
  12475. bottom: 73.28 / 1970
  12476. }
  12477. },
  12478. },
  12479. [
  12480. {
  12481. name: "Normal",
  12482. height: math.unit(8 + 5 / 12, "feet"),
  12483. default: true
  12484. },
  12485. ]
  12486. ))
  12487. characterMakers.push(() => makeCharacter(
  12488. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12489. {
  12490. front: {
  12491. height: math.unit(6, "feet"),
  12492. weight: math.unit(150, "lb"),
  12493. name: "Front",
  12494. image: {
  12495. source: "./media/characters/neos/front.svg",
  12496. extra: 1696 / 992,
  12497. bottom: 0.14
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(54, "cm"),
  12505. default: true
  12506. },
  12507. {
  12508. name: "Macro",
  12509. height: math.unit(100, "m")
  12510. },
  12511. {
  12512. name: "Megamacro",
  12513. height: math.unit(10, "km")
  12514. },
  12515. {
  12516. name: "Megamacro+",
  12517. height: math.unit(100, "km")
  12518. },
  12519. {
  12520. name: "Gigamacro",
  12521. height: math.unit(100, "Mm")
  12522. },
  12523. {
  12524. name: "Teramacro",
  12525. height: math.unit(100, "Gm")
  12526. },
  12527. {
  12528. name: "Examacro",
  12529. height: math.unit(100, "Em")
  12530. },
  12531. {
  12532. name: "Godly",
  12533. height: math.unit(10000, "Ym")
  12534. },
  12535. {
  12536. name: "Beyond Godly",
  12537. height: math.unit(25, "multiverses")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12543. {
  12544. feminine: {
  12545. height: math.unit(5, "feet"),
  12546. weight: math.unit(100, "lb"),
  12547. name: "Feminine",
  12548. image: {
  12549. source: "./media/characters/sammy-mouse/feminine.svg",
  12550. extra: 2526 / 2425,
  12551. bottom: 0.123
  12552. }
  12553. },
  12554. masculine: {
  12555. height: math.unit(5, "feet"),
  12556. weight: math.unit(100, "lb"),
  12557. name: "Masculine",
  12558. image: {
  12559. source: "./media/characters/sammy-mouse/masculine.svg",
  12560. extra: 2526 / 2425,
  12561. bottom: 0.123
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Micro",
  12568. height: math.unit(5, "inches")
  12569. },
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(5, "feet"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Macro",
  12577. height: math.unit(60, "feet")
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(4, "feet"),
  12586. weight: math.unit(50, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/kole/front.svg",
  12590. extra: 1423 / 1303,
  12591. bottom: 0.025
  12592. }
  12593. },
  12594. back: {
  12595. height: math.unit(4, "feet"),
  12596. weight: math.unit(50, "lb"),
  12597. name: "Back",
  12598. image: {
  12599. source: "./media/characters/kole/back.svg",
  12600. extra: 1426 / 1280,
  12601. bottom: 0.02
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Normal",
  12608. height: math.unit(4, "feet"),
  12609. default: true
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12615. {
  12616. front: {
  12617. height: math.unit(2.5, "feet"),
  12618. weight: math.unit(32, "lb"),
  12619. name: "Front",
  12620. image: {
  12621. source: "./media/characters/rufran/front.svg",
  12622. extra: 1313/885,
  12623. bottom: 94/1407
  12624. }
  12625. },
  12626. side: {
  12627. height: math.unit(2.5, "feet"),
  12628. weight: math.unit(32, "lb"),
  12629. name: "Side",
  12630. image: {
  12631. source: "./media/characters/rufran/side.svg",
  12632. extra: 1109/852,
  12633. bottom: 118/1227
  12634. }
  12635. },
  12636. back: {
  12637. height: math.unit(2.5, "feet"),
  12638. weight: math.unit(32, "lb"),
  12639. name: "Back",
  12640. image: {
  12641. source: "./media/characters/rufran/back.svg",
  12642. extra: 1280/878,
  12643. bottom: 131/1411
  12644. }
  12645. },
  12646. mouth: {
  12647. height: math.unit(1.13, "feet"),
  12648. name: "Mouth",
  12649. image: {
  12650. source: "./media/characters/rufran/mouth.svg"
  12651. }
  12652. },
  12653. foot: {
  12654. height: math.unit(1.33, "feet"),
  12655. name: "Foot",
  12656. image: {
  12657. source: "./media/characters/rufran/foot.svg"
  12658. }
  12659. },
  12660. koboldFront: {
  12661. height: math.unit(2 + 6 / 12, "feet"),
  12662. weight: math.unit(20, "lb"),
  12663. name: "Front (Kobold)",
  12664. image: {
  12665. source: "./media/characters/rufran/kobold-front.svg",
  12666. extra: 2041 / 1839,
  12667. bottom: 0.055
  12668. }
  12669. },
  12670. koboldBack: {
  12671. height: math.unit(2 + 6 / 12, "feet"),
  12672. weight: math.unit(20, "lb"),
  12673. name: "Back (Kobold)",
  12674. image: {
  12675. source: "./media/characters/rufran/kobold-back.svg",
  12676. extra: 2054 / 1839,
  12677. bottom: 0.01
  12678. }
  12679. },
  12680. koboldHand: {
  12681. height: math.unit(0.2166, "meters"),
  12682. name: "Hand (Kobold)",
  12683. image: {
  12684. source: "./media/characters/rufran/kobold-hand.svg"
  12685. }
  12686. },
  12687. koboldFoot: {
  12688. height: math.unit(0.185, "meters"),
  12689. name: "Foot (Kobold)",
  12690. image: {
  12691. source: "./media/characters/rufran/kobold-foot.svg"
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Micro",
  12698. height: math.unit(1, "inch")
  12699. },
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(2 + 6 / 12, "feet"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Big",
  12707. height: math.unit(60, "feet")
  12708. },
  12709. {
  12710. name: "Macro",
  12711. height: math.unit(325, "feet")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(0.3, "meters"),
  12720. weight: math.unit(3.5, "kg"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/chip/front.svg",
  12724. extra: 748 / 674
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Micro",
  12731. height: math.unit(1, "inch"),
  12732. default: true
  12733. },
  12734. ]
  12735. ))
  12736. characterMakers.push(() => makeCharacter(
  12737. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12738. {
  12739. side: {
  12740. height: math.unit(2.3, "meters"),
  12741. weight: math.unit(3500, "lb"),
  12742. name: "Side",
  12743. image: {
  12744. source: "./media/characters/torvid/side.svg",
  12745. extra: 1972 / 722,
  12746. bottom: 0.035
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Normal",
  12753. height: math.unit(2.3, "meters"),
  12754. default: true
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12760. {
  12761. front: {
  12762. height: math.unit(2, "meters"),
  12763. weight: math.unit(150.5, "kg"),
  12764. name: "Front",
  12765. image: {
  12766. source: "./media/characters/susan/front.svg",
  12767. extra: 693 / 635,
  12768. bottom: 0.05
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Megamacro",
  12775. height: math.unit(505, "miles"),
  12776. default: true
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(150, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/raindrops/front.svg",
  12789. extra: 2655 / 2461,
  12790. bottom: 49 / 2705
  12791. }
  12792. },
  12793. back: {
  12794. height: math.unit(6, "feet"),
  12795. weight: math.unit(150, "lb"),
  12796. name: "Back",
  12797. image: {
  12798. source: "./media/characters/raindrops/back.svg",
  12799. extra: 2574 / 2400,
  12800. bottom: 65 / 2634
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Micro",
  12807. height: math.unit(6, "inches")
  12808. },
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(6 + 2 / 12, "feet")
  12812. },
  12813. {
  12814. name: "Macro",
  12815. height: math.unit(131, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(15, "miles")
  12821. },
  12822. {
  12823. name: "Gigamacro",
  12824. height: math.unit(4000, "miles")
  12825. },
  12826. {
  12827. name: "Teramacro",
  12828. height: math.unit(315000, "miles")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(2.794, "meters"),
  12837. weight: math.unit(325, "kg"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/tezwa/front.svg",
  12841. extra: 2083 / 1906,
  12842. bottom: 0.031
  12843. }
  12844. },
  12845. foot: {
  12846. height: math.unit(0.687, "meters"),
  12847. name: "Foot",
  12848. image: {
  12849. source: "./media/characters/tezwa/foot.svg"
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(9 + 2 / 12, "feet"),
  12857. default: true
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(58, "feet"),
  12866. weight: math.unit(89000, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/typhus/front.svg",
  12870. extra: 816 / 800,
  12871. bottom: 0.065
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Macro",
  12878. height: math.unit(58, "feet"),
  12879. default: true
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(12, "feet"),
  12888. weight: math.unit(6, "tonnes"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/lyra-von-wulf/front.svg",
  12892. extra: 1,
  12893. bottom: 0.10
  12894. }
  12895. },
  12896. frontMecha: {
  12897. height: math.unit(12, "feet"),
  12898. weight: math.unit(12, "tonnes"),
  12899. name: "Front (Mecha)",
  12900. image: {
  12901. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12902. extra: 1,
  12903. bottom: 0.042
  12904. }
  12905. },
  12906. maw: {
  12907. height: math.unit(2.2, "feet"),
  12908. name: "Maw",
  12909. image: {
  12910. source: "./media/characters/lyra-von-wulf/maw.svg"
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(12, "feet"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Classic",
  12922. height: math.unit(50, "feet")
  12923. },
  12924. {
  12925. name: "Macro",
  12926. height: math.unit(500, "feet")
  12927. },
  12928. {
  12929. name: "Megamacro",
  12930. height: math.unit(1, "mile")
  12931. },
  12932. {
  12933. name: "Gigamacro",
  12934. height: math.unit(400, "miles")
  12935. },
  12936. {
  12937. name: "Teramacro",
  12938. height: math.unit(22000, "miles")
  12939. },
  12940. {
  12941. name: "Solarmacro",
  12942. height: math.unit(8600000, "miles")
  12943. },
  12944. {
  12945. name: "Galactic",
  12946. height: math.unit(1057000, "lightyears")
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(6 + 10 / 12, "feet"),
  12955. weight: math.unit(150, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/dixon/front.svg",
  12959. extra: 3361 / 3209,
  12960. bottom: 0.01
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Normal",
  12967. height: math.unit(6 + 10 / 12, "feet"),
  12968. default: true
  12969. },
  12970. {
  12971. name: "Big",
  12972. height: math.unit(12, "meters")
  12973. },
  12974. {
  12975. name: "Macro",
  12976. height: math.unit(500, "meters")
  12977. },
  12978. {
  12979. name: "Megamacro",
  12980. height: math.unit(2, "km")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(185, "cm"),
  12989. weight: math.unit(68, "kg"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/kauko/front.svg",
  12993. extra: 1455 / 1421,
  12994. bottom: 0.03
  12995. }
  12996. },
  12997. back: {
  12998. height: math.unit(185, "cm"),
  12999. weight: math.unit(68, "kg"),
  13000. name: "Back",
  13001. image: {
  13002. source: "./media/characters/kauko/back.svg",
  13003. extra: 1455 / 1421,
  13004. bottom: 0.004
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Normal",
  13011. height: math.unit(185, "cm"),
  13012. default: true
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(6, "feet"),
  13021. weight: math.unit(150, "kg"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/varg/front.svg",
  13025. extra: 1108 / 1018,
  13026. bottom: 0.0375
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(5, "meters")
  13034. },
  13035. {
  13036. name: "Macro",
  13037. height: math.unit(200, "meters")
  13038. },
  13039. {
  13040. name: "Megamacro",
  13041. height: math.unit(20, "kilometers")
  13042. },
  13043. {
  13044. name: "True Size",
  13045. height: math.unit(211, "km"),
  13046. default: true
  13047. },
  13048. {
  13049. name: "Gigamacro",
  13050. height: math.unit(1000, "km")
  13051. },
  13052. {
  13053. name: "Gigamacro+",
  13054. height: math.unit(8000, "km")
  13055. },
  13056. {
  13057. name: "Teramacro",
  13058. height: math.unit(1000000, "km")
  13059. },
  13060. ]
  13061. ))
  13062. characterMakers.push(() => makeCharacter(
  13063. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13064. {
  13065. front: {
  13066. height: math.unit(7 + 7 / 12, "feet"),
  13067. weight: math.unit(267, "lb"),
  13068. name: "Front",
  13069. image: {
  13070. source: "./media/characters/dayza/front.svg",
  13071. extra: 1262 / 1200,
  13072. bottom: 0.035
  13073. }
  13074. },
  13075. side: {
  13076. height: math.unit(7 + 7 / 12, "feet"),
  13077. weight: math.unit(267, "lb"),
  13078. name: "Side",
  13079. image: {
  13080. source: "./media/characters/dayza/side.svg",
  13081. extra: 1295 / 1245,
  13082. bottom: 0.05
  13083. }
  13084. },
  13085. back: {
  13086. height: math.unit(7 + 7 / 12, "feet"),
  13087. weight: math.unit(267, "lb"),
  13088. name: "Back",
  13089. image: {
  13090. source: "./media/characters/dayza/back.svg",
  13091. extra: 1241 / 1170
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Normal",
  13098. height: math.unit(7 + 7 / 12, "feet"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(155, "feet")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6 + 5 / 12, "feet"),
  13112. weight: math.unit(160, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/xanthos/front.svg",
  13116. extra: 1,
  13117. bottom: 0.04
  13118. }
  13119. },
  13120. back: {
  13121. height: math.unit(6 + 5 / 12, "feet"),
  13122. weight: math.unit(160, "lb"),
  13123. name: "Back",
  13124. image: {
  13125. source: "./media/characters/xanthos/back.svg",
  13126. extra: 1,
  13127. bottom: 0.03
  13128. }
  13129. },
  13130. hand: {
  13131. height: math.unit(0.928, "feet"),
  13132. name: "Hand",
  13133. image: {
  13134. source: "./media/characters/xanthos/hand.svg"
  13135. }
  13136. },
  13137. foot: {
  13138. height: math.unit(1.286, "feet"),
  13139. name: "Foot",
  13140. image: {
  13141. source: "./media/characters/xanthos/foot.svg"
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Normal",
  13148. height: math.unit(6 + 5 / 12, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Normal+",
  13153. height: math.unit(6, "meters")
  13154. },
  13155. {
  13156. name: "Macro",
  13157. height: math.unit(40, "feet")
  13158. },
  13159. {
  13160. name: "Macro+",
  13161. height: math.unit(200, "meters")
  13162. },
  13163. {
  13164. name: "Megamacro",
  13165. height: math.unit(20, "km")
  13166. },
  13167. {
  13168. name: "Megamacro+",
  13169. height: math.unit(100, "km")
  13170. },
  13171. {
  13172. name: "Gigamacro",
  13173. height: math.unit(200, "megameters")
  13174. },
  13175. {
  13176. name: "Gigamacro+",
  13177. height: math.unit(1.5, "gigameters")
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(6 + 3 / 12, "feet"),
  13186. weight: math.unit(215, "lb"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/grynn/front.svg",
  13190. extra: 4627 / 4209,
  13191. bottom: 0.047
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Micro",
  13198. height: math.unit(6, "inches")
  13199. },
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(6 + 3 / 12, "feet"),
  13203. default: true
  13204. },
  13205. {
  13206. name: "Big",
  13207. height: math.unit(104, "feet")
  13208. },
  13209. {
  13210. name: "Macro",
  13211. height: math.unit(944, "feet")
  13212. },
  13213. {
  13214. name: "Macro+",
  13215. height: math.unit(9480, "feet")
  13216. },
  13217. {
  13218. name: "Megamacro",
  13219. height: math.unit(78752, "feet")
  13220. },
  13221. {
  13222. name: "Megamacro+",
  13223. height: math.unit(630128, "feet")
  13224. },
  13225. {
  13226. name: "Megamacro++",
  13227. height: math.unit(3150695, "feet")
  13228. },
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13233. {
  13234. front: {
  13235. height: math.unit(7 + 5 / 12, "feet"),
  13236. weight: math.unit(450, "lb"),
  13237. name: "Front",
  13238. image: {
  13239. source: "./media/characters/mocha-aura/front.svg",
  13240. extra: 1907 / 1817,
  13241. bottom: 0.04
  13242. }
  13243. },
  13244. back: {
  13245. height: math.unit(7 + 5 / 12, "feet"),
  13246. weight: math.unit(450, "lb"),
  13247. name: "Back",
  13248. image: {
  13249. source: "./media/characters/mocha-aura/back.svg",
  13250. extra: 1900 / 1825,
  13251. bottom: 0.045
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Nano",
  13258. height: math.unit(1, "nm")
  13259. },
  13260. {
  13261. name: "Megamicro",
  13262. height: math.unit(1, "mm")
  13263. },
  13264. {
  13265. name: "Micro",
  13266. height: math.unit(3, "inches")
  13267. },
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(7 + 5 / 12, "feet"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(30, "feet")
  13276. },
  13277. {
  13278. name: "Megamacro",
  13279. height: math.unit(3500, "feet")
  13280. },
  13281. {
  13282. name: "Teramacro",
  13283. height: math.unit(500000, "miles")
  13284. },
  13285. {
  13286. name: "Petamacro",
  13287. height: math.unit(50000000000000000, "parsecs")
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6, "feet"),
  13296. weight: math.unit(150, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/ilisha-devya/front.svg",
  13300. extra: 1053/1049,
  13301. bottom: 270/1323
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(150, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/ilisha-devya/back.svg",
  13310. extra: 1131/1128,
  13311. bottom: 39/1170
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Macro",
  13318. height: math.unit(500, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Megamacro",
  13323. height: math.unit(10, "miles")
  13324. },
  13325. {
  13326. name: "Gigamacro",
  13327. height: math.unit(100000, "miles")
  13328. },
  13329. {
  13330. name: "Examacro",
  13331. height: math.unit(1e9, "lightyears")
  13332. },
  13333. {
  13334. name: "Omniversal",
  13335. height: math.unit(1e33, "lightyears")
  13336. },
  13337. {
  13338. name: "Beyond Infinite",
  13339. height: math.unit(1e100, "lightyears")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13345. {
  13346. Side: {
  13347. height: math.unit(6, "feet"),
  13348. weight: math.unit(150, "lb"),
  13349. name: "Side",
  13350. image: {
  13351. source: "./media/characters/mira/side.svg",
  13352. extra: 900 / 799,
  13353. bottom: 0.02
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Human Size",
  13360. height: math.unit(6, "feet")
  13361. },
  13362. {
  13363. name: "Macro",
  13364. height: math.unit(100, "feet"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(10, "miles")
  13370. },
  13371. {
  13372. name: "Gigamacro",
  13373. height: math.unit(25000, "miles")
  13374. },
  13375. {
  13376. name: "Teramacro",
  13377. height: math.unit(300, "AU")
  13378. },
  13379. {
  13380. name: "Full Size",
  13381. height: math.unit(4.5e10, "lightyears")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Holly", species: ["hyena"], 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/holly/front.svg",
  13394. extra: 639 / 606
  13395. }
  13396. },
  13397. back: {
  13398. height: math.unit(6, "feet"),
  13399. weight: math.unit(150, "lb"),
  13400. name: "Back",
  13401. image: {
  13402. source: "./media/characters/holly/back.svg",
  13403. extra: 623 / 598
  13404. }
  13405. },
  13406. frontWorking: {
  13407. height: math.unit(6, "feet"),
  13408. weight: math.unit(150, "lb"),
  13409. name: "Front (Working)",
  13410. image: {
  13411. source: "./media/characters/holly/front-working.svg",
  13412. extra: 607 / 577,
  13413. bottom: 0.048
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(12 + 3 / 12, "feet"),
  13421. default: true
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/porter/front.svg",
  13434. extra: 1,
  13435. bottom: 0.01
  13436. }
  13437. },
  13438. frontRobes: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front (Robes)",
  13442. image: {
  13443. source: "./media/characters/porter/front-robes.svg",
  13444. extra: 1.01,
  13445. bottom: 0.01
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(11 + 9 / 12, "feet"),
  13453. default: true
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13459. {
  13460. legendary: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "lb"),
  13463. name: "Legendary",
  13464. image: {
  13465. source: "./media/characters/lucy/legendary.svg",
  13466. extra: 1355 / 1100,
  13467. bottom: 0.045
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Legendary",
  13474. height: math.unit(86882 * 2, "miles"),
  13475. default: true
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Drusilla", species: ["grizzly-bear", "fox"], 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/drusilla/front.svg",
  13488. extra: 678 / 635,
  13489. bottom: 0.03
  13490. }
  13491. },
  13492. back: {
  13493. height: math.unit(6, "feet"),
  13494. weight: math.unit(150, "lb"),
  13495. name: "Back",
  13496. image: {
  13497. source: "./media/characters/drusilla/back.svg",
  13498. extra: 678 / 635,
  13499. bottom: 0.005
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(100, "feet")
  13507. },
  13508. {
  13509. name: "Canon Height",
  13510. height: math.unit(2000, "feet"),
  13511. default: true
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13517. {
  13518. front: {
  13519. height: math.unit(6, "feet"),
  13520. weight: math.unit(180, "lb"),
  13521. name: "Front",
  13522. image: {
  13523. source: "./media/characters/renard-thatch/front.svg",
  13524. extra: 2411 / 2275,
  13525. bottom: 0.01
  13526. }
  13527. },
  13528. frontPosing: {
  13529. height: math.unit(6, "feet"),
  13530. weight: math.unit(180, "lb"),
  13531. name: "Front (Posing)",
  13532. image: {
  13533. source: "./media/characters/renard-thatch/front-posing.svg",
  13534. extra: 2381 / 2261,
  13535. bottom: 0.01
  13536. }
  13537. },
  13538. back: {
  13539. height: math.unit(6, "feet"),
  13540. weight: math.unit(180, "lb"),
  13541. name: "Back",
  13542. image: {
  13543. source: "./media/characters/renard-thatch/back.svg",
  13544. extra: 2428 / 2288
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Micro",
  13551. height: math.unit(3, "inches")
  13552. },
  13553. {
  13554. name: "Default",
  13555. height: math.unit(6, "feet"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(75, "feet")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(1450, "feet"),
  13569. weight: math.unit(1.21e6, "tons"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/sekvra/front.svg",
  13573. extra: 1193/1190,
  13574. bottom: 78/1271
  13575. }
  13576. },
  13577. side: {
  13578. height: math.unit(1450, "feet"),
  13579. weight: math.unit(1.21e6, "tons"),
  13580. name: "Side",
  13581. image: {
  13582. source: "./media/characters/sekvra/side.svg",
  13583. extra: 1193/1190,
  13584. bottom: 52/1245
  13585. }
  13586. },
  13587. back: {
  13588. height: math.unit(1450, "feet"),
  13589. weight: math.unit(1.21e6, "tons"),
  13590. name: "Back",
  13591. image: {
  13592. source: "./media/characters/sekvra/back.svg",
  13593. extra: 1219/1216,
  13594. bottom: 21/1240
  13595. }
  13596. },
  13597. frontClothed: {
  13598. height: math.unit(1450, "feet"),
  13599. weight: math.unit(1.21e6, "tons"),
  13600. name: "Front (Clothed)",
  13601. image: {
  13602. source: "./media/characters/sekvra/front-clothed.svg",
  13603. extra: 1192/1189,
  13604. bottom: 79/1271
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Macro",
  13611. height: math.unit(1450, "feet"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Megamacro",
  13616. height: math.unit(15000, "feet")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/carmine/front.svg",
  13629. extra: 1,
  13630. bottom: 0.035
  13631. }
  13632. },
  13633. frontArmor: {
  13634. height: math.unit(6, "feet"),
  13635. weight: math.unit(150, "lb"),
  13636. name: "Front (Armor)",
  13637. image: {
  13638. source: "./media/characters/carmine/front-armor.svg",
  13639. extra: 1,
  13640. bottom: 0.035
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Large",
  13647. height: math.unit(1, "mile")
  13648. },
  13649. {
  13650. name: "Huge",
  13651. height: math.unit(40, "miles"),
  13652. default: true
  13653. },
  13654. {
  13655. name: "Colossal",
  13656. height: math.unit(2500, "miles")
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13662. {
  13663. front: {
  13664. height: math.unit(6, "feet"),
  13665. weight: math.unit(150, "lb"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/elyssia/front.svg",
  13669. extra: 2201 / 2035,
  13670. bottom: 0.05
  13671. }
  13672. },
  13673. frontClothed: {
  13674. height: math.unit(6, "feet"),
  13675. weight: math.unit(150, "lb"),
  13676. name: "Front (Clothed)",
  13677. image: {
  13678. source: "./media/characters/elyssia/front-clothed.svg",
  13679. extra: 2201 / 2035,
  13680. bottom: 0.05
  13681. }
  13682. },
  13683. back: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(150, "lb"),
  13686. name: "Back",
  13687. image: {
  13688. source: "./media/characters/elyssia/back.svg",
  13689. extra: 2201 / 2035,
  13690. bottom: 0.013
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Smaller",
  13697. height: math.unit(150, "feet")
  13698. },
  13699. {
  13700. name: "Standard",
  13701. height: math.unit(1400, "feet"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Distracted",
  13706. height: math.unit(15000, "feet")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(7 + 4/12, "feet"),
  13715. weight: math.unit(690, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/geno-maxwell/front.svg",
  13719. extra: 984/856,
  13720. bottom: 87/1071
  13721. }
  13722. },
  13723. back: {
  13724. height: math.unit(7 + 4/12, "feet"),
  13725. weight: math.unit(690, "lb"),
  13726. name: "Back",
  13727. image: {
  13728. source: "./media/characters/geno-maxwell/back.svg",
  13729. extra: 981/854,
  13730. bottom: 57/1038
  13731. }
  13732. },
  13733. frontCostume: {
  13734. height: math.unit(7 + 4/12, "feet"),
  13735. weight: math.unit(690, "lb"),
  13736. name: "Front (Costume)",
  13737. image: {
  13738. source: "./media/characters/geno-maxwell/front-costume.svg",
  13739. extra: 984/856,
  13740. bottom: 87/1071
  13741. }
  13742. },
  13743. backcostume: {
  13744. height: math.unit(7 + 4/12, "feet"),
  13745. weight: math.unit(690, "lb"),
  13746. name: "Back (Costume)",
  13747. image: {
  13748. source: "./media/characters/geno-maxwell/back-costume.svg",
  13749. extra: 981/854,
  13750. bottom: 57/1038
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Micro",
  13757. height: math.unit(3, "inches")
  13758. },
  13759. {
  13760. name: "Normal",
  13761. height: math.unit(7 + 4 / 12, "feet"),
  13762. default: true
  13763. },
  13764. {
  13765. name: "Macro",
  13766. height: math.unit(220, "feet")
  13767. },
  13768. {
  13769. name: "Megamacro",
  13770. height: math.unit(11, "miles")
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13776. {
  13777. front: {
  13778. height: math.unit(7 + 4/12, "feet"),
  13779. weight: math.unit(750, "lb"),
  13780. name: "Front",
  13781. image: {
  13782. source: "./media/characters/regena-maxwell/front.svg",
  13783. extra: 984/856,
  13784. bottom: 87/1071
  13785. }
  13786. },
  13787. back: {
  13788. height: math.unit(7 + 4/12, "feet"),
  13789. weight: math.unit(750, "lb"),
  13790. name: "Back",
  13791. image: {
  13792. source: "./media/characters/regena-maxwell/back.svg",
  13793. extra: 981/854,
  13794. bottom: 57/1038
  13795. }
  13796. },
  13797. frontCostume: {
  13798. height: math.unit(7 + 4/12, "feet"),
  13799. weight: math.unit(750, "lb"),
  13800. name: "Front (Costume)",
  13801. image: {
  13802. source: "./media/characters/regena-maxwell/front-costume.svg",
  13803. extra: 984/856,
  13804. bottom: 87/1071
  13805. }
  13806. },
  13807. backcostume: {
  13808. height: math.unit(7 + 4/12, "feet"),
  13809. weight: math.unit(750, "lb"),
  13810. name: "Back (Costume)",
  13811. image: {
  13812. source: "./media/characters/regena-maxwell/back-costume.svg",
  13813. extra: 981/854,
  13814. bottom: 57/1038
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Normal",
  13821. height: math.unit(7 + 4 / 12, "feet"),
  13822. default: true
  13823. },
  13824. {
  13825. name: "Macro",
  13826. height: math.unit(220, "feet")
  13827. },
  13828. {
  13829. name: "Megamacro",
  13830. height: math.unit(11, "miles")
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(150, "lb"),
  13840. name: "Front",
  13841. image: {
  13842. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13843. extra: 860 / 690,
  13844. bottom: 0.03
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Normal",
  13851. height: math.unit(1.7, "meters"),
  13852. default: true
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/quilly/front.svg",
  13865. extra: 890 / 776
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Gigamacro",
  13872. height: math.unit(404090, "miles"),
  13873. default: true
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(7 + 8 / 12, "feet"),
  13882. weight: math.unit(350, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/tempest/front.svg",
  13886. extra: 1175 / 1086,
  13887. bottom: 0.02
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(7 + 8 / 12, "feet"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13901. {
  13902. side: {
  13903. height: math.unit(4 + 5 / 12, "feet"),
  13904. weight: math.unit(80, "lb"),
  13905. name: "Side",
  13906. image: {
  13907. source: "./media/characters/rodger/side.svg",
  13908. extra: 1235 / 1118
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Micro",
  13915. height: math.unit(1, "inch")
  13916. },
  13917. {
  13918. name: "Normal",
  13919. height: math.unit(4 + 5 / 12, "feet"),
  13920. default: true
  13921. },
  13922. {
  13923. name: "Macro",
  13924. height: math.unit(120, "feet")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Danyel", species: ["dragon"], 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/danyel/front.svg",
  13937. extra: 1185 / 1123,
  13938. bottom: 0.05
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Shrunken",
  13945. height: math.unit(0.5, "mm")
  13946. },
  13947. {
  13948. name: "Micro",
  13949. height: math.unit(1, "mm"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Upsized",
  13954. height: math.unit(5 + 5 / 12, "feet")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(5 + 6 / 12, "feet"),
  13963. weight: math.unit(200, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/vivian-bijoux/front.svg",
  13967. extra: 1217/1209,
  13968. bottom: 76/1293
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(5 + 6 / 12, "feet"),
  13973. weight: math.unit(200, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/vivian-bijoux/back.svg",
  13977. extra: 1214/1208,
  13978. bottom: 51/1265
  13979. }
  13980. },
  13981. dressed: {
  13982. height: math.unit(5 + 6 / 12, "feet"),
  13983. weight: math.unit(200, "lb"),
  13984. name: "Dressed",
  13985. image: {
  13986. source: "./media/characters/vivian-bijoux/dressed.svg",
  13987. extra: 1217/1209,
  13988. bottom: 76/1293
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(5 + 6 / 12, "feet"),
  13996. default: true
  13997. },
  13998. {
  13999. name: "Bad Dream",
  14000. height: math.unit(500, "feet")
  14001. },
  14002. {
  14003. name: "Nightmare",
  14004. height: math.unit(500, "miles")
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(6 + 1 / 12, "feet"),
  14013. weight: math.unit(260, "lb"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/zeta/front.svg",
  14017. extra: 1968 / 1889,
  14018. bottom: 0.06
  14019. }
  14020. },
  14021. back: {
  14022. height: math.unit(6 + 1 / 12, "feet"),
  14023. weight: math.unit(260, "lb"),
  14024. name: "Back",
  14025. image: {
  14026. source: "./media/characters/zeta/back.svg",
  14027. extra: 1944 / 1858,
  14028. bottom: 0.03
  14029. }
  14030. },
  14031. hand: {
  14032. height: math.unit(1.112, "feet"),
  14033. name: "Hand",
  14034. image: {
  14035. source: "./media/characters/zeta/hand.svg"
  14036. }
  14037. },
  14038. foot: {
  14039. height: math.unit(1.48, "feet"),
  14040. name: "Foot",
  14041. image: {
  14042. source: "./media/characters/zeta/foot.svg"
  14043. }
  14044. },
  14045. },
  14046. [
  14047. {
  14048. name: "Micro",
  14049. height: math.unit(6, "inches")
  14050. },
  14051. {
  14052. name: "Normal",
  14053. height: math.unit(6 + 1 / 12, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(20, "feet")
  14059. },
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14064. {
  14065. front: {
  14066. height: math.unit(6, "feet"),
  14067. weight: math.unit(150, "lb"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/jamie-larsen/front.svg",
  14071. extra: 962 / 933,
  14072. bottom: 0.02
  14073. }
  14074. },
  14075. back: {
  14076. height: math.unit(6, "feet"),
  14077. weight: math.unit(150, "lb"),
  14078. name: "Back",
  14079. image: {
  14080. source: "./media/characters/jamie-larsen/back.svg",
  14081. extra: 997 / 946
  14082. }
  14083. },
  14084. },
  14085. [
  14086. {
  14087. name: "Macro",
  14088. height: math.unit(28 + 7 / 12, "feet"),
  14089. default: true
  14090. },
  14091. {
  14092. name: "Macro+",
  14093. height: math.unit(180, "feet")
  14094. },
  14095. {
  14096. name: "Megamacro",
  14097. height: math.unit(10, "miles")
  14098. },
  14099. {
  14100. name: "Gigamacro",
  14101. height: math.unit(200000, "miles")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14107. {
  14108. front: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(120, "lb"),
  14111. name: "Front",
  14112. image: {
  14113. source: "./media/characters/vance/front.svg",
  14114. extra: 1980 / 1890,
  14115. bottom: 0.09
  14116. }
  14117. },
  14118. back: {
  14119. height: math.unit(6, "feet"),
  14120. weight: math.unit(120, "lb"),
  14121. name: "Back",
  14122. image: {
  14123. source: "./media/characters/vance/back.svg",
  14124. extra: 2081 / 1994,
  14125. bottom: 0.014
  14126. }
  14127. },
  14128. hand: {
  14129. height: math.unit(0.88, "feet"),
  14130. name: "Hand",
  14131. image: {
  14132. source: "./media/characters/vance/hand.svg"
  14133. }
  14134. },
  14135. foot: {
  14136. height: math.unit(0.64, "feet"),
  14137. name: "Foot",
  14138. image: {
  14139. source: "./media/characters/vance/foot.svg"
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Small",
  14146. height: math.unit(90, "feet"),
  14147. default: true
  14148. },
  14149. {
  14150. name: "Macro",
  14151. height: math.unit(100, "meters")
  14152. },
  14153. {
  14154. name: "Megamacro",
  14155. height: math.unit(15, "miles")
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14161. {
  14162. front: {
  14163. height: math.unit(6, "feet"),
  14164. weight: math.unit(180, "lb"),
  14165. name: "Front",
  14166. image: {
  14167. source: "./media/characters/xochitl/front.svg",
  14168. extra: 2297 / 2261,
  14169. bottom: 0.065
  14170. }
  14171. },
  14172. back: {
  14173. height: math.unit(6, "feet"),
  14174. weight: math.unit(180, "lb"),
  14175. name: "Back",
  14176. image: {
  14177. source: "./media/characters/xochitl/back.svg",
  14178. extra: 2386 / 2354,
  14179. bottom: 0.01
  14180. }
  14181. },
  14182. foot: {
  14183. height: math.unit(6 / 5 * 1.15, "feet"),
  14184. weight: math.unit(150, "lb"),
  14185. name: "Foot",
  14186. image: {
  14187. source: "./media/characters/xochitl/foot.svg"
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Macro",
  14194. height: math.unit(80, "feet")
  14195. },
  14196. {
  14197. name: "Macro+",
  14198. height: math.unit(400, "feet"),
  14199. default: true
  14200. },
  14201. {
  14202. name: "Gigamacro",
  14203. height: math.unit(80000, "miles")
  14204. },
  14205. {
  14206. name: "Gigamacro+",
  14207. height: math.unit(400000, "miles")
  14208. },
  14209. {
  14210. name: "Teramacro",
  14211. height: math.unit(300, "AU")
  14212. },
  14213. ]
  14214. ))
  14215. characterMakers.push(() => makeCharacter(
  14216. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14217. {
  14218. front: {
  14219. height: math.unit(6, "feet"),
  14220. weight: math.unit(150, "lb"),
  14221. name: "Front",
  14222. image: {
  14223. source: "./media/characters/vincent/front.svg",
  14224. extra: 1130 / 1080,
  14225. bottom: 0.055
  14226. }
  14227. },
  14228. beak: {
  14229. height: math.unit(6 * 0.1, "feet"),
  14230. name: "Beak",
  14231. image: {
  14232. source: "./media/characters/vincent/beak.svg"
  14233. }
  14234. },
  14235. hand: {
  14236. height: math.unit(6 * 0.85, "feet"),
  14237. weight: math.unit(150, "lb"),
  14238. name: "Hand",
  14239. image: {
  14240. source: "./media/characters/vincent/hand.svg"
  14241. }
  14242. },
  14243. foot: {
  14244. height: math.unit(6 * 0.19, "feet"),
  14245. weight: math.unit(150, "lb"),
  14246. name: "Foot",
  14247. image: {
  14248. source: "./media/characters/vincent/foot.svg"
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Base",
  14255. height: math.unit(6 + 5 / 12, "feet"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(300, "feet")
  14261. },
  14262. {
  14263. name: "Megamacro",
  14264. height: math.unit(2, "miles")
  14265. },
  14266. {
  14267. name: "Gigamacro",
  14268. height: math.unit(1000, "miles")
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14274. {
  14275. front: {
  14276. height: math.unit(2, "meters"),
  14277. weight: math.unit(500, "kg"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/coatl/front.svg",
  14281. extra: 3948 / 3500,
  14282. bottom: 0.082
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Normal",
  14289. height: math.unit(4, "meters")
  14290. },
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(100, "meters"),
  14294. default: true
  14295. },
  14296. {
  14297. name: "Macro+",
  14298. height: math.unit(300, "meters")
  14299. },
  14300. {
  14301. name: "Megamacro",
  14302. height: math.unit(3, "gigameters")
  14303. },
  14304. {
  14305. name: "Megamacro+",
  14306. height: math.unit(300, "terameters")
  14307. },
  14308. {
  14309. name: "Megamacro++",
  14310. height: math.unit(3, "lightyears")
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(50, "kg"),
  14320. name: "front",
  14321. image: {
  14322. source: "./media/characters/shiroryu/front.svg",
  14323. extra: 1990 / 1935
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Mortal Mingling",
  14330. height: math.unit(3, "meters")
  14331. },
  14332. {
  14333. name: "Kaiju-ish",
  14334. height: math.unit(250, "meters")
  14335. },
  14336. {
  14337. name: "Somewhat Godly",
  14338. height: math.unit(400, "km"),
  14339. default: true
  14340. },
  14341. {
  14342. name: "Planetary",
  14343. height: math.unit(300, "megameters")
  14344. },
  14345. {
  14346. name: "Galaxy-dwarfing",
  14347. height: math.unit(450, "kiloparsecs")
  14348. },
  14349. {
  14350. name: "Universe Eater",
  14351. height: math.unit(150, "gigaparsecs")
  14352. },
  14353. {
  14354. name: "Almost Immeasurable",
  14355. height: math.unit(1.3e266, "yottaparsecs")
  14356. },
  14357. ]
  14358. ))
  14359. characterMakers.push(() => makeCharacter(
  14360. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14361. {
  14362. front: {
  14363. height: math.unit(6, "feet"),
  14364. weight: math.unit(150, "lb"),
  14365. name: "Front",
  14366. image: {
  14367. source: "./media/characters/umeko/front.svg",
  14368. extra: 1,
  14369. bottom: 0.019
  14370. }
  14371. },
  14372. frontArmored: {
  14373. height: math.unit(6, "feet"),
  14374. weight: math.unit(150, "lb"),
  14375. name: "Front (Armored)",
  14376. image: {
  14377. source: "./media/characters/umeko/front-armored.svg",
  14378. extra: 1,
  14379. bottom: 0.021
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Macro",
  14386. height: math.unit(220, "feet"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Guardian Dragon",
  14391. height: math.unit(50, "miles")
  14392. },
  14393. {
  14394. name: "Cosmic",
  14395. height: math.unit(800000, "miles")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/cassidy/front.svg",
  14408. extra: 810/808,
  14409. bottom: 41/851
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Canon Height",
  14416. height: math.unit(120, "feet"),
  14417. default: true
  14418. },
  14419. {
  14420. name: "Macro+",
  14421. height: math.unit(400, "feet")
  14422. },
  14423. {
  14424. name: "Macro++",
  14425. height: math.unit(4000, "feet")
  14426. },
  14427. {
  14428. name: "Megamacro",
  14429. height: math.unit(3, "miles")
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(150, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/isaac/front.svg",
  14442. extra: 896 / 815,
  14443. bottom: 0.11
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Human Size",
  14450. height: math.unit(8, "feet"),
  14451. default: true
  14452. },
  14453. {
  14454. name: "Macro",
  14455. height: math.unit(400, "feet")
  14456. },
  14457. {
  14458. name: "Megamacro",
  14459. height: math.unit(50, "miles")
  14460. },
  14461. {
  14462. name: "Canon Height",
  14463. height: math.unit(200, "AU")
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(6, "feet"),
  14472. weight: math.unit(72, "kg"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/sleekit/front.svg",
  14476. extra: 4693 / 4487,
  14477. bottom: 0.012
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Minimum Height",
  14484. height: math.unit(10, "meters")
  14485. },
  14486. {
  14487. name: "Smaller",
  14488. height: math.unit(25, "meters")
  14489. },
  14490. {
  14491. name: "Larger",
  14492. height: math.unit(38, "meters"),
  14493. default: true
  14494. },
  14495. {
  14496. name: "Maximum height",
  14497. height: math.unit(100, "meters")
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14503. {
  14504. front: {
  14505. height: math.unit(6, "feet"),
  14506. weight: math.unit(150, "lb"),
  14507. name: "Front",
  14508. image: {
  14509. source: "./media/characters/nillia/front.svg",
  14510. extra: 2195 / 2037,
  14511. bottom: 0.005
  14512. }
  14513. },
  14514. back: {
  14515. height: math.unit(6, "feet"),
  14516. weight: math.unit(150, "lb"),
  14517. name: "Back",
  14518. image: {
  14519. source: "./media/characters/nillia/back.svg",
  14520. extra: 2195 / 2037,
  14521. bottom: 0.005
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Canon Height",
  14528. height: math.unit(489, "feet"),
  14529. default: true
  14530. }
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/mesmyriza/front.svg",
  14542. extra: 2067 / 1784,
  14543. bottom: 0.035
  14544. }
  14545. },
  14546. foot: {
  14547. height: math.unit(6 / (250 / 35), "feet"),
  14548. name: "Foot",
  14549. image: {
  14550. source: "./media/characters/mesmyriza/foot.svg"
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Macro",
  14557. height: math.unit(457, "meters"),
  14558. default: true
  14559. },
  14560. {
  14561. name: "Megamacro",
  14562. height: math.unit(8, "megameters")
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14568. {
  14569. front: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(250, "lb"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/saudade/front.svg",
  14575. extra: 1172 / 1139,
  14576. bottom: 0.035
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Micro",
  14583. height: math.unit(3, "inches")
  14584. },
  14585. {
  14586. name: "Normal",
  14587. height: math.unit(6, "feet"),
  14588. default: true
  14589. },
  14590. {
  14591. name: "Macro",
  14592. height: math.unit(50, "feet")
  14593. },
  14594. {
  14595. name: "Megamacro",
  14596. height: math.unit(2800, "feet")
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(5 + 4 / 12, "feet"),
  14605. weight: math.unit(100, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/keireer/front.svg",
  14609. extra: 716 / 666,
  14610. bottom: 0.05
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(5 + 4 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(6, "feet"),
  14627. weight: math.unit(90, "kg"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/mirja/front.svg",
  14631. extra: 1789 / 1683,
  14632. bottom: 0.05
  14633. }
  14634. },
  14635. frontDressed: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(90, "lb"),
  14638. name: "Front (Dressed)",
  14639. image: {
  14640. source: "./media/characters/mirja/front-dressed.svg",
  14641. extra: 1789 / 1683,
  14642. bottom: 0.05
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(90, "lb"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/mirja/back.svg",
  14651. extra: 953 / 917,
  14652. bottom: 0.017
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "\"Incognito\"",
  14659. height: math.unit(3, "meters")
  14660. },
  14661. {
  14662. name: "Strolling Size",
  14663. height: math.unit(15, "km")
  14664. },
  14665. {
  14666. name: "Larger Strolling Size",
  14667. height: math.unit(400, "km")
  14668. },
  14669. {
  14670. name: "Preferred Size",
  14671. height: math.unit(5000, "km")
  14672. },
  14673. {
  14674. name: "True Size",
  14675. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14676. default: true
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(15, "feet"),
  14685. weight: math.unit(880, "kg"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/nightraver/front.svg",
  14689. extra: 2444 / 2160,
  14690. bottom: 0.027
  14691. }
  14692. },
  14693. back: {
  14694. height: math.unit(15, "feet"),
  14695. weight: math.unit(880, "kg"),
  14696. name: "Back",
  14697. image: {
  14698. source: "./media/characters/nightraver/back.svg",
  14699. extra: 2309 / 2180,
  14700. bottom: 0.005
  14701. }
  14702. },
  14703. sole: {
  14704. height: math.unit(2.878, "feet"),
  14705. name: "Sole",
  14706. image: {
  14707. source: "./media/characters/nightraver/sole.svg"
  14708. }
  14709. },
  14710. foot: {
  14711. height: math.unit(2.285, "feet"),
  14712. name: "Foot",
  14713. image: {
  14714. source: "./media/characters/nightraver/foot.svg"
  14715. }
  14716. },
  14717. maw: {
  14718. height: math.unit(2.67, "feet"),
  14719. name: "Maw",
  14720. image: {
  14721. source: "./media/characters/nightraver/maw.svg"
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Micro",
  14728. height: math.unit(1, "cm")
  14729. },
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(15, "feet"),
  14733. default: true
  14734. },
  14735. {
  14736. name: "Macro",
  14737. height: math.unit(300, "feet")
  14738. },
  14739. {
  14740. name: "Megamacro",
  14741. height: math.unit(300, "miles")
  14742. },
  14743. {
  14744. name: "Gigamacro",
  14745. height: math.unit(10000, "miles")
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14751. {
  14752. side: {
  14753. height: math.unit(2, "inches"),
  14754. weight: math.unit(5, "grams"),
  14755. name: "Side",
  14756. image: {
  14757. source: "./media/characters/arc/side.svg"
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Micro",
  14764. height: math.unit(2, "inches"),
  14765. default: true
  14766. },
  14767. ]
  14768. ))
  14769. characterMakers.push(() => makeCharacter(
  14770. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14771. {
  14772. front: {
  14773. height: math.unit(1.1938, "meters"),
  14774. weight: math.unit(54, "kg"),
  14775. name: "Front",
  14776. image: {
  14777. source: "./media/characters/nebula-shahar/front.svg",
  14778. extra: 1642 / 1436,
  14779. bottom: 0.06
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Megamicro",
  14786. height: math.unit(0.3, "mm")
  14787. },
  14788. {
  14789. name: "Micro",
  14790. height: math.unit(3, "cm")
  14791. },
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(138, "cm"),
  14795. default: true
  14796. },
  14797. {
  14798. name: "Macro",
  14799. height: math.unit(30, "m")
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(5.24, "feet"),
  14808. weight: math.unit(150, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/shayla/front.svg",
  14812. extra: 1512 / 1414,
  14813. bottom: 0.01
  14814. }
  14815. },
  14816. back: {
  14817. height: math.unit(5.24, "feet"),
  14818. weight: math.unit(150, "lb"),
  14819. name: "Back",
  14820. image: {
  14821. source: "./media/characters/shayla/back.svg",
  14822. extra: 1512 / 1414
  14823. }
  14824. },
  14825. hand: {
  14826. height: math.unit(0.7781496062992126, "feet"),
  14827. name: "Hand",
  14828. image: {
  14829. source: "./media/characters/shayla/hand.svg"
  14830. }
  14831. },
  14832. foot: {
  14833. height: math.unit(1.4206036745406823, "feet"),
  14834. name: "Foot",
  14835. image: {
  14836. source: "./media/characters/shayla/foot.svg"
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Micro",
  14843. height: math.unit(0.32, "feet")
  14844. },
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(5.24, "feet"),
  14848. default: true
  14849. },
  14850. {
  14851. name: "Macro",
  14852. height: math.unit(492.12, "feet")
  14853. },
  14854. {
  14855. name: "Megamacro",
  14856. height: math.unit(186.41, "miles")
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(2.2, "m"),
  14865. weight: math.unit(120, "kg"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/pia-jr/front.svg",
  14869. extra: 1000 / 970,
  14870. bottom: 0.035
  14871. }
  14872. },
  14873. hand: {
  14874. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14875. name: "Hand",
  14876. image: {
  14877. source: "./media/characters/pia-jr/hand.svg"
  14878. }
  14879. },
  14880. paw: {
  14881. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14882. name: "Paw",
  14883. image: {
  14884. source: "./media/characters/pia-jr/paw.svg"
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Micro",
  14891. height: math.unit(1.2, "cm")
  14892. },
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(2.2, "m"),
  14896. default: true
  14897. },
  14898. {
  14899. name: "Macro",
  14900. height: math.unit(180, "m")
  14901. },
  14902. {
  14903. name: "Megamacro",
  14904. height: math.unit(420, "km")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(2, "m"),
  14913. weight: math.unit(115, "kg"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/pia-sr/front.svg",
  14917. extra: 760 / 730,
  14918. bottom: 0.015
  14919. }
  14920. },
  14921. back: {
  14922. height: math.unit(2, "m"),
  14923. weight: math.unit(115, "kg"),
  14924. name: "Back",
  14925. image: {
  14926. source: "./media/characters/pia-sr/back.svg",
  14927. extra: 760 / 730,
  14928. bottom: 0.01
  14929. }
  14930. },
  14931. hand: {
  14932. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14933. name: "Hand",
  14934. image: {
  14935. source: "./media/characters/pia-sr/hand.svg"
  14936. }
  14937. },
  14938. foot: {
  14939. height: math.unit(1.83, "feet"),
  14940. name: "Foot",
  14941. image: {
  14942. source: "./media/characters/pia-sr/foot.svg"
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Micro",
  14949. height: math.unit(88, "mm")
  14950. },
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(2, "m"),
  14954. default: true
  14955. },
  14956. {
  14957. name: "Macro",
  14958. height: math.unit(200, "m")
  14959. },
  14960. {
  14961. name: "Megamacro",
  14962. height: math.unit(420, "km")
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(8 + 2 / 12, "feet"),
  14971. weight: math.unit(300, "lb"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/kibibyte/front.svg",
  14975. extra: 2221 / 2098,
  14976. bottom: 0.04
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(8 + 2 / 12, "feet"),
  14984. default: true
  14985. },
  14986. {
  14987. name: "Socialable Macro",
  14988. height: math.unit(50, "feet")
  14989. },
  14990. {
  14991. name: "Macro",
  14992. height: math.unit(300, "feet")
  14993. },
  14994. {
  14995. name: "Megamacro",
  14996. height: math.unit(500, "miles")
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(6, "feet"),
  15005. weight: math.unit(150, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/felix/front.svg",
  15009. extra: 762 / 722,
  15010. bottom: 0.02
  15011. }
  15012. },
  15013. frontClothed: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(150, "lb"),
  15016. name: "Front (Clothed)",
  15017. image: {
  15018. source: "./media/characters/felix/front-clothed.svg",
  15019. extra: 762 / 722,
  15020. bottom: 0.02
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(6 + 8 / 12, "feet"),
  15028. default: true
  15029. },
  15030. {
  15031. name: "Macro",
  15032. height: math.unit(2600, "feet")
  15033. },
  15034. {
  15035. name: "Megamacro",
  15036. height: math.unit(450, "miles")
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(6 + 1 / 12, "feet"),
  15045. weight: math.unit(250, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/tobo/front.svg",
  15049. extra: 608 / 586,
  15050. bottom: 0.023
  15051. }
  15052. },
  15053. back: {
  15054. height: math.unit(6 + 1 / 12, "feet"),
  15055. weight: math.unit(250, "lb"),
  15056. name: "Back",
  15057. image: {
  15058. source: "./media/characters/tobo/back.svg",
  15059. extra: 608 / 586
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Nano",
  15066. height: math.unit(2, "nm")
  15067. },
  15068. {
  15069. name: "Megamicro",
  15070. height: math.unit(0.1, "mm")
  15071. },
  15072. {
  15073. name: "Micro",
  15074. height: math.unit(1, "inch"),
  15075. default: true
  15076. },
  15077. {
  15078. name: "Human-sized",
  15079. height: math.unit(6 + 1 / 12, "feet")
  15080. },
  15081. {
  15082. name: "Macro",
  15083. height: math.unit(250, "feet")
  15084. },
  15085. {
  15086. name: "Megamacro",
  15087. height: math.unit(75, "miles")
  15088. },
  15089. {
  15090. name: "Texas-sized",
  15091. height: math.unit(750, "miles")
  15092. },
  15093. {
  15094. name: "Teramacro",
  15095. height: math.unit(50000, "miles")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(269, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/danny-kapowsky/front.svg",
  15108. extra: 766 / 736,
  15109. bottom: 0.044
  15110. }
  15111. },
  15112. back: {
  15113. height: math.unit(6, "feet"),
  15114. weight: math.unit(269, "lb"),
  15115. name: "Back",
  15116. image: {
  15117. source: "./media/characters/danny-kapowsky/back.svg",
  15118. extra: 797 / 760,
  15119. bottom: 0.025
  15120. }
  15121. },
  15122. },
  15123. [
  15124. {
  15125. name: "Macro",
  15126. height: math.unit(150, "feet"),
  15127. default: true
  15128. },
  15129. {
  15130. name: "Macro+",
  15131. height: math.unit(200, "feet")
  15132. },
  15133. {
  15134. name: "Macro++",
  15135. height: math.unit(300, "feet")
  15136. },
  15137. {
  15138. name: "Macro+++",
  15139. height: math.unit(400, "feet")
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15145. {
  15146. side: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(170, "lb"),
  15149. name: "Side",
  15150. image: {
  15151. source: "./media/characters/finn/side.svg",
  15152. extra: 1953 / 1807,
  15153. bottom: 0.057
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Megamacro",
  15160. height: math.unit(14445, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(5 + 6 / 12, "feet"),
  15170. weight: math.unit(125, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/roy/front.svg",
  15174. extra: 1,
  15175. bottom: 0.11
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Micro",
  15182. height: math.unit(3, "inches"),
  15183. default: true
  15184. },
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(5 + 6 / 12, "feet")
  15188. },
  15189. {
  15190. name: "Lesser Macro",
  15191. height: math.unit(60, "feet")
  15192. },
  15193. {
  15194. name: "Greater Macro",
  15195. height: math.unit(120, "feet")
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(6, "feet"),
  15204. weight: math.unit(100, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/aevsivs/front.svg",
  15208. extra: 1,
  15209. bottom: 0.03
  15210. }
  15211. },
  15212. back: {
  15213. height: math.unit(6, "feet"),
  15214. weight: math.unit(100, "lb"),
  15215. name: "Back",
  15216. image: {
  15217. source: "./media/characters/aevsivs/back.svg"
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Micro",
  15224. height: math.unit(2, "inches"),
  15225. default: true
  15226. },
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(5, "feet")
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15235. {
  15236. front: {
  15237. height: math.unit(5 + 7 / 12, "feet"),
  15238. weight: math.unit(159, "lb"),
  15239. name: "Front",
  15240. image: {
  15241. source: "./media/characters/hildegard/front.svg",
  15242. extra: 289 / 269,
  15243. bottom: 7.63 / 297.8
  15244. }
  15245. },
  15246. back: {
  15247. height: math.unit(5 + 7 / 12, "feet"),
  15248. weight: math.unit(159, "lb"),
  15249. name: "Back",
  15250. image: {
  15251. source: "./media/characters/hildegard/back.svg",
  15252. extra: 280 / 260,
  15253. bottom: 2.3 / 282
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(5 + 7 / 12, "feet"),
  15261. default: true
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15267. {
  15268. bernard: {
  15269. height: math.unit(2 + 7 / 12, "feet"),
  15270. weight: math.unit(66, "lb"),
  15271. name: "Bernard",
  15272. rename: true,
  15273. image: {
  15274. source: "./media/characters/bernard-wilder/bernard.svg",
  15275. extra: 192 / 128,
  15276. bottom: 0.05
  15277. }
  15278. },
  15279. wilder: {
  15280. height: math.unit(5 + 8 / 12, "feet"),
  15281. weight: math.unit(143, "lb"),
  15282. name: "Wilder",
  15283. rename: true,
  15284. image: {
  15285. source: "./media/characters/bernard-wilder/wilder.svg",
  15286. extra: 361 / 312,
  15287. bottom: 0.02
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Normal",
  15294. height: math.unit(2 + 7 / 12, "feet"),
  15295. default: true
  15296. },
  15297. ]
  15298. ))
  15299. characterMakers.push(() => makeCharacter(
  15300. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15301. {
  15302. anthro: {
  15303. height: math.unit(6 + 1 / 12, "feet"),
  15304. weight: math.unit(155, "lb"),
  15305. name: "Anthro",
  15306. image: {
  15307. source: "./media/characters/hearth/anthro.svg",
  15308. extra: 1178/1136,
  15309. bottom: 28/1206
  15310. }
  15311. },
  15312. feral: {
  15313. height: math.unit(3.78, "feet"),
  15314. weight: math.unit(35, "kg"),
  15315. name: "Feral",
  15316. image: {
  15317. source: "./media/characters/hearth/feral.svg",
  15318. extra: 153 / 135,
  15319. bottom: 0.03
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(6 + 1 / 12, "feet"),
  15327. default: true
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15333. {
  15334. front: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(182, "lb"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/ingrid/front.svg",
  15340. extra: 294 / 268,
  15341. bottom: 0.027
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15355. {
  15356. eevee: {
  15357. height: math.unit(2 + 10 / 12, "feet"),
  15358. weight: math.unit(86, "lb"),
  15359. name: "Malgam",
  15360. image: {
  15361. source: "./media/characters/malgam/eevee.svg",
  15362. extra: 952/784,
  15363. bottom: 38/990
  15364. }
  15365. },
  15366. sylveon: {
  15367. height: math.unit(4, "feet"),
  15368. weight: math.unit(101, "lb"),
  15369. name: "Future Malgam",
  15370. rename: true,
  15371. image: {
  15372. source: "./media/characters/malgam/sylveon.svg",
  15373. extra: 371 / 325,
  15374. bottom: 0.015
  15375. }
  15376. },
  15377. gigantamax: {
  15378. height: math.unit(50, "feet"),
  15379. name: "Gigantamax Malgam",
  15380. rename: true,
  15381. image: {
  15382. source: "./media/characters/malgam/gigantamax.svg"
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(2 + 10 / 12, "feet"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(5 + 11 / 12, "feet"),
  15399. weight: math.unit(188, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/fleur/front.svg",
  15403. extra: 309 / 283,
  15404. bottom: 0.007
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(5 + 11 / 12, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(5 + 4 / 12, "feet"),
  15421. weight: math.unit(122, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/jude/front.svg",
  15425. extra: 288 / 273,
  15426. bottom: 0.03
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(5 + 4 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(5 + 11 / 12, "feet"),
  15443. weight: math.unit(190, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/seara/front.svg",
  15447. extra: 1,
  15448. bottom: 0.05
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5 + 11 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(16 + 5 / 12, "feet"),
  15465. weight: math.unit(524, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/caspian/front.svg",
  15469. extra: 1,
  15470. bottom: 0.04
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(16 + 5 / 12, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(5 + 7 / 12, "feet"),
  15487. weight: math.unit(170, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/mika/front.svg",
  15491. extra: 1,
  15492. bottom: 0.016
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(5 + 7 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(6 + 2 / 12, "feet"),
  15509. weight: math.unit(268, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/sol/front.svg",
  15513. extra: 247 / 231,
  15514. bottom: 0.05
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(6 + 2 / 12, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15528. {
  15529. buizel: {
  15530. height: math.unit(2 + 5 / 12, "feet"),
  15531. weight: math.unit(87, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/umiko/buizel.svg",
  15535. extra: 172 / 157,
  15536. bottom: 0.01
  15537. },
  15538. form: "buizel",
  15539. default: true
  15540. },
  15541. floatzel: {
  15542. height: math.unit(5 + 9 / 12, "feet"),
  15543. weight: math.unit(250, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/umiko/floatzel.svg",
  15547. extra: 1076/1006,
  15548. bottom: 15/1091
  15549. },
  15550. form: "floatzel",
  15551. default: true
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(2 + 5 / 12, "feet"),
  15558. form: "buizel",
  15559. default: true
  15560. },
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(5 + 9 / 12, "feet"),
  15564. form: "floatzel",
  15565. default: true
  15566. },
  15567. ],
  15568. {
  15569. "buizel": {
  15570. name: "Buizel"
  15571. },
  15572. "floatzel": {
  15573. name: "Floatzel",
  15574. default: true
  15575. }
  15576. }
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(6 + 2 / 12, "feet"),
  15583. weight: math.unit(146, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/iliac/front.svg",
  15587. extra: 389 / 365,
  15588. bottom: 0.035
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Normal",
  15595. height: math.unit(6 + 2 / 12, "feet"),
  15596. default: true
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6, "feet"),
  15605. weight: math.unit(170, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/topaz/front.svg",
  15609. extra: 317 / 303,
  15610. bottom: 0.055
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(6, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(5 + 11 / 12, "feet"),
  15627. weight: math.unit(144, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/gabriel/front.svg",
  15631. extra: 285 / 262,
  15632. bottom: 0.004
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(5 + 11 / 12, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15646. {
  15647. side: {
  15648. height: math.unit(6 + 5 / 12, "feet"),
  15649. weight: math.unit(300, "lb"),
  15650. name: "Side",
  15651. image: {
  15652. source: "./media/characters/tempest-suicune/side.svg",
  15653. extra: 195 / 154,
  15654. bottom: 0.04
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(6 + 5 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(7 + 2 / 12, "feet"),
  15671. weight: math.unit(322, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/vulcan/front.svg",
  15675. extra: 154 / 147,
  15676. bottom: 0.04
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(7 + 2 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(5 + 10 / 12, "feet"),
  15693. weight: math.unit(264, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/gault/front.svg",
  15697. extra: 161 / 140,
  15698. bottom: 0.028
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(5 + 10 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(6, "feet"),
  15715. weight: math.unit(150, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/shard/front.svg",
  15719. extra: 273 / 238,
  15720. bottom: 0.02
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(3 + 6 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(5 + 11 / 12, "feet"),
  15737. weight: math.unit(146, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/ashe/front.svg",
  15741. extra: 400 / 373,
  15742. bottom: 0.01
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(5 + 11 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 5 / 12, "feet"),
  15759. weight: math.unit(135, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/beatrix/front.svg",
  15763. extra: 392 / 379,
  15764. bottom: 0.01
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(6, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(6 + 2/12, "feet"),
  15781. weight: math.unit(135, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/ignatius/front.svg",
  15785. extra: 1380/1259,
  15786. bottom: 27/1407
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6 + 2/12, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6 + 2 / 12, "feet"),
  15803. weight: math.unit(138, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/mei-li/front.svg",
  15807. extra: 237 / 229,
  15808. bottom: 0.03
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(6 + 2 / 12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(2 + 4 / 12, "feet"),
  15825. weight: math.unit(62, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/puru/front.svg",
  15829. extra: 206 / 149,
  15830. bottom: 0.06
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(2 + 4 / 12, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15844. {
  15845. anthro: {
  15846. height: math.unit(5 + 8/12, "feet"),
  15847. weight: math.unit(200, "lb"),
  15848. energyNeed: math.unit(2000, "kcal"),
  15849. name: "Anthro",
  15850. image: {
  15851. source: "./media/characters/kee/anthro.svg",
  15852. extra: 3251/3184,
  15853. bottom: 250/3501
  15854. }
  15855. },
  15856. taur: {
  15857. height: math.unit(11, "feet"),
  15858. weight: math.unit(500, "lb"),
  15859. energyNeed: math.unit(5000, "kcal"),
  15860. name: "Taur",
  15861. image: {
  15862. source: "./media/characters/kee/taur.svg",
  15863. extra: 1362/1320,
  15864. bottom: 83/1445
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Normal",
  15871. height: math.unit(5 + 8/12, "feet"),
  15872. default: true
  15873. },
  15874. {
  15875. name: "Macro",
  15876. height: math.unit(35, "feet")
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15882. {
  15883. anthro: {
  15884. height: math.unit(7, "feet"),
  15885. weight: math.unit(190, "lb"),
  15886. name: "Anthro",
  15887. image: {
  15888. source: "./media/characters/cobalt-dracha/anthro.svg",
  15889. extra: 231 / 225,
  15890. bottom: 0.04
  15891. }
  15892. },
  15893. feral: {
  15894. height: math.unit(9 + 7 / 12, "feet"),
  15895. weight: math.unit(294, "lb"),
  15896. name: "Feral",
  15897. image: {
  15898. source: "./media/characters/cobalt-dracha/feral.svg",
  15899. extra: 692 / 633,
  15900. bottom: 0.05
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Normal",
  15907. height: math.unit(7, "feet"),
  15908. default: true
  15909. },
  15910. ]
  15911. ))
  15912. characterMakers.push(() => makeCharacter(
  15913. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15914. {
  15915. fallen: {
  15916. height: math.unit(11 + 8 / 12, "feet"),
  15917. weight: math.unit(485, "lb"),
  15918. name: "Java (Fallen)",
  15919. rename: true,
  15920. image: {
  15921. source: "./media/characters/java/fallen.svg",
  15922. extra: 226 / 208,
  15923. bottom: 0.005
  15924. }
  15925. },
  15926. godkin: {
  15927. height: math.unit(10 + 6 / 12, "feet"),
  15928. weight: math.unit(328, "lb"),
  15929. name: "Java (Godkin)",
  15930. rename: true,
  15931. image: {
  15932. source: "./media/characters/java/godkin.svg",
  15933. extra: 1104/1068,
  15934. bottom: 36/1140
  15935. }
  15936. },
  15937. },
  15938. [
  15939. {
  15940. name: "Normal",
  15941. height: math.unit(11 + 8 / 12, "feet"),
  15942. default: true
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15948. {
  15949. front: {
  15950. height: math.unit(5 + 9 / 12, "feet"),
  15951. weight: math.unit(170, "lb"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/purna/front.svg",
  15955. extra: 239 / 229,
  15956. bottom: 0.01
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(5 + 9 / 12, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(5 + 9 / 12, "feet"),
  15973. weight: math.unit(142, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/kuva/front.svg",
  15977. extra: 281 / 271,
  15978. bottom: 0.006
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(5 + 9 / 12, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15992. {
  15993. anthro: {
  15994. height: math.unit(9 + 2 / 12, "feet"),
  15995. weight: math.unit(270, "lb"),
  15996. name: "Anthro",
  15997. image: {
  15998. source: "./media/characters/embra/anthro.svg",
  15999. extra: 200 / 187,
  16000. bottom: 0.02
  16001. }
  16002. },
  16003. feral: {
  16004. height: math.unit(18 + 8 / 12, "feet"),
  16005. weight: math.unit(576, "lb"),
  16006. name: "Feral",
  16007. image: {
  16008. source: "./media/characters/embra/feral.svg",
  16009. extra: 152 / 137,
  16010. bottom: 0.037
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(9 + 2 / 12, "feet"),
  16018. default: true
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16024. {
  16025. anthro: {
  16026. height: math.unit(10 + 9 / 12, "feet"),
  16027. weight: math.unit(224, "lb"),
  16028. name: "Anthro",
  16029. image: {
  16030. source: "./media/characters/grottos/anthro.svg",
  16031. extra: 350 / 332,
  16032. bottom: 0.045
  16033. }
  16034. },
  16035. feral: {
  16036. height: math.unit(20 + 7 / 12, "feet"),
  16037. weight: math.unit(629, "lb"),
  16038. name: "Feral",
  16039. image: {
  16040. source: "./media/characters/grottos/feral.svg",
  16041. extra: 207 / 190,
  16042. bottom: 0.05
  16043. }
  16044. },
  16045. },
  16046. [
  16047. {
  16048. name: "Normal",
  16049. height: math.unit(10 + 9 / 12, "feet"),
  16050. default: true
  16051. },
  16052. ]
  16053. ))
  16054. characterMakers.push(() => makeCharacter(
  16055. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16056. {
  16057. anthro: {
  16058. height: math.unit(9 + 6 / 12, "feet"),
  16059. weight: math.unit(298, "lb"),
  16060. name: "Anthro",
  16061. image: {
  16062. source: "./media/characters/frifna/anthro.svg",
  16063. extra: 282 / 269,
  16064. bottom: 0.015
  16065. }
  16066. },
  16067. feral: {
  16068. height: math.unit(16 + 2 / 12, "feet"),
  16069. weight: math.unit(624, "lb"),
  16070. name: "Feral",
  16071. image: {
  16072. source: "./media/characters/frifna/feral.svg"
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(9 + 6 / 12, "feet"),
  16080. default: true
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(6 + 2 / 12, "feet"),
  16089. weight: math.unit(168, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/elise/front.svg",
  16093. extra: 276 / 271
  16094. }
  16095. },
  16096. },
  16097. [
  16098. {
  16099. name: "Normal",
  16100. height: math.unit(6 + 2 / 12, "feet"),
  16101. default: true
  16102. },
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16107. {
  16108. front: {
  16109. height: math.unit(5 + 10 / 12, "feet"),
  16110. weight: math.unit(210, "lb"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/glade/front.svg",
  16114. extra: 258 / 247,
  16115. bottom: 0.008
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(5 + 10 / 12, "feet"),
  16123. default: true
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(5 + 10 / 12, "feet"),
  16132. weight: math.unit(129, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/rina/front.svg",
  16136. extra: 266 / 255,
  16137. bottom: 0.005
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(5 + 10 / 12, "feet"),
  16145. default: true
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16151. {
  16152. front: {
  16153. height: math.unit(6 + 1 / 12, "feet"),
  16154. weight: math.unit(192, "lb"),
  16155. name: "Front",
  16156. image: {
  16157. source: "./media/characters/veronica/front.svg",
  16158. extra: 319 / 309,
  16159. bottom: 0.005
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(6 + 1 / 12, "feet"),
  16167. default: true
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16173. {
  16174. front: {
  16175. height: math.unit(9 + 3 / 12, "feet"),
  16176. weight: math.unit(1100, "lb"),
  16177. name: "Front",
  16178. image: {
  16179. source: "./media/characters/braxton/front.svg",
  16180. extra: 1057 / 984,
  16181. bottom: 0.05
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(9 + 3 / 12, "feet")
  16189. },
  16190. {
  16191. name: "Giant",
  16192. height: math.unit(300, "feet"),
  16193. default: true
  16194. },
  16195. {
  16196. name: "Macro",
  16197. height: math.unit(700, "feet")
  16198. },
  16199. {
  16200. name: "Megamacro",
  16201. height: math.unit(6000, "feet")
  16202. },
  16203. ]
  16204. ))
  16205. characterMakers.push(() => makeCharacter(
  16206. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16207. {
  16208. front: {
  16209. height: math.unit(6 + 7 / 12, "feet"),
  16210. weight: math.unit(150, "lb"),
  16211. name: "Front",
  16212. image: {
  16213. source: "./media/characters/blue-feyonics/front.svg",
  16214. extra: 1403 / 1306,
  16215. bottom: 0.047
  16216. }
  16217. },
  16218. },
  16219. [
  16220. {
  16221. name: "Normal",
  16222. height: math.unit(6 + 7 / 12, "feet"),
  16223. default: true
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(1.8, "meters"),
  16232. weight: math.unit(60, "kg"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/maxwell/front.svg",
  16236. extra: 2060 / 1873
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Micro",
  16243. height: math.unit(1, "mm")
  16244. },
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(1.8, "meter"),
  16248. default: true
  16249. },
  16250. {
  16251. name: "Macro",
  16252. height: math.unit(30, "meters")
  16253. },
  16254. {
  16255. name: "Megamacro",
  16256. height: math.unit(10, "km")
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(150, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/jack/front.svg",
  16269. extra: 1754 / 1640,
  16270. bottom: 0.01
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(80000, "feet"),
  16278. default: true
  16279. },
  16280. {
  16281. name: "Max size",
  16282. height: math.unit(10, "lightyears")
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16288. {
  16289. urban: {
  16290. height: math.unit(5, "feet"),
  16291. weight: math.unit(240, "lb"),
  16292. name: "Urban",
  16293. image: {
  16294. source: "./media/characters/cafat/urban.svg",
  16295. extra: 1223/1126,
  16296. bottom: 205/1428
  16297. }
  16298. },
  16299. summer: {
  16300. height: math.unit(5, "feet"),
  16301. weight: math.unit(240, "lb"),
  16302. name: "Summer",
  16303. image: {
  16304. source: "./media/characters/cafat/summer.svg",
  16305. extra: 1223/1126,
  16306. bottom: 205/1428
  16307. }
  16308. },
  16309. winter: {
  16310. height: math.unit(5, "feet"),
  16311. weight: math.unit(240, "lb"),
  16312. name: "Winter",
  16313. image: {
  16314. source: "./media/characters/cafat/winter.svg",
  16315. extra: 1223/1126,
  16316. bottom: 205/1428
  16317. }
  16318. },
  16319. lingerie: {
  16320. height: math.unit(5, "feet"),
  16321. weight: math.unit(240, "lb"),
  16322. name: "Lingerie",
  16323. image: {
  16324. source: "./media/characters/cafat/lingerie.svg",
  16325. extra: 1223/1126,
  16326. bottom: 205/1428
  16327. }
  16328. },
  16329. upright: {
  16330. height: math.unit(6.3, "feet"),
  16331. weight: math.unit(240, "lb"),
  16332. name: "Upright",
  16333. image: {
  16334. source: "./media/characters/cafat/upright.svg",
  16335. bottom: 0.01
  16336. }
  16337. },
  16338. uprightFull: {
  16339. height: math.unit(6.3, "feet"),
  16340. weight: math.unit(240, "lb"),
  16341. name: "Upright (Full)",
  16342. image: {
  16343. source: "./media/characters/cafat/upright-full.svg",
  16344. bottom: 0.01
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Small",
  16351. height: math.unit(5, "feet"),
  16352. default: true
  16353. },
  16354. {
  16355. name: "Large",
  16356. height: math.unit(13, "feet")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6, "feet"),
  16365. weight: math.unit(150, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/verin-raharra/front.svg",
  16369. extra: 5019 / 4835,
  16370. bottom: 0.023
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(7 + 5 / 12, "feet"),
  16378. default: true
  16379. },
  16380. {
  16381. name: "Upsized",
  16382. height: math.unit(20, "feet")
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16388. {
  16389. front: {
  16390. height: math.unit(7, "feet"),
  16391. weight: math.unit(230, "lb"),
  16392. name: "Front",
  16393. image: {
  16394. source: "./media/characters/nakata/front.svg",
  16395. extra: 1.005,
  16396. bottom: 0.01
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(7, "feet"),
  16404. default: true
  16405. },
  16406. {
  16407. name: "Big",
  16408. height: math.unit(14, "feet")
  16409. },
  16410. {
  16411. name: "Macro",
  16412. height: math.unit(400, "feet")
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(4.91, "feet"),
  16421. weight: math.unit(100, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/lily/front.svg",
  16425. extra: 1585 / 1415,
  16426. bottom: 0.02
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(4.91, "feet"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16440. {
  16441. laying: {
  16442. height: math.unit(4 + 4 / 12, "feet"),
  16443. weight: math.unit(600, "lb"),
  16444. name: "Laying",
  16445. image: {
  16446. source: "./media/characters/sheila/laying.svg",
  16447. extra: 1333 / 1265,
  16448. bottom: 0.16
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(4 + 4 / 12, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(6, "feet"),
  16465. weight: math.unit(190, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/sax/front.svg",
  16469. extra: 1187 / 973,
  16470. bottom: 0.042
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Micro",
  16477. height: math.unit(4, "inches"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6, "feet"),
  16487. weight: math.unit(150, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/pandora/front.svg",
  16491. extra: 2720 / 2556,
  16492. bottom: 0.015
  16493. }
  16494. },
  16495. back: {
  16496. height: math.unit(6, "feet"),
  16497. weight: math.unit(150, "lb"),
  16498. name: "Back",
  16499. image: {
  16500. source: "./media/characters/pandora/back.svg",
  16501. extra: 2720 / 2556,
  16502. bottom: 0.01
  16503. }
  16504. },
  16505. beans: {
  16506. height: math.unit(6 / 8, "feet"),
  16507. name: "Beans",
  16508. image: {
  16509. source: "./media/characters/pandora/beans.svg"
  16510. }
  16511. },
  16512. collar: {
  16513. height: math.unit(0.31, "feet"),
  16514. name: "Collar",
  16515. image: {
  16516. source: "./media/characters/pandora/collar.svg"
  16517. }
  16518. },
  16519. skirt: {
  16520. height: math.unit(6, "feet"),
  16521. weight: math.unit(150, "lb"),
  16522. name: "Skirt",
  16523. image: {
  16524. source: "./media/characters/pandora/skirt.svg",
  16525. extra: 1622 / 1525,
  16526. bottom: 0.015
  16527. }
  16528. },
  16529. hoodie: {
  16530. height: math.unit(6, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Hoodie",
  16533. image: {
  16534. source: "./media/characters/pandora/hoodie.svg",
  16535. extra: 1622 / 1525,
  16536. bottom: 0.015
  16537. }
  16538. },
  16539. casual: {
  16540. height: math.unit(6, "feet"),
  16541. weight: math.unit(150, "lb"),
  16542. name: "Casual",
  16543. image: {
  16544. source: "./media/characters/pandora/casual.svg",
  16545. extra: 1622 / 1525,
  16546. bottom: 0.015
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(6, "feet")
  16554. },
  16555. {
  16556. name: "Big Steppy",
  16557. height: math.unit(1, "km"),
  16558. default: true
  16559. },
  16560. {
  16561. name: "Galactic Steppy",
  16562. height: math.unit(2, "gigameters")
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16568. {
  16569. side: {
  16570. height: math.unit(10, "feet"),
  16571. weight: math.unit(800, "kg"),
  16572. name: "Side",
  16573. image: {
  16574. source: "./media/characters/venio-darcony/side.svg",
  16575. extra: 1373 / 1003,
  16576. bottom: 0.037
  16577. }
  16578. },
  16579. front: {
  16580. height: math.unit(19, "feet"),
  16581. weight: math.unit(800, "kg"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/venio-darcony/front.svg"
  16585. }
  16586. },
  16587. back: {
  16588. height: math.unit(19, "feet"),
  16589. weight: math.unit(800, "kg"),
  16590. name: "Back",
  16591. image: {
  16592. source: "./media/characters/venio-darcony/back.svg"
  16593. }
  16594. },
  16595. sideNsfw: {
  16596. height: math.unit(10, "feet"),
  16597. weight: math.unit(800, "kg"),
  16598. name: "Side (NSFW)",
  16599. image: {
  16600. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16601. extra: 1373 / 1003,
  16602. bottom: 0.037
  16603. }
  16604. },
  16605. frontNsfw: {
  16606. height: math.unit(19, "feet"),
  16607. weight: math.unit(800, "kg"),
  16608. name: "Front (NSFW)",
  16609. image: {
  16610. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16611. }
  16612. },
  16613. backNsfw: {
  16614. height: math.unit(19, "feet"),
  16615. weight: math.unit(800, "kg"),
  16616. name: "Back (NSFW)",
  16617. image: {
  16618. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16619. }
  16620. },
  16621. sideArmored: {
  16622. height: math.unit(10, "feet"),
  16623. weight: math.unit(800, "kg"),
  16624. name: "Side (Armored)",
  16625. image: {
  16626. source: "./media/characters/venio-darcony/side-armored.svg",
  16627. extra: 1373 / 1003,
  16628. bottom: 0.037
  16629. }
  16630. },
  16631. frontArmored: {
  16632. height: math.unit(19, "feet"),
  16633. weight: math.unit(900, "kg"),
  16634. name: "Front (Armored)",
  16635. image: {
  16636. source: "./media/characters/venio-darcony/front-armored.svg"
  16637. }
  16638. },
  16639. backArmored: {
  16640. height: math.unit(19, "feet"),
  16641. weight: math.unit(900, "kg"),
  16642. name: "Back (Armored)",
  16643. image: {
  16644. source: "./media/characters/venio-darcony/back-armored.svg"
  16645. }
  16646. },
  16647. sword: {
  16648. height: math.unit(10, "feet"),
  16649. weight: math.unit(50, "lb"),
  16650. name: "Sword",
  16651. image: {
  16652. source: "./media/characters/venio-darcony/sword.svg"
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Normal",
  16659. height: math.unit(10, "feet")
  16660. },
  16661. {
  16662. name: "Macro",
  16663. height: math.unit(130, "feet"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "Macro+",
  16668. height: math.unit(240, "feet")
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16674. {
  16675. front: {
  16676. height: math.unit(6, "feet"),
  16677. weight: math.unit(150, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/veski/front.svg",
  16681. extra: 1299 / 1225,
  16682. bottom: 0.04
  16683. }
  16684. },
  16685. back: {
  16686. height: math.unit(6, "feet"),
  16687. weight: math.unit(150, "lb"),
  16688. name: "Back",
  16689. image: {
  16690. source: "./media/characters/veski/back.svg",
  16691. extra: 1299 / 1225,
  16692. bottom: 0.008
  16693. }
  16694. },
  16695. maw: {
  16696. height: math.unit(1.5 * 1.21, "feet"),
  16697. name: "Maw",
  16698. image: {
  16699. source: "./media/characters/veski/maw.svg"
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Macro",
  16706. height: math.unit(2, "km"),
  16707. default: true
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16713. {
  16714. front: {
  16715. height: math.unit(5 + 7 / 12, "feet"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/isabelle/front.svg",
  16719. extra: 2130 / 1976,
  16720. bottom: 0.05
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Supermicro",
  16727. height: math.unit(10, "micrometers")
  16728. },
  16729. {
  16730. name: "Micro",
  16731. height: math.unit(1, "inch")
  16732. },
  16733. {
  16734. name: "Tiny",
  16735. height: math.unit(5, "inches")
  16736. },
  16737. {
  16738. name: "Standard",
  16739. height: math.unit(5 + 7 / 12, "inches")
  16740. },
  16741. {
  16742. name: "Macro",
  16743. height: math.unit(80, "meters"),
  16744. default: true
  16745. },
  16746. {
  16747. name: "Megamacro",
  16748. height: math.unit(250, "meters")
  16749. },
  16750. {
  16751. name: "Gigamacro",
  16752. height: math.unit(5, "km")
  16753. },
  16754. {
  16755. name: "Cosmic",
  16756. height: math.unit(2.5e6, "miles")
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(6, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/hanzo/front.svg",
  16769. extra: 374 / 344,
  16770. bottom: 0.02
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Normal",
  16777. height: math.unit(8, "feet"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(7, "feet"),
  16787. weight: math.unit(130, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/anna/front.svg",
  16791. extra: 169 / 145,
  16792. bottom: 0.06
  16793. }
  16794. },
  16795. full: {
  16796. height: math.unit(4.96, "feet"),
  16797. weight: math.unit(220, "lb"),
  16798. name: "Full",
  16799. image: {
  16800. source: "./media/characters/anna/full.svg",
  16801. extra: 138 / 114,
  16802. bottom: 0.15
  16803. }
  16804. },
  16805. tongue: {
  16806. height: math.unit(2.53, "feet"),
  16807. name: "Tongue",
  16808. image: {
  16809. source: "./media/characters/anna/tongue.svg"
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(7, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16823. {
  16824. front: {
  16825. height: math.unit(7, "feet"),
  16826. weight: math.unit(150, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/ian-corvid/front.svg",
  16830. extra: 150 / 142,
  16831. bottom: 0.02
  16832. }
  16833. },
  16834. back: {
  16835. height: math.unit(7, "feet"),
  16836. weight: math.unit(150, "lb"),
  16837. name: "Back",
  16838. image: {
  16839. source: "./media/characters/ian-corvid/back.svg",
  16840. extra: 150 / 143,
  16841. bottom: 0.01
  16842. }
  16843. },
  16844. stomping: {
  16845. height: math.unit(7, "feet"),
  16846. weight: math.unit(150, "lb"),
  16847. name: "Stomping",
  16848. image: {
  16849. source: "./media/characters/ian-corvid/stomping.svg",
  16850. extra: 76 / 72
  16851. }
  16852. },
  16853. sitting: {
  16854. height: math.unit(7 / 1.8, "feet"),
  16855. weight: math.unit(150, "lb"),
  16856. name: "Sitting",
  16857. image: {
  16858. source: "./media/characters/ian-corvid/sitting.svg",
  16859. extra: 1400 / 1269,
  16860. bottom: 0.15
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Tiny Microw",
  16867. height: math.unit(1, "inch")
  16868. },
  16869. {
  16870. name: "Microw",
  16871. height: math.unit(6, "inches")
  16872. },
  16873. {
  16874. name: "Crow",
  16875. height: math.unit(7 + 1 / 12, "feet"),
  16876. default: true
  16877. },
  16878. {
  16879. name: "Macrow",
  16880. height: math.unit(176, "feet")
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(5 + 7 / 12, "feet"),
  16889. weight: math.unit(147, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/natalie-kellon/front.svg",
  16893. extra: 1214 / 1141,
  16894. bottom: 0.02
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Micro",
  16901. height: math.unit(1 / 16, "inch")
  16902. },
  16903. {
  16904. name: "Tiny",
  16905. height: math.unit(4, "inches")
  16906. },
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(5 + 7 / 12, "feet"),
  16910. default: true
  16911. },
  16912. {
  16913. name: "Amazon",
  16914. height: math.unit(12, "feet")
  16915. },
  16916. {
  16917. name: "Giantess",
  16918. height: math.unit(160, "meters")
  16919. },
  16920. {
  16921. name: "Titaness",
  16922. height: math.unit(800, "meters")
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16928. {
  16929. front: {
  16930. height: math.unit(6, "feet"),
  16931. weight: math.unit(150, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/alluria/front.svg",
  16935. extra: 806 / 738,
  16936. bottom: 0.01
  16937. }
  16938. },
  16939. side: {
  16940. height: math.unit(6, "feet"),
  16941. weight: math.unit(150, "lb"),
  16942. name: "Side",
  16943. image: {
  16944. source: "./media/characters/alluria/side.svg",
  16945. extra: 800 / 750,
  16946. }
  16947. },
  16948. back: {
  16949. height: math.unit(6, "feet"),
  16950. weight: math.unit(150, "lb"),
  16951. name: "Back",
  16952. image: {
  16953. source: "./media/characters/alluria/back.svg",
  16954. extra: 806 / 738,
  16955. }
  16956. },
  16957. frontMaid: {
  16958. height: math.unit(6, "feet"),
  16959. weight: math.unit(150, "lb"),
  16960. name: "Front (Maid)",
  16961. image: {
  16962. source: "./media/characters/alluria/front-maid.svg",
  16963. extra: 806 / 738,
  16964. bottom: 0.01
  16965. }
  16966. },
  16967. sideMaid: {
  16968. height: math.unit(6, "feet"),
  16969. weight: math.unit(150, "lb"),
  16970. name: "Side (Maid)",
  16971. image: {
  16972. source: "./media/characters/alluria/side-maid.svg",
  16973. extra: 800 / 750,
  16974. bottom: 0.005
  16975. }
  16976. },
  16977. backMaid: {
  16978. height: math.unit(6, "feet"),
  16979. weight: math.unit(150, "lb"),
  16980. name: "Back (Maid)",
  16981. image: {
  16982. source: "./media/characters/alluria/back-maid.svg",
  16983. extra: 806 / 738,
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Micro",
  16990. height: math.unit(6, "inches"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16997. {
  16998. front: {
  16999. height: math.unit(6, "feet"),
  17000. weight: math.unit(150, "lb"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/kyle/front.svg",
  17004. extra: 1069 / 962,
  17005. bottom: 77.228 / 1727.45
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Macro",
  17012. height: math.unit(150, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(6, "feet"),
  17022. weight: math.unit(300, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/duncan/front.svg",
  17026. extra: 1650 / 1482,
  17027. bottom: 0.05
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Macro",
  17034. height: math.unit(100, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(5 + 4 / 12, "feet"),
  17044. weight: math.unit(220, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/memory/front.svg",
  17048. extra: 3641 / 3545,
  17049. bottom: 0.03
  17050. }
  17051. },
  17052. back: {
  17053. height: math.unit(5 + 4 / 12, "feet"),
  17054. weight: math.unit(220, "lb"),
  17055. name: "Back",
  17056. image: {
  17057. source: "./media/characters/memory/back.svg",
  17058. extra: 3641 / 3545,
  17059. bottom: 0.025
  17060. }
  17061. },
  17062. frontSkirt: {
  17063. height: math.unit(5 + 4 / 12, "feet"),
  17064. weight: math.unit(220, "lb"),
  17065. name: "Front (Skirt)",
  17066. image: {
  17067. source: "./media/characters/memory/front-skirt.svg",
  17068. extra: 3641 / 3545,
  17069. bottom: 0.03
  17070. }
  17071. },
  17072. frontDress: {
  17073. height: math.unit(5 + 4 / 12, "feet"),
  17074. weight: math.unit(220, "lb"),
  17075. name: "Front (Dress)",
  17076. image: {
  17077. source: "./media/characters/memory/front-dress.svg",
  17078. extra: 3641 / 3545,
  17079. bottom: 0.03
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Micro",
  17086. height: math.unit(6, "inches"),
  17087. default: true
  17088. },
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(5 + 4 / 12, "feet")
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(4 + 11 / 12, "feet"),
  17100. weight: math.unit(100, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/luno/front.svg",
  17104. extra: 1535 / 1487,
  17105. bottom: 0.03
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Micro",
  17112. height: math.unit(3, "inches")
  17113. },
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(4 + 11 / 12, "feet"),
  17117. default: true
  17118. },
  17119. {
  17120. name: "Macro",
  17121. height: math.unit(300, "feet")
  17122. },
  17123. {
  17124. name: "Megamacro",
  17125. height: math.unit(700, "miles")
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17131. {
  17132. front: {
  17133. height: math.unit(6 + 2 / 12, "feet"),
  17134. weight: math.unit(170, "lb"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/jamesy/front.svg",
  17138. extra: 440 / 382,
  17139. bottom: 0.005
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Micro",
  17146. height: math.unit(3, "inches")
  17147. },
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(6 + 2 / 12, "feet"),
  17151. default: true
  17152. },
  17153. {
  17154. name: "Macro",
  17155. height: math.unit(300, "feet")
  17156. },
  17157. {
  17158. name: "Megamacro",
  17159. height: math.unit(700, "miles")
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17165. {
  17166. front: {
  17167. height: math.unit(6, "feet"),
  17168. weight: math.unit(160, "lb"),
  17169. name: "Front",
  17170. image: {
  17171. source: "./media/characters/mark/front.svg",
  17172. extra: 3300 / 3100,
  17173. bottom: 136.42 / 3440.47
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Macro",
  17180. height: math.unit(120, "meters")
  17181. },
  17182. {
  17183. name: "Bigger Macro",
  17184. height: math.unit(350, "meters")
  17185. },
  17186. {
  17187. name: "Megamacro",
  17188. height: math.unit(8, "km"),
  17189. default: true
  17190. },
  17191. {
  17192. name: "Continental",
  17193. height: math.unit(4550, "km")
  17194. },
  17195. {
  17196. name: "Planetary",
  17197. height: math.unit(65000, "km")
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(6, "feet"),
  17206. weight: math.unit(400, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/mac/front.svg",
  17210. extra: 1048 / 987.7,
  17211. bottom: 60 / 1107.6,
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Macro",
  17218. height: math.unit(500, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(5 + 2 / 12, "feet"),
  17228. weight: math.unit(190, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/bari/front.svg",
  17232. extra: 3156 / 2880,
  17233. bottom: 0.03
  17234. }
  17235. },
  17236. back: {
  17237. height: math.unit(5 + 2 / 12, "feet"),
  17238. weight: math.unit(190, "lb"),
  17239. name: "Back",
  17240. image: {
  17241. source: "./media/characters/bari/back.svg",
  17242. extra: 3260 / 2834,
  17243. bottom: 0.025
  17244. }
  17245. },
  17246. frontPlush: {
  17247. height: math.unit(5 + 2 / 12, "feet"),
  17248. weight: math.unit(190, "lb"),
  17249. name: "Front (Plush)",
  17250. image: {
  17251. source: "./media/characters/bari/front-plush.svg",
  17252. extra: 1112 / 1061,
  17253. bottom: 0.002
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Micro",
  17260. height: math.unit(3, "inches")
  17261. },
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(5 + 2 / 12, "feet"),
  17265. default: true
  17266. },
  17267. {
  17268. name: "Macro",
  17269. height: math.unit(20, "feet")
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(6 + 1 / 12, "feet"),
  17278. weight: math.unit(275, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/hunter-misha-raven/front.svg"
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Mortal",
  17288. height: math.unit(6 + 1 / 12, "feet")
  17289. },
  17290. {
  17291. name: "Divine",
  17292. height: math.unit(1.12134e34, "parsecs"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17299. {
  17300. front: {
  17301. height: math.unit(6 + 3 / 12, "feet"),
  17302. weight: math.unit(220, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/max-calore/front.svg",
  17306. extra: 1700 / 1648,
  17307. bottom: 0.01
  17308. }
  17309. },
  17310. back: {
  17311. height: math.unit(6 + 3 / 12, "feet"),
  17312. weight: math.unit(220, "lb"),
  17313. name: "Back",
  17314. image: {
  17315. source: "./media/characters/max-calore/back.svg",
  17316. extra: 1700 / 1648,
  17317. bottom: 0.01
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(6 + 3 / 12, "feet"),
  17325. default: true
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17331. {
  17332. side: {
  17333. height: math.unit(2 + 8 / 12, "feet"),
  17334. weight: math.unit(99, "lb"),
  17335. name: "Side",
  17336. image: {
  17337. source: "./media/characters/aspen/side.svg",
  17338. extra: 152 / 138,
  17339. bottom: 0.032
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(2 + 8 / 12, "feet"),
  17347. default: true
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17353. {
  17354. side: {
  17355. height: math.unit(3 + 2 / 12, "feet"),
  17356. weight: math.unit(224, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/sheila-feral-wolf/side.svg",
  17360. extra: 179 / 166,
  17361. bottom: 0.03
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(3 + 2 / 12, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17375. {
  17376. side: {
  17377. height: math.unit(1 + 9 / 12, "feet"),
  17378. weight: math.unit(38, "lb"),
  17379. name: "Side",
  17380. image: {
  17381. source: "./media/characters/michelle/side.svg",
  17382. extra: 147 / 136.7,
  17383. bottom: 0.03
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(1 + 9 / 12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(1.54, "feet"),
  17400. weight: math.unit(50, "lb"),
  17401. name: "Front",
  17402. image: {
  17403. source: "./media/characters/nino/front.svg"
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(1.54, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(1.49, "feet"),
  17420. weight: math.unit(45, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/viola/front.svg"
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(1.49, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(6 + 5 / 12, "feet"),
  17440. weight: math.unit(580, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/atlas/front.svg",
  17444. extra: 298.5 / 290,
  17445. bottom: 0.015
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(6 + 5 / 12, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17459. {
  17460. side: {
  17461. height: math.unit(15.6, "inches"),
  17462. weight: math.unit(10, "lb"),
  17463. name: "Side",
  17464. image: {
  17465. source: "./media/characters/davy/side.svg",
  17466. extra: 200 / 170,
  17467. bottom: 0.01
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(15.6, "inches"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17481. {
  17482. side: {
  17483. height: math.unit(4 + 8 / 12, "feet"),
  17484. weight: math.unit(166, "lb"),
  17485. name: "Side",
  17486. image: {
  17487. source: "./media/characters/fiona/side.svg",
  17488. extra: 232 / 220,
  17489. bottom: 0.03
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(4 + 8 / 12, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17503. {
  17504. front: {
  17505. height: math.unit(26, "inches"),
  17506. weight: math.unit(35, "lb"),
  17507. name: "Front",
  17508. image: {
  17509. source: "./media/characters/lyla/front.svg",
  17510. bottom: 0.1
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(3, "feet"),
  17518. default: true
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17524. {
  17525. side: {
  17526. height: math.unit(1.8, "feet"),
  17527. weight: math.unit(44, "lb"),
  17528. name: "Side",
  17529. image: {
  17530. source: "./media/characters/perseus/side.svg",
  17531. bottom: 0.21
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(1.8, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17545. {
  17546. side: {
  17547. height: math.unit(4 + 2 / 12, "feet"),
  17548. weight: math.unit(20, "lb"),
  17549. name: "Side",
  17550. image: {
  17551. source: "./media/characters/remus/side.svg"
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Normal",
  17558. height: math.unit(4 + 2 / 12, "feet"),
  17559. default: true
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17565. {
  17566. front: {
  17567. height: math.unit(4 + 11 / 12, "feet"),
  17568. weight: math.unit(114, "lb"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/raf/front.svg",
  17572. extra: 1504/1339,
  17573. bottom: 26/1530
  17574. }
  17575. },
  17576. side: {
  17577. height: math.unit(4 + 11 / 12, "feet"),
  17578. weight: math.unit(114, "lb"),
  17579. name: "Side",
  17580. image: {
  17581. source: "./media/characters/raf/side.svg",
  17582. extra: 1466/1316,
  17583. bottom: 29/1495
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Micro",
  17590. height: math.unit(2, "inches")
  17591. },
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(4 + 11 / 12, "feet"),
  17595. default: true
  17596. },
  17597. {
  17598. name: "Macro",
  17599. height: math.unit(70, "feet")
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(1.5, "meters"),
  17608. weight: math.unit(68, "kg"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/liam-einarr/front.svg",
  17612. extra: 2822 / 2666
  17613. }
  17614. },
  17615. back: {
  17616. height: math.unit(1.5, "meters"),
  17617. weight: math.unit(68, "kg"),
  17618. name: "Back",
  17619. image: {
  17620. source: "./media/characters/liam-einarr/back.svg",
  17621. extra: 2822 / 2666,
  17622. bottom: 0.015
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(1.5, "meters"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Macro",
  17634. height: math.unit(150, "meters")
  17635. },
  17636. {
  17637. name: "Megamacro",
  17638. height: math.unit(35, "km")
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(6, "feet"),
  17647. weight: math.unit(75, "kg"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/linda/front.svg",
  17651. extra: 930 / 874,
  17652. bottom: 0.004
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(6, "feet"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(6 + 8 / 12, "feet"),
  17669. weight: math.unit(220, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/caylex/front.svg",
  17673. extra: 821 / 772,
  17674. bottom: 0.07
  17675. }
  17676. },
  17677. back: {
  17678. height: math.unit(6 + 8 / 12, "feet"),
  17679. weight: math.unit(220, "lb"),
  17680. name: "Back",
  17681. image: {
  17682. source: "./media/characters/caylex/back.svg",
  17683. extra: 821 / 772,
  17684. bottom: 0.022
  17685. }
  17686. },
  17687. hand: {
  17688. height: math.unit(1.25, "feet"),
  17689. name: "Hand",
  17690. image: {
  17691. source: "./media/characters/caylex/hand.svg"
  17692. }
  17693. },
  17694. foot: {
  17695. height: math.unit(1.6, "feet"),
  17696. name: "Foot",
  17697. image: {
  17698. source: "./media/characters/caylex/foot.svg"
  17699. }
  17700. },
  17701. armored: {
  17702. height: math.unit(6 + 8 / 12, "feet"),
  17703. weight: math.unit(250, "lb"),
  17704. name: "Armored",
  17705. image: {
  17706. source: "./media/characters/caylex/armored.svg",
  17707. extra: 1420 / 1310,
  17708. bottom: 0.045
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Normal",
  17715. height: math.unit(6 + 8 / 12, "feet"),
  17716. default: true
  17717. },
  17718. {
  17719. name: "Normal+",
  17720. height: math.unit(12, "feet")
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(7 + 6 / 12, "feet"),
  17729. weight: math.unit(288, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/alana/front.svg",
  17733. extra: 679 / 653,
  17734. bottom: 22.5 / 701
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Normal",
  17741. height: math.unit(7 + 6 / 12, "feet")
  17742. },
  17743. {
  17744. name: "Large",
  17745. height: math.unit(50, "feet")
  17746. },
  17747. {
  17748. name: "Macro",
  17749. height: math.unit(100, "feet"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Macro+",
  17754. height: math.unit(200, "feet")
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17760. {
  17761. front: {
  17762. height: math.unit(6 + 1 / 12, "feet"),
  17763. weight: math.unit(210, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/hasani/front.svg",
  17767. extra: 244 / 232,
  17768. bottom: 0.01
  17769. }
  17770. },
  17771. back: {
  17772. height: math.unit(6 + 1 / 12, "feet"),
  17773. weight: math.unit(210, "lb"),
  17774. name: "Back",
  17775. image: {
  17776. source: "./media/characters/hasani/back.svg",
  17777. extra: 244 / 232,
  17778. bottom: 0.01
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(6 + 1 / 12, "feet")
  17786. },
  17787. {
  17788. name: "Macro",
  17789. height: math.unit(175, "feet"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17796. {
  17797. front: {
  17798. height: math.unit(1.82, "meters"),
  17799. weight: math.unit(140, "lb"),
  17800. name: "Front",
  17801. image: {
  17802. source: "./media/characters/nita/front.svg",
  17803. extra: 2473 / 2363,
  17804. bottom: 0.01
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(1.82, "m")
  17812. },
  17813. {
  17814. name: "Macro",
  17815. height: math.unit(300, "m")
  17816. },
  17817. {
  17818. name: "Mistake Canon",
  17819. height: math.unit(0.5, "miles"),
  17820. default: true
  17821. },
  17822. {
  17823. name: "Big Mistake",
  17824. height: math.unit(13, "miles")
  17825. },
  17826. {
  17827. name: "Playing God",
  17828. height: math.unit(2450, "miles")
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(4, "feet"),
  17837. weight: math.unit(120, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/shiriko/front.svg",
  17841. extra: 970/934,
  17842. bottom: 5/975
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(4, "feet"),
  17850. default: true
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(6, "feet"),
  17859. name: "front",
  17860. image: {
  17861. source: "./media/characters/deja/front.svg",
  17862. extra: 926 / 840,
  17863. bottom: 0.07
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Planck Length",
  17870. height: math.unit(1.6e-35, "meters")
  17871. },
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(30.48, "meters"),
  17875. default: true
  17876. },
  17877. {
  17878. name: "Universal",
  17879. height: math.unit(8.8e26, "meters")
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17885. {
  17886. side: {
  17887. height: math.unit(8, "feet"),
  17888. weight: math.unit(6300, "lb"),
  17889. name: "Side",
  17890. image: {
  17891. source: "./media/characters/anima/side.svg",
  17892. bottom: 0.035
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(8, "feet"),
  17900. default: true
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17906. {
  17907. front: {
  17908. height: math.unit(8, "feet"),
  17909. weight: math.unit(350, "lb"),
  17910. name: "Front",
  17911. image: {
  17912. source: "./media/characters/bianca/front.svg",
  17913. extra: 234 / 225,
  17914. bottom: 0.03
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(8, "feet"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(6, "feet"),
  17931. weight: math.unit(150, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/adinia/front.svg",
  17935. extra: 1845 / 1672,
  17936. bottom: 0.02
  17937. }
  17938. },
  17939. back: {
  17940. height: math.unit(6, "feet"),
  17941. weight: math.unit(150, "lb"),
  17942. name: "Back",
  17943. image: {
  17944. source: "./media/characters/adinia/back.svg",
  17945. extra: 1845 / 1672,
  17946. bottom: 0.002
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Normal",
  17953. height: math.unit(11 + 5 / 12, "feet"),
  17954. default: true
  17955. },
  17956. ]
  17957. ))
  17958. characterMakers.push(() => makeCharacter(
  17959. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17960. {
  17961. front: {
  17962. height: math.unit(3, "meters"),
  17963. weight: math.unit(200, "kg"),
  17964. name: "Front",
  17965. image: {
  17966. source: "./media/characters/lykasa/front.svg",
  17967. extra: 1076 / 976,
  17968. bottom: 0.06
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(3, "meters")
  17976. },
  17977. {
  17978. name: "Kaiju",
  17979. height: math.unit(120, "meters"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Mega Kaiju",
  17984. height: math.unit(240, "km")
  17985. },
  17986. {
  17987. name: "Giga Kaiju",
  17988. height: math.unit(400, "megameters")
  17989. },
  17990. {
  17991. name: "Tera Kaiju",
  17992. height: math.unit(800, "gigameters")
  17993. },
  17994. {
  17995. name: "Kaiju Dragon Goddess",
  17996. height: math.unit(26, "zettaparsecs")
  17997. },
  17998. ]
  17999. ))
  18000. characterMakers.push(() => makeCharacter(
  18001. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18002. {
  18003. side: {
  18004. height: math.unit(283 / 124 * 6, "feet"),
  18005. weight: math.unit(35000, "lb"),
  18006. name: "Side",
  18007. image: {
  18008. source: "./media/characters/malfaren/side.svg",
  18009. extra: 1310/529,
  18010. bottom: 24/1334
  18011. }
  18012. },
  18013. front: {
  18014. height: math.unit(22.36, "feet"),
  18015. weight: math.unit(35000, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/malfaren/front.svg",
  18019. extra: 1237/1115,
  18020. bottom: 32/1269
  18021. }
  18022. },
  18023. maw: {
  18024. height: math.unit(6.9, "feet"),
  18025. name: "Maw",
  18026. image: {
  18027. source: "./media/characters/malfaren/maw.svg"
  18028. }
  18029. },
  18030. dick: {
  18031. height: math.unit(6.19, "feet"),
  18032. name: "Dick",
  18033. image: {
  18034. source: "./media/characters/malfaren/dick.svg"
  18035. }
  18036. },
  18037. eye: {
  18038. height: math.unit(0.69, "feet"),
  18039. name: "Eye",
  18040. image: {
  18041. source: "./media/characters/malfaren/eye.svg"
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Big",
  18048. height: math.unit(283 / 162 * 6, "feet"),
  18049. },
  18050. {
  18051. name: "Bigger",
  18052. height: math.unit(283 / 124 * 6, "feet")
  18053. },
  18054. {
  18055. name: "Massive",
  18056. height: math.unit(283 / 92 * 6, "feet"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "👀💦",
  18061. height: math.unit(283 / 73 * 6, "feet"),
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(1.7, "m"),
  18070. weight: math.unit(70, "kg"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/kernel/front.svg",
  18074. extra: 222 / 210,
  18075. bottom: 0.007
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Nano",
  18082. height: math.unit(17, "micrometers")
  18083. },
  18084. {
  18085. name: "Micro",
  18086. height: math.unit(1.7, "mm")
  18087. },
  18088. {
  18089. name: "Small",
  18090. height: math.unit(1.7, "cm")
  18091. },
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(1.7, "m"),
  18095. default: true
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(1.75, "meters"),
  18104. weight: math.unit(65, "kg"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/jayne-folest/front.svg",
  18108. extra: 2115 / 2007,
  18109. bottom: 0.02
  18110. }
  18111. },
  18112. back: {
  18113. height: math.unit(1.75, "meters"),
  18114. weight: math.unit(65, "kg"),
  18115. name: "Back",
  18116. image: {
  18117. source: "./media/characters/jayne-folest/back.svg",
  18118. extra: 2115 / 2007,
  18119. bottom: 0.005
  18120. }
  18121. },
  18122. frontClothed: {
  18123. height: math.unit(1.75, "meters"),
  18124. weight: math.unit(65, "kg"),
  18125. name: "Front (Clothed)",
  18126. image: {
  18127. source: "./media/characters/jayne-folest/front-clothed.svg",
  18128. extra: 2115 / 2007,
  18129. bottom: 0.035
  18130. }
  18131. },
  18132. hand: {
  18133. height: math.unit(1 / 1.260, "feet"),
  18134. name: "Hand",
  18135. image: {
  18136. source: "./media/characters/jayne-folest/hand.svg"
  18137. }
  18138. },
  18139. foot: {
  18140. height: math.unit(1 / 0.918, "feet"),
  18141. name: "Foot",
  18142. image: {
  18143. source: "./media/characters/jayne-folest/foot.svg"
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Micro",
  18150. height: math.unit(4, "cm")
  18151. },
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(1.75, "meters")
  18155. },
  18156. {
  18157. name: "Macro",
  18158. height: math.unit(47.5, "meters"),
  18159. default: true
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18165. {
  18166. front: {
  18167. height: math.unit(180, "cm"),
  18168. weight: math.unit(70, "kg"),
  18169. name: "Front",
  18170. image: {
  18171. source: "./media/characters/algier/front.svg",
  18172. extra: 596 / 572,
  18173. bottom: 0.04
  18174. }
  18175. },
  18176. back: {
  18177. height: math.unit(180, "cm"),
  18178. weight: math.unit(70, "kg"),
  18179. name: "Back",
  18180. image: {
  18181. source: "./media/characters/algier/back.svg",
  18182. extra: 596 / 572,
  18183. bottom: 0.025
  18184. }
  18185. },
  18186. frontdressed: {
  18187. height: math.unit(180, "cm"),
  18188. weight: math.unit(150, "kg"),
  18189. name: "Front-dressed",
  18190. image: {
  18191. source: "./media/characters/algier/front-dressed.svg",
  18192. extra: 596 / 572,
  18193. bottom: 0.038
  18194. }
  18195. },
  18196. },
  18197. [
  18198. {
  18199. name: "Micro",
  18200. height: math.unit(5, "cm")
  18201. },
  18202. {
  18203. name: "Normal",
  18204. height: math.unit(180, "cm"),
  18205. default: true
  18206. },
  18207. {
  18208. name: "Macro",
  18209. height: math.unit(64, "m")
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18215. {
  18216. upright: {
  18217. height: math.unit(7, "feet"),
  18218. weight: math.unit(300, "lb"),
  18219. name: "Upright",
  18220. image: {
  18221. source: "./media/characters/pretzel/upright.svg",
  18222. extra: 534 / 522,
  18223. bottom: 0.065
  18224. }
  18225. },
  18226. sprawling: {
  18227. height: math.unit(3.75, "feet"),
  18228. weight: math.unit(300, "lb"),
  18229. name: "Sprawling",
  18230. image: {
  18231. source: "./media/characters/pretzel/sprawling.svg",
  18232. extra: 314 / 281,
  18233. bottom: 0.1
  18234. }
  18235. },
  18236. tongue: {
  18237. height: math.unit(2, "feet"),
  18238. name: "Tongue",
  18239. image: {
  18240. source: "./media/characters/pretzel/tongue.svg"
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(7, "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Oversized",
  18252. height: math.unit(15, "feet")
  18253. },
  18254. {
  18255. name: "Huge",
  18256. height: math.unit(30, "feet")
  18257. },
  18258. {
  18259. name: "Macro",
  18260. height: math.unit(250, "feet")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18266. {
  18267. sideFront: {
  18268. height: math.unit(5 + 2 / 12, "feet"),
  18269. weight: math.unit(120, "lb"),
  18270. name: "Front Side",
  18271. image: {
  18272. source: "./media/characters/roxi/side-front.svg",
  18273. extra: 2924 / 2717,
  18274. bottom: 0.08
  18275. }
  18276. },
  18277. sideBack: {
  18278. height: math.unit(5 + 2 / 12, "feet"),
  18279. weight: math.unit(120, "lb"),
  18280. name: "Back Side",
  18281. image: {
  18282. source: "./media/characters/roxi/side-back.svg",
  18283. extra: 2904 / 2693,
  18284. bottom: 0.06
  18285. }
  18286. },
  18287. front: {
  18288. height: math.unit(5 + 2 / 12, "feet"),
  18289. weight: math.unit(120, "lb"),
  18290. name: "Front",
  18291. image: {
  18292. source: "./media/characters/roxi/front.svg",
  18293. extra: 2028 / 1907,
  18294. bottom: 0.01
  18295. }
  18296. },
  18297. frontAlt: {
  18298. height: math.unit(5 + 2 / 12, "feet"),
  18299. weight: math.unit(120, "lb"),
  18300. name: "Front (Alt)",
  18301. image: {
  18302. source: "./media/characters/roxi/front-alt.svg",
  18303. extra: 1828 / 1798,
  18304. bottom: 0.01
  18305. }
  18306. },
  18307. sitting: {
  18308. height: math.unit(2.8, "feet"),
  18309. weight: math.unit(120, "lb"),
  18310. name: "Sitting",
  18311. image: {
  18312. source: "./media/characters/roxi/sitting.svg",
  18313. extra: 2660 / 2462,
  18314. bottom: 0.1
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(5 + 2 / 12, "feet"),
  18322. default: true
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18328. {
  18329. side: {
  18330. height: math.unit(55, "feet"),
  18331. weight: math.unit(153, "tons"),
  18332. name: "Side",
  18333. image: {
  18334. source: "./media/characters/shadow/side.svg",
  18335. extra: 701 / 628,
  18336. bottom: 0.02
  18337. }
  18338. },
  18339. flying: {
  18340. height: math.unit(145, "feet"),
  18341. weight: math.unit(153, "tons"),
  18342. name: "Flying",
  18343. image: {
  18344. source: "./media/characters/shadow/flying.svg"
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(55, "feet"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(6, "feet"),
  18361. weight: math.unit(200, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/marcie/front.svg",
  18365. extra: 960 / 876,
  18366. bottom: 58 / 1017.87
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Macro",
  18373. height: math.unit(1, "mile"),
  18374. default: true
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(7, "feet"),
  18383. weight: math.unit(200, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/kachina/front.svg",
  18387. extra: 1290.68 / 1119,
  18388. bottom: 36.5 / 1327.18
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(7, "feet"),
  18396. default: true
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18402. {
  18403. looking: {
  18404. height: math.unit(2, "meters"),
  18405. weight: math.unit(300, "kg"),
  18406. name: "Looking",
  18407. image: {
  18408. source: "./media/characters/kash/looking.svg",
  18409. extra: 474 / 344,
  18410. bottom: 0.03
  18411. }
  18412. },
  18413. side: {
  18414. height: math.unit(2, "meters"),
  18415. weight: math.unit(300, "kg"),
  18416. name: "Side",
  18417. image: {
  18418. source: "./media/characters/kash/side.svg",
  18419. extra: 302 / 251,
  18420. bottom: 0.03
  18421. }
  18422. },
  18423. front: {
  18424. height: math.unit(2, "meters"),
  18425. weight: math.unit(300, "kg"),
  18426. name: "Front",
  18427. image: {
  18428. source: "./media/characters/kash/front.svg",
  18429. extra: 495 / 360,
  18430. bottom: 0.015
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Normal",
  18437. height: math.unit(2, "meters"),
  18438. default: true
  18439. },
  18440. {
  18441. name: "Big",
  18442. height: math.unit(3, "meters")
  18443. },
  18444. {
  18445. name: "Large",
  18446. height: math.unit(5, "meters")
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18452. {
  18453. feeding: {
  18454. height: math.unit(6.7, "feet"),
  18455. weight: math.unit(350, "lb"),
  18456. name: "Feeding",
  18457. image: {
  18458. source: "./media/characters/lalim/feeding.svg",
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(6.7, "feet"),
  18466. default: true
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18472. {
  18473. front: {
  18474. height: math.unit(9.5, "feet"),
  18475. weight: math.unit(600, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/de'vout/front.svg",
  18479. extra: 1443 / 1328,
  18480. bottom: 0.025
  18481. }
  18482. },
  18483. back: {
  18484. height: math.unit(9.5, "feet"),
  18485. weight: math.unit(600, "lb"),
  18486. name: "Back",
  18487. image: {
  18488. source: "./media/characters/de'vout/back.svg",
  18489. extra: 1443 / 1328
  18490. }
  18491. },
  18492. frontDressed: {
  18493. height: math.unit(9.5, "feet"),
  18494. weight: math.unit(600, "lb"),
  18495. name: "Front (Dressed",
  18496. image: {
  18497. source: "./media/characters/de'vout/front-dressed.svg",
  18498. extra: 1443 / 1328,
  18499. bottom: 0.025
  18500. }
  18501. },
  18502. backDressed: {
  18503. height: math.unit(9.5, "feet"),
  18504. weight: math.unit(600, "lb"),
  18505. name: "Back (Dressed",
  18506. image: {
  18507. source: "./media/characters/de'vout/back-dressed.svg",
  18508. extra: 1443 / 1328
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(9.5, "feet"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18522. {
  18523. front: {
  18524. height: math.unit(8, "feet"),
  18525. weight: math.unit(225, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/talana/front.svg",
  18529. extra: 1410 / 1300,
  18530. bottom: 0.015
  18531. }
  18532. },
  18533. frontDressed: {
  18534. height: math.unit(8, "feet"),
  18535. weight: math.unit(225, "lb"),
  18536. name: "Front (Dressed",
  18537. image: {
  18538. source: "./media/characters/talana/front-dressed.svg",
  18539. extra: 1410 / 1300,
  18540. bottom: 0.015
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(8, "feet"),
  18548. default: true
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18554. {
  18555. side: {
  18556. height: math.unit(7.2, "feet"),
  18557. weight: math.unit(150, "lb"),
  18558. name: "Side",
  18559. image: {
  18560. source: "./media/characters/xeauvok/side.svg",
  18561. extra: 1975 / 1523,
  18562. bottom: 0.07
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(7.2, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18576. {
  18577. side: {
  18578. height: math.unit(10, "feet"),
  18579. weight: math.unit(900, "kg"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/zara/side.svg",
  18583. extra: 504 / 498
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Normal",
  18590. height: math.unit(10, "feet"),
  18591. default: true
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18597. {
  18598. side: {
  18599. height: math.unit(6, "feet"),
  18600. weight: math.unit(150, "lb"),
  18601. name: "Side",
  18602. image: {
  18603. source: "./media/characters/richard-dragon/side.svg",
  18604. extra: 845 / 340,
  18605. bottom: 0.017
  18606. }
  18607. },
  18608. maw: {
  18609. height: math.unit(2.97, "feet"),
  18610. name: "Maw",
  18611. image: {
  18612. source: "./media/characters/richard-dragon/maw.svg"
  18613. }
  18614. },
  18615. },
  18616. [
  18617. ]
  18618. ))
  18619. characterMakers.push(() => makeCharacter(
  18620. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18621. {
  18622. front: {
  18623. height: math.unit(4, "feet"),
  18624. weight: math.unit(100, "lb"),
  18625. name: "Front",
  18626. image: {
  18627. source: "./media/characters/richard-smeargle/front.svg",
  18628. extra: 2952 / 2820,
  18629. bottom: 0.028
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(4, "feet"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Dynamax",
  18641. height: math.unit(20, "meters")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(6, "feet"),
  18650. weight: math.unit(110, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/klay/front.svg",
  18654. extra: 962 / 883,
  18655. bottom: 0.04
  18656. }
  18657. },
  18658. back: {
  18659. height: math.unit(6, "feet"),
  18660. weight: math.unit(110, "lb"),
  18661. name: "Back",
  18662. image: {
  18663. source: "./media/characters/klay/back.svg",
  18664. extra: 962 / 883
  18665. }
  18666. },
  18667. beans: {
  18668. height: math.unit(1.15, "feet"),
  18669. name: "Beans",
  18670. image: {
  18671. source: "./media/characters/klay/beans.svg"
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Micro",
  18678. height: math.unit(6, "inches")
  18679. },
  18680. {
  18681. name: "Mini",
  18682. height: math.unit(3, "feet")
  18683. },
  18684. {
  18685. name: "Normal",
  18686. height: math.unit(6, "feet"),
  18687. default: true
  18688. },
  18689. {
  18690. name: "Big",
  18691. height: math.unit(25, "feet")
  18692. },
  18693. {
  18694. name: "Macro",
  18695. height: math.unit(100, "feet")
  18696. },
  18697. {
  18698. name: "Megamacro",
  18699. height: math.unit(400, "feet")
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(6, "feet"),
  18708. weight: math.unit(160, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/marcus/front.svg",
  18712. extra: 734 / 676,
  18713. bottom: 0.03
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Little",
  18720. height: math.unit(6, "feet")
  18721. },
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(110, "feet"),
  18725. default: true
  18726. },
  18727. {
  18728. name: "Macro",
  18729. height: math.unit(250, "feet")
  18730. },
  18731. {
  18732. name: "Megamacro",
  18733. height: math.unit(1000, "feet")
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18739. {
  18740. front: {
  18741. height: math.unit(7, "feet"),
  18742. weight: math.unit(275, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/claude-delroute/front.svg",
  18746. extra: 902/827,
  18747. bottom: 26/928
  18748. }
  18749. },
  18750. side: {
  18751. height: math.unit(7, "feet"),
  18752. weight: math.unit(275, "lb"),
  18753. name: "Side",
  18754. image: {
  18755. source: "./media/characters/claude-delroute/side.svg",
  18756. extra: 908/853,
  18757. bottom: 16/924
  18758. }
  18759. },
  18760. back: {
  18761. height: math.unit(7, "feet"),
  18762. weight: math.unit(275, "lb"),
  18763. name: "Back",
  18764. image: {
  18765. source: "./media/characters/claude-delroute/back.svg",
  18766. extra: 911/829,
  18767. bottom: 18/929
  18768. }
  18769. },
  18770. maw: {
  18771. height: math.unit(0.6407, "meters"),
  18772. name: "Maw",
  18773. image: {
  18774. source: "./media/characters/claude-delroute/maw.svg"
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(7, "feet"),
  18782. default: true
  18783. },
  18784. {
  18785. name: "Lorge",
  18786. height: math.unit(20, "feet")
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18792. {
  18793. front: {
  18794. height: math.unit(8 + 4 / 12, "feet"),
  18795. weight: math.unit(600, "lb"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/dragonien/front.svg",
  18799. extra: 100 / 94,
  18800. bottom: 3.3 / 103.3445
  18801. }
  18802. },
  18803. back: {
  18804. height: math.unit(8 + 4 / 12, "feet"),
  18805. weight: math.unit(600, "lb"),
  18806. name: "Back",
  18807. image: {
  18808. source: "./media/characters/dragonien/back.svg",
  18809. extra: 776 / 746,
  18810. bottom: 6.4 / 782.0616
  18811. }
  18812. },
  18813. foot: {
  18814. height: math.unit(1.54, "feet"),
  18815. name: "Foot",
  18816. image: {
  18817. source: "./media/characters/dragonien/foot.svg",
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(8 + 4 / 12, "feet"),
  18825. default: true
  18826. },
  18827. {
  18828. name: "Macro",
  18829. height: math.unit(200, "feet")
  18830. },
  18831. {
  18832. name: "Megamacro",
  18833. height: math.unit(1, "mile")
  18834. },
  18835. {
  18836. name: "Gigamacro",
  18837. height: math.unit(1000, "miles")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(5 + 2 / 12, "feet"),
  18846. weight: math.unit(110, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/desta/front.svg",
  18850. extra: 767 / 726,
  18851. bottom: 11.7 / 779
  18852. }
  18853. },
  18854. back: {
  18855. height: math.unit(5 + 2 / 12, "feet"),
  18856. weight: math.unit(110, "lb"),
  18857. name: "Back",
  18858. image: {
  18859. source: "./media/characters/desta/back.svg",
  18860. extra: 777 / 728,
  18861. bottom: 6 / 784
  18862. }
  18863. },
  18864. frontAlt: {
  18865. height: math.unit(5 + 2 / 12, "feet"),
  18866. weight: math.unit(110, "lb"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/desta/front-alt.svg",
  18870. extra: 1482 / 1417
  18871. }
  18872. },
  18873. side: {
  18874. height: math.unit(5 + 2 / 12, "feet"),
  18875. weight: math.unit(110, "lb"),
  18876. name: "Side",
  18877. image: {
  18878. source: "./media/characters/desta/side.svg",
  18879. extra: 2579 / 2491,
  18880. bottom: 0.053
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Micro",
  18887. height: math.unit(6, "inches")
  18888. },
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(5 + 2 / 12, "feet"),
  18892. default: true
  18893. },
  18894. {
  18895. name: "Macro",
  18896. height: math.unit(62, "feet")
  18897. },
  18898. {
  18899. name: "Megamacro",
  18900. height: math.unit(1800, "feet")
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18906. {
  18907. front: {
  18908. height: math.unit(10, "feet"),
  18909. weight: math.unit(700, "lb"),
  18910. name: "Front",
  18911. image: {
  18912. source: "./media/characters/storm-alystar/front.svg",
  18913. extra: 2112 / 1898,
  18914. bottom: 0.034
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Micro",
  18921. height: math.unit(3.5, "inches")
  18922. },
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(10, "feet"),
  18926. default: true
  18927. },
  18928. {
  18929. name: "Macro",
  18930. height: math.unit(400, "feet")
  18931. },
  18932. {
  18933. name: "Deific",
  18934. height: math.unit(60, "miles")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(2.35, "meters"),
  18943. weight: math.unit(119, "kg"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/ilia/front.svg",
  18947. extra: 1285 / 1255,
  18948. bottom: 0.06
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(2.35, "meters")
  18956. },
  18957. {
  18958. name: "Macro",
  18959. height: math.unit(140, "meters"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Megamacro",
  18964. height: math.unit(100, "miles")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(6 + 5 / 12, "feet"),
  18973. weight: math.unit(190, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/kingdead/front.svg",
  18977. extra: 1228 / 1177
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Micro",
  18984. height: math.unit(7, "inches")
  18985. },
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(6 + 5 / 12, "feet")
  18989. },
  18990. {
  18991. name: "Macro",
  18992. height: math.unit(150, "feet"),
  18993. default: true
  18994. },
  18995. {
  18996. name: "Megamacro",
  18997. height: math.unit(200, "miles")
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(8, "feet"),
  19006. weight: math.unit(600, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/kyrehx/front.svg",
  19010. extra: 1195 / 1095,
  19011. bottom: 0.034
  19012. }
  19013. },
  19014. },
  19015. [
  19016. {
  19017. name: "Micro",
  19018. height: math.unit(2, "inches")
  19019. },
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(8, "feet"),
  19023. default: true
  19024. },
  19025. {
  19026. name: "Macro",
  19027. height: math.unit(255, "feet")
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19033. {
  19034. front: {
  19035. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19036. weight: math.unit(184, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/xang/front.svg",
  19040. extra: 845 / 755
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19048. default: true
  19049. },
  19050. {
  19051. name: "Macro",
  19052. height: math.unit(0.935 * 146, "feet")
  19053. },
  19054. {
  19055. name: "Megamacro",
  19056. height: math.unit(0.935 * 3, "miles")
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19062. {
  19063. frontDressed: {
  19064. height: math.unit(5 + 7 / 12, "feet"),
  19065. weight: math.unit(140, "lb"),
  19066. name: "Front (Dressed)",
  19067. image: {
  19068. source: "./media/characters/doc-weardno/front-dressed.svg",
  19069. extra: 263 / 234
  19070. }
  19071. },
  19072. backDressed: {
  19073. height: math.unit(5 + 7 / 12, "feet"),
  19074. weight: math.unit(140, "lb"),
  19075. name: "Back (Dressed)",
  19076. image: {
  19077. source: "./media/characters/doc-weardno/back-dressed.svg",
  19078. extra: 266 / 238
  19079. }
  19080. },
  19081. front: {
  19082. height: math.unit(5 + 7 / 12, "feet"),
  19083. weight: math.unit(140, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/doc-weardno/front.svg",
  19087. extra: 254 / 233
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Micro",
  19094. height: math.unit(3, "inches")
  19095. },
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(5 + 7 / 12, "feet"),
  19099. default: true
  19100. },
  19101. {
  19102. name: "Macro",
  19103. height: math.unit(25, "feet")
  19104. },
  19105. {
  19106. name: "Megamacro",
  19107. height: math.unit(2, "miles")
  19108. },
  19109. ]
  19110. ))
  19111. characterMakers.push(() => makeCharacter(
  19112. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19113. {
  19114. front: {
  19115. height: math.unit(6 + 2 / 12, "feet"),
  19116. weight: math.unit(153, "lb"),
  19117. name: "Front",
  19118. image: {
  19119. source: "./media/characters/seth-whilst/front.svg",
  19120. bottom: 0.07
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Micro",
  19127. height: math.unit(5, "inches")
  19128. },
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(6 + 2 / 12, "feet"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(3, "inches"),
  19141. weight: math.unit(8, "grams"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/pocket-jabari/front.svg",
  19145. extra: 1024 / 974,
  19146. bottom: 0.039
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Minimicro",
  19153. height: math.unit(8, "mm")
  19154. },
  19155. {
  19156. name: "Micro",
  19157. height: math.unit(3, "inches"),
  19158. default: true
  19159. },
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(3, "feet")
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(15, "feet"),
  19171. weight: math.unit(3280, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/sapphy/front.svg",
  19175. extra: 671 / 577,
  19176. bottom: 0.085
  19177. }
  19178. },
  19179. back: {
  19180. height: math.unit(15, "feet"),
  19181. weight: math.unit(3280, "lb"),
  19182. name: "Back",
  19183. image: {
  19184. source: "./media/characters/sapphy/back.svg",
  19185. extra: 631 / 607,
  19186. bottom: 0.045
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(15, "feet")
  19194. },
  19195. {
  19196. name: "Casual Macro",
  19197. height: math.unit(120, "feet")
  19198. },
  19199. {
  19200. name: "Macro",
  19201. height: math.unit(2150, "feet"),
  19202. default: true
  19203. },
  19204. {
  19205. name: "Megamacro",
  19206. height: math.unit(8, "miles")
  19207. },
  19208. {
  19209. name: "Galaxy Mom",
  19210. height: math.unit(6, "megalightyears")
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(6, "feet"),
  19219. weight: math.unit(170, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/kiro/front.svg",
  19223. extra: 1064 / 1012,
  19224. bottom: 0.052
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Micro",
  19231. height: math.unit(6, "inches")
  19232. },
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(6, "feet"),
  19236. default: true
  19237. },
  19238. {
  19239. name: "Macro",
  19240. height: math.unit(72, "feet")
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(5 + 9 / 12, "feet"),
  19249. weight: math.unit(175, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/irishfox/front.svg",
  19253. extra: 1912 / 1680,
  19254. bottom: 0.02
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Nano",
  19261. height: math.unit(1, "mm")
  19262. },
  19263. {
  19264. name: "Micro",
  19265. height: math.unit(2, "inches")
  19266. },
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(5 + 9 / 12, "feet"),
  19270. default: true
  19271. },
  19272. {
  19273. name: "Macro",
  19274. height: math.unit(45, "feet")
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(6 + 1 / 12, "feet"),
  19283. weight: math.unit(75, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/aronai-sieyes/front.svg",
  19287. extra: 1532/1450,
  19288. bottom: 42/1574
  19289. }
  19290. },
  19291. side: {
  19292. height: math.unit(6 + 1 / 12, "feet"),
  19293. weight: math.unit(75, "lb"),
  19294. name: "Side",
  19295. image: {
  19296. source: "./media/characters/aronai-sieyes/side.svg",
  19297. extra: 1422/1365,
  19298. bottom: 148/1570
  19299. }
  19300. },
  19301. back: {
  19302. height: math.unit(6 + 1 / 12, "feet"),
  19303. weight: math.unit(75, "lb"),
  19304. name: "Back",
  19305. image: {
  19306. source: "./media/characters/aronai-sieyes/back.svg",
  19307. extra: 1526/1464,
  19308. bottom: 51/1577
  19309. }
  19310. },
  19311. dressed: {
  19312. height: math.unit(6 + 1 / 12, "feet"),
  19313. weight: math.unit(75, "lb"),
  19314. name: "Dressed",
  19315. image: {
  19316. source: "./media/characters/aronai-sieyes/dressed.svg",
  19317. extra: 1559/1483,
  19318. bottom: 39/1598
  19319. }
  19320. },
  19321. slit: {
  19322. height: math.unit(1.3, "feet"),
  19323. name: "Slit",
  19324. image: {
  19325. source: "./media/characters/aronai-sieyes/slit.svg"
  19326. }
  19327. },
  19328. slitSpread: {
  19329. height: math.unit(0.9, "feet"),
  19330. name: "Slit (Spread)",
  19331. image: {
  19332. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19333. }
  19334. },
  19335. rump: {
  19336. height: math.unit(1.3, "feet"),
  19337. name: "Rump",
  19338. image: {
  19339. source: "./media/characters/aronai-sieyes/rump.svg"
  19340. }
  19341. },
  19342. maw: {
  19343. height: math.unit(1.25, "feet"),
  19344. name: "Maw",
  19345. image: {
  19346. source: "./media/characters/aronai-sieyes/maw.svg"
  19347. }
  19348. },
  19349. feral: {
  19350. height: math.unit(18, "feet"),
  19351. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19352. name: "Feral",
  19353. image: {
  19354. source: "./media/characters/aronai-sieyes/feral.svg",
  19355. extra: 1530 / 1240,
  19356. bottom: 0.035
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Micro",
  19363. height: math.unit(2, "inches")
  19364. },
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(6 + 1 / 12, "feet"),
  19368. default: true
  19369. }
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(12, "feet"),
  19377. weight: math.unit(410, "kg"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/xuna/front.svg",
  19381. extra: 2184 / 1980
  19382. }
  19383. },
  19384. side: {
  19385. height: math.unit(12, "feet"),
  19386. weight: math.unit(410, "kg"),
  19387. name: "Side",
  19388. image: {
  19389. source: "./media/characters/xuna/side.svg",
  19390. extra: 2184 / 1980
  19391. }
  19392. },
  19393. back: {
  19394. height: math.unit(12, "feet"),
  19395. weight: math.unit(410, "kg"),
  19396. name: "Back",
  19397. image: {
  19398. source: "./media/characters/xuna/back.svg",
  19399. extra: 2184 / 1980
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Nano glow",
  19406. height: math.unit(10, "nm")
  19407. },
  19408. {
  19409. name: "Micro floof",
  19410. height: math.unit(0.3, "m")
  19411. },
  19412. {
  19413. name: "Huggable softy boi",
  19414. height: math.unit(3.6576, "m"),
  19415. default: true
  19416. },
  19417. {
  19418. name: "Admirable floof",
  19419. height: math.unit(80, "meters")
  19420. },
  19421. {
  19422. name: "Gentle macro",
  19423. height: math.unit(300, "meters")
  19424. },
  19425. {
  19426. name: "Very careful floof",
  19427. height: math.unit(3200, "meters")
  19428. },
  19429. {
  19430. name: "The mega floof",
  19431. height: math.unit(36000, "meters")
  19432. },
  19433. {
  19434. name: "Giga-fur-Wicker",
  19435. height: math.unit(4800000, "meters")
  19436. },
  19437. {
  19438. name: "Licky world",
  19439. height: math.unit(20000000, "meters")
  19440. },
  19441. {
  19442. name: "Floofy cyan sun",
  19443. height: math.unit(1500000000, "meters")
  19444. },
  19445. {
  19446. name: "Milky Wicker",
  19447. height: math.unit(1000000000000000000000, "meters")
  19448. },
  19449. {
  19450. name: "The observing Wicker",
  19451. height: math.unit(999999999999999999999999999, "meters")
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(5 + 9 / 12, "feet"),
  19460. weight: math.unit(150, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/arokha-sieyes/front.svg",
  19464. extra: 1425 / 1284,
  19465. bottom: 0.05
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(5 + 9 / 12, "feet")
  19473. },
  19474. {
  19475. name: "Macro",
  19476. height: math.unit(30, "meters"),
  19477. default: true
  19478. },
  19479. ]
  19480. ))
  19481. characterMakers.push(() => makeCharacter(
  19482. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19483. {
  19484. front: {
  19485. height: math.unit(6, "feet"),
  19486. weight: math.unit(180, "lb"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/arokh-sieyes/front.svg",
  19490. extra: 1830 / 1769,
  19491. bottom: 0.01
  19492. }
  19493. },
  19494. },
  19495. [
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(6, "feet")
  19499. },
  19500. {
  19501. name: "Macro",
  19502. height: math.unit(30, "meters"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19509. {
  19510. side: {
  19511. height: math.unit(13 + 1 / 12, "feet"),
  19512. weight: math.unit(8.5, "tonnes"),
  19513. name: "Side",
  19514. image: {
  19515. source: "./media/characters/goldeneye/side.svg",
  19516. extra: 1182 / 778,
  19517. bottom: 0.067
  19518. }
  19519. },
  19520. paw: {
  19521. height: math.unit(3.4, "feet"),
  19522. name: "Paw",
  19523. image: {
  19524. source: "./media/characters/goldeneye/paw.svg"
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(13 + 1 / 12, "feet"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19538. {
  19539. front: {
  19540. height: math.unit(6 + 1 / 12, "feet"),
  19541. weight: math.unit(210, "lb"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/leonardo-lycheborne/front.svg",
  19545. extra: 776/723,
  19546. bottom: 34/810
  19547. }
  19548. },
  19549. side: {
  19550. height: math.unit(6 + 1 / 12, "feet"),
  19551. weight: math.unit(210, "lb"),
  19552. name: "Side",
  19553. image: {
  19554. source: "./media/characters/leonardo-lycheborne/side.svg",
  19555. extra: 780/728,
  19556. bottom: 12/792
  19557. }
  19558. },
  19559. back: {
  19560. height: math.unit(6 + 1 / 12, "feet"),
  19561. weight: math.unit(210, "lb"),
  19562. name: "Back",
  19563. image: {
  19564. source: "./media/characters/leonardo-lycheborne/back.svg",
  19565. extra: 775/721,
  19566. bottom: 17/792
  19567. }
  19568. },
  19569. hand: {
  19570. height: math.unit(1.08, "feet"),
  19571. name: "Hand",
  19572. image: {
  19573. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19574. }
  19575. },
  19576. foot: {
  19577. height: math.unit(1.32, "feet"),
  19578. name: "Foot",
  19579. image: {
  19580. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19581. }
  19582. },
  19583. maw: {
  19584. height: math.unit(1, "feet"),
  19585. name: "Maw",
  19586. image: {
  19587. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19588. }
  19589. },
  19590. were: {
  19591. height: math.unit(20, "feet"),
  19592. weight: math.unit(7800, "lb"),
  19593. name: "Were",
  19594. image: {
  19595. source: "./media/characters/leonardo-lycheborne/were.svg",
  19596. extra: 1224/1165,
  19597. bottom: 72/1296
  19598. }
  19599. },
  19600. feral: {
  19601. height: math.unit(7.5, "feet"),
  19602. weight: math.unit(600, "lb"),
  19603. name: "Feral",
  19604. image: {
  19605. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19606. extra: 797/702,
  19607. bottom: 139/936
  19608. }
  19609. },
  19610. taur: {
  19611. height: math.unit(11, "feet"),
  19612. weight: math.unit(3300, "lb"),
  19613. name: "Taur",
  19614. image: {
  19615. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19616. extra: 1271/1197,
  19617. bottom: 47/1318
  19618. }
  19619. },
  19620. barghest: {
  19621. height: math.unit(11, "feet"),
  19622. weight: math.unit(1300, "lb"),
  19623. name: "Barghest",
  19624. image: {
  19625. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19626. extra: 1291/1204,
  19627. bottom: 37/1328
  19628. }
  19629. },
  19630. dick: {
  19631. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19632. name: "Dick",
  19633. image: {
  19634. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19635. }
  19636. },
  19637. dickWere: {
  19638. height: math.unit((20) / 3.8, "feet"),
  19639. name: "Dick (Were)",
  19640. image: {
  19641. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(6 + 1 / 12, "feet"),
  19649. default: true
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(10, "feet"),
  19658. weight: math.unit(350, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/jet/front.svg",
  19662. extra: 2050 / 1980,
  19663. bottom: 0.013
  19664. }
  19665. },
  19666. back: {
  19667. height: math.unit(10, "feet"),
  19668. weight: math.unit(350, "lb"),
  19669. name: "Back",
  19670. image: {
  19671. source: "./media/characters/jet/back.svg",
  19672. extra: 2050 / 1980,
  19673. bottom: 0.013
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Micro",
  19680. height: math.unit(6, "inches")
  19681. },
  19682. {
  19683. name: "Normal",
  19684. height: math.unit(10, "feet"),
  19685. default: true
  19686. },
  19687. {
  19688. name: "Macro",
  19689. height: math.unit(100, "feet")
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19695. {
  19696. front: {
  19697. height: math.unit(15, "feet"),
  19698. weight: math.unit(2800, "lb"),
  19699. name: "Front",
  19700. image: {
  19701. source: "./media/characters/tanarath/front.svg",
  19702. extra: 2392 / 2220,
  19703. bottom: 0.03
  19704. }
  19705. },
  19706. back: {
  19707. height: math.unit(15, "feet"),
  19708. weight: math.unit(2800, "lb"),
  19709. name: "Back",
  19710. image: {
  19711. source: "./media/characters/tanarath/back.svg",
  19712. extra: 2392 / 2220,
  19713. bottom: 0.03
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(15, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(7 + 1 / 12, "feet"),
  19730. weight: math.unit(175, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/patty-cattybatty/front.svg",
  19734. extra: 908 / 874,
  19735. bottom: 0.025
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Micro",
  19742. height: math.unit(1, "inch")
  19743. },
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(7 + 1 / 12, "feet")
  19747. },
  19748. {
  19749. name: "Mini Macro",
  19750. height: math.unit(155, "feet")
  19751. },
  19752. {
  19753. name: "Macro",
  19754. height: math.unit(1077, "feet")
  19755. },
  19756. {
  19757. name: "Mega Macro",
  19758. height: math.unit(47650, "feet"),
  19759. default: true
  19760. },
  19761. {
  19762. name: "Giga Macro",
  19763. height: math.unit(440, "miles")
  19764. },
  19765. {
  19766. name: "Tera Macro",
  19767. height: math.unit(8700, "miles")
  19768. },
  19769. {
  19770. name: "Planetary Macro",
  19771. height: math.unit(32700, "miles")
  19772. },
  19773. {
  19774. name: "Solar Macro",
  19775. height: math.unit(550000, "miles")
  19776. },
  19777. {
  19778. name: "Celestial Macro",
  19779. height: math.unit(2.5, "AU")
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19785. {
  19786. front: {
  19787. height: math.unit(4 + 5 / 12, "feet"),
  19788. weight: math.unit(90, "lb"),
  19789. name: "Front",
  19790. image: {
  19791. source: "./media/characters/cappu/front.svg",
  19792. extra: 1247 / 1152,
  19793. bottom: 0.012
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(4 + 5 / 12, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19807. {
  19808. frontDressed: {
  19809. height: math.unit(70, "cm"),
  19810. weight: math.unit(6, "kg"),
  19811. name: "Front (Dressed)",
  19812. image: {
  19813. source: "./media/characters/sebi/front-dressed.svg",
  19814. extra: 713.5 / 686.5,
  19815. bottom: 0.003
  19816. }
  19817. },
  19818. front: {
  19819. height: math.unit(70, "cm"),
  19820. weight: math.unit(5, "kg"),
  19821. name: "Front",
  19822. image: {
  19823. source: "./media/characters/sebi/front.svg",
  19824. extra: 713.5 / 686.5,
  19825. bottom: 0.003
  19826. }
  19827. }
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(70, "cm"),
  19833. default: true
  19834. },
  19835. {
  19836. name: "Macro",
  19837. height: math.unit(8, "meters")
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(6, "feet"),
  19846. weight: math.unit(150, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/typhek/front.svg",
  19850. extra: 1948 / 1929,
  19851. bottom: 0.025
  19852. }
  19853. },
  19854. side: {
  19855. height: math.unit(6, "feet"),
  19856. weight: math.unit(150, "lb"),
  19857. name: "Side",
  19858. image: {
  19859. source: "./media/characters/typhek/side.svg",
  19860. extra: 2034 / 2010,
  19861. bottom: 0.003
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(6, "feet"),
  19866. weight: math.unit(150, "lb"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/typhek/back.svg",
  19870. extra: 2005 / 1978,
  19871. bottom: 0.004
  19872. }
  19873. },
  19874. palm: {
  19875. height: math.unit(1.2, "feet"),
  19876. name: "Palm",
  19877. image: {
  19878. source: "./media/characters/typhek/palm.svg"
  19879. }
  19880. },
  19881. fist: {
  19882. height: math.unit(1.1, "feet"),
  19883. name: "Fist",
  19884. image: {
  19885. source: "./media/characters/typhek/fist.svg"
  19886. }
  19887. },
  19888. foot: {
  19889. height: math.unit(1.57, "feet"),
  19890. name: "Foot",
  19891. image: {
  19892. source: "./media/characters/typhek/foot.svg"
  19893. }
  19894. },
  19895. sole: {
  19896. height: math.unit(2.05, "feet"),
  19897. name: "Sole",
  19898. image: {
  19899. source: "./media/characters/typhek/sole.svg"
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Macro",
  19906. height: math.unit(40, "stories"),
  19907. default: true
  19908. },
  19909. {
  19910. name: "Megamacro",
  19911. height: math.unit(1, "mile")
  19912. },
  19913. {
  19914. name: "Gigamacro",
  19915. height: math.unit(4000, "solarradii")
  19916. },
  19917. {
  19918. name: "Universal",
  19919. height: math.unit(1.1, "universes")
  19920. }
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19925. {
  19926. side: {
  19927. height: math.unit(5 + 7 / 12, "feet"),
  19928. weight: math.unit(150, "lb"),
  19929. name: "Side",
  19930. image: {
  19931. source: "./media/characters/kassy/side.svg",
  19932. extra: 1280 / 1225,
  19933. bottom: 0.002
  19934. }
  19935. },
  19936. front: {
  19937. height: math.unit(5 + 7 / 12, "feet"),
  19938. weight: math.unit(150, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/kassy/front.svg",
  19942. extra: 1280 / 1225,
  19943. bottom: 0.025
  19944. }
  19945. },
  19946. back: {
  19947. height: math.unit(5 + 7 / 12, "feet"),
  19948. weight: math.unit(150, "lb"),
  19949. name: "Back",
  19950. image: {
  19951. source: "./media/characters/kassy/back.svg",
  19952. extra: 1280 / 1225,
  19953. bottom: 0.002
  19954. }
  19955. },
  19956. foot: {
  19957. height: math.unit(1.266, "feet"),
  19958. name: "Foot",
  19959. image: {
  19960. source: "./media/characters/kassy/foot.svg"
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(5 + 7 / 12, "feet")
  19968. },
  19969. {
  19970. name: "Macro",
  19971. height: math.unit(137, "feet"),
  19972. default: true
  19973. },
  19974. {
  19975. name: "Megamacro",
  19976. height: math.unit(1, "mile")
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(6 + 1 / 12, "feet"),
  19985. weight: math.unit(200, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/neil/front.svg",
  19989. extra: 1326 / 1250,
  19990. bottom: 0.023
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(6 + 1 / 12, "feet"),
  19998. default: true
  19999. },
  20000. {
  20001. name: "Macro",
  20002. height: math.unit(200, "feet")
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(5 + 9 / 12, "feet"),
  20011. weight: math.unit(190, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/atticus/front.svg",
  20015. extra: 2934 / 2785,
  20016. bottom: 0.025
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(5 + 9 / 12, "feet"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Macro",
  20028. height: math.unit(180, "feet")
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20034. {
  20035. side: {
  20036. height: math.unit(9, "feet"),
  20037. weight: math.unit(650, "lb"),
  20038. name: "Side",
  20039. image: {
  20040. source: "./media/characters/milo/side.svg",
  20041. extra: 2644 / 2310,
  20042. bottom: 0.032
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(9, "feet"),
  20050. default: true
  20051. },
  20052. {
  20053. name: "Macro",
  20054. height: math.unit(300, "feet")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20060. {
  20061. side: {
  20062. height: math.unit(8, "meters"),
  20063. weight: math.unit(90000, "kg"),
  20064. name: "Side",
  20065. image: {
  20066. source: "./media/characters/ijzer/side.svg",
  20067. extra: 2756 / 1600,
  20068. bottom: 0.01
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Small",
  20075. height: math.unit(3, "meters")
  20076. },
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(8, "meters"),
  20080. default: true
  20081. },
  20082. {
  20083. name: "Normal+",
  20084. height: math.unit(10, "meters")
  20085. },
  20086. {
  20087. name: "Bigger",
  20088. height: math.unit(24, "meters")
  20089. },
  20090. {
  20091. name: "Huge",
  20092. height: math.unit(80, "meters")
  20093. },
  20094. ]
  20095. ))
  20096. characterMakers.push(() => makeCharacter(
  20097. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20098. {
  20099. front: {
  20100. height: math.unit(6 + 2 / 12, "feet"),
  20101. weight: math.unit(153, "lb"),
  20102. name: "Front",
  20103. image: {
  20104. source: "./media/characters/luca-cervicum/front.svg",
  20105. extra: 370 / 327,
  20106. bottom: 0.015
  20107. }
  20108. },
  20109. back: {
  20110. height: math.unit(6 + 2 / 12, "feet"),
  20111. weight: math.unit(153, "lb"),
  20112. name: "Back",
  20113. image: {
  20114. source: "./media/characters/luca-cervicum/back.svg",
  20115. extra: 367 / 333,
  20116. bottom: 0.005
  20117. }
  20118. },
  20119. frontGear: {
  20120. height: math.unit(6 + 2 / 12, "feet"),
  20121. weight: math.unit(173, "lb"),
  20122. name: "Front (Gear)",
  20123. image: {
  20124. source: "./media/characters/luca-cervicum/front-gear.svg",
  20125. extra: 377 / 333,
  20126. bottom: 0.006
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(6 + 2 / 12, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(6 + 1 / 12, "feet"),
  20143. weight: math.unit(304, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/oliver/front.svg",
  20147. extra: 157 / 143,
  20148. bottom: 0.08
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(6 + 1 / 12, "feet"),
  20156. default: true
  20157. },
  20158. ]
  20159. ))
  20160. characterMakers.push(() => makeCharacter(
  20161. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20162. {
  20163. front: {
  20164. height: math.unit(5 + 7 / 12, "feet"),
  20165. weight: math.unit(140, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/shane/front.svg",
  20169. extra: 304 / 289,
  20170. bottom: 0.005
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(5 + 7 / 12, "feet"),
  20178. default: true
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(5 + 9 / 12, "feet"),
  20187. weight: math.unit(178, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/shin/front.svg",
  20191. extra: 159 / 151,
  20192. bottom: 0.015
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 9 / 12, "feet"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20206. {
  20207. front: {
  20208. height: math.unit(5 + 10 / 12, "feet"),
  20209. weight: math.unit(168, "lb"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/xerxes/front.svg",
  20213. extra: 282 / 260,
  20214. bottom: 0.045
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(5 + 10 / 12, "feet"),
  20222. default: true
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20228. {
  20229. front: {
  20230. height: math.unit(6 + 7 / 12, "feet"),
  20231. weight: math.unit(208, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/chaska/front.svg",
  20235. extra: 332 / 319,
  20236. bottom: 0.015
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Normal",
  20243. height: math.unit(6 + 7 / 12, "feet"),
  20244. default: true
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(5 + 8 / 12, "feet"),
  20253. weight: math.unit(208, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/enuk/front.svg",
  20257. extra: 437 / 406,
  20258. bottom: 0.02
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(5 + 8 / 12, "feet"),
  20266. default: true
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(5 + 10 / 12, "feet"),
  20275. weight: math.unit(252, "lb"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/bruun/front.svg",
  20279. extra: 197 / 187,
  20280. bottom: 0.012
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(5 + 10 / 12, "feet"),
  20288. default: true
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20294. {
  20295. front: {
  20296. height: math.unit(6 + 10 / 12, "feet"),
  20297. weight: math.unit(255, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/alexeev/front.svg",
  20301. extra: 213 / 200,
  20302. bottom: 0.05
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(6 + 10 / 12, "feet"),
  20310. default: true
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(2 + 8 / 12, "feet"),
  20319. weight: math.unit(22, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/evelyn/front.svg",
  20323. extra: 208 / 180
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(2 + 8 / 12, "feet"),
  20331. default: true
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20337. {
  20338. front: {
  20339. height: math.unit(5 + 9 / 12, "feet"),
  20340. weight: math.unit(139, "lb"),
  20341. name: "Front",
  20342. image: {
  20343. source: "./media/characters/inca/front.svg",
  20344. extra: 294 / 291,
  20345. bottom: 0.03
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(5 + 9 / 12, "feet"),
  20353. default: true
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(6 + 3 / 12, "feet"),
  20362. weight: math.unit(185, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/mera/front.svg",
  20366. extra: 291 / 277,
  20367. bottom: 0.03
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(6 + 3 / 12, "feet"),
  20375. default: true
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20381. {
  20382. front: {
  20383. height: math.unit(6 + 7 / 12, "feet"),
  20384. weight: math.unit(160, "lb"),
  20385. name: "Front",
  20386. image: {
  20387. source: "./media/characters/ceres/front.svg",
  20388. extra: 1023 / 950,
  20389. bottom: 0.027
  20390. }
  20391. },
  20392. back: {
  20393. height: math.unit(6 + 7 / 12, "feet"),
  20394. weight: math.unit(160, "lb"),
  20395. name: "Back",
  20396. image: {
  20397. source: "./media/characters/ceres/back.svg",
  20398. extra: 1023 / 950
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(6 + 7 / 12, "feet"),
  20406. default: true
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20412. {
  20413. front: {
  20414. height: math.unit(5 + 10 / 12, "feet"),
  20415. weight: math.unit(150, "lb"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/kris/front.svg",
  20419. extra: 885 / 803,
  20420. bottom: 0.03
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Normal",
  20427. height: math.unit(5 + 10 / 12, "feet"),
  20428. default: true
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(7, "feet"),
  20437. weight: math.unit(120, "kg"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/taluthus/front.svg",
  20441. extra: 903 / 833,
  20442. bottom: 0.015
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(7, "feet"),
  20450. default: true
  20451. },
  20452. {
  20453. name: "Macro",
  20454. height: math.unit(300, "feet")
  20455. },
  20456. ]
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(5 + 9 / 12, "feet"),
  20463. weight: math.unit(145, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/dawn/front.svg",
  20467. extra: 2094 / 2016,
  20468. bottom: 0.025
  20469. }
  20470. },
  20471. back: {
  20472. height: math.unit(5 + 9 / 12, "feet"),
  20473. weight: math.unit(160, "lb"),
  20474. name: "Back",
  20475. image: {
  20476. source: "./media/characters/dawn/back.svg",
  20477. extra: 2112 / 2080,
  20478. bottom: 0.005
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(6 + 7 / 12, "feet"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20492. {
  20493. anthro: {
  20494. height: math.unit(8 + 3 / 12, "feet"),
  20495. weight: math.unit(450, "lb"),
  20496. name: "Anthro",
  20497. image: {
  20498. source: "./media/characters/arador/anthro.svg",
  20499. extra: 1835 / 1718,
  20500. bottom: 0.025
  20501. }
  20502. },
  20503. feral: {
  20504. height: math.unit(4, "feet"),
  20505. weight: math.unit(200, "lb"),
  20506. name: "Feral",
  20507. image: {
  20508. source: "./media/characters/arador/feral.svg",
  20509. extra: 1683 / 1514,
  20510. bottom: 0.07
  20511. }
  20512. },
  20513. },
  20514. [
  20515. {
  20516. name: "Normal",
  20517. height: math.unit(8 + 3 / 12, "feet")
  20518. },
  20519. {
  20520. name: "Macro",
  20521. height: math.unit(82.5, "feet"),
  20522. default: true
  20523. },
  20524. ]
  20525. ))
  20526. characterMakers.push(() => makeCharacter(
  20527. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20528. {
  20529. front: {
  20530. height: math.unit(5 + 10 / 12, "feet"),
  20531. weight: math.unit(125, "lb"),
  20532. name: "Front",
  20533. image: {
  20534. source: "./media/characters/dharsi/front.svg",
  20535. extra: 716 / 630,
  20536. bottom: 0.035
  20537. }
  20538. },
  20539. },
  20540. [
  20541. {
  20542. name: "Nano",
  20543. height: math.unit(100, "nm")
  20544. },
  20545. {
  20546. name: "Micro",
  20547. height: math.unit(2, "inches")
  20548. },
  20549. {
  20550. name: "Normal",
  20551. height: math.unit(5 + 10 / 12, "feet"),
  20552. default: true
  20553. },
  20554. {
  20555. name: "Macro",
  20556. height: math.unit(1000, "feet")
  20557. },
  20558. {
  20559. name: "Megamacro",
  20560. height: math.unit(10, "miles")
  20561. },
  20562. {
  20563. name: "Gigamacro",
  20564. height: math.unit(3000, "miles")
  20565. },
  20566. {
  20567. name: "Teramacro",
  20568. height: math.unit(500000, "miles")
  20569. },
  20570. {
  20571. name: "Teramacro+",
  20572. height: math.unit(30, "galaxies")
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20578. {
  20579. front: {
  20580. height: math.unit(6, "feet"),
  20581. weight: math.unit(150, "lb"),
  20582. name: "Front",
  20583. image: {
  20584. source: "./media/characters/deathy/front.svg",
  20585. extra: 1552 / 1463,
  20586. bottom: 0.025
  20587. }
  20588. },
  20589. side: {
  20590. height: math.unit(6, "feet"),
  20591. weight: math.unit(150, "lb"),
  20592. name: "Side",
  20593. image: {
  20594. source: "./media/characters/deathy/side.svg",
  20595. extra: 1604 / 1455,
  20596. bottom: 0.025
  20597. }
  20598. },
  20599. back: {
  20600. height: math.unit(6, "feet"),
  20601. weight: math.unit(150, "lb"),
  20602. name: "Back",
  20603. image: {
  20604. source: "./media/characters/deathy/back.svg",
  20605. extra: 1580 / 1463,
  20606. bottom: 0.005
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Micro",
  20613. height: math.unit(5, "millimeters")
  20614. },
  20615. {
  20616. name: "Normal",
  20617. height: math.unit(6 + 5 / 12, "feet"),
  20618. default: true
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20624. {
  20625. front: {
  20626. height: math.unit(16, "feet"),
  20627. weight: math.unit(4000, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/juniper/front.svg",
  20631. bottom: 0.04
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(16, "feet"),
  20639. default: true
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20645. {
  20646. front: {
  20647. height: math.unit(6, "feet"),
  20648. weight: math.unit(150, "lb"),
  20649. name: "Front",
  20650. image: {
  20651. source: "./media/characters/hipster/front.svg",
  20652. extra: 1312 / 1209,
  20653. bottom: 0.025
  20654. }
  20655. },
  20656. back: {
  20657. height: math.unit(6, "feet"),
  20658. weight: math.unit(150, "lb"),
  20659. name: "Back",
  20660. image: {
  20661. source: "./media/characters/hipster/back.svg",
  20662. extra: 1281 / 1196,
  20663. bottom: 0.01
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Micro",
  20670. height: math.unit(1, "mm")
  20671. },
  20672. {
  20673. name: "Normal",
  20674. height: math.unit(4, "inches"),
  20675. default: true
  20676. },
  20677. {
  20678. name: "Macro",
  20679. height: math.unit(500, "feet")
  20680. },
  20681. {
  20682. name: "Megamacro",
  20683. height: math.unit(1000, "miles")
  20684. },
  20685. ]
  20686. ))
  20687. characterMakers.push(() => makeCharacter(
  20688. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20689. {
  20690. front: {
  20691. height: math.unit(6, "feet"),
  20692. weight: math.unit(150, "lb"),
  20693. name: "Front",
  20694. image: {
  20695. source: "./media/characters/tendirmuldr/front.svg",
  20696. extra: 1878 / 1772,
  20697. bottom: 0.015
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Megamacro",
  20704. height: math.unit(1500, "miles"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20711. {
  20712. front: {
  20713. height: math.unit(14, "feet"),
  20714. weight: math.unit(12000, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/mort/front.svg",
  20718. extra: 365 / 318,
  20719. bottom: 0.01
  20720. }
  20721. },
  20722. side: {
  20723. height: math.unit(14, "feet"),
  20724. weight: math.unit(12000, "lb"),
  20725. name: "Side",
  20726. image: {
  20727. source: "./media/characters/mort/side.svg",
  20728. extra: 365 / 318,
  20729. bottom: 0.052
  20730. },
  20731. default: true
  20732. },
  20733. back: {
  20734. height: math.unit(14, "feet"),
  20735. weight: math.unit(12000, "lb"),
  20736. name: "Back",
  20737. image: {
  20738. source: "./media/characters/mort/back.svg",
  20739. extra: 371 / 332,
  20740. bottom: 0.18
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(14, "feet"),
  20748. default: true
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20754. {
  20755. front: {
  20756. height: math.unit(8, "feet"),
  20757. weight: math.unit(1, "ton"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/lycoa/front.svg",
  20761. extra: 1836/1728,
  20762. bottom: 81/1917
  20763. }
  20764. },
  20765. back: {
  20766. height: math.unit(8, "feet"),
  20767. weight: math.unit(1, "ton"),
  20768. name: "Back",
  20769. image: {
  20770. source: "./media/characters/lycoa/back.svg",
  20771. extra: 1785/1720,
  20772. bottom: 91/1876
  20773. }
  20774. },
  20775. head: {
  20776. height: math.unit(1.6243, "feet"),
  20777. name: "Head",
  20778. image: {
  20779. source: "./media/characters/lycoa/head.svg",
  20780. extra: 1011/782,
  20781. bottom: 0/1011
  20782. }
  20783. },
  20784. tailmaw: {
  20785. height: math.unit(1.9, "feet"),
  20786. name: "Tailmaw",
  20787. image: {
  20788. source: "./media/characters/lycoa/tailmaw.svg"
  20789. }
  20790. },
  20791. tentacles: {
  20792. height: math.unit(2.1, "feet"),
  20793. name: "Tentacles",
  20794. image: {
  20795. source: "./media/characters/lycoa/tentacles.svg"
  20796. }
  20797. },
  20798. dick: {
  20799. height: math.unit(1.73, "feet"),
  20800. name: "Dick",
  20801. image: {
  20802. source: "./media/characters/lycoa/dick.svg"
  20803. }
  20804. },
  20805. },
  20806. [
  20807. {
  20808. name: "Normal",
  20809. height: math.unit(8, "feet"),
  20810. default: true
  20811. },
  20812. {
  20813. name: "Macro",
  20814. height: math.unit(30, "feet")
  20815. },
  20816. ]
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20820. {
  20821. front: {
  20822. height: math.unit(4 + 2 / 12, "feet"),
  20823. weight: math.unit(70, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/naldara/front.svg",
  20827. extra: 1664/1387,
  20828. bottom: 81/1745
  20829. },
  20830. form: "anthro",
  20831. default: true
  20832. },
  20833. naga: {
  20834. height: math.unit(20, "feet"),
  20835. weight: math.unit(15000, "kg"),
  20836. name: "Front",
  20837. image: {
  20838. source: "./media/characters/naldara/naga.svg",
  20839. extra: 1590/1396,
  20840. bottom: 285/1875
  20841. },
  20842. form: "naga",
  20843. default: true
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Normal",
  20849. height: math.unit(4 + 2 / 12, "feet"),
  20850. form: "anthro",
  20851. default: true
  20852. },
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(20, "feet"),
  20856. form: "naga",
  20857. default: true
  20858. },
  20859. ],
  20860. {
  20861. "anthro": {
  20862. name: "Anthro",
  20863. default: true
  20864. },
  20865. "naga": {
  20866. name: "Naga"
  20867. }
  20868. }
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(13 + 7 / 12, "feet"),
  20875. weight: math.unit(1500, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/briar/front.svg",
  20879. extra: 1223/1157,
  20880. bottom: 123/1346
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(13 + 7 / 12, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20894. {
  20895. side: {
  20896. height: math.unit(16, "feet"),
  20897. weight: math.unit(500, "lb"),
  20898. name: "Side",
  20899. image: {
  20900. source: "./media/characters/vanguard/side.svg",
  20901. extra: 1022/914,
  20902. bottom: 30/1052
  20903. }
  20904. },
  20905. sideAlt: {
  20906. height: math.unit(10, "feet"),
  20907. weight: math.unit(500, "lb"),
  20908. name: "Side (Alt)",
  20909. image: {
  20910. source: "./media/characters/vanguard/side-alt.svg",
  20911. extra: 502 / 425,
  20912. bottom: 0.087
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(17.71, "feet"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(7.5, "feet"),
  20929. weight: math.unit(2, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/artemis/work-safe-front.svg",
  20933. extra: 1192 / 1075,
  20934. bottom: 0.07
  20935. },
  20936. form: "work-safe",
  20937. default: true
  20938. },
  20939. frontNsfw: {
  20940. height: math.unit(7.5, "feet"),
  20941. weight: math.unit(2, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/artemis/calibrating-front.svg",
  20945. extra: 1192 / 1075,
  20946. bottom: 0.07
  20947. },
  20948. form: "calibrating",
  20949. default: true
  20950. },
  20951. frontNsfwer: {
  20952. height: math.unit(7.5, "feet"),
  20953. weight: math.unit(2, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/artemis/oversize-load-front.svg",
  20957. extra: 1192 / 1075,
  20958. bottom: 0.07
  20959. },
  20960. form: "oversize-load",
  20961. default: true
  20962. },
  20963. side: {
  20964. height: math.unit(7.5, "feet"),
  20965. weight: math.unit(2, "lb"),
  20966. name: "Side",
  20967. image: {
  20968. source: "./media/characters/artemis/work-safe-side.svg",
  20969. extra: 1192 / 1075,
  20970. bottom: 0.07
  20971. },
  20972. form: "work-safe"
  20973. },
  20974. sideNsfw: {
  20975. height: math.unit(7.5, "feet"),
  20976. weight: math.unit(2, "lb"),
  20977. name: "Side",
  20978. image: {
  20979. source: "./media/characters/artemis/calibrating-side.svg",
  20980. extra: 1192 / 1075,
  20981. bottom: 0.07
  20982. },
  20983. form: "calibrating"
  20984. },
  20985. sideNsfwer: {
  20986. height: math.unit(7.5, "feet"),
  20987. weight: math.unit(2, "lb"),
  20988. name: "Side",
  20989. image: {
  20990. source: "./media/characters/artemis/oversize-load-side.svg",
  20991. extra: 1192 / 1075,
  20992. bottom: 0.07
  20993. },
  20994. form: "oversize-load"
  20995. },
  20996. maw: {
  20997. height: math.unit(1.1, "feet"),
  20998. name: "Maw",
  20999. image: {
  21000. source: "./media/characters/artemis/maw.svg"
  21001. },
  21002. form: "work-safe"
  21003. },
  21004. stomach: {
  21005. height: math.unit(0.95, "feet"),
  21006. name: "Stomach",
  21007. image: {
  21008. source: "./media/characters/artemis/stomach.svg"
  21009. },
  21010. form: "work-safe"
  21011. },
  21012. dickCanine: {
  21013. height: math.unit(1, "feet"),
  21014. name: "Dick (Canine)",
  21015. image: {
  21016. source: "./media/characters/artemis/dick-canine.svg"
  21017. },
  21018. form: "calibrating"
  21019. },
  21020. dickEquine: {
  21021. height: math.unit(0.85, "feet"),
  21022. name: "Dick (Equine)",
  21023. image: {
  21024. source: "./media/characters/artemis/dick-equine.svg"
  21025. },
  21026. form: "calibrating"
  21027. },
  21028. dickExotic: {
  21029. height: math.unit(0.85, "feet"),
  21030. name: "Dick (Exotic)",
  21031. image: {
  21032. source: "./media/characters/artemis/dick-exotic.svg"
  21033. },
  21034. form: "calibrating"
  21035. },
  21036. dickCanineBigger: {
  21037. height: math.unit(1 * 1.33, "feet"),
  21038. name: "Dick (Canine)",
  21039. image: {
  21040. source: "./media/characters/artemis/dick-canine.svg"
  21041. },
  21042. form: "oversize-load"
  21043. },
  21044. dickEquineBigger: {
  21045. height: math.unit(0.85 * 1.33, "feet"),
  21046. name: "Dick (Equine)",
  21047. image: {
  21048. source: "./media/characters/artemis/dick-equine.svg"
  21049. },
  21050. form: "oversize-load"
  21051. },
  21052. dickExoticBigger: {
  21053. height: math.unit(0.85 * 1.33, "feet"),
  21054. name: "Dick (Exotic)",
  21055. image: {
  21056. source: "./media/characters/artemis/dick-exotic.svg"
  21057. },
  21058. form: "oversize-load"
  21059. },
  21060. },
  21061. [
  21062. {
  21063. name: "Normal",
  21064. height: math.unit(7.5, "feet"),
  21065. form: "work-safe",
  21066. default: true
  21067. },
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(7.5, "feet"),
  21071. form: "calibrating",
  21072. default: true
  21073. },
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(7.5, "feet"),
  21077. form: "oversize-load",
  21078. default: true
  21079. },
  21080. {
  21081. name: "Enlarged",
  21082. height: math.unit(12, "feet"),
  21083. form: "work-safe",
  21084. },
  21085. {
  21086. name: "Enlarged",
  21087. height: math.unit(12, "feet"),
  21088. form: "calibrating",
  21089. },
  21090. {
  21091. name: "Enlarged",
  21092. height: math.unit(12, "feet"),
  21093. form: "oversize-load",
  21094. },
  21095. ],
  21096. {
  21097. "work-safe": {
  21098. name: "Work-Safe",
  21099. default: true
  21100. },
  21101. "calibrating": {
  21102. name: "Calibrating"
  21103. },
  21104. "oversize-load": {
  21105. name: "Oversize Load"
  21106. }
  21107. }
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21111. {
  21112. front: {
  21113. height: math.unit(5 + 3 / 12, "feet"),
  21114. weight: math.unit(160, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/kira/front.svg",
  21118. extra: 906 / 786,
  21119. bottom: 0.01
  21120. }
  21121. },
  21122. back: {
  21123. height: math.unit(5 + 3 / 12, "feet"),
  21124. weight: math.unit(160, "lb"),
  21125. name: "Back",
  21126. image: {
  21127. source: "./media/characters/kira/back.svg",
  21128. extra: 882 / 757,
  21129. bottom: 0.005
  21130. }
  21131. },
  21132. frontDressed: {
  21133. height: math.unit(5 + 3 / 12, "feet"),
  21134. weight: math.unit(160, "lb"),
  21135. name: "Front (Dressed)",
  21136. image: {
  21137. source: "./media/characters/kira/front-dressed.svg",
  21138. extra: 906 / 786,
  21139. bottom: 0.01
  21140. }
  21141. },
  21142. beans: {
  21143. height: math.unit(0.92, "feet"),
  21144. name: "Beans",
  21145. image: {
  21146. source: "./media/characters/kira/beans.svg"
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Normal",
  21153. height: math.unit(5 + 3 / 12, "feet"),
  21154. default: true
  21155. },
  21156. ]
  21157. ))
  21158. characterMakers.push(() => makeCharacter(
  21159. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21160. {
  21161. front: {
  21162. height: math.unit(5 + 4 / 12, "feet"),
  21163. weight: math.unit(145, "lb"),
  21164. name: "Front",
  21165. image: {
  21166. source: "./media/characters/scramble/front.svg",
  21167. extra: 763 / 727,
  21168. bottom: 0.05
  21169. }
  21170. },
  21171. back: {
  21172. height: math.unit(5 + 4 / 12, "feet"),
  21173. weight: math.unit(145, "lb"),
  21174. name: "Back",
  21175. image: {
  21176. source: "./media/characters/scramble/back.svg",
  21177. extra: 826 / 737,
  21178. bottom: 0.002
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(5 + 4 / 12, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21192. {
  21193. side: {
  21194. height: math.unit(6 + 2 / 12, "feet"),
  21195. weight: math.unit(190, "lb"),
  21196. name: "Side",
  21197. image: {
  21198. source: "./media/characters/biscuit/side.svg",
  21199. extra: 858 / 791,
  21200. bottom: 0.044
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(6 + 2 / 12, "feet"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(5 + 2 / 12, "feet"),
  21217. weight: math.unit(120, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/poffin/front.svg",
  21221. extra: 786 / 680,
  21222. bottom: 0.005
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(5 + 2 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(6 + 3 / 12, "feet"),
  21239. weight: math.unit(519, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/dhari/front.svg",
  21243. extra: 1048 / 946,
  21244. bottom: 0.015
  21245. }
  21246. },
  21247. back: {
  21248. height: math.unit(6 + 3 / 12, "feet"),
  21249. weight: math.unit(519, "lb"),
  21250. name: "Back",
  21251. image: {
  21252. source: "./media/characters/dhari/back.svg",
  21253. extra: 1048 / 931,
  21254. bottom: 0.005
  21255. }
  21256. },
  21257. frontDressed: {
  21258. height: math.unit(6 + 3 / 12, "feet"),
  21259. weight: math.unit(519, "lb"),
  21260. name: "Front (Dressed)",
  21261. image: {
  21262. source: "./media/characters/dhari/front-dressed.svg",
  21263. extra: 1713 / 1546,
  21264. bottom: 0.02
  21265. }
  21266. },
  21267. backDressed: {
  21268. height: math.unit(6 + 3 / 12, "feet"),
  21269. weight: math.unit(519, "lb"),
  21270. name: "Back (Dressed)",
  21271. image: {
  21272. source: "./media/characters/dhari/back-dressed.svg",
  21273. extra: 1699 / 1537,
  21274. bottom: 0.01
  21275. }
  21276. },
  21277. maw: {
  21278. height: math.unit(0.95, "feet"),
  21279. name: "Maw",
  21280. image: {
  21281. source: "./media/characters/dhari/maw.svg"
  21282. }
  21283. },
  21284. wereFront: {
  21285. height: math.unit(12 + 8 / 12, "feet"),
  21286. weight: math.unit(4000, "lb"),
  21287. name: "Front (Were)",
  21288. image: {
  21289. source: "./media/characters/dhari/were-front.svg",
  21290. extra: 1065 / 969,
  21291. bottom: 0.015
  21292. }
  21293. },
  21294. wereBack: {
  21295. height: math.unit(12 + 8 / 12, "feet"),
  21296. weight: math.unit(4000, "lb"),
  21297. name: "Back (Were)",
  21298. image: {
  21299. source: "./media/characters/dhari/were-back.svg",
  21300. extra: 1065 / 969,
  21301. bottom: 0.012
  21302. }
  21303. },
  21304. wereMaw: {
  21305. height: math.unit(0.625, "meters"),
  21306. name: "Maw (Were)",
  21307. image: {
  21308. source: "./media/characters/dhari/were-maw.svg"
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(6 + 3 / 12, "feet"),
  21316. default: true
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21322. {
  21323. anthro: {
  21324. height: math.unit(5 + 7 / 12, "feet"),
  21325. weight: math.unit(175, "lb"),
  21326. name: "Anthro",
  21327. image: {
  21328. source: "./media/characters/rena-dyne/anthro.svg",
  21329. extra: 1849 / 1785,
  21330. bottom: 0.005
  21331. }
  21332. },
  21333. taur: {
  21334. height: math.unit(15 + 6 / 12, "feet"),
  21335. weight: math.unit(8000, "lb"),
  21336. name: "Taur",
  21337. image: {
  21338. source: "./media/characters/rena-dyne/taur.svg",
  21339. extra: 2315 / 2234,
  21340. bottom: 0.033
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(5 + 7 / 12, "feet"),
  21348. default: true
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(8, "feet"),
  21357. weight: math.unit(600, "lb"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/weremeep/front.svg",
  21361. extra: 967 / 862,
  21362. bottom: 0.01
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(8, "feet"),
  21370. default: true
  21371. },
  21372. {
  21373. name: "Lorg",
  21374. height: math.unit(12, "feet")
  21375. },
  21376. {
  21377. name: "Oh Lawd She Comin'",
  21378. height: math.unit(20, "feet")
  21379. },
  21380. ]
  21381. ))
  21382. characterMakers.push(() => makeCharacter(
  21383. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21384. {
  21385. front: {
  21386. height: math.unit(4, "feet"),
  21387. weight: math.unit(90, "lb"),
  21388. name: "Front",
  21389. image: {
  21390. source: "./media/characters/reza/front.svg",
  21391. extra: 1183 / 1111,
  21392. bottom: 0.017
  21393. }
  21394. },
  21395. back: {
  21396. height: math.unit(4, "feet"),
  21397. weight: math.unit(90, "lb"),
  21398. name: "Back",
  21399. image: {
  21400. source: "./media/characters/reza/back.svg",
  21401. extra: 1183 / 1111,
  21402. bottom: 0.01
  21403. }
  21404. },
  21405. drake: {
  21406. height: math.unit(30, "feet"),
  21407. weight: math.unit(246960, "lb"),
  21408. name: "Drake",
  21409. image: {
  21410. source: "./media/characters/reza/drake.svg",
  21411. extra: 2350 / 2024,
  21412. bottom: 60.7 / 2403
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Normal",
  21419. height: math.unit(4, "feet"),
  21420. default: true
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21426. {
  21427. side: {
  21428. height: math.unit(15, "feet"),
  21429. weight: math.unit(14, "tons"),
  21430. name: "Side",
  21431. image: {
  21432. source: "./media/characters/athea/side.svg",
  21433. extra: 960 / 540,
  21434. bottom: 0.003
  21435. }
  21436. },
  21437. sitting: {
  21438. height: math.unit(6 * 2.85, "feet"),
  21439. weight: math.unit(14, "tons"),
  21440. name: "Sitting",
  21441. image: {
  21442. source: "./media/characters/athea/sitting.svg",
  21443. extra: 621 / 581,
  21444. bottom: 0.075
  21445. }
  21446. },
  21447. maw: {
  21448. height: math.unit(7.59498031496063, "feet"),
  21449. name: "Maw",
  21450. image: {
  21451. source: "./media/characters/athea/maw.svg"
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Lap Cat",
  21458. height: math.unit(2.5, "feet")
  21459. },
  21460. {
  21461. name: "Minimacro",
  21462. height: math.unit(15, "feet"),
  21463. default: true
  21464. },
  21465. {
  21466. name: "Macro",
  21467. height: math.unit(120, "feet")
  21468. },
  21469. {
  21470. name: "Macro+",
  21471. height: math.unit(640, "feet")
  21472. },
  21473. {
  21474. name: "Colossus",
  21475. height: math.unit(2.2, "miles")
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(8 + 8 / 12, "feet"),
  21484. weight: math.unit(130, "kg"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/seroko/front.svg",
  21488. extra: 1385 / 1280,
  21489. bottom: 0.025
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(8 + 8 / 12, "feet"),
  21494. weight: math.unit(130, "kg"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/seroko/back.svg",
  21498. extra: 1369 / 1238,
  21499. bottom: 0.018
  21500. }
  21501. },
  21502. frontDressed: {
  21503. height: math.unit(8 + 8 / 12, "feet"),
  21504. weight: math.unit(130, "kg"),
  21505. name: "Front (Dressed)",
  21506. image: {
  21507. source: "./media/characters/seroko/front-dressed.svg",
  21508. extra: 1366 / 1275,
  21509. bottom: 0.03
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Normal",
  21516. height: math.unit(8 + 8 / 12, "feet"),
  21517. default: true
  21518. },
  21519. ]
  21520. ))
  21521. characterMakers.push(() => makeCharacter(
  21522. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21523. {
  21524. front: {
  21525. height: math.unit(5.5, "feet"),
  21526. weight: math.unit(160, "lb"),
  21527. name: "Front",
  21528. image: {
  21529. source: "./media/characters/quatzi/front.svg",
  21530. extra: 2346 / 2242,
  21531. bottom: 0.015
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(5.5, "feet"),
  21539. default: true
  21540. },
  21541. {
  21542. name: "Big",
  21543. height: math.unit(7.7, "feet")
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(5 + 11 / 12, "feet"),
  21552. weight: math.unit(180, "lb"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/sen/front.svg",
  21556. extra: 1321 / 1254,
  21557. bottom: 0.015
  21558. }
  21559. },
  21560. side: {
  21561. height: math.unit(5 + 11 / 12, "feet"),
  21562. weight: math.unit(180, "lb"),
  21563. name: "Side",
  21564. image: {
  21565. source: "./media/characters/sen/side.svg",
  21566. extra: 1321 / 1254,
  21567. bottom: 0.007
  21568. }
  21569. },
  21570. back: {
  21571. height: math.unit(5 + 11 / 12, "feet"),
  21572. weight: math.unit(180, "lb"),
  21573. name: "Back",
  21574. image: {
  21575. source: "./media/characters/sen/back.svg",
  21576. extra: 1321 / 1254
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(5 + 11 / 12, "feet"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(166.6, "cm"),
  21593. weight: math.unit(66.6, "kg"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/fruity/front.svg",
  21597. extra: 1510 / 1386,
  21598. bottom: 0.04
  21599. }
  21600. },
  21601. back: {
  21602. height: math.unit(166.6, "cm"),
  21603. weight: math.unit(66.6, "lb"),
  21604. name: "Back",
  21605. image: {
  21606. source: "./media/characters/fruity/back.svg",
  21607. extra: 1563 / 1435,
  21608. bottom: 0.005
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(166.6, "cm"),
  21616. default: true
  21617. },
  21618. {
  21619. name: "Demonic",
  21620. height: math.unit(166.6, "feet")
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21626. {
  21627. side: {
  21628. height: math.unit(10, "feet"),
  21629. weight: math.unit(500, "lb"),
  21630. name: "Side",
  21631. image: {
  21632. source: "./media/characters/zost/side.svg",
  21633. extra: 2870/2533,
  21634. bottom: 252/3122
  21635. }
  21636. },
  21637. mawFront: {
  21638. height: math.unit(1.08, "meters"),
  21639. name: "Maw (Front)",
  21640. image: {
  21641. source: "./media/characters/zost/maw-front.svg"
  21642. }
  21643. },
  21644. mawSide: {
  21645. height: math.unit(2.66, "feet"),
  21646. name: "Maw (Side)",
  21647. image: {
  21648. source: "./media/characters/zost/maw-side.svg"
  21649. }
  21650. },
  21651. wingspan: {
  21652. height: math.unit(7.4, "feet"),
  21653. name: "Wingspan",
  21654. image: {
  21655. source: "./media/characters/zost/wingspan.svg"
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(10, "feet"),
  21663. default: true
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21669. {
  21670. front: {
  21671. height: math.unit(5 + 4 / 12, "feet"),
  21672. weight: math.unit(120, "lb"),
  21673. name: "Front",
  21674. image: {
  21675. source: "./media/characters/luci/front.svg",
  21676. extra: 1985 / 1884,
  21677. bottom: 0.04
  21678. }
  21679. },
  21680. back: {
  21681. height: math.unit(5 + 4 / 12, "feet"),
  21682. weight: math.unit(120, "lb"),
  21683. name: "Back",
  21684. image: {
  21685. source: "./media/characters/luci/back.svg",
  21686. extra: 1892 / 1791,
  21687. bottom: 0.002
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(5 + 4 / 12, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(1500, "feet"),
  21704. weight: math.unit(3.8e6, "tons"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/2th/front.svg",
  21708. extra: 3489 / 3350,
  21709. bottom: 0.1
  21710. }
  21711. },
  21712. foot: {
  21713. height: math.unit(461, "feet"),
  21714. name: "Foot",
  21715. image: {
  21716. source: "./media/characters/2th/foot.svg"
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "\"Micro\"",
  21723. height: math.unit(15 + 7 / 12, "feet")
  21724. },
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(1500, "feet"),
  21728. default: true
  21729. },
  21730. {
  21731. name: "Macro",
  21732. height: math.unit(5000, "feet")
  21733. },
  21734. {
  21735. name: "Megamacro",
  21736. height: math.unit(15, "miles")
  21737. },
  21738. {
  21739. name: "Gigamacro",
  21740. height: math.unit(4000, "miles")
  21741. },
  21742. {
  21743. name: "Galactic",
  21744. height: math.unit(50, "AU")
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21750. {
  21751. front: {
  21752. height: math.unit(5 + 6 / 12, "feet"),
  21753. weight: math.unit(220, "lb"),
  21754. name: "Front",
  21755. image: {
  21756. source: "./media/characters/amethyst/front.svg",
  21757. extra: 2078 / 2040,
  21758. bottom: 0.045
  21759. }
  21760. },
  21761. back: {
  21762. height: math.unit(5 + 6 / 12, "feet"),
  21763. weight: math.unit(220, "lb"),
  21764. name: "Back",
  21765. image: {
  21766. source: "./media/characters/amethyst/back.svg",
  21767. extra: 2021 / 1989,
  21768. bottom: 0.02
  21769. }
  21770. },
  21771. },
  21772. [
  21773. {
  21774. name: "Normal",
  21775. height: math.unit(5 + 6 / 12, "feet"),
  21776. default: true
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21782. {
  21783. front: {
  21784. height: math.unit(4 + 11 / 12, "feet"),
  21785. weight: math.unit(120, "lb"),
  21786. name: "Front",
  21787. image: {
  21788. source: "./media/characters/yumi-akiyama/front.svg",
  21789. extra: 1327 / 1235,
  21790. bottom: 0.02
  21791. }
  21792. },
  21793. back: {
  21794. height: math.unit(4 + 11 / 12, "feet"),
  21795. weight: math.unit(120, "lb"),
  21796. name: "Back",
  21797. image: {
  21798. source: "./media/characters/yumi-akiyama/back.svg",
  21799. extra: 1287 / 1245,
  21800. bottom: 0.002
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Galactic",
  21807. height: math.unit(50, "galaxies"),
  21808. default: true
  21809. },
  21810. {
  21811. name: "Universal",
  21812. height: math.unit(100, "universes")
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(8, "feet"),
  21821. weight: math.unit(500, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/rifter-yrmori/front.svg",
  21825. extra: 1180 / 1125,
  21826. bottom: 0.02
  21827. }
  21828. },
  21829. back: {
  21830. height: math.unit(8, "feet"),
  21831. weight: math.unit(500, "lb"),
  21832. name: "Back",
  21833. image: {
  21834. source: "./media/characters/rifter-yrmori/back.svg",
  21835. extra: 1190 / 1145,
  21836. bottom: 0.001
  21837. }
  21838. },
  21839. wings: {
  21840. height: math.unit(7.75, "feet"),
  21841. weight: math.unit(500, "lb"),
  21842. name: "Wings",
  21843. image: {
  21844. source: "./media/characters/rifter-yrmori/wings.svg",
  21845. extra: 1357 / 1285
  21846. }
  21847. },
  21848. maw: {
  21849. height: math.unit(0.8, "feet"),
  21850. name: "Maw",
  21851. image: {
  21852. source: "./media/characters/rifter-yrmori/maw.svg"
  21853. }
  21854. },
  21855. mawfront: {
  21856. height: math.unit(1.45, "feet"),
  21857. name: "Maw (Front)",
  21858. image: {
  21859. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(8, "feet"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(42, "meters")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21877. {
  21878. were: {
  21879. height: math.unit(25 + 6 / 12, "feet"),
  21880. weight: math.unit(10000, "lb"),
  21881. name: "Were",
  21882. image: {
  21883. source: "./media/characters/tahajin/were.svg",
  21884. extra: 801 / 770,
  21885. bottom: 0.042
  21886. }
  21887. },
  21888. aquatic: {
  21889. height: math.unit(6 + 4 / 12, "feet"),
  21890. weight: math.unit(160, "lb"),
  21891. name: "Aquatic",
  21892. image: {
  21893. source: "./media/characters/tahajin/aquatic.svg",
  21894. extra: 572 / 542,
  21895. bottom: 0.04
  21896. }
  21897. },
  21898. chow: {
  21899. height: math.unit(8 + 11 / 12, "feet"),
  21900. weight: math.unit(450, "lb"),
  21901. name: "Chow",
  21902. image: {
  21903. source: "./media/characters/tahajin/chow.svg",
  21904. extra: 660 / 640,
  21905. bottom: 0.015
  21906. }
  21907. },
  21908. demiNaga: {
  21909. height: math.unit(6 + 8 / 12, "feet"),
  21910. weight: math.unit(300, "lb"),
  21911. name: "Demi Naga",
  21912. image: {
  21913. source: "./media/characters/tahajin/demi-naga.svg",
  21914. extra: 643 / 615,
  21915. bottom: 0.1
  21916. }
  21917. },
  21918. data: {
  21919. height: math.unit(5, "inches"),
  21920. weight: math.unit(0.1, "lb"),
  21921. name: "Data",
  21922. image: {
  21923. source: "./media/characters/tahajin/data.svg"
  21924. }
  21925. },
  21926. fluu: {
  21927. height: math.unit(5 + 7 / 12, "feet"),
  21928. weight: math.unit(140, "lb"),
  21929. name: "Fluu",
  21930. image: {
  21931. source: "./media/characters/tahajin/fluu.svg",
  21932. extra: 628 / 592,
  21933. bottom: 0.02
  21934. }
  21935. },
  21936. starWarrior: {
  21937. height: math.unit(4 + 5 / 12, "feet"),
  21938. weight: math.unit(50, "lb"),
  21939. name: "Star Warrior",
  21940. image: {
  21941. source: "./media/characters/tahajin/star-warrior.svg"
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(25 + 6 / 12, "feet"),
  21949. default: true
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21955. {
  21956. front: {
  21957. height: math.unit(8, "feet"),
  21958. weight: math.unit(350, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/gabira/front.svg",
  21962. extra: 608 / 580,
  21963. bottom: 0.03
  21964. }
  21965. },
  21966. back: {
  21967. height: math.unit(8, "feet"),
  21968. weight: math.unit(350, "lb"),
  21969. name: "Back",
  21970. image: {
  21971. source: "./media/characters/gabira/back.svg",
  21972. extra: 608 / 580,
  21973. bottom: 0.03
  21974. }
  21975. },
  21976. },
  21977. [
  21978. {
  21979. name: "Normal",
  21980. height: math.unit(8, "feet"),
  21981. default: true
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21987. {
  21988. front: {
  21989. height: math.unit(5 + 3 / 12, "feet"),
  21990. weight: math.unit(137, "lb"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/sasha-katraine/front.svg",
  21994. extra: 1745/1694,
  21995. bottom: 37/1782
  21996. }
  21997. },
  21998. back: {
  21999. height: math.unit(5 + 3 / 12, "feet"),
  22000. weight: math.unit(137, "lb"),
  22001. name: "Back",
  22002. image: {
  22003. source: "./media/characters/sasha-katraine/back.svg",
  22004. extra: 1776/1699,
  22005. bottom: 26/1802
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Micro",
  22012. height: math.unit(5, "inches")
  22013. },
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(5 + 3 / 12, "feet"),
  22017. default: true
  22018. },
  22019. ]
  22020. ))
  22021. characterMakers.push(() => makeCharacter(
  22022. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22023. {
  22024. side: {
  22025. height: math.unit(4, "inches"),
  22026. weight: math.unit(200, "grams"),
  22027. name: "Side",
  22028. image: {
  22029. source: "./media/characters/der/side.svg",
  22030. extra: 719 / 400,
  22031. bottom: 30.6 / 749.9187
  22032. }
  22033. },
  22034. },
  22035. [
  22036. {
  22037. name: "Micro",
  22038. height: math.unit(4, "inches"),
  22039. default: true
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22045. {
  22046. side: {
  22047. height: math.unit(30, "meters"),
  22048. weight: math.unit(700, "tonnes"),
  22049. name: "Side",
  22050. image: {
  22051. source: "./media/characters/fixerdragon/side.svg",
  22052. extra: (1293.0514 - 116.03) / 1106.86,
  22053. bottom: 116.03 / 1293.0514
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Planck",
  22060. height: math.unit(1.6e-35, "meters")
  22061. },
  22062. {
  22063. name: "Micro",
  22064. height: math.unit(0.4, "meters")
  22065. },
  22066. {
  22067. name: "Normal",
  22068. height: math.unit(30, "meters"),
  22069. default: true
  22070. },
  22071. {
  22072. name: "Megamacro",
  22073. height: math.unit(1.2, "megameters")
  22074. },
  22075. {
  22076. name: "Teramacro",
  22077. height: math.unit(130, "terameters")
  22078. },
  22079. {
  22080. name: "Yottamacro",
  22081. height: math.unit(6200, "yottameters")
  22082. },
  22083. ]
  22084. ));
  22085. characterMakers.push(() => makeCharacter(
  22086. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22087. {
  22088. front: {
  22089. height: math.unit(8, "feet"),
  22090. weight: math.unit(250, "lb"),
  22091. name: "Front",
  22092. image: {
  22093. source: "./media/characters/kite/front.svg",
  22094. extra: 2796 / 2659,
  22095. bottom: 0.002
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(8, "feet"),
  22103. default: true
  22104. },
  22105. {
  22106. name: "Macro",
  22107. height: math.unit(360, "feet")
  22108. },
  22109. {
  22110. name: "Megamacro",
  22111. height: math.unit(1500, "feet")
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22117. {
  22118. front: {
  22119. height: math.unit(5 + 11/12, "feet"),
  22120. weight: math.unit(170, "lb"),
  22121. name: "Front",
  22122. image: {
  22123. source: "./media/characters/poojawa-vynar/front.svg",
  22124. extra: 1735/1585,
  22125. bottom: 96/1831
  22126. }
  22127. },
  22128. back: {
  22129. height: math.unit(5 + 11/12, "feet"),
  22130. weight: math.unit(170, "lb"),
  22131. name: "Back",
  22132. image: {
  22133. source: "./media/characters/poojawa-vynar/back.svg",
  22134. extra: 1749/1607,
  22135. bottom: 28/1777
  22136. }
  22137. },
  22138. male: {
  22139. height: math.unit(5 + 11/12, "feet"),
  22140. weight: math.unit(170, "lb"),
  22141. name: "Male",
  22142. image: {
  22143. source: "./media/characters/poojawa-vynar/male.svg",
  22144. extra: 1855/1713,
  22145. bottom: 63/1918
  22146. }
  22147. },
  22148. taur: {
  22149. height: math.unit(5 + 11/12, "feet"),
  22150. weight: math.unit(170, "lb"),
  22151. name: "Taur",
  22152. image: {
  22153. source: "./media/characters/poojawa-vynar/taur.svg",
  22154. extra: 1151/1059,
  22155. bottom: 356/1507
  22156. }
  22157. },
  22158. frontDressed: {
  22159. height: math.unit(5 + 11/12, "feet"),
  22160. weight: math.unit(170, "lb"),
  22161. name: "Front (Dressed)",
  22162. image: {
  22163. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22164. extra: 1735/1585,
  22165. bottom: 96/1831
  22166. }
  22167. },
  22168. backDressed: {
  22169. height: math.unit(5 + 11/12, "feet"),
  22170. weight: math.unit(170, "lb"),
  22171. name: "Back (Dressed)",
  22172. image: {
  22173. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22174. extra: 1749/1607,
  22175. bottom: 28/1777
  22176. }
  22177. },
  22178. maleDressed: {
  22179. height: math.unit(5 + 11/12, "feet"),
  22180. weight: math.unit(170, "lb"),
  22181. name: "Male (Dressed)",
  22182. image: {
  22183. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22184. extra: 1855/1713,
  22185. bottom: 63/1918
  22186. }
  22187. },
  22188. taurDressed: {
  22189. height: math.unit(5 + 11/12, "feet"),
  22190. weight: math.unit(170, "lb"),
  22191. name: "Taur (Dressed)",
  22192. image: {
  22193. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22194. extra: 1151/1059,
  22195. bottom: 356/1507
  22196. }
  22197. },
  22198. maw: {
  22199. height: math.unit(1.46, "feet"),
  22200. name: "Maw",
  22201. image: {
  22202. source: "./media/characters/poojawa-vynar/maw.svg"
  22203. }
  22204. },
  22205. head: {
  22206. height: math.unit(2.34, "feet"),
  22207. name: "Head",
  22208. image: {
  22209. source: "./media/characters/poojawa-vynar/head.svg"
  22210. }
  22211. },
  22212. paw: {
  22213. height: math.unit(1.61, "feet"),
  22214. name: "Paw",
  22215. image: {
  22216. source: "./media/characters/poojawa-vynar/paw.svg"
  22217. }
  22218. },
  22219. pawToering: {
  22220. height: math.unit(1.72, "feet"),
  22221. name: "Paw (Toering)",
  22222. image: {
  22223. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22224. }
  22225. },
  22226. toering: {
  22227. height: math.unit(2.9, "inches"),
  22228. name: "Toering",
  22229. image: {
  22230. source: "./media/characters/poojawa-vynar/toering.svg"
  22231. }
  22232. },
  22233. shaft: {
  22234. height: math.unit(0.625, "feet"),
  22235. name: "Shaft",
  22236. image: {
  22237. source: "./media/characters/poojawa-vynar/shaft.svg"
  22238. }
  22239. },
  22240. spade: {
  22241. height: math.unit(0.42, "feet"),
  22242. name: "Spade",
  22243. image: {
  22244. source: "./media/characters/poojawa-vynar/spade.svg"
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Shortstack",
  22251. height: math.unit(4, "feet")
  22252. },
  22253. {
  22254. name: "Normal",
  22255. height: math.unit(5 + 11 / 12, "feet"),
  22256. default: true
  22257. },
  22258. {
  22259. name: "Tauric",
  22260. height: math.unit(4, "meters")
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(293, "meters"),
  22269. weight: math.unit(70400, "tons"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/violette/front.svg",
  22273. extra: 1227 / 1180,
  22274. bottom: 0.005
  22275. }
  22276. },
  22277. back: {
  22278. height: math.unit(293, "meters"),
  22279. weight: math.unit(70400, "tons"),
  22280. name: "Back",
  22281. image: {
  22282. source: "./media/characters/violette/back.svg",
  22283. extra: 1227 / 1180,
  22284. bottom: 0.005
  22285. }
  22286. },
  22287. },
  22288. [
  22289. {
  22290. name: "Macro",
  22291. height: math.unit(293, "meters"),
  22292. default: true
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22298. {
  22299. front: {
  22300. height: math.unit(1050, "feet"),
  22301. weight: math.unit(200000, "tons"),
  22302. name: "Front",
  22303. image: {
  22304. source: "./media/characters/alessandra/front.svg",
  22305. extra: 960 / 912,
  22306. bottom: 0.06
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Macro",
  22313. height: math.unit(1050, "feet")
  22314. },
  22315. {
  22316. name: "Macro+",
  22317. height: math.unit(900, "meters"),
  22318. default: true
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(5, "feet"),
  22327. weight: math.unit(187, "lb"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/person/front.svg",
  22331. extra: 3087 / 2945,
  22332. bottom: 91 / 3181
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Micro",
  22339. height: math.unit(3, "inches")
  22340. },
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(5, "feet"),
  22344. default: true
  22345. },
  22346. {
  22347. name: "Macro",
  22348. height: math.unit(90, "feet")
  22349. },
  22350. {
  22351. name: "Max Size",
  22352. height: math.unit(280, "feet")
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22358. {
  22359. front: {
  22360. height: math.unit(4.5, "meters"),
  22361. weight: math.unit(3200, "lb"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/ty/front.svg",
  22365. extra: 1038 / 960,
  22366. bottom: 31.156 / 1068
  22367. }
  22368. },
  22369. back: {
  22370. height: math.unit(4.5, "meters"),
  22371. weight: math.unit(3200, "lb"),
  22372. name: "Back",
  22373. image: {
  22374. source: "./media/characters/ty/back.svg",
  22375. extra: 1044 / 966,
  22376. bottom: 7.48 / 1049
  22377. }
  22378. },
  22379. },
  22380. [
  22381. {
  22382. name: "Normal",
  22383. height: math.unit(4.5, "meters"),
  22384. default: true
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22390. {
  22391. front: {
  22392. height: math.unit(5 + 4 / 12, "feet"),
  22393. weight: math.unit(115, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/rocky/front.svg",
  22397. extra: 1012 / 975,
  22398. bottom: 54 / 1066
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(5 + 4 / 12, "feet"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22412. {
  22413. upright: {
  22414. height: math.unit(6, "meters"),
  22415. weight: math.unit(4000, "kg"),
  22416. name: "Upright",
  22417. image: {
  22418. source: "./media/characters/ruin/upright.svg",
  22419. extra: 668 / 661,
  22420. bottom: 42 / 799.8396
  22421. }
  22422. },
  22423. },
  22424. [
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(6, "meters"),
  22428. default: true
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22434. {
  22435. front: {
  22436. height: math.unit(5, "feet"),
  22437. weight: math.unit(106, "lb"),
  22438. name: "Front",
  22439. image: {
  22440. source: "./media/characters/robin/front.svg",
  22441. extra: 862 / 799,
  22442. bottom: 42.4 / 914.8856
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(5, "feet"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22456. {
  22457. side: {
  22458. height: math.unit(3, "feet"),
  22459. weight: math.unit(225, "lb"),
  22460. name: "Side",
  22461. image: {
  22462. source: "./media/characters/saian/side.svg",
  22463. extra: 566 / 356,
  22464. bottom: 79.7 / 643
  22465. }
  22466. },
  22467. maw: {
  22468. height: math.unit(2.85, "feet"),
  22469. name: "Maw",
  22470. image: {
  22471. source: "./media/characters/saian/maw.svg"
  22472. }
  22473. },
  22474. },
  22475. [
  22476. {
  22477. name: "Normal",
  22478. height: math.unit(3, "feet"),
  22479. default: true
  22480. },
  22481. ]
  22482. ))
  22483. characterMakers.push(() => makeCharacter(
  22484. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22485. {
  22486. side: {
  22487. height: math.unit(8, "feet"),
  22488. weight: math.unit(300, "lb"),
  22489. name: "Side",
  22490. image: {
  22491. source: "./media/characters/equus-silvermane/side.svg",
  22492. extra: 2176 / 2050,
  22493. bottom: 65.7 / 2245
  22494. }
  22495. },
  22496. front: {
  22497. height: math.unit(8, "feet"),
  22498. weight: math.unit(300, "lb"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/equus-silvermane/front.svg",
  22502. extra: 4633 / 4400,
  22503. bottom: 71.3 / 4706.915
  22504. }
  22505. },
  22506. sideStepping: {
  22507. height: math.unit(8, "feet"),
  22508. weight: math.unit(300, "lb"),
  22509. name: "Side (Stepping)",
  22510. image: {
  22511. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22512. extra: 1968 / 1860,
  22513. bottom: 16.4 / 1989
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(8, "feet")
  22521. },
  22522. {
  22523. name: "Minimacro",
  22524. height: math.unit(75, "feet"),
  22525. default: true
  22526. },
  22527. {
  22528. name: "Macro",
  22529. height: math.unit(150, "feet")
  22530. },
  22531. {
  22532. name: "Macro+",
  22533. height: math.unit(1000, "feet")
  22534. },
  22535. {
  22536. name: "Megamacro",
  22537. height: math.unit(1, "mile")
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22543. {
  22544. side: {
  22545. height: math.unit(20, "feet"),
  22546. weight: math.unit(30000, "kg"),
  22547. name: "Side",
  22548. image: {
  22549. source: "./media/characters/windar/side.svg",
  22550. extra: 1491 / 1248,
  22551. bottom: 82.56 / 1568
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Normal",
  22558. height: math.unit(20, "feet"),
  22559. default: true
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22565. {
  22566. side: {
  22567. height: math.unit(15.66, "feet"),
  22568. weight: math.unit(150, "lb"),
  22569. name: "Side",
  22570. image: {
  22571. source: "./media/characters/melody/side.svg",
  22572. extra: 1097 / 944,
  22573. bottom: 11.8 / 1109
  22574. }
  22575. },
  22576. sideOutfit: {
  22577. height: math.unit(15.66, "feet"),
  22578. weight: math.unit(150, "lb"),
  22579. name: "Side (Outfit)",
  22580. image: {
  22581. source: "./media/characters/melody/side-outfit.svg",
  22582. extra: 1097 / 944,
  22583. bottom: 11.8 / 1109
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(15.66, "feet"),
  22591. default: true
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22597. {
  22598. front: {
  22599. height: math.unit(8, "feet"),
  22600. weight: math.unit(325, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/windera/front.svg",
  22604. extra: 3180 / 2845,
  22605. bottom: 178 / 3365
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(8, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22619. {
  22620. front: {
  22621. height: math.unit(28.75, "feet"),
  22622. weight: math.unit(2000, "kg"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/sonear/front.svg",
  22626. extra: 1041.1 / 964.9,
  22627. bottom: 53.7 / 1096.6
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(28.75, "feet"),
  22635. default: true
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22641. {
  22642. side: {
  22643. height: math.unit(25.5, "feet"),
  22644. weight: math.unit(23000, "kg"),
  22645. name: "Side",
  22646. image: {
  22647. source: "./media/characters/kanara/side.svg"
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(25.5, "feet"),
  22655. default: true
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22661. {
  22662. side: {
  22663. height: math.unit(10, "feet"),
  22664. weight: math.unit(1000, "kg"),
  22665. name: "Side",
  22666. image: {
  22667. source: "./media/characters/ereus/side.svg",
  22668. extra: 1157 / 959,
  22669. bottom: 153 / 1312.5
  22670. }
  22671. },
  22672. },
  22673. [
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(10, "feet"),
  22677. default: true
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22683. {
  22684. side: {
  22685. height: math.unit(4.5, "feet"),
  22686. weight: math.unit(500, "lb"),
  22687. name: "Side",
  22688. image: {
  22689. source: "./media/characters/e-ter/side.svg",
  22690. extra: 1550 / 1248,
  22691. bottom: 146 / 1694
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Normal",
  22698. height: math.unit(4.5, "feet"),
  22699. default: true
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22705. {
  22706. side: {
  22707. height: math.unit(9.7, "feet"),
  22708. weight: math.unit(4000, "kg"),
  22709. name: "Side",
  22710. image: {
  22711. source: "./media/characters/yamie/side.svg"
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(9.7, "feet"),
  22719. default: true
  22720. },
  22721. ]
  22722. ))
  22723. characterMakers.push(() => makeCharacter(
  22724. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22725. {
  22726. front: {
  22727. height: math.unit(50, "feet"),
  22728. weight: math.unit(50000, "kg"),
  22729. name: "Front",
  22730. image: {
  22731. source: "./media/characters/anders/front.svg",
  22732. extra: 570 / 539,
  22733. bottom: 14.7 / 586.7
  22734. }
  22735. },
  22736. },
  22737. [
  22738. {
  22739. name: "Large",
  22740. height: math.unit(50, "feet")
  22741. },
  22742. {
  22743. name: "Macro",
  22744. height: math.unit(2000, "feet"),
  22745. default: true
  22746. },
  22747. {
  22748. name: "Megamacro",
  22749. height: math.unit(12, "miles")
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22755. {
  22756. front: {
  22757. height: math.unit(7 + 2 / 12, "feet"),
  22758. weight: math.unit(300, "lb"),
  22759. name: "Front",
  22760. image: {
  22761. source: "./media/characters/reban/front.svg",
  22762. extra: 1287/1212,
  22763. bottom: 148/1435
  22764. }
  22765. },
  22766. head: {
  22767. height: math.unit(1.95, "feet"),
  22768. name: "Head",
  22769. image: {
  22770. source: "./media/characters/reban/head.svg"
  22771. }
  22772. },
  22773. maw: {
  22774. height: math.unit(0.95, "feet"),
  22775. name: "Maw",
  22776. image: {
  22777. source: "./media/characters/reban/maw.svg"
  22778. }
  22779. },
  22780. foot: {
  22781. height: math.unit(1.65, "feet"),
  22782. name: "Foot",
  22783. image: {
  22784. source: "./media/characters/reban/foot.svg"
  22785. }
  22786. },
  22787. dick: {
  22788. height: math.unit(7 / 5, "feet"),
  22789. name: "Dick",
  22790. image: {
  22791. source: "./media/characters/reban/dick.svg"
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Natural Height",
  22798. height: math.unit(7 + 2 / 12, "feet")
  22799. },
  22800. {
  22801. name: "Macro",
  22802. height: math.unit(500, "feet"),
  22803. default: true
  22804. },
  22805. {
  22806. name: "Canon Height",
  22807. height: math.unit(50, "AU")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22813. {
  22814. front: {
  22815. height: math.unit(6, "feet"),
  22816. weight: math.unit(150, "lb"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/terrance-keayes/front.svg",
  22820. extra: 1.005,
  22821. bottom: 151 / 1615
  22822. }
  22823. },
  22824. side: {
  22825. height: math.unit(6, "feet"),
  22826. weight: math.unit(150, "lb"),
  22827. name: "Side",
  22828. image: {
  22829. source: "./media/characters/terrance-keayes/side.svg",
  22830. extra: 1.005,
  22831. bottom: 129.4 / 1544
  22832. }
  22833. },
  22834. back: {
  22835. height: math.unit(6, "feet"),
  22836. weight: math.unit(150, "lb"),
  22837. name: "Back",
  22838. image: {
  22839. source: "./media/characters/terrance-keayes/back.svg",
  22840. extra: 1.005,
  22841. bottom: 58.4 / 1557.3
  22842. }
  22843. },
  22844. dick: {
  22845. height: math.unit(6 * 0.208, "feet"),
  22846. name: "Dick",
  22847. image: {
  22848. source: "./media/characters/terrance-keayes/dick.svg"
  22849. }
  22850. },
  22851. },
  22852. [
  22853. {
  22854. name: "Canon Height",
  22855. height: math.unit(35, "miles"),
  22856. default: true
  22857. },
  22858. ]
  22859. ))
  22860. characterMakers.push(() => makeCharacter(
  22861. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22862. {
  22863. front: {
  22864. height: math.unit(6, "feet"),
  22865. weight: math.unit(150, "lb"),
  22866. name: "Front",
  22867. image: {
  22868. source: "./media/characters/ofelia/front.svg",
  22869. extra: 1130/1117,
  22870. bottom: 91/1221
  22871. }
  22872. },
  22873. back: {
  22874. height: math.unit(6, "feet"),
  22875. weight: math.unit(150, "lb"),
  22876. name: "Back",
  22877. image: {
  22878. source: "./media/characters/ofelia/back.svg",
  22879. extra: 1172/1159,
  22880. bottom: 28/1200
  22881. }
  22882. },
  22883. maw: {
  22884. height: math.unit(1, "feet"),
  22885. name: "Maw",
  22886. image: {
  22887. source: "./media/characters/ofelia/maw.svg"
  22888. }
  22889. },
  22890. foot: {
  22891. height: math.unit(1.949, "feet"),
  22892. name: "Foot",
  22893. image: {
  22894. source: "./media/characters/ofelia/foot.svg"
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Canon Height",
  22901. height: math.unit(2000, "miles"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(6, "feet"),
  22911. weight: math.unit(150, "lb"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/samuel/front.svg",
  22915. extra: 265 / 258,
  22916. bottom: 2 / 266.1566
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Macro",
  22923. height: math.unit(100, "feet"),
  22924. default: true
  22925. },
  22926. {
  22927. name: "Full Size",
  22928. height: math.unit(1000, "miles")
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22934. {
  22935. front: {
  22936. height: math.unit(6, "feet"),
  22937. weight: math.unit(300, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/beishir-kiel/front.svg",
  22941. extra: 569 / 547,
  22942. bottom: 41.9 / 609
  22943. }
  22944. },
  22945. maw: {
  22946. height: math.unit(6 * 0.202, "feet"),
  22947. name: "Maw",
  22948. image: {
  22949. source: "./media/characters/beishir-kiel/maw.svg"
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Macro",
  22956. height: math.unit(300, "feet"),
  22957. default: true
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22963. {
  22964. front: {
  22965. height: math.unit(5 + 7/12, "feet"),
  22966. weight: math.unit(120, "lb"),
  22967. name: "Front",
  22968. image: {
  22969. source: "./media/characters/logan-grey/front.svg",
  22970. extra: 1836/1738,
  22971. bottom: 108/1944
  22972. }
  22973. },
  22974. back: {
  22975. height: math.unit(5 + 7/12, "feet"),
  22976. weight: math.unit(120, "lb"),
  22977. name: "Back",
  22978. image: {
  22979. source: "./media/characters/logan-grey/back.svg",
  22980. extra: 1880/1794,
  22981. bottom: 24/1904
  22982. }
  22983. },
  22984. frontSfw: {
  22985. height: math.unit(5 + 7/12, "feet"),
  22986. weight: math.unit(120, "lb"),
  22987. name: "Front (SFW)",
  22988. image: {
  22989. source: "./media/characters/logan-grey/front-sfw.svg",
  22990. extra: 1836/1738,
  22991. bottom: 108/1944
  22992. }
  22993. },
  22994. backSfw: {
  22995. height: math.unit(5 + 7/12, "feet"),
  22996. weight: math.unit(120, "lb"),
  22997. name: "Back (SFW)",
  22998. image: {
  22999. source: "./media/characters/logan-grey/back-sfw.svg",
  23000. extra: 1880/1794,
  23001. bottom: 24/1904
  23002. }
  23003. },
  23004. hands: {
  23005. height: math.unit(0.84, "feet"),
  23006. name: "Hands",
  23007. image: {
  23008. source: "./media/characters/logan-grey/hands.svg"
  23009. }
  23010. },
  23011. paws: {
  23012. height: math.unit(0.72, "feet"),
  23013. name: "Paws",
  23014. image: {
  23015. source: "./media/characters/logan-grey/paws.svg"
  23016. }
  23017. },
  23018. cock: {
  23019. height: math.unit(1.45, "feet"),
  23020. name: "Cock",
  23021. image: {
  23022. source: "./media/characters/logan-grey/cock.svg"
  23023. }
  23024. },
  23025. cockAlt: {
  23026. height: math.unit(1.437, "feet"),
  23027. name: "Cock (alt)",
  23028. image: {
  23029. source: "./media/characters/logan-grey/cock-alt.svg"
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(5 + 8 / 12, "feet")
  23037. },
  23038. {
  23039. name: "The 500 Foot Femboy",
  23040. height: math.unit(500, "feet"),
  23041. default: true
  23042. },
  23043. {
  23044. name: "Megmacro",
  23045. height: math.unit(20, "miles")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(8 + 2 / 12, "feet"),
  23054. weight: math.unit(275, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/draganta/front.svg",
  23058. extra: 1177 / 1135,
  23059. bottom: 33.46 / 1212.1
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Normal",
  23066. height: math.unit(8 + 6 / 12, "feet"),
  23067. default: true
  23068. },
  23069. {
  23070. name: "Macro",
  23071. height: math.unit(150, "feet")
  23072. },
  23073. {
  23074. name: "Megamacro",
  23075. height: math.unit(1000, "miles")
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(1.72, "m"),
  23084. weight: math.unit(80, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/voski/front.svg",
  23088. extra: 2076.22 / 2022.4,
  23089. bottom: 102.7 / 2177.3866
  23090. }
  23091. },
  23092. frontFlaccid: {
  23093. height: math.unit(1.72, "m"),
  23094. weight: math.unit(80, "lb"),
  23095. name: "Front (Flaccid)",
  23096. image: {
  23097. source: "./media/characters/voski/front-flaccid.svg",
  23098. extra: 2076.22 / 2022.4,
  23099. bottom: 102.7 / 2177.3866
  23100. }
  23101. },
  23102. frontErect: {
  23103. height: math.unit(1.72, "m"),
  23104. weight: math.unit(80, "lb"),
  23105. name: "Front (Erect)",
  23106. image: {
  23107. source: "./media/characters/voski/front-erect.svg",
  23108. extra: 2076.22 / 2022.4,
  23109. bottom: 102.7 / 2177.3866
  23110. }
  23111. },
  23112. back: {
  23113. height: math.unit(1.72, "m"),
  23114. weight: math.unit(80, "lb"),
  23115. name: "Back",
  23116. image: {
  23117. source: "./media/characters/voski/back.svg",
  23118. extra: 2104 / 2051,
  23119. bottom: 10.45 / 2113.63
  23120. }
  23121. },
  23122. },
  23123. [
  23124. {
  23125. name: "Normal",
  23126. height: math.unit(1.72, "m")
  23127. },
  23128. {
  23129. name: "Macro",
  23130. height: math.unit(55, "m"),
  23131. default: true
  23132. },
  23133. {
  23134. name: "Macro+",
  23135. height: math.unit(300, "m")
  23136. },
  23137. {
  23138. name: "Macro++",
  23139. height: math.unit(700, "m")
  23140. },
  23141. {
  23142. name: "Macro+++",
  23143. height: math.unit(4500, "m")
  23144. },
  23145. {
  23146. name: "Macro++++",
  23147. height: math.unit(45, "km")
  23148. },
  23149. {
  23150. name: "Macro+++++",
  23151. height: math.unit(1220, "km")
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(2.3, "m"),
  23160. weight: math.unit(304, "kg"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/icowom-lee/front.svg",
  23164. extra: 985 / 955,
  23165. bottom: 25.4 / 1012
  23166. }
  23167. },
  23168. fronttentacles: {
  23169. height: math.unit(2.3, "m"),
  23170. weight: math.unit(304, "kg"),
  23171. name: "Front-tentacles",
  23172. image: {
  23173. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23174. extra: 985 / 955,
  23175. bottom: 25.4 / 1012
  23176. }
  23177. },
  23178. back: {
  23179. height: math.unit(2.3, "m"),
  23180. weight: math.unit(304, "kg"),
  23181. name: "Back",
  23182. image: {
  23183. source: "./media/characters/icowom-lee/back.svg",
  23184. extra: 975 / 954,
  23185. bottom: 9.5 / 985
  23186. }
  23187. },
  23188. backtentacles: {
  23189. height: math.unit(2.3, "m"),
  23190. weight: math.unit(304, "kg"),
  23191. name: "Back-tentacles",
  23192. image: {
  23193. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23194. extra: 975 / 954,
  23195. bottom: 9.5 / 985
  23196. }
  23197. },
  23198. frontDressed: {
  23199. height: math.unit(2.3, "m"),
  23200. weight: math.unit(304, "kg"),
  23201. name: "Front (Dressed)",
  23202. image: {
  23203. source: "./media/characters/icowom-lee/front-dressed.svg",
  23204. extra: 3076 / 2933,
  23205. bottom: 51.4 / 3125.1889
  23206. }
  23207. },
  23208. rump: {
  23209. height: math.unit(0.776, "meters"),
  23210. name: "Rump",
  23211. image: {
  23212. source: "./media/characters/icowom-lee/rump.svg"
  23213. }
  23214. },
  23215. genitals: {
  23216. height: math.unit(0.78, "meters"),
  23217. name: "Genitals",
  23218. image: {
  23219. source: "./media/characters/icowom-lee/genitals.svg"
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(2.3, "meters"),
  23227. default: true
  23228. },
  23229. {
  23230. name: "Macro",
  23231. height: math.unit(94, "meters"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23238. {
  23239. front: {
  23240. height: math.unit(22, "meters"),
  23241. weight: math.unit(21000, "kg"),
  23242. name: "Front",
  23243. image: {
  23244. source: "./media/characters/shock-diamond/front.svg",
  23245. extra: 2204 / 2053,
  23246. bottom: 65 / 2239.47
  23247. }
  23248. },
  23249. frontNude: {
  23250. height: math.unit(22, "meters"),
  23251. weight: math.unit(21000, "kg"),
  23252. name: "Front (Nude)",
  23253. image: {
  23254. source: "./media/characters/shock-diamond/front-nude.svg",
  23255. extra: 2514 / 2285,
  23256. bottom: 13 / 2527.56
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Normal",
  23263. height: math.unit(3, "meters")
  23264. },
  23265. {
  23266. name: "Macro",
  23267. height: math.unit(22, "meters"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(5 + 4 / 12, "feet"),
  23277. weight: math.unit(120, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/rory/front.svg",
  23281. extra: 1318/1241,
  23282. bottom: 42/1360
  23283. }
  23284. },
  23285. back: {
  23286. height: math.unit(5 + 4 / 12, "feet"),
  23287. weight: math.unit(120, "lb"),
  23288. name: "Back",
  23289. image: {
  23290. source: "./media/characters/rory/back.svg",
  23291. extra: 1318/1241,
  23292. bottom: 42/1360
  23293. }
  23294. },
  23295. butt: {
  23296. height: math.unit(1.74, "feet"),
  23297. name: "Butt",
  23298. image: {
  23299. source: "./media/characters/rory/butt.svg"
  23300. }
  23301. },
  23302. dick: {
  23303. height: math.unit(1.02, "feet"),
  23304. name: "Dick",
  23305. image: {
  23306. source: "./media/characters/rory/dick.svg"
  23307. }
  23308. },
  23309. paws: {
  23310. height: math.unit(1, "feet"),
  23311. name: "Paws",
  23312. image: {
  23313. source: "./media/characters/rory/paws.svg"
  23314. }
  23315. },
  23316. frontAlt: {
  23317. height: math.unit(5 + 4 / 12, "feet"),
  23318. weight: math.unit(120, "lb"),
  23319. name: "Front (Alt)",
  23320. image: {
  23321. source: "./media/characters/rory/front-alt.svg",
  23322. extra: 589 / 556,
  23323. bottom: 45.7 / 635.76
  23324. }
  23325. },
  23326. frontAltNude: {
  23327. height: math.unit(5 + 4 / 12, "feet"),
  23328. weight: math.unit(120, "lb"),
  23329. name: "Front (Alt, Nude)",
  23330. image: {
  23331. source: "./media/characters/rory/front-alt-nude.svg",
  23332. extra: 589 / 556,
  23333. bottom: 45.7 / 635.76
  23334. }
  23335. },
  23336. side: {
  23337. height: math.unit(5 + 4 / 12, "feet"),
  23338. weight: math.unit(120, "lb"),
  23339. name: "Side",
  23340. image: {
  23341. source: "./media/characters/rory/side.svg",
  23342. extra: 597 / 564,
  23343. bottom: 55 / 653
  23344. }
  23345. },
  23346. backAlt: {
  23347. height: math.unit(5 + 4 / 12, "feet"),
  23348. weight: math.unit(120, "lb"),
  23349. name: "Back (Alt)",
  23350. image: {
  23351. source: "./media/characters/rory/back-alt.svg",
  23352. extra: 620 / 585,
  23353. bottom: 8.86 / 630.43
  23354. }
  23355. },
  23356. dickAlt: {
  23357. height: math.unit(0.86, "feet"),
  23358. name: "Dick (Alt)",
  23359. image: {
  23360. source: "./media/characters/rory/dick-alt.svg"
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(5 + 4 / 12, "feet"),
  23368. default: true
  23369. },
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(100, "feet")
  23373. },
  23374. {
  23375. name: "Macro+",
  23376. height: math.unit(140, "feet")
  23377. },
  23378. {
  23379. name: "Macro++",
  23380. height: math.unit(300, "feet")
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(5 + 9 / 12, "feet"),
  23389. weight: math.unit(190, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/sprisk/front.svg",
  23393. extra: 1225 / 1180,
  23394. bottom: 42.7 / 1266.4
  23395. }
  23396. },
  23397. frontNsfw: {
  23398. height: math.unit(5 + 9 / 12, "feet"),
  23399. weight: math.unit(190, "lb"),
  23400. name: "Front (NSFW)",
  23401. image: {
  23402. source: "./media/characters/sprisk/front-nsfw.svg",
  23403. extra: 1225 / 1180,
  23404. bottom: 42.7 / 1266.4
  23405. }
  23406. },
  23407. back: {
  23408. height: math.unit(5 + 9 / 12, "feet"),
  23409. weight: math.unit(190, "lb"),
  23410. name: "Back",
  23411. image: {
  23412. source: "./media/characters/sprisk/back.svg",
  23413. extra: 1247 / 1200,
  23414. bottom: 5.6 / 1253.04
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Tiny",
  23421. height: math.unit(2, "inches")
  23422. },
  23423. {
  23424. name: "Normal",
  23425. height: math.unit(5 + 9 / 12, "feet"),
  23426. default: true
  23427. },
  23428. {
  23429. name: "Mini Macro",
  23430. height: math.unit(18, "feet")
  23431. },
  23432. {
  23433. name: "Macro",
  23434. height: math.unit(100, "feet")
  23435. },
  23436. {
  23437. name: "MACRO",
  23438. height: math.unit(50, "miles")
  23439. },
  23440. {
  23441. name: "M A C R O",
  23442. height: math.unit(300, "miles")
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23448. {
  23449. side: {
  23450. height: math.unit(15.6, "meters"),
  23451. weight: math.unit(700000, "kg"),
  23452. name: "Side",
  23453. image: {
  23454. source: "./media/characters/bunsen/side.svg",
  23455. extra: 1644 / 358
  23456. }
  23457. },
  23458. foot: {
  23459. height: math.unit(1.611 * 1644 / 358, "meter"),
  23460. name: "Foot",
  23461. image: {
  23462. source: "./media/characters/bunsen/foot.svg"
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Small",
  23469. height: math.unit(10, "feet")
  23470. },
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(15.6, "meters"),
  23474. default: true
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23480. {
  23481. front: {
  23482. height: math.unit(4 + 11 / 12, "feet"),
  23483. weight: math.unit(140, "lb"),
  23484. name: "Front",
  23485. image: {
  23486. source: "./media/characters/sesh/front.svg",
  23487. extra: 3420 / 3231,
  23488. bottom: 72 / 3949.5
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Normal",
  23495. height: math.unit(4 + 11 / 12, "feet")
  23496. },
  23497. {
  23498. name: "Grown",
  23499. height: math.unit(15, "feet"),
  23500. default: true
  23501. },
  23502. {
  23503. name: "Macro",
  23504. height: math.unit(1500, "feet")
  23505. },
  23506. {
  23507. name: "Megamacro",
  23508. height: math.unit(30, "miles")
  23509. },
  23510. {
  23511. name: "Continental",
  23512. height: math.unit(3000, "miles")
  23513. },
  23514. {
  23515. name: "Gravity Mass",
  23516. height: math.unit(300000, "miles")
  23517. },
  23518. {
  23519. name: "Planet Buster",
  23520. height: math.unit(30000000, "miles")
  23521. },
  23522. {
  23523. name: "Big",
  23524. height: math.unit(3000000000, "miles")
  23525. },
  23526. ]
  23527. ))
  23528. characterMakers.push(() => makeCharacter(
  23529. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23530. {
  23531. front: {
  23532. height: math.unit(9, "feet"),
  23533. weight: math.unit(350, "lb"),
  23534. name: "Front",
  23535. image: {
  23536. source: "./media/characters/pepper/front.svg",
  23537. extra: 1448 / 1312,
  23538. bottom: 9.4 / 1457.88
  23539. }
  23540. },
  23541. back: {
  23542. height: math.unit(9, "feet"),
  23543. weight: math.unit(350, "lb"),
  23544. name: "Back",
  23545. image: {
  23546. source: "./media/characters/pepper/back.svg",
  23547. extra: 1423 / 1300,
  23548. bottom: 4.6 / 1429
  23549. }
  23550. },
  23551. maw: {
  23552. height: math.unit(0.932, "feet"),
  23553. name: "Maw",
  23554. image: {
  23555. source: "./media/characters/pepper/maw.svg"
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Normal",
  23562. height: math.unit(9, "feet"),
  23563. default: true
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(6, "feet"),
  23572. weight: math.unit(150, "lb"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/maelstrom/front.svg",
  23576. extra: 2100 / 1883,
  23577. bottom: 94 / 2196.7
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Less Kaiju",
  23584. height: math.unit(200, "feet")
  23585. },
  23586. {
  23587. name: "Kaiju",
  23588. height: math.unit(400, "feet"),
  23589. default: true
  23590. },
  23591. {
  23592. name: "Kaiju-er",
  23593. height: math.unit(600, "feet")
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(6 + 5 / 12, "feet"),
  23602. weight: math.unit(180, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/lexir/front.svg",
  23606. extra: 180 / 172,
  23607. bottom: 12 / 192
  23608. }
  23609. },
  23610. back: {
  23611. height: math.unit(6 + 5 / 12, "feet"),
  23612. weight: math.unit(180, "lb"),
  23613. name: "Back",
  23614. image: {
  23615. source: "./media/characters/lexir/back.svg",
  23616. extra: 1273/1201,
  23617. bottom: 39/1312
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Very Smal",
  23624. height: math.unit(1, "nm")
  23625. },
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(6 + 5 / 12, "feet"),
  23629. default: true
  23630. },
  23631. {
  23632. name: "Macro",
  23633. height: math.unit(1, "mile")
  23634. },
  23635. {
  23636. name: "Megamacro",
  23637. height: math.unit(50, "miles")
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(1.5, "meters"),
  23646. weight: math.unit(100, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/maksio/front.svg",
  23650. extra: 1549 / 1531,
  23651. bottom: 123.7 / 1674.5429
  23652. }
  23653. },
  23654. back: {
  23655. height: math.unit(1.5, "meters"),
  23656. weight: math.unit(100, "lb"),
  23657. name: "Back",
  23658. image: {
  23659. source: "./media/characters/maksio/back.svg",
  23660. extra: 1541 / 1509,
  23661. bottom: 97 / 1639
  23662. }
  23663. },
  23664. hand: {
  23665. height: math.unit(0.621, "feet"),
  23666. name: "Hand",
  23667. image: {
  23668. source: "./media/characters/maksio/hand.svg"
  23669. }
  23670. },
  23671. foot: {
  23672. height: math.unit(1.611, "feet"),
  23673. name: "Foot",
  23674. image: {
  23675. source: "./media/characters/maksio/foot.svg"
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Shrunken",
  23682. height: math.unit(10, "cm")
  23683. },
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(150, "cm"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(100, "feet"),
  23696. name: "Front",
  23697. image: {
  23698. source: "./media/characters/erza-bear/front.svg",
  23699. extra: 2449 / 2390,
  23700. bottom: 46 / 2494
  23701. }
  23702. },
  23703. back: {
  23704. height: math.unit(100, "feet"),
  23705. name: "Back",
  23706. image: {
  23707. source: "./media/characters/erza-bear/back.svg",
  23708. extra: 2489 / 2430,
  23709. bottom: 85.4 / 2480
  23710. }
  23711. },
  23712. tail: {
  23713. height: math.unit(42, "feet"),
  23714. name: "Tail",
  23715. image: {
  23716. source: "./media/characters/erza-bear/tail.svg"
  23717. }
  23718. },
  23719. tongue: {
  23720. height: math.unit(8, "feet"),
  23721. name: "Tongue",
  23722. image: {
  23723. source: "./media/characters/erza-bear/tongue.svg"
  23724. }
  23725. },
  23726. dick: {
  23727. height: math.unit(10.5, "feet"),
  23728. name: "Dick",
  23729. image: {
  23730. source: "./media/characters/erza-bear/dick.svg"
  23731. }
  23732. },
  23733. dickVertical: {
  23734. height: math.unit(16.9, "feet"),
  23735. name: "Dick (Vertical)",
  23736. image: {
  23737. source: "./media/characters/erza-bear/dick-vertical.svg"
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Macro",
  23744. height: math.unit(100, "feet"),
  23745. default: true
  23746. },
  23747. ]
  23748. ))
  23749. characterMakers.push(() => makeCharacter(
  23750. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23751. {
  23752. front: {
  23753. height: math.unit(172, "cm"),
  23754. weight: math.unit(73, "kg"),
  23755. name: "Front",
  23756. image: {
  23757. source: "./media/characters/violet-flor/front.svg",
  23758. extra: 1530 / 1442,
  23759. bottom: 61.9 / 1588.8
  23760. }
  23761. },
  23762. back: {
  23763. height: math.unit(180, "cm"),
  23764. weight: math.unit(73, "kg"),
  23765. name: "Back",
  23766. image: {
  23767. source: "./media/characters/violet-flor/back.svg",
  23768. extra: 1692 / 1630,
  23769. bottom: 20 / 1712
  23770. }
  23771. },
  23772. },
  23773. [
  23774. {
  23775. name: "Normal",
  23776. height: math.unit(172, "cm"),
  23777. default: true
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(6, "feet"),
  23786. weight: math.unit(220, "lb"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/lynn-rhea/front.svg",
  23790. extra: 310 / 273
  23791. }
  23792. },
  23793. back: {
  23794. height: math.unit(6, "feet"),
  23795. weight: math.unit(220, "lb"),
  23796. name: "Back",
  23797. image: {
  23798. source: "./media/characters/lynn-rhea/back.svg",
  23799. extra: 310 / 273
  23800. }
  23801. },
  23802. dicks: {
  23803. height: math.unit(0.9, "feet"),
  23804. name: "Dicks",
  23805. image: {
  23806. source: "./media/characters/lynn-rhea/dicks.svg"
  23807. }
  23808. },
  23809. slit: {
  23810. height: math.unit(0.4, "feet"),
  23811. name: "Slit",
  23812. image: {
  23813. source: "./media/characters/lynn-rhea/slit.svg"
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Micro",
  23820. height: math.unit(1, "inch")
  23821. },
  23822. {
  23823. name: "Macro",
  23824. height: math.unit(60, "feet"),
  23825. default: true
  23826. },
  23827. {
  23828. name: "Megamacro",
  23829. height: math.unit(2, "miles")
  23830. },
  23831. {
  23832. name: "Gigamacro",
  23833. height: math.unit(3, "earths")
  23834. },
  23835. {
  23836. name: "Galactic",
  23837. height: math.unit(0.8, "galaxies")
  23838. },
  23839. ]
  23840. ))
  23841. characterMakers.push(() => makeCharacter(
  23842. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23843. {
  23844. front: {
  23845. height: math.unit(1600, "feet"),
  23846. weight: math.unit(85758785169, "kg"),
  23847. name: "Front",
  23848. image: {
  23849. source: "./media/characters/valathos/front.svg",
  23850. extra: 1451 / 1339
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Macro",
  23857. height: math.unit(1600, "feet"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23864. {
  23865. front: {
  23866. height: math.unit(7 + 5 / 12, "feet"),
  23867. weight: math.unit(300, "lb"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/azula/front.svg",
  23871. extra: 3208 / 2880,
  23872. bottom: 80.2 / 3277
  23873. }
  23874. },
  23875. back: {
  23876. height: math.unit(7 + 5 / 12, "feet"),
  23877. weight: math.unit(300, "lb"),
  23878. name: "Back",
  23879. image: {
  23880. source: "./media/characters/azula/back.svg",
  23881. extra: 3169 / 2822,
  23882. bottom: 150.6 / 3321
  23883. }
  23884. },
  23885. },
  23886. [
  23887. {
  23888. name: "Normal",
  23889. height: math.unit(7 + 5 / 12, "feet"),
  23890. default: true
  23891. },
  23892. {
  23893. name: "Big",
  23894. height: math.unit(20, "feet")
  23895. },
  23896. ]
  23897. ))
  23898. characterMakers.push(() => makeCharacter(
  23899. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23900. {
  23901. front: {
  23902. height: math.unit(5 + 1 / 12, "feet"),
  23903. weight: math.unit(110, "lb"),
  23904. name: "Front",
  23905. image: {
  23906. source: "./media/characters/rupert/front.svg",
  23907. extra: 1549 / 1495,
  23908. bottom: 54.2 / 1604.4
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Normal",
  23915. height: math.unit(5 + 1 / 12, "feet"),
  23916. default: true
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23922. {
  23923. front: {
  23924. height: math.unit(8 + 4 / 12, "feet"),
  23925. weight: math.unit(350, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/sheera-castellar/front.svg",
  23929. extra: 1957 / 1894,
  23930. bottom: 26.97 / 1975.017
  23931. }
  23932. },
  23933. side: {
  23934. height: math.unit(8 + 4 / 12, "feet"),
  23935. weight: math.unit(350, "lb"),
  23936. name: "Side",
  23937. image: {
  23938. source: "./media/characters/sheera-castellar/side.svg",
  23939. extra: 1957 / 1894
  23940. }
  23941. },
  23942. back: {
  23943. height: math.unit(8 + 4 / 12, "feet"),
  23944. weight: math.unit(350, "lb"),
  23945. name: "Back",
  23946. image: {
  23947. source: "./media/characters/sheera-castellar/back.svg",
  23948. extra: 1957 / 1894
  23949. }
  23950. },
  23951. angled: {
  23952. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23953. weight: math.unit(350, "lb"),
  23954. name: "Angled",
  23955. image: {
  23956. source: "./media/characters/sheera-castellar/angled.svg",
  23957. extra: 1807 / 1707,
  23958. bottom: 68 / 1875
  23959. }
  23960. },
  23961. genitals: {
  23962. height: math.unit(2.2, "feet"),
  23963. name: "Genitals",
  23964. image: {
  23965. source: "./media/characters/sheera-castellar/genitals.svg"
  23966. }
  23967. },
  23968. taur: {
  23969. height: math.unit(10 + 6/12, "feet"),
  23970. name: "Taur",
  23971. image: {
  23972. source: "./media/characters/sheera-castellar/taur.svg",
  23973. extra: 2017/1909,
  23974. bottom: 185/2202
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(8 + 4 / 12, "feet")
  23982. },
  23983. {
  23984. name: "Macro",
  23985. height: math.unit(150, "feet"),
  23986. default: true
  23987. },
  23988. {
  23989. name: "Macro+",
  23990. height: math.unit(800, "feet")
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23996. {
  23997. front: {
  23998. height: math.unit(6, "feet"),
  23999. weight: math.unit(150, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/jaipur/front.svg",
  24003. extra: 3860 / 3731,
  24004. bottom: 287 / 4140
  24005. }
  24006. },
  24007. back: {
  24008. height: math.unit(6, "feet"),
  24009. weight: math.unit(150, "lb"),
  24010. name: "Back",
  24011. image: {
  24012. source: "./media/characters/jaipur/back.svg",
  24013. extra: 1637/1561,
  24014. bottom: 154/1791
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Normal",
  24021. height: math.unit(1.85, "meters"),
  24022. default: true
  24023. },
  24024. {
  24025. name: "Macro",
  24026. height: math.unit(150, "meters")
  24027. },
  24028. {
  24029. name: "Macro+",
  24030. height: math.unit(0.5, "miles")
  24031. },
  24032. {
  24033. name: "Macro++",
  24034. height: math.unit(2.5, "miles")
  24035. },
  24036. {
  24037. name: "Macro+++",
  24038. height: math.unit(12, "miles")
  24039. },
  24040. {
  24041. name: "Macro++++",
  24042. height: math.unit(120, "miles")
  24043. },
  24044. {
  24045. name: "Macro+++++",
  24046. height: math.unit(1200, "miles")
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(6, "feet"),
  24055. weight: math.unit(150, "lb"),
  24056. name: "Front",
  24057. image: {
  24058. source: "./media/characters/sheila-wolf/front.svg",
  24059. extra: 1931 / 1808,
  24060. bottom: 29.5 / 1960
  24061. }
  24062. },
  24063. dick: {
  24064. height: math.unit(1.464, "feet"),
  24065. name: "Dick",
  24066. image: {
  24067. source: "./media/characters/sheila-wolf/dick.svg"
  24068. }
  24069. },
  24070. muzzle: {
  24071. height: math.unit(0.513, "feet"),
  24072. name: "Muzzle",
  24073. image: {
  24074. source: "./media/characters/sheila-wolf/muzzle.svg"
  24075. }
  24076. },
  24077. },
  24078. [
  24079. {
  24080. name: "Macro",
  24081. height: math.unit(70, "feet"),
  24082. default: true
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(32, "meters"),
  24091. weight: math.unit(300000, "kg"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/almor/front.svg",
  24095. extra: 1408 / 1322,
  24096. bottom: 94.6 / 1506.5
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Macro",
  24103. height: math.unit(32, "meters"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(7, "feet"),
  24113. weight: math.unit(200, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/silver/front.svg",
  24117. extra: 472.1 / 450.5,
  24118. bottom: 26.5 / 499.424
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(7, "feet"),
  24126. default: true
  24127. },
  24128. {
  24129. name: "Macro",
  24130. height: math.unit(800, "feet")
  24131. },
  24132. {
  24133. name: "Megamacro",
  24134. height: math.unit(250, "miles")
  24135. },
  24136. ]
  24137. ))
  24138. characterMakers.push(() => makeCharacter(
  24139. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24140. {
  24141. front: {
  24142. height: math.unit(6, "feet"),
  24143. weight: math.unit(150, "lb"),
  24144. name: "Front",
  24145. image: {
  24146. source: "./media/characters/pliskin/front.svg",
  24147. extra: 1469 / 1359,
  24148. bottom: 70 / 1540
  24149. }
  24150. },
  24151. },
  24152. [
  24153. {
  24154. name: "Micro",
  24155. height: math.unit(3, "inches")
  24156. },
  24157. {
  24158. name: "Normal",
  24159. height: math.unit(5 + 11 / 12, "feet"),
  24160. default: true
  24161. },
  24162. {
  24163. name: "Macro",
  24164. height: math.unit(120, "feet")
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(6, "feet"),
  24173. weight: math.unit(150, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/sammy/front.svg",
  24177. extra: 1193 / 1089,
  24178. bottom: 30.5 / 1226
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Macro",
  24185. height: math.unit(1700, "feet"),
  24186. default: true
  24187. },
  24188. {
  24189. name: "Examacro",
  24190. height: math.unit(2.5e9, "lightyears")
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24196. {
  24197. front: {
  24198. height: math.unit(21, "meters"),
  24199. weight: math.unit(12, "tonnes"),
  24200. name: "Front",
  24201. image: {
  24202. source: "./media/characters/kuru/front.svg",
  24203. extra: 4301 / 3785,
  24204. bottom: 371.3 / 4691
  24205. }
  24206. },
  24207. },
  24208. [
  24209. {
  24210. name: "Macro",
  24211. height: math.unit(21, "meters"),
  24212. default: true
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(23, "meters"),
  24221. weight: math.unit(12.2, "tonnes"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/rakka/front.svg",
  24225. extra: 4670 / 4169,
  24226. bottom: 301 / 4968.7
  24227. }
  24228. },
  24229. },
  24230. [
  24231. {
  24232. name: "Macro",
  24233. height: math.unit(23, "meters"),
  24234. default: true
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24240. {
  24241. front: {
  24242. height: math.unit(6, "feet"),
  24243. weight: math.unit(150, "lb"),
  24244. name: "Front",
  24245. image: {
  24246. source: "./media/characters/rhys-feline/front.svg",
  24247. extra: 2488 / 2308,
  24248. bottom: 35.67 / 2519.19
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Really Small",
  24255. height: math.unit(1, "nm")
  24256. },
  24257. {
  24258. name: "Micro",
  24259. height: math.unit(4, "inches")
  24260. },
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(4 + 10 / 12, "feet"),
  24264. default: true
  24265. },
  24266. {
  24267. name: "Macro",
  24268. height: math.unit(100, "feet")
  24269. },
  24270. {
  24271. name: "Megamacto",
  24272. height: math.unit(50, "miles")
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24278. {
  24279. side: {
  24280. height: math.unit(30, "feet"),
  24281. weight: math.unit(35000, "kg"),
  24282. name: "Side",
  24283. image: {
  24284. source: "./media/characters/alydar/side.svg",
  24285. extra: 234 / 222,
  24286. bottom: 6.5 / 241
  24287. }
  24288. },
  24289. front: {
  24290. height: math.unit(30, "feet"),
  24291. weight: math.unit(35000, "kg"),
  24292. name: "Front",
  24293. image: {
  24294. source: "./media/characters/alydar/front.svg",
  24295. extra: 223.37 / 210.2,
  24296. bottom: 22.3 / 246.76
  24297. }
  24298. },
  24299. top: {
  24300. height: math.unit(64.54, "feet"),
  24301. weight: math.unit(35000, "kg"),
  24302. name: "Top",
  24303. image: {
  24304. source: "./media/characters/alydar/top.svg"
  24305. }
  24306. },
  24307. anthro: {
  24308. height: math.unit(30, "feet"),
  24309. weight: math.unit(9000, "kg"),
  24310. name: "Anthro",
  24311. image: {
  24312. source: "./media/characters/alydar/anthro.svg",
  24313. extra: 432 / 421,
  24314. bottom: 7.18 / 440
  24315. }
  24316. },
  24317. maw: {
  24318. height: math.unit(11.693, "feet"),
  24319. name: "Maw",
  24320. image: {
  24321. source: "./media/characters/alydar/maw.svg"
  24322. }
  24323. },
  24324. head: {
  24325. height: math.unit(11.693, "feet"),
  24326. name: "Head",
  24327. image: {
  24328. source: "./media/characters/alydar/head.svg"
  24329. }
  24330. },
  24331. headAlt: {
  24332. height: math.unit(12.861, "feet"),
  24333. name: "Head (Alt)",
  24334. image: {
  24335. source: "./media/characters/alydar/head-alt.svg"
  24336. }
  24337. },
  24338. wing: {
  24339. height: math.unit(20.712, "feet"),
  24340. name: "Wing",
  24341. image: {
  24342. source: "./media/characters/alydar/wing.svg"
  24343. }
  24344. },
  24345. wingFeather: {
  24346. height: math.unit(9.662, "feet"),
  24347. name: "Wing Feather",
  24348. image: {
  24349. source: "./media/characters/alydar/wing-feather.svg"
  24350. }
  24351. },
  24352. countourFeather: {
  24353. height: math.unit(4.154, "feet"),
  24354. name: "Contour Feather",
  24355. image: {
  24356. source: "./media/characters/alydar/contour-feather.svg"
  24357. }
  24358. },
  24359. },
  24360. [
  24361. {
  24362. name: "Diplomatic",
  24363. height: math.unit(13, "feet"),
  24364. default: true
  24365. },
  24366. {
  24367. name: "Small",
  24368. height: math.unit(30, "feet")
  24369. },
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(95, "feet"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Large",
  24377. height: math.unit(285, "feet")
  24378. },
  24379. {
  24380. name: "Incomprehensible",
  24381. height: math.unit(450, "megameters")
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24387. {
  24388. side: {
  24389. height: math.unit(11, "feet"),
  24390. weight: math.unit(1750, "kg"),
  24391. name: "Side",
  24392. image: {
  24393. source: "./media/characters/selicia/side.svg",
  24394. extra: 440 / 396,
  24395. bottom: 24.8 / 465.979
  24396. }
  24397. },
  24398. maw: {
  24399. height: math.unit(4.665, "feet"),
  24400. name: "Maw",
  24401. image: {
  24402. source: "./media/characters/selicia/maw.svg"
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Normal",
  24409. height: math.unit(11, "feet"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24416. {
  24417. side: {
  24418. height: math.unit(2 + 6 / 12, "feet"),
  24419. weight: math.unit(30, "lb"),
  24420. name: "Side",
  24421. image: {
  24422. source: "./media/characters/layla/side.svg",
  24423. extra: 244 / 188,
  24424. bottom: 18.2 / 262.1
  24425. }
  24426. },
  24427. back: {
  24428. height: math.unit(2 + 6 / 12, "feet"),
  24429. weight: math.unit(30, "lb"),
  24430. name: "Back",
  24431. image: {
  24432. source: "./media/characters/layla/back.svg",
  24433. extra: 308 / 241.5,
  24434. bottom: 8.9 / 316.8
  24435. }
  24436. },
  24437. cumming: {
  24438. height: math.unit(2 + 6 / 12, "feet"),
  24439. weight: math.unit(30, "lb"),
  24440. name: "Cumming",
  24441. image: {
  24442. source: "./media/characters/layla/cumming.svg",
  24443. extra: 342 / 279,
  24444. bottom: 595 / 938
  24445. }
  24446. },
  24447. dickFlaccid: {
  24448. height: math.unit(2.595, "feet"),
  24449. name: "Flaccid Genitals",
  24450. image: {
  24451. source: "./media/characters/layla/dick-flaccid.svg"
  24452. }
  24453. },
  24454. dickErect: {
  24455. height: math.unit(2.359, "feet"),
  24456. name: "Erect Genitals",
  24457. image: {
  24458. source: "./media/characters/layla/dick-erect.svg"
  24459. }
  24460. },
  24461. dragon: {
  24462. height: math.unit(40, "feet"),
  24463. name: "Dragon",
  24464. image: {
  24465. source: "./media/characters/layla/dragon.svg",
  24466. extra: 610/535,
  24467. bottom: 367/977
  24468. }
  24469. },
  24470. taur: {
  24471. height: math.unit(30, "feet"),
  24472. name: "Taur",
  24473. image: {
  24474. source: "./media/characters/layla/taur.svg",
  24475. extra: 1268/1199,
  24476. bottom: 112/1380
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Micro",
  24483. height: math.unit(1, "inch")
  24484. },
  24485. {
  24486. name: "Small",
  24487. height: math.unit(1, "foot")
  24488. },
  24489. {
  24490. name: "Normal",
  24491. height: math.unit(2 + 6 / 12, "feet"),
  24492. default: true
  24493. },
  24494. {
  24495. name: "Macro",
  24496. height: math.unit(200, "feet")
  24497. },
  24498. {
  24499. name: "Megamacro",
  24500. height: math.unit(1000, "miles")
  24501. },
  24502. {
  24503. name: "Planetary",
  24504. height: math.unit(8000, "miles")
  24505. },
  24506. {
  24507. name: "True Layla",
  24508. height: math.unit(200000 * 7, "multiverses")
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24514. {
  24515. back: {
  24516. height: math.unit(10.5, "feet"),
  24517. weight: math.unit(800, "lb"),
  24518. name: "Back",
  24519. image: {
  24520. source: "./media/characters/knox/back.svg",
  24521. extra: 1486 / 1089,
  24522. bottom: 107 / 1601.4
  24523. }
  24524. },
  24525. side: {
  24526. height: math.unit(10.5, "feet"),
  24527. weight: math.unit(800, "lb"),
  24528. name: "Side",
  24529. image: {
  24530. source: "./media/characters/knox/side.svg",
  24531. extra: 244 / 218,
  24532. bottom: 14 / 260
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Compact",
  24539. height: math.unit(10.5, "feet"),
  24540. default: true
  24541. },
  24542. {
  24543. name: "Dynamax",
  24544. height: math.unit(210, "feet")
  24545. },
  24546. {
  24547. name: "Full Macro",
  24548. height: math.unit(850, "feet")
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(28, "feet"),
  24557. weight: math.unit(10500, "lb"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/kayda/front.svg",
  24561. extra: 1536 / 1428,
  24562. bottom: 68.7 / 1603
  24563. }
  24564. },
  24565. back: {
  24566. height: math.unit(28, "feet"),
  24567. weight: math.unit(10500, "lb"),
  24568. name: "Back",
  24569. image: {
  24570. source: "./media/characters/kayda/back.svg",
  24571. extra: 1557 / 1464,
  24572. bottom: 39.5 / 1597.49
  24573. }
  24574. },
  24575. dick: {
  24576. height: math.unit(3.858, "feet"),
  24577. name: "Dick",
  24578. image: {
  24579. source: "./media/characters/kayda/dick.svg"
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Macro",
  24586. height: math.unit(28, "feet"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(10 + 11 / 12, "feet"),
  24596. weight: math.unit(1400, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/brian/front.svg",
  24600. extra: 737 / 692,
  24601. bottom: 55.4 / 785
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(10 + 11 / 12, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(5 + 8 / 12, "feet"),
  24618. weight: math.unit(140, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/khemri/front.svg",
  24622. extra: 4780 / 4059,
  24623. bottom: 80.1 / 4859.25
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Micro",
  24630. height: math.unit(6, "inches")
  24631. },
  24632. {
  24633. name: "Normal",
  24634. height: math.unit(5 + 8 / 12, "feet"),
  24635. default: true
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24641. {
  24642. front: {
  24643. height: math.unit(13, "feet"),
  24644. weight: math.unit(1700, "lb"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/felix-braveheart/front.svg",
  24648. extra: 1222 / 1157,
  24649. bottom: 53.2 / 1280
  24650. }
  24651. },
  24652. back: {
  24653. height: math.unit(13, "feet"),
  24654. weight: math.unit(1700, "lb"),
  24655. name: "Back",
  24656. image: {
  24657. source: "./media/characters/felix-braveheart/back.svg",
  24658. extra: 1277 / 1203,
  24659. bottom: 50.2 / 1327
  24660. }
  24661. },
  24662. feral: {
  24663. height: math.unit(6, "feet"),
  24664. weight: math.unit(400, "lb"),
  24665. name: "Feral",
  24666. image: {
  24667. source: "./media/characters/felix-braveheart/feral.svg",
  24668. extra: 682 / 625,
  24669. bottom: 6.9 / 688
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(13, "feet"),
  24677. default: true
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24683. {
  24684. side: {
  24685. height: math.unit(5 + 11 / 12, "feet"),
  24686. weight: math.unit(1400, "lb"),
  24687. name: "Side",
  24688. image: {
  24689. source: "./media/characters/shadow-blade/side.svg",
  24690. extra: 1726 / 1267,
  24691. bottom: 58.4 / 1785
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(5 + 11 / 12, "feet"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(1 + 6 / 12, "feet"),
  24708. weight: math.unit(25, "lb"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/karla-halldor/front.svg",
  24712. extra: 1459 / 1383,
  24713. bottom: 12 / 1472
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Normal",
  24720. height: math.unit(1 + 6 / 12, "feet"),
  24721. default: true
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(6 + 2 / 12, "feet"),
  24730. weight: math.unit(160, "lb"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/ariam/front.svg",
  24734. extra: 1073/976,
  24735. bottom: 52/1125
  24736. }
  24737. },
  24738. back: {
  24739. height: math.unit(6 + 2/12, "feet"),
  24740. weight: math.unit(160, "lb"),
  24741. name: "Back",
  24742. image: {
  24743. source: "./media/characters/ariam/back.svg",
  24744. extra: 1103/1023,
  24745. bottom: 9/1112
  24746. }
  24747. },
  24748. dressed: {
  24749. height: math.unit(6 + 2/12, "feet"),
  24750. weight: math.unit(160, "lb"),
  24751. name: "Dressed",
  24752. image: {
  24753. source: "./media/characters/ariam/dressed.svg",
  24754. extra: 1099/1009,
  24755. bottom: 25/1124
  24756. }
  24757. },
  24758. squatting: {
  24759. height: math.unit(4.1, "feet"),
  24760. weight: math.unit(160, "lb"),
  24761. name: "Squatting",
  24762. image: {
  24763. source: "./media/characters/ariam/squatting.svg",
  24764. extra: 2617 / 2112,
  24765. bottom: 61.2 / 2681,
  24766. }
  24767. },
  24768. },
  24769. [
  24770. {
  24771. name: "Normal",
  24772. height: math.unit(6 + 2 / 12, "feet"),
  24773. default: true
  24774. },
  24775. {
  24776. name: "Normal+",
  24777. height: math.unit(4, "meters")
  24778. },
  24779. {
  24780. name: "Macro",
  24781. height: math.unit(50, "meters")
  24782. },
  24783. {
  24784. name: "Macro+",
  24785. height: math.unit(100, "meters")
  24786. },
  24787. {
  24788. name: "Megamacro",
  24789. height: math.unit(20, "km")
  24790. },
  24791. {
  24792. name: "Caretaker",
  24793. height: math.unit(444, "megameters")
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(1.67, "meters"),
  24802. weight: math.unit(140, "lb"),
  24803. name: "Front",
  24804. image: {
  24805. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24806. extra: 438 / 410,
  24807. bottom: 0.75 / 439
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Shrunken",
  24814. height: math.unit(7.6, "cm")
  24815. },
  24816. {
  24817. name: "Human Scale",
  24818. height: math.unit(1.67, "meters")
  24819. },
  24820. {
  24821. name: "Wolxi Scale",
  24822. height: math.unit(36.7, "meters"),
  24823. default: true
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(1.73, "meters"),
  24832. weight: math.unit(240, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/izue-two-mothers/front.svg",
  24836. extra: 469 / 437,
  24837. bottom: 1.24 / 470.6
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Shrunken",
  24844. height: math.unit(7.86, "cm")
  24845. },
  24846. {
  24847. name: "Human Scale",
  24848. height: math.unit(1.73, "meters")
  24849. },
  24850. {
  24851. name: "Wolxi Scale",
  24852. height: math.unit(38, "meters"),
  24853. default: true
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(1.55, "meters"),
  24862. weight: math.unit(120, "lb"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/teeku-love-shack/front.svg",
  24866. extra: 387 / 362,
  24867. bottom: 1.51 / 388
  24868. }
  24869. },
  24870. },
  24871. [
  24872. {
  24873. name: "Shrunken",
  24874. height: math.unit(7, "cm")
  24875. },
  24876. {
  24877. name: "Human Scale",
  24878. height: math.unit(1.55, "meters")
  24879. },
  24880. {
  24881. name: "Wolxi Scale",
  24882. height: math.unit(34.1, "meters"),
  24883. default: true
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(1.83, "meters"),
  24892. weight: math.unit(135, "lb"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/dejma-the-red/front.svg",
  24896. extra: 480 / 458,
  24897. bottom: 1.8 / 482
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Shrunken",
  24904. height: math.unit(8.3, "cm")
  24905. },
  24906. {
  24907. name: "Human Scale",
  24908. height: math.unit(1.83, "meters")
  24909. },
  24910. {
  24911. name: "Wolxi Scale",
  24912. height: math.unit(40, "meters"),
  24913. default: true
  24914. },
  24915. ]
  24916. ))
  24917. characterMakers.push(() => makeCharacter(
  24918. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24919. {
  24920. front: {
  24921. height: math.unit(1.78, "meters"),
  24922. weight: math.unit(65, "kg"),
  24923. name: "Front",
  24924. image: {
  24925. source: "./media/characters/aki/front.svg",
  24926. extra: 452 / 415
  24927. }
  24928. },
  24929. frontNsfw: {
  24930. height: math.unit(1.78, "meters"),
  24931. weight: math.unit(65, "kg"),
  24932. name: "Front (NSFW)",
  24933. image: {
  24934. source: "./media/characters/aki/front-nsfw.svg",
  24935. extra: 452 / 415
  24936. }
  24937. },
  24938. back: {
  24939. height: math.unit(1.78, "meters"),
  24940. weight: math.unit(65, "kg"),
  24941. name: "Back",
  24942. image: {
  24943. source: "./media/characters/aki/back.svg",
  24944. extra: 452 / 415
  24945. }
  24946. },
  24947. rump: {
  24948. height: math.unit(2.05, "feet"),
  24949. name: "Rump",
  24950. image: {
  24951. source: "./media/characters/aki/rump.svg"
  24952. }
  24953. },
  24954. dick: {
  24955. height: math.unit(0.95, "feet"),
  24956. name: "Dick",
  24957. image: {
  24958. source: "./media/characters/aki/dick.svg"
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Micro",
  24965. height: math.unit(15, "cm")
  24966. },
  24967. {
  24968. name: "Normal",
  24969. height: math.unit(178, "cm"),
  24970. default: true
  24971. },
  24972. {
  24973. name: "Macro",
  24974. height: math.unit(214, "m")
  24975. },
  24976. {
  24977. name: "Macro+",
  24978. height: math.unit(534, "m")
  24979. },
  24980. ]
  24981. ))
  24982. characterMakers.push(() => makeCharacter(
  24983. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24984. {
  24985. front: {
  24986. height: math.unit(5 + 5 / 12, "feet"),
  24987. weight: math.unit(120, "lb"),
  24988. name: "Front",
  24989. image: {
  24990. source: "./media/characters/ari/front.svg",
  24991. extra: 714.5 / 682,
  24992. bottom: 8 / 722.5
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(5 + 5 / 12, "feet")
  25000. },
  25001. {
  25002. name: "Macro",
  25003. height: math.unit(100, "feet"),
  25004. default: true
  25005. },
  25006. {
  25007. name: "Megamacro",
  25008. height: math.unit(100, "miles")
  25009. },
  25010. {
  25011. name: "Gigamacro",
  25012. height: math.unit(80000, "miles")
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25018. {
  25019. side: {
  25020. height: math.unit(9, "feet"),
  25021. weight: math.unit(400, "kg"),
  25022. name: "Side",
  25023. image: {
  25024. source: "./media/characters/bolt/side.svg",
  25025. extra: 1126 / 896,
  25026. bottom: 60 / 1187.3,
  25027. }
  25028. },
  25029. },
  25030. [
  25031. {
  25032. name: "Micro",
  25033. height: math.unit(5, "inches")
  25034. },
  25035. {
  25036. name: "Normal",
  25037. height: math.unit(9, "feet"),
  25038. default: true
  25039. },
  25040. {
  25041. name: "Macro",
  25042. height: math.unit(700, "feet")
  25043. },
  25044. {
  25045. name: "Max Size",
  25046. height: math.unit(1.52e22, "yottameters")
  25047. },
  25048. ]
  25049. ))
  25050. characterMakers.push(() => makeCharacter(
  25051. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25052. {
  25053. front: {
  25054. height: math.unit(4.3, "meters"),
  25055. weight: math.unit(3, "tons"),
  25056. name: "Front",
  25057. image: {
  25058. source: "./media/characters/draekon-sylviar/front.svg",
  25059. extra: 2072/1512,
  25060. bottom: 74/2146
  25061. }
  25062. },
  25063. back: {
  25064. height: math.unit(4.3, "meters"),
  25065. weight: math.unit(3, "tons"),
  25066. name: "Back",
  25067. image: {
  25068. source: "./media/characters/draekon-sylviar/back.svg",
  25069. extra: 1639/1483,
  25070. bottom: 41/1680
  25071. }
  25072. },
  25073. feral: {
  25074. height: math.unit(1.15, "meters"),
  25075. weight: math.unit(3, "tons"),
  25076. name: "Feral",
  25077. image: {
  25078. source: "./media/characters/draekon-sylviar/feral.svg",
  25079. extra: 1033/395,
  25080. bottom: 130/1163
  25081. }
  25082. },
  25083. maw: {
  25084. height: math.unit(1.3, "meters"),
  25085. name: "Maw",
  25086. image: {
  25087. source: "./media/characters/draekon-sylviar/maw.svg"
  25088. }
  25089. },
  25090. mawSeparated: {
  25091. height: math.unit(1.53, "meters"),
  25092. name: "Separated Maw",
  25093. image: {
  25094. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25095. }
  25096. },
  25097. tail: {
  25098. height: math.unit(1.15, "meters"),
  25099. name: "Tail",
  25100. image: {
  25101. source: "./media/characters/draekon-sylviar/tail.svg"
  25102. }
  25103. },
  25104. tailDick: {
  25105. height: math.unit(1.15, "meters"),
  25106. name: "Tail (Dick)",
  25107. image: {
  25108. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25109. }
  25110. },
  25111. tailDickSeparated: {
  25112. height: math.unit(1.19, "meters"),
  25113. name: "Tail (Separated Dick)",
  25114. image: {
  25115. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25116. }
  25117. },
  25118. slit: {
  25119. height: math.unit(1, "meters"),
  25120. name: "Slit",
  25121. image: {
  25122. source: "./media/characters/draekon-sylviar/slit.svg"
  25123. }
  25124. },
  25125. dick: {
  25126. height: math.unit(1.15, "meters"),
  25127. name: "Dick",
  25128. image: {
  25129. source: "./media/characters/draekon-sylviar/dick.svg"
  25130. }
  25131. },
  25132. dickSeparated: {
  25133. height: math.unit(1.1, "meters"),
  25134. name: "Separated Dick",
  25135. image: {
  25136. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25137. }
  25138. },
  25139. sheath: {
  25140. height: math.unit(1.15, "meters"),
  25141. name: "Sheath",
  25142. image: {
  25143. source: "./media/characters/draekon-sylviar/sheath.svg"
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Small",
  25150. height: math.unit(4.53 / 2, "meters"),
  25151. default: true
  25152. },
  25153. {
  25154. name: "Normal",
  25155. height: math.unit(4.53, "meters"),
  25156. default: true
  25157. },
  25158. {
  25159. name: "Large",
  25160. height: math.unit(4.53 * 2, "meters"),
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(6 + 2 / 12, "feet"),
  25169. weight: math.unit(180, "lb"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/brawler/front.svg",
  25173. extra: 3301 / 3027,
  25174. bottom: 138 / 3439
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(6 + 2 / 12, "feet"),
  25182. default: true
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(11, "feet"),
  25191. weight: math.unit(1000, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/alex/front.svg",
  25195. bottom: 44.5 / 620
  25196. }
  25197. },
  25198. },
  25199. [
  25200. {
  25201. name: "Micro",
  25202. height: math.unit(5, "inches")
  25203. },
  25204. {
  25205. name: "Normal",
  25206. height: math.unit(11, "feet"),
  25207. default: true
  25208. },
  25209. {
  25210. name: "Macro",
  25211. height: math.unit(9.5e9, "feet")
  25212. },
  25213. {
  25214. name: "Max Size",
  25215. height: math.unit(1.4e283, "yottameters")
  25216. },
  25217. ]
  25218. ))
  25219. characterMakers.push(() => makeCharacter(
  25220. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25221. {
  25222. female: {
  25223. height: math.unit(29.9, "m"),
  25224. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25225. name: "Female",
  25226. image: {
  25227. source: "./media/characters/zenari/female.svg",
  25228. extra: 3281.6 / 3217,
  25229. bottom: 72.2 / 3353
  25230. }
  25231. },
  25232. male: {
  25233. height: math.unit(27.7, "m"),
  25234. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25235. name: "Male",
  25236. image: {
  25237. source: "./media/characters/zenari/male.svg",
  25238. extra: 3008 / 2991,
  25239. bottom: 54.6 / 3069
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Macro",
  25246. height: math.unit(29.7, "meters"),
  25247. default: true
  25248. },
  25249. ]
  25250. ))
  25251. characterMakers.push(() => makeCharacter(
  25252. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25253. {
  25254. female: {
  25255. height: math.unit(23.8, "m"),
  25256. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25257. name: "Female",
  25258. image: {
  25259. source: "./media/characters/mactarian/female.svg",
  25260. extra: 2662 / 2569,
  25261. bottom: 73 / 2736
  25262. }
  25263. },
  25264. male: {
  25265. height: math.unit(23.8, "m"),
  25266. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25267. name: "Male",
  25268. image: {
  25269. source: "./media/characters/mactarian/male.svg",
  25270. extra: 2673 / 2600,
  25271. bottom: 76 / 2750
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Macro",
  25278. height: math.unit(23.8, "meters"),
  25279. default: true
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25285. {
  25286. female: {
  25287. height: math.unit(19.3, "m"),
  25288. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25289. name: "Female",
  25290. image: {
  25291. source: "./media/characters/umok/female.svg",
  25292. extra: 2186 / 2078,
  25293. bottom: 87 / 2277
  25294. }
  25295. },
  25296. male: {
  25297. height: math.unit(19.5, "m"),
  25298. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25299. name: "Male",
  25300. image: {
  25301. source: "./media/characters/umok/male.svg",
  25302. extra: 2233 / 2140,
  25303. bottom: 24.4 / 2258
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Macro",
  25310. height: math.unit(19.3, "meters"),
  25311. default: true
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25317. {
  25318. female: {
  25319. height: math.unit(26.15, "m"),
  25320. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25321. name: "Female",
  25322. image: {
  25323. source: "./media/characters/joraxian/female.svg",
  25324. extra: 2912 / 2824,
  25325. bottom: 36 / 2956
  25326. }
  25327. },
  25328. male: {
  25329. height: math.unit(25.4, "m"),
  25330. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25331. name: "Male",
  25332. image: {
  25333. source: "./media/characters/joraxian/male.svg",
  25334. extra: 2877 / 2721,
  25335. bottom: 82 / 2967
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Macro",
  25342. height: math.unit(26.15, "meters"),
  25343. default: true
  25344. },
  25345. ]
  25346. ))
  25347. characterMakers.push(() => makeCharacter(
  25348. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25349. {
  25350. female: {
  25351. height: math.unit(21.6, "m"),
  25352. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25353. name: "Female",
  25354. image: {
  25355. source: "./media/characters/sthara/female.svg",
  25356. extra: 2516 / 2347,
  25357. bottom: 21.5 / 2537
  25358. }
  25359. },
  25360. male: {
  25361. height: math.unit(24, "m"),
  25362. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25363. name: "Male",
  25364. image: {
  25365. source: "./media/characters/sthara/male.svg",
  25366. extra: 2732 / 2607,
  25367. bottom: 23 / 2732
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Macro",
  25374. height: math.unit(21.6, "meters"),
  25375. default: true
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25381. {
  25382. front: {
  25383. height: math.unit(6 + 4 / 12, "feet"),
  25384. weight: math.unit(175, "lb"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/luka-bryzant/front.svg",
  25388. extra: 311 / 289,
  25389. bottom: 4 / 315
  25390. }
  25391. },
  25392. back: {
  25393. height: math.unit(6 + 4 / 12, "feet"),
  25394. weight: math.unit(175, "lb"),
  25395. name: "Back",
  25396. image: {
  25397. source: "./media/characters/luka-bryzant/back.svg",
  25398. extra: 311 / 289,
  25399. bottom: 3.8 / 313.7
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Micro",
  25406. height: math.unit(10, "inches")
  25407. },
  25408. {
  25409. name: "Normal",
  25410. height: math.unit(6 + 4 / 12, "feet"),
  25411. default: true
  25412. },
  25413. {
  25414. name: "Large",
  25415. height: math.unit(12, "feet")
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(5 + 7 / 12, "feet"),
  25424. weight: math.unit(185, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/aman-aquila/front.svg",
  25428. extra: 1013 / 976,
  25429. bottom: 45.6 / 1057
  25430. }
  25431. },
  25432. side: {
  25433. height: math.unit(5 + 7 / 12, "feet"),
  25434. weight: math.unit(185, "lb"),
  25435. name: "Side",
  25436. image: {
  25437. source: "./media/characters/aman-aquila/side.svg",
  25438. extra: 1054 / 1011,
  25439. bottom: 15 / 1070
  25440. }
  25441. },
  25442. back: {
  25443. height: math.unit(5 + 7 / 12, "feet"),
  25444. weight: math.unit(185, "lb"),
  25445. name: "Back",
  25446. image: {
  25447. source: "./media/characters/aman-aquila/back.svg",
  25448. extra: 1026 / 970,
  25449. bottom: 12 / 1039
  25450. }
  25451. },
  25452. head: {
  25453. height: math.unit(1.211, "feet"),
  25454. name: "Head",
  25455. image: {
  25456. source: "./media/characters/aman-aquila/head.svg",
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Minimicro",
  25463. height: math.unit(0.057, "inches")
  25464. },
  25465. {
  25466. name: "Micro",
  25467. height: math.unit(7, "inches")
  25468. },
  25469. {
  25470. name: "Mini",
  25471. height: math.unit(3 + 7 / 12, "feet")
  25472. },
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(5 + 7 / 12, "feet"),
  25476. default: true
  25477. },
  25478. {
  25479. name: "Macro",
  25480. height: math.unit(157 + 7 / 12, "feet")
  25481. },
  25482. {
  25483. name: "Megamacro",
  25484. height: math.unit(1557 + 7 / 12, "feet")
  25485. },
  25486. {
  25487. name: "Gigamacro",
  25488. height: math.unit(15557 + 7 / 12, "feet")
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(3 + 2 / 12, "inches"),
  25497. weight: math.unit(0.3, "ounces"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/hiphae/front.svg",
  25501. extra: 1931 / 1683,
  25502. bottom: 24 / 1955
  25503. }
  25504. },
  25505. },
  25506. [
  25507. {
  25508. name: "Normal",
  25509. height: math.unit(3 + 1 / 2, "inches"),
  25510. default: true
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25516. {
  25517. front: {
  25518. height: math.unit(5 + 10 / 12, "feet"),
  25519. weight: math.unit(165, "lb"),
  25520. name: "Front",
  25521. image: {
  25522. source: "./media/characters/nicky/front.svg",
  25523. extra: 3144 / 2886,
  25524. bottom: 45.6 / 3192
  25525. }
  25526. },
  25527. back: {
  25528. height: math.unit(5 + 10 / 12, "feet"),
  25529. weight: math.unit(165, "lb"),
  25530. name: "Back",
  25531. image: {
  25532. source: "./media/characters/nicky/back.svg",
  25533. extra: 3055 / 2804,
  25534. bottom: 28.4 / 3087
  25535. }
  25536. },
  25537. frontclothed: {
  25538. height: math.unit(5 + 10 / 12, "feet"),
  25539. weight: math.unit(165, "lb"),
  25540. name: "Front-clothed",
  25541. image: {
  25542. source: "./media/characters/nicky/front-clothed.svg",
  25543. extra: 3184.9 / 2926.9,
  25544. bottom: 86.5 / 3239.9
  25545. }
  25546. },
  25547. foot: {
  25548. height: math.unit(1.16, "feet"),
  25549. name: "Foot",
  25550. image: {
  25551. source: "./media/characters/nicky/foot.svg"
  25552. }
  25553. },
  25554. feet: {
  25555. height: math.unit(1.34, "feet"),
  25556. name: "Feet",
  25557. image: {
  25558. source: "./media/characters/nicky/feet.svg"
  25559. }
  25560. },
  25561. maw: {
  25562. height: math.unit(0.9, "feet"),
  25563. name: "Maw",
  25564. image: {
  25565. source: "./media/characters/nicky/maw.svg"
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(5 + 10 / 12, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(60, "feet")
  25578. },
  25579. {
  25580. name: "Megamacro",
  25581. height: math.unit(1, "mile")
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25587. {
  25588. side: {
  25589. height: math.unit(10, "feet"),
  25590. weight: math.unit(600, "lb"),
  25591. name: "Side",
  25592. image: {
  25593. source: "./media/characters/blair/side.svg",
  25594. bottom: 16.6 / 475,
  25595. extra: 458 / 431
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Micro",
  25602. height: math.unit(8, "inches")
  25603. },
  25604. {
  25605. name: "Normal",
  25606. height: math.unit(10, "feet"),
  25607. default: true
  25608. },
  25609. {
  25610. name: "Macro",
  25611. height: math.unit(180, "feet")
  25612. },
  25613. ]
  25614. ))
  25615. characterMakers.push(() => makeCharacter(
  25616. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25617. {
  25618. front: {
  25619. height: math.unit(5 + 4 / 12, "feet"),
  25620. weight: math.unit(125, "lb"),
  25621. name: "Front",
  25622. image: {
  25623. source: "./media/characters/fisher/front.svg",
  25624. extra: 444 / 390,
  25625. bottom: 2 / 444.8
  25626. }
  25627. },
  25628. },
  25629. [
  25630. {
  25631. name: "Micro",
  25632. height: math.unit(4, "inches")
  25633. },
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(5 + 4 / 12, "feet"),
  25637. default: true
  25638. },
  25639. {
  25640. name: "Macro",
  25641. height: math.unit(100, "feet")
  25642. },
  25643. ]
  25644. ))
  25645. characterMakers.push(() => makeCharacter(
  25646. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25647. {
  25648. front: {
  25649. height: math.unit(6.71, "feet"),
  25650. weight: math.unit(200, "lb"),
  25651. capacity: math.unit(1000000, "people"),
  25652. name: "Front",
  25653. image: {
  25654. source: "./media/characters/gliss/front.svg",
  25655. extra: 2347 / 2231,
  25656. bottom: 113 / 2462
  25657. }
  25658. },
  25659. hammerspaceSize: {
  25660. height: math.unit(6.71 * 717, "feet"),
  25661. weight: math.unit(200, "lb"),
  25662. capacity: math.unit(1000000, "people"),
  25663. name: "Hammerspace Size",
  25664. image: {
  25665. source: "./media/characters/gliss/front.svg",
  25666. extra: 2347 / 2231,
  25667. bottom: 113 / 2462
  25668. }
  25669. },
  25670. },
  25671. [
  25672. {
  25673. name: "Normal",
  25674. height: math.unit(6.71, "feet"),
  25675. default: true
  25676. },
  25677. ]
  25678. ))
  25679. characterMakers.push(() => makeCharacter(
  25680. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25681. {
  25682. side: {
  25683. height: math.unit(1.44, "m"),
  25684. weight: math.unit(80, "kg"),
  25685. name: "Side",
  25686. image: {
  25687. source: "./media/characters/dune-anderson/side.svg",
  25688. bottom: 49 / 1426
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Wolf-sized",
  25695. height: math.unit(1.44, "meters")
  25696. },
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(5.05, "meters"),
  25700. default: true
  25701. },
  25702. {
  25703. name: "Big",
  25704. height: math.unit(14.4, "meters")
  25705. },
  25706. {
  25707. name: "Huge",
  25708. height: math.unit(144, "meters")
  25709. },
  25710. ]
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25714. {
  25715. front: {
  25716. height: math.unit(7, "feet"),
  25717. weight: math.unit(425, "lb"),
  25718. name: "Front",
  25719. image: {
  25720. source: "./media/characters/hind/front.svg",
  25721. extra: 2091 / 1860,
  25722. bottom: 129 / 2220
  25723. }
  25724. },
  25725. back: {
  25726. height: math.unit(7, "feet"),
  25727. weight: math.unit(425, "lb"),
  25728. name: "Back",
  25729. image: {
  25730. source: "./media/characters/hind/back.svg",
  25731. extra: 2091 / 1860,
  25732. bottom: 24.6 / 2309
  25733. }
  25734. },
  25735. tail: {
  25736. height: math.unit(2.8, "feet"),
  25737. name: "Tail",
  25738. image: {
  25739. source: "./media/characters/hind/tail.svg"
  25740. }
  25741. },
  25742. head: {
  25743. height: math.unit(2.55, "feet"),
  25744. name: "Head",
  25745. image: {
  25746. source: "./media/characters/hind/head.svg"
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "XS",
  25753. height: math.unit(0.7, "feet")
  25754. },
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(7, "feet"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "XL",
  25762. height: math.unit(70, "feet")
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(2.1, "meters"),
  25771. weight: math.unit(150, "lb"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/tharquench-sizestealer/front.svg",
  25775. extra: 1605/1470,
  25776. bottom: 36/1641
  25777. }
  25778. },
  25779. frontAlt: {
  25780. height: math.unit(2.1, "meters"),
  25781. weight: math.unit(150, "lb"),
  25782. name: "Front (Alt)",
  25783. image: {
  25784. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25785. extra: 2318 / 2063,
  25786. bottom: 93.4 / 2410
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Nano",
  25793. height: math.unit(1, "mm")
  25794. },
  25795. {
  25796. name: "Micro",
  25797. height: math.unit(1, "cm")
  25798. },
  25799. {
  25800. name: "Normal",
  25801. height: math.unit(2.1, "meters"),
  25802. default: true
  25803. },
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25808. {
  25809. front: {
  25810. height: math.unit(7 + 5 / 12, "feet"),
  25811. weight: math.unit(357, "lb"),
  25812. name: "Front",
  25813. image: {
  25814. source: "./media/characters/solex-draconov/front.svg",
  25815. extra: 1993 / 1865,
  25816. bottom: 117 / 2111
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Natural Height",
  25823. height: math.unit(7 + 5 / 12, "feet"),
  25824. default: true
  25825. },
  25826. {
  25827. name: "Macro",
  25828. height: math.unit(350, "feet")
  25829. },
  25830. {
  25831. name: "Macro+",
  25832. height: math.unit(1000, "feet")
  25833. },
  25834. {
  25835. name: "Megamacro",
  25836. height: math.unit(20, "km")
  25837. },
  25838. {
  25839. name: "Megamacro+",
  25840. height: math.unit(1000, "km")
  25841. },
  25842. {
  25843. name: "Gigamacro",
  25844. height: math.unit(2.5, "Gm")
  25845. },
  25846. {
  25847. name: "Teramacro",
  25848. height: math.unit(15, "Tm")
  25849. },
  25850. {
  25851. name: "Galactic",
  25852. height: math.unit(30, "Zm")
  25853. },
  25854. {
  25855. name: "Universal",
  25856. height: math.unit(21000, "Ym")
  25857. },
  25858. {
  25859. name: "Omniversal",
  25860. height: math.unit(9.861e50, "Ym")
  25861. },
  25862. {
  25863. name: "Existential",
  25864. height: math.unit(1e300, "meters")
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25870. {
  25871. side: {
  25872. height: math.unit(25, "feet"),
  25873. weight: math.unit(90000, "lb"),
  25874. name: "Side",
  25875. image: {
  25876. source: "./media/characters/mandarax/side.svg",
  25877. extra: 614 / 332,
  25878. bottom: 55 / 630
  25879. }
  25880. },
  25881. head: {
  25882. height: math.unit(11.4, "feet"),
  25883. name: "Head",
  25884. image: {
  25885. source: "./media/characters/mandarax/head.svg"
  25886. }
  25887. },
  25888. belly: {
  25889. height: math.unit(33, "feet"),
  25890. name: "Belly",
  25891. capacity: math.unit(500, "people"),
  25892. image: {
  25893. source: "./media/characters/mandarax/belly.svg"
  25894. }
  25895. },
  25896. dick: {
  25897. height: math.unit(8.46, "feet"),
  25898. name: "Dick",
  25899. image: {
  25900. source: "./media/characters/mandarax/dick.svg"
  25901. }
  25902. },
  25903. top: {
  25904. height: math.unit(28, "meters"),
  25905. name: "Top",
  25906. image: {
  25907. source: "./media/characters/mandarax/top.svg"
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(25, "feet"),
  25915. default: true
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(5, "feet"),
  25924. weight: math.unit(90, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/pixil/front.svg",
  25928. extra: 2000 / 1618,
  25929. bottom: 12.3 / 2011
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(5, "feet"),
  25937. default: true
  25938. },
  25939. {
  25940. name: "Megamacro",
  25941. height: math.unit(10, "miles"),
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(7 + 2 / 12, "feet"),
  25950. weight: math.unit(200, "lb"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/angel/front.svg",
  25954. extra: 1830 / 1737,
  25955. bottom: 22.6 / 1854,
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(7 + 2 / 12, "feet"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Macro",
  25967. height: math.unit(1000, "feet")
  25968. },
  25969. {
  25970. name: "Megamacro",
  25971. height: math.unit(2, "miles")
  25972. },
  25973. {
  25974. name: "Gigamacro",
  25975. height: math.unit(20, "earths")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(5, "feet"),
  25984. weight: math.unit(180, "lb"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/mekana/front.svg",
  25988. extra: 1671 / 1605,
  25989. bottom: 3.5 / 1691
  25990. }
  25991. },
  25992. side: {
  25993. height: math.unit(5, "feet"),
  25994. weight: math.unit(180, "lb"),
  25995. name: "Side",
  25996. image: {
  25997. source: "./media/characters/mekana/side.svg",
  25998. extra: 1671 / 1605,
  25999. bottom: 3.5 / 1691
  26000. }
  26001. },
  26002. back: {
  26003. height: math.unit(5, "feet"),
  26004. weight: math.unit(180, "lb"),
  26005. name: "Back",
  26006. image: {
  26007. source: "./media/characters/mekana/back.svg",
  26008. extra: 1671 / 1605,
  26009. bottom: 3.5 / 1691
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(5, "feet"),
  26017. default: true
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(4 + 6 / 12, "feet"),
  26026. weight: math.unit(80, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/pixie/front.svg",
  26030. extra: 1924 / 1825,
  26031. bottom: 22.4 / 1946
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(4 + 6 / 12, "feet"),
  26039. default: true
  26040. },
  26041. {
  26042. name: "Macro",
  26043. height: math.unit(40, "feet")
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(2.1, "meters"),
  26052. weight: math.unit(200, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/the-lascivious/front.svg",
  26056. extra: 1 / 0.893,
  26057. bottom: 3.5 / 573.7
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Human Scale",
  26064. height: math.unit(2.1, "meters")
  26065. },
  26066. {
  26067. name: "Wolxi Scale",
  26068. height: math.unit(46.2, "m"),
  26069. default: true
  26070. },
  26071. {
  26072. name: "Boinker of Buildings",
  26073. height: math.unit(10, "km")
  26074. },
  26075. {
  26076. name: "Shagger of Skyscrapers",
  26077. height: math.unit(40, "km")
  26078. },
  26079. {
  26080. name: "Banger of Boroughs",
  26081. height: math.unit(4000, "km")
  26082. },
  26083. {
  26084. name: "Screwer of States",
  26085. height: math.unit(100000, "km")
  26086. },
  26087. {
  26088. name: "Pounder of Planets",
  26089. height: math.unit(2000000, "km")
  26090. },
  26091. ]
  26092. ))
  26093. characterMakers.push(() => makeCharacter(
  26094. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26095. {
  26096. front: {
  26097. height: math.unit(6, "feet"),
  26098. weight: math.unit(150, "lb"),
  26099. name: "Front",
  26100. image: {
  26101. source: "./media/characters/aj/front.svg",
  26102. extra: 2039 / 1562,
  26103. bottom: 40 / 2079
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Normal",
  26110. height: math.unit(11 + 6 / 12, "feet"),
  26111. default: true
  26112. },
  26113. {
  26114. name: "Megamacro",
  26115. height: math.unit(60, "megameters")
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26121. {
  26122. side: {
  26123. height: math.unit(31 + 8 / 12, "feet"),
  26124. weight: math.unit(75000, "kg"),
  26125. name: "Side",
  26126. image: {
  26127. source: "./media/characters/koros/side.svg",
  26128. extra: 1442 / 1297,
  26129. bottom: 122.7 / 1562
  26130. }
  26131. },
  26132. dicksKingsCrown: {
  26133. height: math.unit(6, "feet"),
  26134. name: "Dicks (King's Crown)",
  26135. image: {
  26136. source: "./media/characters/koros/dicks-kings-crown.svg"
  26137. }
  26138. },
  26139. dicksTailSet: {
  26140. height: math.unit(3, "feet"),
  26141. name: "Dicks (Tail Set)",
  26142. image: {
  26143. source: "./media/characters/koros/dicks-tail-set.svg"
  26144. }
  26145. },
  26146. dickCumming: {
  26147. height: math.unit(7.98, "feet"),
  26148. name: "Dick (Cumming)",
  26149. image: {
  26150. source: "./media/characters/koros/dick-cumming.svg"
  26151. }
  26152. },
  26153. dicksBack: {
  26154. height: math.unit(5.9, "feet"),
  26155. name: "Dicks (Back)",
  26156. image: {
  26157. source: "./media/characters/koros/dicks-back.svg"
  26158. }
  26159. },
  26160. dicksFront: {
  26161. height: math.unit(3.72, "feet"),
  26162. name: "Dicks (Front)",
  26163. image: {
  26164. source: "./media/characters/koros/dicks-front.svg"
  26165. }
  26166. },
  26167. dicksPeeking: {
  26168. height: math.unit(3.0, "feet"),
  26169. name: "Dicks (Peeking)",
  26170. image: {
  26171. source: "./media/characters/koros/dicks-peeking.svg"
  26172. }
  26173. },
  26174. eye: {
  26175. height: math.unit(1.7, "feet"),
  26176. name: "Eye",
  26177. image: {
  26178. source: "./media/characters/koros/eye.svg"
  26179. }
  26180. },
  26181. headFront: {
  26182. height: math.unit(11.69, "feet"),
  26183. name: "Head (Front)",
  26184. image: {
  26185. source: "./media/characters/koros/head-front.svg"
  26186. }
  26187. },
  26188. headSide: {
  26189. height: math.unit(14, "feet"),
  26190. name: "Head (Side)",
  26191. image: {
  26192. source: "./media/characters/koros/head-side.svg"
  26193. }
  26194. },
  26195. leg: {
  26196. height: math.unit(17, "feet"),
  26197. name: "Leg",
  26198. image: {
  26199. source: "./media/characters/koros/leg.svg"
  26200. }
  26201. },
  26202. mawSide: {
  26203. height: math.unit(12.8, "feet"),
  26204. name: "Maw (Side)",
  26205. image: {
  26206. source: "./media/characters/koros/maw-side.svg"
  26207. }
  26208. },
  26209. mawSpitting: {
  26210. height: math.unit(17, "feet"),
  26211. name: "Maw (Spitting)",
  26212. image: {
  26213. source: "./media/characters/koros/maw-spitting.svg"
  26214. }
  26215. },
  26216. slit: {
  26217. height: math.unit(2.8, "feet"),
  26218. name: "Slit",
  26219. image: {
  26220. source: "./media/characters/koros/slit.svg"
  26221. }
  26222. },
  26223. stomach: {
  26224. height: math.unit(6.8, "feet"),
  26225. capacity: math.unit(20, "people"),
  26226. name: "Stomach",
  26227. image: {
  26228. source: "./media/characters/koros/stomach.svg"
  26229. }
  26230. },
  26231. wingspanBottom: {
  26232. height: math.unit(114, "feet"),
  26233. name: "Wingspan (Bottom)",
  26234. image: {
  26235. source: "./media/characters/koros/wingspan-bottom.svg"
  26236. }
  26237. },
  26238. wingspanTop: {
  26239. height: math.unit(104, "feet"),
  26240. name: "Wingspan (Top)",
  26241. image: {
  26242. source: "./media/characters/koros/wingspan-top.svg"
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(31 + 8 / 12, "feet"),
  26250. default: true
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(18 + 5 / 12, "feet"),
  26259. weight: math.unit(3750, "kg"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/vexx/front.svg",
  26263. extra: 426 / 396,
  26264. bottom: 31.5 / 458
  26265. }
  26266. },
  26267. maw: {
  26268. height: math.unit(6, "feet"),
  26269. name: "Maw",
  26270. image: {
  26271. source: "./media/characters/vexx/maw.svg"
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(18 + 5 / 12, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(17 + 6 / 12, "feet"),
  26288. weight: math.unit(150, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/baadra/front.svg",
  26292. extra: 1694/1553,
  26293. bottom: 179/1873
  26294. }
  26295. },
  26296. frontAlt: {
  26297. height: math.unit(17 + 6 / 12, "feet"),
  26298. weight: math.unit(150, "lb"),
  26299. name: "Front (Alt)",
  26300. image: {
  26301. source: "./media/characters/baadra/front-alt.svg",
  26302. extra: 3137 / 2890,
  26303. bottom: 168.4 / 3305
  26304. }
  26305. },
  26306. back: {
  26307. height: math.unit(17 + 6 / 12, "feet"),
  26308. weight: math.unit(150, "lb"),
  26309. name: "Back",
  26310. image: {
  26311. source: "./media/characters/baadra/back.svg",
  26312. extra: 3142 / 2890,
  26313. bottom: 220 / 3371
  26314. }
  26315. },
  26316. head: {
  26317. height: math.unit(5.45, "feet"),
  26318. name: "Head",
  26319. image: {
  26320. source: "./media/characters/baadra/head.svg"
  26321. }
  26322. },
  26323. headAngry: {
  26324. height: math.unit(4.95, "feet"),
  26325. name: "Head (Angry)",
  26326. image: {
  26327. source: "./media/characters/baadra/head-angry.svg"
  26328. }
  26329. },
  26330. headOpen: {
  26331. height: math.unit(6, "feet"),
  26332. name: "Head (Open)",
  26333. image: {
  26334. source: "./media/characters/baadra/head-open.svg"
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(17 + 6 / 12, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(7 + 3 / 12, "feet"),
  26351. weight: math.unit(180, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/juri/front.svg",
  26355. extra: 1401 / 1237,
  26356. bottom: 18.5 / 1418
  26357. }
  26358. },
  26359. side: {
  26360. height: math.unit(7 + 3 / 12, "feet"),
  26361. weight: math.unit(180, "lb"),
  26362. name: "Side",
  26363. image: {
  26364. source: "./media/characters/juri/side.svg",
  26365. extra: 1424 / 1242,
  26366. bottom: 18.5 / 1447
  26367. }
  26368. },
  26369. sitting: {
  26370. height: math.unit(6, "feet"),
  26371. weight: math.unit(180, "lb"),
  26372. name: "Sitting",
  26373. image: {
  26374. source: "./media/characters/juri/sitting.svg",
  26375. extra: 1270 / 1143,
  26376. bottom: 100 / 1343
  26377. }
  26378. },
  26379. back: {
  26380. height: math.unit(7 + 3 / 12, "feet"),
  26381. weight: math.unit(180, "lb"),
  26382. name: "Back",
  26383. image: {
  26384. source: "./media/characters/juri/back.svg",
  26385. extra: 1377 / 1240,
  26386. bottom: 23.7 / 1405
  26387. }
  26388. },
  26389. maw: {
  26390. height: math.unit(2.8, "feet"),
  26391. name: "Maw",
  26392. image: {
  26393. source: "./media/characters/juri/maw.svg"
  26394. }
  26395. },
  26396. stomach: {
  26397. height: math.unit(0.89, "feet"),
  26398. capacity: math.unit(4, "liters"),
  26399. name: "Stomach",
  26400. image: {
  26401. source: "./media/characters/juri/stomach.svg"
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(7 + 3 / 12, "feet"),
  26409. default: true
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26415. {
  26416. fox: {
  26417. height: math.unit(5 + 6 / 12, "feet"),
  26418. weight: math.unit(140, "lb"),
  26419. name: "Fox",
  26420. image: {
  26421. source: "./media/characters/maxene-sita/fox.svg",
  26422. extra: 146 / 138,
  26423. bottom: 2.1 / 148.19
  26424. }
  26425. },
  26426. foxLaying: {
  26427. height: math.unit(1.70, "feet"),
  26428. weight: math.unit(140, "lb"),
  26429. name: "Fox (Laying)",
  26430. image: {
  26431. source: "./media/characters/maxene-sita/fox-laying.svg",
  26432. extra: 910 / 572,
  26433. bottom: 71 / 981
  26434. }
  26435. },
  26436. kitsune: {
  26437. height: math.unit(10, "feet"),
  26438. weight: math.unit(800, "lb"),
  26439. name: "Kitsune",
  26440. image: {
  26441. source: "./media/characters/maxene-sita/kitsune.svg",
  26442. extra: 185 / 176,
  26443. bottom: 4.7 / 189.9
  26444. }
  26445. },
  26446. hellhound: {
  26447. height: math.unit(10, "feet"),
  26448. weight: math.unit(700, "lb"),
  26449. name: "Hellhound",
  26450. image: {
  26451. source: "./media/characters/maxene-sita/hellhound.svg",
  26452. extra: 1600 / 1545,
  26453. bottom: 81 / 1681
  26454. }
  26455. },
  26456. },
  26457. [
  26458. {
  26459. name: "Normal",
  26460. height: math.unit(5 + 6 / 12, "feet"),
  26461. default: true
  26462. },
  26463. ]
  26464. ))
  26465. characterMakers.push(() => makeCharacter(
  26466. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26467. {
  26468. front: {
  26469. height: math.unit(3 + 4 / 12, "feet"),
  26470. weight: math.unit(70, "lb"),
  26471. name: "Front",
  26472. image: {
  26473. source: "./media/characters/maia/front.svg",
  26474. extra: 227 / 219.5,
  26475. bottom: 40 / 267
  26476. }
  26477. },
  26478. back: {
  26479. height: math.unit(3 + 4 / 12, "feet"),
  26480. weight: math.unit(70, "lb"),
  26481. name: "Back",
  26482. image: {
  26483. source: "./media/characters/maia/back.svg",
  26484. extra: 237 / 225
  26485. }
  26486. },
  26487. },
  26488. [
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(3 + 4 / 12, "feet"),
  26492. default: true
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26498. {
  26499. front: {
  26500. height: math.unit(5 + 10 / 12, "feet"),
  26501. weight: math.unit(197, "lb"),
  26502. name: "Front",
  26503. image: {
  26504. source: "./media/characters/jabaro/front.svg",
  26505. extra: 225 / 216,
  26506. bottom: 5.06 / 230
  26507. }
  26508. },
  26509. back: {
  26510. height: math.unit(5 + 10 / 12, "feet"),
  26511. weight: math.unit(197, "lb"),
  26512. name: "Back",
  26513. image: {
  26514. source: "./media/characters/jabaro/back.svg",
  26515. extra: 225 / 219,
  26516. bottom: 1.9 / 227
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(5 + 10 / 12, "feet"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(5 + 8 / 12, "feet"),
  26533. weight: math.unit(139, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/risa/front.svg",
  26537. extra: 270 / 260,
  26538. bottom: 11.2 / 282
  26539. }
  26540. },
  26541. back: {
  26542. height: math.unit(5 + 8 / 12, "feet"),
  26543. weight: math.unit(139, "lb"),
  26544. name: "Back",
  26545. image: {
  26546. source: "./media/characters/risa/back.svg",
  26547. extra: 264 / 255,
  26548. bottom: 4 / 268
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(5 + 8 / 12, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(2 + 11 / 12, "feet"),
  26565. weight: math.unit(30, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/weatley/front.svg",
  26569. bottom: 10.7 / 414,
  26570. extra: 403.5 / 362
  26571. }
  26572. },
  26573. back: {
  26574. height: math.unit(2 + 11 / 12, "feet"),
  26575. weight: math.unit(30, "lb"),
  26576. name: "Back",
  26577. image: {
  26578. source: "./media/characters/weatley/back.svg",
  26579. bottom: 10.7 / 414,
  26580. extra: 403.5 / 362
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(2 + 11 / 12, "feet"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26594. {
  26595. front: {
  26596. height: math.unit(5 + 2 / 12, "feet"),
  26597. weight: math.unit(50, "kg"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/mercury-crescent/front.svg",
  26601. extra: 1088 / 1033,
  26602. bottom: 18.9 / 1109
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Normal",
  26609. height: math.unit(5 + 2 / 12, "feet"),
  26610. default: true
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(2, "feet"),
  26619. weight: math.unit(15, "kg"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/diamond-jones/front.svg",
  26623. extra: 727/723,
  26624. bottom: 46/773
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Normal",
  26631. height: math.unit(2, "feet"),
  26632. default: true
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(3, "feet"),
  26641. weight: math.unit(30, "kg"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/sweet-bit/front.svg",
  26645. extra: 675 / 567,
  26646. bottom: 27.7 / 703
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(3, "feet"),
  26654. default: true
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26660. {
  26661. side: {
  26662. height: math.unit(9.178, "feet"),
  26663. weight: math.unit(500, "lb"),
  26664. name: "Side",
  26665. image: {
  26666. source: "./media/characters/umbrazen/side.svg",
  26667. extra: 1730 / 1473,
  26668. bottom: 34.6 / 1765
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Normal",
  26675. height: math.unit(9.178, "feet"),
  26676. default: true
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26682. {
  26683. front: {
  26684. height: math.unit(10, "feet"),
  26685. weight: math.unit(750, "lb"),
  26686. name: "Front",
  26687. image: {
  26688. source: "./media/characters/arlist/front.svg",
  26689. extra: 961 / 778,
  26690. bottom: 6.2 / 986
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(10, "feet"),
  26698. default: true
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26704. {
  26705. front: {
  26706. height: math.unit(5 + 1 / 12, "feet"),
  26707. weight: math.unit(110, "lb"),
  26708. name: "Front",
  26709. image: {
  26710. source: "./media/characters/aradel/front.svg",
  26711. extra: 324 / 303,
  26712. bottom: 3.6 / 329.4
  26713. }
  26714. },
  26715. },
  26716. [
  26717. {
  26718. name: "Normal",
  26719. height: math.unit(5 + 1 / 12, "feet"),
  26720. default: true
  26721. },
  26722. ]
  26723. ))
  26724. characterMakers.push(() => makeCharacter(
  26725. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26726. {
  26727. dressed: {
  26728. height: math.unit(3 + 8 / 12, "feet"),
  26729. weight: math.unit(50, "lb"),
  26730. name: "Dressed",
  26731. image: {
  26732. source: "./media/characters/serryn/dressed.svg",
  26733. extra: 1792 / 1656,
  26734. bottom: 43.5 / 1840
  26735. }
  26736. },
  26737. nude: {
  26738. height: math.unit(3 + 8 / 12, "feet"),
  26739. weight: math.unit(50, "lb"),
  26740. name: "Nude",
  26741. image: {
  26742. source: "./media/characters/serryn/nude.svg",
  26743. extra: 1792 / 1656,
  26744. bottom: 43.5 / 1840
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(3 + 8 / 12, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(7 + 10 / 12, "feet"),
  26761. weight: math.unit(255, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/xavier-thyme/front.svg",
  26765. extra: 3733 / 3642,
  26766. bottom: 131 / 3869
  26767. }
  26768. },
  26769. frontRaven: {
  26770. height: math.unit(7 + 10 / 12, "feet"),
  26771. weight: math.unit(255, "lb"),
  26772. name: "Front (Raven)",
  26773. image: {
  26774. source: "./media/characters/xavier-thyme/front-raven.svg",
  26775. extra: 4385 / 3642,
  26776. bottom: 131 / 4517
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Normal",
  26783. height: math.unit(7 + 10 / 12, "feet"),
  26784. default: true
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(1.6, "m"),
  26793. weight: math.unit(50, "kg"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/kiki/front.svg",
  26797. extra: 4682 / 3610,
  26798. bottom: 115 / 4777
  26799. }
  26800. },
  26801. },
  26802. [
  26803. {
  26804. name: "Normal",
  26805. height: math.unit(1.6, "meters"),
  26806. default: true
  26807. },
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26812. {
  26813. front: {
  26814. height: math.unit(50, "m"),
  26815. weight: math.unit(500, "tonnes"),
  26816. name: "Front",
  26817. image: {
  26818. source: "./media/characters/ryoko/front.svg",
  26819. extra: 4632 / 3926,
  26820. bottom: 193 / 4823
  26821. }
  26822. },
  26823. },
  26824. [
  26825. {
  26826. name: "Normal",
  26827. height: math.unit(50, "meters"),
  26828. default: true
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26834. {
  26835. front: {
  26836. height: math.unit(30, "m"),
  26837. weight: math.unit(22, "tonnes"),
  26838. name: "Front",
  26839. image: {
  26840. source: "./media/characters/elio/front.svg",
  26841. extra: 4582 / 3720,
  26842. bottom: 236 / 4828
  26843. }
  26844. },
  26845. },
  26846. [
  26847. {
  26848. name: "Normal",
  26849. height: math.unit(30, "meters"),
  26850. default: true
  26851. },
  26852. ]
  26853. ))
  26854. characterMakers.push(() => makeCharacter(
  26855. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26856. {
  26857. front: {
  26858. height: math.unit(6 + 3 / 12, "feet"),
  26859. weight: math.unit(120, "lb"),
  26860. name: "Front",
  26861. image: {
  26862. source: "./media/characters/azura/front.svg",
  26863. extra: 1149 / 1135,
  26864. bottom: 45 / 1194
  26865. }
  26866. },
  26867. frontClothed: {
  26868. height: math.unit(6 + 3 / 12, "feet"),
  26869. weight: math.unit(120, "lb"),
  26870. name: "Front (Clothed)",
  26871. image: {
  26872. source: "./media/characters/azura/front-clothed.svg",
  26873. extra: 1149 / 1135,
  26874. bottom: 45 / 1194
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(6 + 3 / 12, "feet"),
  26882. default: true
  26883. },
  26884. {
  26885. name: "Macro",
  26886. height: math.unit(20 + 6 / 12, "feet")
  26887. },
  26888. {
  26889. name: "Megamacro",
  26890. height: math.unit(12, "miles")
  26891. },
  26892. {
  26893. name: "Gigamacro",
  26894. height: math.unit(10000, "miles")
  26895. },
  26896. {
  26897. name: "Teramacro",
  26898. height: math.unit(900000, "miles")
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(12, "feet"),
  26907. weight: math.unit(1, "ton"),
  26908. capacity: math.unit(660000, "gallons"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/zeus/front.svg",
  26912. extra: 5005 / 4717,
  26913. bottom: 363 / 5388
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(12, "feet")
  26921. },
  26922. {
  26923. name: "Preferred Size",
  26924. height: math.unit(0.5, "miles"),
  26925. default: true
  26926. },
  26927. {
  26928. name: "Giga Horse",
  26929. height: math.unit(300, "miles")
  26930. },
  26931. {
  26932. name: "Riding Planets",
  26933. height: math.unit(30, "megameters")
  26934. },
  26935. {
  26936. name: "Cosmic Giant",
  26937. height: math.unit(3, "zettameters")
  26938. },
  26939. {
  26940. name: "Breeding God",
  26941. height: math.unit(9.92e22, "yottameters")
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26947. {
  26948. side: {
  26949. height: math.unit(9, "feet"),
  26950. weight: math.unit(1500, "kg"),
  26951. name: "Side",
  26952. image: {
  26953. source: "./media/characters/fang/side.svg",
  26954. extra: 924 / 866,
  26955. bottom: 47.5 / 972.3
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(9, "feet"),
  26963. default: true
  26964. },
  26965. {
  26966. name: "Macro",
  26967. height: math.unit(75 + 6 / 12, "feet")
  26968. },
  26969. {
  26970. name: "Teramacro",
  26971. height: math.unit(50000, "miles")
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(10, "feet"),
  26980. weight: math.unit(2, "tons"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/rekhit/front.svg",
  26984. extra: 2796 / 2590,
  26985. bottom: 225 / 3022
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Normal",
  26992. height: math.unit(10, "feet"),
  26993. default: true
  26994. },
  26995. {
  26996. name: "Macro",
  26997. height: math.unit(500, "feet")
  26998. },
  26999. ]
  27000. ))
  27001. characterMakers.push(() => makeCharacter(
  27002. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27003. {
  27004. front: {
  27005. height: math.unit(7 + 6.451 / 12, "feet"),
  27006. weight: math.unit(310, "lb"),
  27007. name: "Front",
  27008. image: {
  27009. source: "./media/characters/dahlia-verrick/front.svg",
  27010. extra: 1488 / 1365,
  27011. bottom: 6.2 / 1495
  27012. }
  27013. },
  27014. back: {
  27015. height: math.unit(7 + 6.451 / 12, "feet"),
  27016. weight: math.unit(310, "lb"),
  27017. name: "Back",
  27018. image: {
  27019. source: "./media/characters/dahlia-verrick/back.svg",
  27020. extra: 1472 / 1351,
  27021. bottom: 5.28 / 1477
  27022. }
  27023. },
  27024. frontBusiness: {
  27025. height: math.unit(7 + 6.451 / 12, "feet"),
  27026. weight: math.unit(200, "lb"),
  27027. name: "Front (Business)",
  27028. image: {
  27029. source: "./media/characters/dahlia-verrick/front-business.svg",
  27030. extra: 1478 / 1381,
  27031. bottom: 5.5 / 1484
  27032. }
  27033. },
  27034. frontCasual: {
  27035. height: math.unit(7 + 6.451 / 12, "feet"),
  27036. weight: math.unit(200, "lb"),
  27037. name: "Front (Casual)",
  27038. image: {
  27039. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27040. extra: 1478 / 1381,
  27041. bottom: 5.5 / 1484
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Travel-Sized",
  27048. height: math.unit(7.45, "inches")
  27049. },
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(7 + 6.451 / 12, "feet"),
  27053. default: true
  27054. },
  27055. {
  27056. name: "Hitting the Town",
  27057. height: math.unit(37 + 8 / 12, "feet")
  27058. },
  27059. {
  27060. name: "Stomp in the Suburbs",
  27061. height: math.unit(964 + 9.728 / 12, "feet")
  27062. },
  27063. {
  27064. name: "Sit on the City",
  27065. height: math.unit(61747 + 10.592 / 12, "feet")
  27066. },
  27067. {
  27068. name: "Glomp the Globe",
  27069. height: math.unit(252919327 + 4.832 / 12, "feet")
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(6 + 4 / 12, "feet"),
  27078. weight: math.unit(320, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/balina-mahigan/front.svg",
  27082. extra: 447 / 428,
  27083. bottom: 18 / 466
  27084. }
  27085. },
  27086. back: {
  27087. height: math.unit(6 + 4 / 12, "feet"),
  27088. weight: math.unit(320, "lb"),
  27089. name: "Back",
  27090. image: {
  27091. source: "./media/characters/balina-mahigan/back.svg",
  27092. extra: 445 / 428,
  27093. bottom: 4.07 / 448
  27094. }
  27095. },
  27096. arm: {
  27097. height: math.unit(1.88, "feet"),
  27098. name: "Arm",
  27099. image: {
  27100. source: "./media/characters/balina-mahigan/arm.svg"
  27101. }
  27102. },
  27103. backPort: {
  27104. height: math.unit(0.685, "feet"),
  27105. name: "Back Port",
  27106. image: {
  27107. source: "./media/characters/balina-mahigan/back-port.svg"
  27108. }
  27109. },
  27110. hoofpaw: {
  27111. height: math.unit(1.41, "feet"),
  27112. name: "Hoofpaw",
  27113. image: {
  27114. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27115. }
  27116. },
  27117. leftHandBack: {
  27118. height: math.unit(0.938, "feet"),
  27119. name: "Left Hand (Back)",
  27120. image: {
  27121. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27122. }
  27123. },
  27124. leftHandFront: {
  27125. height: math.unit(0.938, "feet"),
  27126. name: "Left Hand (Front)",
  27127. image: {
  27128. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27129. }
  27130. },
  27131. rightHandBack: {
  27132. height: math.unit(0.95, "feet"),
  27133. name: "Right Hand (Back)",
  27134. image: {
  27135. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27136. }
  27137. },
  27138. rightHandFront: {
  27139. height: math.unit(0.95, "feet"),
  27140. name: "Right Hand (Front)",
  27141. image: {
  27142. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(6 + 4 / 12, "feet"),
  27150. default: true
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(6, "feet"),
  27159. weight: math.unit(320, "lb"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/balina-mejeri/front.svg",
  27163. extra: 517 / 488,
  27164. bottom: 44.2 / 561
  27165. }
  27166. },
  27167. },
  27168. [
  27169. {
  27170. name: "Normal",
  27171. height: math.unit(6 + 4 / 12, "feet")
  27172. },
  27173. {
  27174. name: "Business",
  27175. height: math.unit(155, "feet"),
  27176. default: true
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27182. {
  27183. kneeling: {
  27184. height: math.unit(6 + 4 / 12, "feet"),
  27185. weight: math.unit(300 * 20, "lb"),
  27186. name: "Kneeling",
  27187. image: {
  27188. source: "./media/characters/balbarian/kneeling.svg",
  27189. extra: 922 / 862,
  27190. bottom: 42.4 / 965
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(6 + 4 / 12, "feet")
  27198. },
  27199. {
  27200. name: "Treasured",
  27201. height: math.unit(18 + 9 / 12, "feet"),
  27202. default: true
  27203. },
  27204. {
  27205. name: "Macro",
  27206. height: math.unit(900, "feet")
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(6 + 4 / 12, "feet"),
  27215. weight: math.unit(325, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/balina-amarini/front.svg",
  27219. extra: 415 / 403,
  27220. bottom: 19 / 433.4
  27221. }
  27222. },
  27223. back: {
  27224. height: math.unit(6 + 4 / 12, "feet"),
  27225. weight: math.unit(325, "lb"),
  27226. name: "Back",
  27227. image: {
  27228. source: "./media/characters/balina-amarini/back.svg",
  27229. extra: 415 / 403,
  27230. bottom: 13.5 / 432
  27231. }
  27232. },
  27233. overdrive: {
  27234. height: math.unit(6 + 4 / 12, "feet"),
  27235. weight: math.unit(400, "lb"),
  27236. name: "Overdrive",
  27237. image: {
  27238. source: "./media/characters/balina-amarini/overdrive.svg",
  27239. extra: 269 / 259,
  27240. bottom: 12 / 282
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Boom",
  27247. height: math.unit(9 + 10 / 12, "feet"),
  27248. default: true
  27249. },
  27250. {
  27251. name: "Macro",
  27252. height: math.unit(280, "feet")
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27258. {
  27259. goddess: {
  27260. height: math.unit(600, "feet"),
  27261. weight: math.unit(2000000, "tons"),
  27262. name: "Goddess",
  27263. image: {
  27264. source: "./media/characters/lady-kubwa/goddess.svg",
  27265. extra: 1240.5 / 1223,
  27266. bottom: 22 / 1263
  27267. }
  27268. },
  27269. goddesser: {
  27270. height: math.unit(900, "feet"),
  27271. weight: math.unit(20000000, "lb"),
  27272. name: "Goddess-er",
  27273. image: {
  27274. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27275. extra: 899 / 888,
  27276. bottom: 12.6 / 912
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Macro",
  27283. height: math.unit(600, "feet"),
  27284. default: true
  27285. },
  27286. {
  27287. name: "Megamacro",
  27288. height: math.unit(250, "miles")
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27294. {
  27295. front: {
  27296. height: math.unit(7 + 7 / 12, "feet"),
  27297. weight: math.unit(250, "lb"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/tala-grovehorn/front.svg",
  27301. extra: 2636 / 2525,
  27302. bottom: 147 / 2781
  27303. }
  27304. },
  27305. back: {
  27306. height: math.unit(7 + 7 / 12, "feet"),
  27307. weight: math.unit(250, "lb"),
  27308. name: "Back",
  27309. image: {
  27310. source: "./media/characters/tala-grovehorn/back.svg",
  27311. extra: 2635 / 2539,
  27312. bottom: 100 / 2732.8
  27313. }
  27314. },
  27315. mouth: {
  27316. height: math.unit(1.15, "feet"),
  27317. name: "Mouth",
  27318. image: {
  27319. source: "./media/characters/tala-grovehorn/mouth.svg"
  27320. }
  27321. },
  27322. dick: {
  27323. height: math.unit(2.36, "feet"),
  27324. name: "Dick",
  27325. image: {
  27326. source: "./media/characters/tala-grovehorn/dick.svg"
  27327. }
  27328. },
  27329. slit: {
  27330. height: math.unit(0.61, "feet"),
  27331. name: "Slit",
  27332. image: {
  27333. source: "./media/characters/tala-grovehorn/slit.svg"
  27334. }
  27335. },
  27336. },
  27337. [
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(7 + 7 / 12, "feet"),
  27345. weight: math.unit(225, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/epona/front.svg",
  27349. extra: 2445 / 2290,
  27350. bottom: 251 / 2696
  27351. }
  27352. },
  27353. back: {
  27354. height: math.unit(7 + 7 / 12, "feet"),
  27355. weight: math.unit(225, "lb"),
  27356. name: "Back",
  27357. image: {
  27358. source: "./media/characters/epona/back.svg",
  27359. extra: 2546 / 2408,
  27360. bottom: 44 / 2589
  27361. }
  27362. },
  27363. genitals: {
  27364. height: math.unit(1.5, "feet"),
  27365. name: "Genitals",
  27366. image: {
  27367. source: "./media/characters/epona/genitals.svg"
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Normal",
  27374. height: math.unit(7 + 7 / 12, "feet"),
  27375. default: true
  27376. },
  27377. ]
  27378. ))
  27379. characterMakers.push(() => makeCharacter(
  27380. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27381. {
  27382. front: {
  27383. height: math.unit(7, "feet"),
  27384. weight: math.unit(518, "lb"),
  27385. name: "Front",
  27386. image: {
  27387. source: "./media/characters/avia-bloodbourn/front.svg",
  27388. extra: 1466 / 1350,
  27389. bottom: 65 / 1527
  27390. }
  27391. },
  27392. },
  27393. [
  27394. ]
  27395. ))
  27396. characterMakers.push(() => makeCharacter(
  27397. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27398. {
  27399. front: {
  27400. height: math.unit(9.35, "feet"),
  27401. weight: math.unit(600, "lb"),
  27402. name: "Front",
  27403. image: {
  27404. source: "./media/characters/amera/front.svg",
  27405. extra: 891 / 818,
  27406. bottom: 30 / 922.7
  27407. }
  27408. },
  27409. back: {
  27410. height: math.unit(9.35, "feet"),
  27411. weight: math.unit(600, "lb"),
  27412. name: "Back",
  27413. image: {
  27414. source: "./media/characters/amera/back.svg",
  27415. extra: 876 / 824,
  27416. bottom: 6.8 / 884
  27417. }
  27418. },
  27419. dick: {
  27420. height: math.unit(2.14, "feet"),
  27421. name: "Dick",
  27422. image: {
  27423. source: "./media/characters/amera/dick.svg"
  27424. }
  27425. },
  27426. },
  27427. [
  27428. {
  27429. name: "Normal",
  27430. height: math.unit(9.35, "feet"),
  27431. default: true
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27437. {
  27438. kneeling: {
  27439. height: math.unit(3 + 4 / 12, "feet"),
  27440. weight: math.unit(90, "lb"),
  27441. name: "Kneeling",
  27442. image: {
  27443. source: "./media/characters/rosewen/kneeling.svg",
  27444. extra: 1835 / 1571,
  27445. bottom: 27.7 / 1862
  27446. }
  27447. },
  27448. },
  27449. [
  27450. {
  27451. name: "Normal",
  27452. height: math.unit(3 + 4 / 12, "feet"),
  27453. default: true
  27454. },
  27455. ]
  27456. ))
  27457. characterMakers.push(() => makeCharacter(
  27458. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27459. {
  27460. front: {
  27461. height: math.unit(5 + 10 / 12, "feet"),
  27462. weight: math.unit(200, "lb"),
  27463. name: "Front",
  27464. image: {
  27465. source: "./media/characters/sabah/front.svg",
  27466. extra: 849 / 763,
  27467. bottom: 33.9 / 881
  27468. }
  27469. },
  27470. },
  27471. [
  27472. {
  27473. name: "Normal",
  27474. height: math.unit(5 + 10 / 12, "feet"),
  27475. default: true
  27476. },
  27477. ]
  27478. ))
  27479. characterMakers.push(() => makeCharacter(
  27480. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27481. {
  27482. front: {
  27483. height: math.unit(3 + 5 / 12, "feet"),
  27484. weight: math.unit(40, "kg"),
  27485. name: "Front",
  27486. image: {
  27487. source: "./media/characters/purple-flame/front.svg",
  27488. extra: 1577 / 1412,
  27489. bottom: 97 / 1694
  27490. }
  27491. },
  27492. frontDressed: {
  27493. height: math.unit(3 + 5 / 12, "feet"),
  27494. weight: math.unit(40, "kg"),
  27495. name: "Front (Dressed)",
  27496. image: {
  27497. source: "./media/characters/purple-flame/front-dressed.svg",
  27498. extra: 1577 / 1412,
  27499. bottom: 97 / 1694
  27500. }
  27501. },
  27502. headphones: {
  27503. height: math.unit(0.85, "feet"),
  27504. name: "Headphones",
  27505. image: {
  27506. source: "./media/characters/purple-flame/headphones.svg"
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Really Small",
  27513. height: math.unit(5, "cm")
  27514. },
  27515. {
  27516. name: "Micro",
  27517. height: math.unit(1 + 5 / 12, "feet")
  27518. },
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(3 + 5 / 12, "feet"),
  27522. default: true
  27523. },
  27524. {
  27525. name: "Minimacro",
  27526. height: math.unit(125, "feet")
  27527. },
  27528. {
  27529. name: "Macro",
  27530. height: math.unit(0.5, "miles")
  27531. },
  27532. {
  27533. name: "Megamacro",
  27534. height: math.unit(50, "miles")
  27535. },
  27536. {
  27537. name: "Gigantic",
  27538. height: math.unit(750, "miles")
  27539. },
  27540. {
  27541. name: "Planetary",
  27542. height: math.unit(15000, "miles")
  27543. },
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27548. {
  27549. front: {
  27550. height: math.unit(14, "feet"),
  27551. weight: math.unit(959, "lb"),
  27552. name: "Front",
  27553. image: {
  27554. source: "./media/characters/arsenal/front.svg",
  27555. extra: 2357 / 2157,
  27556. bottom: 93 / 2458
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Normal",
  27563. height: math.unit(14, "feet"),
  27564. default: true
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(6, "feet"),
  27573. weight: math.unit(150, "lb"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/adira/front.svg",
  27577. extra: 1078 / 1029,
  27578. bottom: 87 / 1166
  27579. }
  27580. },
  27581. },
  27582. [
  27583. {
  27584. name: "Micro",
  27585. height: math.unit(4, "inches"),
  27586. default: true
  27587. },
  27588. {
  27589. name: "Macro",
  27590. height: math.unit(50, "feet")
  27591. },
  27592. ]
  27593. ))
  27594. characterMakers.push(() => makeCharacter(
  27595. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27596. {
  27597. front: {
  27598. height: math.unit(16, "feet"),
  27599. weight: math.unit(1000, "lb"),
  27600. name: "Front",
  27601. image: {
  27602. source: "./media/characters/grim/front.svg",
  27603. extra: 622 / 614,
  27604. bottom: 18.1 / 642
  27605. }
  27606. },
  27607. back: {
  27608. height: math.unit(16, "feet"),
  27609. weight: math.unit(1000, "lb"),
  27610. name: "Back",
  27611. image: {
  27612. source: "./media/characters/grim/back.svg",
  27613. extra: 610.6 / 602,
  27614. bottom: 40.8 / 652
  27615. }
  27616. },
  27617. hunched: {
  27618. height: math.unit(9.75, "feet"),
  27619. weight: math.unit(1000, "lb"),
  27620. name: "Hunched",
  27621. image: {
  27622. source: "./media/characters/grim/hunched.svg",
  27623. extra: 304 / 297,
  27624. bottom: 35.4 / 394
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Normal",
  27631. height: math.unit(16, "feet"),
  27632. default: true
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(2.3, "meters"),
  27641. weight: math.unit(300, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/sinja/front-sfw.svg",
  27645. extra: 1393 / 1294,
  27646. bottom: 70 / 1463
  27647. }
  27648. },
  27649. frontNsfw: {
  27650. height: math.unit(2.3, "meters"),
  27651. weight: math.unit(300, "lb"),
  27652. name: "Front (NSFW)",
  27653. image: {
  27654. source: "./media/characters/sinja/front-nsfw.svg",
  27655. extra: 1393 / 1294,
  27656. bottom: 70 / 1463
  27657. }
  27658. },
  27659. back: {
  27660. height: math.unit(2.3, "meters"),
  27661. weight: math.unit(300, "lb"),
  27662. name: "Back",
  27663. image: {
  27664. source: "./media/characters/sinja/back.svg",
  27665. extra: 1393 / 1294,
  27666. bottom: 70 / 1463
  27667. }
  27668. },
  27669. head: {
  27670. height: math.unit(1.771, "feet"),
  27671. name: "Head",
  27672. image: {
  27673. source: "./media/characters/sinja/head.svg"
  27674. }
  27675. },
  27676. slit: {
  27677. height: math.unit(0.8, "feet"),
  27678. name: "Slit",
  27679. image: {
  27680. source: "./media/characters/sinja/slit.svg"
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(2.3, "meters")
  27688. },
  27689. {
  27690. name: "Macro",
  27691. height: math.unit(91, "meters"),
  27692. default: true
  27693. },
  27694. {
  27695. name: "Megamacro",
  27696. height: math.unit(91440, "meters")
  27697. },
  27698. {
  27699. name: "Gigamacro",
  27700. height: math.unit(60960000, "meters")
  27701. },
  27702. {
  27703. name: "Teramacro",
  27704. height: math.unit(9144000000, "meters")
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27710. {
  27711. front: {
  27712. height: math.unit(1.7, "meters"),
  27713. weight: math.unit(130, "lb"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/kyu/front.svg",
  27717. extra: 415 / 395,
  27718. bottom: 5 / 420
  27719. }
  27720. },
  27721. head: {
  27722. height: math.unit(1.75, "feet"),
  27723. name: "Head",
  27724. image: {
  27725. source: "./media/characters/kyu/head.svg"
  27726. }
  27727. },
  27728. foot: {
  27729. height: math.unit(0.81, "feet"),
  27730. name: "Foot",
  27731. image: {
  27732. source: "./media/characters/kyu/foot.svg"
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Normal",
  27739. height: math.unit(1.7, "meters")
  27740. },
  27741. {
  27742. name: "Macro",
  27743. height: math.unit(131, "feet"),
  27744. default: true
  27745. },
  27746. {
  27747. name: "Megamacro",
  27748. height: math.unit(91440, "meters")
  27749. },
  27750. {
  27751. name: "Gigamacro",
  27752. height: math.unit(60960000, "meters")
  27753. },
  27754. {
  27755. name: "Teramacro",
  27756. height: math.unit(9144000000, "meters")
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(7 + 1 / 12, "feet"),
  27765. weight: math.unit(250, "lb"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/joey/front.svg",
  27769. extra: 1791 / 1537,
  27770. bottom: 28 / 1816
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Micro",
  27777. height: math.unit(3, "inches")
  27778. },
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(7 + 1 / 12, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(165, "cm"),
  27791. weight: math.unit(140, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/sam-evans/front.svg",
  27795. extra: 3417 / 3230,
  27796. bottom: 41.3 / 3417
  27797. }
  27798. },
  27799. frontSixTails: {
  27800. height: math.unit(165, "cm"),
  27801. weight: math.unit(140, "lb"),
  27802. name: "Front-six-tails",
  27803. image: {
  27804. source: "./media/characters/sam-evans/front-six-tails.svg",
  27805. extra: 3417 / 3230,
  27806. bottom: 41.3 / 3417
  27807. }
  27808. },
  27809. back: {
  27810. height: math.unit(165, "cm"),
  27811. weight: math.unit(140, "lb"),
  27812. name: "Back",
  27813. image: {
  27814. source: "./media/characters/sam-evans/back.svg",
  27815. extra: 3227 / 3032,
  27816. bottom: 6.8 / 3234
  27817. }
  27818. },
  27819. face: {
  27820. height: math.unit(0.68, "feet"),
  27821. name: "Face",
  27822. image: {
  27823. source: "./media/characters/sam-evans/face.svg"
  27824. }
  27825. },
  27826. },
  27827. [
  27828. {
  27829. name: "Normal",
  27830. height: math.unit(165, "cm"),
  27831. default: true
  27832. },
  27833. {
  27834. name: "Macro",
  27835. height: math.unit(100, "meters")
  27836. },
  27837. {
  27838. name: "Macro+",
  27839. height: math.unit(800, "meters")
  27840. },
  27841. {
  27842. name: "Macro++",
  27843. height: math.unit(3, "km")
  27844. },
  27845. {
  27846. name: "Macro+++",
  27847. height: math.unit(30, "km")
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(10, "feet"),
  27856. weight: math.unit(750, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/juliet-a/front.svg",
  27860. extra: 1766 / 1720,
  27861. bottom: 43 / 1809
  27862. }
  27863. },
  27864. back: {
  27865. height: math.unit(10, "feet"),
  27866. weight: math.unit(750, "lb"),
  27867. name: "Back",
  27868. image: {
  27869. source: "./media/characters/juliet-a/back.svg",
  27870. extra: 1781 / 1734,
  27871. bottom: 35 / 1810,
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(10, "feet"),
  27879. default: true
  27880. },
  27881. {
  27882. name: "Dragon Form",
  27883. height: math.unit(250, "feet")
  27884. },
  27885. {
  27886. name: "Macro",
  27887. height: math.unit(1000, "feet")
  27888. },
  27889. {
  27890. name: "Megamacro",
  27891. height: math.unit(10000, "feet")
  27892. }
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27897. {
  27898. regular: {
  27899. height: math.unit(7 + 3 / 12, "feet"),
  27900. weight: math.unit(260, "lb"),
  27901. name: "Regular",
  27902. image: {
  27903. source: "./media/characters/wild/regular.svg",
  27904. extra: 97.45 / 92,
  27905. bottom: 6.8 / 104.3
  27906. }
  27907. },
  27908. biggums: {
  27909. height: math.unit(8 + 6 / 12, "feet"),
  27910. weight: math.unit(425, "lb"),
  27911. name: "Biggums",
  27912. image: {
  27913. source: "./media/characters/wild/biggums.svg",
  27914. extra: 97.45 / 92,
  27915. bottom: 7.5 / 132.34
  27916. }
  27917. },
  27918. mawRegular: {
  27919. height: math.unit(1.24, "feet"),
  27920. name: "Maw (Regular)",
  27921. image: {
  27922. source: "./media/characters/wild/maw.svg"
  27923. }
  27924. },
  27925. mawBiggums: {
  27926. height: math.unit(1.47, "feet"),
  27927. name: "Maw (Biggums)",
  27928. image: {
  27929. source: "./media/characters/wild/maw.svg"
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Normal",
  27936. height: math.unit(7 + 3 / 12, "feet"),
  27937. default: true
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27943. {
  27944. front: {
  27945. height: math.unit(2.5, "meters"),
  27946. weight: math.unit(200, "kg"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/vidar/front.svg",
  27950. extra: 2994 / 2795,
  27951. bottom: 56 / 3061
  27952. }
  27953. },
  27954. back: {
  27955. height: math.unit(2.5, "meters"),
  27956. weight: math.unit(200, "kg"),
  27957. name: "Back",
  27958. image: {
  27959. source: "./media/characters/vidar/back.svg",
  27960. extra: 3131 / 2928,
  27961. bottom: 13.5 / 3141.5
  27962. }
  27963. },
  27964. feral: {
  27965. height: math.unit(2.5, "meters"),
  27966. weight: math.unit(2000, "kg"),
  27967. name: "Feral",
  27968. image: {
  27969. source: "./media/characters/vidar/feral.svg",
  27970. extra: 2790 / 1765,
  27971. bottom: 6 / 2796
  27972. }
  27973. },
  27974. },
  27975. [
  27976. {
  27977. name: "Normal",
  27978. height: math.unit(2.5, "meters"),
  27979. default: true
  27980. },
  27981. {
  27982. name: "Macro",
  27983. height: math.unit(100, "meters")
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27989. {
  27990. front: {
  27991. height: math.unit(5 + 9 / 12, "feet"),
  27992. weight: math.unit(120, "lb"),
  27993. name: "Front",
  27994. image: {
  27995. source: "./media/characters/ash/front.svg",
  27996. extra: 2189 / 1961,
  27997. bottom: 5.2 / 2194
  27998. }
  27999. },
  28000. },
  28001. [
  28002. {
  28003. name: "Normal",
  28004. height: math.unit(5 + 9 / 12, "feet"),
  28005. default: true
  28006. },
  28007. ]
  28008. ))
  28009. characterMakers.push(() => makeCharacter(
  28010. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28011. {
  28012. front: {
  28013. height: math.unit(9, "feet"),
  28014. weight: math.unit(10000, "lb"),
  28015. name: "Front",
  28016. image: {
  28017. source: "./media/characters/gygabite/front.svg",
  28018. bottom: 31.7 / 537.8,
  28019. extra: 505 / 370
  28020. }
  28021. },
  28022. },
  28023. [
  28024. {
  28025. name: "Normal",
  28026. height: math.unit(9, "feet"),
  28027. default: true
  28028. },
  28029. ]
  28030. ))
  28031. characterMakers.push(() => makeCharacter(
  28032. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28033. {
  28034. front: {
  28035. height: math.unit(12, "feet"),
  28036. weight: math.unit(35000, "lb"),
  28037. name: "Front",
  28038. image: {
  28039. source: "./media/characters/p0tat0/front.svg",
  28040. extra: 1065 / 921,
  28041. bottom: 55.7 / 1121.25
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(12, "feet"),
  28049. default: true
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28055. {
  28056. side: {
  28057. height: math.unit(6.5, "feet"),
  28058. weight: math.unit(800, "lb"),
  28059. name: "Side",
  28060. image: {
  28061. source: "./media/characters/dusk/side.svg",
  28062. extra: 615 / 373,
  28063. bottom: 53 / 664
  28064. }
  28065. },
  28066. sitting: {
  28067. height: math.unit(7, "feet"),
  28068. weight: math.unit(800, "lb"),
  28069. name: "Sitting",
  28070. image: {
  28071. source: "./media/characters/dusk/sitting.svg",
  28072. extra: 753 / 425,
  28073. bottom: 33 / 774
  28074. }
  28075. },
  28076. head: {
  28077. height: math.unit(6.1, "feet"),
  28078. name: "Head",
  28079. image: {
  28080. source: "./media/characters/dusk/head.svg"
  28081. }
  28082. },
  28083. },
  28084. [
  28085. {
  28086. name: "Normal",
  28087. height: math.unit(7, "feet"),
  28088. default: true
  28089. },
  28090. ]
  28091. ))
  28092. characterMakers.push(() => makeCharacter(
  28093. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28094. {
  28095. front: {
  28096. height: math.unit(15, "feet"),
  28097. weight: math.unit(7000, "lb"),
  28098. name: "Front",
  28099. image: {
  28100. source: "./media/characters/jay-direwolf/front.svg",
  28101. extra: 1810 / 1732,
  28102. bottom: 66 / 1892
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(15, "feet"),
  28110. default: true
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(4 + 9 / 12, "feet"),
  28119. weight: math.unit(130, "lb"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/anchovie/front.svg",
  28123. extra: 382 / 350,
  28124. bottom: 25 / 409
  28125. }
  28126. },
  28127. back: {
  28128. height: math.unit(4 + 9 / 12, "feet"),
  28129. weight: math.unit(130, "lb"),
  28130. name: "Back",
  28131. image: {
  28132. source: "./media/characters/anchovie/back.svg",
  28133. extra: 385 / 352,
  28134. bottom: 16.6 / 402
  28135. }
  28136. },
  28137. frontDressed: {
  28138. height: math.unit(4 + 9 / 12, "feet"),
  28139. weight: math.unit(130, "lb"),
  28140. name: "Front (Dressed)",
  28141. image: {
  28142. source: "./media/characters/anchovie/front-dressed.svg",
  28143. extra: 382 / 350,
  28144. bottom: 25 / 409
  28145. }
  28146. },
  28147. backDressed: {
  28148. height: math.unit(4 + 9 / 12, "feet"),
  28149. weight: math.unit(130, "lb"),
  28150. name: "Back (Dressed)",
  28151. image: {
  28152. source: "./media/characters/anchovie/back-dressed.svg",
  28153. extra: 385 / 352,
  28154. bottom: 16.6 / 402
  28155. }
  28156. },
  28157. },
  28158. [
  28159. {
  28160. name: "Micro",
  28161. height: math.unit(6.4, "inches")
  28162. },
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(4 + 9 / 12, "feet"),
  28166. default: true
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(2, "meters"),
  28175. weight: math.unit(180, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/acidrenamon/front.svg",
  28179. extra: 987 / 890,
  28180. bottom: 22.8 / 1009
  28181. }
  28182. },
  28183. back: {
  28184. height: math.unit(2, "meters"),
  28185. weight: math.unit(180, "lb"),
  28186. name: "Back",
  28187. image: {
  28188. source: "./media/characters/acidrenamon/back.svg",
  28189. extra: 983 / 891,
  28190. bottom: 8.4 / 992
  28191. }
  28192. },
  28193. head: {
  28194. height: math.unit(1.92, "feet"),
  28195. name: "Head",
  28196. image: {
  28197. source: "./media/characters/acidrenamon/head.svg"
  28198. }
  28199. },
  28200. rump: {
  28201. height: math.unit(1.72, "feet"),
  28202. name: "Rump",
  28203. image: {
  28204. source: "./media/characters/acidrenamon/rump.svg"
  28205. }
  28206. },
  28207. tail: {
  28208. height: math.unit(4.2, "feet"),
  28209. name: "Tail",
  28210. image: {
  28211. source: "./media/characters/acidrenamon/tail.svg"
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(2, "meters"),
  28219. default: true
  28220. },
  28221. {
  28222. name: "Minimacro",
  28223. height: math.unit(7, "meters")
  28224. },
  28225. {
  28226. name: "Macro",
  28227. height: math.unit(200, "meters")
  28228. },
  28229. {
  28230. name: "Gigamacro",
  28231. height: math.unit(0.2, "earths")
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(152, "feet"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/kenzie-lee/front.svg",
  28243. extra: 1869/1774,
  28244. bottom: 128/1997
  28245. }
  28246. },
  28247. side: {
  28248. height: math.unit(86, "feet"),
  28249. name: "Side",
  28250. image: {
  28251. source: "./media/characters/kenzie-lee/side.svg",
  28252. extra: 930/815,
  28253. bottom: 177/1107
  28254. }
  28255. },
  28256. paw: {
  28257. height: math.unit(15, "feet"),
  28258. name: "Paw",
  28259. image: {
  28260. source: "./media/characters/kenzie-lee/paw.svg"
  28261. }
  28262. },
  28263. },
  28264. [
  28265. {
  28266. name: "Micro",
  28267. height: math.unit(1.5, "inches")
  28268. },
  28269. {
  28270. name: "Normal",
  28271. height: math.unit(152, "feet"),
  28272. default: true
  28273. },
  28274. {
  28275. name: "Megamacro",
  28276. height: math.unit(7, "miles")
  28277. },
  28278. {
  28279. name: "Gigamacro",
  28280. height: math.unit(8000, "miles")
  28281. },
  28282. ]
  28283. ))
  28284. characterMakers.push(() => makeCharacter(
  28285. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28286. {
  28287. side: {
  28288. height: math.unit(6, "feet"),
  28289. weight: math.unit(150, "lb"),
  28290. name: "Side",
  28291. image: {
  28292. source: "./media/characters/withers/side.svg",
  28293. extra: 1830 / 1728,
  28294. bottom: 96 / 1927
  28295. }
  28296. },
  28297. front: {
  28298. height: math.unit(6, "feet"),
  28299. weight: math.unit(150, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/withers/front.svg",
  28303. extra: 1514 / 1438,
  28304. bottom: 118 / 1632
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Macro",
  28311. height: math.unit(168, "feet"),
  28312. default: true
  28313. },
  28314. {
  28315. name: "Megamacro",
  28316. height: math.unit(15, "miles")
  28317. }
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(6 + 7 / 12, "feet"),
  28325. weight: math.unit(250, "lb"),
  28326. name: "Front",
  28327. image: {
  28328. source: "./media/characters/nemoskii/front.svg",
  28329. extra: 2270 / 1734,
  28330. bottom: 86 / 2354
  28331. }
  28332. },
  28333. back: {
  28334. height: math.unit(6 + 7 / 12, "feet"),
  28335. weight: math.unit(250, "lb"),
  28336. name: "Back",
  28337. image: {
  28338. source: "./media/characters/nemoskii/back.svg",
  28339. extra: 1845 / 1788,
  28340. bottom: 10.5 / 1852
  28341. }
  28342. },
  28343. head: {
  28344. height: math.unit(1.31, "feet"),
  28345. name: "Head",
  28346. image: {
  28347. source: "./media/characters/nemoskii/head.svg"
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Micro",
  28354. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28355. },
  28356. {
  28357. name: "Normal",
  28358. height: math.unit(6 + 7 / 12, "feet"),
  28359. default: true
  28360. },
  28361. {
  28362. name: "Macro",
  28363. height: math.unit((6 + 7 / 12) * 150, "feet")
  28364. },
  28365. {
  28366. name: "Macro+",
  28367. height: math.unit((6 + 7 / 12) * 500, "feet")
  28368. },
  28369. {
  28370. name: "Megamacro",
  28371. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28372. },
  28373. ]
  28374. ))
  28375. characterMakers.push(() => makeCharacter(
  28376. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28377. {
  28378. front: {
  28379. height: math.unit(1, "mile"),
  28380. weight: math.unit(265261.9, "lb"),
  28381. name: "Front",
  28382. image: {
  28383. source: "./media/characters/shui/front.svg",
  28384. extra: 1633 / 1564,
  28385. bottom: 91.5 / 1726
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Macro",
  28392. height: math.unit(1, "mile"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(12 + 6 / 12, "feet"),
  28402. weight: math.unit(1342, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/arokh-takakura/front.svg",
  28406. extra: 1089 / 1043,
  28407. bottom: 77.4 / 1176.7
  28408. }
  28409. },
  28410. back: {
  28411. height: math.unit(12 + 6 / 12, "feet"),
  28412. weight: math.unit(1342, "lb"),
  28413. name: "Back",
  28414. image: {
  28415. source: "./media/characters/arokh-takakura/back.svg",
  28416. extra: 1046 / 1019,
  28417. bottom: 102 / 1150
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Big",
  28424. height: math.unit(12 + 6 / 12, "feet"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(5 + 6 / 12, "feet"),
  28434. weight: math.unit(150, "lb"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/theo/front.svg",
  28438. extra: 1184 / 1131,
  28439. bottom: 7.4 / 1191
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Micro",
  28446. height: math.unit(5, "inches")
  28447. },
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(5 + 6 / 12, "feet"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(5 + 9 / 12, "feet"),
  28460. weight: math.unit(130, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/cecelia-swift/front.svg",
  28464. extra: 502 / 484,
  28465. bottom: 23 / 523
  28466. }
  28467. },
  28468. back: {
  28469. height: math.unit(5 + 9 / 12, "feet"),
  28470. weight: math.unit(130, "lb"),
  28471. name: "Back",
  28472. image: {
  28473. source: "./media/characters/cecelia-swift/back.svg",
  28474. extra: 499 / 485,
  28475. bottom: 12 / 511
  28476. }
  28477. },
  28478. head: {
  28479. height: math.unit(0.90, "feet"),
  28480. name: "Head",
  28481. image: {
  28482. source: "./media/characters/cecelia-swift/head.svg"
  28483. }
  28484. },
  28485. rump: {
  28486. height: math.unit(1.75, "feet"),
  28487. name: "Rump",
  28488. image: {
  28489. source: "./media/characters/cecelia-swift/rump.svg"
  28490. }
  28491. },
  28492. },
  28493. [
  28494. {
  28495. name: "Normal",
  28496. height: math.unit(5 + 9 / 12, "feet"),
  28497. default: true
  28498. },
  28499. {
  28500. name: "Big",
  28501. height: math.unit(50, "feet")
  28502. },
  28503. {
  28504. name: "Macro",
  28505. height: math.unit(100, "feet")
  28506. },
  28507. {
  28508. name: "Macro+",
  28509. height: math.unit(500, "feet")
  28510. },
  28511. {
  28512. name: "Macro++",
  28513. height: math.unit(1000, "feet")
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/kaunan/front.svg",
  28526. extra: 2890 / 2523,
  28527. bottom: 49 / 2939
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Macro",
  28534. height: math.unit(150, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(175, "cm"),
  28544. weight: math.unit(60, "kg"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/fei/front.svg",
  28548. extra: 1873/1723,
  28549. bottom: 53/1926
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Mortal",
  28556. height: math.unit(175, "cm")
  28557. },
  28558. {
  28559. name: "Normal",
  28560. height: math.unit(3500, "m"),
  28561. default: true
  28562. },
  28563. {
  28564. name: "Stroll",
  28565. height: math.unit(17.5, "km")
  28566. },
  28567. {
  28568. name: "Showoff",
  28569. height: math.unit(175, "km")
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28575. {
  28576. front: {
  28577. height: math.unit(7, "feet"),
  28578. weight: math.unit(1000, "kg"),
  28579. name: "Front",
  28580. image: {
  28581. source: "./media/characters/edrax/front.svg",
  28582. extra: 2838 / 2550,
  28583. bottom: 130 / 2968
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Small",
  28590. height: math.unit(7, "feet")
  28591. },
  28592. {
  28593. name: "Normal",
  28594. height: math.unit(1500, "meters")
  28595. },
  28596. {
  28597. name: "Mega",
  28598. height: math.unit(12000000, "km"),
  28599. default: true
  28600. },
  28601. {
  28602. name: "Megamacro",
  28603. height: math.unit(10600000, "lightyears")
  28604. },
  28605. {
  28606. name: "Hypermacro",
  28607. height: math.unit(256, "yottameters")
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(10, "feet"),
  28616. weight: math.unit(750, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/clove/front.svg",
  28620. extra: 1918/1751,
  28621. bottom: 52/1970
  28622. }
  28623. },
  28624. back: {
  28625. height: math.unit(10, "feet"),
  28626. weight: math.unit(750, "lb"),
  28627. name: "Back",
  28628. image: {
  28629. source: "./media/characters/clove/back.svg",
  28630. extra: 1912/1747,
  28631. bottom: 50/1962
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Normal",
  28638. height: math.unit(10, "feet"),
  28639. default: true
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(4, "feet"),
  28648. weight: math.unit(50, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/alex-rabbit/front.svg",
  28652. extra: 507 / 458,
  28653. bottom: 18.5 / 527
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(4, "feet"),
  28658. weight: math.unit(50, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/alex-rabbit/back.svg",
  28662. extra: 502 / 460,
  28663. bottom: 18.9 / 521
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Normal",
  28670. height: math.unit(4, "feet"),
  28671. default: true
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28677. {
  28678. front: {
  28679. height: math.unit(1 + 3 / 12, "feet"),
  28680. weight: math.unit(80, "lb"),
  28681. name: "Front",
  28682. image: {
  28683. source: "./media/characters/zander-rose/front.svg",
  28684. extra: 916 / 797,
  28685. bottom: 17 / 933
  28686. }
  28687. },
  28688. back: {
  28689. height: math.unit(1 + 3 / 12, "feet"),
  28690. weight: math.unit(80, "lb"),
  28691. name: "Back",
  28692. image: {
  28693. source: "./media/characters/zander-rose/back.svg",
  28694. extra: 903 / 779,
  28695. bottom: 31 / 934
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Normal",
  28702. height: math.unit(1 + 3 / 12, "feet"),
  28703. default: true
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28709. {
  28710. anthro: {
  28711. height: math.unit(6, "feet"),
  28712. weight: math.unit(150, "lb"),
  28713. name: "Anthro",
  28714. image: {
  28715. source: "./media/characters/razz/anthro.svg",
  28716. extra: 1437 / 1343,
  28717. bottom: 48 / 1485
  28718. }
  28719. },
  28720. feral: {
  28721. height: math.unit(6, "feet"),
  28722. weight: math.unit(150, "lb"),
  28723. name: "Feral",
  28724. image: {
  28725. source: "./media/characters/razz/feral.svg",
  28726. extra: 2569 / 1385,
  28727. bottom: 95 / 2664
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Normal",
  28734. height: math.unit(6, "feet"),
  28735. default: true
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(9 + 4 / 12, "feet"),
  28744. weight: math.unit(500, "lb"),
  28745. name: "Front",
  28746. image: {
  28747. source: "./media/characters/morrigan/front.svg",
  28748. extra: 2707 / 2579,
  28749. bottom: 156 / 2863
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(9 + 4 / 12, "feet"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(5, "stories"),
  28766. weight: math.unit(4000, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/jenene/front.svg",
  28770. extra: 1780 / 1710,
  28771. bottom: 57 / 1837
  28772. }
  28773. },
  28774. },
  28775. [
  28776. {
  28777. name: "Normal",
  28778. height: math.unit(5, "stories"),
  28779. default: true
  28780. },
  28781. ]
  28782. ))
  28783. characterMakers.push(() => makeCharacter(
  28784. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28785. {
  28786. taurSfw: {
  28787. height: math.unit(10, "meters"),
  28788. weight: math.unit(17500, "kg"),
  28789. name: "Taur",
  28790. image: {
  28791. source: "./media/characters/faey/taur-sfw.svg",
  28792. extra: 1200 / 968,
  28793. bottom: 41 / 1241
  28794. }
  28795. },
  28796. chestmaw: {
  28797. height: math.unit(2.01, "meters"),
  28798. name: "Chestmaw",
  28799. image: {
  28800. source: "./media/characters/faey/chestmaw.svg"
  28801. }
  28802. },
  28803. foot: {
  28804. height: math.unit(2.43, "meters"),
  28805. name: "Foot",
  28806. image: {
  28807. source: "./media/characters/faey/foot.svg"
  28808. }
  28809. },
  28810. jaws: {
  28811. height: math.unit(1.66, "meters"),
  28812. name: "Jaws",
  28813. image: {
  28814. source: "./media/characters/faey/jaws.svg"
  28815. }
  28816. },
  28817. tongues: {
  28818. height: math.unit(2.01, "meters"),
  28819. name: "Tongues",
  28820. image: {
  28821. source: "./media/characters/faey/tongues.svg"
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Small",
  28828. height: math.unit(10, "meters"),
  28829. default: true
  28830. },
  28831. {
  28832. name: "Big",
  28833. height: math.unit(500000, "km")
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(7, "feet"),
  28842. weight: math.unit(275, "lb"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/roku/front.svg",
  28846. extra: 903 / 878,
  28847. bottom: 37 / 940
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Normal",
  28854. height: math.unit(7, "feet"),
  28855. default: true
  28856. },
  28857. {
  28858. name: "Macro",
  28859. height: math.unit(500, "feet")
  28860. },
  28861. {
  28862. name: "Megamacro",
  28863. height: math.unit(200, "miles")
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(6 + 2 / 12, "feet"),
  28872. weight: math.unit(150, "lb"),
  28873. name: "Front",
  28874. image: {
  28875. source: "./media/characters/lira/front.svg",
  28876. extra: 1727 / 1605,
  28877. bottom: 26 / 1753
  28878. }
  28879. },
  28880. back: {
  28881. height: math.unit(6 + 2 / 12, "feet"),
  28882. weight: math.unit(150, "lb"),
  28883. name: "Back",
  28884. image: {
  28885. source: "./media/characters/lira/back.svg",
  28886. extra: 1713/1621,
  28887. bottom: 20/1733
  28888. }
  28889. },
  28890. hand: {
  28891. height: math.unit(0.75, "feet"),
  28892. name: "Hand",
  28893. image: {
  28894. source: "./media/characters/lira/hand.svg"
  28895. }
  28896. },
  28897. maw: {
  28898. height: math.unit(0.65, "feet"),
  28899. name: "Maw",
  28900. image: {
  28901. source: "./media/characters/lira/maw.svg"
  28902. }
  28903. },
  28904. pawDigi: {
  28905. height: math.unit(1.6, "feet"),
  28906. name: "Paw Digi",
  28907. image: {
  28908. source: "./media/characters/lira/paw-digi.svg"
  28909. }
  28910. },
  28911. pawPlanti: {
  28912. height: math.unit(1.4, "feet"),
  28913. name: "Paw Planti",
  28914. image: {
  28915. source: "./media/characters/lira/paw-planti.svg"
  28916. }
  28917. },
  28918. },
  28919. [
  28920. {
  28921. name: "Normal",
  28922. height: math.unit(6 + 2 / 12, "feet"),
  28923. default: true
  28924. },
  28925. {
  28926. name: "Macro",
  28927. height: math.unit(100, "feet")
  28928. },
  28929. {
  28930. name: "Macro²",
  28931. height: math.unit(1600, "feet")
  28932. },
  28933. {
  28934. name: "Planetary",
  28935. height: math.unit(20, "earths")
  28936. },
  28937. ]
  28938. ))
  28939. characterMakers.push(() => makeCharacter(
  28940. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28941. {
  28942. front: {
  28943. height: math.unit(6, "feet"),
  28944. weight: math.unit(150, "lb"),
  28945. name: "Front",
  28946. image: {
  28947. source: "./media/characters/hadjet/front.svg",
  28948. extra: 1480 / 1346,
  28949. bottom: 26 / 1506
  28950. }
  28951. },
  28952. frontNsfw: {
  28953. height: math.unit(6, "feet"),
  28954. weight: math.unit(150, "lb"),
  28955. name: "Front (NSFW)",
  28956. image: {
  28957. source: "./media/characters/hadjet/front-nsfw.svg",
  28958. extra: 1440 / 1358,
  28959. bottom: 52 / 1492
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Macro",
  28966. height: math.unit(10, "stories"),
  28967. default: true
  28968. },
  28969. {
  28970. name: "Megamacro",
  28971. height: math.unit(1.5, "miles")
  28972. },
  28973. {
  28974. name: "Megamacro+",
  28975. height: math.unit(5, "miles")
  28976. },
  28977. ]
  28978. ))
  28979. characterMakers.push(() => makeCharacter(
  28980. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28981. {
  28982. side: {
  28983. height: math.unit(106, "feet"),
  28984. weight: math.unit(500, "tonnes"),
  28985. name: "Side",
  28986. image: {
  28987. source: "./media/characters/kodran/side.svg",
  28988. extra: 553 / 480,
  28989. bottom: 33 / 586
  28990. }
  28991. },
  28992. front: {
  28993. height: math.unit(132, "feet"),
  28994. weight: math.unit(500, "tonnes"),
  28995. name: "Front",
  28996. image: {
  28997. source: "./media/characters/kodran/front.svg",
  28998. extra: 667 / 643,
  28999. bottom: 42 / 709
  29000. }
  29001. },
  29002. flying: {
  29003. height: math.unit(350, "feet"),
  29004. weight: math.unit(500, "tonnes"),
  29005. name: "Flying",
  29006. image: {
  29007. source: "./media/characters/kodran/flying.svg"
  29008. }
  29009. },
  29010. foot: {
  29011. height: math.unit(33, "feet"),
  29012. name: "Foot",
  29013. image: {
  29014. source: "./media/characters/kodran/foot.svg"
  29015. }
  29016. },
  29017. footFront: {
  29018. height: math.unit(19, "feet"),
  29019. name: "Foot (Front)",
  29020. image: {
  29021. source: "./media/characters/kodran/foot-front.svg",
  29022. extra: 261 / 261,
  29023. bottom: 91 / 352
  29024. }
  29025. },
  29026. headFront: {
  29027. height: math.unit(53, "feet"),
  29028. name: "Head (Front)",
  29029. image: {
  29030. source: "./media/characters/kodran/head-front.svg"
  29031. }
  29032. },
  29033. headSide: {
  29034. height: math.unit(65, "feet"),
  29035. name: "Head (Side)",
  29036. image: {
  29037. source: "./media/characters/kodran/head-side.svg"
  29038. }
  29039. },
  29040. throat: {
  29041. height: math.unit(79, "feet"),
  29042. name: "Throat",
  29043. image: {
  29044. source: "./media/characters/kodran/throat.svg"
  29045. }
  29046. },
  29047. },
  29048. [
  29049. {
  29050. name: "Large",
  29051. height: math.unit(106, "feet"),
  29052. default: true
  29053. },
  29054. ]
  29055. ))
  29056. characterMakers.push(() => makeCharacter(
  29057. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29058. {
  29059. side: {
  29060. height: math.unit(11, "feet"),
  29061. weight: math.unit(150, "lb"),
  29062. name: "Side",
  29063. image: {
  29064. source: "./media/characters/pyxaron/side.svg",
  29065. extra: 305 / 195,
  29066. bottom: 17 / 322
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Normal",
  29073. height: math.unit(11, "feet"),
  29074. default: true
  29075. },
  29076. ]
  29077. ))
  29078. characterMakers.push(() => makeCharacter(
  29079. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29080. {
  29081. front: {
  29082. height: math.unit(6, "feet"),
  29083. weight: math.unit(150, "lb"),
  29084. name: "Front",
  29085. image: {
  29086. source: "./media/characters/meep/front.svg",
  29087. extra: 88 / 80,
  29088. bottom: 6 / 94
  29089. }
  29090. },
  29091. },
  29092. [
  29093. {
  29094. name: "Fun Sized",
  29095. height: math.unit(2, "inches"),
  29096. default: true
  29097. },
  29098. {
  29099. name: "Friend Sized",
  29100. height: math.unit(8, "inches")
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(15, "feet"),
  29109. weight: math.unit(2500, "lb"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/holly-rabbit/front.svg",
  29113. extra: 1433 / 1233,
  29114. bottom: 125 / 1558
  29115. }
  29116. },
  29117. dick: {
  29118. height: math.unit(4.6, "feet"),
  29119. name: "Dick",
  29120. image: {
  29121. source: "./media/characters/holly-rabbit/dick.svg"
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(15, "feet"),
  29129. default: true
  29130. },
  29131. {
  29132. name: "Macro",
  29133. height: math.unit(250, "feet")
  29134. },
  29135. {
  29136. name: "Macro+",
  29137. height: math.unit(2500, "feet")
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29143. {
  29144. front: {
  29145. height: math.unit(3.02, "meters"),
  29146. weight: math.unit(500, "kg"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/drena/front.svg",
  29150. extra: 282 / 243,
  29151. bottom: 8 / 290
  29152. }
  29153. },
  29154. side: {
  29155. height: math.unit(3.02, "meters"),
  29156. weight: math.unit(500, "kg"),
  29157. name: "Side",
  29158. image: {
  29159. source: "./media/characters/drena/side.svg",
  29160. extra: 280 / 245,
  29161. bottom: 10 / 290
  29162. }
  29163. },
  29164. back: {
  29165. height: math.unit(3.02, "meters"),
  29166. weight: math.unit(500, "kg"),
  29167. name: "Back",
  29168. image: {
  29169. source: "./media/characters/drena/back.svg",
  29170. extra: 278 / 243,
  29171. bottom: 2 / 280
  29172. }
  29173. },
  29174. foot: {
  29175. height: math.unit(0.75, "meters"),
  29176. name: "Foot",
  29177. image: {
  29178. source: "./media/characters/drena/foot.svg"
  29179. }
  29180. },
  29181. maw: {
  29182. height: math.unit(0.82, "meters"),
  29183. name: "Maw",
  29184. image: {
  29185. source: "./media/characters/drena/maw.svg"
  29186. }
  29187. },
  29188. eating: {
  29189. height: math.unit(0.75, "meters"),
  29190. name: "Eating",
  29191. image: {
  29192. source: "./media/characters/drena/eating.svg"
  29193. }
  29194. },
  29195. rump: {
  29196. height: math.unit(0.93, "meters"),
  29197. name: "Rump",
  29198. image: {
  29199. source: "./media/characters/drena/rump.svg"
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Normal",
  29206. height: math.unit(3.02, "meters"),
  29207. default: true
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(6 + 4 / 12, "feet"),
  29216. weight: math.unit(250, "lb"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/remmyzilla/front.svg",
  29220. extra: 4033 / 3588,
  29221. bottom: 123 / 4156
  29222. }
  29223. },
  29224. back: {
  29225. height: math.unit(6 + 4 / 12, "feet"),
  29226. weight: math.unit(250, "lb"),
  29227. name: "Back",
  29228. image: {
  29229. source: "./media/characters/remmyzilla/back.svg",
  29230. extra: 2687 / 2555,
  29231. bottom: 48 / 2735
  29232. }
  29233. },
  29234. paw: {
  29235. height: math.unit(1.73, "feet"),
  29236. name: "Paw",
  29237. image: {
  29238. source: "./media/characters/remmyzilla/paw.svg"
  29239. }
  29240. },
  29241. maw: {
  29242. height: math.unit(1.73, "feet"),
  29243. name: "Maw",
  29244. image: {
  29245. source: "./media/characters/remmyzilla/maw.svg"
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(6 + 4 / 12, "feet")
  29253. },
  29254. {
  29255. name: "Minimacro",
  29256. height: math.unit(12 + 8 / 12, "feet")
  29257. },
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(640, "feet"),
  29261. default: true
  29262. },
  29263. {
  29264. name: "Megamacro",
  29265. height: math.unit(6400, "feet")
  29266. },
  29267. {
  29268. name: "Gigamacro",
  29269. height: math.unit(64000, "miles")
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(2.5, "meters"),
  29278. weight: math.unit(300, "lb"),
  29279. name: "Front",
  29280. image: {
  29281. source: "./media/characters/lawrence/front.svg",
  29282. extra: 357 / 335,
  29283. bottom: 30 / 387
  29284. }
  29285. },
  29286. back: {
  29287. height: math.unit(2.5, "meters"),
  29288. weight: math.unit(300, "lb"),
  29289. name: "Back",
  29290. image: {
  29291. source: "./media/characters/lawrence/back.svg",
  29292. extra: 357 / 338,
  29293. bottom: 16 / 373
  29294. }
  29295. },
  29296. head: {
  29297. height: math.unit(0.9, "meter"),
  29298. name: "Head",
  29299. image: {
  29300. source: "./media/characters/lawrence/head.svg"
  29301. }
  29302. },
  29303. maw: {
  29304. height: math.unit(0.7, "meter"),
  29305. name: "Maw",
  29306. image: {
  29307. source: "./media/characters/lawrence/maw.svg"
  29308. }
  29309. },
  29310. footBottom: {
  29311. height: math.unit(0.5, "meter"),
  29312. name: "Foot (Bottom)",
  29313. image: {
  29314. source: "./media/characters/lawrence/foot-bottom.svg"
  29315. }
  29316. },
  29317. footTop: {
  29318. height: math.unit(0.5, "meter"),
  29319. name: "Foot (Top)",
  29320. image: {
  29321. source: "./media/characters/lawrence/foot-top.svg"
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Normal",
  29328. height: math.unit(2.5, "meters"),
  29329. default: true
  29330. },
  29331. {
  29332. name: "Macro",
  29333. height: math.unit(95, "meters")
  29334. },
  29335. {
  29336. name: "Megamacro",
  29337. height: math.unit(150, "km")
  29338. },
  29339. ]
  29340. ))
  29341. characterMakers.push(() => makeCharacter(
  29342. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29343. {
  29344. front: {
  29345. height: math.unit(4.2, "meters"),
  29346. name: "Front",
  29347. image: {
  29348. source: "./media/characters/sydney/front.svg",
  29349. extra: 1323 / 1277,
  29350. bottom: 111 / 1434
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(4.2, "meters"),
  29358. default: true
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29364. {
  29365. back: {
  29366. height: math.unit(201, "feet"),
  29367. name: "Back",
  29368. image: {
  29369. source: "./media/characters/jessica/back.svg",
  29370. extra: 273 / 259,
  29371. bottom: 7 / 280
  29372. }
  29373. },
  29374. },
  29375. [
  29376. {
  29377. name: "Normal",
  29378. height: math.unit(201, "feet"),
  29379. default: true
  29380. },
  29381. {
  29382. name: "Megamacro",
  29383. height: math.unit(8, "miles")
  29384. },
  29385. ]
  29386. ))
  29387. characterMakers.push(() => makeCharacter(
  29388. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29389. {
  29390. side: {
  29391. height: math.unit(5.6, "m"),
  29392. weight: math.unit(8000, "kg"),
  29393. name: "Side",
  29394. image: {
  29395. source: "./media/characters/victoria/side.svg",
  29396. extra: 1542/1229,
  29397. bottom: 124/1666
  29398. }
  29399. },
  29400. maw: {
  29401. height: math.unit(7.14, "feet"),
  29402. name: "Maw",
  29403. image: {
  29404. source: "./media/characters/victoria/maw.svg"
  29405. }
  29406. },
  29407. },
  29408. [
  29409. {
  29410. name: "Normal",
  29411. height: math.unit(5.6, "m"),
  29412. default: true
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29418. {
  29419. front: {
  29420. height: math.unit(5 + 6 / 12, "feet"),
  29421. name: "Front",
  29422. image: {
  29423. source: "./media/characters/cat/front.svg",
  29424. extra: 1449/1295,
  29425. bottom: 34/1483
  29426. },
  29427. form: "cat",
  29428. default: true
  29429. },
  29430. back: {
  29431. height: math.unit(5 + 6 / 12, "feet"),
  29432. name: "Back",
  29433. image: {
  29434. source: "./media/characters/cat/back.svg",
  29435. extra: 1466/1301,
  29436. bottom: 19/1485
  29437. },
  29438. form: "cat"
  29439. },
  29440. taur: {
  29441. height: math.unit(7, "feet"),
  29442. name: "Taur",
  29443. image: {
  29444. source: "./media/characters/cat/taur.svg",
  29445. extra: 1389/1233,
  29446. bottom: 83/1472
  29447. },
  29448. form: "taur",
  29449. default: true
  29450. },
  29451. lucarioFront: {
  29452. height: math.unit(4, "feet"),
  29453. name: "Lucario (Front)",
  29454. image: {
  29455. source: "./media/characters/cat/lucario-front.svg",
  29456. extra: 1149/1019,
  29457. bottom: 84/1233
  29458. },
  29459. form: "lucario",
  29460. default: true
  29461. },
  29462. lucarioBack: {
  29463. height: math.unit(4, "feet"),
  29464. name: "Lucario (Back)",
  29465. image: {
  29466. source: "./media/characters/cat/lucario-back.svg",
  29467. extra: 1190/1059,
  29468. bottom: 33/1223
  29469. },
  29470. form: "lucario"
  29471. },
  29472. megaLucario: {
  29473. height: math.unit(4, "feet"),
  29474. name: "Mega Lucario",
  29475. image: {
  29476. source: "./media/characters/cat/mega-lucario.svg",
  29477. extra: 1515 / 1319,
  29478. bottom: 63 / 1578
  29479. },
  29480. form: "lucario"
  29481. },
  29482. nickit: {
  29483. height: math.unit(2, "feet"),
  29484. name: "Nickit",
  29485. image: {
  29486. source: "./media/characters/cat/nickit.svg",
  29487. extra: 1980 / 1585,
  29488. bottom: 102 / 2082
  29489. },
  29490. form: "nickit",
  29491. default: true
  29492. },
  29493. lopunnyFront: {
  29494. height: math.unit(5, "feet"),
  29495. name: "Lopunny (Front)",
  29496. image: {
  29497. source: "./media/characters/cat/lopunny-front.svg",
  29498. extra: 1782 / 1469,
  29499. bottom: 38 / 1820
  29500. },
  29501. form: "lopunny",
  29502. default: true
  29503. },
  29504. lopunnyBack: {
  29505. height: math.unit(5, "feet"),
  29506. name: "Lopunny (Back)",
  29507. image: {
  29508. source: "./media/characters/cat/lopunny-back.svg",
  29509. extra: 1660 / 1490,
  29510. bottom: 25 / 1685
  29511. },
  29512. form: "lopunny"
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Really small",
  29518. height: math.unit(1, "nm")
  29519. },
  29520. {
  29521. name: "Micro",
  29522. height: math.unit(5, "inches")
  29523. },
  29524. {
  29525. name: "Normal",
  29526. height: math.unit(5 + 6 / 12, "feet"),
  29527. default: true
  29528. },
  29529. {
  29530. name: "Macro",
  29531. height: math.unit(50, "feet")
  29532. },
  29533. {
  29534. name: "Macro+",
  29535. height: math.unit(150, "feet")
  29536. },
  29537. {
  29538. name: "Megamacro",
  29539. height: math.unit(100, "miles")
  29540. },
  29541. ]
  29542. ))
  29543. characterMakers.push(() => makeCharacter(
  29544. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29545. {
  29546. front: {
  29547. height: math.unit(63.4, "meters"),
  29548. weight: math.unit(3.28349e+6, "kilograms"),
  29549. name: "Front",
  29550. image: {
  29551. source: "./media/characters/kirina-violet/front.svg",
  29552. extra: 2812 / 2725,
  29553. bottom: 0 / 2812
  29554. }
  29555. },
  29556. back: {
  29557. height: math.unit(63.4, "meters"),
  29558. weight: math.unit(3.28349e+6, "kilograms"),
  29559. name: "Back",
  29560. image: {
  29561. source: "./media/characters/kirina-violet/back.svg",
  29562. extra: 2812 / 2725,
  29563. bottom: 0 / 2812
  29564. }
  29565. },
  29566. mouth: {
  29567. height: math.unit(4.35, "meters"),
  29568. name: "Mouth",
  29569. image: {
  29570. source: "./media/characters/kirina-violet/mouth.svg"
  29571. }
  29572. },
  29573. paw: {
  29574. height: math.unit(5.6, "meters"),
  29575. name: "Paw",
  29576. image: {
  29577. source: "./media/characters/kirina-violet/paw.svg"
  29578. }
  29579. },
  29580. tail: {
  29581. height: math.unit(18, "meters"),
  29582. name: "Tail",
  29583. image: {
  29584. source: "./media/characters/kirina-violet/tail.svg"
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Macro",
  29591. height: math.unit(63.4, "meters"),
  29592. default: true
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(75, "feet"),
  29601. name: "Front",
  29602. image: {
  29603. source: "./media/characters/cat-gigachu/front.svg",
  29604. extra: 1239/1027,
  29605. bottom: 32/1271
  29606. }
  29607. },
  29608. back: {
  29609. height: math.unit(75, "feet"),
  29610. name: "Back",
  29611. image: {
  29612. source: "./media/characters/cat-gigachu/back.svg",
  29613. extra: 1229/1030,
  29614. bottom: 9/1238
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Dynamax",
  29621. height: math.unit(75, "feet"),
  29622. default: true
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(6, "feet"),
  29631. weight: math.unit(150, "lb"),
  29632. name: "Front",
  29633. image: {
  29634. source: "./media/characters/sfaiyan/front.svg",
  29635. extra: 999 / 978,
  29636. bottom: 5 / 1004
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(1.82, "meters")
  29644. },
  29645. {
  29646. name: "Giant",
  29647. height: math.unit(2.27, "km"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(179, "cm"),
  29657. weight: math.unit(100, "kg"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/raunehkeli/front.svg",
  29661. extra: 1934 / 1926,
  29662. bottom: 0 / 1934
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Normal",
  29669. height: math.unit(179, "cm")
  29670. },
  29671. {
  29672. name: "Maximum",
  29673. height: math.unit(575, "meters"),
  29674. default: true
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29680. {
  29681. front: {
  29682. height: math.unit(6, "feet"),
  29683. weight: math.unit(150, "lb"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29687. extra: 2625 / 2518,
  29688. bottom: 60 / 2685
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Normal",
  29695. height: math.unit(6 + 2 / 12, "feet")
  29696. },
  29697. {
  29698. name: "Macro",
  29699. height: math.unit(1180, "feet"),
  29700. default: true
  29701. },
  29702. ]
  29703. ))
  29704. characterMakers.push(() => makeCharacter(
  29705. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29706. {
  29707. front: {
  29708. height: math.unit(5 + 6 / 12, "feet"),
  29709. weight: math.unit(108, "lb"),
  29710. name: "Front",
  29711. image: {
  29712. source: "./media/characters/lilith-zott/front.svg",
  29713. extra: 2510 / 2238,
  29714. bottom: 100 / 2610
  29715. }
  29716. },
  29717. frontDressed: {
  29718. height: math.unit(5 + 6 / 12, "feet"),
  29719. weight: math.unit(108, "lb"),
  29720. name: "Front (Dressed)",
  29721. image: {
  29722. source: "./media/characters/lilith-zott/front-dressed.svg",
  29723. extra: 2510 / 2238,
  29724. bottom: 100 / 2610
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Normal",
  29731. height: math.unit(5 + 6 / 12, "feet")
  29732. },
  29733. {
  29734. name: "Macro",
  29735. height: math.unit(1030, "feet"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(6, "feet"),
  29745. weight: math.unit(150, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29749. extra: 2567 / 2435,
  29750. bottom: 39 / 2606
  29751. }
  29752. },
  29753. frontSuper: {
  29754. height: math.unit(6, "feet"),
  29755. name: "Front (Super)",
  29756. image: {
  29757. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29758. extra: 2567 / 2435,
  29759. bottom: 39 / 2606
  29760. }
  29761. },
  29762. },
  29763. [
  29764. {
  29765. name: "Normal",
  29766. height: math.unit(5 + 10 / 12, "feet")
  29767. },
  29768. {
  29769. name: "Macro",
  29770. height: math.unit(1100, "feet"),
  29771. default: true
  29772. },
  29773. ]
  29774. ))
  29775. characterMakers.push(() => makeCharacter(
  29776. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29777. {
  29778. front: {
  29779. height: math.unit(100, "miles"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/sona/front.svg",
  29783. extra: 2433 / 2201,
  29784. bottom: 53 / 2486
  29785. }
  29786. },
  29787. foot: {
  29788. height: math.unit(16.1, "miles"),
  29789. name: "Foot",
  29790. image: {
  29791. source: "./media/characters/sona/foot.svg"
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Macro",
  29798. height: math.unit(100, "miles"),
  29799. default: true
  29800. },
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29805. {
  29806. front: {
  29807. height: math.unit(6, "feet"),
  29808. weight: math.unit(150, "lb"),
  29809. name: "Front",
  29810. image: {
  29811. source: "./media/characters/bailey/front.svg",
  29812. extra: 1778 / 1724,
  29813. bottom: 30 / 1808
  29814. }
  29815. },
  29816. },
  29817. [
  29818. {
  29819. name: "Micro",
  29820. height: math.unit(4, "inches")
  29821. },
  29822. {
  29823. name: "Normal",
  29824. height: math.unit(5 + 5 / 12, "feet"),
  29825. default: true
  29826. },
  29827. {
  29828. name: "Macro",
  29829. height: math.unit(250, "feet")
  29830. },
  29831. {
  29832. name: "Megamacro",
  29833. height: math.unit(100, "miles")
  29834. },
  29835. ]
  29836. ))
  29837. characterMakers.push(() => makeCharacter(
  29838. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29839. {
  29840. front: {
  29841. height: math.unit(5 + 2 / 12, "feet"),
  29842. weight: math.unit(120, "lb"),
  29843. name: "Front",
  29844. image: {
  29845. source: "./media/characters/snaps/front.svg",
  29846. extra: 2370 / 2177,
  29847. bottom: 48 / 2418
  29848. }
  29849. },
  29850. back: {
  29851. height: math.unit(5 + 2 / 12, "feet"),
  29852. weight: math.unit(120, "lb"),
  29853. name: "Back",
  29854. image: {
  29855. source: "./media/characters/snaps/back.svg",
  29856. extra: 2408 / 2258,
  29857. bottom: 15 / 2423
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Micro",
  29864. height: math.unit(9, "inches")
  29865. },
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(5 + 2 / 12, "feet"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Mini Macro",
  29873. height: math.unit(10, "feet")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(1.8, "meters"),
  29882. weight: math.unit(85, "kg"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/azteck/front.svg",
  29886. extra: 2815 / 2625,
  29887. bottom: 89 / 2904
  29888. }
  29889. },
  29890. back: {
  29891. height: math.unit(1.8, "meters"),
  29892. weight: math.unit(85, "kg"),
  29893. name: "Back",
  29894. image: {
  29895. source: "./media/characters/azteck/back.svg",
  29896. extra: 2856 / 2648,
  29897. bottom: 85 / 2941
  29898. }
  29899. },
  29900. frontDressed: {
  29901. height: math.unit(1.8, "meters"),
  29902. weight: math.unit(85, "kg"),
  29903. name: "Front (Dressed)",
  29904. image: {
  29905. source: "./media/characters/azteck/front-dressed.svg",
  29906. extra: 2147 / 2003,
  29907. bottom: 68 / 2215
  29908. }
  29909. },
  29910. head: {
  29911. height: math.unit(0.47, "meters"),
  29912. weight: math.unit(85, "kg"),
  29913. name: "Head",
  29914. image: {
  29915. source: "./media/characters/azteck/head.svg"
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Bite sized",
  29922. height: math.unit(16, "cm")
  29923. },
  29924. {
  29925. name: "Normal",
  29926. height: math.unit(1.8, "meters"),
  29927. default: true
  29928. },
  29929. ]
  29930. ))
  29931. characterMakers.push(() => makeCharacter(
  29932. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29933. {
  29934. front: {
  29935. height: math.unit(6, "feet"),
  29936. weight: math.unit(150, "lb"),
  29937. name: "Front",
  29938. image: {
  29939. source: "./media/characters/pidge/front.svg",
  29940. extra: 620 / 588,
  29941. bottom: 9 / 629
  29942. }
  29943. },
  29944. back: {
  29945. height: math.unit(6, "feet"),
  29946. weight: math.unit(150, "lb"),
  29947. name: "Back",
  29948. image: {
  29949. source: "./media/characters/pidge/back.svg",
  29950. extra: 620 / 588,
  29951. bottom: 9 / 629
  29952. }
  29953. },
  29954. },
  29955. [
  29956. {
  29957. name: "Macro",
  29958. height: math.unit(1, "mile"),
  29959. default: true
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(6, "feet"),
  29968. weight: math.unit(150, "lb"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/en/front.svg",
  29972. extra: 1697 / 1563,
  29973. bottom: 103 / 1800
  29974. }
  29975. },
  29976. back: {
  29977. height: math.unit(6, "feet"),
  29978. weight: math.unit(150, "lb"),
  29979. name: "Back",
  29980. image: {
  29981. source: "./media/characters/en/back.svg",
  29982. extra: 1700 / 1570,
  29983. bottom: 51 / 1751
  29984. }
  29985. },
  29986. frontDressed: {
  29987. height: math.unit(6, "feet"),
  29988. weight: math.unit(150, "lb"),
  29989. name: "Front (Dressed)",
  29990. image: {
  29991. source: "./media/characters/en/front-dressed.svg",
  29992. extra: 1697 / 1563,
  29993. bottom: 103 / 1800
  29994. }
  29995. },
  29996. backDressed: {
  29997. height: math.unit(6, "feet"),
  29998. weight: math.unit(150, "lb"),
  29999. name: "Back (Dressed)",
  30000. image: {
  30001. source: "./media/characters/en/back-dressed.svg",
  30002. extra: 1700 / 1570,
  30003. bottom: 51 / 1751
  30004. }
  30005. },
  30006. },
  30007. [
  30008. {
  30009. name: "Macro",
  30010. height: math.unit(210, "feet"),
  30011. default: true
  30012. },
  30013. ]
  30014. ))
  30015. characterMakers.push(() => makeCharacter(
  30016. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30017. {
  30018. front: {
  30019. height: math.unit(6, "feet"),
  30020. weight: math.unit(150, "lb"),
  30021. name: "Front",
  30022. image: {
  30023. source: "./media/characters/haze-orris/front.svg",
  30024. extra: 3975 / 3525,
  30025. bottom: 137 / 4112
  30026. }
  30027. },
  30028. },
  30029. [
  30030. {
  30031. name: "Micro",
  30032. height: math.unit(150, "mm"),
  30033. default: true
  30034. },
  30035. ]
  30036. ))
  30037. characterMakers.push(() => makeCharacter(
  30038. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30039. {
  30040. front: {
  30041. height: math.unit(6, "feet"),
  30042. weight: math.unit(150, "lb"),
  30043. name: "Front",
  30044. image: {
  30045. source: "./media/characters/casselene-yaro/front.svg",
  30046. extra: 4721 / 4541,
  30047. bottom: 82 / 4803
  30048. }
  30049. },
  30050. back: {
  30051. height: math.unit(6, "feet"),
  30052. weight: math.unit(150, "lb"),
  30053. name: "Back",
  30054. image: {
  30055. source: "./media/characters/casselene-yaro/back.svg",
  30056. extra: 4569 / 4377,
  30057. bottom: 69 / 4638
  30058. }
  30059. },
  30060. frontDressed: {
  30061. height: math.unit(6, "feet"),
  30062. weight: math.unit(150, "lb"),
  30063. name: "Front-dressed",
  30064. image: {
  30065. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30066. extra: 4721 / 4541,
  30067. bottom: 82 / 4803
  30068. }
  30069. },
  30070. },
  30071. [
  30072. {
  30073. name: "Macro",
  30074. height: math.unit(190, "feet"),
  30075. default: true
  30076. },
  30077. ]
  30078. ))
  30079. characterMakers.push(() => makeCharacter(
  30080. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30081. {
  30082. front: {
  30083. height: math.unit(6, "feet"),
  30084. weight: math.unit(150, "lb"),
  30085. name: "Front",
  30086. image: {
  30087. source: "./media/characters/myra-rue-delore/front.svg",
  30088. extra: 1340 / 1308,
  30089. bottom: 67 / 1407
  30090. }
  30091. },
  30092. back: {
  30093. height: math.unit(6, "feet"),
  30094. weight: math.unit(150, "lb"),
  30095. name: "Back",
  30096. image: {
  30097. source: "./media/characters/myra-rue-delore/back.svg",
  30098. extra: 1341 / 1310,
  30099. bottom: 40 / 1381
  30100. }
  30101. },
  30102. frontDressed: {
  30103. height: math.unit(6, "feet"),
  30104. weight: math.unit(150, "lb"),
  30105. name: "Front (Dressed)",
  30106. image: {
  30107. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30108. extra: 1340 / 1308,
  30109. bottom: 67 / 1407
  30110. }
  30111. },
  30112. },
  30113. [
  30114. {
  30115. name: "Macro",
  30116. height: math.unit(150, "feet"),
  30117. default: true
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30123. {
  30124. front: {
  30125. height: math.unit(10, "feet"),
  30126. weight: math.unit(15015, "lb"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/fem!plat/front.svg",
  30130. extra: 2799 / 2604,
  30131. bottom: 149 / 2948
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Normal",
  30138. height: math.unit(10, "feet"),
  30139. default: true
  30140. },
  30141. {
  30142. name: "Macro",
  30143. height: math.unit(100, "feet")
  30144. },
  30145. {
  30146. name: "Megamacro",
  30147. height: math.unit(1000, "feet")
  30148. },
  30149. ]
  30150. ))
  30151. characterMakers.push(() => makeCharacter(
  30152. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30153. {
  30154. front: {
  30155. height: math.unit(15 + 5 / 12, "feet"),
  30156. weight: math.unit(4600, "lb"),
  30157. name: "Front",
  30158. image: {
  30159. source: "./media/characters/neapolitan-ananassa/front.svg",
  30160. extra: 2903 / 2736,
  30161. bottom: 0 / 2903
  30162. }
  30163. },
  30164. side: {
  30165. height: math.unit(15 + 5 / 12, "feet"),
  30166. weight: math.unit(4600, "lb"),
  30167. name: "Side",
  30168. image: {
  30169. source: "./media/characters/neapolitan-ananassa/side.svg",
  30170. extra: 2925 / 2719,
  30171. bottom: 0 / 2925
  30172. }
  30173. },
  30174. back: {
  30175. height: math.unit(15 + 5 / 12, "feet"),
  30176. weight: math.unit(4600, "lb"),
  30177. name: "Back",
  30178. image: {
  30179. source: "./media/characters/neapolitan-ananassa/back.svg",
  30180. extra: 2903 / 2736,
  30181. bottom: 0 / 2903
  30182. }
  30183. },
  30184. },
  30185. [
  30186. {
  30187. name: "Normal",
  30188. height: math.unit(15 + 5 / 12, "feet"),
  30189. default: true
  30190. },
  30191. {
  30192. name: "Post-Millenium",
  30193. height: math.unit(35 + 5 / 12, "feet")
  30194. },
  30195. {
  30196. name: "Post-Era",
  30197. height: math.unit(450 + 5 / 12, "feet")
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30203. {
  30204. front: {
  30205. height: math.unit(300, "meters"),
  30206. weight: math.unit(125000, "tonnes"),
  30207. name: "Front",
  30208. image: {
  30209. source: "./media/characters/pazuzu/front.svg",
  30210. extra: 877 / 794,
  30211. bottom: 47 / 924
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Macro",
  30218. height: math.unit(300, "meters"),
  30219. default: true
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30225. {
  30226. side: {
  30227. height: math.unit(10 + 7 / 12, "feet"),
  30228. weight: math.unit(2.5, "tons"),
  30229. name: "Side",
  30230. image: {
  30231. source: "./media/characters/aasha/side.svg",
  30232. extra: 1345 / 1245,
  30233. bottom: 111 / 1456
  30234. }
  30235. },
  30236. back: {
  30237. height: math.unit(10 + 7 / 12, "feet"),
  30238. weight: math.unit(2.5, "tons"),
  30239. name: "Back",
  30240. image: {
  30241. source: "./media/characters/aasha/back.svg",
  30242. extra: 1133 / 1057,
  30243. bottom: 257 / 1390
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Normal",
  30250. height: math.unit(10 + 7 / 12, "feet"),
  30251. default: true
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30257. {
  30258. front: {
  30259. height: math.unit(6 + 3 / 12, "feet"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/nevan/front.svg",
  30263. extra: 704 / 704,
  30264. bottom: 28 / 732
  30265. }
  30266. },
  30267. back: {
  30268. height: math.unit(6 + 3 / 12, "feet"),
  30269. name: "Back",
  30270. image: {
  30271. source: "./media/characters/nevan/back.svg",
  30272. extra: 714 / 714,
  30273. bottom: 21 / 735
  30274. }
  30275. },
  30276. frontFlaccid: {
  30277. height: math.unit(6 + 3 / 12, "feet"),
  30278. name: "Front (Flaccid)",
  30279. image: {
  30280. source: "./media/characters/nevan/front-flaccid.svg",
  30281. extra: 704 / 704,
  30282. bottom: 28 / 732
  30283. }
  30284. },
  30285. frontErect: {
  30286. height: math.unit(6 + 3 / 12, "feet"),
  30287. name: "Front (Erect)",
  30288. image: {
  30289. source: "./media/characters/nevan/front-erect.svg",
  30290. extra: 704 / 704,
  30291. bottom: 28 / 732
  30292. }
  30293. },
  30294. backFlaccid: {
  30295. height: math.unit(6 + 3 / 12, "feet"),
  30296. name: "Back (Flaccid)",
  30297. image: {
  30298. source: "./media/characters/nevan/back-flaccid.svg",
  30299. extra: 714 / 714,
  30300. bottom: 21 / 735
  30301. }
  30302. },
  30303. },
  30304. [
  30305. {
  30306. name: "Normal",
  30307. height: math.unit(6 + 3 / 12, "feet"),
  30308. default: true
  30309. },
  30310. ]
  30311. ))
  30312. characterMakers.push(() => makeCharacter(
  30313. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30314. {
  30315. front: {
  30316. height: math.unit(4, "feet"),
  30317. name: "Front",
  30318. image: {
  30319. source: "./media/characters/arhan/front.svg",
  30320. extra: 3368 / 3133,
  30321. bottom: 0 / 3368
  30322. }
  30323. },
  30324. side: {
  30325. height: math.unit(4, "feet"),
  30326. name: "Side",
  30327. image: {
  30328. source: "./media/characters/arhan/side.svg",
  30329. extra: 3347 / 3105,
  30330. bottom: 0 / 3347
  30331. }
  30332. },
  30333. tongue: {
  30334. height: math.unit(1.42, "feet"),
  30335. name: "Tongue",
  30336. image: {
  30337. source: "./media/characters/arhan/tongue.svg"
  30338. }
  30339. },
  30340. head: {
  30341. height: math.unit(0.85, "feet"),
  30342. name: "Head",
  30343. image: {
  30344. source: "./media/characters/arhan/head.svg"
  30345. }
  30346. },
  30347. },
  30348. [
  30349. {
  30350. name: "Normal",
  30351. height: math.unit(4, "feet"),
  30352. default: true
  30353. },
  30354. ]
  30355. ))
  30356. characterMakers.push(() => makeCharacter(
  30357. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30358. {
  30359. front: {
  30360. height: math.unit(5 + 7.5 / 12, "feet"),
  30361. weight: math.unit(120, "lb"),
  30362. name: "Front",
  30363. image: {
  30364. source: "./media/characters/digi-duncan/front.svg",
  30365. extra: 330 / 326,
  30366. bottom: 16 / 346
  30367. }
  30368. },
  30369. side: {
  30370. height: math.unit(5 + 7.5 / 12, "feet"),
  30371. weight: math.unit(120, "lb"),
  30372. name: "Side",
  30373. image: {
  30374. source: "./media/characters/digi-duncan/side.svg",
  30375. extra: 341 / 337,
  30376. bottom: 1 / 342
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(5 + 7.5 / 12, "feet"),
  30381. weight: math.unit(120, "lb"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/digi-duncan/back.svg",
  30385. extra: 330 / 326,
  30386. bottom: 12 / 342
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Speck",
  30393. height: math.unit(0.25, "mm")
  30394. },
  30395. {
  30396. name: "Micro",
  30397. height: math.unit(5, "mm")
  30398. },
  30399. {
  30400. name: "Tiny",
  30401. height: math.unit(0.5, "inches"),
  30402. default: true
  30403. },
  30404. {
  30405. name: "Human",
  30406. height: math.unit(5 + 7.5 / 12, "feet")
  30407. },
  30408. {
  30409. name: "Minigiant",
  30410. height: math.unit(8 + 5.25, "feet")
  30411. },
  30412. {
  30413. name: "Giant",
  30414. height: math.unit(2000, "feet")
  30415. },
  30416. {
  30417. name: "Mega",
  30418. height: math.unit(371.1, "miles")
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30424. {
  30425. front: {
  30426. height: math.unit(2, "meters"),
  30427. weight: math.unit(350, "kg"),
  30428. name: "Front",
  30429. image: {
  30430. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30431. extra: 898 / 838,
  30432. bottom: 9 / 907
  30433. }
  30434. },
  30435. },
  30436. [
  30437. {
  30438. name: "Micro",
  30439. height: math.unit(8, "meters")
  30440. },
  30441. {
  30442. name: "Normal",
  30443. height: math.unit(50, "meters"),
  30444. default: true
  30445. },
  30446. {
  30447. name: "Macro",
  30448. height: math.unit(500, "meters")
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(6 + 6 / 12, "feet"),
  30457. name: "Front",
  30458. image: {
  30459. source: "./media/characters/khardesh/front.svg",
  30460. extra: 1788/1596,
  30461. bottom: 66/1854
  30462. }
  30463. },
  30464. back: {
  30465. height: math.unit(6 + 6 / 12, "feet"),
  30466. name: "Back",
  30467. image: {
  30468. source: "./media/characters/khardesh/back.svg",
  30469. extra: 1781/1584,
  30470. bottom: 68/1849
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(6 + 6 / 12, "feet"),
  30478. default: true
  30479. },
  30480. {
  30481. name: "Normal+",
  30482. height: math.unit(4, "meters")
  30483. },
  30484. {
  30485. name: "Macro",
  30486. height: math.unit(50, "meters")
  30487. },
  30488. {
  30489. name: "Macro+",
  30490. height: math.unit(100, "meters")
  30491. },
  30492. {
  30493. name: "Megamacro",
  30494. height: math.unit(20, "km")
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30500. {
  30501. front: {
  30502. height: math.unit(6, "feet"),
  30503. weight: math.unit(150, "lb"),
  30504. name: "Front",
  30505. image: {
  30506. source: "./media/characters/kosho/front.svg",
  30507. extra: 1847 / 1847,
  30508. bottom: 86 / 1933
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Second-stage micro",
  30515. height: math.unit(0.5, "inches")
  30516. },
  30517. {
  30518. name: "First-stage micro",
  30519. height: math.unit(6, "inches")
  30520. },
  30521. {
  30522. name: "Normal",
  30523. height: math.unit(6, "feet"),
  30524. default: true
  30525. },
  30526. {
  30527. name: "First-stage macro",
  30528. height: math.unit(72, "feet")
  30529. },
  30530. {
  30531. name: "Second-stage macro",
  30532. height: math.unit(864, "feet")
  30533. },
  30534. ]
  30535. ))
  30536. characterMakers.push(() => makeCharacter(
  30537. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30538. {
  30539. normal: {
  30540. height: math.unit(4 + 6 / 12, "feet"),
  30541. name: "Normal",
  30542. image: {
  30543. source: "./media/characters/hydra/normal.svg",
  30544. extra: 2833 / 2634,
  30545. bottom: 68 / 2901
  30546. }
  30547. },
  30548. smol: {
  30549. height: math.unit(0.705, "inches"),
  30550. name: "Smol",
  30551. image: {
  30552. source: "./media/characters/hydra/smol.svg",
  30553. extra: 2715 / 2540,
  30554. bottom: 0 / 2715
  30555. }
  30556. },
  30557. },
  30558. [
  30559. {
  30560. name: "Normal",
  30561. height: math.unit(4 + 6 / 12, "feet"),
  30562. default: true
  30563. }
  30564. ]
  30565. ))
  30566. characterMakers.push(() => makeCharacter(
  30567. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30568. {
  30569. front: {
  30570. height: math.unit(0.6, "cm"),
  30571. name: "Front",
  30572. image: {
  30573. source: "./media/characters/daz/front.svg",
  30574. extra: 1682 / 1164,
  30575. bottom: 42 / 1724
  30576. }
  30577. },
  30578. },
  30579. [
  30580. {
  30581. name: "Normal",
  30582. height: math.unit(0.6, "cm"),
  30583. default: true
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30589. {
  30590. front: {
  30591. height: math.unit(6, "feet"),
  30592. weight: math.unit(235, "lb"),
  30593. name: "Front",
  30594. image: {
  30595. source: "./media/characters/theo-pangolin/front.svg",
  30596. extra: 1996 / 1969,
  30597. bottom: 115 / 2111
  30598. }
  30599. },
  30600. back: {
  30601. height: math.unit(6, "feet"),
  30602. weight: math.unit(235, "lb"),
  30603. name: "Back",
  30604. image: {
  30605. source: "./media/characters/theo-pangolin/back.svg",
  30606. extra: 1979 / 1979,
  30607. bottom: 40 / 2019
  30608. }
  30609. },
  30610. feral: {
  30611. height: math.unit(2, "feet"),
  30612. weight: math.unit(30, "lb"),
  30613. name: "Feral",
  30614. image: {
  30615. source: "./media/characters/theo-pangolin/feral.svg",
  30616. extra: 803 / 791,
  30617. bottom: 181 / 984
  30618. }
  30619. },
  30620. footFive: {
  30621. height: math.unit(1.43, "feet"),
  30622. name: "Foot (Five Toes)",
  30623. image: {
  30624. source: "./media/characters/theo-pangolin/foot-five.svg"
  30625. }
  30626. },
  30627. footFour: {
  30628. height: math.unit(1.43, "feet"),
  30629. name: "Foot (Four Toes)",
  30630. image: {
  30631. source: "./media/characters/theo-pangolin/foot-four.svg"
  30632. }
  30633. },
  30634. handFour: {
  30635. height: math.unit(0.81, "feet"),
  30636. name: "Hand (Four Fingers)",
  30637. image: {
  30638. source: "./media/characters/theo-pangolin/hand-four.svg"
  30639. }
  30640. },
  30641. handThree: {
  30642. height: math.unit(0.81, "feet"),
  30643. name: "Hand (Three Fingers)",
  30644. image: {
  30645. source: "./media/characters/theo-pangolin/hand-three.svg"
  30646. }
  30647. },
  30648. headFront: {
  30649. height: math.unit(1.37, "feet"),
  30650. name: "Head (Front)",
  30651. image: {
  30652. source: "./media/characters/theo-pangolin/head-front.svg"
  30653. }
  30654. },
  30655. headSide: {
  30656. height: math.unit(1.43, "feet"),
  30657. name: "Head (Side)",
  30658. image: {
  30659. source: "./media/characters/theo-pangolin/head-side.svg"
  30660. }
  30661. },
  30662. tongue: {
  30663. height: math.unit(2.29, "feet"),
  30664. name: "Tongue",
  30665. image: {
  30666. source: "./media/characters/theo-pangolin/tongue.svg"
  30667. }
  30668. },
  30669. },
  30670. [
  30671. {
  30672. name: "Normal",
  30673. height: math.unit(6, "feet")
  30674. },
  30675. {
  30676. name: "Macro",
  30677. height: math.unit(400, "feet"),
  30678. default: true
  30679. },
  30680. ]
  30681. ))
  30682. characterMakers.push(() => makeCharacter(
  30683. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30684. {
  30685. front: {
  30686. height: math.unit(6, "inches"),
  30687. weight: math.unit(0.036, "kg"),
  30688. name: "Front",
  30689. image: {
  30690. source: "./media/characters/renée/front.svg",
  30691. extra: 900 / 886,
  30692. bottom: 8 / 908
  30693. }
  30694. },
  30695. },
  30696. [
  30697. {
  30698. name: "Nano",
  30699. height: math.unit(1, "nm")
  30700. },
  30701. {
  30702. name: "Micro",
  30703. height: math.unit(1, "mm")
  30704. },
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(6, "inches")
  30708. },
  30709. {
  30710. name: "Macro",
  30711. height: math.unit(2000, "feet"),
  30712. default: true
  30713. },
  30714. {
  30715. name: "Megamacro",
  30716. height: math.unit(2, "km")
  30717. },
  30718. {
  30719. name: "Gigamacro",
  30720. height: math.unit(2000, "km")
  30721. },
  30722. {
  30723. name: "Teramacro",
  30724. height: math.unit(250000, "km")
  30725. },
  30726. ]
  30727. ))
  30728. characterMakers.push(() => makeCharacter(
  30729. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30730. {
  30731. front: {
  30732. height: math.unit(4, "meters"),
  30733. weight: math.unit(150, "kg"),
  30734. name: "Front",
  30735. image: {
  30736. source: "./media/characters/caledvwlch/front.svg",
  30737. extra: 1760 / 1551,
  30738. bottom: 28 / 1788
  30739. }
  30740. },
  30741. side: {
  30742. height: math.unit(4, "meters"),
  30743. weight: math.unit(150, "kg"),
  30744. name: "Side",
  30745. image: {
  30746. source: "./media/characters/caledvwlch/side.svg",
  30747. extra: 1605 / 1536,
  30748. bottom: 31 / 1636
  30749. }
  30750. },
  30751. back: {
  30752. height: math.unit(4, "meters"),
  30753. weight: math.unit(150, "kg"),
  30754. name: "Back",
  30755. image: {
  30756. source: "./media/characters/caledvwlch/back.svg",
  30757. extra: 1635 / 1565,
  30758. bottom: 27 / 1662
  30759. }
  30760. },
  30761. },
  30762. [
  30763. {
  30764. name: "\"Incognito\"",
  30765. height: math.unit(4, "meters")
  30766. },
  30767. {
  30768. name: "Small rampage",
  30769. height: math.unit(600, "meters")
  30770. },
  30771. {
  30772. name: "Mega",
  30773. height: math.unit(30, "km")
  30774. },
  30775. {
  30776. name: "Home-size",
  30777. height: math.unit(50, "km"),
  30778. default: true
  30779. },
  30780. {
  30781. name: "Giga",
  30782. height: math.unit(300, "km")
  30783. },
  30784. {
  30785. name: "Lounging",
  30786. height: math.unit(11000, "km")
  30787. },
  30788. {
  30789. name: "Planet snacking",
  30790. height: math.unit(2000000, "km")
  30791. },
  30792. ]
  30793. ))
  30794. characterMakers.push(() => makeCharacter(
  30795. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30796. {
  30797. front: {
  30798. height: math.unit(6, "feet"),
  30799. weight: math.unit(215, "lb"),
  30800. name: "Front",
  30801. image: {
  30802. source: "./media/characters/sapphire-svell/front.svg",
  30803. extra: 495 / 455,
  30804. bottom: 20 / 515
  30805. }
  30806. },
  30807. back: {
  30808. height: math.unit(6, "feet"),
  30809. weight: math.unit(216, "lb"),
  30810. name: "Back",
  30811. image: {
  30812. source: "./media/characters/sapphire-svell/back.svg",
  30813. extra: 497 / 477,
  30814. bottom: 7 / 504
  30815. }
  30816. },
  30817. maw: {
  30818. height: math.unit(1.57, "feet"),
  30819. name: "Maw",
  30820. image: {
  30821. source: "./media/characters/sapphire-svell/maw.svg"
  30822. }
  30823. },
  30824. foot: {
  30825. height: math.unit(1.07, "feet"),
  30826. name: "Foot",
  30827. image: {
  30828. source: "./media/characters/sapphire-svell/foot.svg"
  30829. }
  30830. },
  30831. toering: {
  30832. height: math.unit(1.7, "inch"),
  30833. name: "Toering",
  30834. image: {
  30835. source: "./media/characters/sapphire-svell/toering.svg"
  30836. }
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Normal",
  30842. height: math.unit(300, "feet"),
  30843. default: true
  30844. },
  30845. {
  30846. name: "Augmented",
  30847. height: math.unit(1250, "feet")
  30848. },
  30849. {
  30850. name: "Unleashed",
  30851. height: math.unit(3000, "feet")
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30857. {
  30858. side: {
  30859. height: math.unit(2 + 3 / 12, "feet"),
  30860. weight: math.unit(110, "lb"),
  30861. name: "Side",
  30862. image: {
  30863. source: "./media/characters/glitch-flux/side.svg",
  30864. extra: 997 / 805,
  30865. bottom: 20 / 1017
  30866. }
  30867. },
  30868. },
  30869. [
  30870. {
  30871. name: "Normal",
  30872. height: math.unit(2 + 3 / 12, "feet"),
  30873. default: true
  30874. },
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30879. {
  30880. front: {
  30881. height: math.unit(4, "meters"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/mid/front.svg",
  30885. extra: 507 / 476,
  30886. bottom: 17 / 524
  30887. }
  30888. },
  30889. back: {
  30890. height: math.unit(4, "meters"),
  30891. name: "Back",
  30892. image: {
  30893. source: "./media/characters/mid/back.svg",
  30894. extra: 519 / 487,
  30895. bottom: 7 / 526
  30896. }
  30897. },
  30898. stuck: {
  30899. height: math.unit(2.2, "meters"),
  30900. name: "Stuck",
  30901. image: {
  30902. source: "./media/characters/mid/stuck.svg",
  30903. extra: 1951 / 1869,
  30904. bottom: 88 / 2039
  30905. }
  30906. }
  30907. },
  30908. [
  30909. {
  30910. name: "Normal",
  30911. height: math.unit(4, "meters"),
  30912. default: true
  30913. },
  30914. {
  30915. name: "Big",
  30916. height: math.unit(10, "meters")
  30917. },
  30918. {
  30919. name: "Macro",
  30920. height: math.unit(800, "meters")
  30921. },
  30922. {
  30923. name: "Megamacro",
  30924. height: math.unit(100, "km")
  30925. },
  30926. {
  30927. name: "Overgrown",
  30928. height: math.unit(1, "parsec")
  30929. },
  30930. ]
  30931. ))
  30932. characterMakers.push(() => makeCharacter(
  30933. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30934. {
  30935. front: {
  30936. height: math.unit(2.5, "meters"),
  30937. weight: math.unit(225, "kg"),
  30938. name: "Front",
  30939. image: {
  30940. source: "./media/characters/iris/front.svg",
  30941. extra: 3348 / 3251,
  30942. bottom: 205 / 3553
  30943. }
  30944. },
  30945. maw: {
  30946. height: math.unit(0.56, "meter"),
  30947. name: "Maw",
  30948. image: {
  30949. source: "./media/characters/iris/maw.svg"
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Mewter cat",
  30956. height: math.unit(1.2, "meters")
  30957. },
  30958. {
  30959. name: "Minimacro",
  30960. height: math.unit(2.5, "meters"),
  30961. default: true
  30962. },
  30963. {
  30964. name: "Macro",
  30965. height: math.unit(180, "meters")
  30966. },
  30967. {
  30968. name: "Megamacro",
  30969. height: math.unit(2746, "meters")
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30975. {
  30976. front: {
  30977. height: math.unit(6, "feet"),
  30978. weight: math.unit(135, "lb"),
  30979. name: "Front",
  30980. image: {
  30981. source: "./media/characters/axel/front.svg",
  30982. extra: 908 / 908,
  30983. bottom: 58 / 966
  30984. }
  30985. },
  30986. side: {
  30987. height: math.unit(6, "feet"),
  30988. weight: math.unit(135, "lb"),
  30989. name: "Side",
  30990. image: {
  30991. source: "./media/characters/axel/side.svg",
  30992. extra: 958 / 958,
  30993. bottom: 11 / 969
  30994. }
  30995. },
  30996. back: {
  30997. height: math.unit(6, "feet"),
  30998. weight: math.unit(135, "lb"),
  30999. name: "Back",
  31000. image: {
  31001. source: "./media/characters/axel/back.svg",
  31002. extra: 887 / 887,
  31003. bottom: 34 / 921
  31004. }
  31005. },
  31006. head: {
  31007. height: math.unit(1.07, "feet"),
  31008. name: "Head",
  31009. image: {
  31010. source: "./media/characters/axel/head.svg"
  31011. }
  31012. },
  31013. beak: {
  31014. height: math.unit(1.4, "feet"),
  31015. name: "Beak",
  31016. image: {
  31017. source: "./media/characters/axel/beak.svg"
  31018. }
  31019. },
  31020. beakSide: {
  31021. height: math.unit(1.4, "feet"),
  31022. name: "Beak Side",
  31023. image: {
  31024. source: "./media/characters/axel/beak-side.svg"
  31025. }
  31026. },
  31027. sheath: {
  31028. height: math.unit(0.5, "feet"),
  31029. name: "Sheath",
  31030. image: {
  31031. source: "./media/characters/axel/sheath.svg"
  31032. }
  31033. },
  31034. dick: {
  31035. height: math.unit(0.98, "feet"),
  31036. name: "Dick",
  31037. image: {
  31038. source: "./media/characters/axel/dick.svg"
  31039. }
  31040. },
  31041. },
  31042. [
  31043. {
  31044. name: "Macro",
  31045. height: math.unit(68, "meters"),
  31046. default: true
  31047. },
  31048. ]
  31049. ))
  31050. characterMakers.push(() => makeCharacter(
  31051. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31052. {
  31053. front: {
  31054. height: math.unit(3.5, "meters"),
  31055. weight: math.unit(1200, "kg"),
  31056. name: "Front",
  31057. image: {
  31058. source: "./media/characters/joanna/front.svg",
  31059. extra: 1596 / 1488,
  31060. bottom: 29 / 1625
  31061. }
  31062. },
  31063. back: {
  31064. height: math.unit(3.5, "meters"),
  31065. weight: math.unit(1200, "kg"),
  31066. name: "Back",
  31067. image: {
  31068. source: "./media/characters/joanna/back.svg",
  31069. extra: 1594 / 1495,
  31070. bottom: 26 / 1620
  31071. }
  31072. },
  31073. frontShorts: {
  31074. height: math.unit(3.5, "meters"),
  31075. weight: math.unit(1200, "kg"),
  31076. name: "Front (Shorts)",
  31077. image: {
  31078. source: "./media/characters/joanna/front-shorts.svg",
  31079. extra: 1596 / 1488,
  31080. bottom: 29 / 1625
  31081. }
  31082. },
  31083. frontBiker: {
  31084. height: math.unit(3.5, "meters"),
  31085. weight: math.unit(1200, "kg"),
  31086. name: "Front (Biker)",
  31087. image: {
  31088. source: "./media/characters/joanna/front-biker.svg",
  31089. extra: 1596 / 1488,
  31090. bottom: 29 / 1625
  31091. }
  31092. },
  31093. backBiker: {
  31094. height: math.unit(3.5, "meters"),
  31095. weight: math.unit(1200, "kg"),
  31096. name: "Back (Biker)",
  31097. image: {
  31098. source: "./media/characters/joanna/back-biker.svg",
  31099. extra: 1594 / 1495,
  31100. bottom: 88 / 1682
  31101. }
  31102. },
  31103. bikeLeft: {
  31104. height: math.unit(2.4, "meters"),
  31105. weight: math.unit(1600, "kg"),
  31106. name: "Bike (Left)",
  31107. image: {
  31108. source: "./media/characters/joanna/bike-left.svg",
  31109. extra: 720 / 720,
  31110. bottom: 8 / 728
  31111. }
  31112. },
  31113. bikeRight: {
  31114. height: math.unit(2.4, "meters"),
  31115. weight: math.unit(1600, "kg"),
  31116. name: "Bike (Right)",
  31117. image: {
  31118. source: "./media/characters/joanna/bike-right.svg",
  31119. extra: 720 / 720,
  31120. bottom: 8 / 728
  31121. }
  31122. },
  31123. },
  31124. [
  31125. {
  31126. name: "Incognito",
  31127. height: math.unit(3.5, "meters")
  31128. },
  31129. {
  31130. name: "Casual Big",
  31131. height: math.unit(200, "meters")
  31132. },
  31133. {
  31134. name: "Macro",
  31135. height: math.unit(600, "meters")
  31136. },
  31137. {
  31138. name: "Original",
  31139. height: math.unit(20, "km"),
  31140. default: true
  31141. },
  31142. {
  31143. name: "Giga",
  31144. height: math.unit(400, "km")
  31145. },
  31146. {
  31147. name: "Lounging",
  31148. height: math.unit(1500, "km")
  31149. },
  31150. {
  31151. name: "Planetary",
  31152. height: math.unit(200000, "km")
  31153. },
  31154. ]
  31155. ))
  31156. characterMakers.push(() => makeCharacter(
  31157. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31158. {
  31159. front: {
  31160. height: math.unit(6, "feet"),
  31161. weight: math.unit(150, "lb"),
  31162. name: "Front",
  31163. image: {
  31164. source: "./media/characters/hugo-sigil/front.svg",
  31165. extra: 522 / 500,
  31166. bottom: 2 / 524
  31167. }
  31168. },
  31169. back: {
  31170. height: math.unit(6, "feet"),
  31171. weight: math.unit(150, "lb"),
  31172. name: "Back",
  31173. image: {
  31174. source: "./media/characters/hugo-sigil/back.svg",
  31175. extra: 519 / 495,
  31176. bottom: 5 / 524
  31177. }
  31178. },
  31179. maw: {
  31180. height: math.unit(1.4, "feet"),
  31181. weight: math.unit(150, "lb"),
  31182. name: "Maw",
  31183. image: {
  31184. source: "./media/characters/hugo-sigil/maw.svg"
  31185. }
  31186. },
  31187. feet: {
  31188. height: math.unit(1.56, "feet"),
  31189. weight: math.unit(150, "lb"),
  31190. name: "Feet",
  31191. image: {
  31192. source: "./media/characters/hugo-sigil/feet.svg",
  31193. extra: 177 / 177,
  31194. bottom: 12 / 189
  31195. }
  31196. },
  31197. },
  31198. [
  31199. {
  31200. name: "Normal",
  31201. height: math.unit(6, "feet")
  31202. },
  31203. {
  31204. name: "Macro",
  31205. height: math.unit(200, "feet"),
  31206. default: true
  31207. },
  31208. ]
  31209. ))
  31210. characterMakers.push(() => makeCharacter(
  31211. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31212. {
  31213. front: {
  31214. height: math.unit(6, "feet"),
  31215. weight: math.unit(150, "lb"),
  31216. name: "Front",
  31217. image: {
  31218. source: "./media/characters/peri/front.svg",
  31219. extra: 2354 / 2233,
  31220. bottom: 49 / 2403
  31221. }
  31222. },
  31223. },
  31224. [
  31225. {
  31226. name: "Really Small",
  31227. height: math.unit(1, "nm")
  31228. },
  31229. {
  31230. name: "Micro",
  31231. height: math.unit(4, "inches")
  31232. },
  31233. {
  31234. name: "Normal",
  31235. height: math.unit(7, "inches"),
  31236. default: true
  31237. },
  31238. {
  31239. name: "Macro",
  31240. height: math.unit(400, "feet")
  31241. },
  31242. {
  31243. name: "Megamacro",
  31244. height: math.unit(100, "miles")
  31245. },
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31250. {
  31251. frontSlim: {
  31252. height: math.unit(7, "feet"),
  31253. name: "Front (Slim)",
  31254. image: {
  31255. source: "./media/characters/issilora/front-slim.svg",
  31256. extra: 529 / 449,
  31257. bottom: 53 / 582
  31258. }
  31259. },
  31260. sideSlim: {
  31261. height: math.unit(7, "feet"),
  31262. name: "Side (Slim)",
  31263. image: {
  31264. source: "./media/characters/issilora/side-slim.svg",
  31265. extra: 570 / 480,
  31266. bottom: 30 / 600
  31267. }
  31268. },
  31269. backSlim: {
  31270. height: math.unit(7, "feet"),
  31271. name: "Back (Slim)",
  31272. image: {
  31273. source: "./media/characters/issilora/back-slim.svg",
  31274. extra: 537 / 455,
  31275. bottom: 46 / 583
  31276. }
  31277. },
  31278. frontBuff: {
  31279. height: math.unit(7, "feet"),
  31280. name: "Front (Buff)",
  31281. image: {
  31282. source: "./media/characters/issilora/front-buff.svg",
  31283. extra: 2310 / 2035,
  31284. bottom: 335 / 2645
  31285. }
  31286. },
  31287. head: {
  31288. height: math.unit(1.94, "feet"),
  31289. name: "Head",
  31290. image: {
  31291. source: "./media/characters/issilora/head.svg"
  31292. }
  31293. },
  31294. },
  31295. [
  31296. {
  31297. name: "Minimum",
  31298. height: math.unit(7, "feet")
  31299. },
  31300. {
  31301. name: "Comfortable",
  31302. height: math.unit(17, "feet")
  31303. },
  31304. {
  31305. name: "Fun Size",
  31306. height: math.unit(47, "feet")
  31307. },
  31308. {
  31309. name: "Natural Macro",
  31310. height: math.unit(137, "feet"),
  31311. default: true
  31312. },
  31313. {
  31314. name: "Maximum Kaiju",
  31315. height: math.unit(397, "feet")
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31321. {
  31322. front: {
  31323. height: math.unit(50 + 9/12, "feet"),
  31324. weight: math.unit(32.8, "tons"),
  31325. name: "Front",
  31326. image: {
  31327. source: "./media/characters/irb'iiritaahn/front.svg",
  31328. extra: 1878/1826,
  31329. bottom: 326/2204
  31330. }
  31331. },
  31332. back: {
  31333. height: math.unit(50 + 9/12, "feet"),
  31334. weight: math.unit(32.8, "tons"),
  31335. name: "Back",
  31336. image: {
  31337. source: "./media/characters/irb'iiritaahn/back.svg",
  31338. extra: 2052/2018,
  31339. bottom: 152/2204
  31340. }
  31341. },
  31342. head: {
  31343. height: math.unit(12.86, "feet"),
  31344. name: "Head",
  31345. image: {
  31346. source: "./media/characters/irb'iiritaahn/head.svg"
  31347. }
  31348. },
  31349. maw: {
  31350. height: math.unit(9.66, "feet"),
  31351. name: "Maw",
  31352. image: {
  31353. source: "./media/characters/irb'iiritaahn/maw.svg"
  31354. }
  31355. },
  31356. frontDick: {
  31357. height: math.unit(8.78461, "feet"),
  31358. name: "Front Dick",
  31359. image: {
  31360. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31361. }
  31362. },
  31363. rearDick: {
  31364. height: math.unit(8.78461, "feet"),
  31365. name: "Rear Dick",
  31366. image: {
  31367. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31368. }
  31369. },
  31370. rearDickUnfolded: {
  31371. height: math.unit(8.78, "feet"),
  31372. name: "Rear Dick (Unfolded)",
  31373. image: {
  31374. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31375. }
  31376. },
  31377. wings: {
  31378. height: math.unit(43, "feet"),
  31379. name: "Wings",
  31380. image: {
  31381. source: "./media/characters/irb'iiritaahn/wings.svg"
  31382. }
  31383. },
  31384. },
  31385. [
  31386. {
  31387. name: "Macro",
  31388. height: math.unit(50 + 9/12, "feet"),
  31389. default: true
  31390. },
  31391. ]
  31392. ))
  31393. characterMakers.push(() => makeCharacter(
  31394. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31395. {
  31396. front: {
  31397. height: math.unit(205, "cm"),
  31398. weight: math.unit(102, "kg"),
  31399. name: "Front",
  31400. image: {
  31401. source: "./media/characters/irbisgreif/front.svg",
  31402. extra: 785/706,
  31403. bottom: 13/798
  31404. }
  31405. },
  31406. back: {
  31407. height: math.unit(205, "cm"),
  31408. weight: math.unit(102, "kg"),
  31409. name: "Back",
  31410. image: {
  31411. source: "./media/characters/irbisgreif/back.svg",
  31412. extra: 713/701,
  31413. bottom: 26/739
  31414. }
  31415. },
  31416. frontDressed: {
  31417. height: math.unit(216, "cm"),
  31418. weight: math.unit(102, "kg"),
  31419. name: "Front-dressed",
  31420. image: {
  31421. source: "./media/characters/irbisgreif/front-dressed.svg",
  31422. extra: 902/776,
  31423. bottom: 14/916
  31424. }
  31425. },
  31426. sideDressed: {
  31427. height: math.unit(195, "cm"),
  31428. weight: math.unit(102, "kg"),
  31429. name: "Side-dressed",
  31430. image: {
  31431. source: "./media/characters/irbisgreif/side-dressed.svg",
  31432. extra: 788/688,
  31433. bottom: 21/809
  31434. }
  31435. },
  31436. backDressed: {
  31437. height: math.unit(216, "cm"),
  31438. weight: math.unit(102, "kg"),
  31439. name: "Back-dressed",
  31440. image: {
  31441. source: "./media/characters/irbisgreif/back-dressed.svg",
  31442. extra: 901/783,
  31443. bottom: 10/911
  31444. }
  31445. },
  31446. dick: {
  31447. height: math.unit(0.49, "feet"),
  31448. name: "Dick",
  31449. image: {
  31450. source: "./media/characters/irbisgreif/dick.svg"
  31451. }
  31452. },
  31453. wingTop: {
  31454. height: math.unit(1.93 , "feet"),
  31455. name: "Wing-top",
  31456. image: {
  31457. source: "./media/characters/irbisgreif/wing-top.svg"
  31458. }
  31459. },
  31460. wingBottom: {
  31461. height: math.unit(1.93 , "feet"),
  31462. name: "Wing-bottom",
  31463. image: {
  31464. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Normal",
  31471. height: math.unit(216, "cm"),
  31472. default: true
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(6, "feet"),
  31481. weight: math.unit(150, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/pride/front.svg",
  31485. extra: 1299/1230,
  31486. bottom: 18/1317
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Normal",
  31493. height: math.unit(7, "feet")
  31494. },
  31495. {
  31496. name: "Mini-macro",
  31497. height: math.unit(11, "feet")
  31498. },
  31499. {
  31500. name: "Macro",
  31501. height: math.unit(15, "meters"),
  31502. default: true
  31503. },
  31504. {
  31505. name: "Macro+",
  31506. height: math.unit(40, "meters")
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31512. {
  31513. front: {
  31514. height: math.unit(4 + 2 / 12, "feet"),
  31515. weight: math.unit(95, "lb"),
  31516. name: "Front",
  31517. image: {
  31518. source: "./media/characters/vaelophis-nyx/front.svg",
  31519. extra: 2532/2330,
  31520. bottom: 0/2532
  31521. }
  31522. },
  31523. back: {
  31524. height: math.unit(4 + 2 / 12, "feet"),
  31525. weight: math.unit(95, "lb"),
  31526. name: "Back",
  31527. image: {
  31528. source: "./media/characters/vaelophis-nyx/back.svg",
  31529. extra: 2484/2361,
  31530. bottom: 0/2484
  31531. }
  31532. },
  31533. feralSide: {
  31534. height: math.unit(2 + 1/12, "feet"),
  31535. weight: math.unit(20, "lb"),
  31536. name: "Feral (Side)",
  31537. image: {
  31538. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31539. extra: 1721/1581,
  31540. bottom: 70/1791
  31541. }
  31542. },
  31543. feralLazing: {
  31544. height: math.unit(1.08, "feet"),
  31545. weight: math.unit(20, "lb"),
  31546. name: "Feral (Lazing)",
  31547. image: {
  31548. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31549. extra: 822/822,
  31550. bottom: 248/1070
  31551. }
  31552. },
  31553. ear: {
  31554. height: math.unit(0.416, "feet"),
  31555. name: "Ear",
  31556. image: {
  31557. source: "./media/characters/vaelophis-nyx/ear.svg"
  31558. }
  31559. },
  31560. eye: {
  31561. height: math.unit(0.0748, "feet"),
  31562. name: "Eye",
  31563. image: {
  31564. source: "./media/characters/vaelophis-nyx/eye.svg"
  31565. }
  31566. },
  31567. mouth: {
  31568. height: math.unit(0.378, "feet"),
  31569. name: "Mouth",
  31570. image: {
  31571. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31572. }
  31573. },
  31574. spade: {
  31575. height: math.unit(0.55, "feet"),
  31576. name: "Spade",
  31577. image: {
  31578. source: "./media/characters/vaelophis-nyx/spade.svg"
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Normal",
  31585. height: math.unit(4 + 2/12, "feet"),
  31586. default: true
  31587. },
  31588. ]
  31589. ))
  31590. characterMakers.push(() => makeCharacter(
  31591. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31592. {
  31593. front: {
  31594. height: math.unit(7, "feet"),
  31595. weight: math.unit(231, "lb"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/flux/front.svg",
  31599. extra: 919/871,
  31600. bottom: 0/919
  31601. }
  31602. },
  31603. back: {
  31604. height: math.unit(7, "feet"),
  31605. weight: math.unit(231, "lb"),
  31606. name: "Back",
  31607. image: {
  31608. source: "./media/characters/flux/back.svg",
  31609. extra: 1040/992,
  31610. bottom: 0/1040
  31611. }
  31612. },
  31613. frontDressed: {
  31614. height: math.unit(7, "feet"),
  31615. weight: math.unit(231, "lb"),
  31616. name: "Front (Dressed)",
  31617. image: {
  31618. source: "./media/characters/flux/front-dressed.svg",
  31619. extra: 919/871,
  31620. bottom: 0/919
  31621. }
  31622. },
  31623. feralSide: {
  31624. height: math.unit(5, "feet"),
  31625. weight: math.unit(150, "lb"),
  31626. name: "Feral (Side)",
  31627. image: {
  31628. source: "./media/characters/flux/feral-side.svg",
  31629. extra: 598/528,
  31630. bottom: 28/626
  31631. }
  31632. },
  31633. head: {
  31634. height: math.unit(1.585, "feet"),
  31635. name: "Head",
  31636. image: {
  31637. source: "./media/characters/flux/head.svg"
  31638. }
  31639. },
  31640. headSide: {
  31641. height: math.unit(1.74, "feet"),
  31642. name: "Head (Side)",
  31643. image: {
  31644. source: "./media/characters/flux/head-side.svg"
  31645. }
  31646. },
  31647. headSideFire: {
  31648. height: math.unit(1.76, "feet"),
  31649. name: "Head (Side, Fire)",
  31650. image: {
  31651. source: "./media/characters/flux/head-side-fire.svg"
  31652. }
  31653. },
  31654. },
  31655. [
  31656. {
  31657. name: "Normal",
  31658. height: math.unit(7, "feet"),
  31659. default: true
  31660. },
  31661. ]
  31662. ))
  31663. characterMakers.push(() => makeCharacter(
  31664. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31665. {
  31666. front: {
  31667. height: math.unit(9, "feet"),
  31668. weight: math.unit(1012, "lb"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/ulfra-lupae/front.svg",
  31672. extra: 1083/1011,
  31673. bottom: 67/1150
  31674. }
  31675. },
  31676. },
  31677. [
  31678. {
  31679. name: "Micro",
  31680. height: math.unit(6, "inches")
  31681. },
  31682. {
  31683. name: "Socializing",
  31684. height: math.unit(6 + 5/12, "feet")
  31685. },
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(9, "feet"),
  31689. default: true
  31690. },
  31691. {
  31692. name: "Macro",
  31693. height: math.unit(150, "feet")
  31694. },
  31695. ]
  31696. ))
  31697. characterMakers.push(() => makeCharacter(
  31698. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31699. {
  31700. front: {
  31701. height: math.unit(5 + 2/12, "feet"),
  31702. weight: math.unit(120, "lb"),
  31703. name: "Front",
  31704. image: {
  31705. source: "./media/characters/timber/front.svg",
  31706. extra: 2814/2705,
  31707. bottom: 181/2995
  31708. }
  31709. },
  31710. },
  31711. [
  31712. {
  31713. name: "Normal",
  31714. height: math.unit(5 + 2/12, "feet"),
  31715. default: true
  31716. },
  31717. ]
  31718. ))
  31719. characterMakers.push(() => makeCharacter(
  31720. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31721. {
  31722. front: {
  31723. height: math.unit(5 + 7/12, "feet"),
  31724. weight: math.unit(220, "lb"),
  31725. name: "Front",
  31726. image: {
  31727. source: "./media/characters/nicki/front.svg",
  31728. extra: 453/419,
  31729. bottom: 7/460
  31730. }
  31731. },
  31732. frontAlt: {
  31733. height: math.unit(5 + 7/12, "feet"),
  31734. weight: math.unit(220, "lb"),
  31735. name: "Front-alt",
  31736. image: {
  31737. source: "./media/characters/nicki/front-alt.svg",
  31738. extra: 435/411,
  31739. bottom: 12/447
  31740. }
  31741. },
  31742. back: {
  31743. height: math.unit(5 + 7/12, "feet"),
  31744. weight: math.unit(220, "lb"),
  31745. name: "Back",
  31746. image: {
  31747. source: "./media/characters/nicki/back.svg",
  31748. extra: 440/413,
  31749. bottom: 19/459
  31750. }
  31751. },
  31752. taur: {
  31753. height: math.unit(7 + 6/12, "feet"),
  31754. weight: math.unit(700, "lb"),
  31755. name: "Taur",
  31756. image: {
  31757. source: "./media/characters/nicki/taur.svg",
  31758. extra: 975/773,
  31759. bottom: 0/975
  31760. }
  31761. },
  31762. frontNsfw: {
  31763. height: math.unit(5 + 7/12, "feet"),
  31764. weight: math.unit(220, "lb"),
  31765. name: "Front (NSFW)",
  31766. image: {
  31767. source: "./media/characters/nicki/front-nsfw.svg",
  31768. extra: 453/419,
  31769. bottom: 7/460
  31770. }
  31771. },
  31772. frontNsfwAlt: {
  31773. height: math.unit(5 + 7/12, "feet"),
  31774. weight: math.unit(220, "lb"),
  31775. name: "Front (Alt, NSFW)",
  31776. image: {
  31777. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31778. extra: 435/411,
  31779. bottom: 12/447
  31780. }
  31781. },
  31782. backNsfw: {
  31783. height: math.unit(5 + 7/12, "feet"),
  31784. weight: math.unit(220, "lb"),
  31785. name: "Back (NSFW)",
  31786. image: {
  31787. source: "./media/characters/nicki/back-nsfw.svg",
  31788. extra: 440/413,
  31789. bottom: 19/459
  31790. }
  31791. },
  31792. head: {
  31793. height: math.unit(2.1, "feet"),
  31794. name: "Head",
  31795. image: {
  31796. source: "./media/characters/nicki/head.svg"
  31797. }
  31798. },
  31799. paw: {
  31800. height: math.unit(1.88, "feet"),
  31801. name: "Paw",
  31802. image: {
  31803. source: "./media/characters/nicki/paw.svg"
  31804. }
  31805. },
  31806. },
  31807. [
  31808. {
  31809. name: "Normal",
  31810. height: math.unit(5 + 7/12, "feet"),
  31811. default: true
  31812. },
  31813. ]
  31814. ))
  31815. characterMakers.push(() => makeCharacter(
  31816. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31817. {
  31818. front: {
  31819. height: math.unit(7 + 10/12, "feet"),
  31820. weight: math.unit(3.5, "tons"),
  31821. name: "Front",
  31822. image: {
  31823. source: "./media/characters/lee/front.svg",
  31824. extra: 1773/1615,
  31825. bottom: 86/1859
  31826. }
  31827. },
  31828. hand: {
  31829. height: math.unit(1.78, "feet"),
  31830. name: "Hand",
  31831. image: {
  31832. source: "./media/characters/lee/hand.svg"
  31833. }
  31834. },
  31835. maw: {
  31836. height: math.unit(1.18, "feet"),
  31837. name: "Maw",
  31838. image: {
  31839. source: "./media/characters/lee/maw.svg"
  31840. }
  31841. },
  31842. },
  31843. [
  31844. {
  31845. name: "Normal",
  31846. height: math.unit(7 + 10/12, "feet"),
  31847. default: true
  31848. },
  31849. ]
  31850. ))
  31851. characterMakers.push(() => makeCharacter(
  31852. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31853. {
  31854. front: {
  31855. height: math.unit(9, "feet"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/guti/front.svg",
  31859. extra: 4551/4355,
  31860. bottom: 123/4674
  31861. }
  31862. },
  31863. tongue: {
  31864. height: math.unit(1, "feet"),
  31865. name: "Tongue",
  31866. image: {
  31867. source: "./media/characters/guti/tongue.svg"
  31868. }
  31869. },
  31870. paw: {
  31871. height: math.unit(1.18, "feet"),
  31872. name: "Paw",
  31873. image: {
  31874. source: "./media/characters/guti/paw.svg"
  31875. }
  31876. },
  31877. },
  31878. [
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(9, "feet"),
  31882. default: true
  31883. },
  31884. ]
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31888. {
  31889. side: {
  31890. height: math.unit(5, "meters"),
  31891. name: "Side",
  31892. image: {
  31893. source: "./media/characters/vesper/side.svg",
  31894. extra: 1605/1518,
  31895. bottom: 0/1605
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Small",
  31902. height: math.unit(5, "meters")
  31903. },
  31904. {
  31905. name: "Sage",
  31906. height: math.unit(100, "meters"),
  31907. default: true
  31908. },
  31909. {
  31910. name: "Fun Size",
  31911. height: math.unit(600, "meters")
  31912. },
  31913. {
  31914. name: "Goddess",
  31915. height: math.unit(20000, "km")
  31916. },
  31917. {
  31918. name: "Maximum",
  31919. height: math.unit(5, "galaxies")
  31920. },
  31921. ]
  31922. ))
  31923. characterMakers.push(() => makeCharacter(
  31924. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31925. {
  31926. front: {
  31927. height: math.unit(6 + 3/12, "feet"),
  31928. weight: math.unit(190, "lb"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/gawain/front.svg",
  31932. extra: 2222/2139,
  31933. bottom: 90/2312
  31934. }
  31935. },
  31936. back: {
  31937. height: math.unit(6 + 3/12, "feet"),
  31938. weight: math.unit(190, "lb"),
  31939. name: "Back",
  31940. image: {
  31941. source: "./media/characters/gawain/back.svg",
  31942. extra: 2199/2111,
  31943. bottom: 73/2272
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(6 + 3/12, "feet"),
  31951. default: true
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31957. {
  31958. side: {
  31959. height: math.unit(3.5, "meters"),
  31960. weight: math.unit(16000, "lb"),
  31961. name: "Side",
  31962. image: {
  31963. source: "./media/characters/dascalti/side.svg",
  31964. extra: 392/273,
  31965. bottom: 47/439
  31966. }
  31967. },
  31968. breath: {
  31969. height: math.unit(7.4, "feet"),
  31970. name: "Breath",
  31971. image: {
  31972. source: "./media/characters/dascalti/breath.svg"
  31973. }
  31974. },
  31975. fed: {
  31976. height: math.unit(3.6, "meters"),
  31977. weight: math.unit(16000, "lb"),
  31978. name: "Fed",
  31979. image: {
  31980. source: "./media/characters/dascalti/fed.svg",
  31981. extra: 1419/820,
  31982. bottom: 95/1514
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Normal",
  31989. height: math.unit(3.5, "meters"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31996. {
  31997. front: {
  31998. height: math.unit(3 + 5/12, "feet"),
  31999. name: "Front",
  32000. image: {
  32001. source: "./media/characters/mauve/front.svg",
  32002. extra: 1126/1033,
  32003. bottom: 65/1191
  32004. }
  32005. },
  32006. side: {
  32007. height: math.unit(3 + 5/12, "feet"),
  32008. name: "Side",
  32009. image: {
  32010. source: "./media/characters/mauve/side.svg",
  32011. extra: 1089/1001,
  32012. bottom: 29/1118
  32013. }
  32014. },
  32015. back: {
  32016. height: math.unit(3 + 5/12, "feet"),
  32017. name: "Back",
  32018. image: {
  32019. source: "./media/characters/mauve/back.svg",
  32020. extra: 1173/1053,
  32021. bottom: 109/1282
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Normal",
  32028. height: math.unit(3 + 5/12, "feet"),
  32029. default: true
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32035. {
  32036. front: {
  32037. height: math.unit(6 + 3/12, "feet"),
  32038. weight: math.unit(430, "lb"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/carlos/front.svg",
  32042. extra: 1964/1913,
  32043. bottom: 70/2034
  32044. }
  32045. },
  32046. },
  32047. [
  32048. {
  32049. name: "Normal",
  32050. height: math.unit(6 + 3/12, "feet"),
  32051. default: true
  32052. },
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32057. {
  32058. back: {
  32059. height: math.unit(5 + 10/12, "feet"),
  32060. weight: math.unit(200, "lb"),
  32061. name: "Back",
  32062. image: {
  32063. source: "./media/characters/jax/back.svg",
  32064. extra: 764/739,
  32065. bottom: 25/789
  32066. }
  32067. },
  32068. },
  32069. [
  32070. {
  32071. name: "Normal",
  32072. height: math.unit(5 + 10/12, "feet"),
  32073. default: true
  32074. },
  32075. ]
  32076. ))
  32077. characterMakers.push(() => makeCharacter(
  32078. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32079. {
  32080. front: {
  32081. height: math.unit(8, "feet"),
  32082. weight: math.unit(250, "lb"),
  32083. name: "Front",
  32084. image: {
  32085. source: "./media/characters/eikthynir/front.svg",
  32086. extra: 1332/1166,
  32087. bottom: 82/1414
  32088. }
  32089. },
  32090. back: {
  32091. height: math.unit(8, "feet"),
  32092. weight: math.unit(250, "lb"),
  32093. name: "Back",
  32094. image: {
  32095. source: "./media/characters/eikthynir/back.svg",
  32096. extra: 1342/1190,
  32097. bottom: 19/1361
  32098. }
  32099. },
  32100. dick: {
  32101. height: math.unit(2.35, "feet"),
  32102. name: "Dick",
  32103. image: {
  32104. source: "./media/characters/eikthynir/dick.svg"
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(8, "feet"),
  32112. default: true
  32113. },
  32114. ]
  32115. ))
  32116. characterMakers.push(() => makeCharacter(
  32117. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32118. {
  32119. front: {
  32120. height: math.unit(99, "meters"),
  32121. weight: math.unit(13000, "tons"),
  32122. name: "Front",
  32123. image: {
  32124. source: "./media/characters/zlmos/front.svg",
  32125. extra: 2202/1992,
  32126. bottom: 315/2517
  32127. }
  32128. },
  32129. },
  32130. [
  32131. {
  32132. name: "Macro",
  32133. height: math.unit(99, "meters"),
  32134. default: true
  32135. },
  32136. ]
  32137. ))
  32138. characterMakers.push(() => makeCharacter(
  32139. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32140. {
  32141. front: {
  32142. height: math.unit(6 + 5/12, "feet"),
  32143. name: "Front",
  32144. image: {
  32145. source: "./media/characters/purri/front.svg",
  32146. extra: 1698/1610,
  32147. bottom: 32/1730
  32148. }
  32149. },
  32150. frontAlt: {
  32151. height: math.unit(6 + 5/12, "feet"),
  32152. name: "Front (Alt)",
  32153. image: {
  32154. source: "./media/characters/purri/front-alt.svg",
  32155. extra: 450/420,
  32156. bottom: 26/476
  32157. }
  32158. },
  32159. boots: {
  32160. height: math.unit(5.5, "feet"),
  32161. name: "Boots",
  32162. image: {
  32163. source: "./media/characters/purri/boots.svg",
  32164. extra: 905/853,
  32165. bottom: 18/923
  32166. }
  32167. },
  32168. lying: {
  32169. height: math.unit(2, "feet"),
  32170. name: "Lying",
  32171. image: {
  32172. source: "./media/characters/purri/lying.svg",
  32173. extra: 940/843,
  32174. bottom: 146/1086
  32175. }
  32176. },
  32177. devious: {
  32178. height: math.unit(1.77, "feet"),
  32179. name: "Devious",
  32180. image: {
  32181. source: "./media/characters/purri/devious.svg",
  32182. extra: 1440/1155,
  32183. bottom: 147/1587
  32184. }
  32185. },
  32186. bean: {
  32187. height: math.unit(1.94, "feet"),
  32188. name: "Bean",
  32189. image: {
  32190. source: "./media/characters/purri/bean.svg"
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Micro",
  32197. height: math.unit(1, "mm")
  32198. },
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(6 + 5/12, "feet"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Macro :3c",
  32206. height: math.unit(2, "miles")
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32212. {
  32213. front: {
  32214. height: math.unit(6 + 2/12, "feet"),
  32215. weight: math.unit(250, "lb"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/moonlight/front.svg",
  32219. extra: 1044/908,
  32220. bottom: 56/1100
  32221. }
  32222. },
  32223. feral: {
  32224. height: math.unit(3 + 1/12, "feet"),
  32225. weight: math.unit(50, "kg"),
  32226. name: "Feral",
  32227. image: {
  32228. source: "./media/characters/moonlight/feral.svg",
  32229. extra: 3705/2791,
  32230. bottom: 145/3850
  32231. }
  32232. },
  32233. paw: {
  32234. height: math.unit(1, "feet"),
  32235. name: "Paw",
  32236. image: {
  32237. source: "./media/characters/moonlight/paw.svg"
  32238. }
  32239. },
  32240. paws: {
  32241. height: math.unit(0.98, "feet"),
  32242. name: "Paws",
  32243. image: {
  32244. source: "./media/characters/moonlight/paws.svg",
  32245. extra: 939/939,
  32246. bottom: 50/989
  32247. }
  32248. },
  32249. mouth: {
  32250. height: math.unit(0.48, "feet"),
  32251. name: "Mouth",
  32252. image: {
  32253. source: "./media/characters/moonlight/mouth.svg"
  32254. }
  32255. },
  32256. dick: {
  32257. height: math.unit(1.46, "feet"),
  32258. name: "Dick",
  32259. image: {
  32260. source: "./media/characters/moonlight/dick.svg"
  32261. }
  32262. },
  32263. },
  32264. [
  32265. {
  32266. name: "Normal",
  32267. height: math.unit(6 + 2/12, "feet"),
  32268. default: true
  32269. },
  32270. {
  32271. name: "Macro",
  32272. height: math.unit(300, "feet")
  32273. },
  32274. {
  32275. name: "Macro+",
  32276. height: math.unit(1, "mile")
  32277. },
  32278. {
  32279. name: "Mt. Moon",
  32280. height: math.unit(5, "miles")
  32281. },
  32282. {
  32283. name: "Megamacro",
  32284. height: math.unit(15, "miles")
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32290. {
  32291. back: {
  32292. height: math.unit(6, "feet"),
  32293. weight: math.unit(150, "lb"),
  32294. name: "Back",
  32295. image: {
  32296. source: "./media/characters/sylen/back.svg",
  32297. extra: 1335/1273,
  32298. bottom: 107/1442
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Normal",
  32305. height: math.unit(5 + 5/12, "feet")
  32306. },
  32307. {
  32308. name: "Megamacro",
  32309. height: math.unit(3, "miles"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(6, "feet"),
  32319. weight: math.unit(190, "lb"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/huttser/front.svg",
  32323. extra: 1152/1058,
  32324. bottom: 23/1175
  32325. }
  32326. },
  32327. side: {
  32328. height: math.unit(6, "feet"),
  32329. weight: math.unit(190, "lb"),
  32330. name: "Side",
  32331. image: {
  32332. source: "./media/characters/huttser/side.svg",
  32333. extra: 1174/1065,
  32334. bottom: 18/1192
  32335. }
  32336. },
  32337. back: {
  32338. height: math.unit(6, "feet"),
  32339. weight: math.unit(190, "lb"),
  32340. name: "Back",
  32341. image: {
  32342. source: "./media/characters/huttser/back.svg",
  32343. extra: 1158/1056,
  32344. bottom: 12/1170
  32345. }
  32346. },
  32347. },
  32348. [
  32349. ]
  32350. ))
  32351. characterMakers.push(() => makeCharacter(
  32352. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32353. {
  32354. side: {
  32355. height: math.unit(12 + 9/12, "feet"),
  32356. weight: math.unit(15000, "lb"),
  32357. name: "Side",
  32358. image: {
  32359. source: "./media/characters/faan/side.svg",
  32360. extra: 2747/2697,
  32361. bottom: 0/2747
  32362. }
  32363. },
  32364. front: {
  32365. height: math.unit(12 + 9/12, "feet"),
  32366. weight: math.unit(15000, "lb"),
  32367. name: "Front",
  32368. image: {
  32369. source: "./media/characters/faan/front.svg",
  32370. extra: 607/571,
  32371. bottom: 24/631
  32372. }
  32373. },
  32374. head: {
  32375. height: math.unit(2.85, "feet"),
  32376. name: "Head",
  32377. image: {
  32378. source: "./media/characters/faan/head.svg"
  32379. }
  32380. },
  32381. headAlt: {
  32382. height: math.unit(3.13, "feet"),
  32383. name: "Head-alt",
  32384. image: {
  32385. source: "./media/characters/faan/head-alt.svg"
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(12 + 9/12, "feet"),
  32393. default: true
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32399. {
  32400. front: {
  32401. height: math.unit(6, "feet"),
  32402. weight: math.unit(300, "lb"),
  32403. name: "Front",
  32404. image: {
  32405. source: "./media/characters/tanio/front.svg",
  32406. extra: 711/673,
  32407. bottom: 25/736
  32408. }
  32409. },
  32410. },
  32411. [
  32412. {
  32413. name: "Normal",
  32414. height: math.unit(6, "feet"),
  32415. default: true
  32416. },
  32417. ]
  32418. ))
  32419. characterMakers.push(() => makeCharacter(
  32420. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32421. {
  32422. front: {
  32423. height: math.unit(3, "inches"),
  32424. name: "Front",
  32425. image: {
  32426. source: "./media/characters/noboru/front.svg",
  32427. extra: 1039/932,
  32428. bottom: 18/1057
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Micro",
  32435. height: math.unit(3, "inches"),
  32436. default: true
  32437. },
  32438. ]
  32439. ))
  32440. characterMakers.push(() => makeCharacter(
  32441. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32442. {
  32443. front: {
  32444. height: math.unit(1.85, "meters"),
  32445. weight: math.unit(80, "kg"),
  32446. name: "Front",
  32447. image: {
  32448. source: "./media/characters/daniel-barrett/front.svg",
  32449. extra: 355/337,
  32450. bottom: 9/364
  32451. }
  32452. },
  32453. },
  32454. [
  32455. {
  32456. name: "Pico",
  32457. height: math.unit(0.0433, "mm")
  32458. },
  32459. {
  32460. name: "Nano",
  32461. height: math.unit(1.5, "mm")
  32462. },
  32463. {
  32464. name: "Micro",
  32465. height: math.unit(5.3, "cm"),
  32466. default: true
  32467. },
  32468. {
  32469. name: "Normal",
  32470. height: math.unit(1.85, "meters")
  32471. },
  32472. {
  32473. name: "Macro",
  32474. height: math.unit(64.7, "meters")
  32475. },
  32476. {
  32477. name: "Megamacro",
  32478. height: math.unit(2.26, "km")
  32479. },
  32480. {
  32481. name: "Gigamacro",
  32482. height: math.unit(79, "km")
  32483. },
  32484. {
  32485. name: "Teramacro",
  32486. height: math.unit(2765, "km")
  32487. },
  32488. {
  32489. name: "Petamacro",
  32490. height: math.unit(96678, "km")
  32491. },
  32492. ]
  32493. ))
  32494. characterMakers.push(() => makeCharacter(
  32495. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32496. {
  32497. front: {
  32498. height: math.unit(30, "meters"),
  32499. weight: math.unit(400, "tons"),
  32500. name: "Front",
  32501. image: {
  32502. source: "./media/characters/zeel/front.svg",
  32503. extra: 2599/2599,
  32504. bottom: 226/2825
  32505. }
  32506. },
  32507. },
  32508. [
  32509. {
  32510. name: "Macro",
  32511. height: math.unit(30, "meters"),
  32512. default: true
  32513. },
  32514. ]
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32518. {
  32519. front: {
  32520. height: math.unit(6 + 7/12, "feet"),
  32521. weight: math.unit(210, "lb"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/tarn/front.svg",
  32525. extra: 3517/3220,
  32526. bottom: 91/3608
  32527. }
  32528. },
  32529. back: {
  32530. height: math.unit(6 + 7/12, "feet"),
  32531. weight: math.unit(210, "lb"),
  32532. name: "Back",
  32533. image: {
  32534. source: "./media/characters/tarn/back.svg",
  32535. extra: 3566/3241,
  32536. bottom: 34/3600
  32537. }
  32538. },
  32539. dick: {
  32540. height: math.unit(1.65, "feet"),
  32541. name: "Dick",
  32542. image: {
  32543. source: "./media/characters/tarn/dick.svg"
  32544. }
  32545. },
  32546. paw: {
  32547. height: math.unit(1.80, "feet"),
  32548. name: "Paw",
  32549. image: {
  32550. source: "./media/characters/tarn/paw.svg"
  32551. }
  32552. },
  32553. tongue: {
  32554. height: math.unit(0.97, "feet"),
  32555. name: "Tongue",
  32556. image: {
  32557. source: "./media/characters/tarn/tongue.svg"
  32558. }
  32559. },
  32560. },
  32561. [
  32562. {
  32563. name: "Micro",
  32564. height: math.unit(4, "inches")
  32565. },
  32566. {
  32567. name: "Normal",
  32568. height: math.unit(6 + 7/12, "feet"),
  32569. default: true
  32570. },
  32571. {
  32572. name: "Macro",
  32573. height: math.unit(300, "feet")
  32574. },
  32575. ]
  32576. ))
  32577. characterMakers.push(() => makeCharacter(
  32578. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32579. {
  32580. front: {
  32581. height: math.unit(5 + 7/12, "feet"),
  32582. weight: math.unit(80, "kg"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32586. extra: 3023/2865,
  32587. bottom: 33/3056
  32588. }
  32589. },
  32590. back: {
  32591. height: math.unit(5 + 7/12, "feet"),
  32592. weight: math.unit(80, "kg"),
  32593. name: "Back",
  32594. image: {
  32595. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32596. extra: 3020/2886,
  32597. bottom: 30/3050
  32598. }
  32599. },
  32600. dick: {
  32601. height: math.unit(0.98, "feet"),
  32602. name: "Dick",
  32603. image: {
  32604. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32605. }
  32606. },
  32607. anatomy: {
  32608. height: math.unit(2.86, "feet"),
  32609. name: "Anatomy",
  32610. image: {
  32611. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Really Small",
  32618. height: math.unit(2, "inches")
  32619. },
  32620. {
  32621. name: "Micro",
  32622. height: math.unit(5.583, "inches")
  32623. },
  32624. {
  32625. name: "Normal",
  32626. height: math.unit(5 + 7/12, "feet"),
  32627. default: true
  32628. },
  32629. {
  32630. name: "Macro",
  32631. height: math.unit(67, "feet")
  32632. },
  32633. {
  32634. name: "Megamacro",
  32635. height: math.unit(134, "feet")
  32636. },
  32637. ]
  32638. ))
  32639. characterMakers.push(() => makeCharacter(
  32640. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32641. {
  32642. front: {
  32643. height: math.unit(9, "feet"),
  32644. weight: math.unit(120, "lb"),
  32645. name: "Front",
  32646. image: {
  32647. source: "./media/characters/sally/front.svg",
  32648. extra: 1506/1349,
  32649. bottom: 66/1572
  32650. }
  32651. },
  32652. },
  32653. [
  32654. {
  32655. name: "Normal",
  32656. height: math.unit(9, "feet"),
  32657. default: true
  32658. },
  32659. ]
  32660. ))
  32661. characterMakers.push(() => makeCharacter(
  32662. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32663. {
  32664. front: {
  32665. height: math.unit(8, "feet"),
  32666. weight: math.unit(900, "lb"),
  32667. name: "Front",
  32668. image: {
  32669. source: "./media/characters/owen/front.svg",
  32670. extra: 1761/1657,
  32671. bottom: 74/1835
  32672. }
  32673. },
  32674. side: {
  32675. height: math.unit(8, "feet"),
  32676. weight: math.unit(900, "lb"),
  32677. name: "Side",
  32678. image: {
  32679. source: "./media/characters/owen/side.svg",
  32680. extra: 1797/1734,
  32681. bottom: 30/1827
  32682. }
  32683. },
  32684. back: {
  32685. height: math.unit(8, "feet"),
  32686. weight: math.unit(900, "lb"),
  32687. name: "Back",
  32688. image: {
  32689. source: "./media/characters/owen/back.svg",
  32690. extra: 1796/1706,
  32691. bottom: 59/1855
  32692. }
  32693. },
  32694. maw: {
  32695. height: math.unit(1.76, "feet"),
  32696. name: "Maw",
  32697. image: {
  32698. source: "./media/characters/owen/maw.svg"
  32699. }
  32700. },
  32701. },
  32702. [
  32703. {
  32704. name: "Normal",
  32705. height: math.unit(8, "feet"),
  32706. default: true
  32707. },
  32708. ]
  32709. ))
  32710. characterMakers.push(() => makeCharacter(
  32711. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32712. {
  32713. front: {
  32714. height: math.unit(4, "feet"),
  32715. weight: math.unit(400, "lb"),
  32716. name: "Front",
  32717. image: {
  32718. source: "./media/characters/ryth/front.svg",
  32719. extra: 1920/1748,
  32720. bottom: 42/1962
  32721. }
  32722. },
  32723. back: {
  32724. height: math.unit(4, "feet"),
  32725. weight: math.unit(400, "lb"),
  32726. name: "Back",
  32727. image: {
  32728. source: "./media/characters/ryth/back.svg",
  32729. extra: 1897/1690,
  32730. bottom: 89/1986
  32731. }
  32732. },
  32733. mouth: {
  32734. height: math.unit(1.39, "feet"),
  32735. name: "Mouth",
  32736. image: {
  32737. source: "./media/characters/ryth/mouth.svg"
  32738. }
  32739. },
  32740. tailmaw: {
  32741. height: math.unit(1.23, "feet"),
  32742. name: "Tailmaw",
  32743. image: {
  32744. source: "./media/characters/ryth/tailmaw.svg"
  32745. }
  32746. },
  32747. goia: {
  32748. height: math.unit(4, "meters"),
  32749. weight: math.unit(10800, "lb"),
  32750. name: "Goia",
  32751. image: {
  32752. source: "./media/characters/ryth/goia.svg",
  32753. extra: 745/640,
  32754. bottom: 107/852
  32755. }
  32756. },
  32757. goiaFront: {
  32758. height: math.unit(4, "meters"),
  32759. weight: math.unit(10800, "lb"),
  32760. name: "Goia (Front)",
  32761. image: {
  32762. source: "./media/characters/ryth/goia-front.svg",
  32763. extra: 750/586,
  32764. bottom: 114/864
  32765. }
  32766. },
  32767. goiaMaw: {
  32768. height: math.unit(5.55, "feet"),
  32769. name: "Goia Maw",
  32770. image: {
  32771. source: "./media/characters/ryth/goia-maw.svg"
  32772. }
  32773. },
  32774. goiaForepaw: {
  32775. height: math.unit(3.5, "feet"),
  32776. name: "Goia Forepaw",
  32777. image: {
  32778. source: "./media/characters/ryth/goia-forepaw.svg"
  32779. }
  32780. },
  32781. goiaHindpaw: {
  32782. height: math.unit(5.55, "feet"),
  32783. name: "Goia Hindpaw",
  32784. image: {
  32785. source: "./media/characters/ryth/goia-hindpaw.svg"
  32786. }
  32787. },
  32788. },
  32789. [
  32790. {
  32791. name: "Normal",
  32792. height: math.unit(4, "feet"),
  32793. default: true
  32794. },
  32795. ]
  32796. ))
  32797. characterMakers.push(() => makeCharacter(
  32798. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32799. {
  32800. front: {
  32801. height: math.unit(7, "feet"),
  32802. weight: math.unit(180, "lb"),
  32803. name: "Front",
  32804. image: {
  32805. source: "./media/characters/necrolance/front.svg",
  32806. extra: 1062/947,
  32807. bottom: 41/1103
  32808. }
  32809. },
  32810. back: {
  32811. height: math.unit(7, "feet"),
  32812. weight: math.unit(180, "lb"),
  32813. name: "Back",
  32814. image: {
  32815. source: "./media/characters/necrolance/back.svg",
  32816. extra: 1045/984,
  32817. bottom: 14/1059
  32818. }
  32819. },
  32820. wing: {
  32821. height: math.unit(2.67, "feet"),
  32822. name: "Wing",
  32823. image: {
  32824. source: "./media/characters/necrolance/wing.svg"
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Normal",
  32831. height: math.unit(7, "feet"),
  32832. default: true
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32838. {
  32839. front: {
  32840. height: math.unit(76, "meters"),
  32841. weight: math.unit(30000, "tons"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/tyler/front.svg",
  32845. extra: 1640/1640,
  32846. bottom: 114/1754
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Macro",
  32853. height: math.unit(76, "meters"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(4 + 11/12, "feet"),
  32863. weight: math.unit(132, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/icey/front.svg",
  32867. extra: 2750/2550,
  32868. bottom: 33/2783
  32869. }
  32870. },
  32871. back: {
  32872. height: math.unit(4 + 11/12, "feet"),
  32873. weight: math.unit(132, "lb"),
  32874. name: "Back",
  32875. image: {
  32876. source: "./media/characters/icey/back.svg",
  32877. extra: 2624/2481,
  32878. bottom: 35/2659
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Normal",
  32885. height: math.unit(4 + 11/12, "feet"),
  32886. default: true
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32892. {
  32893. front: {
  32894. height: math.unit(100, "feet"),
  32895. weight: math.unit(0, "lb"),
  32896. name: "Front",
  32897. image: {
  32898. source: "./media/characters/smile/front.svg",
  32899. extra: 2983/2912,
  32900. bottom: 162/3145
  32901. }
  32902. },
  32903. back: {
  32904. height: math.unit(100, "feet"),
  32905. weight: math.unit(0, "lb"),
  32906. name: "Back",
  32907. image: {
  32908. source: "./media/characters/smile/back.svg",
  32909. extra: 3143/3031,
  32910. bottom: 91/3234
  32911. }
  32912. },
  32913. head: {
  32914. height: math.unit(26.3, "feet"),
  32915. weight: math.unit(0, "lb"),
  32916. name: "Head",
  32917. image: {
  32918. source: "./media/characters/smile/head.svg"
  32919. }
  32920. },
  32921. collar: {
  32922. height: math.unit(5.3, "feet"),
  32923. weight: math.unit(0, "lb"),
  32924. name: "Collar",
  32925. image: {
  32926. source: "./media/characters/smile/collar.svg"
  32927. }
  32928. },
  32929. },
  32930. [
  32931. {
  32932. name: "Macro",
  32933. height: math.unit(100, "feet"),
  32934. default: true
  32935. },
  32936. ]
  32937. ))
  32938. characterMakers.push(() => makeCharacter(
  32939. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32940. {
  32941. dragon: {
  32942. height: math.unit(26, "feet"),
  32943. weight: math.unit(36, "tons"),
  32944. name: "Dragon",
  32945. image: {
  32946. source: "./media/characters/arimphae/dragon.svg",
  32947. extra: 1574/983,
  32948. bottom: 357/1931
  32949. }
  32950. },
  32951. drake: {
  32952. height: math.unit(9, "feet"),
  32953. weight: math.unit(1.5, "tons"),
  32954. name: "Drake",
  32955. image: {
  32956. source: "./media/characters/arimphae/drake.svg",
  32957. extra: 1120/925,
  32958. bottom: 435/1555
  32959. }
  32960. },
  32961. },
  32962. [
  32963. {
  32964. name: "Small",
  32965. height: math.unit(26*5/9, "feet")
  32966. },
  32967. {
  32968. name: "Normal",
  32969. height: math.unit(26, "feet"),
  32970. default: true
  32971. },
  32972. ]
  32973. ))
  32974. characterMakers.push(() => makeCharacter(
  32975. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32976. {
  32977. front: {
  32978. height: math.unit(8 + 9/12, "feet"),
  32979. name: "Front",
  32980. image: {
  32981. source: "./media/characters/xander/front.svg",
  32982. extra: 1237/974,
  32983. bottom: 94/1331
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(8 + 9/12, "feet"),
  32991. default: true
  32992. },
  32993. {
  32994. name: "Gaze Grabber",
  32995. height: math.unit(13 + 8/12, "feet")
  32996. },
  32997. {
  32998. name: "Jaw Dropper",
  32999. height: math.unit(27, "feet")
  33000. },
  33001. {
  33002. name: "Show Stopper",
  33003. height: math.unit(136, "feet")
  33004. },
  33005. {
  33006. name: "Superstar",
  33007. height: math.unit(1.9e6, "miles")
  33008. },
  33009. ]
  33010. ))
  33011. characterMakers.push(() => makeCharacter(
  33012. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33013. {
  33014. side: {
  33015. height: math.unit(2100, "feet"),
  33016. name: "Side",
  33017. image: {
  33018. source: "./media/characters/osiris/side.svg",
  33019. extra: 1105/939,
  33020. bottom: 167/1272
  33021. }
  33022. },
  33023. },
  33024. [
  33025. {
  33026. name: "Macro",
  33027. height: math.unit(2100, "feet"),
  33028. default: true
  33029. },
  33030. ]
  33031. ))
  33032. characterMakers.push(() => makeCharacter(
  33033. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33034. {
  33035. front: {
  33036. height: math.unit(6 + 8/12, "feet"),
  33037. weight: math.unit(225, "lb"),
  33038. name: "Front",
  33039. image: {
  33040. source: "./media/characters/rhys-londe/front.svg",
  33041. extra: 2258/2141,
  33042. bottom: 188/2446
  33043. }
  33044. },
  33045. back: {
  33046. height: math.unit(6 + 8/12, "feet"),
  33047. weight: math.unit(225, "lb"),
  33048. name: "Back",
  33049. image: {
  33050. source: "./media/characters/rhys-londe/back.svg",
  33051. extra: 2237/2137,
  33052. bottom: 63/2300
  33053. }
  33054. },
  33055. frontNsfw: {
  33056. height: math.unit(6 + 8/12, "feet"),
  33057. weight: math.unit(225, "lb"),
  33058. name: "Front (NSFW)",
  33059. image: {
  33060. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33061. extra: 2258/2141,
  33062. bottom: 188/2446
  33063. }
  33064. },
  33065. backNsfw: {
  33066. height: math.unit(6 + 8/12, "feet"),
  33067. weight: math.unit(225, "lb"),
  33068. name: "Back (NSFW)",
  33069. image: {
  33070. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33071. extra: 2237/2137,
  33072. bottom: 63/2300
  33073. }
  33074. },
  33075. dick: {
  33076. height: math.unit(30, "inches"),
  33077. name: "Dick",
  33078. image: {
  33079. source: "./media/characters/rhys-londe/dick.svg"
  33080. }
  33081. },
  33082. maw: {
  33083. height: math.unit(1.6, "feet"),
  33084. name: "Maw",
  33085. image: {
  33086. source: "./media/characters/rhys-londe/maw.svg"
  33087. }
  33088. },
  33089. },
  33090. [
  33091. {
  33092. name: "Normal",
  33093. height: math.unit(6 + 8/12, "feet"),
  33094. default: true
  33095. },
  33096. ]
  33097. ))
  33098. characterMakers.push(() => makeCharacter(
  33099. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33100. {
  33101. front: {
  33102. height: math.unit(3 + 10/12, "feet"),
  33103. weight: math.unit(90, "lb"),
  33104. name: "Front",
  33105. image: {
  33106. source: "./media/characters/taivas-ensim/front.svg",
  33107. extra: 1327/1216,
  33108. bottom: 96/1423
  33109. }
  33110. },
  33111. back: {
  33112. height: math.unit(3 + 10/12, "feet"),
  33113. weight: math.unit(90, "lb"),
  33114. name: "Back",
  33115. image: {
  33116. source: "./media/characters/taivas-ensim/back.svg",
  33117. extra: 1355/1247,
  33118. bottom: 11/1366
  33119. }
  33120. },
  33121. frontNsfw: {
  33122. height: math.unit(3 + 10/12, "feet"),
  33123. weight: math.unit(90, "lb"),
  33124. name: "Front (NSFW)",
  33125. image: {
  33126. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33127. extra: 1327/1216,
  33128. bottom: 96/1423
  33129. }
  33130. },
  33131. backNsfw: {
  33132. height: math.unit(3 + 10/12, "feet"),
  33133. weight: math.unit(90, "lb"),
  33134. name: "Back (NSFW)",
  33135. image: {
  33136. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33137. extra: 1355/1247,
  33138. bottom: 11/1366
  33139. }
  33140. },
  33141. },
  33142. [
  33143. {
  33144. name: "Normal",
  33145. height: math.unit(3 + 10/12, "feet"),
  33146. default: true
  33147. },
  33148. ]
  33149. ))
  33150. characterMakers.push(() => makeCharacter(
  33151. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33152. {
  33153. front: {
  33154. height: math.unit(9 + 6/12, "feet"),
  33155. weight: math.unit(940, "lb"),
  33156. name: "Front",
  33157. image: {
  33158. source: "./media/characters/byliss/front.svg",
  33159. extra: 1327/1290,
  33160. bottom: 82/1409
  33161. }
  33162. },
  33163. back: {
  33164. height: math.unit(9 + 6/12, "feet"),
  33165. weight: math.unit(940, "lb"),
  33166. name: "Back",
  33167. image: {
  33168. source: "./media/characters/byliss/back.svg",
  33169. extra: 1376/1349,
  33170. bottom: 9/1385
  33171. }
  33172. },
  33173. frontNsfw: {
  33174. height: math.unit(9 + 6/12, "feet"),
  33175. weight: math.unit(940, "lb"),
  33176. name: "Front (NSFW)",
  33177. image: {
  33178. source: "./media/characters/byliss/front-nsfw.svg",
  33179. extra: 1327/1290,
  33180. bottom: 82/1409
  33181. }
  33182. },
  33183. backNsfw: {
  33184. height: math.unit(9 + 6/12, "feet"),
  33185. weight: math.unit(940, "lb"),
  33186. name: "Back (NSFW)",
  33187. image: {
  33188. source: "./media/characters/byliss/back-nsfw.svg",
  33189. extra: 1376/1349,
  33190. bottom: 9/1385
  33191. }
  33192. },
  33193. },
  33194. [
  33195. {
  33196. name: "Normal",
  33197. height: math.unit(9 + 6/12, "feet"),
  33198. default: true
  33199. },
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33204. {
  33205. front: {
  33206. height: math.unit(5 + 2/12, "feet"),
  33207. weight: math.unit(200, "lb"),
  33208. name: "Front",
  33209. image: {
  33210. source: "./media/characters/noraly/front.svg",
  33211. extra: 4985/4773,
  33212. bottom: 150/5135
  33213. }
  33214. },
  33215. full: {
  33216. height: math.unit(5 + 2/12, "feet"),
  33217. weight: math.unit(164, "lb"),
  33218. name: "Full",
  33219. image: {
  33220. source: "./media/characters/noraly/full.svg",
  33221. extra: 1114/1059,
  33222. bottom: 35/1149
  33223. }
  33224. },
  33225. fuller: {
  33226. height: math.unit(5 + 2/12, "feet"),
  33227. weight: math.unit(230, "lb"),
  33228. name: "Fuller",
  33229. image: {
  33230. source: "./media/characters/noraly/fuller.svg",
  33231. extra: 1114/1059,
  33232. bottom: 35/1149
  33233. }
  33234. },
  33235. fullest: {
  33236. height: math.unit(5 + 2/12, "feet"),
  33237. weight: math.unit(300, "lb"),
  33238. name: "Fullest",
  33239. image: {
  33240. source: "./media/characters/noraly/fullest.svg",
  33241. extra: 1114/1059,
  33242. bottom: 35/1149
  33243. }
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Normal",
  33249. height: math.unit(5 + 2/12, "feet"),
  33250. default: true
  33251. },
  33252. ]
  33253. ))
  33254. characterMakers.push(() => makeCharacter(
  33255. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33256. {
  33257. front: {
  33258. height: math.unit(5 + 2/12, "feet"),
  33259. weight: math.unit(210, "lb"),
  33260. name: "Front",
  33261. image: {
  33262. source: "./media/characters/pera/front.svg",
  33263. extra: 1560/1531,
  33264. bottom: 165/1725
  33265. }
  33266. },
  33267. back: {
  33268. height: math.unit(5 + 2/12, "feet"),
  33269. weight: math.unit(210, "lb"),
  33270. name: "Back",
  33271. image: {
  33272. source: "./media/characters/pera/back.svg",
  33273. extra: 1523/1493,
  33274. bottom: 152/1675
  33275. }
  33276. },
  33277. dick: {
  33278. height: math.unit(2.4, "feet"),
  33279. name: "Dick",
  33280. image: {
  33281. source: "./media/characters/pera/dick.svg"
  33282. }
  33283. },
  33284. },
  33285. [
  33286. {
  33287. name: "Normal",
  33288. height: math.unit(5 + 2/12, "feet"),
  33289. default: true
  33290. },
  33291. ]
  33292. ))
  33293. characterMakers.push(() => makeCharacter(
  33294. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33295. {
  33296. front: {
  33297. height: math.unit(12, "feet"),
  33298. weight: math.unit(3200, "lb"),
  33299. name: "Front",
  33300. image: {
  33301. source: "./media/characters/julian/front.svg",
  33302. extra: 2962/2701,
  33303. bottom: 184/3146
  33304. }
  33305. },
  33306. maw: {
  33307. height: math.unit(5.35, "feet"),
  33308. name: "Maw",
  33309. image: {
  33310. source: "./media/characters/julian/maw.svg"
  33311. }
  33312. },
  33313. paw: {
  33314. height: math.unit(3.07, "feet"),
  33315. name: "Paw",
  33316. image: {
  33317. source: "./media/characters/julian/paw.svg"
  33318. }
  33319. },
  33320. },
  33321. [
  33322. {
  33323. name: "Default",
  33324. height: math.unit(12, "feet"),
  33325. default: true
  33326. },
  33327. {
  33328. name: "Big",
  33329. height: math.unit(50, "feet")
  33330. },
  33331. {
  33332. name: "Really Big",
  33333. height: math.unit(1, "mile")
  33334. },
  33335. {
  33336. name: "Extremely Big",
  33337. height: math.unit(100, "miles")
  33338. },
  33339. {
  33340. name: "Planet Hugger",
  33341. height: math.unit(200, "megameters")
  33342. },
  33343. {
  33344. name: "Unreasonably Big",
  33345. height: math.unit(1e300, "meters")
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33351. {
  33352. solgooleo: {
  33353. height: math.unit(4, "meters"),
  33354. weight: math.unit(6000*1.5, "kg"),
  33355. volume: math.unit(6000, "liters"),
  33356. name: "Solgooleo",
  33357. image: {
  33358. source: "./media/characters/pi/solgooleo.svg",
  33359. extra: 388/331,
  33360. bottom: 29/417
  33361. }
  33362. },
  33363. },
  33364. [
  33365. {
  33366. name: "Normal",
  33367. height: math.unit(4, "meters"),
  33368. default: true
  33369. },
  33370. ]
  33371. ))
  33372. characterMakers.push(() => makeCharacter(
  33373. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33374. {
  33375. front: {
  33376. height: math.unit(8, "feet"),
  33377. weight: math.unit(4, "tons"),
  33378. name: "Front",
  33379. image: {
  33380. source: "./media/characters/shaun/front.svg",
  33381. extra: 503/495,
  33382. bottom: 20/523
  33383. }
  33384. },
  33385. back: {
  33386. height: math.unit(8, "feet"),
  33387. weight: math.unit(4, "tons"),
  33388. name: "Back",
  33389. image: {
  33390. source: "./media/characters/shaun/back.svg",
  33391. extra: 487/480,
  33392. bottom: 20/507
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Lorg",
  33399. height: math.unit(8, "feet"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33406. {
  33407. frontAnthro: {
  33408. height: math.unit(7, "feet"),
  33409. name: "Front",
  33410. image: {
  33411. source: "./media/characters/sini/front-anthro.svg",
  33412. extra: 726/678,
  33413. bottom: 35/761
  33414. },
  33415. form: "anthro",
  33416. default: true
  33417. },
  33418. backAnthro: {
  33419. height: math.unit(7, "feet"),
  33420. name: "Back",
  33421. image: {
  33422. source: "./media/characters/sini/back-anthro.svg",
  33423. extra: 743/701,
  33424. bottom: 12/755
  33425. },
  33426. form: "anthro",
  33427. },
  33428. frontAnthroNsfw: {
  33429. height: math.unit(7, "feet"),
  33430. name: "Front (NSFW)",
  33431. image: {
  33432. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33433. extra: 726/678,
  33434. bottom: 35/761
  33435. },
  33436. form: "anthro"
  33437. },
  33438. backAnthroNsfw: {
  33439. height: math.unit(7, "feet"),
  33440. name: "Back (NSFW)",
  33441. image: {
  33442. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33443. extra: 743/701,
  33444. bottom: 12/755
  33445. },
  33446. form: "anthro",
  33447. },
  33448. mawAnthro: {
  33449. height: math.unit(2.14, "feet"),
  33450. name: "Maw",
  33451. image: {
  33452. source: "./media/characters/sini/maw-anthro.svg"
  33453. },
  33454. form: "anthro"
  33455. },
  33456. dick: {
  33457. height: math.unit(1.45, "feet"),
  33458. name: "Dick",
  33459. image: {
  33460. source: "./media/characters/sini/dick-anthro.svg"
  33461. },
  33462. form: "anthro"
  33463. },
  33464. feral: {
  33465. height: math.unit(16, "feet"),
  33466. name: "Feral",
  33467. image: {
  33468. source: "./media/characters/sini/feral.svg",
  33469. extra: 814/605,
  33470. bottom: 11/825
  33471. },
  33472. form: "feral",
  33473. default: true
  33474. },
  33475. feralNsfw: {
  33476. height: math.unit(16, "feet"),
  33477. name: "Feral (NSFW)",
  33478. image: {
  33479. source: "./media/characters/sini/feral-nsfw.svg",
  33480. extra: 814/605,
  33481. bottom: 11/825
  33482. },
  33483. form: "feral"
  33484. },
  33485. mawFeral: {
  33486. height: math.unit(5.66, "feet"),
  33487. name: "Maw",
  33488. image: {
  33489. source: "./media/characters/sini/maw-feral.svg"
  33490. },
  33491. form: "feral",
  33492. },
  33493. pawFeral: {
  33494. height: math.unit(5.17, "feet"),
  33495. name: "Paw",
  33496. image: {
  33497. source: "./media/characters/sini/paw-feral.svg"
  33498. },
  33499. form: "feral",
  33500. },
  33501. rumpFeral: {
  33502. height: math.unit(13.11, "feet"),
  33503. name: "Rump",
  33504. image: {
  33505. source: "./media/characters/sini/rump-feral.svg"
  33506. },
  33507. form: "feral",
  33508. },
  33509. dickFeral: {
  33510. height: math.unit(1, "feet"),
  33511. name: "Dick",
  33512. image: {
  33513. source: "./media/characters/sini/dick-feral.svg"
  33514. },
  33515. form: "feral",
  33516. },
  33517. eyeFeral: {
  33518. height: math.unit(1.23, "feet"),
  33519. name: "Eye",
  33520. image: {
  33521. source: "./media/characters/sini/eye-feral.svg"
  33522. },
  33523. form: "feral",
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Normal",
  33529. height: math.unit(7, "feet"),
  33530. default: true,
  33531. form: "anthro"
  33532. },
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(16, "feet"),
  33536. default: true,
  33537. form: "feral"
  33538. },
  33539. ],
  33540. {
  33541. "anthro": {
  33542. name: "Anthro",
  33543. default: true
  33544. },
  33545. "feral": {
  33546. name: "Feral",
  33547. }
  33548. }
  33549. ))
  33550. characterMakers.push(() => makeCharacter(
  33551. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33552. {
  33553. side: {
  33554. height: math.unit(13, "meters"),
  33555. weight: math.unit(9072, "kg"),
  33556. name: "Side",
  33557. image: {
  33558. source: "./media/characters/raylldo/side.svg",
  33559. extra: 403/344,
  33560. bottom: 42/445
  33561. }
  33562. },
  33563. leaping: {
  33564. height: math.unit(12.3, "meters"),
  33565. weight: math.unit(9072, "kg"),
  33566. name: "Leaping",
  33567. image: {
  33568. source: "./media/characters/raylldo/leaping.svg",
  33569. extra: 470/249,
  33570. bottom: 13/483
  33571. }
  33572. },
  33573. flying: {
  33574. height: math.unit(18, "meters"),
  33575. weight: math.unit(9072, "kg"),
  33576. name: "Flying",
  33577. image: {
  33578. source: "./media/characters/raylldo/flying.svg"
  33579. }
  33580. },
  33581. head: {
  33582. height: math.unit(5.85, "meters"),
  33583. name: "Head",
  33584. image: {
  33585. source: "./media/characters/raylldo/head.svg"
  33586. }
  33587. },
  33588. maw: {
  33589. height: math.unit(5.32, "meters"),
  33590. name: "Maw",
  33591. image: {
  33592. source: "./media/characters/raylldo/maw.svg"
  33593. }
  33594. },
  33595. eye: {
  33596. height: math.unit(0.54, "meters"),
  33597. name: "Eye",
  33598. image: {
  33599. source: "./media/characters/raylldo/eye.svg"
  33600. }
  33601. },
  33602. },
  33603. [
  33604. {
  33605. name: "Normal",
  33606. height: math.unit(13, "meters"),
  33607. default: true
  33608. },
  33609. ]
  33610. ))
  33611. characterMakers.push(() => makeCharacter(
  33612. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33613. {
  33614. anthroFront: {
  33615. height: math.unit(9, "feet"),
  33616. weight: math.unit(600, "lb"),
  33617. name: "Anthro (Front)",
  33618. image: {
  33619. source: "./media/characters/glint/anthro-front.svg",
  33620. extra: 1097/1018,
  33621. bottom: 28/1125
  33622. }
  33623. },
  33624. anthroBack: {
  33625. height: math.unit(9, "feet"),
  33626. weight: math.unit(600, "lb"),
  33627. name: "Anthro (Back)",
  33628. image: {
  33629. source: "./media/characters/glint/anthro-back.svg",
  33630. extra: 1154/997,
  33631. bottom: 36/1190
  33632. }
  33633. },
  33634. feral: {
  33635. height: math.unit(11, "feet"),
  33636. weight: math.unit(50000, "lb"),
  33637. name: "Feral",
  33638. image: {
  33639. source: "./media/characters/glint/feral.svg",
  33640. extra: 3035/1585,
  33641. bottom: 1169/4204
  33642. }
  33643. },
  33644. dickAnthro: {
  33645. height: math.unit(0.7, "meters"),
  33646. name: "Dick (Anthro)",
  33647. image: {
  33648. source: "./media/characters/glint/dick-anthro.svg"
  33649. }
  33650. },
  33651. dickFeral: {
  33652. height: math.unit(2.65, "meters"),
  33653. name: "Dick (Feral)",
  33654. image: {
  33655. source: "./media/characters/glint/dick-feral.svg"
  33656. }
  33657. },
  33658. slitHidden: {
  33659. height: math.unit(5.85, "meters"),
  33660. name: "Slit (Hidden)",
  33661. image: {
  33662. source: "./media/characters/glint/slit-hidden.svg"
  33663. }
  33664. },
  33665. slitErect: {
  33666. height: math.unit(5.85, "meters"),
  33667. name: "Slit (Erect)",
  33668. image: {
  33669. source: "./media/characters/glint/slit-erect.svg"
  33670. }
  33671. },
  33672. mawAnthro: {
  33673. height: math.unit(0.63, "meters"),
  33674. name: "Maw (Anthro)",
  33675. image: {
  33676. source: "./media/characters/glint/maw.svg"
  33677. }
  33678. },
  33679. mawFeral: {
  33680. height: math.unit(2.89, "meters"),
  33681. name: "Maw (Feral)",
  33682. image: {
  33683. source: "./media/characters/glint/maw.svg"
  33684. }
  33685. },
  33686. },
  33687. [
  33688. {
  33689. name: "Normal",
  33690. height: math.unit(9, "feet"),
  33691. default: true
  33692. },
  33693. ]
  33694. ))
  33695. characterMakers.push(() => makeCharacter(
  33696. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33697. {
  33698. side: {
  33699. height: math.unit(15, "feet"),
  33700. weight: math.unit(5000, "kg"),
  33701. name: "Side",
  33702. image: {
  33703. source: "./media/characters/kairne/side.svg",
  33704. extra: 979/811,
  33705. bottom: 13/992
  33706. }
  33707. },
  33708. front: {
  33709. height: math.unit(15, "feet"),
  33710. weight: math.unit(5000, "kg"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/kairne/front.svg",
  33714. extra: 908/814,
  33715. bottom: 26/934
  33716. }
  33717. },
  33718. sideNsfw: {
  33719. height: math.unit(15, "feet"),
  33720. weight: math.unit(5000, "kg"),
  33721. name: "Side (NSFW)",
  33722. image: {
  33723. source: "./media/characters/kairne/side-nsfw.svg",
  33724. extra: 979/811,
  33725. bottom: 13/992
  33726. }
  33727. },
  33728. frontNsfw: {
  33729. height: math.unit(15, "feet"),
  33730. weight: math.unit(5000, "kg"),
  33731. name: "Front (NSFW)",
  33732. image: {
  33733. source: "./media/characters/kairne/front-nsfw.svg",
  33734. extra: 908/814,
  33735. bottom: 26/934
  33736. }
  33737. },
  33738. dickCaged: {
  33739. height: math.unit(0.65, "meters"),
  33740. name: "Dick-caged",
  33741. image: {
  33742. source: "./media/characters/kairne/dick-caged.svg"
  33743. }
  33744. },
  33745. dick: {
  33746. height: math.unit(0.79, "meters"),
  33747. name: "Dick",
  33748. image: {
  33749. source: "./media/characters/kairne/dick.svg"
  33750. }
  33751. },
  33752. genitals: {
  33753. height: math.unit(1.29, "meters"),
  33754. name: "Genitals",
  33755. image: {
  33756. source: "./media/characters/kairne/genitals.svg"
  33757. }
  33758. },
  33759. maw: {
  33760. height: math.unit(1.73, "meters"),
  33761. name: "Maw",
  33762. image: {
  33763. source: "./media/characters/kairne/maw.svg"
  33764. }
  33765. },
  33766. },
  33767. [
  33768. {
  33769. name: "Normal",
  33770. height: math.unit(15, "feet"),
  33771. default: true
  33772. },
  33773. ]
  33774. ))
  33775. characterMakers.push(() => makeCharacter(
  33776. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33777. {
  33778. front: {
  33779. height: math.unit(5 + 8/12, "feet"),
  33780. weight: math.unit(139, "lb"),
  33781. name: "Front",
  33782. image: {
  33783. source: "./media/characters/biscuit-jackal/front.svg",
  33784. extra: 2106/1961,
  33785. bottom: 58/2164
  33786. }
  33787. },
  33788. back: {
  33789. height: math.unit(5 + 8/12, "feet"),
  33790. weight: math.unit(139, "lb"),
  33791. name: "Back",
  33792. image: {
  33793. source: "./media/characters/biscuit-jackal/back.svg",
  33794. extra: 2132/1976,
  33795. bottom: 57/2189
  33796. }
  33797. },
  33798. werejackal: {
  33799. height: math.unit(6 + 3/12, "feet"),
  33800. weight: math.unit(188, "lb"),
  33801. name: "Werejackal",
  33802. image: {
  33803. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33804. extra: 2373/2178,
  33805. bottom: 53/2426
  33806. }
  33807. },
  33808. },
  33809. [
  33810. {
  33811. name: "Normal",
  33812. height: math.unit(5 + 8/12, "feet"),
  33813. default: true
  33814. },
  33815. ]
  33816. ))
  33817. characterMakers.push(() => makeCharacter(
  33818. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33819. {
  33820. front: {
  33821. height: math.unit(140, "cm"),
  33822. weight: math.unit(45, "kg"),
  33823. name: "Front",
  33824. image: {
  33825. source: "./media/characters/tayra-white/front.svg",
  33826. extra: 2229/2192,
  33827. bottom: 75/2304
  33828. }
  33829. },
  33830. },
  33831. [
  33832. {
  33833. name: "Normal",
  33834. height: math.unit(140, "cm"),
  33835. default: true
  33836. },
  33837. ]
  33838. ))
  33839. characterMakers.push(() => makeCharacter(
  33840. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33841. {
  33842. front: {
  33843. height: math.unit(4 + 5/12, "feet"),
  33844. name: "Front",
  33845. image: {
  33846. source: "./media/characters/scoop/front.svg",
  33847. extra: 1257/1136,
  33848. bottom: 69/1326
  33849. }
  33850. },
  33851. back: {
  33852. height: math.unit(4 + 5/12, "feet"),
  33853. name: "Back",
  33854. image: {
  33855. source: "./media/characters/scoop/back.svg",
  33856. extra: 1321/1152,
  33857. bottom: 32/1353
  33858. }
  33859. },
  33860. maw: {
  33861. height: math.unit(0.68, "feet"),
  33862. name: "Maw",
  33863. image: {
  33864. source: "./media/characters/scoop/maw.svg"
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Really Small",
  33871. height: math.unit(1, "mm")
  33872. },
  33873. {
  33874. name: "Micro",
  33875. height: math.unit(1, "inch")
  33876. },
  33877. {
  33878. name: "Normal",
  33879. height: math.unit(4 + 5/12, "feet"),
  33880. default: true
  33881. },
  33882. {
  33883. name: "Macro",
  33884. height: math.unit(200, "feet")
  33885. },
  33886. {
  33887. name: "Megamacro",
  33888. height: math.unit(3240, "feet")
  33889. },
  33890. {
  33891. name: "Teramacro",
  33892. height: math.unit(2500, "miles")
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(15 + 7/12, "feet"),
  33901. weight: math.unit(1150, "tons"),
  33902. name: "Front",
  33903. image: {
  33904. source: "./media/characters/saphinara/front.svg",
  33905. extra: 1837/1643,
  33906. bottom: 84/1921
  33907. },
  33908. form: "normal",
  33909. default: true
  33910. },
  33911. side: {
  33912. height: math.unit(15 + 7/12, "feet"),
  33913. weight: math.unit(1150, "tons"),
  33914. name: "Side",
  33915. image: {
  33916. source: "./media/characters/saphinara/side.svg",
  33917. extra: 605/547,
  33918. bottom: 6/611
  33919. },
  33920. form: "normal"
  33921. },
  33922. back: {
  33923. height: math.unit(15 + 7/12, "feet"),
  33924. weight: math.unit(1150, "tons"),
  33925. name: "Back",
  33926. image: {
  33927. source: "./media/characters/saphinara/back.svg",
  33928. extra: 591/531,
  33929. bottom: 13/604
  33930. },
  33931. form: "normal"
  33932. },
  33933. frontTail: {
  33934. height: math.unit(15 + 7/12, "feet"),
  33935. weight: math.unit(1150, "tons"),
  33936. name: "Front (Full Tail)",
  33937. image: {
  33938. source: "./media/characters/saphinara/front-tail.svg",
  33939. extra: 2256/1630,
  33940. bottom: 261/2517
  33941. },
  33942. form: "normal"
  33943. },
  33944. insides: {
  33945. height: math.unit(11.92, "feet"),
  33946. name: "Insides",
  33947. image: {
  33948. source: "./media/characters/saphinara/insides.svg"
  33949. },
  33950. form: "normal"
  33951. },
  33952. head: {
  33953. height: math.unit(4.17, "feet"),
  33954. name: "Head",
  33955. image: {
  33956. source: "./media/characters/saphinara/head.svg"
  33957. },
  33958. form: "normal"
  33959. },
  33960. tongue: {
  33961. height: math.unit(4.60, "feet"),
  33962. name: "Tongue",
  33963. image: {
  33964. source: "./media/characters/saphinara/tongue.svg"
  33965. },
  33966. form: "normal"
  33967. },
  33968. headEnraged: {
  33969. height: math.unit(5.55, "feet"),
  33970. name: "Head (Enraged)",
  33971. image: {
  33972. source: "./media/characters/saphinara/head-enraged.svg"
  33973. },
  33974. form: "normal"
  33975. },
  33976. wings: {
  33977. height: math.unit(11.95, "feet"),
  33978. name: "Wings",
  33979. image: {
  33980. source: "./media/characters/saphinara/wings.svg"
  33981. },
  33982. form: "normal"
  33983. },
  33984. feathers: {
  33985. height: math.unit(8.92, "feet"),
  33986. name: "Feathers",
  33987. image: {
  33988. source: "./media/characters/saphinara/feathers.svg"
  33989. },
  33990. form: "normal"
  33991. },
  33992. shackles: {
  33993. height: math.unit(2, "feet"),
  33994. name: "Shackles",
  33995. image: {
  33996. source: "./media/characters/saphinara/shackles.svg"
  33997. },
  33998. form: "normal"
  33999. },
  34000. eyes: {
  34001. height: math.unit(1.331, "feet"),
  34002. name: "Eyes",
  34003. image: {
  34004. source: "./media/characters/saphinara/eyes.svg"
  34005. },
  34006. form: "normal"
  34007. },
  34008. eyesEnraged: {
  34009. height: math.unit(1.331, "feet"),
  34010. name: "Eyes (Enraged)",
  34011. image: {
  34012. source: "./media/characters/saphinara/eyes-enraged.svg"
  34013. },
  34014. form: "normal"
  34015. },
  34016. trueFormSide: {
  34017. height: math.unit(200, "feet"),
  34018. weight: math.unit(1e7, "tons"),
  34019. name: "Side",
  34020. image: {
  34021. source: "./media/characters/saphinara/true-form-side.svg",
  34022. extra: 1399/770,
  34023. bottom: 97/1496
  34024. },
  34025. form: "true-form",
  34026. default: true
  34027. },
  34028. trueFormMaw: {
  34029. height: math.unit(71.5, "feet"),
  34030. name: "Maw",
  34031. image: {
  34032. source: "./media/characters/saphinara/true-form-maw.svg",
  34033. extra: 2302/1453,
  34034. bottom: 0/2302
  34035. },
  34036. form: "true-form"
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Normal",
  34042. height: math.unit(15 + 7/12, "feet"),
  34043. default: true,
  34044. form: "normal"
  34045. },
  34046. {
  34047. name: "Angry",
  34048. height: math.unit(30 + 6/12, "feet"),
  34049. form: "normal"
  34050. },
  34051. {
  34052. name: "Enraged",
  34053. height: math.unit(102 + 1/12, "feet"),
  34054. form: "normal"
  34055. },
  34056. {
  34057. name: "True",
  34058. height: math.unit(200, "feet"),
  34059. default: true,
  34060. form: "true-form"
  34061. }
  34062. ],
  34063. {
  34064. "normal": {
  34065. name: "Normal",
  34066. default: true
  34067. },
  34068. "true-form": {
  34069. name: "True Form"
  34070. }
  34071. }
  34072. ))
  34073. characterMakers.push(() => makeCharacter(
  34074. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34075. {
  34076. front: {
  34077. height: math.unit(6 + 8/12, "feet"),
  34078. weight: math.unit(300, "lb"),
  34079. name: "Front",
  34080. image: {
  34081. source: "./media/characters/jrain/front.svg",
  34082. extra: 3039/2865,
  34083. bottom: 399/3438
  34084. }
  34085. },
  34086. back: {
  34087. height: math.unit(6 + 8/12, "feet"),
  34088. weight: math.unit(300, "lb"),
  34089. name: "Back",
  34090. image: {
  34091. source: "./media/characters/jrain/back.svg",
  34092. extra: 3089/2938,
  34093. bottom: 172/3261
  34094. }
  34095. },
  34096. head: {
  34097. height: math.unit(2.14, "feet"),
  34098. name: "Head",
  34099. image: {
  34100. source: "./media/characters/jrain/head.svg"
  34101. }
  34102. },
  34103. maw: {
  34104. height: math.unit(1.77, "feet"),
  34105. name: "Maw",
  34106. image: {
  34107. source: "./media/characters/jrain/maw.svg"
  34108. }
  34109. },
  34110. leftHand: {
  34111. height: math.unit(1.1, "feet"),
  34112. name: "Left Hand",
  34113. image: {
  34114. source: "./media/characters/jrain/left-hand.svg"
  34115. }
  34116. },
  34117. rightHand: {
  34118. height: math.unit(1.1, "feet"),
  34119. name: "Right Hand",
  34120. image: {
  34121. source: "./media/characters/jrain/right-hand.svg"
  34122. }
  34123. },
  34124. eye: {
  34125. height: math.unit(0.35, "feet"),
  34126. name: "Eye",
  34127. image: {
  34128. source: "./media/characters/jrain/eye.svg"
  34129. }
  34130. },
  34131. },
  34132. [
  34133. {
  34134. name: "Normal",
  34135. height: math.unit(6 + 8/12, "feet"),
  34136. default: true
  34137. },
  34138. {
  34139. name: "Casually Large",
  34140. height: math.unit(25, "feet")
  34141. },
  34142. {
  34143. name: "Giant",
  34144. height: math.unit(100, "feet")
  34145. },
  34146. {
  34147. name: "Kaiju",
  34148. height: math.unit(300, "feet")
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34154. {
  34155. dragon: {
  34156. height: math.unit(5, "meters"),
  34157. name: "Dragon",
  34158. image: {
  34159. source: "./media/characters/sabrina/dragon.svg",
  34160. extra: 3670 / 2365,
  34161. bottom: 333 / 4003
  34162. }
  34163. },
  34164. gryphon: {
  34165. height: math.unit(3, "meters"),
  34166. name: "Gryphon",
  34167. image: {
  34168. source: "./media/characters/sabrina/gryphon.svg",
  34169. extra: 1576 / 945,
  34170. bottom: 71 / 1647
  34171. }
  34172. },
  34173. snake: {
  34174. height: math.unit(12, "meters"),
  34175. name: "Snake",
  34176. image: {
  34177. source: "./media/characters/sabrina/snake.svg",
  34178. extra: 1758 / 1320,
  34179. bottom: 186 / 1944
  34180. }
  34181. },
  34182. collar: {
  34183. height: math.unit(1.86, "meters"),
  34184. name: "Collar",
  34185. image: {
  34186. source: "./media/characters/sabrina/collar.svg"
  34187. }
  34188. },
  34189. eye: {
  34190. height: math.unit(0.53, "meters"),
  34191. name: "Eye",
  34192. image: {
  34193. source: "./media/characters/sabrina/eye.svg"
  34194. }
  34195. },
  34196. foot: {
  34197. height: math.unit(1.86, "meters"),
  34198. name: "Foot",
  34199. image: {
  34200. source: "./media/characters/sabrina/foot.svg"
  34201. }
  34202. },
  34203. hand: {
  34204. height: math.unit(1.32, "meters"),
  34205. name: "Hand",
  34206. image: {
  34207. source: "./media/characters/sabrina/hand.svg"
  34208. }
  34209. },
  34210. head: {
  34211. height: math.unit(2.44, "meters"),
  34212. name: "Head",
  34213. image: {
  34214. source: "./media/characters/sabrina/head.svg"
  34215. }
  34216. },
  34217. headAngry: {
  34218. height: math.unit(2.44, "meters"),
  34219. name: "Head (Angry))",
  34220. image: {
  34221. source: "./media/characters/sabrina/head-angry.svg"
  34222. }
  34223. },
  34224. maw: {
  34225. height: math.unit(1.65, "meters"),
  34226. name: "Maw",
  34227. image: {
  34228. source: "./media/characters/sabrina/maw.svg"
  34229. }
  34230. },
  34231. spikes: {
  34232. height: math.unit(1.69, "meters"),
  34233. name: "Spikes",
  34234. image: {
  34235. source: "./media/characters/sabrina/spikes.svg"
  34236. }
  34237. },
  34238. stomach: {
  34239. height: math.unit(1.15, "meters"),
  34240. name: "Stomach",
  34241. image: {
  34242. source: "./media/characters/sabrina/stomach.svg"
  34243. }
  34244. },
  34245. tongue: {
  34246. height: math.unit(1.27, "meters"),
  34247. name: "Tongue",
  34248. image: {
  34249. source: "./media/characters/sabrina/tongue.svg"
  34250. }
  34251. },
  34252. wingDorsal: {
  34253. height: math.unit(4.85, "meters"),
  34254. name: "Wing (Dorsal)",
  34255. image: {
  34256. source: "./media/characters/sabrina/wing-dorsal.svg"
  34257. }
  34258. },
  34259. wingVentral: {
  34260. height: math.unit(4.85, "meters"),
  34261. name: "Wing (Ventral)",
  34262. image: {
  34263. source: "./media/characters/sabrina/wing-ventral.svg"
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(5, "meters"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34277. {
  34278. frontMaid: {
  34279. height: math.unit(5 + 5/12, "feet"),
  34280. weight: math.unit(130, "lb"),
  34281. name: "Front (Maid)",
  34282. image: {
  34283. source: "./media/characters/midnight-tales/front-maid.svg",
  34284. extra: 489/454,
  34285. bottom: 61/550
  34286. }
  34287. },
  34288. frontFormal: {
  34289. height: math.unit(5 + 5/12, "feet"),
  34290. weight: math.unit(130, "lb"),
  34291. name: "Front (Formal)",
  34292. image: {
  34293. source: "./media/characters/midnight-tales/front-formal.svg",
  34294. extra: 489/454,
  34295. bottom: 61/550
  34296. }
  34297. },
  34298. back: {
  34299. height: math.unit(5 + 5/12, "feet"),
  34300. weight: math.unit(130, "lb"),
  34301. name: "Back",
  34302. image: {
  34303. source: "./media/characters/midnight-tales/back.svg",
  34304. extra: 498/456,
  34305. bottom: 33/531
  34306. }
  34307. },
  34308. frontBeast: {
  34309. height: math.unit(40, "feet"),
  34310. weight: math.unit(64000, "lb"),
  34311. name: "Front (Beast)",
  34312. image: {
  34313. source: "./media/characters/midnight-tales/front-beast.svg",
  34314. extra: 927/860,
  34315. bottom: 53/980
  34316. }
  34317. },
  34318. backBeast: {
  34319. height: math.unit(40, "feet"),
  34320. weight: math.unit(64000, "lb"),
  34321. name: "Back (Beast)",
  34322. image: {
  34323. source: "./media/characters/midnight-tales/back-beast.svg",
  34324. extra: 929/855,
  34325. bottom: 16/945
  34326. }
  34327. },
  34328. footBeast: {
  34329. height: math.unit(6.7, "feet"),
  34330. name: "Foot (Beast)",
  34331. image: {
  34332. source: "./media/characters/midnight-tales/foot-beast.svg"
  34333. }
  34334. },
  34335. headBeast: {
  34336. height: math.unit(8, "feet"),
  34337. name: "Head (Beast)",
  34338. image: {
  34339. source: "./media/characters/midnight-tales/head-beast.svg"
  34340. }
  34341. },
  34342. },
  34343. [
  34344. {
  34345. name: "Normal",
  34346. height: math.unit(5 + 5 / 12, "feet"),
  34347. default: true
  34348. },
  34349. {
  34350. name: "Macro",
  34351. height: math.unit(25, "feet")
  34352. },
  34353. ]
  34354. ))
  34355. characterMakers.push(() => makeCharacter(
  34356. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34357. {
  34358. front: {
  34359. height: math.unit(5 + 10/12, "feet"),
  34360. name: "Front",
  34361. image: {
  34362. source: "./media/characters/argon/front.svg",
  34363. extra: 2009/1935,
  34364. bottom: 118/2127
  34365. }
  34366. },
  34367. back: {
  34368. height: math.unit(5 + 10/12, "feet"),
  34369. name: "Back",
  34370. image: {
  34371. source: "./media/characters/argon/back.svg",
  34372. extra: 2047/1992,
  34373. bottom: 20/2067
  34374. }
  34375. },
  34376. frontDressed: {
  34377. height: math.unit(5 + 10/12, "feet"),
  34378. name: "Front (Dressed)",
  34379. image: {
  34380. source: "./media/characters/argon/front-dressed.svg",
  34381. extra: 2009/1935,
  34382. bottom: 118/2127
  34383. }
  34384. },
  34385. },
  34386. [
  34387. {
  34388. name: "Normal",
  34389. height: math.unit(5 + 10/12, "feet"),
  34390. default: true
  34391. },
  34392. ]
  34393. ))
  34394. characterMakers.push(() => makeCharacter(
  34395. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34396. {
  34397. front: {
  34398. height: math.unit(8 + 6/12, "feet"),
  34399. weight: math.unit(1150, "lb"),
  34400. name: "Front",
  34401. image: {
  34402. source: "./media/characters/kichi/front.svg",
  34403. extra: 1267/1164,
  34404. bottom: 61/1328
  34405. }
  34406. },
  34407. back: {
  34408. height: math.unit(8 + 6/12, "feet"),
  34409. weight: math.unit(1150, "lb"),
  34410. name: "Back",
  34411. image: {
  34412. source: "./media/characters/kichi/back.svg",
  34413. extra: 1273/1166,
  34414. bottom: 33/1306
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(8 + 6/12, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(6, "feet"),
  34431. weight: math.unit(210, "lb"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/manetel-greyscale/front.svg",
  34435. extra: 350/312,
  34436. bottom: 8/358
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Micro",
  34443. height: math.unit(2, "inches")
  34444. },
  34445. {
  34446. name: "Normal",
  34447. height: math.unit(6, "feet"),
  34448. default: true
  34449. },
  34450. {
  34451. name: "Minimacro",
  34452. height: math.unit(17, "feet")
  34453. },
  34454. {
  34455. name: "Macro",
  34456. height: math.unit(117, "feet")
  34457. },
  34458. ]
  34459. ))
  34460. characterMakers.push(() => makeCharacter(
  34461. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34462. {
  34463. side: {
  34464. height: math.unit(5 + 1/12, "feet"),
  34465. weight: math.unit(418, "lb"),
  34466. name: "Side",
  34467. image: {
  34468. source: "./media/characters/softpurr/side.svg",
  34469. extra: 1993/1945,
  34470. bottom: 134/2127
  34471. }
  34472. },
  34473. front: {
  34474. height: math.unit(5 + 1/12, "feet"),
  34475. weight: math.unit(418, "lb"),
  34476. name: "Front",
  34477. image: {
  34478. source: "./media/characters/softpurr/front.svg",
  34479. extra: 1950/1856,
  34480. bottom: 174/2124
  34481. }
  34482. },
  34483. paw: {
  34484. height: math.unit(1, "feet"),
  34485. name: "Paw",
  34486. image: {
  34487. source: "./media/characters/softpurr/paw.svg"
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Normal",
  34494. height: math.unit(5 + 1/12, "feet"),
  34495. default: true
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34501. {
  34502. front: {
  34503. height: math.unit(260, "meters"),
  34504. name: "Front",
  34505. image: {
  34506. source: "./media/characters/anahita/front.svg",
  34507. extra: 665/635,
  34508. bottom: 89/754
  34509. }
  34510. },
  34511. },
  34512. [
  34513. {
  34514. name: "Macro",
  34515. height: math.unit(260, "meters"),
  34516. default: true
  34517. },
  34518. ]
  34519. ))
  34520. characterMakers.push(() => makeCharacter(
  34521. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34522. {
  34523. front: {
  34524. height: math.unit(4 + 10/12, "feet"),
  34525. weight: math.unit(160, "lb"),
  34526. name: "Front",
  34527. image: {
  34528. source: "./media/characters/chip-mouse/front.svg",
  34529. extra: 3528/3408,
  34530. bottom: 0/3528
  34531. }
  34532. },
  34533. frontNsfw: {
  34534. height: math.unit(4 + 10/12, "feet"),
  34535. weight: math.unit(160, "lb"),
  34536. name: "Front (NSFW)",
  34537. image: {
  34538. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34539. extra: 3528/3408,
  34540. bottom: 0/3528
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(4 + 10/12, "feet"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34554. {
  34555. side: {
  34556. height: math.unit(10, "feet"),
  34557. weight: math.unit(14000, "lb"),
  34558. name: "Side",
  34559. image: {
  34560. source: "./media/characters/kremm/side.svg",
  34561. extra: 1390/1053,
  34562. bottom: 90/1480
  34563. }
  34564. },
  34565. gut: {
  34566. height: math.unit(5.8, "feet"),
  34567. name: "Gut",
  34568. image: {
  34569. source: "./media/characters/kremm/gut.svg"
  34570. }
  34571. },
  34572. ass: {
  34573. height: math.unit(6.1, "feet"),
  34574. name: "Ass",
  34575. image: {
  34576. source: "./media/characters/kremm/ass.svg"
  34577. }
  34578. },
  34579. jaws: {
  34580. height: math.unit(2.2, "feet"),
  34581. name: "Jaws",
  34582. image: {
  34583. source: "./media/characters/kremm/jaws.svg"
  34584. }
  34585. },
  34586. dick: {
  34587. height: math.unit(4.26, "feet"),
  34588. name: "Dick",
  34589. image: {
  34590. source: "./media/characters/kremm/dick.svg"
  34591. }
  34592. },
  34593. },
  34594. [
  34595. {
  34596. name: "Normal",
  34597. height: math.unit(10, "feet"),
  34598. default: true
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34604. {
  34605. front: {
  34606. height: math.unit(30, "stories"),
  34607. name: "Front",
  34608. image: {
  34609. source: "./media/characters/kai/front.svg",
  34610. extra: 1892/1718,
  34611. bottom: 162/2054
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Macro",
  34618. height: math.unit(30, "stories"),
  34619. default: true
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34625. {
  34626. front: {
  34627. height: math.unit(6 + 4/12, "feet"),
  34628. weight: math.unit(145, "lb"),
  34629. name: "Front",
  34630. image: {
  34631. source: "./media/characters/sykes/front.svg",
  34632. extra: 1321 / 1187,
  34633. bottom: 66 / 1387
  34634. }
  34635. },
  34636. back: {
  34637. height: math.unit(6 + 4/12, "feet"),
  34638. weight: math.unit(145, "lb"),
  34639. name: "Back",
  34640. image: {
  34641. source: "./media/characters/sykes/back.svg",
  34642. extra: 1326/1181,
  34643. bottom: 31/1357
  34644. }
  34645. },
  34646. traditionalOutfit: {
  34647. height: math.unit(6 + 4/12, "feet"),
  34648. weight: math.unit(145, "lb"),
  34649. name: "Traditional Outfit",
  34650. image: {
  34651. source: "./media/characters/sykes/traditional-outfit.svg",
  34652. extra: 1321 / 1187,
  34653. bottom: 66 / 1387
  34654. }
  34655. },
  34656. adventureOutfit: {
  34657. height: math.unit(6 + 4/12, "feet"),
  34658. weight: math.unit(145, "lb"),
  34659. name: "Adventure Outfit",
  34660. image: {
  34661. source: "./media/characters/sykes/adventure-outfit.svg",
  34662. extra: 1321 / 1187,
  34663. bottom: 66 / 1387
  34664. }
  34665. },
  34666. handLeft: {
  34667. height: math.unit(0.9, "feet"),
  34668. name: "Hand (Left)",
  34669. image: {
  34670. source: "./media/characters/sykes/hand-left.svg"
  34671. }
  34672. },
  34673. handRight: {
  34674. height: math.unit(0.839, "feet"),
  34675. name: "Hand (Right)",
  34676. image: {
  34677. source: "./media/characters/sykes/hand-right.svg"
  34678. }
  34679. },
  34680. leftFoot: {
  34681. height: math.unit(1.2, "feet"),
  34682. name: "Foot (Left)",
  34683. image: {
  34684. source: "./media/characters/sykes/foot-left.svg"
  34685. }
  34686. },
  34687. rightFoot: {
  34688. height: math.unit(1.2, "feet"),
  34689. name: "Foot (Right)",
  34690. image: {
  34691. source: "./media/characters/sykes/foot-right.svg"
  34692. }
  34693. },
  34694. maw: {
  34695. height: math.unit(1.93, "feet"),
  34696. name: "Maw",
  34697. image: {
  34698. source: "./media/characters/sykes/maw.svg"
  34699. }
  34700. },
  34701. teeth: {
  34702. height: math.unit(0.51, "feet"),
  34703. name: "Teeth",
  34704. image: {
  34705. source: "./media/characters/sykes/teeth.svg"
  34706. }
  34707. },
  34708. tongue: {
  34709. height: math.unit(2.13, "feet"),
  34710. name: "Tongue",
  34711. image: {
  34712. source: "./media/characters/sykes/tongue.svg"
  34713. }
  34714. },
  34715. uvula: {
  34716. height: math.unit(0.16, "feet"),
  34717. name: "Uvula",
  34718. image: {
  34719. source: "./media/characters/sykes/uvula.svg"
  34720. }
  34721. },
  34722. collar: {
  34723. height: math.unit(0.287, "feet"),
  34724. name: "Collar",
  34725. image: {
  34726. source: "./media/characters/sykes/collar.svg"
  34727. }
  34728. },
  34729. tail: {
  34730. height: math.unit(3.8, "feet"),
  34731. name: "Tail",
  34732. image: {
  34733. source: "./media/characters/sykes/tail.svg"
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Shrunken",
  34740. height: math.unit(5, "inches")
  34741. },
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(6 + 4 / 12, "feet"),
  34745. default: true
  34746. },
  34747. {
  34748. name: "Big",
  34749. height: math.unit(15, "feet")
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34755. {
  34756. front: {
  34757. height: math.unit(5 + 8/12, "feet"),
  34758. weight: math.unit(190, "lb"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/oven-otter/front.svg",
  34762. extra: 1809/1740,
  34763. bottom: 181/1990
  34764. }
  34765. },
  34766. back: {
  34767. height: math.unit(5 + 8/12, "feet"),
  34768. weight: math.unit(190, "lb"),
  34769. name: "Back",
  34770. image: {
  34771. source: "./media/characters/oven-otter/back.svg",
  34772. extra: 1709/1635,
  34773. bottom: 118/1827
  34774. }
  34775. },
  34776. hand: {
  34777. height: math.unit(1.07, "feet"),
  34778. name: "Hand",
  34779. image: {
  34780. source: "./media/characters/oven-otter/hand.svg"
  34781. }
  34782. },
  34783. beans: {
  34784. height: math.unit(1.74, "feet"),
  34785. name: "Beans",
  34786. image: {
  34787. source: "./media/characters/oven-otter/beans.svg"
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Micro",
  34794. height: math.unit(0.5, "inches")
  34795. },
  34796. {
  34797. name: "Normal",
  34798. height: math.unit(5 + 8/12, "feet"),
  34799. default: true
  34800. },
  34801. {
  34802. name: "Macro",
  34803. height: math.unit(250, "feet")
  34804. },
  34805. {
  34806. name: "Really High",
  34807. height: math.unit(420, "feet")
  34808. },
  34809. ]
  34810. ))
  34811. characterMakers.push(() => makeCharacter(
  34812. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34813. {
  34814. front: {
  34815. height: math.unit(5, "meters"),
  34816. weight: math.unit(292000000000000, "kg"),
  34817. name: "Front",
  34818. image: {
  34819. source: "./media/characters/devourer/front.svg",
  34820. extra: 1800/1733,
  34821. bottom: 211/2011
  34822. }
  34823. },
  34824. maw: {
  34825. height: math.unit(1.1, "meter"),
  34826. name: "Maw",
  34827. image: {
  34828. source: "./media/characters/devourer/maw.svg"
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Small",
  34835. height: math.unit(3, "meters")
  34836. },
  34837. {
  34838. name: "Large",
  34839. height: math.unit(5, "meters"),
  34840. default: true
  34841. },
  34842. ]
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34846. {
  34847. front: {
  34848. height: math.unit(6, "feet"),
  34849. weight: math.unit(400, "lb"),
  34850. name: "Front",
  34851. image: {
  34852. source: "./media/characters/ellarby/front.svg",
  34853. extra: 1909/1763,
  34854. bottom: 80/1989
  34855. }
  34856. },
  34857. back: {
  34858. height: math.unit(6, "feet"),
  34859. weight: math.unit(400, "lb"),
  34860. name: "Back",
  34861. image: {
  34862. source: "./media/characters/ellarby/back.svg",
  34863. extra: 1914/1784,
  34864. bottom: 172/2086
  34865. }
  34866. },
  34867. },
  34868. [
  34869. {
  34870. name: "Mischief",
  34871. height: math.unit(18, "inches")
  34872. },
  34873. {
  34874. name: "Trouble",
  34875. height: math.unit(12, "feet")
  34876. },
  34877. {
  34878. name: "Havoc",
  34879. height: math.unit(200, "feet"),
  34880. default: true
  34881. },
  34882. {
  34883. name: "Pandemonium",
  34884. height: math.unit(1, "mile")
  34885. },
  34886. {
  34887. name: "Catastrophe",
  34888. height: math.unit(100, "miles")
  34889. },
  34890. ]
  34891. ))
  34892. characterMakers.push(() => makeCharacter(
  34893. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34894. {
  34895. front: {
  34896. height: math.unit(4.7, "meters"),
  34897. weight: math.unit(6500, "kg"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/vex/front.svg",
  34901. extra: 1288/1140,
  34902. bottom: 100/1388
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(4.7, "meters"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34916. {
  34917. normal: {
  34918. height: math.unit(6, "feet"),
  34919. weight: math.unit(350, "lb"),
  34920. name: "Normal",
  34921. image: {
  34922. source: "./media/characters/teshy/normal.svg",
  34923. extra: 1795/1735,
  34924. bottom: 16/1811
  34925. }
  34926. },
  34927. monsterFront: {
  34928. height: math.unit(12, "feet"),
  34929. weight: math.unit(4700, "lb"),
  34930. name: "Monster (Front)",
  34931. image: {
  34932. source: "./media/characters/teshy/monster-front.svg",
  34933. extra: 2042/2034,
  34934. bottom: 128/2170
  34935. }
  34936. },
  34937. monsterSide: {
  34938. height: math.unit(12, "feet"),
  34939. weight: math.unit(4700, "lb"),
  34940. name: "Monster (Side)",
  34941. image: {
  34942. source: "./media/characters/teshy/monster-side.svg",
  34943. extra: 2067/2056,
  34944. bottom: 70/2137
  34945. }
  34946. },
  34947. monsterBack: {
  34948. height: math.unit(12, "feet"),
  34949. weight: math.unit(4700, "lb"),
  34950. name: "Monster (Back)",
  34951. image: {
  34952. source: "./media/characters/teshy/monster-back.svg",
  34953. extra: 1921/1914,
  34954. bottom: 171/2092
  34955. }
  34956. },
  34957. },
  34958. [
  34959. {
  34960. name: "Normal",
  34961. height: math.unit(6, "feet"),
  34962. default: true
  34963. },
  34964. ]
  34965. ))
  34966. characterMakers.push(() => makeCharacter(
  34967. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34968. {
  34969. front: {
  34970. height: math.unit(6, "feet"),
  34971. name: "Front",
  34972. image: {
  34973. source: "./media/characters/ramey/front.svg",
  34974. extra: 790/787,
  34975. bottom: 27/817
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Normal",
  34982. height: math.unit(6, "feet"),
  34983. default: true
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(5 + 5/12, "feet"),
  34992. weight: math.unit(120, "lb"),
  34993. name: "Front",
  34994. image: {
  34995. source: "./media/characters/phirae/front.svg",
  34996. extra: 2491/2436,
  34997. bottom: 38/2529
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Normal",
  35004. height: math.unit(5 + 5/12, "feet"),
  35005. default: true
  35006. },
  35007. ]
  35008. ))
  35009. characterMakers.push(() => makeCharacter(
  35010. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35011. {
  35012. front: {
  35013. height: math.unit(5 + 3/12, "feet"),
  35014. name: "Front",
  35015. image: {
  35016. source: "./media/characters/stagglas/front.svg",
  35017. extra: 962/882,
  35018. bottom: 53/1015
  35019. }
  35020. },
  35021. feral: {
  35022. height: math.unit(335, "cm"),
  35023. name: "Feral",
  35024. image: {
  35025. source: "./media/characters/stagglas/feral.svg",
  35026. extra: 1732/1090,
  35027. bottom: 48/1780
  35028. }
  35029. },
  35030. },
  35031. [
  35032. {
  35033. name: "Normal",
  35034. height: math.unit(5 + 3/12, "feet"),
  35035. default: true
  35036. },
  35037. ]
  35038. ))
  35039. characterMakers.push(() => makeCharacter(
  35040. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35041. {
  35042. front: {
  35043. height: math.unit(5 + 4/12, "feet"),
  35044. weight: math.unit(145, "lb"),
  35045. name: "Front",
  35046. image: {
  35047. source: "./media/characters/starra/front.svg",
  35048. extra: 1790/1691,
  35049. bottom: 91/1881
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Normal",
  35056. height: math.unit(5 + 4/12, "feet"),
  35057. default: true
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35063. {
  35064. front: {
  35065. height: math.unit(2.2, "meters"),
  35066. name: "Front",
  35067. image: {
  35068. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35069. extra: 1194/1005,
  35070. bottom: 25/1219
  35071. }
  35072. },
  35073. },
  35074. [
  35075. {
  35076. name: "Normal",
  35077. height: math.unit(2.2, "meters"),
  35078. default: true
  35079. },
  35080. ]
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35084. {
  35085. side: {
  35086. height: math.unit(8 + 2/12, "feet"),
  35087. weight: math.unit(1240, "lb"),
  35088. name: "Side",
  35089. image: {
  35090. source: "./media/characters/mika-valentine/side.svg",
  35091. extra: 2670/2501,
  35092. bottom: 250/2920
  35093. }
  35094. },
  35095. },
  35096. [
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(8 + 2/12, "feet"),
  35100. default: true
  35101. },
  35102. ]
  35103. ))
  35104. characterMakers.push(() => makeCharacter(
  35105. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35106. {
  35107. front: {
  35108. height: math.unit(7 + 2/12, "feet"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/xoltol/front.svg",
  35112. extra: 2212/2124,
  35113. bottom: 84/2296
  35114. }
  35115. },
  35116. side: {
  35117. height: math.unit(7 + 2/12, "feet"),
  35118. name: "Side",
  35119. image: {
  35120. source: "./media/characters/xoltol/side.svg",
  35121. extra: 2273/2197,
  35122. bottom: 26/2299
  35123. }
  35124. },
  35125. hand: {
  35126. height: math.unit(2.5, "feet"),
  35127. name: "Hand",
  35128. image: {
  35129. source: "./media/characters/xoltol/hand.svg"
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Small-ish",
  35136. height: math.unit(5 + 11/12, "feet")
  35137. },
  35138. {
  35139. name: "Normal",
  35140. height: math.unit(7 + 2/12, "feet")
  35141. },
  35142. {
  35143. name: "\"Macro\"",
  35144. height: math.unit(14 + 9/12, "feet"),
  35145. default: true
  35146. },
  35147. {
  35148. name: "Alternate Height",
  35149. height: math.unit(20, "feet")
  35150. },
  35151. {
  35152. name: "Actually Macro",
  35153. height: math.unit(100, "feet")
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35159. {
  35160. front: {
  35161. height: math.unit(5 + 2/12, "feet"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/kotetsu-redwood/front.svg",
  35165. extra: 1053/942,
  35166. bottom: 60/1113
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Normal",
  35173. height: math.unit(5 + 2/12, "feet"),
  35174. default: true
  35175. },
  35176. ]
  35177. ))
  35178. characterMakers.push(() => makeCharacter(
  35179. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35180. {
  35181. front: {
  35182. height: math.unit(2.4, "meters"),
  35183. weight: math.unit(125, "kg"),
  35184. name: "Front",
  35185. image: {
  35186. source: "./media/characters/lilith/front.svg",
  35187. extra: 1590/1513,
  35188. bottom: 203/1793
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Humanoid",
  35195. height: math.unit(2.4, "meters")
  35196. },
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(6, "meters"),
  35200. default: true
  35201. },
  35202. {
  35203. name: "Largest",
  35204. height: math.unit(55, "meters")
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35210. {
  35211. front: {
  35212. height: math.unit(8 + 4/12, "feet"),
  35213. weight: math.unit(535, "lb"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/beh'kah-bolger/front.svg",
  35217. extra: 1660/1603,
  35218. bottom: 37/1697
  35219. }
  35220. },
  35221. },
  35222. [
  35223. {
  35224. name: "Normal",
  35225. height: math.unit(8 + 4/12, "feet"),
  35226. default: true
  35227. },
  35228. {
  35229. name: "Kaiju",
  35230. height: math.unit(250, "feet")
  35231. },
  35232. {
  35233. name: "Still Growing",
  35234. height: math.unit(10, "miles")
  35235. },
  35236. {
  35237. name: "Continental",
  35238. height: math.unit(5000, "miles")
  35239. },
  35240. {
  35241. name: "Final Form",
  35242. height: math.unit(2500000, "miles")
  35243. },
  35244. ]
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35248. {
  35249. front: {
  35250. height: math.unit(7 + 2/12, "feet"),
  35251. weight: math.unit(230, "kg"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/tatyana-milewska/front.svg",
  35255. extra: 1199/1150,
  35256. bottom: 86/1285
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(7 + 2/12, "feet"),
  35264. default: true
  35265. },
  35266. {
  35267. name: "Big",
  35268. height: math.unit(12, "feet")
  35269. },
  35270. {
  35271. name: "Minimacro",
  35272. height: math.unit(20, "feet")
  35273. },
  35274. {
  35275. name: "Macro",
  35276. height: math.unit(120, "feet")
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35282. {
  35283. front: {
  35284. height: math.unit(7 + 8/12, "feet"),
  35285. weight: math.unit(152, "kg"),
  35286. name: "Front",
  35287. image: {
  35288. source: "./media/characters/helen-arri/front.svg",
  35289. extra: 440/423,
  35290. bottom: 14/454
  35291. }
  35292. },
  35293. back: {
  35294. height: math.unit(7 + 8/12, "feet"),
  35295. weight: math.unit(152, "kg"),
  35296. name: "Back",
  35297. image: {
  35298. source: "./media/characters/helen-arri/back.svg",
  35299. extra: 443/426,
  35300. bottom: 8/451
  35301. }
  35302. },
  35303. },
  35304. [
  35305. {
  35306. name: "Normal",
  35307. height: math.unit(7 + 8/12, "feet"),
  35308. default: true
  35309. },
  35310. {
  35311. name: "Big",
  35312. height: math.unit(14, "feet")
  35313. },
  35314. {
  35315. name: "Minimacro",
  35316. height: math.unit(24, "feet")
  35317. },
  35318. {
  35319. name: "Macro",
  35320. height: math.unit(140, "feet")
  35321. },
  35322. ]
  35323. ))
  35324. characterMakers.push(() => makeCharacter(
  35325. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35326. {
  35327. front: {
  35328. height: math.unit(6, "meters"),
  35329. name: "Front",
  35330. image: {
  35331. source: "./media/characters/ehanu-rehu/front.svg",
  35332. extra: 1800/1800,
  35333. bottom: 59/1859
  35334. }
  35335. },
  35336. },
  35337. [
  35338. {
  35339. name: "Normal",
  35340. height: math.unit(6, "meters"),
  35341. default: true
  35342. },
  35343. ]
  35344. ))
  35345. characterMakers.push(() => makeCharacter(
  35346. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35347. {
  35348. front: {
  35349. height: math.unit(7 + 3/12, "feet"),
  35350. name: "Front",
  35351. image: {
  35352. source: "./media/characters/renholder/front.svg",
  35353. extra: 3096/2960,
  35354. bottom: 250/3346
  35355. }
  35356. },
  35357. },
  35358. [
  35359. {
  35360. name: "Normal Bat",
  35361. height: math.unit(7 + 3/12, "feet"),
  35362. default: true
  35363. },
  35364. {
  35365. name: "Slightly Tall Bat",
  35366. height: math.unit(100, "feet")
  35367. },
  35368. {
  35369. name: "Big Bat",
  35370. height: math.unit(1000, "feet")
  35371. },
  35372. {
  35373. name: "City-Sized Bat",
  35374. height: math.unit(200000, "feet")
  35375. },
  35376. {
  35377. name: "Bigger Bat",
  35378. height: math.unit(10000, "miles")
  35379. },
  35380. {
  35381. name: "Solar Sized Bat",
  35382. height: math.unit(100, "AU")
  35383. },
  35384. {
  35385. name: "Galactic Bat",
  35386. height: math.unit(200000, "lightyears")
  35387. },
  35388. {
  35389. name: "Universally Known Bat",
  35390. height: math.unit(1, "universe")
  35391. },
  35392. ]
  35393. ))
  35394. characterMakers.push(() => makeCharacter(
  35395. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35396. {
  35397. front: {
  35398. height: math.unit(6 + 11/12, "feet"),
  35399. weight: math.unit(250, "lb"),
  35400. name: "Front",
  35401. image: {
  35402. source: "./media/characters/cookiecat/front.svg",
  35403. extra: 893/827,
  35404. bottom: 14/907
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Micro",
  35411. height: math.unit(3, "inches")
  35412. },
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(6 + 11/12, "feet"),
  35416. default: true
  35417. },
  35418. {
  35419. name: "Macro",
  35420. height: math.unit(100, "feet")
  35421. },
  35422. {
  35423. name: "Macro+",
  35424. height: math.unit(404, "feet")
  35425. },
  35426. {
  35427. name: "Megamacro",
  35428. height: math.unit(165, "miles")
  35429. },
  35430. {
  35431. name: "Planetary",
  35432. height: math.unit(4600, "miles")
  35433. },
  35434. ]
  35435. ))
  35436. characterMakers.push(() => makeCharacter(
  35437. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35438. {
  35439. front: {
  35440. height: math.unit(10 + 3/12, "feet"),
  35441. weight: math.unit(1500, "lb"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/tux-kusanagi/front.svg",
  35445. extra: 944/840,
  35446. bottom: 39/983
  35447. }
  35448. },
  35449. back: {
  35450. height: math.unit(10 + 3/12, "feet"),
  35451. weight: math.unit(1500, "lb"),
  35452. name: "Back",
  35453. image: {
  35454. source: "./media/characters/tux-kusanagi/back.svg",
  35455. extra: 941/842,
  35456. bottom: 28/969
  35457. }
  35458. },
  35459. rump: {
  35460. height: math.unit(5.25, "feet"),
  35461. name: "Rump",
  35462. image: {
  35463. source: "./media/characters/tux-kusanagi/rump.svg"
  35464. }
  35465. },
  35466. beak: {
  35467. height: math.unit(1.54, "feet"),
  35468. name: "Beak",
  35469. image: {
  35470. source: "./media/characters/tux-kusanagi/beak.svg"
  35471. }
  35472. },
  35473. },
  35474. [
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(10 + 3/12, "feet"),
  35478. default: true
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(58, "feet"),
  35487. weight: math.unit(200, "tons"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/uzarmazari/front.svg",
  35491. extra: 1575/1455,
  35492. bottom: 152/1727
  35493. }
  35494. },
  35495. back: {
  35496. height: math.unit(58, "feet"),
  35497. weight: math.unit(200, "tons"),
  35498. name: "Back",
  35499. image: {
  35500. source: "./media/characters/uzarmazari/back.svg",
  35501. extra: 1585/1510,
  35502. bottom: 157/1742
  35503. }
  35504. },
  35505. head: {
  35506. height: math.unit(26, "feet"),
  35507. name: "Head",
  35508. image: {
  35509. source: "./media/characters/uzarmazari/head.svg"
  35510. }
  35511. },
  35512. },
  35513. [
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(58, "feet"),
  35517. default: true
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35523. {
  35524. side: {
  35525. height: math.unit(15, "feet"),
  35526. name: "Side",
  35527. image: {
  35528. source: "./media/characters/akitu/side.svg",
  35529. extra: 1421/1321,
  35530. bottom: 157/1578
  35531. }
  35532. },
  35533. front: {
  35534. height: math.unit(15, "feet"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/akitu/front.svg",
  35538. extra: 1435/1326,
  35539. bottom: 232/1667
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(15, "feet"),
  35547. default: true
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35553. {
  35554. front: {
  35555. height: math.unit(10 + 8/12, "feet"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/azalie-croixland/front.svg",
  35559. extra: 1972/1856,
  35560. bottom: 31/2003
  35561. }
  35562. },
  35563. },
  35564. [
  35565. {
  35566. name: "Original Height",
  35567. height: math.unit(5 + 4/12, "feet")
  35568. },
  35569. {
  35570. name: "Normal Height",
  35571. height: math.unit(10 + 8/12, "feet"),
  35572. default: true
  35573. },
  35574. ]
  35575. ))
  35576. characterMakers.push(() => makeCharacter(
  35577. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35578. {
  35579. side: {
  35580. height: math.unit(7 + 1/12, "feet"),
  35581. weight: math.unit(245, "lb"),
  35582. name: "Side",
  35583. image: {
  35584. source: "./media/characters/kavus-kazian/side.svg",
  35585. extra: 349/342,
  35586. bottom: 15/364
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(7 + 1/12, "feet"),
  35594. default: true
  35595. },
  35596. ]
  35597. ))
  35598. characterMakers.push(() => makeCharacter(
  35599. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35600. {
  35601. normalFront: {
  35602. height: math.unit(5 + 11/12, "feet"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/moonlight-rose/normal-front.svg",
  35606. extra: 1980/1825,
  35607. bottom: 18/1998
  35608. },
  35609. form: "normal",
  35610. default: true
  35611. },
  35612. normalBack: {
  35613. height: math.unit(5 + 11/12, "feet"),
  35614. name: "Back",
  35615. image: {
  35616. source: "./media/characters/moonlight-rose/normal-back.svg",
  35617. extra: 2010/1839,
  35618. bottom: 10/2020
  35619. },
  35620. form: "normal"
  35621. },
  35622. demonFront: {
  35623. height: math.unit(1.5, "earths"),
  35624. name: "Front",
  35625. image: {
  35626. source: "./media/characters/moonlight-rose/demon.svg",
  35627. extra: 1400/1294,
  35628. bottom: 45/1445
  35629. },
  35630. form: "demon",
  35631. default: true
  35632. },
  35633. terraFront: {
  35634. height: math.unit(1.5, "earths"),
  35635. name: "Front",
  35636. image: {
  35637. source: "./media/characters/moonlight-rose/terra.svg"
  35638. },
  35639. form: "terra",
  35640. default: true
  35641. },
  35642. jupiterFront: {
  35643. height: math.unit(69911*2, "km"),
  35644. name: "Front",
  35645. image: {
  35646. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35647. extra: 1367/1286,
  35648. bottom: 55/1422
  35649. },
  35650. form: "jupiter",
  35651. default: true
  35652. },
  35653. neptuneFront: {
  35654. height: math.unit(24622*2, "feet"),
  35655. name: "Front",
  35656. image: {
  35657. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35658. extra: 1851/1712,
  35659. bottom: 0/1851
  35660. },
  35661. form: "neptune",
  35662. default: true
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "\"Natural\" Height",
  35668. height: math.unit(5 + 11/12, "feet"),
  35669. form: "normal"
  35670. },
  35671. {
  35672. name: "Smallest comfortable size",
  35673. height: math.unit(40, "meters"),
  35674. form: "normal"
  35675. },
  35676. {
  35677. name: "Common size",
  35678. height: math.unit(50, "km"),
  35679. form: "normal",
  35680. default: true
  35681. },
  35682. {
  35683. name: "Normal",
  35684. height: math.unit(1.5, "earths"),
  35685. form: "demon",
  35686. default: true
  35687. },
  35688. {
  35689. name: "Universal",
  35690. height: math.unit(15, "universes"),
  35691. form: "demon"
  35692. },
  35693. {
  35694. name: "Earth",
  35695. height: math.unit(1.5, "earths"),
  35696. form: "terra",
  35697. default: true
  35698. },
  35699. {
  35700. name: "Super Earth",
  35701. height: math.unit(67.5, "earths"),
  35702. form: "terra"
  35703. },
  35704. {
  35705. name: "Doesn't fit in a solar system...",
  35706. height: math.unit(1, "galaxy"),
  35707. form: "terra"
  35708. },
  35709. {
  35710. name: "Saturn",
  35711. height: math.unit(58232*2, "km"),
  35712. form: "jupiter"
  35713. },
  35714. {
  35715. name: "Jupiter",
  35716. height: math.unit(69911*2, "km"),
  35717. form: "jupiter",
  35718. default: true
  35719. },
  35720. {
  35721. name: "HD 100546 b",
  35722. height: math.unit(482938, "km"),
  35723. form: "jupiter"
  35724. },
  35725. {
  35726. name: "Enceladus",
  35727. height: math.unit(513*2, "km"),
  35728. form: "neptune"
  35729. },
  35730. {
  35731. name: "Europe",
  35732. height: math.unit(1560*2, "km"),
  35733. form: "neptune"
  35734. },
  35735. {
  35736. name: "Neptune",
  35737. height: math.unit(24622*2, "km"),
  35738. form: "neptune",
  35739. default: true
  35740. },
  35741. {
  35742. name: "CoRoT-9b",
  35743. height: math.unit(75067*2, "km"),
  35744. form: "neptune"
  35745. },
  35746. ],
  35747. {
  35748. "normal": {
  35749. name: "Normal",
  35750. default: true
  35751. },
  35752. "demon": {
  35753. name: "Demon"
  35754. },
  35755. "terra": {
  35756. name: "Terra"
  35757. },
  35758. "jupiter": {
  35759. name: "Jupiter"
  35760. },
  35761. "neptune": {
  35762. name: "Neptune"
  35763. }
  35764. }
  35765. ))
  35766. characterMakers.push(() => makeCharacter(
  35767. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35768. {
  35769. front: {
  35770. height: math.unit(16, "feet"),
  35771. weight: math.unit(610, "kg"),
  35772. name: "Front",
  35773. image: {
  35774. source: "./media/characters/huckle/front.svg",
  35775. extra: 1731/1625,
  35776. bottom: 33/1764
  35777. }
  35778. },
  35779. back: {
  35780. height: math.unit(16, "feet"),
  35781. weight: math.unit(610, "kg"),
  35782. name: "Back",
  35783. image: {
  35784. source: "./media/characters/huckle/back.svg",
  35785. extra: 1738/1651,
  35786. bottom: 37/1775
  35787. }
  35788. },
  35789. laughing: {
  35790. height: math.unit(3.75, "feet"),
  35791. name: "Laughing",
  35792. image: {
  35793. source: "./media/characters/huckle/laughing.svg"
  35794. }
  35795. },
  35796. angry: {
  35797. height: math.unit(4.15, "feet"),
  35798. name: "Angry",
  35799. image: {
  35800. source: "./media/characters/huckle/angry.svg"
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(16, "feet"),
  35808. default: true
  35809. },
  35810. {
  35811. name: "Mini Macro",
  35812. height: math.unit(463, "feet")
  35813. },
  35814. {
  35815. name: "Macro",
  35816. height: math.unit(1680, "meters")
  35817. },
  35818. {
  35819. name: "Mega Macro",
  35820. height: math.unit(175, "km")
  35821. },
  35822. {
  35823. name: "Terra Macro",
  35824. height: math.unit(32, "gigameters")
  35825. },
  35826. {
  35827. name: "Multiverse+",
  35828. height: math.unit(2.56e23, "yottameters")
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35834. {
  35835. front: {
  35836. height: math.unit(6 + 9/12, "feet"),
  35837. weight: math.unit(280, "lb"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/candy/front.svg",
  35841. extra: 234/217,
  35842. bottom: 11/245
  35843. }
  35844. },
  35845. },
  35846. [
  35847. {
  35848. name: "Really Small",
  35849. height: math.unit(0.1, "nm")
  35850. },
  35851. {
  35852. name: "Micro",
  35853. height: math.unit(2, "inches")
  35854. },
  35855. {
  35856. name: "Normal",
  35857. height: math.unit(6 + 9/12, "feet"),
  35858. default: true
  35859. },
  35860. {
  35861. name: "Small Macro",
  35862. height: math.unit(69, "feet")
  35863. },
  35864. {
  35865. name: "Macro",
  35866. height: math.unit(160, "feet")
  35867. },
  35868. {
  35869. name: "Megamacro",
  35870. height: math.unit(22000, "miles")
  35871. },
  35872. {
  35873. name: "Gigamacro",
  35874. height: math.unit(50000, "miles")
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35880. {
  35881. front: {
  35882. height: math.unit(4, "feet"),
  35883. weight: math.unit(90, "lb"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/joey-mcdonald/front.svg",
  35887. extra: 1059/852,
  35888. bottom: 33/1092
  35889. }
  35890. },
  35891. back: {
  35892. height: math.unit(4, "feet"),
  35893. weight: math.unit(90, "lb"),
  35894. name: "Back",
  35895. image: {
  35896. source: "./media/characters/joey-mcdonald/back.svg",
  35897. extra: 1077/879,
  35898. bottom: 5/1082
  35899. }
  35900. },
  35901. frontKobold: {
  35902. height: math.unit(4, "feet"),
  35903. weight: math.unit(100, "lb"),
  35904. name: "Front-kobold",
  35905. image: {
  35906. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35907. extra: 1480/1367,
  35908. bottom: 0/1480
  35909. }
  35910. },
  35911. backKobold: {
  35912. height: math.unit(4, "feet"),
  35913. weight: math.unit(100, "lb"),
  35914. name: "Back-kobold",
  35915. image: {
  35916. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35917. extra: 1449/1361,
  35918. bottom: 0/1449
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(4, "feet"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35932. {
  35933. front: {
  35934. height: math.unit(12 + 6/12, "feet"),
  35935. name: "Front",
  35936. image: {
  35937. source: "./media/characters/kass-lockheed/front.svg",
  35938. extra: 354/343,
  35939. bottom: 9/363
  35940. }
  35941. },
  35942. back: {
  35943. height: math.unit(12 + 6/12, "feet"),
  35944. name: "Back",
  35945. image: {
  35946. source: "./media/characters/kass-lockheed/back.svg",
  35947. extra: 364/352,
  35948. bottom: 3/367
  35949. }
  35950. },
  35951. dick: {
  35952. height: math.unit(3.12, "feet"),
  35953. name: "Dick",
  35954. image: {
  35955. source: "./media/characters/kass-lockheed/dick.svg"
  35956. }
  35957. },
  35958. head: {
  35959. height: math.unit(2.6, "feet"),
  35960. name: "Head",
  35961. image: {
  35962. source: "./media/characters/kass-lockheed/head.svg"
  35963. }
  35964. },
  35965. bleh: {
  35966. height: math.unit(2.85, "feet"),
  35967. name: "Bleh",
  35968. image: {
  35969. source: "./media/characters/kass-lockheed/bleh.svg"
  35970. }
  35971. },
  35972. smug: {
  35973. height: math.unit(2.85, "feet"),
  35974. name: "Smug",
  35975. image: {
  35976. source: "./media/characters/kass-lockheed/smug.svg"
  35977. }
  35978. },
  35979. },
  35980. [
  35981. {
  35982. name: "Normal",
  35983. height: math.unit(12 + 6/12, "feet"),
  35984. default: true
  35985. },
  35986. ]
  35987. ))
  35988. characterMakers.push(() => makeCharacter(
  35989. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35990. {
  35991. front: {
  35992. height: math.unit(6 + 2/12, "feet"),
  35993. name: "Front",
  35994. image: {
  35995. source: "./media/characters/taylor/front.svg",
  35996. extra: 639/495,
  35997. bottom: 12/651
  35998. }
  35999. },
  36000. },
  36001. [
  36002. {
  36003. name: "Normal",
  36004. height: math.unit(6 + 2/12, "feet"),
  36005. default: true
  36006. },
  36007. {
  36008. name: "Big",
  36009. height: math.unit(15, "feet")
  36010. },
  36011. {
  36012. name: "Lorg",
  36013. height: math.unit(80, "feet")
  36014. },
  36015. {
  36016. name: "Too Lorg",
  36017. height: math.unit(120, "feet")
  36018. },
  36019. ]
  36020. ))
  36021. characterMakers.push(() => makeCharacter(
  36022. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36023. {
  36024. front: {
  36025. height: math.unit(15, "feet"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/kaizer/front.svg",
  36029. extra: 1612/1436,
  36030. bottom: 43/1655
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Normal",
  36037. height: math.unit(15, "feet"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(2, "feet"),
  36047. weight: math.unit(30, "lb"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/sandy/front.svg",
  36051. extra: 1439/1307,
  36052. bottom: 194/1633
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(2, "feet"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(3, "feet"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/mellvi/front.svg",
  36072. extra: 1831/1630,
  36073. bottom: 58/1889
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Normal",
  36080. height: math.unit(3, "feet"),
  36081. default: true
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36087. {
  36088. front: {
  36089. height: math.unit(5 + 11/12, "feet"),
  36090. weight: math.unit(200, "lb"),
  36091. name: "Front",
  36092. image: {
  36093. source: "./media/characters/shirou/front.svg",
  36094. extra: 2491/2383,
  36095. bottom: 189/2680
  36096. }
  36097. },
  36098. back: {
  36099. height: math.unit(5 + 11/12, "feet"),
  36100. weight: math.unit(200, "lb"),
  36101. name: "Back",
  36102. image: {
  36103. source: "./media/characters/shirou/back.svg",
  36104. extra: 2554/2450,
  36105. bottom: 76/2630
  36106. }
  36107. },
  36108. },
  36109. [
  36110. {
  36111. name: "Normal",
  36112. height: math.unit(5 + 11/12, "feet"),
  36113. default: true
  36114. },
  36115. ]
  36116. ))
  36117. characterMakers.push(() => makeCharacter(
  36118. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36119. {
  36120. front: {
  36121. height: math.unit(6 + 3/12, "feet"),
  36122. weight: math.unit(177, "lb"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/noryu/front.svg",
  36126. extra: 973/885,
  36127. bottom: 10/983
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(6 + 3/12, "feet"),
  36135. default: true
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36141. {
  36142. front: {
  36143. height: math.unit(5 + 6/12, "feet"),
  36144. weight: math.unit(170, "lb"),
  36145. name: "Front",
  36146. image: {
  36147. source: "./media/characters/mevolas-rubenido/front.svg",
  36148. extra: 2109/1901,
  36149. bottom: 96/2205
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Normal",
  36156. height: math.unit(5 + 6/12, "feet"),
  36157. default: true
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(100, "feet"),
  36166. name: "Front",
  36167. image: {
  36168. source: "./media/characters/dee/front.svg",
  36169. extra: 2153/2036,
  36170. bottom: 59/2212
  36171. }
  36172. },
  36173. back: {
  36174. height: math.unit(100, "feet"),
  36175. name: "Back",
  36176. image: {
  36177. source: "./media/characters/dee/back.svg",
  36178. extra: 2183/2058,
  36179. bottom: 75/2258
  36180. }
  36181. },
  36182. foot: {
  36183. height: math.unit(19.43, "feet"),
  36184. name: "Foot",
  36185. image: {
  36186. source: "./media/characters/dee/foot.svg"
  36187. }
  36188. },
  36189. hoof: {
  36190. height: math.unit(20.6, "feet"),
  36191. name: "Hoof",
  36192. image: {
  36193. source: "./media/characters/dee/hoof.svg"
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Macro",
  36200. height: math.unit(100, "feet"),
  36201. default: true
  36202. },
  36203. ]
  36204. ))
  36205. characterMakers.push(() => makeCharacter(
  36206. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36207. {
  36208. front: {
  36209. height: math.unit(5 + 6/12, "feet"),
  36210. name: "Front",
  36211. image: {
  36212. source: "./media/characters/teh/front.svg",
  36213. extra: 1002/847,
  36214. bottom: 62/1064
  36215. }
  36216. },
  36217. },
  36218. [
  36219. {
  36220. name: "Normal",
  36221. height: math.unit(5 + 6/12, "feet"),
  36222. default: true
  36223. },
  36224. ]
  36225. ))
  36226. characterMakers.push(() => makeCharacter(
  36227. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36228. {
  36229. side: {
  36230. height: math.unit(6 + 1/12, "feet"),
  36231. weight: math.unit(204, "lb"),
  36232. name: "Side",
  36233. image: {
  36234. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36235. extra: 974/775,
  36236. bottom: 169/1143
  36237. }
  36238. },
  36239. sitting: {
  36240. height: math.unit(6 + 2/12, "feet"),
  36241. weight: math.unit(204, "lb"),
  36242. name: "Sitting",
  36243. image: {
  36244. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36245. extra: 1175/964,
  36246. bottom: 378/1553
  36247. }
  36248. },
  36249. },
  36250. [
  36251. {
  36252. name: "Normal",
  36253. height: math.unit(6 + 1/12, "feet"),
  36254. default: true
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36260. {
  36261. front: {
  36262. height: math.unit(6, "inches"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/tululi/front.svg",
  36266. extra: 1997/1876,
  36267. bottom: 20/2017
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(6, "inches"),
  36275. default: true
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36281. {
  36282. front: {
  36283. height: math.unit(4 + 1/12, "feet"),
  36284. name: "Front",
  36285. image: {
  36286. source: "./media/characters/star/front.svg",
  36287. extra: 1493/1189,
  36288. bottom: 48/1541
  36289. }
  36290. },
  36291. },
  36292. [
  36293. {
  36294. name: "Normal",
  36295. height: math.unit(4 + 1/12, "feet"),
  36296. default: true
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36302. {
  36303. front: {
  36304. height: math.unit(6 + 3/12, "feet"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/comet/front.svg",
  36308. extra: 1681/1462,
  36309. bottom: 26/1707
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(6 + 3/12, "feet"),
  36317. default: true
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36323. {
  36324. front: {
  36325. height: math.unit(950, "feet"),
  36326. name: "Front",
  36327. image: {
  36328. source: "./media/characters/vortex/front.svg",
  36329. extra: 1497/1434,
  36330. bottom: 56/1553
  36331. }
  36332. },
  36333. maw: {
  36334. height: math.unit(285, "feet"),
  36335. name: "Maw",
  36336. image: {
  36337. source: "./media/characters/vortex/maw.svg"
  36338. }
  36339. },
  36340. },
  36341. [
  36342. {
  36343. name: "Macro",
  36344. height: math.unit(950, "feet"),
  36345. default: true
  36346. },
  36347. ]
  36348. ))
  36349. characterMakers.push(() => makeCharacter(
  36350. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36351. {
  36352. front: {
  36353. height: math.unit(600, "feet"),
  36354. weight: math.unit(0.02, "grams"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/doodle/front.svg",
  36358. extra: 1578/1413,
  36359. bottom: 37/1615
  36360. }
  36361. },
  36362. },
  36363. [
  36364. {
  36365. name: "Macro",
  36366. height: math.unit(600, "feet"),
  36367. default: true
  36368. },
  36369. ]
  36370. ))
  36371. characterMakers.push(() => makeCharacter(
  36372. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36373. {
  36374. front: {
  36375. height: math.unit(6 + 6/12, "feet"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/jai/front.svg",
  36379. extra: 1645/1534,
  36380. bottom: 115/1760
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(6 + 6/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(6 + 8/12, "feet"),
  36397. name: "Front",
  36398. image: {
  36399. source: "./media/characters/pixel/front.svg",
  36400. extra: 1900/1735,
  36401. bottom: 63/1963
  36402. }
  36403. },
  36404. },
  36405. [
  36406. {
  36407. name: "Normal",
  36408. height: math.unit(6 + 8/12, "feet"),
  36409. default: true
  36410. },
  36411. ]
  36412. ))
  36413. characterMakers.push(() => makeCharacter(
  36414. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36415. {
  36416. back: {
  36417. height: math.unit(4 + 1/12, "feet"),
  36418. weight: math.unit(75, "lb"),
  36419. name: "Back",
  36420. image: {
  36421. source: "./media/characters/rhett/back.svg",
  36422. extra: 930/878,
  36423. bottom: 25/955
  36424. }
  36425. },
  36426. front: {
  36427. height: math.unit(4 + 1/12, "feet"),
  36428. weight: math.unit(75, "lb"),
  36429. name: "Front",
  36430. image: {
  36431. source: "./media/characters/rhett/front.svg",
  36432. extra: 1682/1586,
  36433. bottom: 92/1774
  36434. }
  36435. },
  36436. },
  36437. [
  36438. {
  36439. name: "Micro",
  36440. height: math.unit(8, "inches")
  36441. },
  36442. {
  36443. name: "Tiny",
  36444. height: math.unit(2, "feet")
  36445. },
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(4 + 1/12, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36455. {
  36456. front: {
  36457. height: math.unit(3 + 3/12, "feet"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/penny/front.svg",
  36461. extra: 1406/1311,
  36462. bottom: 26/1432
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(3 + 3/12, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(4 + 11/12, "feet"),
  36479. name: "Front",
  36480. image: {
  36481. source: "./media/characters/monty/front.svg",
  36482. extra: 1479/1209,
  36483. bottom: 0/1479
  36484. }
  36485. },
  36486. },
  36487. [
  36488. {
  36489. name: "Normal",
  36490. height: math.unit(4 + 11/12, "feet"),
  36491. default: true
  36492. },
  36493. ]
  36494. ))
  36495. characterMakers.push(() => makeCharacter(
  36496. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36497. {
  36498. front: {
  36499. height: math.unit(8 + 4/12, "feet"),
  36500. name: "Front",
  36501. image: {
  36502. source: "./media/characters/sterling/front.svg",
  36503. extra: 1420/1236,
  36504. bottom: 27/1447
  36505. }
  36506. },
  36507. },
  36508. [
  36509. {
  36510. name: "Normal",
  36511. height: math.unit(8 + 4/12, "feet"),
  36512. default: true
  36513. },
  36514. ]
  36515. ))
  36516. characterMakers.push(() => makeCharacter(
  36517. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36518. {
  36519. front: {
  36520. height: math.unit(15, "feet"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/marble/front.svg",
  36524. extra: 973/937,
  36525. bottom: 32/1005
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(15, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36539. {
  36540. front: {
  36541. height: math.unit(3, "inches"),
  36542. name: "Front",
  36543. image: {
  36544. source: "./media/characters/powder/front.svg",
  36545. extra: 1504/1334,
  36546. bottom: 518/2022
  36547. }
  36548. },
  36549. },
  36550. [
  36551. {
  36552. name: "Normal",
  36553. height: math.unit(3, "inches"),
  36554. default: true
  36555. },
  36556. ]
  36557. ))
  36558. characterMakers.push(() => makeCharacter(
  36559. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36560. {
  36561. front: {
  36562. height: math.unit(4 + 5/12, "feet"),
  36563. name: "Front",
  36564. image: {
  36565. source: "./media/characters/joey-raccoon/front.svg",
  36566. extra: 1273/1197,
  36567. bottom: 0/1273
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Normal",
  36574. height: math.unit(4 + 5/12, "feet"),
  36575. default: true
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36581. {
  36582. front: {
  36583. height: math.unit(8 + 4/12, "feet"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/vick/front.svg",
  36587. extra: 2187/2118,
  36588. bottom: 47/2234
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(8 + 4/12, "feet"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36602. {
  36603. front: {
  36604. height: math.unit(5 + 5/12, "feet"),
  36605. name: "Front",
  36606. image: {
  36607. source: "./media/characters/mitsy/front.svg",
  36608. extra: 1842/1695,
  36609. bottom: 0/1842
  36610. }
  36611. },
  36612. },
  36613. [
  36614. {
  36615. name: "Normal",
  36616. height: math.unit(5 + 5/12, "feet"),
  36617. default: true
  36618. },
  36619. ]
  36620. ))
  36621. characterMakers.push(() => makeCharacter(
  36622. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36623. {
  36624. front: {
  36625. height: math.unit(6 + 3/12, "feet"),
  36626. name: "Front",
  36627. image: {
  36628. source: "./media/characters/silvy/front.svg",
  36629. extra: 1995/1836,
  36630. bottom: 225/2220
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(6 + 3/12, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(3 + 8/12, "feet"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/rodney/front.svg",
  36650. extra: 1956/1747,
  36651. bottom: 31/1987
  36652. }
  36653. },
  36654. frontDressed: {
  36655. height: math.unit(2.9, "feet"),
  36656. name: "Front (Dressed)",
  36657. image: {
  36658. source: "./media/characters/rodney/front-dressed.svg",
  36659. extra: 1382/1241,
  36660. bottom: 385/1767
  36661. }
  36662. },
  36663. },
  36664. [
  36665. {
  36666. name: "Normal",
  36667. height: math.unit(3 + 8/12, "feet"),
  36668. default: true
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(5 + 9/12, "feet"),
  36677. weight: math.unit(194, "lbs"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/zakail-sudekai/front.svg",
  36681. extra: 2696/2533,
  36682. bottom: 248/2944
  36683. }
  36684. },
  36685. maw: {
  36686. height: math.unit(1.35, "feet"),
  36687. name: "Maw",
  36688. image: {
  36689. source: "./media/characters/zakail-sudekai/maw.svg"
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(5 + 9/12, "feet"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36703. {
  36704. front: {
  36705. height: math.unit(8 + 4/12, "feet"),
  36706. weight: math.unit(1200, "lb"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/eleanor/front.svg",
  36710. extra: 1226/1192,
  36711. bottom: 52/1278
  36712. }
  36713. },
  36714. back: {
  36715. height: math.unit(8 + 4/12, "feet"),
  36716. weight: math.unit(1200, "lb"),
  36717. name: "Back",
  36718. image: {
  36719. source: "./media/characters/eleanor/back.svg",
  36720. extra: 1242/1184,
  36721. bottom: 60/1302
  36722. }
  36723. },
  36724. head: {
  36725. height: math.unit(2.62, "feet"),
  36726. name: "Head",
  36727. image: {
  36728. source: "./media/characters/eleanor/head.svg"
  36729. }
  36730. },
  36731. },
  36732. [
  36733. {
  36734. name: "Normal",
  36735. height: math.unit(8 + 4/12, "feet"),
  36736. default: true
  36737. },
  36738. ]
  36739. ))
  36740. characterMakers.push(() => makeCharacter(
  36741. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36742. {
  36743. front: {
  36744. height: math.unit(8 + 4/12, "feet"),
  36745. weight: math.unit(750, "lb"),
  36746. name: "Front",
  36747. image: {
  36748. source: "./media/characters/tanya/front.svg",
  36749. extra: 1749/1615,
  36750. bottom: 33/1782
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal",
  36757. height: math.unit(8 + 4/12, "feet"),
  36758. default: true
  36759. },
  36760. ]
  36761. ))
  36762. characterMakers.push(() => makeCharacter(
  36763. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36764. {
  36765. front: {
  36766. height: math.unit(5, "feet"),
  36767. weight: math.unit(225, "lb"),
  36768. name: "Front",
  36769. image: {
  36770. source: "./media/characters/cindy/front.svg",
  36771. extra: 1320/1250,
  36772. bottom: 42/1362
  36773. }
  36774. },
  36775. frontDressed: {
  36776. height: math.unit(5, "feet"),
  36777. weight: math.unit(225, "lb"),
  36778. name: "Front (Dressed)",
  36779. image: {
  36780. source: "./media/characters/cindy/front-dressed.svg",
  36781. extra: 1320/1250,
  36782. bottom: 42/1362
  36783. }
  36784. },
  36785. back: {
  36786. height: math.unit(5, "feet"),
  36787. weight: math.unit(225, "lb"),
  36788. name: "Back",
  36789. image: {
  36790. source: "./media/characters/cindy/back.svg",
  36791. extra: 1384/1346,
  36792. bottom: 14/1398
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Normal",
  36799. height: math.unit(5, "feet"),
  36800. default: true
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36806. {
  36807. front: {
  36808. height: math.unit(6 + 9/12, "feet"),
  36809. weight: math.unit(440, "lb"),
  36810. name: "Front",
  36811. image: {
  36812. source: "./media/characters/wilbur-owen/front.svg",
  36813. extra: 1575/1448,
  36814. bottom: 72/1647
  36815. }
  36816. },
  36817. back: {
  36818. height: math.unit(6 + 9/12, "feet"),
  36819. weight: math.unit(440, "lb"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/wilbur-owen/back.svg",
  36823. extra: 1578/1445,
  36824. bottom: 36/1614
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(6 + 9/12, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(6 + 5/12, "feet"),
  36841. weight: math.unit(650, "lb"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/keegan/front.svg",
  36845. extra: 2387/2198,
  36846. bottom: 33/2420
  36847. }
  36848. },
  36849. side: {
  36850. height: math.unit(6 + 5/12, "feet"),
  36851. weight: math.unit(650, "lb"),
  36852. name: "Side",
  36853. image: {
  36854. source: "./media/characters/keegan/side.svg",
  36855. extra: 2390/2202,
  36856. bottom: 47/2437
  36857. }
  36858. },
  36859. back: {
  36860. height: math.unit(6 + 5/12, "feet"),
  36861. weight: math.unit(650, "lb"),
  36862. name: "Back",
  36863. image: {
  36864. source: "./media/characters/keegan/back.svg",
  36865. extra: 2418/2268,
  36866. bottom: 15/2433
  36867. }
  36868. },
  36869. frontSfw: {
  36870. height: math.unit(6 + 5/12, "feet"),
  36871. weight: math.unit(650, "lb"),
  36872. name: "Front (SFW)",
  36873. image: {
  36874. source: "./media/characters/keegan/front-sfw.svg",
  36875. extra: 2387/2198,
  36876. bottom: 33/2420
  36877. }
  36878. },
  36879. beans: {
  36880. height: math.unit(1.85, "feet"),
  36881. name: "Beans",
  36882. image: {
  36883. source: "./media/characters/keegan/beans.svg"
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(6 + 5/12, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(9, "feet"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/colton/front.svg",
  36903. extra: 1589/1326,
  36904. bottom: 139/1728
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(9, "feet"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(2 + 9/12, "feet"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/bora/front.svg",
  36924. extra: 1265/1250,
  36925. bottom: 24/1289
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(2 + 9/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36939. {
  36940. front: {
  36941. height: math.unit(8, "feet"),
  36942. name: "Front",
  36943. image: {
  36944. source: "./media/characters/myu-myu/front.svg",
  36945. extra: 1949/1857,
  36946. bottom: 90/2039
  36947. }
  36948. },
  36949. },
  36950. [
  36951. {
  36952. name: "Normal",
  36953. height: math.unit(8, "feet"),
  36954. default: true
  36955. },
  36956. {
  36957. name: "Big",
  36958. height: math.unit(15, "feet")
  36959. },
  36960. {
  36961. name: "BIG",
  36962. height: math.unit(25, "feet")
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36968. {
  36969. side: {
  36970. height: math.unit(7 + 5/12, "feet"),
  36971. weight: math.unit(2800, "lb"),
  36972. name: "Side",
  36973. image: {
  36974. source: "./media/characters/haloren/side.svg",
  36975. extra: 1793/409,
  36976. bottom: 59/1852
  36977. }
  36978. },
  36979. frontPaw: {
  36980. height: math.unit(2.36, "feet"),
  36981. name: "Front paw",
  36982. image: {
  36983. source: "./media/characters/haloren/front-paw.svg"
  36984. }
  36985. },
  36986. hindPaw: {
  36987. height: math.unit(3.18, "feet"),
  36988. name: "Hind paw",
  36989. image: {
  36990. source: "./media/characters/haloren/hind-paw.svg"
  36991. }
  36992. },
  36993. maw: {
  36994. height: math.unit(5.05, "feet"),
  36995. name: "Maw",
  36996. image: {
  36997. source: "./media/characters/haloren/maw.svg"
  36998. }
  36999. },
  37000. dick: {
  37001. height: math.unit(2.90, "feet"),
  37002. name: "Dick",
  37003. image: {
  37004. source: "./media/characters/haloren/dick.svg"
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(7 + 5/12, "feet"),
  37012. default: true
  37013. },
  37014. {
  37015. name: "Enhanced",
  37016. height: math.unit(14 + 3/12, "feet")
  37017. },
  37018. ]
  37019. ))
  37020. characterMakers.push(() => makeCharacter(
  37021. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37022. {
  37023. front: {
  37024. height: math.unit(171, "cm"),
  37025. name: "Front",
  37026. image: {
  37027. source: "./media/characters/kimmy/front.svg",
  37028. extra: 1491/1435,
  37029. bottom: 53/1544
  37030. }
  37031. },
  37032. },
  37033. [
  37034. {
  37035. name: "Small",
  37036. height: math.unit(9, "cm")
  37037. },
  37038. {
  37039. name: "Normal",
  37040. height: math.unit(171, "cm"),
  37041. default: true
  37042. },
  37043. ]
  37044. ))
  37045. characterMakers.push(() => makeCharacter(
  37046. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37047. {
  37048. front: {
  37049. height: math.unit(8, "feet"),
  37050. weight: math.unit(300, "lb"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/galeboomer/front.svg",
  37054. extra: 4651/4415,
  37055. bottom: 162/4813
  37056. }
  37057. },
  37058. back: {
  37059. height: math.unit(8, "feet"),
  37060. weight: math.unit(300, "lb"),
  37061. name: "Back",
  37062. image: {
  37063. source: "./media/characters/galeboomer/back.svg",
  37064. extra: 4544/4314,
  37065. bottom: 16/4560
  37066. }
  37067. },
  37068. frontAlt: {
  37069. height: math.unit(8, "feet"),
  37070. weight: math.unit(300, "lb"),
  37071. name: "Front (Alt)",
  37072. image: {
  37073. source: "./media/characters/galeboomer/front-alt.svg",
  37074. extra: 4458/4228,
  37075. bottom: 68/4526
  37076. }
  37077. },
  37078. maw: {
  37079. height: math.unit(1.2, "feet"),
  37080. name: "Maw",
  37081. image: {
  37082. source: "./media/characters/galeboomer/maw.svg"
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Normal",
  37089. height: math.unit(8, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37096. {
  37097. front: {
  37098. height: math.unit(5 + 9/12, "feet"),
  37099. weight: math.unit(120, "lb"),
  37100. name: "Front",
  37101. image: {
  37102. source: "./media/characters/chyr/front.svg",
  37103. extra: 1323/1254,
  37104. bottom: 63/1386
  37105. }
  37106. },
  37107. back: {
  37108. height: math.unit(5 + 9/12, "feet"),
  37109. weight: math.unit(120, "lb"),
  37110. name: "Back",
  37111. image: {
  37112. source: "./media/characters/chyr/back.svg",
  37113. extra: 1323/1252,
  37114. bottom: 48/1371
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Normal",
  37121. height: math.unit(5 + 9/12, "feet"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37128. {
  37129. front: {
  37130. height: math.unit(7, "feet"),
  37131. weight: math.unit(310, "lb"),
  37132. name: "Front",
  37133. image: {
  37134. source: "./media/characters/solarus/front.svg",
  37135. extra: 2415/2021,
  37136. bottom: 103/2518
  37137. }
  37138. },
  37139. back: {
  37140. height: math.unit(7, "feet"),
  37141. weight: math.unit(310, "lb"),
  37142. name: "Back",
  37143. image: {
  37144. source: "./media/characters/solarus/back.svg",
  37145. extra: 2463/2089,
  37146. bottom: 79/2542
  37147. }
  37148. },
  37149. },
  37150. [
  37151. {
  37152. name: "Normal",
  37153. height: math.unit(7, "feet"),
  37154. default: true
  37155. },
  37156. ]
  37157. ))
  37158. characterMakers.push(() => makeCharacter(
  37159. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37160. {
  37161. front: {
  37162. height: math.unit(16, "feet"),
  37163. name: "Front",
  37164. image: {
  37165. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37166. extra: 1844/1780,
  37167. bottom: 58/1902
  37168. }
  37169. },
  37170. winterCoat: {
  37171. height: math.unit(16, "feet"),
  37172. name: "Winter Coat",
  37173. image: {
  37174. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37175. extra: 1807/1775,
  37176. bottom: 69/1876
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(16, "feet"),
  37184. default: true
  37185. },
  37186. {
  37187. name: "Chicago Size",
  37188. height: math.unit(560, "feet")
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(11 + 6/12, "feet"),
  37197. weight: math.unit(1366, "lb"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/lexor/front.svg",
  37201. extra: 1560/1481,
  37202. bottom: 211/1771
  37203. }
  37204. },
  37205. back: {
  37206. height: math.unit(11 + 6/12, "feet"),
  37207. weight: math.unit(1366, "lb"),
  37208. name: "Back",
  37209. image: {
  37210. source: "./media/characters/lexor/back.svg",
  37211. extra: 1614/1533,
  37212. bottom: 76/1690
  37213. }
  37214. },
  37215. maw: {
  37216. height: math.unit(3, "feet"),
  37217. name: "Maw",
  37218. image: {
  37219. source: "./media/characters/lexor/maw.svg"
  37220. }
  37221. },
  37222. dick: {
  37223. height: math.unit(2.59, "feet"),
  37224. name: "Dick",
  37225. image: {
  37226. source: "./media/characters/lexor/dick.svg"
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Normal",
  37233. height: math.unit(11 + 6/12, "feet"),
  37234. default: true
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37240. {
  37241. front: {
  37242. height: math.unit(5 + 8/12, "feet"),
  37243. name: "Front",
  37244. image: {
  37245. source: "./media/characters/magnum/front.svg",
  37246. extra: 942/855,
  37247. bottom: 26/968
  37248. }
  37249. },
  37250. },
  37251. [
  37252. {
  37253. name: "Normal",
  37254. height: math.unit(5 + 8/12, "feet"),
  37255. default: true
  37256. },
  37257. ]
  37258. ))
  37259. characterMakers.push(() => makeCharacter(
  37260. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37261. {
  37262. front: {
  37263. height: math.unit(18 + 4/12, "feet"),
  37264. weight: math.unit(1500, "kg"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/solas-sharpsman/front.svg",
  37268. extra: 1698/1589,
  37269. bottom: 0/1698
  37270. }
  37271. },
  37272. },
  37273. [
  37274. {
  37275. name: "Normal",
  37276. height: math.unit(18 + 4/12, "feet"),
  37277. default: true
  37278. },
  37279. ]
  37280. ))
  37281. characterMakers.push(() => makeCharacter(
  37282. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37283. {
  37284. front: {
  37285. height: math.unit(5 + 5/12, "feet"),
  37286. weight: math.unit(180, "lb"),
  37287. name: "Front",
  37288. image: {
  37289. source: "./media/characters/october/front.svg",
  37290. extra: 1800/1650,
  37291. bottom: 0/1800
  37292. }
  37293. },
  37294. frontNsfw: {
  37295. height: math.unit(5 + 5/12, "feet"),
  37296. weight: math.unit(180, "lb"),
  37297. name: "Front (NSFW)",
  37298. image: {
  37299. source: "./media/characters/october/front-nsfw.svg",
  37300. extra: 1392/1307,
  37301. bottom: 42/1434
  37302. }
  37303. },
  37304. },
  37305. [
  37306. {
  37307. name: "Normal",
  37308. height: math.unit(5 + 5/12, "feet"),
  37309. default: true
  37310. },
  37311. ]
  37312. ))
  37313. characterMakers.push(() => makeCharacter(
  37314. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37315. {
  37316. front: {
  37317. height: math.unit(8 + 6/12, "feet"),
  37318. name: "Front",
  37319. image: {
  37320. source: "./media/characters/essynkardi/front.svg",
  37321. extra: 1914/1846,
  37322. bottom: 22/1936
  37323. }
  37324. },
  37325. },
  37326. [
  37327. {
  37328. name: "Normal",
  37329. height: math.unit(8 + 6/12, "feet"),
  37330. default: true
  37331. },
  37332. ]
  37333. ))
  37334. characterMakers.push(() => makeCharacter(
  37335. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37336. {
  37337. front: {
  37338. height: math.unit(6 + 6/12, "feet"),
  37339. weight: math.unit(7, "lb"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/icky/front.svg",
  37343. extra: 813/782,
  37344. bottom: 66/879
  37345. }
  37346. },
  37347. back: {
  37348. height: math.unit(6 + 6/12, "feet"),
  37349. weight: math.unit(7, "lb"),
  37350. name: "Back",
  37351. image: {
  37352. source: "./media/characters/icky/back.svg",
  37353. extra: 754/735,
  37354. bottom: 56/810
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(6 + 6/12, "feet"),
  37362. default: true
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37368. {
  37369. front: {
  37370. height: math.unit(15, "feet"),
  37371. name: "Front",
  37372. image: {
  37373. source: "./media/characters/rojas/front.svg",
  37374. extra: 1462/1408,
  37375. bottom: 95/1557
  37376. }
  37377. },
  37378. back: {
  37379. height: math.unit(15, "feet"),
  37380. name: "Back",
  37381. image: {
  37382. source: "./media/characters/rojas/back.svg",
  37383. extra: 1023/954,
  37384. bottom: 28/1051
  37385. }
  37386. },
  37387. },
  37388. [
  37389. {
  37390. name: "Normal",
  37391. height: math.unit(15, "feet"),
  37392. default: true
  37393. },
  37394. ]
  37395. ))
  37396. characterMakers.push(() => makeCharacter(
  37397. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37398. {
  37399. frontHuman: {
  37400. height: math.unit(5 + 7/12, "feet"),
  37401. name: "Front (Human)",
  37402. image: {
  37403. source: "./media/characters/alek-dryagan/front-human.svg",
  37404. extra: 1687/1667,
  37405. bottom: 69/1756
  37406. }
  37407. },
  37408. backHuman: {
  37409. height: math.unit(5 + 7/12, "feet"),
  37410. name: "Back (Human)",
  37411. image: {
  37412. source: "./media/characters/alek-dryagan/back-human.svg",
  37413. extra: 1670/1649,
  37414. bottom: 65/1735
  37415. }
  37416. },
  37417. frontDemi: {
  37418. height: math.unit(65, "feet"),
  37419. name: "Front (Demi)",
  37420. image: {
  37421. source: "./media/characters/alek-dryagan/front-demi.svg",
  37422. extra: 1669/1642,
  37423. bottom: 49/1718
  37424. }
  37425. },
  37426. backDemi: {
  37427. height: math.unit(65, "feet"),
  37428. name: "Back (Demi)",
  37429. image: {
  37430. source: "./media/characters/alek-dryagan/back-demi.svg",
  37431. extra: 1658/1637,
  37432. bottom: 40/1698
  37433. }
  37434. },
  37435. mawHuman: {
  37436. height: math.unit(0.3, "feet"),
  37437. name: "Maw (Human)",
  37438. image: {
  37439. source: "./media/characters/alek-dryagan/maw-human.svg"
  37440. }
  37441. },
  37442. mawDemi: {
  37443. height: math.unit(3.8, "feet"),
  37444. name: "Maw (Demi)",
  37445. image: {
  37446. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37447. }
  37448. },
  37449. },
  37450. [
  37451. {
  37452. name: "Normal",
  37453. height: math.unit(5 + 7/12, "feet"),
  37454. default: true
  37455. },
  37456. ]
  37457. ))
  37458. characterMakers.push(() => makeCharacter(
  37459. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37460. {
  37461. frontHuman: {
  37462. height: math.unit(5 + 2/12, "feet"),
  37463. name: "Front (Human)",
  37464. image: {
  37465. source: "./media/characters/gen/front-human.svg",
  37466. extra: 1627/1538,
  37467. bottom: 71/1698
  37468. }
  37469. },
  37470. backHuman: {
  37471. height: math.unit(5 + 2/12, "feet"),
  37472. name: "Back (Human)",
  37473. image: {
  37474. source: "./media/characters/gen/back-human.svg",
  37475. extra: 1638/1548,
  37476. bottom: 69/1707
  37477. }
  37478. },
  37479. frontDemi: {
  37480. height: math.unit(5 + 2/12, "feet"),
  37481. name: "Front (Demi)",
  37482. image: {
  37483. source: "./media/characters/gen/front-demi.svg",
  37484. extra: 1627/1538,
  37485. bottom: 71/1698
  37486. }
  37487. },
  37488. backDemi: {
  37489. height: math.unit(5 + 2/12, "feet"),
  37490. name: "Back (Demi)",
  37491. image: {
  37492. source: "./media/characters/gen/back-demi.svg",
  37493. extra: 1638/1548,
  37494. bottom: 69/1707
  37495. }
  37496. },
  37497. },
  37498. [
  37499. {
  37500. name: "Normal",
  37501. height: math.unit(5 + 2/12, "feet"),
  37502. default: true
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37508. {
  37509. frontImp: {
  37510. height: math.unit(1 + 11/12, "feet"),
  37511. name: "Front (Imp)",
  37512. image: {
  37513. source: "./media/characters/max-kobold/front-imp.svg",
  37514. extra: 1238/1134,
  37515. bottom: 81/1319
  37516. }
  37517. },
  37518. backImp: {
  37519. height: math.unit(1 + 11/12, "feet"),
  37520. name: "Back (Imp)",
  37521. image: {
  37522. source: "./media/characters/max-kobold/back-imp.svg",
  37523. extra: 1334/1175,
  37524. bottom: 34/1368
  37525. }
  37526. },
  37527. frontDemi: {
  37528. height: math.unit(5 + 9/12, "feet"),
  37529. name: "Front (Demi)",
  37530. image: {
  37531. source: "./media/characters/max-kobold/front-demi.svg",
  37532. extra: 1715/1685,
  37533. bottom: 54/1769
  37534. }
  37535. },
  37536. backDemi: {
  37537. height: math.unit(5 + 9/12, "feet"),
  37538. name: "Back (Demi)",
  37539. image: {
  37540. source: "./media/characters/max-kobold/back-demi.svg",
  37541. extra: 1752/1729,
  37542. bottom: 41/1793
  37543. }
  37544. },
  37545. handImp: {
  37546. height: math.unit(0.45, "feet"),
  37547. name: "Hand (Imp)",
  37548. image: {
  37549. source: "./media/characters/max-kobold/hand.svg"
  37550. }
  37551. },
  37552. pawImp: {
  37553. height: math.unit(0.46, "feet"),
  37554. name: "Paw (Imp)",
  37555. image: {
  37556. source: "./media/characters/max-kobold/paw.svg"
  37557. }
  37558. },
  37559. handDemi: {
  37560. height: math.unit(0.80, "feet"),
  37561. name: "Hand (Demi)",
  37562. image: {
  37563. source: "./media/characters/max-kobold/hand.svg"
  37564. }
  37565. },
  37566. pawDemi: {
  37567. height: math.unit(1.1, "feet"),
  37568. name: "Paw (Demi)",
  37569. image: {
  37570. source: "./media/characters/max-kobold/paw.svg"
  37571. }
  37572. },
  37573. headImp: {
  37574. height: math.unit(1.33, "feet"),
  37575. name: "Head (Imp)",
  37576. image: {
  37577. source: "./media/characters/max-kobold/head-imp.svg"
  37578. }
  37579. },
  37580. mawImp: {
  37581. height: math.unit(0.75, "feet"),
  37582. name: "Maw (Imp)",
  37583. image: {
  37584. source: "./media/characters/max-kobold/maw-imp.svg"
  37585. }
  37586. },
  37587. mawDemi: {
  37588. height: math.unit(0.42, "feet"),
  37589. name: "Maw (Demi)",
  37590. image: {
  37591. source: "./media/characters/max-kobold/maw-demi.svg"
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(1 + 11/12, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(7 + 5/12, "feet"),
  37608. name: "Front",
  37609. image: {
  37610. source: "./media/characters/carbon/front.svg",
  37611. extra: 1754/1689,
  37612. bottom: 65/1819
  37613. }
  37614. },
  37615. back: {
  37616. height: math.unit(7 + 5/12, "feet"),
  37617. name: "Back",
  37618. image: {
  37619. source: "./media/characters/carbon/back.svg",
  37620. extra: 1762/1695,
  37621. bottom: 24/1786
  37622. }
  37623. },
  37624. frontGigantamax: {
  37625. height: math.unit(150, "feet"),
  37626. name: "Front (Gigantamax)",
  37627. image: {
  37628. source: "./media/characters/carbon/front-gigantamax.svg",
  37629. extra: 1826/1669,
  37630. bottom: 59/1885
  37631. }
  37632. },
  37633. backGigantamax: {
  37634. height: math.unit(150, "feet"),
  37635. name: "Back (Gigantamax)",
  37636. image: {
  37637. source: "./media/characters/carbon/back-gigantamax.svg",
  37638. extra: 1796/1653,
  37639. bottom: 53/1849
  37640. }
  37641. },
  37642. maw: {
  37643. height: math.unit(0.48, "feet"),
  37644. name: "Maw",
  37645. image: {
  37646. source: "./media/characters/carbon/maw.svg"
  37647. }
  37648. },
  37649. mawGigantamax: {
  37650. height: math.unit(7.5, "feet"),
  37651. name: "Maw (Gigantamax)",
  37652. image: {
  37653. source: "./media/characters/carbon/maw-gigantamax.svg"
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(7 + 5/12, "feet"),
  37661. default: true
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(6, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/maverick/front.svg",
  37673. extra: 1672/1661,
  37674. bottom: 85/1757
  37675. }
  37676. },
  37677. back: {
  37678. height: math.unit(6, "feet"),
  37679. name: "Back",
  37680. image: {
  37681. source: "./media/characters/maverick/back.svg",
  37682. extra: 1642/1631,
  37683. bottom: 38/1680
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Normal",
  37690. height: math.unit(6, "feet"),
  37691. default: true
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37697. {
  37698. front: {
  37699. height: math.unit(15, "feet"),
  37700. weight: math.unit(615, "lb"),
  37701. name: "Front",
  37702. image: {
  37703. source: "./media/characters/grockle/front.svg",
  37704. extra: 1535/1427,
  37705. bottom: 56/1591
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Normal",
  37712. height: math.unit(15, "feet"),
  37713. default: true
  37714. },
  37715. {
  37716. name: "Large",
  37717. height: math.unit(150, "feet")
  37718. },
  37719. {
  37720. name: "Macro",
  37721. height: math.unit(1876, "feet")
  37722. },
  37723. {
  37724. name: "Mega Macro",
  37725. height: math.unit(121940, "feet")
  37726. },
  37727. {
  37728. name: "Giga Macro",
  37729. height: math.unit(750, "km")
  37730. },
  37731. {
  37732. name: "Tera Macro",
  37733. height: math.unit(750000, "km")
  37734. },
  37735. {
  37736. name: "Galactic",
  37737. height: math.unit(1.4e5, "km")
  37738. },
  37739. {
  37740. name: "Godlike",
  37741. height: math.unit(9.8e280, "galaxies")
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(11, "meters"),
  37750. weight: math.unit(20, "tonnes"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/alistair/front.svg",
  37754. extra: 1265/1009,
  37755. bottom: 93/1358
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Normal",
  37762. height: math.unit(11, "meters"),
  37763. default: true
  37764. },
  37765. ]
  37766. ))
  37767. characterMakers.push(() => makeCharacter(
  37768. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37769. {
  37770. front: {
  37771. height: math.unit(5 + 8/12, "feet"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/haruka/front.svg",
  37775. extra: 2012/1952,
  37776. bottom: 0/2012
  37777. }
  37778. },
  37779. },
  37780. [
  37781. {
  37782. name: "Normal",
  37783. height: math.unit(5 + 8/12, "feet"),
  37784. default: true
  37785. },
  37786. ]
  37787. ))
  37788. characterMakers.push(() => makeCharacter(
  37789. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37790. {
  37791. back: {
  37792. height: math.unit(9, "feet"),
  37793. name: "Back",
  37794. image: {
  37795. source: "./media/characters/vivian-sylveon/back.svg",
  37796. extra: 1853/1714,
  37797. bottom: 0/1853
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(9, "feet"),
  37805. default: true
  37806. },
  37807. {
  37808. name: "Macro",
  37809. height: math.unit(500, "feet")
  37810. },
  37811. {
  37812. name: "Megamacro",
  37813. height: math.unit(600, "miles")
  37814. },
  37815. {
  37816. name: "Gigamacro",
  37817. height: math.unit(30000, "miles")
  37818. },
  37819. ]
  37820. ))
  37821. characterMakers.push(() => makeCharacter(
  37822. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37823. {
  37824. anthro: {
  37825. height: math.unit(5 + 10/12, "feet"),
  37826. weight: math.unit(100, "lb"),
  37827. name: "Anthro",
  37828. image: {
  37829. source: "./media/characters/daiki/anthro.svg",
  37830. extra: 1115/1027,
  37831. bottom: 69/1184
  37832. }
  37833. },
  37834. feral: {
  37835. height: math.unit(200, "feet"),
  37836. name: "Feral",
  37837. image: {
  37838. source: "./media/characters/daiki/feral.svg",
  37839. extra: 1256/313,
  37840. bottom: 39/1295
  37841. }
  37842. },
  37843. feralHead: {
  37844. height: math.unit(171, "feet"),
  37845. name: "Feral Head",
  37846. image: {
  37847. source: "./media/characters/daiki/feral-head.svg"
  37848. }
  37849. },
  37850. manaDragon: {
  37851. height: math.unit(170, "meters"),
  37852. name: "Mana-dragon",
  37853. image: {
  37854. source: "./media/characters/daiki/mana-dragon.svg",
  37855. extra: 763/420,
  37856. bottom: 97/860
  37857. }
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "Normal",
  37863. height: math.unit(5 + 10/12, "feet"),
  37864. default: true
  37865. },
  37866. ]
  37867. ))
  37868. characterMakers.push(() => makeCharacter(
  37869. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37870. {
  37871. fullyEquippedFront: {
  37872. height: math.unit(3 + 1/12, "feet"),
  37873. weight: math.unit(24, "lb"),
  37874. name: "Fully Equipped (Front)",
  37875. image: {
  37876. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37877. extra: 687/605,
  37878. bottom: 18/705
  37879. }
  37880. },
  37881. fullyEquippedBack: {
  37882. height: math.unit(3 + 1/12, "feet"),
  37883. weight: math.unit(24, "lb"),
  37884. name: "Fully Equipped (Back)",
  37885. image: {
  37886. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37887. extra: 689/590,
  37888. bottom: 18/707
  37889. }
  37890. },
  37891. dailyWear: {
  37892. height: math.unit(3 + 1/12, "feet"),
  37893. weight: math.unit(24, "lb"),
  37894. name: "Daily Wear",
  37895. image: {
  37896. source: "./media/characters/tea-spot/daily-wear.svg",
  37897. extra: 701/620,
  37898. bottom: 21/722
  37899. }
  37900. },
  37901. maidWork: {
  37902. height: math.unit(3 + 1/12, "feet"),
  37903. weight: math.unit(24, "lb"),
  37904. name: "Maid Work",
  37905. image: {
  37906. source: "./media/characters/tea-spot/maid-work.svg",
  37907. extra: 693/609,
  37908. bottom: 15/708
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal",
  37915. height: math.unit(3 + 1/12, "feet"),
  37916. default: true
  37917. },
  37918. ]
  37919. ))
  37920. characterMakers.push(() => makeCharacter(
  37921. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37922. {
  37923. front: {
  37924. height: math.unit(175, "cm"),
  37925. weight: math.unit(75, "kg"),
  37926. name: "Front",
  37927. image: {
  37928. source: "./media/characters/chee/front.svg",
  37929. extra: 1796/1740,
  37930. bottom: 40/1836
  37931. }
  37932. },
  37933. },
  37934. [
  37935. {
  37936. name: "Micro-Micro",
  37937. height: math.unit(1, "nm")
  37938. },
  37939. {
  37940. name: "Micro-erst",
  37941. height: math.unit(1, "micrometer")
  37942. },
  37943. {
  37944. name: "Micro-er",
  37945. height: math.unit(1, "cm")
  37946. },
  37947. {
  37948. name: "Normal",
  37949. height: math.unit(175, "cm"),
  37950. default: true
  37951. },
  37952. {
  37953. name: "Macro",
  37954. height: math.unit(100, "m")
  37955. },
  37956. {
  37957. name: "Macro-er",
  37958. height: math.unit(1, "km")
  37959. },
  37960. {
  37961. name: "Macro-erst",
  37962. height: math.unit(10, "km")
  37963. },
  37964. {
  37965. name: "Macro-Macro",
  37966. height: math.unit(100, "km")
  37967. },
  37968. ]
  37969. ))
  37970. characterMakers.push(() => makeCharacter(
  37971. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37972. {
  37973. front: {
  37974. height: math.unit(11 + 9/12, "feet"),
  37975. weight: math.unit(935, "lb"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/kingsley/front.svg",
  37979. extra: 1803/1674,
  37980. bottom: 127/1930
  37981. }
  37982. },
  37983. frontNude: {
  37984. height: math.unit(11 + 9/12, "feet"),
  37985. weight: math.unit(935, "lb"),
  37986. name: "Front (Nude)",
  37987. image: {
  37988. source: "./media/characters/kingsley/front-nude.svg",
  37989. extra: 1803/1674,
  37990. bottom: 127/1930
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Normal",
  37997. height: math.unit(11 + 9/12, "feet"),
  37998. default: true
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38004. {
  38005. side: {
  38006. height: math.unit(9, "feet"),
  38007. name: "Side",
  38008. image: {
  38009. source: "./media/characters/rymel/side.svg",
  38010. extra: 792/469,
  38011. bottom: 121/913
  38012. }
  38013. },
  38014. maw: {
  38015. height: math.unit(2.4, "meters"),
  38016. name: "Maw",
  38017. image: {
  38018. source: "./media/characters/rymel/maw.svg"
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "House Drake",
  38025. height: math.unit(2, "feet")
  38026. },
  38027. {
  38028. name: "Reduced",
  38029. height: math.unit(4.5, "feet")
  38030. },
  38031. {
  38032. name: "Normal",
  38033. height: math.unit(9, "feet"),
  38034. default: true
  38035. },
  38036. ]
  38037. ))
  38038. characterMakers.push(() => makeCharacter(
  38039. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38040. {
  38041. front: {
  38042. height: math.unit(1.74, "meters"),
  38043. weight: math.unit(55, "kg"),
  38044. name: "Front",
  38045. image: {
  38046. source: "./media/characters/rubus/front.svg",
  38047. extra: 1894/1742,
  38048. bottom: 44/1938
  38049. }
  38050. },
  38051. },
  38052. [
  38053. {
  38054. name: "Normal",
  38055. height: math.unit(1.74, "meters"),
  38056. default: true
  38057. },
  38058. ]
  38059. ))
  38060. characterMakers.push(() => makeCharacter(
  38061. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38062. {
  38063. front: {
  38064. height: math.unit(5 + 2/12, "feet"),
  38065. weight: math.unit(112, "lb"),
  38066. name: "Front",
  38067. image: {
  38068. source: "./media/characters/cassie-kingston/front.svg",
  38069. extra: 1438/1390,
  38070. bottom: 47/1485
  38071. }
  38072. },
  38073. },
  38074. [
  38075. {
  38076. name: "Normal",
  38077. height: math.unit(5 + 2/12, "feet"),
  38078. default: true
  38079. },
  38080. {
  38081. name: "Macro",
  38082. height: math.unit(128, "feet")
  38083. },
  38084. {
  38085. name: "Megamacro",
  38086. height: math.unit(2.56, "miles")
  38087. },
  38088. ]
  38089. ))
  38090. characterMakers.push(() => makeCharacter(
  38091. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38092. {
  38093. front: {
  38094. height: math.unit(7, "feet"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/fox/front.svg",
  38098. extra: 1798/1703,
  38099. bottom: 55/1853
  38100. }
  38101. },
  38102. back: {
  38103. height: math.unit(7, "feet"),
  38104. name: "Back",
  38105. image: {
  38106. source: "./media/characters/fox/back.svg",
  38107. extra: 1748/1649,
  38108. bottom: 32/1780
  38109. }
  38110. },
  38111. head: {
  38112. height: math.unit(1.95, "feet"),
  38113. name: "Head",
  38114. image: {
  38115. source: "./media/characters/fox/head.svg"
  38116. }
  38117. },
  38118. dick: {
  38119. height: math.unit(1.33, "feet"),
  38120. name: "Dick",
  38121. image: {
  38122. source: "./media/characters/fox/dick.svg"
  38123. }
  38124. },
  38125. foot: {
  38126. height: math.unit(1, "feet"),
  38127. name: "Foot",
  38128. image: {
  38129. source: "./media/characters/fox/foot.svg"
  38130. }
  38131. },
  38132. paw: {
  38133. height: math.unit(0.92, "feet"),
  38134. name: "Paw",
  38135. image: {
  38136. source: "./media/characters/fox/paw.svg"
  38137. }
  38138. },
  38139. },
  38140. [
  38141. {
  38142. name: "Small",
  38143. height: math.unit(3, "inches")
  38144. },
  38145. {
  38146. name: "\"Realistic\"",
  38147. height: math.unit(7, "feet")
  38148. },
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(150, "feet"),
  38152. default: true
  38153. },
  38154. {
  38155. name: "BIG",
  38156. height: math.unit(1200, "feet")
  38157. },
  38158. {
  38159. name: "👀",
  38160. height: math.unit(5, "miles")
  38161. },
  38162. {
  38163. name: "👀👀👀",
  38164. height: math.unit(64, "miles")
  38165. },
  38166. ]
  38167. ))
  38168. characterMakers.push(() => makeCharacter(
  38169. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38170. {
  38171. front: {
  38172. height: math.unit(625, "feet"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/asonja-rossa/front.svg",
  38176. extra: 1833/1686,
  38177. bottom: 24/1857
  38178. }
  38179. },
  38180. back: {
  38181. height: math.unit(625, "feet"),
  38182. name: "Back",
  38183. image: {
  38184. source: "./media/characters/asonja-rossa/back.svg",
  38185. extra: 1852/1753,
  38186. bottom: 26/1878
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Macro",
  38193. height: math.unit(625, "feet"),
  38194. default: true
  38195. },
  38196. ]
  38197. ))
  38198. characterMakers.push(() => makeCharacter(
  38199. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38200. {
  38201. side: {
  38202. height: math.unit(8, "feet"),
  38203. name: "Side",
  38204. image: {
  38205. source: "./media/characters/rezukii/side.svg",
  38206. extra: 979/542,
  38207. bottom: 87/1066
  38208. }
  38209. },
  38210. sitting: {
  38211. height: math.unit(14.6, "feet"),
  38212. name: "Sitting",
  38213. image: {
  38214. source: "./media/characters/rezukii/sitting.svg",
  38215. extra: 1023/813,
  38216. bottom: 45/1068
  38217. }
  38218. },
  38219. },
  38220. [
  38221. {
  38222. name: "Tiny",
  38223. height: math.unit(2, "feet")
  38224. },
  38225. {
  38226. name: "Smol",
  38227. height: math.unit(4, "feet")
  38228. },
  38229. {
  38230. name: "Normal",
  38231. height: math.unit(8, "feet"),
  38232. default: true
  38233. },
  38234. {
  38235. name: "Big",
  38236. height: math.unit(12, "feet")
  38237. },
  38238. {
  38239. name: "Macro",
  38240. height: math.unit(30, "feet")
  38241. },
  38242. ]
  38243. ))
  38244. characterMakers.push(() => makeCharacter(
  38245. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38246. {
  38247. front: {
  38248. height: math.unit(14, "feet"),
  38249. weight: math.unit(9.5, "tonnes"),
  38250. name: "Front",
  38251. image: {
  38252. source: "./media/characters/dawnheart/front.svg",
  38253. extra: 2792/2675,
  38254. bottom: 64/2856
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Normal",
  38261. height: math.unit(14, "feet"),
  38262. default: true
  38263. },
  38264. ]
  38265. ))
  38266. characterMakers.push(() => makeCharacter(
  38267. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38268. {
  38269. front: {
  38270. height: math.unit(1.7, "m"),
  38271. name: "Front",
  38272. image: {
  38273. source: "./media/characters/gladi/front.svg",
  38274. extra: 1460/1362,
  38275. bottom: 19/1479
  38276. }
  38277. },
  38278. back: {
  38279. height: math.unit(1.7, "m"),
  38280. name: "Back",
  38281. image: {
  38282. source: "./media/characters/gladi/back.svg",
  38283. extra: 1459/1357,
  38284. bottom: 12/1471
  38285. }
  38286. },
  38287. feral: {
  38288. height: math.unit(2.05, "m"),
  38289. name: "Feral",
  38290. image: {
  38291. source: "./media/characters/gladi/feral.svg",
  38292. extra: 821/557,
  38293. bottom: 91/912
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Shortest",
  38300. height: math.unit(70, "cm")
  38301. },
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(1.7, "m")
  38305. },
  38306. {
  38307. name: "Macro",
  38308. height: math.unit(10, "m"),
  38309. default: true
  38310. },
  38311. {
  38312. name: "Tallest",
  38313. height: math.unit(200, "m")
  38314. },
  38315. ]
  38316. ))
  38317. characterMakers.push(() => makeCharacter(
  38318. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38319. {
  38320. front: {
  38321. height: math.unit(5 + 7/12, "feet"),
  38322. weight: math.unit(2, "tons"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/erdno/front.svg",
  38326. extra: 1234/1129,
  38327. bottom: 35/1269
  38328. }
  38329. },
  38330. angled: {
  38331. height: math.unit(5 + 7/12, "feet"),
  38332. weight: math.unit(2, "tons"),
  38333. name: "Angled",
  38334. image: {
  38335. source: "./media/characters/erdno/angled.svg",
  38336. extra: 1185/1139,
  38337. bottom: 36/1221
  38338. }
  38339. },
  38340. side: {
  38341. height: math.unit(5 + 7/12, "feet"),
  38342. weight: math.unit(2, "tons"),
  38343. name: "Side",
  38344. image: {
  38345. source: "./media/characters/erdno/side.svg",
  38346. extra: 1191/1144,
  38347. bottom: 40/1231
  38348. }
  38349. },
  38350. back: {
  38351. height: math.unit(5 + 7/12, "feet"),
  38352. weight: math.unit(2, "tons"),
  38353. name: "Back",
  38354. image: {
  38355. source: "./media/characters/erdno/back.svg",
  38356. extra: 1202/1146,
  38357. bottom: 17/1219
  38358. }
  38359. },
  38360. frontNsfw: {
  38361. height: math.unit(5 + 7/12, "feet"),
  38362. weight: math.unit(2, "tons"),
  38363. name: "Front (NSFW)",
  38364. image: {
  38365. source: "./media/characters/erdno/front-nsfw.svg",
  38366. extra: 1234/1129,
  38367. bottom: 35/1269
  38368. }
  38369. },
  38370. angledNsfw: {
  38371. height: math.unit(5 + 7/12, "feet"),
  38372. weight: math.unit(2, "tons"),
  38373. name: "Angled (NSFW)",
  38374. image: {
  38375. source: "./media/characters/erdno/angled-nsfw.svg",
  38376. extra: 1185/1139,
  38377. bottom: 36/1221
  38378. }
  38379. },
  38380. sideNsfw: {
  38381. height: math.unit(5 + 7/12, "feet"),
  38382. weight: math.unit(2, "tons"),
  38383. name: "Side (NSFW)",
  38384. image: {
  38385. source: "./media/characters/erdno/side-nsfw.svg",
  38386. extra: 1191/1144,
  38387. bottom: 40/1231
  38388. }
  38389. },
  38390. backNsfw: {
  38391. height: math.unit(5 + 7/12, "feet"),
  38392. weight: math.unit(2, "tons"),
  38393. name: "Back (NSFW)",
  38394. image: {
  38395. source: "./media/characters/erdno/back-nsfw.svg",
  38396. extra: 1202/1146,
  38397. bottom: 17/1219
  38398. }
  38399. },
  38400. frontHyper: {
  38401. height: math.unit(5 + 7/12, "feet"),
  38402. weight: math.unit(2, "tons"),
  38403. name: "Front (Hyper)",
  38404. image: {
  38405. source: "./media/characters/erdno/front-hyper.svg",
  38406. extra: 1298/1136,
  38407. bottom: 35/1333
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "Normal",
  38414. height: math.unit(5 + 7/12, "feet"),
  38415. default: true
  38416. },
  38417. {
  38418. name: "Big",
  38419. height: math.unit(5.7, "meters")
  38420. },
  38421. {
  38422. name: "Macro",
  38423. height: math.unit(5.7, "kilometers")
  38424. },
  38425. {
  38426. name: "Megamacro",
  38427. height: math.unit(5.7, "earths")
  38428. },
  38429. ]
  38430. ))
  38431. characterMakers.push(() => makeCharacter(
  38432. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38433. {
  38434. front: {
  38435. height: math.unit(5 + 10/12, "feet"),
  38436. weight: math.unit(150, "lb"),
  38437. name: "Front",
  38438. image: {
  38439. source: "./media/characters/jamie/front.svg",
  38440. extra: 1908/1768,
  38441. bottom: 19/1927
  38442. }
  38443. },
  38444. },
  38445. [
  38446. {
  38447. name: "Minimum",
  38448. height: math.unit(2, "cm")
  38449. },
  38450. {
  38451. name: "Micro",
  38452. height: math.unit(3, "inches")
  38453. },
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(5 + 10/12, "feet"),
  38457. default: true
  38458. },
  38459. {
  38460. name: "Macro",
  38461. height: math.unit(150, "feet")
  38462. },
  38463. {
  38464. name: "Megamacro",
  38465. height: math.unit(10000, "m")
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38471. {
  38472. front: {
  38473. height: math.unit(2, "meters"),
  38474. weight: math.unit(100, "kg"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/shiron/front.svg",
  38478. extra: 2103/1985,
  38479. bottom: 98/2201
  38480. }
  38481. },
  38482. back: {
  38483. height: math.unit(2, "meters"),
  38484. weight: math.unit(100, "kg"),
  38485. name: "Back",
  38486. image: {
  38487. source: "./media/characters/shiron/back.svg",
  38488. extra: 2110/2015,
  38489. bottom: 89/2199
  38490. }
  38491. },
  38492. hand: {
  38493. height: math.unit(0.96, "feet"),
  38494. name: "Hand",
  38495. image: {
  38496. source: "./media/characters/shiron/hand.svg"
  38497. }
  38498. },
  38499. foot: {
  38500. height: math.unit(1.464, "feet"),
  38501. name: "Foot",
  38502. image: {
  38503. source: "./media/characters/shiron/foot.svg"
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Normal",
  38510. height: math.unit(2, "meters")
  38511. },
  38512. {
  38513. name: "Macro",
  38514. height: math.unit(500, "meters"),
  38515. default: true
  38516. },
  38517. {
  38518. name: "Megamacro",
  38519. height: math.unit(20, "km")
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(6, "feet"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/sam/front.svg",
  38531. extra: 849/826,
  38532. bottom: 19/868
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Normal",
  38539. height: math.unit(6, "feet"),
  38540. default: true
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38546. {
  38547. front: {
  38548. height: math.unit(8 + 4/12, "feet"),
  38549. weight: math.unit(122, "kg"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/namori-kurogawa/front.svg",
  38553. extra: 1894/1576,
  38554. bottom: 34/1928
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(8 + 4/12, "feet"),
  38562. default: true
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38568. {
  38569. front: {
  38570. height: math.unit(9, "feet"),
  38571. weight: math.unit(621, "lb"),
  38572. name: "Front",
  38573. image: {
  38574. source: "./media/characters/unmru/front.svg",
  38575. extra: 1853/1747,
  38576. bottom: 73/1926
  38577. }
  38578. },
  38579. side: {
  38580. height: math.unit(9, "feet"),
  38581. weight: math.unit(621, "lb"),
  38582. name: "Side",
  38583. image: {
  38584. source: "./media/characters/unmru/side.svg",
  38585. extra: 1781/1671,
  38586. bottom: 127/1908
  38587. }
  38588. },
  38589. back: {
  38590. height: math.unit(9, "feet"),
  38591. weight: math.unit(621, "lb"),
  38592. name: "Back",
  38593. image: {
  38594. source: "./media/characters/unmru/back.svg",
  38595. extra: 1894/1765,
  38596. bottom: 75/1969
  38597. }
  38598. },
  38599. dick: {
  38600. height: math.unit(3, "feet"),
  38601. weight: math.unit(35, "lb"),
  38602. name: "Dick",
  38603. image: {
  38604. source: "./media/characters/unmru/dick.svg"
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(9, "feet")
  38612. },
  38613. {
  38614. name: "Natural",
  38615. height: math.unit(27, "feet"),
  38616. default: true
  38617. },
  38618. {
  38619. name: "Giant",
  38620. height: math.unit(90, "feet")
  38621. },
  38622. {
  38623. name: "Kaiju",
  38624. height: math.unit(270, "feet")
  38625. },
  38626. {
  38627. name: "Macro",
  38628. height: math.unit(900, "feet")
  38629. },
  38630. {
  38631. name: "Macro+",
  38632. height: math.unit(2700, "feet")
  38633. },
  38634. {
  38635. name: "Megamacro",
  38636. height: math.unit(9000, "feet")
  38637. },
  38638. {
  38639. name: "City-Crushing",
  38640. height: math.unit(27000, "feet")
  38641. },
  38642. {
  38643. name: "Mountain-Mashing",
  38644. height: math.unit(90000, "feet")
  38645. },
  38646. {
  38647. name: "Earth-Eclipsing",
  38648. height: math.unit(2.7e8, "feet")
  38649. },
  38650. {
  38651. name: "Sol-Swallowing",
  38652. height: math.unit(9e10, "feet")
  38653. },
  38654. {
  38655. name: "Majoris-Munching",
  38656. height: math.unit(2.7e13, "feet")
  38657. },
  38658. ]
  38659. ))
  38660. characterMakers.push(() => makeCharacter(
  38661. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38662. {
  38663. front: {
  38664. height: math.unit(1, "inch"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/squeaks-mouse/front.svg",
  38668. extra: 352/308,
  38669. bottom: 25/377
  38670. }
  38671. },
  38672. },
  38673. [
  38674. {
  38675. name: "Micro",
  38676. height: math.unit(1, "inch"),
  38677. default: true
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38683. {
  38684. side: {
  38685. height: math.unit(35, "feet"),
  38686. name: "Side",
  38687. image: {
  38688. source: "./media/characters/sayko/side.svg",
  38689. extra: 1697/1021,
  38690. bottom: 82/1779
  38691. }
  38692. },
  38693. head: {
  38694. height: math.unit(16, "feet"),
  38695. name: "Head",
  38696. image: {
  38697. source: "./media/characters/sayko/head.svg"
  38698. }
  38699. },
  38700. forepaw: {
  38701. height: math.unit(7.85, "feet"),
  38702. name: "Forepaw",
  38703. image: {
  38704. source: "./media/characters/sayko/forepaw.svg"
  38705. }
  38706. },
  38707. hindpaw: {
  38708. height: math.unit(8.8, "feet"),
  38709. name: "Hindpaw",
  38710. image: {
  38711. source: "./media/characters/sayko/hindpaw.svg"
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Normal",
  38718. height: math.unit(35, "feet"),
  38719. default: true
  38720. },
  38721. {
  38722. name: "Colossus",
  38723. height: math.unit(100, "meters")
  38724. },
  38725. {
  38726. name: "\"Small\" Deity",
  38727. height: math.unit(1, "km")
  38728. },
  38729. {
  38730. name: "\"Large\" Deity",
  38731. height: math.unit(15, "km")
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(6, "feet"),
  38740. weight: math.unit(250, "lb"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/mukiro/front.svg",
  38744. extra: 1368/1310,
  38745. bottom: 34/1402
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(6, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38759. {
  38760. front: {
  38761. height: math.unit(12 + 4/12, "feet"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38765. extra: 1346/1311,
  38766. bottom: 65/1411
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Base",
  38773. height: math.unit(12 + 4/12, "feet"),
  38774. default: true
  38775. },
  38776. {
  38777. name: "Macro",
  38778. height: math.unit(150, "feet")
  38779. },
  38780. {
  38781. name: "Mega",
  38782. height: math.unit(2, "miles")
  38783. },
  38784. {
  38785. name: "Demi God",
  38786. height: math.unit(4, "AU")
  38787. },
  38788. {
  38789. name: "God Size",
  38790. height: math.unit(1, "universe")
  38791. },
  38792. ]
  38793. ))
  38794. characterMakers.push(() => makeCharacter(
  38795. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38796. {
  38797. front: {
  38798. height: math.unit(3 + 3/12, "feet"),
  38799. weight: math.unit(88, "lb"),
  38800. name: "Front",
  38801. image: {
  38802. source: "./media/characters/trey/front.svg",
  38803. extra: 1815/1509,
  38804. bottom: 60/1875
  38805. }
  38806. },
  38807. },
  38808. [
  38809. {
  38810. name: "Normal",
  38811. height: math.unit(3 + 3/12, "feet"),
  38812. default: true
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38818. {
  38819. front: {
  38820. height: math.unit(4, "meters"),
  38821. name: "Front",
  38822. image: {
  38823. source: "./media/characters/adelonda/front.svg",
  38824. extra: 1077/982,
  38825. bottom: 39/1116
  38826. }
  38827. },
  38828. back: {
  38829. height: math.unit(4, "meters"),
  38830. name: "Back",
  38831. image: {
  38832. source: "./media/characters/adelonda/back.svg",
  38833. extra: 1105/1003,
  38834. bottom: 25/1130
  38835. }
  38836. },
  38837. feral: {
  38838. height: math.unit(40/1.5, "meters"),
  38839. name: "Feral",
  38840. image: {
  38841. source: "./media/characters/adelonda/feral.svg",
  38842. extra: 597/271,
  38843. bottom: 387/984
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Normal",
  38850. height: math.unit(4, "meters"),
  38851. default: true
  38852. },
  38853. ]
  38854. ))
  38855. characterMakers.push(() => makeCharacter(
  38856. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38857. {
  38858. front: {
  38859. height: math.unit(8 + 4/12, "feet"),
  38860. weight: math.unit(670, "lb"),
  38861. name: "Front",
  38862. image: {
  38863. source: "./media/characters/acadiel/front.svg",
  38864. extra: 1901/1595,
  38865. bottom: 142/2043
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(8 + 4/12, "feet"),
  38873. default: true
  38874. },
  38875. {
  38876. name: "Macro",
  38877. height: math.unit(200, "feet")
  38878. },
  38879. ]
  38880. ))
  38881. characterMakers.push(() => makeCharacter(
  38882. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38883. {
  38884. front: {
  38885. height: math.unit(6 + 2/12, "feet"),
  38886. weight: math.unit(185, "lb"),
  38887. name: "Front",
  38888. image: {
  38889. source: "./media/characters/kayne-ein/front.svg",
  38890. extra: 1780/1560,
  38891. bottom: 81/1861
  38892. }
  38893. },
  38894. },
  38895. [
  38896. {
  38897. name: "Normal",
  38898. height: math.unit(6 + 2/12, "feet"),
  38899. default: true
  38900. },
  38901. {
  38902. name: "Transformation Stage",
  38903. height: math.unit(15, "feet")
  38904. },
  38905. {
  38906. name: "Macro",
  38907. height: math.unit(150, "feet")
  38908. },
  38909. {
  38910. name: "Earth's Shadow",
  38911. height: math.unit(6200, "miles")
  38912. },
  38913. {
  38914. name: "Universal Demon",
  38915. height: math.unit(28e9, "parsecs")
  38916. },
  38917. {
  38918. name: "Multiverse God",
  38919. height: math.unit(3, "multiverses")
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(5 + 5/12, "feet"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/fawn/front.svg",
  38931. extra: 1873/1731,
  38932. bottom: 95/1968
  38933. }
  38934. },
  38935. back: {
  38936. height: math.unit(5 + 5/12, "feet"),
  38937. name: "Back",
  38938. image: {
  38939. source: "./media/characters/fawn/back.svg",
  38940. extra: 1813/1700,
  38941. bottom: 14/1827
  38942. }
  38943. },
  38944. hoof: {
  38945. height: math.unit(1.45, "feet"),
  38946. name: "Hoof",
  38947. image: {
  38948. source: "./media/characters/fawn/hoof.svg"
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(5 + 5/12, "feet"),
  38956. default: true
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38962. {
  38963. front: {
  38964. height: math.unit(2 + 5/12, "feet"),
  38965. name: "Front",
  38966. image: {
  38967. source: "./media/characters/orion/front.svg",
  38968. extra: 1366/1304,
  38969. bottom: 43/1409
  38970. }
  38971. },
  38972. paw: {
  38973. height: math.unit(0.52, "feet"),
  38974. name: "Paw",
  38975. image: {
  38976. source: "./media/characters/orion/paw.svg"
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Normal",
  38983. height: math.unit(2 + 5/12, "feet"),
  38984. default: true
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(5 + 10/12, "feet"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/vera/front.svg",
  38996. extra: 1680/1575,
  38997. bottom: 49/1729
  38998. }
  38999. },
  39000. back: {
  39001. height: math.unit(5 + 10/12, "feet"),
  39002. name: "Back",
  39003. image: {
  39004. source: "./media/characters/vera/back.svg",
  39005. extra: 1700/1588,
  39006. bottom: 18/1718
  39007. }
  39008. },
  39009. arcanine: {
  39010. height: math.unit(6 + 8/12, "feet"),
  39011. name: "Arcanine",
  39012. image: {
  39013. source: "./media/characters/vera/arcanine.svg",
  39014. extra: 1590/1511,
  39015. bottom: 71/1661
  39016. }
  39017. },
  39018. maw: {
  39019. height: math.unit(0.82, "feet"),
  39020. name: "Maw",
  39021. image: {
  39022. source: "./media/characters/vera/maw.svg"
  39023. }
  39024. },
  39025. mawArcanine: {
  39026. height: math.unit(0.97, "feet"),
  39027. name: "Maw (Arcanine)",
  39028. image: {
  39029. source: "./media/characters/vera/maw-arcanine.svg"
  39030. }
  39031. },
  39032. paw: {
  39033. height: math.unit(0.75, "feet"),
  39034. name: "Paw",
  39035. image: {
  39036. source: "./media/characters/vera/paw.svg"
  39037. }
  39038. },
  39039. pawprint: {
  39040. height: math.unit(0.52, "feet"),
  39041. name: "Pawprint",
  39042. image: {
  39043. source: "./media/characters/vera/pawprint.svg"
  39044. }
  39045. },
  39046. },
  39047. [
  39048. {
  39049. name: "Normal",
  39050. height: math.unit(5 + 10/12, "feet"),
  39051. default: true
  39052. },
  39053. {
  39054. name: "Macro",
  39055. height: math.unit(75, "feet")
  39056. },
  39057. ]
  39058. ))
  39059. characterMakers.push(() => makeCharacter(
  39060. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39061. {
  39062. front: {
  39063. height: math.unit(4, "feet"),
  39064. weight: math.unit(40, "lb"),
  39065. name: "Front",
  39066. image: {
  39067. source: "./media/characters/orvan-rabbit/front.svg",
  39068. extra: 1896/1642,
  39069. bottom: 29/1925
  39070. }
  39071. },
  39072. },
  39073. [
  39074. {
  39075. name: "Normal",
  39076. height: math.unit(4, "feet"),
  39077. default: true
  39078. },
  39079. ]
  39080. ))
  39081. characterMakers.push(() => makeCharacter(
  39082. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39083. {
  39084. front: {
  39085. height: math.unit(6, "feet"),
  39086. weight: math.unit(168, "lb"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/lisa/front.svg",
  39090. extra: 2065/1867,
  39091. bottom: 46/2111
  39092. }
  39093. },
  39094. back: {
  39095. height: math.unit(6, "feet"),
  39096. weight: math.unit(168, "lb"),
  39097. name: "Back",
  39098. image: {
  39099. source: "./media/characters/lisa/back.svg",
  39100. extra: 1982/1838,
  39101. bottom: 29/2011
  39102. }
  39103. },
  39104. maw: {
  39105. height: math.unit(0.81, "feet"),
  39106. name: "Maw",
  39107. image: {
  39108. source: "./media/characters/lisa/maw.svg"
  39109. }
  39110. },
  39111. paw: {
  39112. height: math.unit(0.9, "feet"),
  39113. name: "Paw",
  39114. image: {
  39115. source: "./media/characters/lisa/paw.svg"
  39116. }
  39117. },
  39118. caribousune: {
  39119. height: math.unit(7 + 2/12, "feet"),
  39120. weight: math.unit(268, "lb"),
  39121. name: "Caribousune",
  39122. image: {
  39123. source: "./media/characters/lisa/caribousune.svg",
  39124. extra: 1843/1633,
  39125. bottom: 29/1872
  39126. }
  39127. },
  39128. frontCaribousune: {
  39129. height: math.unit(7 + 2/12, "feet"),
  39130. weight: math.unit(268, "lb"),
  39131. name: "Front (Caribousune)",
  39132. image: {
  39133. source: "./media/characters/lisa/front-caribousune.svg",
  39134. extra: 1818/1638,
  39135. bottom: 52/1870
  39136. }
  39137. },
  39138. sideCaribousune: {
  39139. height: math.unit(7 + 2/12, "feet"),
  39140. weight: math.unit(268, "lb"),
  39141. name: "Side (Caribousune)",
  39142. image: {
  39143. source: "./media/characters/lisa/side-caribousune.svg",
  39144. extra: 1851/1635,
  39145. bottom: 16/1867
  39146. }
  39147. },
  39148. backCaribousune: {
  39149. height: math.unit(7 + 2/12, "feet"),
  39150. weight: math.unit(268, "lb"),
  39151. name: "Back (Caribousune)",
  39152. image: {
  39153. source: "./media/characters/lisa/back-caribousune.svg",
  39154. extra: 1801/1604,
  39155. bottom: 44/1845
  39156. }
  39157. },
  39158. caribou: {
  39159. height: math.unit(7 + 2/12, "feet"),
  39160. weight: math.unit(268, "lb"),
  39161. name: "Caribou",
  39162. image: {
  39163. source: "./media/characters/lisa/caribou.svg",
  39164. extra: 1843/1633,
  39165. bottom: 29/1872
  39166. }
  39167. },
  39168. frontCaribou: {
  39169. height: math.unit(7 + 2/12, "feet"),
  39170. weight: math.unit(268, "lb"),
  39171. name: "Front (Caribou)",
  39172. image: {
  39173. source: "./media/characters/lisa/front-caribou.svg",
  39174. extra: 1818/1638,
  39175. bottom: 52/1870
  39176. }
  39177. },
  39178. sideCaribou: {
  39179. height: math.unit(7 + 2/12, "feet"),
  39180. weight: math.unit(268, "lb"),
  39181. name: "Side (Caribou)",
  39182. image: {
  39183. source: "./media/characters/lisa/side-caribou.svg",
  39184. extra: 1851/1635,
  39185. bottom: 16/1867
  39186. }
  39187. },
  39188. backCaribou: {
  39189. height: math.unit(7 + 2/12, "feet"),
  39190. weight: math.unit(268, "lb"),
  39191. name: "Back (Caribou)",
  39192. image: {
  39193. source: "./media/characters/lisa/back-caribou.svg",
  39194. extra: 1801/1604,
  39195. bottom: 44/1845
  39196. }
  39197. },
  39198. mawCaribou: {
  39199. height: math.unit(1.45, "feet"),
  39200. name: "Maw (Caribou)",
  39201. image: {
  39202. source: "./media/characters/lisa/maw-caribou.svg"
  39203. }
  39204. },
  39205. mawCaribousune: {
  39206. height: math.unit(1.45, "feet"),
  39207. name: "Maw (Caribousune)",
  39208. image: {
  39209. source: "./media/characters/lisa/maw-caribousune.svg"
  39210. }
  39211. },
  39212. pawCaribousune: {
  39213. height: math.unit(1.61, "feet"),
  39214. name: "Paw (Caribou)",
  39215. image: {
  39216. source: "./media/characters/lisa/paw-caribousune.svg"
  39217. }
  39218. },
  39219. },
  39220. [
  39221. {
  39222. name: "Normal",
  39223. height: math.unit(6, "feet")
  39224. },
  39225. {
  39226. name: "God Size",
  39227. height: math.unit(72, "feet"),
  39228. default: true
  39229. },
  39230. {
  39231. name: "Towering",
  39232. height: math.unit(288, "feet")
  39233. },
  39234. {
  39235. name: "City Size",
  39236. height: math.unit(48384, "feet")
  39237. },
  39238. {
  39239. name: "Continental",
  39240. height: math.unit(4200, "miles")
  39241. },
  39242. {
  39243. name: "Planet Eater",
  39244. height: math.unit(42, "earths")
  39245. },
  39246. {
  39247. name: "Star Swallower",
  39248. height: math.unit(42, "solarradii")
  39249. },
  39250. {
  39251. name: "System Swallower",
  39252. height: math.unit(84000, "AU")
  39253. },
  39254. {
  39255. name: "Galaxy Gobbler",
  39256. height: math.unit(42, "galaxies")
  39257. },
  39258. {
  39259. name: "Universe Devourer",
  39260. height: math.unit(42, "universes")
  39261. },
  39262. {
  39263. name: "Multiverse Muncher",
  39264. height: math.unit(42, "multiverses")
  39265. },
  39266. ]
  39267. ))
  39268. characterMakers.push(() => makeCharacter(
  39269. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39270. {
  39271. front: {
  39272. height: math.unit(36, "feet"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/shadow-rat/front.svg",
  39276. extra: 1845/1758,
  39277. bottom: 83/1928
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Macro",
  39284. height: math.unit(36, "feet"),
  39285. default: true
  39286. },
  39287. ]
  39288. ))
  39289. characterMakers.push(() => makeCharacter(
  39290. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39291. {
  39292. side: {
  39293. height: math.unit(8, "feet"),
  39294. weight: math.unit(2630, "lb"),
  39295. name: "Side",
  39296. image: {
  39297. source: "./media/characters/torallia/side.svg",
  39298. extra: 2164/2021,
  39299. bottom: 371/2535
  39300. }
  39301. },
  39302. },
  39303. [
  39304. {
  39305. name: "Mortal Interaction",
  39306. height: math.unit(8, "feet")
  39307. },
  39308. {
  39309. name: "Natural",
  39310. height: math.unit(24, "feet"),
  39311. default: true
  39312. },
  39313. {
  39314. name: "Giant",
  39315. height: math.unit(80, "feet")
  39316. },
  39317. {
  39318. name: "Kaiju",
  39319. height: math.unit(240, "feet")
  39320. },
  39321. {
  39322. name: "Macro",
  39323. height: math.unit(800, "feet")
  39324. },
  39325. {
  39326. name: "Macro+",
  39327. height: math.unit(2400, "feet")
  39328. },
  39329. {
  39330. name: "Macro++",
  39331. height: math.unit(8000, "feet")
  39332. },
  39333. {
  39334. name: "City-Crushing",
  39335. height: math.unit(24000, "feet")
  39336. },
  39337. {
  39338. name: "Mountain-Mashing",
  39339. height: math.unit(80000, "feet")
  39340. },
  39341. {
  39342. name: "District Demolisher",
  39343. height: math.unit(240000, "feet")
  39344. },
  39345. {
  39346. name: "Tri-County Terror",
  39347. height: math.unit(800000, "feet")
  39348. },
  39349. {
  39350. name: "State Smasher",
  39351. height: math.unit(2.4e6, "feet")
  39352. },
  39353. {
  39354. name: "Nation Nemesis",
  39355. height: math.unit(8e6, "feet")
  39356. },
  39357. {
  39358. name: "Continent Cracker",
  39359. height: math.unit(2.4e7, "feet")
  39360. },
  39361. {
  39362. name: "Planet-Pillaging",
  39363. height: math.unit(8e7, "feet")
  39364. },
  39365. {
  39366. name: "Earth-Eclipsing",
  39367. height: math.unit(2.4e8, "feet")
  39368. },
  39369. {
  39370. name: "Jovian-Jostling",
  39371. height: math.unit(8e8, "feet")
  39372. },
  39373. {
  39374. name: "Gas Giant Gulper",
  39375. height: math.unit(2.4e9, "feet")
  39376. },
  39377. {
  39378. name: "Astral Annihilator",
  39379. height: math.unit(8e9, "feet")
  39380. },
  39381. {
  39382. name: "Celestial Conqueror",
  39383. height: math.unit(2.4e10, "feet")
  39384. },
  39385. {
  39386. name: "Sol-Swallowing",
  39387. height: math.unit(8e10, "feet")
  39388. },
  39389. {
  39390. name: "Hunter of the Heavens",
  39391. height: math.unit(2.4e13, "feet")
  39392. },
  39393. ]
  39394. ))
  39395. characterMakers.push(() => makeCharacter(
  39396. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39397. {
  39398. front: {
  39399. height: math.unit(6 + 8/12, "feet"),
  39400. name: "Front",
  39401. image: {
  39402. source: "./media/characters/rebecca-pawlson/front.svg",
  39403. extra: 1737/1596,
  39404. bottom: 107/1844
  39405. }
  39406. },
  39407. back: {
  39408. height: math.unit(6 + 8/12, "feet"),
  39409. name: "Back",
  39410. image: {
  39411. source: "./media/characters/rebecca-pawlson/back.svg",
  39412. extra: 1702/1523,
  39413. bottom: 86/1788
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(6 + 8/12, "feet")
  39421. },
  39422. {
  39423. name: "Mini Macro",
  39424. height: math.unit(10, "feet"),
  39425. default: true
  39426. },
  39427. {
  39428. name: "Macro",
  39429. height: math.unit(100, "feet")
  39430. },
  39431. {
  39432. name: "Mega Macro",
  39433. height: math.unit(2500, "feet")
  39434. },
  39435. {
  39436. name: "Giga Macro",
  39437. height: math.unit(50, "miles")
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39443. {
  39444. front: {
  39445. height: math.unit(7 + 6/12, "feet"),
  39446. weight: math.unit(600, "lb"),
  39447. name: "Front",
  39448. image: {
  39449. source: "./media/characters/moxie-nova/front.svg",
  39450. extra: 1734/1652,
  39451. bottom: 41/1775
  39452. }
  39453. },
  39454. },
  39455. [
  39456. {
  39457. name: "Normal",
  39458. height: math.unit(7 + 6/12, "feet"),
  39459. default: true
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39465. {
  39466. goat: {
  39467. height: math.unit(4, "feet"),
  39468. weight: math.unit(180, "lb"),
  39469. name: "Goat",
  39470. image: {
  39471. source: "./media/characters/tiffany/goat.svg",
  39472. extra: 1845/1595,
  39473. bottom: 106/1951
  39474. }
  39475. },
  39476. front: {
  39477. height: math.unit(5, "feet"),
  39478. weight: math.unit(150, "lb"),
  39479. name: "Foxcoon",
  39480. image: {
  39481. source: "./media/characters/tiffany/foxcoon.svg",
  39482. extra: 1941/1845,
  39483. bottom: 58/1999
  39484. }
  39485. },
  39486. },
  39487. [
  39488. {
  39489. name: "Normal",
  39490. height: math.unit(5, "feet"),
  39491. default: true
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39497. {
  39498. front: {
  39499. height: math.unit(8, "feet"),
  39500. weight: math.unit(300, "lb"),
  39501. name: "Front",
  39502. image: {
  39503. source: "./media/characters/raxinath/front.svg",
  39504. extra: 1407/1309,
  39505. bottom: 39/1446
  39506. }
  39507. },
  39508. back: {
  39509. height: math.unit(8, "feet"),
  39510. weight: math.unit(300, "lb"),
  39511. name: "Back",
  39512. image: {
  39513. source: "./media/characters/raxinath/back.svg",
  39514. extra: 1405/1315,
  39515. bottom: 9/1414
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Speck",
  39522. height: math.unit(0.5, "nm")
  39523. },
  39524. {
  39525. name: "Micro",
  39526. height: math.unit(3, "inches")
  39527. },
  39528. {
  39529. name: "Kobold",
  39530. height: math.unit(3, "feet")
  39531. },
  39532. {
  39533. name: "Normal",
  39534. height: math.unit(8, "feet"),
  39535. default: true
  39536. },
  39537. {
  39538. name: "Giant",
  39539. height: math.unit(50, "feet")
  39540. },
  39541. {
  39542. name: "Macro",
  39543. height: math.unit(1000, "feet")
  39544. },
  39545. {
  39546. name: "Megamacro",
  39547. height: math.unit(1, "mile")
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39553. {
  39554. front: {
  39555. height: math.unit(10, "feet"),
  39556. weight: math.unit(1442, "lb"),
  39557. name: "Front",
  39558. image: {
  39559. source: "./media/characters/mal-dragon/front.svg",
  39560. extra: 1515/1444,
  39561. bottom: 113/1628
  39562. }
  39563. },
  39564. back: {
  39565. height: math.unit(10, "feet"),
  39566. weight: math.unit(1442, "lb"),
  39567. name: "Back",
  39568. image: {
  39569. source: "./media/characters/mal-dragon/back.svg",
  39570. extra: 1527/1434,
  39571. bottom: 25/1552
  39572. }
  39573. },
  39574. },
  39575. [
  39576. {
  39577. name: "Mortal Interaction",
  39578. height: math.unit(10, "feet"),
  39579. default: true
  39580. },
  39581. {
  39582. name: "Large",
  39583. height: math.unit(30, "feet")
  39584. },
  39585. {
  39586. name: "Kaiju",
  39587. height: math.unit(300, "feet")
  39588. },
  39589. {
  39590. name: "Megamacro",
  39591. height: math.unit(10000, "feet")
  39592. },
  39593. {
  39594. name: "Continent Cracker",
  39595. height: math.unit(30000000, "feet")
  39596. },
  39597. {
  39598. name: "Sol-Swallowing",
  39599. height: math.unit(1e11, "feet")
  39600. },
  39601. {
  39602. name: "Light Universal",
  39603. height: math.unit(5, "universes")
  39604. },
  39605. {
  39606. name: "Universe Atoms",
  39607. height: math.unit(1.829e9, "universes")
  39608. },
  39609. {
  39610. name: "Light Multiversal",
  39611. height: math.unit(5, "multiverses")
  39612. },
  39613. {
  39614. name: "Multiverse Atoms",
  39615. height: math.unit(1.829e9, "multiverses")
  39616. },
  39617. {
  39618. name: "Fabric of Time",
  39619. height: math.unit(1e262, "multiverses")
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39625. {
  39626. front: {
  39627. height: math.unit(9, "feet"),
  39628. weight: math.unit(1050, "lb"),
  39629. name: "Front",
  39630. image: {
  39631. source: "./media/characters/tabitha/front.svg",
  39632. extra: 2083/1994,
  39633. bottom: 68/2151
  39634. }
  39635. },
  39636. },
  39637. [
  39638. {
  39639. name: "Baseline",
  39640. height: math.unit(9, "feet"),
  39641. default: true
  39642. },
  39643. {
  39644. name: "Giant",
  39645. height: math.unit(90, "feet")
  39646. },
  39647. {
  39648. name: "Macro",
  39649. height: math.unit(900, "feet")
  39650. },
  39651. {
  39652. name: "Megamacro",
  39653. height: math.unit(9000, "feet")
  39654. },
  39655. {
  39656. name: "City-Crushing",
  39657. height: math.unit(27000, "feet")
  39658. },
  39659. {
  39660. name: "Mountain-Mashing",
  39661. height: math.unit(90000, "feet")
  39662. },
  39663. {
  39664. name: "Nation Nemesis",
  39665. height: math.unit(9e6, "feet")
  39666. },
  39667. {
  39668. name: "Continent Cracker",
  39669. height: math.unit(27e6, "feet")
  39670. },
  39671. {
  39672. name: "Earth-Eclipsing",
  39673. height: math.unit(2.7e8, "feet")
  39674. },
  39675. {
  39676. name: "Gas Giant Gulper",
  39677. height: math.unit(2.7e9, "feet")
  39678. },
  39679. {
  39680. name: "Sol-Swallowing",
  39681. height: math.unit(9e10, "feet")
  39682. },
  39683. {
  39684. name: "Galaxy Gulper",
  39685. height: math.unit(9, "galaxies")
  39686. },
  39687. {
  39688. name: "Cosmos Churner",
  39689. height: math.unit(9, "universes")
  39690. },
  39691. ]
  39692. ))
  39693. characterMakers.push(() => makeCharacter(
  39694. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39695. {
  39696. front: {
  39697. height: math.unit(160, "cm"),
  39698. weight: math.unit(55, "kg"),
  39699. name: "Front",
  39700. image: {
  39701. source: "./media/characters/tow/front.svg",
  39702. extra: 1751/1722,
  39703. bottom: 74/1825
  39704. }
  39705. },
  39706. },
  39707. [
  39708. {
  39709. name: "Norm",
  39710. height: math.unit(160, "cm")
  39711. },
  39712. {
  39713. name: "Casual",
  39714. height: math.unit(3200, "m"),
  39715. default: true
  39716. },
  39717. {
  39718. name: "Show-Off",
  39719. height: math.unit(160, "km")
  39720. },
  39721. ]
  39722. ))
  39723. characterMakers.push(() => makeCharacter(
  39724. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39725. {
  39726. front: {
  39727. height: math.unit(7 + 11/12, "feet"),
  39728. weight: math.unit(342.8, "lb"),
  39729. name: "Front",
  39730. image: {
  39731. source: "./media/characters/vivian-orca-dragon/front.svg",
  39732. extra: 1890/1865,
  39733. bottom: 28/1918
  39734. }
  39735. },
  39736. },
  39737. [
  39738. {
  39739. name: "Micro",
  39740. height: math.unit(5, "inches")
  39741. },
  39742. {
  39743. name: "Normal",
  39744. height: math.unit(7 + 11/12, "feet"),
  39745. default: true
  39746. },
  39747. {
  39748. name: "Macro",
  39749. height: math.unit(395 + 7/12, "feet")
  39750. },
  39751. ]
  39752. ))
  39753. characterMakers.push(() => makeCharacter(
  39754. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39755. {
  39756. side: {
  39757. height: math.unit(10, "feet"),
  39758. weight: math.unit(1442, "lb"),
  39759. name: "Side",
  39760. image: {
  39761. source: "./media/characters/lotherakon/side.svg",
  39762. extra: 1604/1497,
  39763. bottom: 89/1693
  39764. }
  39765. },
  39766. },
  39767. [
  39768. {
  39769. name: "Mortal Interaction",
  39770. height: math.unit(10, "feet")
  39771. },
  39772. {
  39773. name: "Large",
  39774. height: math.unit(30, "feet"),
  39775. default: true
  39776. },
  39777. {
  39778. name: "Giant",
  39779. height: math.unit(100, "feet")
  39780. },
  39781. {
  39782. name: "Kaiju",
  39783. height: math.unit(300, "feet")
  39784. },
  39785. {
  39786. name: "Macro",
  39787. height: math.unit(1000, "feet")
  39788. },
  39789. {
  39790. name: "Macro+",
  39791. height: math.unit(3000, "feet")
  39792. },
  39793. {
  39794. name: "Megamacro",
  39795. height: math.unit(10000, "feet")
  39796. },
  39797. {
  39798. name: "City-Crushing",
  39799. height: math.unit(30000, "feet")
  39800. },
  39801. {
  39802. name: "Continent Cracker",
  39803. height: math.unit(30e6, "feet")
  39804. },
  39805. {
  39806. name: "Earth Eclipsing",
  39807. height: math.unit(3e8, "feet")
  39808. },
  39809. {
  39810. name: "Gas Giant Gulper",
  39811. height: math.unit(3e9, "feet")
  39812. },
  39813. {
  39814. name: "Sol-Swallowing",
  39815. height: math.unit(1e11, "feet")
  39816. },
  39817. {
  39818. name: "System Swallower",
  39819. height: math.unit(3e14, "feet")
  39820. },
  39821. {
  39822. name: "Galaxy Gulper",
  39823. height: math.unit(10, "galaxies")
  39824. },
  39825. {
  39826. name: "Light Universal",
  39827. height: math.unit(5, "universes")
  39828. },
  39829. {
  39830. name: "Universe Palm",
  39831. height: math.unit(20, "universes")
  39832. },
  39833. {
  39834. name: "Light Multiversal",
  39835. height: math.unit(5, "multiverses")
  39836. },
  39837. {
  39838. name: "Multiverse Palm",
  39839. height: math.unit(20, "multiverses")
  39840. },
  39841. {
  39842. name: "Inferno Incarnate",
  39843. height: math.unit(1e7, "multiverses")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(8, "feet"),
  39852. weight: math.unit(1200, "lb"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/malithee/front.svg",
  39856. extra: 1675/1640,
  39857. bottom: 162/1837
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Mortal Interaction",
  39864. height: math.unit(8, "feet"),
  39865. default: true
  39866. },
  39867. {
  39868. name: "Large",
  39869. height: math.unit(24, "feet")
  39870. },
  39871. {
  39872. name: "Kaiju",
  39873. height: math.unit(240, "feet")
  39874. },
  39875. {
  39876. name: "Megamacro",
  39877. height: math.unit(8000, "feet")
  39878. },
  39879. {
  39880. name: "Continent Cracker",
  39881. height: math.unit(24e6, "feet")
  39882. },
  39883. {
  39884. name: "Earth-Eclipsing",
  39885. height: math.unit(2.4e8, "feet")
  39886. },
  39887. {
  39888. name: "Sol-Swallowing",
  39889. height: math.unit(8e10, "feet")
  39890. },
  39891. {
  39892. name: "Galaxy Gulper",
  39893. height: math.unit(8, "galaxies")
  39894. },
  39895. {
  39896. name: "Light Universal",
  39897. height: math.unit(4, "universes")
  39898. },
  39899. {
  39900. name: "Universe Atoms",
  39901. height: math.unit(1.829e9, "universes")
  39902. },
  39903. {
  39904. name: "Light Multiversal",
  39905. height: math.unit(4, "multiverses")
  39906. },
  39907. {
  39908. name: "Multiverse Atoms",
  39909. height: math.unit(1.829e9, "multiverses")
  39910. },
  39911. {
  39912. name: "Nigh-Omnipresence",
  39913. height: math.unit(8e261, "multiverses")
  39914. },
  39915. ]
  39916. ))
  39917. characterMakers.push(() => makeCharacter(
  39918. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39919. {
  39920. front: {
  39921. height: math.unit(10, "feet"),
  39922. weight: math.unit(1500, "lb"),
  39923. name: "Front",
  39924. image: {
  39925. source: "./media/characters/miles-thestia/front.svg",
  39926. extra: 1812/1727,
  39927. bottom: 86/1898
  39928. }
  39929. },
  39930. back: {
  39931. height: math.unit(10, "feet"),
  39932. weight: math.unit(1500, "lb"),
  39933. name: "Back",
  39934. image: {
  39935. source: "./media/characters/miles-thestia/back.svg",
  39936. extra: 1799/1690,
  39937. bottom: 47/1846
  39938. }
  39939. },
  39940. frontNsfw: {
  39941. height: math.unit(10, "feet"),
  39942. weight: math.unit(1500, "lb"),
  39943. name: "Front (NSFW)",
  39944. image: {
  39945. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39946. extra: 1812/1727,
  39947. bottom: 86/1898
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "Mini-Macro",
  39954. height: math.unit(10, "feet"),
  39955. default: true
  39956. },
  39957. ]
  39958. ))
  39959. characterMakers.push(() => makeCharacter(
  39960. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39961. {
  39962. front: {
  39963. height: math.unit(25, "feet"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/titan-s-wulf/front.svg",
  39967. extra: 1560/1484,
  39968. bottom: 76/1636
  39969. }
  39970. },
  39971. },
  39972. [
  39973. {
  39974. name: "Smallest",
  39975. height: math.unit(25, "feet"),
  39976. default: true
  39977. },
  39978. {
  39979. name: "Normal",
  39980. height: math.unit(200, "feet")
  39981. },
  39982. {
  39983. name: "Macro",
  39984. height: math.unit(200000, "feet")
  39985. },
  39986. {
  39987. name: "Multiversal Original",
  39988. height: math.unit(10000, "multiverses")
  39989. },
  39990. ]
  39991. ))
  39992. characterMakers.push(() => makeCharacter(
  39993. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39994. {
  39995. front: {
  39996. height: math.unit(8, "feet"),
  39997. weight: math.unit(553, "lb"),
  39998. name: "Front",
  39999. image: {
  40000. source: "./media/characters/tawendeh/front.svg",
  40001. extra: 2365/2268,
  40002. bottom: 83/2448
  40003. }
  40004. },
  40005. frontClothed: {
  40006. height: math.unit(8, "feet"),
  40007. weight: math.unit(553, "lb"),
  40008. name: "Front (Clothed)",
  40009. image: {
  40010. source: "./media/characters/tawendeh/front-clothed.svg",
  40011. extra: 2365/2268,
  40012. bottom: 83/2448
  40013. }
  40014. },
  40015. back: {
  40016. height: math.unit(8, "feet"),
  40017. weight: math.unit(553, "lb"),
  40018. name: "Back",
  40019. image: {
  40020. source: "./media/characters/tawendeh/back.svg",
  40021. extra: 2397/2294,
  40022. bottom: 42/2439
  40023. }
  40024. },
  40025. },
  40026. [
  40027. {
  40028. name: "Mortal Interaction",
  40029. height: math.unit(8, "feet"),
  40030. default: true
  40031. },
  40032. {
  40033. name: "Giant",
  40034. height: math.unit(80, "feet")
  40035. },
  40036. {
  40037. name: "Macro",
  40038. height: math.unit(800, "feet")
  40039. },
  40040. {
  40041. name: "Megamacro",
  40042. height: math.unit(8000, "feet")
  40043. },
  40044. {
  40045. name: "City-Crushing",
  40046. height: math.unit(24000, "feet")
  40047. },
  40048. {
  40049. name: "Mountain-Mashing",
  40050. height: math.unit(80000, "feet")
  40051. },
  40052. {
  40053. name: "Nation Nemesis",
  40054. height: math.unit(8e6, "feet")
  40055. },
  40056. {
  40057. name: "Continent Cracker",
  40058. height: math.unit(24e6, "feet")
  40059. },
  40060. {
  40061. name: "Earth-Eclipsing",
  40062. height: math.unit(2.4e8, "feet")
  40063. },
  40064. {
  40065. name: "Gas Giant Gulper",
  40066. height: math.unit(2.4e9, "feet")
  40067. },
  40068. {
  40069. name: "Sol-Swallowing",
  40070. height: math.unit(8e10, "feet")
  40071. },
  40072. {
  40073. name: "Galaxy Gulper",
  40074. height: math.unit(8, "galaxies")
  40075. },
  40076. {
  40077. name: "Cosmos Churner",
  40078. height: math.unit(8, "universes")
  40079. },
  40080. {
  40081. name: "Omnipotent Otter",
  40082. height: math.unit(80, "universes")
  40083. },
  40084. ]
  40085. ))
  40086. characterMakers.push(() => makeCharacter(
  40087. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40088. {
  40089. front: {
  40090. height: math.unit(2.6, "meters"),
  40091. weight: math.unit(900, "kg"),
  40092. name: "Front",
  40093. image: {
  40094. source: "./media/characters/neesha/front.svg",
  40095. extra: 1803/1653,
  40096. bottom: 128/1931
  40097. }
  40098. },
  40099. },
  40100. [
  40101. {
  40102. name: "Normal",
  40103. height: math.unit(2.6, "meters"),
  40104. default: true
  40105. },
  40106. {
  40107. name: "Macro",
  40108. height: math.unit(50, "meters")
  40109. },
  40110. ]
  40111. ))
  40112. characterMakers.push(() => makeCharacter(
  40113. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40114. {
  40115. front: {
  40116. height: math.unit(5, "feet"),
  40117. weight: math.unit(185, "lb"),
  40118. name: "Front",
  40119. image: {
  40120. source: "./media/characters/kyera/front.svg",
  40121. extra: 1875/1790,
  40122. bottom: 96/1971
  40123. }
  40124. },
  40125. },
  40126. [
  40127. {
  40128. name: "Normal",
  40129. height: math.unit(5, "feet"),
  40130. default: true
  40131. },
  40132. ]
  40133. ))
  40134. characterMakers.push(() => makeCharacter(
  40135. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40136. {
  40137. front: {
  40138. height: math.unit(7 + 6/12, "feet"),
  40139. weight: math.unit(540, "lb"),
  40140. name: "Front",
  40141. image: {
  40142. source: "./media/characters/yuko/front.svg",
  40143. extra: 1282/1222,
  40144. bottom: 101/1383
  40145. }
  40146. },
  40147. frontClothed: {
  40148. height: math.unit(7 + 6/12, "feet"),
  40149. weight: math.unit(540, "lb"),
  40150. name: "Front (Clothed)",
  40151. image: {
  40152. source: "./media/characters/yuko/front-clothed.svg",
  40153. extra: 1282/1222,
  40154. bottom: 101/1383
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Normal",
  40161. height: math.unit(7 + 6/12, "feet"),
  40162. default: true
  40163. },
  40164. {
  40165. name: "Macro",
  40166. height: math.unit(26 + 9/12, "feet")
  40167. },
  40168. {
  40169. name: "Megamacro",
  40170. height: math.unit(300, "feet")
  40171. },
  40172. {
  40173. name: "Gigamacro",
  40174. height: math.unit(5000, "feet")
  40175. },
  40176. {
  40177. name: "Planetary",
  40178. height: math.unit(10000, "miles")
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(8 + 2/12, "feet"),
  40187. weight: math.unit(600, "lb"),
  40188. name: "Front",
  40189. image: {
  40190. source: "./media/characters/deam-nitrel/front.svg",
  40191. extra: 1308/1234,
  40192. bottom: 125/1433
  40193. }
  40194. },
  40195. },
  40196. [
  40197. {
  40198. name: "Normal",
  40199. height: math.unit(8 + 2/12, "feet"),
  40200. default: true
  40201. },
  40202. ]
  40203. ))
  40204. characterMakers.push(() => makeCharacter(
  40205. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40206. {
  40207. front: {
  40208. height: math.unit(6.1, "feet"),
  40209. weight: math.unit(180, "lb"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/skyress/front.svg",
  40213. extra: 1045/915,
  40214. bottom: 28/1073
  40215. }
  40216. },
  40217. maw: {
  40218. height: math.unit(1, "feet"),
  40219. name: "Maw",
  40220. image: {
  40221. source: "./media/characters/skyress/maw.svg"
  40222. }
  40223. },
  40224. },
  40225. [
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(6.1, "feet"),
  40229. default: true
  40230. },
  40231. {
  40232. name: "Macro",
  40233. height: math.unit(200, "feet")
  40234. },
  40235. ]
  40236. ))
  40237. characterMakers.push(() => makeCharacter(
  40238. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40239. {
  40240. front: {
  40241. height: math.unit(4 + 2/12, "feet"),
  40242. weight: math.unit(40, "kg"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/amethyst-jones/front.svg",
  40246. extra: 1220/1150,
  40247. bottom: 101/1321
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Normal",
  40254. height: math.unit(4 + 2/12, "feet"),
  40255. default: true
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(1.7, "m"),
  40264. weight: math.unit(135, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/jade/front.svg",
  40268. extra: 1818/1767,
  40269. bottom: 32/1850
  40270. }
  40271. },
  40272. back: {
  40273. height: math.unit(1.7, "m"),
  40274. weight: math.unit(135, "lb"),
  40275. name: "Back",
  40276. image: {
  40277. source: "./media/characters/jade/back.svg",
  40278. extra: 1869/1809,
  40279. bottom: 35/1904
  40280. }
  40281. },
  40282. hand: {
  40283. height: math.unit(0.24, "m"),
  40284. name: "Hand",
  40285. image: {
  40286. source: "./media/characters/jade/hand.svg"
  40287. }
  40288. },
  40289. foot: {
  40290. height: math.unit(0.263, "m"),
  40291. name: "Foot",
  40292. image: {
  40293. source: "./media/characters/jade/foot.svg"
  40294. }
  40295. },
  40296. dick: {
  40297. height: math.unit(0.47, "m"),
  40298. name: "Dick",
  40299. image: {
  40300. source: "./media/characters/jade/dick.svg"
  40301. }
  40302. },
  40303. },
  40304. [
  40305. {
  40306. name: "Micro",
  40307. height: math.unit(22, "cm")
  40308. },
  40309. {
  40310. name: "Normal",
  40311. height: math.unit(1.7, "m"),
  40312. default: true
  40313. },
  40314. {
  40315. name: "Macro",
  40316. height: math.unit(152, "m")
  40317. },
  40318. ]
  40319. ))
  40320. characterMakers.push(() => makeCharacter(
  40321. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40322. {
  40323. front: {
  40324. height: math.unit(100, "miles"),
  40325. weight: math.unit(20000, "tons"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/cookie/front.svg",
  40329. extra: 1125/1070,
  40330. bottom: 30/1155
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Big",
  40337. height: math.unit(50, "feet")
  40338. },
  40339. {
  40340. name: "Macro",
  40341. height: math.unit(100, "miles"),
  40342. default: true
  40343. },
  40344. {
  40345. name: "Megamacro",
  40346. height: math.unit(90000, "miles")
  40347. },
  40348. ]
  40349. ))
  40350. characterMakers.push(() => makeCharacter(
  40351. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40352. {
  40353. front: {
  40354. height: math.unit(6, "feet"),
  40355. weight: math.unit(145, "lb"),
  40356. name: "Front",
  40357. image: {
  40358. source: "./media/characters/farzian/front.svg",
  40359. extra: 1902/1693,
  40360. bottom: 108/2010
  40361. }
  40362. },
  40363. },
  40364. [
  40365. {
  40366. name: "Macro",
  40367. height: math.unit(500, "feet"),
  40368. default: true
  40369. },
  40370. ]
  40371. ))
  40372. characterMakers.push(() => makeCharacter(
  40373. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40374. {
  40375. front: {
  40376. height: math.unit(3 + 6/12, "feet"),
  40377. weight: math.unit(50, "lb"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/kimberly-tilson/front.svg",
  40381. extra: 1400/1322,
  40382. bottom: 36/1436
  40383. }
  40384. },
  40385. back: {
  40386. height: math.unit(3 + 6/12, "feet"),
  40387. weight: math.unit(50, "lb"),
  40388. name: "Back",
  40389. image: {
  40390. source: "./media/characters/kimberly-tilson/back.svg",
  40391. extra: 1370/1307,
  40392. bottom: 20/1390
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Normal",
  40399. height: math.unit(3 + 6/12, "feet"),
  40400. default: true
  40401. },
  40402. ]
  40403. ))
  40404. characterMakers.push(() => makeCharacter(
  40405. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40406. {
  40407. front: {
  40408. height: math.unit(1148, "feet"),
  40409. weight: math.unit(34057, "lb"),
  40410. name: "Front",
  40411. image: {
  40412. source: "./media/characters/harthos/front.svg",
  40413. extra: 1391/1339,
  40414. bottom: 13/1404
  40415. }
  40416. },
  40417. },
  40418. [
  40419. {
  40420. name: "Macro",
  40421. height: math.unit(1148, "feet"),
  40422. default: true
  40423. },
  40424. ]
  40425. ))
  40426. characterMakers.push(() => makeCharacter(
  40427. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40428. {
  40429. front: {
  40430. height: math.unit(15, "feet"),
  40431. name: "Front",
  40432. image: {
  40433. source: "./media/characters/hypatia/front.svg",
  40434. extra: 1653/1591,
  40435. bottom: 79/1732
  40436. }
  40437. },
  40438. },
  40439. [
  40440. {
  40441. name: "Normal",
  40442. height: math.unit(15, "feet")
  40443. },
  40444. {
  40445. name: "Small",
  40446. height: math.unit(300, "feet")
  40447. },
  40448. {
  40449. name: "Macro",
  40450. height: math.unit(2500, "feet"),
  40451. default: true
  40452. },
  40453. {
  40454. name: "Mega Macro",
  40455. height: math.unit(1500, "miles")
  40456. },
  40457. {
  40458. name: "Giga Macro",
  40459. height: math.unit(1.5e6, "miles")
  40460. },
  40461. ]
  40462. ))
  40463. characterMakers.push(() => makeCharacter(
  40464. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40465. {
  40466. front: {
  40467. height: math.unit(6, "feet"),
  40468. weight: math.unit(200, "lb"),
  40469. name: "Front",
  40470. image: {
  40471. source: "./media/characters/wulver/front.svg",
  40472. extra: 1724/1632,
  40473. bottom: 130/1854
  40474. }
  40475. },
  40476. frontNsfw: {
  40477. height: math.unit(6, "feet"),
  40478. weight: math.unit(200, "lb"),
  40479. name: "Front (NSFW)",
  40480. image: {
  40481. source: "./media/characters/wulver/front-nsfw.svg",
  40482. extra: 1724/1632,
  40483. bottom: 130/1854
  40484. }
  40485. },
  40486. },
  40487. [
  40488. {
  40489. name: "Human-Sized",
  40490. height: math.unit(6, "feet")
  40491. },
  40492. {
  40493. name: "Normal",
  40494. height: math.unit(4, "meters"),
  40495. default: true
  40496. },
  40497. {
  40498. name: "Large",
  40499. height: math.unit(6, "m")
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(7, "feet"),
  40508. name: "Front",
  40509. image: {
  40510. source: "./media/characters/maru/front.svg",
  40511. extra: 1595/1570,
  40512. bottom: 0/1595
  40513. }
  40514. },
  40515. },
  40516. [
  40517. {
  40518. name: "Normal",
  40519. height: math.unit(7, "feet"),
  40520. default: true
  40521. },
  40522. {
  40523. name: "Macro",
  40524. height: math.unit(700, "feet")
  40525. },
  40526. {
  40527. name: "Mega Macro",
  40528. height: math.unit(25, "miles")
  40529. },
  40530. ]
  40531. ))
  40532. characterMakers.push(() => makeCharacter(
  40533. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40534. {
  40535. front: {
  40536. height: math.unit(6, "feet"),
  40537. weight: math.unit(170, "lb"),
  40538. name: "Front",
  40539. image: {
  40540. source: "./media/characters/xenon/front.svg",
  40541. extra: 1376/1305,
  40542. bottom: 56/1432
  40543. }
  40544. },
  40545. back: {
  40546. height: math.unit(6, "feet"),
  40547. weight: math.unit(170, "lb"),
  40548. name: "Back",
  40549. image: {
  40550. source: "./media/characters/xenon/back.svg",
  40551. extra: 1328/1259,
  40552. bottom: 95/1423
  40553. }
  40554. },
  40555. maw: {
  40556. height: math.unit(0.52, "feet"),
  40557. name: "Maw",
  40558. image: {
  40559. source: "./media/characters/xenon/maw.svg"
  40560. }
  40561. },
  40562. hand: {
  40563. height: math.unit(0.82, "feet"),
  40564. name: "Hand",
  40565. image: {
  40566. source: "./media/characters/xenon/hand.svg"
  40567. }
  40568. },
  40569. foot: {
  40570. height: math.unit(1.13, "feet"),
  40571. name: "Foot",
  40572. image: {
  40573. source: "./media/characters/xenon/foot.svg"
  40574. }
  40575. },
  40576. },
  40577. [
  40578. {
  40579. name: "Micro",
  40580. height: math.unit(0.8, "inches")
  40581. },
  40582. {
  40583. name: "Normal",
  40584. height: math.unit(6, "feet")
  40585. },
  40586. {
  40587. name: "Macro",
  40588. height: math.unit(50, "feet"),
  40589. default: true
  40590. },
  40591. {
  40592. name: "Macro+",
  40593. height: math.unit(250, "feet")
  40594. },
  40595. {
  40596. name: "Megamacro",
  40597. height: math.unit(1500, "feet")
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(7 + 5/12, "feet"),
  40606. name: "Front",
  40607. image: {
  40608. source: "./media/characters/zane/front.svg",
  40609. extra: 1260/1203,
  40610. bottom: 94/1354
  40611. }
  40612. },
  40613. back: {
  40614. height: math.unit(5.05, "feet"),
  40615. name: "Back",
  40616. image: {
  40617. source: "./media/characters/zane/back.svg",
  40618. extra: 893/829,
  40619. bottom: 30/923
  40620. }
  40621. },
  40622. werewolf: {
  40623. height: math.unit(11, "feet"),
  40624. name: "Werewolf",
  40625. image: {
  40626. source: "./media/characters/zane/werewolf.svg",
  40627. extra: 1383/1323,
  40628. bottom: 89/1472
  40629. }
  40630. },
  40631. foot: {
  40632. height: math.unit(1.46, "feet"),
  40633. name: "Foot",
  40634. image: {
  40635. source: "./media/characters/zane/foot.svg"
  40636. }
  40637. },
  40638. footFront: {
  40639. height: math.unit(0.784, "feet"),
  40640. name: "Foot (Front)",
  40641. image: {
  40642. source: "./media/characters/zane/foot-front.svg"
  40643. }
  40644. },
  40645. dick: {
  40646. height: math.unit(1.95, "feet"),
  40647. name: "Dick",
  40648. image: {
  40649. source: "./media/characters/zane/dick.svg"
  40650. }
  40651. },
  40652. dickWerewolf: {
  40653. height: math.unit(3.77, "feet"),
  40654. name: "Dick (Werewolf)",
  40655. image: {
  40656. source: "./media/characters/zane/dick.svg"
  40657. }
  40658. },
  40659. },
  40660. [
  40661. {
  40662. name: "Normal",
  40663. height: math.unit(7 + 5/12, "feet"),
  40664. default: true
  40665. },
  40666. ]
  40667. ))
  40668. characterMakers.push(() => makeCharacter(
  40669. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40670. {
  40671. front: {
  40672. height: math.unit(6 + 2/12, "feet"),
  40673. weight: math.unit(284, "lb"),
  40674. name: "Front",
  40675. image: {
  40676. source: "./media/characters/benni-desparque/front.svg",
  40677. extra: 1353/1126,
  40678. bottom: 69/1422
  40679. }
  40680. },
  40681. },
  40682. [
  40683. {
  40684. name: "Civilian",
  40685. height: math.unit(6 + 2/12, "feet")
  40686. },
  40687. {
  40688. name: "Normal",
  40689. height: math.unit(98, "feet"),
  40690. default: true
  40691. },
  40692. {
  40693. name: "Kaiju Fighter",
  40694. height: math.unit(268, "feet")
  40695. },
  40696. ]
  40697. ))
  40698. characterMakers.push(() => makeCharacter(
  40699. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40700. {
  40701. front: {
  40702. height: math.unit(5, "feet"),
  40703. weight: math.unit(105, "lb"),
  40704. name: "Front",
  40705. image: {
  40706. source: "./media/characters/maxine/front.svg",
  40707. extra: 1386/1250,
  40708. bottom: 71/1457
  40709. }
  40710. },
  40711. },
  40712. [
  40713. {
  40714. name: "Normal",
  40715. height: math.unit(5, "feet"),
  40716. default: true
  40717. },
  40718. ]
  40719. ))
  40720. characterMakers.push(() => makeCharacter(
  40721. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40722. {
  40723. front: {
  40724. height: math.unit(11 + 7/12, "feet"),
  40725. weight: math.unit(9576, "lb"),
  40726. name: "Front",
  40727. image: {
  40728. source: "./media/characters/scaly/front.svg",
  40729. extra: 888/867,
  40730. bottom: 36/924
  40731. }
  40732. },
  40733. },
  40734. [
  40735. {
  40736. name: "Normal",
  40737. height: math.unit(11 + 7/12, "feet"),
  40738. default: true
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40744. {
  40745. front: {
  40746. height: math.unit(6 + 3/12, "feet"),
  40747. name: "Front",
  40748. image: {
  40749. source: "./media/characters/saelria/front.svg",
  40750. extra: 1243/1138,
  40751. bottom: 46/1289
  40752. }
  40753. },
  40754. },
  40755. [
  40756. {
  40757. name: "Micro",
  40758. height: math.unit(6, "inches"),
  40759. },
  40760. {
  40761. name: "Normal",
  40762. height: math.unit(6 + 3/12, "feet"),
  40763. default: true
  40764. },
  40765. {
  40766. name: "Macro",
  40767. height: math.unit(25, "feet")
  40768. },
  40769. ]
  40770. ))
  40771. characterMakers.push(() => makeCharacter(
  40772. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40773. {
  40774. front: {
  40775. height: math.unit(80, "meters"),
  40776. weight: math.unit(7000, "tonnes"),
  40777. name: "Front",
  40778. image: {
  40779. source: "./media/characters/tef/front.svg",
  40780. extra: 2036/1991,
  40781. bottom: 54/2090
  40782. }
  40783. },
  40784. back: {
  40785. height: math.unit(80, "meters"),
  40786. weight: math.unit(7000, "tonnes"),
  40787. name: "Back",
  40788. image: {
  40789. source: "./media/characters/tef/back.svg",
  40790. extra: 2036/1991,
  40791. bottom: 54/2090
  40792. }
  40793. },
  40794. },
  40795. [
  40796. {
  40797. name: "Macro",
  40798. height: math.unit(80, "meters"),
  40799. default: true
  40800. },
  40801. ]
  40802. ))
  40803. characterMakers.push(() => makeCharacter(
  40804. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40805. {
  40806. front: {
  40807. height: math.unit(13, "feet"),
  40808. weight: math.unit(6, "tons"),
  40809. name: "Front",
  40810. image: {
  40811. source: "./media/characters/rover/front.svg",
  40812. extra: 1233/1156,
  40813. bottom: 50/1283
  40814. }
  40815. },
  40816. back: {
  40817. height: math.unit(13, "feet"),
  40818. weight: math.unit(6, "tons"),
  40819. name: "Back",
  40820. image: {
  40821. source: "./media/characters/rover/back.svg",
  40822. extra: 1327/1258,
  40823. bottom: 39/1366
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Normal",
  40830. height: math.unit(13, "feet"),
  40831. default: true
  40832. },
  40833. {
  40834. name: "Macro",
  40835. height: math.unit(1300, "feet")
  40836. },
  40837. {
  40838. name: "Megamacro",
  40839. height: math.unit(1300, "miles")
  40840. },
  40841. {
  40842. name: "Gigamacro",
  40843. height: math.unit(1300000, "miles")
  40844. },
  40845. ]
  40846. ))
  40847. characterMakers.push(() => makeCharacter(
  40848. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40849. {
  40850. front: {
  40851. height: math.unit(6, "feet"),
  40852. weight: math.unit(150, "lb"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/ariz/front.svg",
  40856. extra: 1401/1346,
  40857. bottom: 5/1406
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Normal",
  40864. height: math.unit(10, "feet"),
  40865. default: true
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(6, "feet"),
  40874. weight: math.unit(140, "lb"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/sigrun/front.svg",
  40878. extra: 1418/1359,
  40879. bottom: 27/1445
  40880. }
  40881. },
  40882. },
  40883. [
  40884. {
  40885. name: "Macro",
  40886. height: math.unit(35, "feet"),
  40887. default: true
  40888. },
  40889. ]
  40890. ))
  40891. characterMakers.push(() => makeCharacter(
  40892. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40893. {
  40894. front: {
  40895. height: math.unit(6, "feet"),
  40896. weight: math.unit(150, "lb"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/numin/front.svg",
  40900. extra: 1433/1388,
  40901. bottom: 12/1445
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Macro",
  40908. height: math.unit(21.5, "km"),
  40909. default: true
  40910. },
  40911. ]
  40912. ))
  40913. characterMakers.push(() => makeCharacter(
  40914. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40915. {
  40916. front: {
  40917. height: math.unit(6, "feet"),
  40918. weight: math.unit(463, "lb"),
  40919. name: "Front",
  40920. image: {
  40921. source: "./media/characters/melwa/front.svg",
  40922. extra: 1307/1248,
  40923. bottom: 93/1400
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Macro",
  40930. height: math.unit(50, "meters"),
  40931. default: true
  40932. },
  40933. ]
  40934. ))
  40935. characterMakers.push(() => makeCharacter(
  40936. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40937. {
  40938. front: {
  40939. height: math.unit(325, "feet"),
  40940. name: "Front",
  40941. image: {
  40942. source: "./media/characters/zorkaiju/front.svg",
  40943. extra: 1955/1814,
  40944. bottom: 40/1995
  40945. }
  40946. },
  40947. frontExtended: {
  40948. height: math.unit(325, "feet"),
  40949. name: "Front (Extended)",
  40950. image: {
  40951. source: "./media/characters/zorkaiju/front-extended.svg",
  40952. extra: 1955/1814,
  40953. bottom: 40/1995
  40954. }
  40955. },
  40956. side: {
  40957. height: math.unit(325, "feet"),
  40958. name: "Side",
  40959. image: {
  40960. source: "./media/characters/zorkaiju/side.svg",
  40961. extra: 1495/1396,
  40962. bottom: 17/1512
  40963. }
  40964. },
  40965. sideExtended: {
  40966. height: math.unit(325, "feet"),
  40967. name: "Side (Extended)",
  40968. image: {
  40969. source: "./media/characters/zorkaiju/side-extended.svg",
  40970. extra: 1495/1396,
  40971. bottom: 17/1512
  40972. }
  40973. },
  40974. back: {
  40975. height: math.unit(325, "feet"),
  40976. name: "Back",
  40977. image: {
  40978. source: "./media/characters/zorkaiju/back.svg",
  40979. extra: 1959/1821,
  40980. bottom: 31/1990
  40981. }
  40982. },
  40983. backExtended: {
  40984. height: math.unit(325, "feet"),
  40985. name: "Back (Extended)",
  40986. image: {
  40987. source: "./media/characters/zorkaiju/back-extended.svg",
  40988. extra: 1959/1821,
  40989. bottom: 31/1990
  40990. }
  40991. },
  40992. hand: {
  40993. height: math.unit(58.4, "feet"),
  40994. name: "Hand",
  40995. image: {
  40996. source: "./media/characters/zorkaiju/hand.svg"
  40997. }
  40998. },
  40999. handExtended: {
  41000. height: math.unit(61.4, "feet"),
  41001. name: "Hand (Extended)",
  41002. image: {
  41003. source: "./media/characters/zorkaiju/hand-extended.svg"
  41004. }
  41005. },
  41006. foot: {
  41007. height: math.unit(95, "feet"),
  41008. name: "Foot",
  41009. image: {
  41010. source: "./media/characters/zorkaiju/foot.svg"
  41011. }
  41012. },
  41013. leftArm: {
  41014. height: math.unit(59, "feet"),
  41015. name: "Left Arm",
  41016. image: {
  41017. source: "./media/characters/zorkaiju/left-arm.svg"
  41018. }
  41019. },
  41020. rightArm: {
  41021. height: math.unit(59, "feet"),
  41022. name: "Right Arm",
  41023. image: {
  41024. source: "./media/characters/zorkaiju/right-arm.svg"
  41025. }
  41026. },
  41027. tail: {
  41028. height: math.unit(104, "feet"),
  41029. name: "Tail",
  41030. image: {
  41031. source: "./media/characters/zorkaiju/tail.svg"
  41032. }
  41033. },
  41034. tailExtended: {
  41035. height: math.unit(104, "feet"),
  41036. name: "Tail (Extended)",
  41037. image: {
  41038. source: "./media/characters/zorkaiju/tail-extended.svg"
  41039. }
  41040. },
  41041. tailBottom: {
  41042. height: math.unit(104, "feet"),
  41043. name: "Tail Bottom",
  41044. image: {
  41045. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41046. }
  41047. },
  41048. crystal: {
  41049. height: math.unit(27.54, "feet"),
  41050. name: "Crystal",
  41051. image: {
  41052. source: "./media/characters/zorkaiju/crystal.svg"
  41053. }
  41054. },
  41055. },
  41056. [
  41057. {
  41058. name: "Kaiju",
  41059. height: math.unit(325, "feet"),
  41060. default: true
  41061. },
  41062. ]
  41063. ))
  41064. characterMakers.push(() => makeCharacter(
  41065. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41066. {
  41067. front: {
  41068. height: math.unit(6 + 1/12, "feet"),
  41069. weight: math.unit(115, "lb"),
  41070. name: "Front",
  41071. image: {
  41072. source: "./media/characters/bailey-belfry/front.svg",
  41073. extra: 1240/1121,
  41074. bottom: 101/1341
  41075. }
  41076. },
  41077. },
  41078. [
  41079. {
  41080. name: "Normal",
  41081. height: math.unit(6 + 1/12, "feet"),
  41082. default: true
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41088. {
  41089. side: {
  41090. height: math.unit(4, "meters"),
  41091. weight: math.unit(250, "kg"),
  41092. name: "Side",
  41093. image: {
  41094. source: "./media/characters/blacky/side.svg",
  41095. extra: 1027/919,
  41096. bottom: 43/1070
  41097. }
  41098. },
  41099. maw: {
  41100. height: math.unit(1, "meters"),
  41101. name: "Maw",
  41102. image: {
  41103. source: "./media/characters/blacky/maw.svg"
  41104. }
  41105. },
  41106. paw: {
  41107. height: math.unit(1, "meters"),
  41108. name: "Paw",
  41109. image: {
  41110. source: "./media/characters/blacky/paw.svg"
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Normal",
  41117. height: math.unit(4, "meters"),
  41118. default: true
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41124. {
  41125. front: {
  41126. height: math.unit(170, "cm"),
  41127. weight: math.unit(66, "kg"),
  41128. name: "Front",
  41129. image: {
  41130. source: "./media/characters/thux-ei/front.svg",
  41131. extra: 1109/1011,
  41132. bottom: 8/1117
  41133. }
  41134. },
  41135. },
  41136. [
  41137. {
  41138. name: "Normal",
  41139. height: math.unit(170, "cm"),
  41140. default: true
  41141. },
  41142. ]
  41143. ))
  41144. characterMakers.push(() => makeCharacter(
  41145. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41146. {
  41147. front: {
  41148. height: math.unit(5, "feet"),
  41149. weight: math.unit(120, "lb"),
  41150. name: "Front",
  41151. image: {
  41152. source: "./media/characters/roxanne-voltaire/front.svg",
  41153. extra: 1901/1779,
  41154. bottom: 53/1954
  41155. }
  41156. },
  41157. },
  41158. [
  41159. {
  41160. name: "Normal",
  41161. height: math.unit(5, "feet"),
  41162. default: true
  41163. },
  41164. {
  41165. name: "Giant",
  41166. height: math.unit(50, "feet")
  41167. },
  41168. {
  41169. name: "Titan",
  41170. height: math.unit(500, "feet")
  41171. },
  41172. {
  41173. name: "Macro",
  41174. height: math.unit(5000, "feet")
  41175. },
  41176. {
  41177. name: "Megamacro",
  41178. height: math.unit(50000, "feet")
  41179. },
  41180. {
  41181. name: "Gigamacro",
  41182. height: math.unit(500000, "feet")
  41183. },
  41184. {
  41185. name: "Teramacro",
  41186. height: math.unit(5e6, "feet")
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41192. {
  41193. front: {
  41194. height: math.unit(6 + 2/12, "feet"),
  41195. name: "Front",
  41196. image: {
  41197. source: "./media/characters/squeaks/front.svg",
  41198. extra: 1823/1768,
  41199. bottom: 138/1961
  41200. }
  41201. },
  41202. },
  41203. [
  41204. {
  41205. name: "Micro",
  41206. height: math.unit(0.5, "inches")
  41207. },
  41208. {
  41209. name: "Normal",
  41210. height: math.unit(6 + 2/12, "feet"),
  41211. default: true
  41212. },
  41213. {
  41214. name: "Macro",
  41215. height: math.unit(600, "feet")
  41216. },
  41217. ]
  41218. ))
  41219. characterMakers.push(() => makeCharacter(
  41220. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41221. {
  41222. front: {
  41223. height: math.unit(1.72, "meters"),
  41224. name: "Front",
  41225. image: {
  41226. source: "./media/characters/archinger/front.svg",
  41227. extra: 1861/1675,
  41228. bottom: 125/1986
  41229. }
  41230. },
  41231. back: {
  41232. height: math.unit(1.72, "meters"),
  41233. name: "Back",
  41234. image: {
  41235. source: "./media/characters/archinger/back.svg",
  41236. extra: 1844/1701,
  41237. bottom: 104/1948
  41238. }
  41239. },
  41240. cock: {
  41241. height: math.unit(0.59, "feet"),
  41242. name: "Cock",
  41243. image: {
  41244. source: "./media/characters/archinger/cock.svg"
  41245. }
  41246. },
  41247. },
  41248. [
  41249. {
  41250. name: "Normal",
  41251. height: math.unit(1.72, "meters"),
  41252. default: true
  41253. },
  41254. {
  41255. name: "Macro",
  41256. height: math.unit(84, "meters")
  41257. },
  41258. {
  41259. name: "Macro+",
  41260. height: math.unit(112, "meters")
  41261. },
  41262. {
  41263. name: "Macro++",
  41264. height: math.unit(960, "meters")
  41265. },
  41266. {
  41267. name: "Macro+++",
  41268. height: math.unit(4, "km")
  41269. },
  41270. {
  41271. name: "Macro++++",
  41272. height: math.unit(48, "km")
  41273. },
  41274. {
  41275. name: "Macro+++++",
  41276. height: math.unit(4500, "km")
  41277. },
  41278. ]
  41279. ))
  41280. characterMakers.push(() => makeCharacter(
  41281. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41282. {
  41283. front: {
  41284. height: math.unit(5 + 5/12, "feet"),
  41285. name: "Front",
  41286. image: {
  41287. source: "./media/characters/alsnapz/front.svg",
  41288. extra: 1157/1065,
  41289. bottom: 42/1199
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Normal",
  41296. height: math.unit(5 + 5/12, "feet"),
  41297. default: true
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41303. {
  41304. side: {
  41305. height: math.unit(3.2, "earths"),
  41306. name: "Side",
  41307. image: {
  41308. source: "./media/characters/mag/side.svg",
  41309. extra: 1331/1008,
  41310. bottom: 52/1383
  41311. }
  41312. },
  41313. wing: {
  41314. height: math.unit(1.94, "earths"),
  41315. name: "Wing",
  41316. image: {
  41317. source: "./media/characters/mag/wing.svg"
  41318. }
  41319. },
  41320. dick: {
  41321. height: math.unit(1.8, "earths"),
  41322. name: "Dick",
  41323. image: {
  41324. source: "./media/characters/mag/dick.svg"
  41325. }
  41326. },
  41327. ass: {
  41328. height: math.unit(1.33, "earths"),
  41329. name: "Ass",
  41330. image: {
  41331. source: "./media/characters/mag/ass.svg"
  41332. }
  41333. },
  41334. head: {
  41335. height: math.unit(1.1, "earths"),
  41336. name: "Head",
  41337. image: {
  41338. source: "./media/characters/mag/head.svg"
  41339. }
  41340. },
  41341. maw: {
  41342. height: math.unit(1.62, "earths"),
  41343. name: "Maw",
  41344. image: {
  41345. source: "./media/characters/mag/maw.svg"
  41346. }
  41347. },
  41348. },
  41349. [
  41350. {
  41351. name: "Small",
  41352. height: math.unit(162, "feet")
  41353. },
  41354. {
  41355. name: "Normal",
  41356. height: math.unit(3.2, "earths"),
  41357. default: true
  41358. },
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(512, "feet"),
  41366. weight: math.unit(63509, "tonnes"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/vorrel-harroc/front.svg",
  41370. extra: 1075/1063,
  41371. bottom: 62/1137
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Normal",
  41378. height: math.unit(10, "feet")
  41379. },
  41380. {
  41381. name: "Macro",
  41382. height: math.unit(512, "feet"),
  41383. default: true
  41384. },
  41385. {
  41386. name: "Megamacro",
  41387. height: math.unit(256, "miles")
  41388. },
  41389. {
  41390. name: "Gigamacro",
  41391. height: math.unit(4096, "miles")
  41392. },
  41393. ]
  41394. ))
  41395. characterMakers.push(() => makeCharacter(
  41396. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41397. {
  41398. side: {
  41399. height: math.unit(50, "feet"),
  41400. name: "Side",
  41401. image: {
  41402. source: "./media/characters/froimar/side.svg",
  41403. extra: 855/638,
  41404. bottom: 99/954
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Macro",
  41411. height: math.unit(50, "feet"),
  41412. default: true
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41418. {
  41419. front: {
  41420. height: math.unit(210, "miles"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/timothy/front.svg",
  41424. extra: 1007/943,
  41425. bottom: 62/1069
  41426. }
  41427. },
  41428. frontSkirt: {
  41429. height: math.unit(210, "miles"),
  41430. name: "Front (Skirt)",
  41431. image: {
  41432. source: "./media/characters/timothy/front-skirt.svg",
  41433. extra: 1007/943,
  41434. bottom: 62/1069
  41435. }
  41436. },
  41437. frontCoat: {
  41438. height: math.unit(210, "miles"),
  41439. name: "Front (Coat)",
  41440. image: {
  41441. source: "./media/characters/timothy/front-coat.svg",
  41442. extra: 1007/943,
  41443. bottom: 62/1069
  41444. }
  41445. },
  41446. },
  41447. [
  41448. {
  41449. name: "Macro",
  41450. height: math.unit(210, "miles"),
  41451. default: true
  41452. },
  41453. {
  41454. name: "Megamacro",
  41455. height: math.unit(210000, "miles")
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(188, "feet"),
  41464. name: "Front",
  41465. image: {
  41466. source: "./media/characters/pyotr/front.svg",
  41467. extra: 1912/1826,
  41468. bottom: 18/1930
  41469. }
  41470. },
  41471. },
  41472. [
  41473. {
  41474. name: "Macro",
  41475. height: math.unit(188, "feet"),
  41476. default: true
  41477. },
  41478. {
  41479. name: "Megamacro",
  41480. height: math.unit(8, "miles")
  41481. },
  41482. ]
  41483. ))
  41484. characterMakers.push(() => makeCharacter(
  41485. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41486. {
  41487. side: {
  41488. height: math.unit(10, "feet"),
  41489. weight: math.unit(4500, "lb"),
  41490. name: "Side",
  41491. image: {
  41492. source: "./media/characters/ackart/side.svg",
  41493. extra: 1776/1668,
  41494. bottom: 116/1892
  41495. }
  41496. },
  41497. },
  41498. [
  41499. {
  41500. name: "Normal",
  41501. height: math.unit(10, "feet"),
  41502. default: true
  41503. },
  41504. ]
  41505. ))
  41506. characterMakers.push(() => makeCharacter(
  41507. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41508. {
  41509. side: {
  41510. height: math.unit(21, "feet"),
  41511. name: "Side",
  41512. image: {
  41513. source: "./media/characters/nolow/side.svg",
  41514. extra: 1484/1434,
  41515. bottom: 85/1569
  41516. }
  41517. },
  41518. sideErect: {
  41519. height: math.unit(21, "feet"),
  41520. name: "Side-erect",
  41521. image: {
  41522. source: "./media/characters/nolow/side-erect.svg",
  41523. extra: 1484/1434,
  41524. bottom: 85/1569
  41525. }
  41526. },
  41527. },
  41528. [
  41529. {
  41530. name: "Regular",
  41531. height: math.unit(12, "feet")
  41532. },
  41533. {
  41534. name: "Big Chee",
  41535. height: math.unit(21, "feet"),
  41536. default: true
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41542. {
  41543. front: {
  41544. height: math.unit(7, "feet"),
  41545. weight: math.unit(250, "lb"),
  41546. name: "Front",
  41547. image: {
  41548. source: "./media/characters/nines/front.svg",
  41549. extra: 1741/1607,
  41550. bottom: 41/1782
  41551. }
  41552. },
  41553. side: {
  41554. height: math.unit(7, "feet"),
  41555. weight: math.unit(250, "lb"),
  41556. name: "Side",
  41557. image: {
  41558. source: "./media/characters/nines/side.svg",
  41559. extra: 1854/1735,
  41560. bottom: 93/1947
  41561. }
  41562. },
  41563. back: {
  41564. height: math.unit(7, "feet"),
  41565. weight: math.unit(250, "lb"),
  41566. name: "Back",
  41567. image: {
  41568. source: "./media/characters/nines/back.svg",
  41569. extra: 1748/1615,
  41570. bottom: 20/1768
  41571. }
  41572. },
  41573. },
  41574. [
  41575. {
  41576. name: "Megamacro",
  41577. height: math.unit(99, "km"),
  41578. default: true
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(5 + 10/12, "feet"),
  41587. weight: math.unit(210, "lb"),
  41588. name: "Front",
  41589. image: {
  41590. source: "./media/characters/zenith/front.svg",
  41591. extra: 1531/1452,
  41592. bottom: 198/1729
  41593. }
  41594. },
  41595. back: {
  41596. height: math.unit(5 + 10/12, "feet"),
  41597. weight: math.unit(210, "lb"),
  41598. name: "Back",
  41599. image: {
  41600. source: "./media/characters/zenith/back.svg",
  41601. extra: 1571/1487,
  41602. bottom: 75/1646
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Normal",
  41609. height: math.unit(5 + 10/12, "feet"),
  41610. default: true
  41611. }
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41616. {
  41617. front: {
  41618. height: math.unit(4, "feet"),
  41619. weight: math.unit(60, "lb"),
  41620. name: "Front",
  41621. image: {
  41622. source: "./media/characters/jasper/front.svg",
  41623. extra: 1450/1379,
  41624. bottom: 19/1469
  41625. }
  41626. },
  41627. },
  41628. [
  41629. {
  41630. name: "Normal",
  41631. height: math.unit(4, "feet"),
  41632. default: true
  41633. },
  41634. ]
  41635. ))
  41636. characterMakers.push(() => makeCharacter(
  41637. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41638. {
  41639. front: {
  41640. height: math.unit(6 + 5/12, "feet"),
  41641. weight: math.unit(290, "lb"),
  41642. name: "Front",
  41643. image: {
  41644. source: "./media/characters/tiberius-thyben/front.svg",
  41645. extra: 757/739,
  41646. bottom: 39/796
  41647. }
  41648. },
  41649. },
  41650. [
  41651. {
  41652. name: "Micro",
  41653. height: math.unit(1.5, "inches")
  41654. },
  41655. {
  41656. name: "Normal",
  41657. height: math.unit(6 + 5/12, "feet"),
  41658. default: true
  41659. },
  41660. {
  41661. name: "Macro",
  41662. height: math.unit(300, "feet")
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41668. {
  41669. front: {
  41670. height: math.unit(5 + 6/12, "feet"),
  41671. weight: math.unit(60, "kg"),
  41672. name: "Front",
  41673. image: {
  41674. source: "./media/characters/sabre/front.svg",
  41675. extra: 738/671,
  41676. bottom: 27/765
  41677. }
  41678. },
  41679. },
  41680. [
  41681. {
  41682. name: "Teeny",
  41683. height: math.unit(2, "inches")
  41684. },
  41685. {
  41686. name: "Smol",
  41687. height: math.unit(8, "inches")
  41688. },
  41689. {
  41690. name: "Normal",
  41691. height: math.unit(5 + 6/12, "feet"),
  41692. default: true
  41693. },
  41694. {
  41695. name: "Mini-Macro",
  41696. height: math.unit(15, "feet")
  41697. },
  41698. {
  41699. name: "Macro",
  41700. height: math.unit(50, "feet")
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41706. {
  41707. front: {
  41708. height: math.unit(6 + 4/12, "feet"),
  41709. weight: math.unit(170, "lb"),
  41710. name: "Front",
  41711. image: {
  41712. source: "./media/characters/charlie/front.svg",
  41713. extra: 1348/1228,
  41714. bottom: 15/1363
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Macro",
  41721. height: math.unit(1700, "meters"),
  41722. default: true
  41723. },
  41724. {
  41725. name: "MegaMacro",
  41726. height: math.unit(20400, "meters")
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(6 + 3/12, "feet"),
  41735. weight: math.unit(185, "lb"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/susan-grant/front.svg",
  41739. extra: 1351/1327,
  41740. bottom: 26/1377
  41741. }
  41742. },
  41743. },
  41744. [
  41745. {
  41746. name: "Normal",
  41747. height: math.unit(6 + 3/12, "feet"),
  41748. default: true
  41749. },
  41750. {
  41751. name: "Macro",
  41752. height: math.unit(225, "feet")
  41753. },
  41754. {
  41755. name: "Macro+",
  41756. height: math.unit(900, "feet")
  41757. },
  41758. {
  41759. name: "MegaMacro",
  41760. height: math.unit(14400, "feet")
  41761. },
  41762. ]
  41763. ))
  41764. characterMakers.push(() => makeCharacter(
  41765. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41766. {
  41767. front: {
  41768. height: math.unit(5 + 4/12, "feet"),
  41769. weight: math.unit(110, "lb"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/axel-isanov/front.svg",
  41773. extra: 1096/1065,
  41774. bottom: 13/1109
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Normal",
  41781. height: math.unit(5 + 4/12, "feet"),
  41782. default: true
  41783. },
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(9, "feet"),
  41791. weight: math.unit(467, "lb"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/necahual/front.svg",
  41795. extra: 920/873,
  41796. bottom: 26/946
  41797. }
  41798. },
  41799. back: {
  41800. height: math.unit(9, "feet"),
  41801. weight: math.unit(467, "lb"),
  41802. name: "Back",
  41803. image: {
  41804. source: "./media/characters/necahual/back.svg",
  41805. extra: 930/884,
  41806. bottom: 16/946
  41807. }
  41808. },
  41809. frontUnderwear: {
  41810. height: math.unit(9, "feet"),
  41811. weight: math.unit(467, "lb"),
  41812. name: "Front (Underwear)",
  41813. image: {
  41814. source: "./media/characters/necahual/front-underwear.svg",
  41815. extra: 920/873,
  41816. bottom: 26/946
  41817. }
  41818. },
  41819. frontDressed: {
  41820. height: math.unit(9, "feet"),
  41821. weight: math.unit(467, "lb"),
  41822. name: "Front (Dressed)",
  41823. image: {
  41824. source: "./media/characters/necahual/front-dressed.svg",
  41825. extra: 920/873,
  41826. bottom: 26/946
  41827. }
  41828. },
  41829. },
  41830. [
  41831. {
  41832. name: "Comprsesed",
  41833. height: math.unit(9, "feet")
  41834. },
  41835. {
  41836. name: "Natural",
  41837. height: math.unit(15, "feet"),
  41838. default: true
  41839. },
  41840. {
  41841. name: "Boosted",
  41842. height: math.unit(50, "feet")
  41843. },
  41844. {
  41845. name: "Boosted+",
  41846. height: math.unit(150, "feet")
  41847. },
  41848. {
  41849. name: "Max",
  41850. height: math.unit(500, "feet")
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(22 + 1/12, "feet"),
  41859. weight: math.unit(3200, "lb"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/theo-acacia/front.svg",
  41863. extra: 1796/1741,
  41864. bottom: 83/1879
  41865. }
  41866. },
  41867. frontUnderwear: {
  41868. height: math.unit(22 + 1/12, "feet"),
  41869. weight: math.unit(3200, "lb"),
  41870. name: "Front (Underwear)",
  41871. image: {
  41872. source: "./media/characters/theo-acacia/front-underwear.svg",
  41873. extra: 1796/1741,
  41874. bottom: 83/1879
  41875. }
  41876. },
  41877. frontNude: {
  41878. height: math.unit(22 + 1/12, "feet"),
  41879. weight: math.unit(3200, "lb"),
  41880. name: "Front (Nude)",
  41881. image: {
  41882. source: "./media/characters/theo-acacia/front-nude.svg",
  41883. extra: 1796/1741,
  41884. bottom: 83/1879
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(22 + 1/12, "feet"),
  41892. default: true
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41898. {
  41899. front: {
  41900. height: math.unit(20, "feet"),
  41901. name: "Front",
  41902. image: {
  41903. source: "./media/characters/astra/front.svg",
  41904. extra: 1850/1714,
  41905. bottom: 106/1956
  41906. }
  41907. },
  41908. frontUndressed: {
  41909. height: math.unit(20, "feet"),
  41910. name: "Front (Undressed)",
  41911. image: {
  41912. source: "./media/characters/astra/front-undressed.svg",
  41913. extra: 1926/1749,
  41914. bottom: 0/1926
  41915. }
  41916. },
  41917. hand: {
  41918. height: math.unit(1.53, "feet"),
  41919. name: "Hand",
  41920. image: {
  41921. source: "./media/characters/astra/hand.svg"
  41922. }
  41923. },
  41924. paw: {
  41925. height: math.unit(1.53, "feet"),
  41926. name: "Paw",
  41927. image: {
  41928. source: "./media/characters/astra/paw.svg"
  41929. }
  41930. },
  41931. },
  41932. [
  41933. {
  41934. name: "Smallest",
  41935. height: math.unit(20, "feet")
  41936. },
  41937. {
  41938. name: "Normal",
  41939. height: math.unit(1e9, "miles"),
  41940. default: true
  41941. },
  41942. {
  41943. name: "Larger",
  41944. height: math.unit(5, "multiverses")
  41945. },
  41946. {
  41947. name: "Largest",
  41948. height: math.unit(1e9, "multiverses")
  41949. },
  41950. ]
  41951. ))
  41952. characterMakers.push(() => makeCharacter(
  41953. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41954. {
  41955. front: {
  41956. height: math.unit(8, "feet"),
  41957. name: "Front",
  41958. image: {
  41959. source: "./media/characters/breanna/front.svg",
  41960. extra: 1912/1632,
  41961. bottom: 33/1945
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Smallest",
  41968. height: math.unit(8, "feet")
  41969. },
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(1, "mile"),
  41973. default: true
  41974. },
  41975. {
  41976. name: "Maximum",
  41977. height: math.unit(1500000000000, "lightyears")
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41983. {
  41984. front: {
  41985. height: math.unit(5 + 11/12, "feet"),
  41986. weight: math.unit(155, "lb"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/cai/front.svg",
  41990. extra: 1823/1702,
  41991. bottom: 32/1855
  41992. }
  41993. },
  41994. back: {
  41995. height: math.unit(5 + 11/12, "feet"),
  41996. weight: math.unit(155, "lb"),
  41997. name: "Back",
  41998. image: {
  41999. source: "./media/characters/cai/back.svg",
  42000. extra: 1809/1708,
  42001. bottom: 31/1840
  42002. }
  42003. },
  42004. },
  42005. [
  42006. {
  42007. name: "Normal",
  42008. height: math.unit(5 + 11/12, "feet"),
  42009. default: true
  42010. },
  42011. {
  42012. name: "Big",
  42013. height: math.unit(15, "feet")
  42014. },
  42015. {
  42016. name: "Macro",
  42017. height: math.unit(200, "feet")
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42023. {
  42024. front: {
  42025. height: math.unit(5 + 6/12, "feet"),
  42026. weight: math.unit(160, "lb"),
  42027. name: "Front",
  42028. image: {
  42029. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42030. extra: 1227/1174,
  42031. bottom: 37/1264
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "Macro",
  42038. height: math.unit(444, "meters"),
  42039. default: true
  42040. },
  42041. ]
  42042. ))
  42043. characterMakers.push(() => makeCharacter(
  42044. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42045. {
  42046. front: {
  42047. height: math.unit(18 + 7/12, "feet"),
  42048. name: "Front",
  42049. image: {
  42050. source: "./media/characters/rex/front.svg",
  42051. extra: 1941/1807,
  42052. bottom: 66/2007
  42053. }
  42054. },
  42055. back: {
  42056. height: math.unit(18 + 7/12, "feet"),
  42057. name: "Back",
  42058. image: {
  42059. source: "./media/characters/rex/back.svg",
  42060. extra: 1937/1822,
  42061. bottom: 42/1979
  42062. }
  42063. },
  42064. boot: {
  42065. height: math.unit(3.45, "feet"),
  42066. name: "Boot",
  42067. image: {
  42068. source: "./media/characters/rex/boot.svg"
  42069. }
  42070. },
  42071. paw: {
  42072. height: math.unit(4.17, "feet"),
  42073. name: "Paw",
  42074. image: {
  42075. source: "./media/characters/rex/paw.svg"
  42076. }
  42077. },
  42078. head: {
  42079. height: math.unit(6.728, "feet"),
  42080. name: "Head",
  42081. image: {
  42082. source: "./media/characters/rex/head.svg"
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Nano",
  42089. height: math.unit(18 + 7/12, "feet")
  42090. },
  42091. {
  42092. name: "Micro",
  42093. height: math.unit(1.5, "megameters")
  42094. },
  42095. {
  42096. name: "Normal",
  42097. height: math.unit(440, "megameters"),
  42098. default: true
  42099. },
  42100. {
  42101. name: "Macro",
  42102. height: math.unit(2.5, "gigameters")
  42103. },
  42104. {
  42105. name: "Gigamacro",
  42106. height: math.unit(2, "galaxies")
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42112. {
  42113. side: {
  42114. height: math.unit(32, "feet"),
  42115. weight: math.unit(250000, "lb"),
  42116. name: "Side",
  42117. image: {
  42118. source: "./media/characters/silverwing/side.svg",
  42119. extra: 1100/1019,
  42120. bottom: 204/1304
  42121. }
  42122. },
  42123. },
  42124. [
  42125. {
  42126. name: "Normal",
  42127. height: math.unit(32, "feet"),
  42128. default: true
  42129. },
  42130. ]
  42131. ))
  42132. characterMakers.push(() => makeCharacter(
  42133. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42134. {
  42135. front: {
  42136. height: math.unit(6 + 6/12, "feet"),
  42137. weight: math.unit(350, "lb"),
  42138. name: "Front",
  42139. image: {
  42140. source: "./media/characters/tristan-hawthorne/front.svg",
  42141. extra: 1159/1124,
  42142. bottom: 37/1196
  42143. },
  42144. form: "labrador",
  42145. default: true
  42146. },
  42147. skunkFront: {
  42148. height: math.unit(4 + 6/12, "feet"),
  42149. weight: math.unit(120, "lb"),
  42150. name: "Front",
  42151. image: {
  42152. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42153. extra: 1609/1551,
  42154. bottom: 169/1778
  42155. },
  42156. form: "skunk",
  42157. default: true
  42158. },
  42159. },
  42160. [
  42161. {
  42162. name: "Normal",
  42163. height: math.unit(6 + 6/12, "feet"),
  42164. form: "labrador",
  42165. default: true
  42166. },
  42167. {
  42168. name: "Normal",
  42169. height: math.unit(4 + 6/12, "feet"),
  42170. form: "skunk",
  42171. default: true
  42172. },
  42173. ],
  42174. {
  42175. "labrador": {
  42176. name: "Labrador",
  42177. default: true
  42178. },
  42179. "skunk": {
  42180. name: "Skunk"
  42181. }
  42182. }
  42183. ))
  42184. characterMakers.push(() => makeCharacter(
  42185. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42186. {
  42187. front: {
  42188. height: math.unit(5 + 11/12, "feet"),
  42189. weight: math.unit(190, "lb"),
  42190. name: "Front",
  42191. image: {
  42192. source: "./media/characters/mizu/front.svg",
  42193. extra: 1988/1788,
  42194. bottom: 14/2002
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Normal",
  42201. height: math.unit(5 + 11/12, "feet"),
  42202. default: true
  42203. },
  42204. ]
  42205. ))
  42206. characterMakers.push(() => makeCharacter(
  42207. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42208. {
  42209. front: {
  42210. height: math.unit(1.7, "feet"),
  42211. weight: math.unit(50, "lb"),
  42212. name: "Front",
  42213. image: {
  42214. source: "./media/characters/dechroma/front.svg",
  42215. extra: 1095/859,
  42216. bottom: 64/1159
  42217. }
  42218. },
  42219. },
  42220. [
  42221. {
  42222. name: "Normal",
  42223. height: math.unit(1.7, "feet"),
  42224. default: true
  42225. },
  42226. ]
  42227. ))
  42228. characterMakers.push(() => makeCharacter(
  42229. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42230. {
  42231. side: {
  42232. height: math.unit(30, "feet"),
  42233. name: "Side",
  42234. image: {
  42235. source: "./media/characters/veluren-thanazel/side.svg",
  42236. extra: 1611/633,
  42237. bottom: 118/1729
  42238. }
  42239. },
  42240. front: {
  42241. height: math.unit(30, "feet"),
  42242. name: "Front",
  42243. image: {
  42244. source: "./media/characters/veluren-thanazel/front.svg",
  42245. extra: 1486/636,
  42246. bottom: 238/1724
  42247. }
  42248. },
  42249. head: {
  42250. height: math.unit(21.4, "feet"),
  42251. name: "Head",
  42252. image: {
  42253. source: "./media/characters/veluren-thanazel/head.svg"
  42254. }
  42255. },
  42256. genitals: {
  42257. height: math.unit(19.4, "feet"),
  42258. name: "Genitals",
  42259. image: {
  42260. source: "./media/characters/veluren-thanazel/genitals.svg"
  42261. }
  42262. },
  42263. },
  42264. [
  42265. {
  42266. name: "Social",
  42267. height: math.unit(6, "feet")
  42268. },
  42269. {
  42270. name: "Play",
  42271. height: math.unit(12, "feet")
  42272. },
  42273. {
  42274. name: "True",
  42275. height: math.unit(30, "feet"),
  42276. default: true
  42277. },
  42278. ]
  42279. ))
  42280. characterMakers.push(() => makeCharacter(
  42281. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42282. {
  42283. front: {
  42284. height: math.unit(7 + 6/12, "feet"),
  42285. weight: math.unit(500, "kg"),
  42286. name: "Front",
  42287. image: {
  42288. source: "./media/characters/arcturas/front.svg",
  42289. extra: 1700/1500,
  42290. bottom: 145/1845
  42291. }
  42292. },
  42293. },
  42294. [
  42295. {
  42296. name: "Normal",
  42297. height: math.unit(7 + 6/12, "feet"),
  42298. default: true
  42299. },
  42300. ]
  42301. ))
  42302. characterMakers.push(() => makeCharacter(
  42303. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42304. {
  42305. side: {
  42306. height: math.unit(6, "feet"),
  42307. weight: math.unit(2, "tons"),
  42308. name: "Side",
  42309. image: {
  42310. source: "./media/characters/vitaen/side.svg",
  42311. extra: 1157/617,
  42312. bottom: 122/1279
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Normal",
  42319. height: math.unit(6, "feet"),
  42320. default: true
  42321. },
  42322. ]
  42323. ))
  42324. characterMakers.push(() => makeCharacter(
  42325. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42326. {
  42327. front: {
  42328. height: math.unit(19, "feet"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/fia-dreamweaver/front.svg",
  42332. extra: 1630/1504,
  42333. bottom: 25/1655
  42334. }
  42335. },
  42336. },
  42337. [
  42338. {
  42339. name: "Normal",
  42340. height: math.unit(19, "feet"),
  42341. default: true
  42342. },
  42343. ]
  42344. ))
  42345. characterMakers.push(() => makeCharacter(
  42346. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42347. {
  42348. front: {
  42349. height: math.unit(5 + 4/12, "feet"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/artan/front.svg",
  42353. extra: 1618/1535,
  42354. bottom: 46/1664
  42355. }
  42356. },
  42357. back: {
  42358. height: math.unit(5 + 4/12, "feet"),
  42359. name: "Back",
  42360. image: {
  42361. source: "./media/characters/artan/back.svg",
  42362. extra: 1618/1543,
  42363. bottom: 31/1649
  42364. }
  42365. },
  42366. },
  42367. [
  42368. {
  42369. name: "Normal",
  42370. height: math.unit(5 + 4/12, "feet"),
  42371. default: true
  42372. },
  42373. ]
  42374. ))
  42375. characterMakers.push(() => makeCharacter(
  42376. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42377. {
  42378. side: {
  42379. height: math.unit(182, "cm"),
  42380. weight: math.unit(1000, "lb"),
  42381. name: "Side",
  42382. image: {
  42383. source: "./media/characters/silver-dragon/side.svg",
  42384. extra: 710/287,
  42385. bottom: 88/798
  42386. }
  42387. },
  42388. },
  42389. [
  42390. {
  42391. name: "Normal",
  42392. height: math.unit(182, "cm"),
  42393. default: true
  42394. },
  42395. ]
  42396. ))
  42397. characterMakers.push(() => makeCharacter(
  42398. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42399. {
  42400. side: {
  42401. height: math.unit(6 + 6/12, "feet"),
  42402. weight: math.unit(1.5, "tons"),
  42403. name: "Side",
  42404. image: {
  42405. source: "./media/characters/zephyr/side.svg",
  42406. extra: 1433/586,
  42407. bottom: 109/1542
  42408. }
  42409. },
  42410. },
  42411. [
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(6 + 6/12, "feet"),
  42415. default: true
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42421. {
  42422. side: {
  42423. height: math.unit(1, "feet"),
  42424. name: "Side",
  42425. image: {
  42426. source: "./media/characters/vixye/side.svg",
  42427. extra: 632/541,
  42428. bottom: 0/632
  42429. }
  42430. },
  42431. },
  42432. [
  42433. {
  42434. name: "Normal",
  42435. height: math.unit(1, "feet"),
  42436. default: true
  42437. },
  42438. {
  42439. name: "True",
  42440. height: math.unit(1e15, "multiverses")
  42441. },
  42442. ]
  42443. ))
  42444. characterMakers.push(() => makeCharacter(
  42445. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42446. {
  42447. front: {
  42448. height: math.unit(8 + 2/12, "feet"),
  42449. weight: math.unit(650, "lb"),
  42450. name: "Front",
  42451. image: {
  42452. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42453. extra: 1174/1137,
  42454. bottom: 82/1256
  42455. }
  42456. },
  42457. back: {
  42458. height: math.unit(8 + 2/12, "feet"),
  42459. weight: math.unit(650, "lb"),
  42460. name: "Back",
  42461. image: {
  42462. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42463. extra: 1204/1157,
  42464. bottom: 46/1250
  42465. }
  42466. },
  42467. },
  42468. [
  42469. {
  42470. name: "Wildform",
  42471. height: math.unit(8 + 2/12, "feet"),
  42472. default: true
  42473. },
  42474. ]
  42475. ))
  42476. characterMakers.push(() => makeCharacter(
  42477. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42478. {
  42479. front: {
  42480. height: math.unit(18, "feet"),
  42481. name: "Front",
  42482. image: {
  42483. source: "./media/characters/cyphin/front.svg",
  42484. extra: 970/886,
  42485. bottom: 42/1012
  42486. }
  42487. },
  42488. back: {
  42489. height: math.unit(18, "feet"),
  42490. name: "Back",
  42491. image: {
  42492. source: "./media/characters/cyphin/back.svg",
  42493. extra: 1009/894,
  42494. bottom: 24/1033
  42495. }
  42496. },
  42497. head: {
  42498. height: math.unit(5.05, "feet"),
  42499. name: "Head",
  42500. image: {
  42501. source: "./media/characters/cyphin/head.svg"
  42502. }
  42503. },
  42504. tailbud: {
  42505. height: math.unit(5, "feet"),
  42506. name: "Tailbud",
  42507. image: {
  42508. source: "./media/characters/cyphin/tailbud.svg"
  42509. }
  42510. },
  42511. },
  42512. [
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42517. {
  42518. side: {
  42519. height: math.unit(10, "feet"),
  42520. weight: math.unit(6, "tons"),
  42521. name: "Side",
  42522. image: {
  42523. source: "./media/characters/raijin/side.svg",
  42524. extra: 1529/613,
  42525. bottom: 337/1866
  42526. }
  42527. },
  42528. },
  42529. [
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(10, "feet"),
  42533. default: true
  42534. },
  42535. ]
  42536. ))
  42537. characterMakers.push(() => makeCharacter(
  42538. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42539. {
  42540. side: {
  42541. height: math.unit(9, "feet"),
  42542. name: "Side",
  42543. image: {
  42544. source: "./media/characters/nilghais/side.svg",
  42545. extra: 1047/744,
  42546. bottom: 91/1138
  42547. }
  42548. },
  42549. head: {
  42550. height: math.unit(3.14, "feet"),
  42551. name: "Head",
  42552. image: {
  42553. source: "./media/characters/nilghais/head.svg"
  42554. }
  42555. },
  42556. mouth: {
  42557. height: math.unit(4.6, "feet"),
  42558. name: "Mouth",
  42559. image: {
  42560. source: "./media/characters/nilghais/mouth.svg"
  42561. }
  42562. },
  42563. wings: {
  42564. height: math.unit(24, "feet"),
  42565. name: "Wings",
  42566. image: {
  42567. source: "./media/characters/nilghais/wings.svg"
  42568. }
  42569. },
  42570. ass: {
  42571. height: math.unit(6.12, "feet"),
  42572. name: "Ass",
  42573. image: {
  42574. source: "./media/characters/nilghais/ass.svg"
  42575. }
  42576. },
  42577. },
  42578. [
  42579. {
  42580. name: "Normal",
  42581. height: math.unit(9, "feet"),
  42582. default: true
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42588. {
  42589. regular: {
  42590. height: math.unit(16 + 2/12, "feet"),
  42591. weight: math.unit(2300, "lb"),
  42592. name: "Regular",
  42593. image: {
  42594. source: "./media/characters/zolgar/regular.svg",
  42595. extra: 1246/1004,
  42596. bottom: 124/1370
  42597. }
  42598. },
  42599. boxers: {
  42600. height: math.unit(16 + 2/12, "feet"),
  42601. weight: math.unit(2300, "lb"),
  42602. name: "Boxers",
  42603. image: {
  42604. source: "./media/characters/zolgar/boxers.svg",
  42605. extra: 1246/1004,
  42606. bottom: 124/1370
  42607. }
  42608. },
  42609. armored: {
  42610. height: math.unit(16 + 2/12, "feet"),
  42611. weight: math.unit(2300, "lb"),
  42612. name: "Armored",
  42613. image: {
  42614. source: "./media/characters/zolgar/armored.svg",
  42615. extra: 1246/1004,
  42616. bottom: 124/1370
  42617. }
  42618. },
  42619. goth: {
  42620. height: math.unit(16 + 2/12, "feet"),
  42621. weight: math.unit(2300, "lb"),
  42622. name: "Goth",
  42623. image: {
  42624. source: "./media/characters/zolgar/goth.svg",
  42625. extra: 1246/1004,
  42626. bottom: 124/1370
  42627. }
  42628. },
  42629. },
  42630. [
  42631. {
  42632. name: "Shrunken Down",
  42633. height: math.unit(9 + 2/12, "feet")
  42634. },
  42635. {
  42636. name: "Normal",
  42637. height: math.unit(16 + 2/12, "feet"),
  42638. default: true
  42639. },
  42640. ]
  42641. ))
  42642. characterMakers.push(() => makeCharacter(
  42643. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42644. {
  42645. front: {
  42646. height: math.unit(6, "feet"),
  42647. weight: math.unit(168, "lb"),
  42648. name: "Front",
  42649. image: {
  42650. source: "./media/characters/luca/front.svg",
  42651. extra: 841/667,
  42652. bottom: 102/943
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "Normal",
  42659. height: math.unit(6, "feet"),
  42660. default: true
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42666. {
  42667. side: {
  42668. height: math.unit(7 + 3/12, "feet"),
  42669. weight: math.unit(312, "lb"),
  42670. name: "Side",
  42671. image: {
  42672. source: "./media/characters/zezo/side.svg",
  42673. extra: 1192/1067,
  42674. bottom: 63/1255
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Normal",
  42681. height: math.unit(7 + 3/12, "feet"),
  42682. default: true
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42688. {
  42689. front: {
  42690. height: math.unit(5 + 5/12, "feet"),
  42691. weight: math.unit(170, "lb"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/mayso/front.svg",
  42695. extra: 1215/1108,
  42696. bottom: 16/1231
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "Normal",
  42703. height: math.unit(5 + 5/12, "feet"),
  42704. default: true
  42705. },
  42706. ]
  42707. ))
  42708. characterMakers.push(() => makeCharacter(
  42709. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42710. {
  42711. front: {
  42712. height: math.unit(4 + 3/12, "feet"),
  42713. weight: math.unit(80, "lb"),
  42714. name: "Front",
  42715. image: {
  42716. source: "./media/characters/hess/front.svg",
  42717. extra: 1200/1123,
  42718. bottom: 16/1216
  42719. }
  42720. },
  42721. },
  42722. [
  42723. {
  42724. name: "Normal",
  42725. height: math.unit(4 + 3/12, "feet"),
  42726. default: true
  42727. },
  42728. ]
  42729. ))
  42730. characterMakers.push(() => makeCharacter(
  42731. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42732. {
  42733. front: {
  42734. height: math.unit(1.9, "meters"),
  42735. name: "Front",
  42736. image: {
  42737. source: "./media/characters/ashgar/front.svg",
  42738. extra: 1177/1146,
  42739. bottom: 99/1276
  42740. }
  42741. },
  42742. back: {
  42743. height: math.unit(1.9, "meters"),
  42744. name: "Back",
  42745. image: {
  42746. source: "./media/characters/ashgar/back.svg",
  42747. extra: 1201/1183,
  42748. bottom: 53/1254
  42749. }
  42750. },
  42751. feral: {
  42752. height: math.unit(1.4, "meters"),
  42753. name: "Feral",
  42754. image: {
  42755. source: "./media/characters/ashgar/feral.svg",
  42756. extra: 370/345,
  42757. bottom: 45/415
  42758. }
  42759. },
  42760. },
  42761. [
  42762. {
  42763. name: "Normal",
  42764. height: math.unit(1.9, "meters"),
  42765. default: true
  42766. },
  42767. ]
  42768. ))
  42769. characterMakers.push(() => makeCharacter(
  42770. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42771. {
  42772. regular: {
  42773. height: math.unit(6, "feet"),
  42774. weight: math.unit(220, "lb"),
  42775. name: "Regular",
  42776. image: {
  42777. source: "./media/characters/phillip/regular.svg",
  42778. extra: 1373/1277,
  42779. bottom: 75/1448
  42780. }
  42781. },
  42782. dressed: {
  42783. height: math.unit(6, "feet"),
  42784. weight: math.unit(220, "lb"),
  42785. name: "Dressed",
  42786. image: {
  42787. source: "./media/characters/phillip/dressed.svg",
  42788. extra: 1373/1277,
  42789. bottom: 75/1448
  42790. }
  42791. },
  42792. paw: {
  42793. height: math.unit(1.44, "feet"),
  42794. name: "Paw",
  42795. image: {
  42796. source: "./media/characters/phillip/paw.svg"
  42797. }
  42798. },
  42799. },
  42800. [
  42801. {
  42802. name: "Normal",
  42803. height: math.unit(6, "feet"),
  42804. default: true
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42810. {
  42811. side: {
  42812. height: math.unit(42, "feet"),
  42813. name: "Side",
  42814. image: {
  42815. source: "./media/characters/uvula/side.svg",
  42816. extra: 683/586,
  42817. bottom: 60/743
  42818. }
  42819. },
  42820. front: {
  42821. height: math.unit(42, "feet"),
  42822. name: "Front",
  42823. image: {
  42824. source: "./media/characters/uvula/front.svg",
  42825. extra: 705/613,
  42826. bottom: 54/759
  42827. }
  42828. },
  42829. maw: {
  42830. height: math.unit(23.5, "feet"),
  42831. name: "Maw",
  42832. image: {
  42833. source: "./media/characters/uvula/maw.svg"
  42834. }
  42835. },
  42836. },
  42837. [
  42838. {
  42839. name: "Original Size",
  42840. height: math.unit(14, "inches")
  42841. },
  42842. {
  42843. name: "Human Size",
  42844. height: math.unit(6, "feet")
  42845. },
  42846. {
  42847. name: "Big",
  42848. height: math.unit(42, "feet"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Bigger",
  42853. height: math.unit(100, "feet")
  42854. },
  42855. ]
  42856. ))
  42857. characterMakers.push(() => makeCharacter(
  42858. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42859. {
  42860. front: {
  42861. height: math.unit(5 + 11/12, "feet"),
  42862. name: "Front",
  42863. image: {
  42864. source: "./media/characters/lannah/front.svg",
  42865. extra: 1208/1113,
  42866. bottom: 97/1305
  42867. }
  42868. },
  42869. },
  42870. [
  42871. {
  42872. name: "Normal",
  42873. height: math.unit(5 + 11/12, "feet"),
  42874. default: true
  42875. },
  42876. ]
  42877. ))
  42878. characterMakers.push(() => makeCharacter(
  42879. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42880. {
  42881. front: {
  42882. height: math.unit(6 + 3/12, "feet"),
  42883. weight: math.unit(3.5, "tons"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/emberflame/front.svg",
  42887. extra: 1198/672,
  42888. bottom: 82/1280
  42889. }
  42890. },
  42891. side: {
  42892. height: math.unit(6 + 3/12, "feet"),
  42893. weight: math.unit(3.5, "tons"),
  42894. name: "Side",
  42895. image: {
  42896. source: "./media/characters/emberflame/side.svg",
  42897. extra: 938/527,
  42898. bottom: 56/994
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Normal",
  42905. height: math.unit(6 + 3/12, "feet"),
  42906. default: true
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42912. {
  42913. side: {
  42914. height: math.unit(17.5, "feet"),
  42915. weight: math.unit(35, "tons"),
  42916. name: "Side",
  42917. image: {
  42918. source: "./media/characters/sophie-ambrose/side.svg",
  42919. extra: 1573/1242,
  42920. bottom: 71/1644
  42921. }
  42922. },
  42923. maw: {
  42924. height: math.unit(7.4, "feet"),
  42925. name: "Maw",
  42926. image: {
  42927. source: "./media/characters/sophie-ambrose/maw.svg"
  42928. }
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Normal",
  42934. height: math.unit(17.5, "feet"),
  42935. default: true
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42941. {
  42942. front: {
  42943. height: math.unit(280, "feet"),
  42944. weight: math.unit(550, "tons"),
  42945. name: "Front",
  42946. image: {
  42947. source: "./media/characters/king-mugi/front.svg",
  42948. extra: 1102/947,
  42949. bottom: 104/1206
  42950. }
  42951. },
  42952. },
  42953. [
  42954. {
  42955. name: "King Mugi",
  42956. height: math.unit(280, "feet"),
  42957. default: true
  42958. },
  42959. ]
  42960. ))
  42961. characterMakers.push(() => makeCharacter(
  42962. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42963. {
  42964. front: {
  42965. height: math.unit(64, "meters"),
  42966. name: "Front",
  42967. image: {
  42968. source: "./media/characters/nova-fox/front.svg",
  42969. extra: 1310/1246,
  42970. bottom: 65/1375
  42971. }
  42972. },
  42973. },
  42974. [
  42975. {
  42976. name: "Macro",
  42977. height: math.unit(64, "meters"),
  42978. default: true
  42979. },
  42980. ]
  42981. ))
  42982. characterMakers.push(() => makeCharacter(
  42983. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42984. {
  42985. front: {
  42986. height: math.unit(6 + 3/12, "feet"),
  42987. weight: math.unit(170, "lb"),
  42988. name: "Front",
  42989. image: {
  42990. source: "./media/characters/sam-bat/front.svg",
  42991. extra: 1601/1411,
  42992. bottom: 125/1726
  42993. }
  42994. },
  42995. back: {
  42996. height: math.unit(6 + 3/12, "feet"),
  42997. weight: math.unit(170, "lb"),
  42998. name: "Back",
  42999. image: {
  43000. source: "./media/characters/sam-bat/back.svg",
  43001. extra: 1577/1405,
  43002. bottom: 58/1635
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Normal",
  43009. height: math.unit(6 + 3/12, "feet"),
  43010. default: true
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43016. {
  43017. front: {
  43018. height: math.unit(59, "feet"),
  43019. weight: math.unit(40000, "lb"),
  43020. name: "Front",
  43021. image: {
  43022. source: "./media/characters/inari/front.svg",
  43023. extra: 1884/1350,
  43024. bottom: 95/1979
  43025. }
  43026. },
  43027. },
  43028. [
  43029. {
  43030. name: "Gigantamax",
  43031. height: math.unit(59, "feet"),
  43032. default: true
  43033. },
  43034. ]
  43035. ))
  43036. characterMakers.push(() => makeCharacter(
  43037. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43038. {
  43039. front: {
  43040. height: math.unit(5 + 8/12, "feet"),
  43041. name: "Front",
  43042. image: {
  43043. source: "./media/characters/elizabeth/front.svg",
  43044. extra: 1395/1298,
  43045. bottom: 54/1449
  43046. }
  43047. },
  43048. mouth: {
  43049. height: math.unit(1.97, "feet"),
  43050. name: "Mouth",
  43051. image: {
  43052. source: "./media/characters/elizabeth/mouth.svg"
  43053. }
  43054. },
  43055. foot: {
  43056. height: math.unit(1.17, "feet"),
  43057. name: "Foot",
  43058. image: {
  43059. source: "./media/characters/elizabeth/foot.svg"
  43060. }
  43061. },
  43062. },
  43063. [
  43064. {
  43065. name: "Normal",
  43066. height: math.unit(5 + 8/12, "feet"),
  43067. default: true
  43068. },
  43069. {
  43070. name: "Minimacro",
  43071. height: math.unit(18, "feet")
  43072. },
  43073. {
  43074. name: "Macro",
  43075. height: math.unit(180, "feet")
  43076. },
  43077. ]
  43078. ))
  43079. characterMakers.push(() => makeCharacter(
  43080. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43081. {
  43082. front: {
  43083. height: math.unit(5 + 2/12, "feet"),
  43084. name: "Front",
  43085. image: {
  43086. source: "./media/characters/october-gossamer/front.svg",
  43087. extra: 505/454,
  43088. bottom: 7/512
  43089. }
  43090. },
  43091. back: {
  43092. height: math.unit(5 + 2/12, "feet"),
  43093. name: "Back",
  43094. image: {
  43095. source: "./media/characters/october-gossamer/back.svg",
  43096. extra: 501/454,
  43097. bottom: 11/512
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(5 + 2/12, "feet"),
  43105. default: true
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(5, "feet"),
  43114. name: "Front",
  43115. image: {
  43116. source: "./media/characters/epiglottis/front.svg",
  43117. extra: 923/849,
  43118. bottom: 17/940
  43119. }
  43120. },
  43121. },
  43122. [
  43123. {
  43124. name: "Original Size",
  43125. height: math.unit(10, "inches")
  43126. },
  43127. {
  43128. name: "Human Size",
  43129. height: math.unit(5, "feet"),
  43130. default: true
  43131. },
  43132. {
  43133. name: "Big",
  43134. height: math.unit(25, "feet")
  43135. },
  43136. {
  43137. name: "Bigger",
  43138. height: math.unit(50, "feet")
  43139. },
  43140. {
  43141. name: "oh lawd",
  43142. height: math.unit(75, "feet")
  43143. },
  43144. ]
  43145. ))
  43146. characterMakers.push(() => makeCharacter(
  43147. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43148. {
  43149. front: {
  43150. height: math.unit(2 + 4/12, "feet"),
  43151. weight: math.unit(60, "lb"),
  43152. name: "Front",
  43153. image: {
  43154. source: "./media/characters/lerm/front.svg",
  43155. extra: 796/790,
  43156. bottom: 79/875
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Normal",
  43163. height: math.unit(2 + 4/12, "feet"),
  43164. default: true
  43165. },
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43170. {
  43171. front: {
  43172. height: math.unit(5.5, "feet"),
  43173. weight: math.unit(130, "lb"),
  43174. name: "Front",
  43175. image: {
  43176. source: "./media/characters/xena-nebadon/front.svg",
  43177. extra: 1828/1730,
  43178. bottom: 79/1907
  43179. }
  43180. },
  43181. },
  43182. [
  43183. {
  43184. name: "Tiny Puppy",
  43185. height: math.unit(3, "inches")
  43186. },
  43187. {
  43188. name: "Normal",
  43189. height: math.unit(5.5, "feet"),
  43190. default: true
  43191. },
  43192. {
  43193. name: "Lotta Lady",
  43194. height: math.unit(12, "feet")
  43195. },
  43196. {
  43197. name: "Pretty Big",
  43198. height: math.unit(100, "feet")
  43199. },
  43200. {
  43201. name: "Big",
  43202. height: math.unit(500, "feet")
  43203. },
  43204. {
  43205. name: "Skyscraper Toys",
  43206. height: math.unit(2500, "feet")
  43207. },
  43208. {
  43209. name: "Plane Catcher",
  43210. height: math.unit(8, "miles")
  43211. },
  43212. {
  43213. name: "Planet Toys",
  43214. height: math.unit(15, "earths")
  43215. },
  43216. {
  43217. name: "Stardust",
  43218. height: math.unit(0.25, "galaxies")
  43219. },
  43220. {
  43221. name: "Snacks",
  43222. height: math.unit(70, "universes")
  43223. },
  43224. ]
  43225. ))
  43226. characterMakers.push(() => makeCharacter(
  43227. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43228. {
  43229. front: {
  43230. height: math.unit(1.6, "meters"),
  43231. weight: math.unit(60, "kg"),
  43232. name: "Front",
  43233. image: {
  43234. source: "./media/characters/bounty/front.svg",
  43235. extra: 1426/1308,
  43236. bottom: 15/1441
  43237. }
  43238. },
  43239. back: {
  43240. height: math.unit(1.6, "meters"),
  43241. weight: math.unit(60, "kg"),
  43242. name: "Back",
  43243. image: {
  43244. source: "./media/characters/bounty/back.svg",
  43245. extra: 1417/1307,
  43246. bottom: 8/1425
  43247. }
  43248. },
  43249. },
  43250. [
  43251. {
  43252. name: "Normal",
  43253. height: math.unit(1.6, "meters"),
  43254. default: true
  43255. },
  43256. {
  43257. name: "Macro",
  43258. height: math.unit(300, "meters")
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43264. {
  43265. front: {
  43266. height: math.unit(2 + 8/12, "feet"),
  43267. weight: math.unit(15, "lb"),
  43268. name: "Front",
  43269. image: {
  43270. source: "./media/characters/mochi/front.svg",
  43271. extra: 1022/852,
  43272. bottom: 435/1457
  43273. }
  43274. },
  43275. back: {
  43276. height: math.unit(2 + 8/12, "feet"),
  43277. weight: math.unit(15, "lb"),
  43278. name: "Back",
  43279. image: {
  43280. source: "./media/characters/mochi/back.svg",
  43281. extra: 1335/1119,
  43282. bottom: 39/1374
  43283. }
  43284. },
  43285. bird: {
  43286. height: math.unit(2 + 8/12, "feet"),
  43287. weight: math.unit(15, "lb"),
  43288. name: "Bird",
  43289. image: {
  43290. source: "./media/characters/mochi/bird.svg",
  43291. extra: 1251/1113,
  43292. bottom: 178/1429
  43293. }
  43294. },
  43295. kaiju: {
  43296. height: math.unit(154, "feet"),
  43297. weight: math.unit(1e7, "lb"),
  43298. name: "Kaiju",
  43299. image: {
  43300. source: "./media/characters/mochi/kaiju.svg",
  43301. extra: 460/324,
  43302. bottom: 40/500
  43303. }
  43304. },
  43305. head: {
  43306. height: math.unit(1.21, "feet"),
  43307. name: "Head",
  43308. image: {
  43309. source: "./media/characters/mochi/head.svg"
  43310. }
  43311. },
  43312. alternateTail: {
  43313. height: math.unit(2 + 8/12, "feet"),
  43314. weight: math.unit(45, "lb"),
  43315. name: "Alternate Tail",
  43316. image: {
  43317. source: "./media/characters/mochi/alternate-tail.svg",
  43318. extra: 139/76,
  43319. bottom: 45/184
  43320. }
  43321. },
  43322. },
  43323. [
  43324. {
  43325. name: "Micro",
  43326. height: math.unit(2, "inches")
  43327. },
  43328. {
  43329. name: "Normal",
  43330. height: math.unit(2 + 8/12, "feet"),
  43331. default: true
  43332. },
  43333. {
  43334. name: "Macro",
  43335. height: math.unit(106, "feet")
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43341. {
  43342. front: {
  43343. height: math.unit(5.67, "feet"),
  43344. weight: math.unit(135, "lb"),
  43345. name: "Front",
  43346. image: {
  43347. source: "./media/characters/sarel/front.svg",
  43348. extra: 865/788,
  43349. bottom: 97/962
  43350. }
  43351. },
  43352. back: {
  43353. height: math.unit(5.67, "feet"),
  43354. weight: math.unit(135, "lb"),
  43355. name: "Back",
  43356. image: {
  43357. source: "./media/characters/sarel/back.svg",
  43358. extra: 857/777,
  43359. bottom: 32/889
  43360. }
  43361. },
  43362. chozoan: {
  43363. height: math.unit(5.67, "feet"),
  43364. weight: math.unit(135, "lb"),
  43365. name: "Chozoan",
  43366. image: {
  43367. source: "./media/characters/sarel/chozoan.svg",
  43368. extra: 865/788,
  43369. bottom: 97/962
  43370. }
  43371. },
  43372. current: {
  43373. height: math.unit(5.67, "feet"),
  43374. weight: math.unit(135, "lb"),
  43375. name: "Current",
  43376. image: {
  43377. source: "./media/characters/sarel/current.svg",
  43378. extra: 865/788,
  43379. bottom: 97/962
  43380. }
  43381. },
  43382. head: {
  43383. height: math.unit(1.77, "feet"),
  43384. name: "Head",
  43385. image: {
  43386. source: "./media/characters/sarel/head.svg"
  43387. }
  43388. },
  43389. claws: {
  43390. height: math.unit(1.8, "feet"),
  43391. name: "Claws",
  43392. image: {
  43393. source: "./media/characters/sarel/claws.svg"
  43394. }
  43395. },
  43396. clawsAlt: {
  43397. height: math.unit(1.8, "feet"),
  43398. name: "Claws-alt",
  43399. image: {
  43400. source: "./media/characters/sarel/claws-alt.svg"
  43401. }
  43402. },
  43403. },
  43404. [
  43405. {
  43406. name: "Normal",
  43407. height: math.unit(5.67, "feet"),
  43408. default: true
  43409. },
  43410. ]
  43411. ))
  43412. characterMakers.push(() => makeCharacter(
  43413. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43414. {
  43415. front: {
  43416. height: math.unit(5500, "feet"),
  43417. name: "Front",
  43418. image: {
  43419. source: "./media/characters/alyonia/front.svg",
  43420. extra: 1200/1135,
  43421. bottom: 29/1229
  43422. }
  43423. },
  43424. back: {
  43425. height: math.unit(5500, "feet"),
  43426. name: "Back",
  43427. image: {
  43428. source: "./media/characters/alyonia/back.svg",
  43429. extra: 1205/1138,
  43430. bottom: 10/1215
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Small",
  43437. height: math.unit(10, "feet")
  43438. },
  43439. {
  43440. name: "Macro",
  43441. height: math.unit(500, "feet")
  43442. },
  43443. {
  43444. name: "Mega Macro",
  43445. height: math.unit(5500, "feet"),
  43446. default: true
  43447. },
  43448. {
  43449. name: "Mega Macro+",
  43450. height: math.unit(500000, "feet")
  43451. },
  43452. {
  43453. name: "Giga Macro",
  43454. height: math.unit(3000, "miles")
  43455. },
  43456. {
  43457. name: "Tera Macro",
  43458. height: math.unit(2.8e6, "miles")
  43459. },
  43460. {
  43461. name: "Galactic",
  43462. height: math.unit(120000, "lightyears")
  43463. },
  43464. ]
  43465. ))
  43466. characterMakers.push(() => makeCharacter(
  43467. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43468. {
  43469. werewolf: {
  43470. height: math.unit(8, "feet"),
  43471. weight: math.unit(425, "lb"),
  43472. name: "Werewolf",
  43473. image: {
  43474. source: "./media/characters/autumn/werewolf.svg",
  43475. extra: 2154/2031,
  43476. bottom: 160/2314
  43477. }
  43478. },
  43479. human: {
  43480. height: math.unit(5 + 8/12, "feet"),
  43481. weight: math.unit(150, "lb"),
  43482. name: "Human",
  43483. image: {
  43484. source: "./media/characters/autumn/human.svg",
  43485. extra: 1200/1149,
  43486. bottom: 30/1230
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Normal",
  43493. height: math.unit(8, "feet"),
  43494. default: true
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43500. {
  43501. front: {
  43502. height: math.unit(8 + 5/12, "feet"),
  43503. weight: math.unit(825, "lb"),
  43504. name: "Front",
  43505. image: {
  43506. source: "./media/characters/cobalt-charizard/front.svg",
  43507. extra: 1268/1155,
  43508. bottom: 122/1390
  43509. }
  43510. },
  43511. side: {
  43512. height: math.unit(8 + 5/12, "feet"),
  43513. weight: math.unit(825, "lb"),
  43514. name: "Side",
  43515. image: {
  43516. source: "./media/characters/cobalt-charizard/side.svg",
  43517. extra: 1348/1257,
  43518. bottom: 58/1406
  43519. }
  43520. },
  43521. gMax: {
  43522. height: math.unit(134 + 11/12, "feet"),
  43523. name: "G-Max",
  43524. image: {
  43525. source: "./media/characters/cobalt-charizard/g-max.svg",
  43526. extra: 1835/1541,
  43527. bottom: 151/1986
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Normal",
  43534. height: math.unit(8 + 5/12, "feet"),
  43535. default: true
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(6 + 3/12, "feet"),
  43544. weight: math.unit(210, "lb"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/stella/front.svg",
  43548. extra: 3549/3335,
  43549. bottom: 51/3600
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(6 + 3/12, "feet"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(5, "feet"),
  43566. weight: math.unit(90, "lb"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/riley-bishop/front.svg",
  43570. extra: 1450/1428,
  43571. bottom: 152/1602
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Normal",
  43578. height: math.unit(5, "feet"),
  43579. default: true
  43580. },
  43581. ]
  43582. ))
  43583. characterMakers.push(() => makeCharacter(
  43584. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43585. {
  43586. side: {
  43587. height: math.unit(8 + 2/12, "feet"),
  43588. weight: math.unit(500, "kg"),
  43589. name: "Side",
  43590. image: {
  43591. source: "./media/characters/theo-arcanine/side.svg",
  43592. extra: 1342/1074,
  43593. bottom: 111/1453
  43594. }
  43595. },
  43596. },
  43597. [
  43598. {
  43599. name: "Normal",
  43600. height: math.unit(8 + 2/12, "feet"),
  43601. default: true
  43602. },
  43603. ]
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43607. {
  43608. front: {
  43609. height: math.unit(4, "feet"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/kali/front.svg",
  43613. extra: 1921/1357,
  43614. bottom: 70/1991
  43615. }
  43616. },
  43617. },
  43618. [
  43619. {
  43620. name: "Normal",
  43621. height: math.unit(4, "feet"),
  43622. default: true
  43623. },
  43624. {
  43625. name: "Macro",
  43626. height: math.unit(32, "meters")
  43627. },
  43628. {
  43629. name: "Macro+",
  43630. height: math.unit(150, "meters")
  43631. },
  43632. {
  43633. name: "Megamacro",
  43634. height: math.unit(7500, "meters")
  43635. },
  43636. {
  43637. name: "Megamacro+",
  43638. height: math.unit(80, "kilometers")
  43639. },
  43640. ]
  43641. ))
  43642. characterMakers.push(() => makeCharacter(
  43643. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43644. {
  43645. side: {
  43646. height: math.unit(5 + 11/12, "feet"),
  43647. weight: math.unit(236, "lb"),
  43648. name: "Side",
  43649. image: {
  43650. source: "./media/characters/gapp/side.svg",
  43651. extra: 775/340,
  43652. bottom: 58/833
  43653. }
  43654. },
  43655. mouth: {
  43656. height: math.unit(2.98, "feet"),
  43657. name: "Mouth",
  43658. image: {
  43659. source: "./media/characters/gapp/mouth.svg"
  43660. }
  43661. },
  43662. },
  43663. [
  43664. {
  43665. name: "Normal",
  43666. height: math.unit(5 + 1/12, "feet"),
  43667. default: true
  43668. },
  43669. ]
  43670. ))
  43671. characterMakers.push(() => makeCharacter(
  43672. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43673. {
  43674. front: {
  43675. height: math.unit(6, "feet"),
  43676. name: "Front",
  43677. image: {
  43678. source: "./media/characters/persephone/front.svg",
  43679. extra: 1895/1717,
  43680. bottom: 96/1991
  43681. }
  43682. },
  43683. back: {
  43684. height: math.unit(6, "feet"),
  43685. name: "Back",
  43686. image: {
  43687. source: "./media/characters/persephone/back.svg",
  43688. extra: 1868/1679,
  43689. bottom: 26/1894
  43690. }
  43691. },
  43692. casual: {
  43693. height: math.unit(6, "feet"),
  43694. name: "Casual",
  43695. image: {
  43696. source: "./media/characters/persephone/casual.svg",
  43697. extra: 1713/1541,
  43698. bottom: 76/1789
  43699. }
  43700. },
  43701. },
  43702. [
  43703. {
  43704. name: "Human Size",
  43705. height: math.unit(6, "feet")
  43706. },
  43707. {
  43708. name: "Big Steppy",
  43709. height: math.unit(600, "meters"),
  43710. default: true
  43711. },
  43712. {
  43713. name: "Galaxy Brain",
  43714. height: math.unit(1, "zettameter")
  43715. },
  43716. ]
  43717. ))
  43718. characterMakers.push(() => makeCharacter(
  43719. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43720. {
  43721. front: {
  43722. height: math.unit(1.85, "meters"),
  43723. name: "Front",
  43724. image: {
  43725. source: "./media/characters/riley-foxthing/front.svg",
  43726. extra: 1495/1354,
  43727. bottom: 122/1617
  43728. }
  43729. },
  43730. frontAlt: {
  43731. height: math.unit(1.85, "meters"),
  43732. name: "Front (Alt)",
  43733. image: {
  43734. source: "./media/characters/riley-foxthing/front-alt.svg",
  43735. extra: 1572/1389,
  43736. bottom: 116/1688
  43737. }
  43738. },
  43739. },
  43740. [
  43741. {
  43742. name: "Normal Sized",
  43743. height: math.unit(1.85, "meters"),
  43744. default: true
  43745. },
  43746. {
  43747. name: "Quite Sizable",
  43748. height: math.unit(5, "meters")
  43749. },
  43750. {
  43751. name: "Rather Large",
  43752. height: math.unit(20, "meters")
  43753. },
  43754. {
  43755. name: "Macro",
  43756. height: math.unit(450, "meters")
  43757. },
  43758. {
  43759. name: "Giga",
  43760. height: math.unit(5, "km")
  43761. },
  43762. ]
  43763. ))
  43764. characterMakers.push(() => makeCharacter(
  43765. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43766. {
  43767. front: {
  43768. height: math.unit(6, "feet"),
  43769. weight: math.unit(200, "lb"),
  43770. name: "Front",
  43771. image: {
  43772. source: "./media/characters/blizzard/front.svg",
  43773. extra: 1136/990,
  43774. bottom: 136/1272
  43775. }
  43776. },
  43777. back: {
  43778. height: math.unit(6, "feet"),
  43779. weight: math.unit(200, "lb"),
  43780. name: "Back",
  43781. image: {
  43782. source: "./media/characters/blizzard/back.svg",
  43783. extra: 1175/1034,
  43784. bottom: 97/1272
  43785. }
  43786. },
  43787. sitting: {
  43788. height: math.unit(3.725, "feet"),
  43789. weight: math.unit(200, "lb"),
  43790. name: "Sitting",
  43791. image: {
  43792. source: "./media/characters/blizzard/sitting.svg",
  43793. extra: 581/485,
  43794. bottom: 90/671
  43795. }
  43796. },
  43797. frontWizard: {
  43798. height: math.unit(7.9, "feet"),
  43799. weight: math.unit(200, "lb"),
  43800. name: "Front (Wizard)",
  43801. image: {
  43802. source: "./media/characters/blizzard/front-wizard.svg"
  43803. }
  43804. },
  43805. backWizard: {
  43806. height: math.unit(7.9, "feet"),
  43807. weight: math.unit(200, "lb"),
  43808. name: "Back (Wizard)",
  43809. image: {
  43810. source: "./media/characters/blizzard/back-wizard.svg"
  43811. }
  43812. },
  43813. frontNsfw: {
  43814. height: math.unit(6, "feet"),
  43815. weight: math.unit(200, "lb"),
  43816. name: "Front (NSFW)",
  43817. image: {
  43818. source: "./media/characters/blizzard/front-nsfw.svg",
  43819. extra: 1136/990,
  43820. bottom: 136/1272
  43821. }
  43822. },
  43823. backNsfw: {
  43824. height: math.unit(6, "feet"),
  43825. weight: math.unit(200, "lb"),
  43826. name: "Back (NSFW)",
  43827. image: {
  43828. source: "./media/characters/blizzard/back-nsfw.svg",
  43829. extra: 1175/1034,
  43830. bottom: 97/1272
  43831. }
  43832. },
  43833. sittingNsfw: {
  43834. height: math.unit(3.725, "feet"),
  43835. weight: math.unit(200, "lb"),
  43836. name: "Sitting (NSFW)",
  43837. image: {
  43838. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43839. extra: 581/485,
  43840. bottom: 90/671
  43841. }
  43842. },
  43843. wizardFrontNsfw: {
  43844. height: math.unit(7.9, "feet"),
  43845. weight: math.unit(200, "lb"),
  43846. name: "Wizard (Front, NSFW)",
  43847. image: {
  43848. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(6, "feet"),
  43856. default: true
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43862. {
  43863. front: {
  43864. height: math.unit(5 + 2/12, "feet"),
  43865. name: "Front",
  43866. image: {
  43867. source: "./media/characters/lumi/front.svg",
  43868. extra: 1328/1268,
  43869. bottom: 103/1431
  43870. }
  43871. },
  43872. back: {
  43873. height: math.unit(5 + 2/12, "feet"),
  43874. name: "Back",
  43875. image: {
  43876. source: "./media/characters/lumi/back.svg",
  43877. extra: 1381/1327,
  43878. bottom: 43/1424
  43879. }
  43880. },
  43881. },
  43882. [
  43883. {
  43884. name: "Normal",
  43885. height: math.unit(5 + 2/12, "feet"),
  43886. default: true
  43887. },
  43888. ]
  43889. ))
  43890. characterMakers.push(() => makeCharacter(
  43891. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43892. {
  43893. front: {
  43894. height: math.unit(5 + 9/12, "feet"),
  43895. name: "Front",
  43896. image: {
  43897. source: "./media/characters/aliya-cotton/front.svg",
  43898. extra: 577/564,
  43899. bottom: 29/606
  43900. }
  43901. },
  43902. },
  43903. [
  43904. {
  43905. name: "Normal",
  43906. height: math.unit(5 + 9/12, "feet"),
  43907. default: true
  43908. },
  43909. ]
  43910. ))
  43911. characterMakers.push(() => makeCharacter(
  43912. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43913. {
  43914. front: {
  43915. height: math.unit(2.7, "meters"),
  43916. weight: math.unit(25000, "lb"),
  43917. name: "Front",
  43918. image: {
  43919. source: "./media/characters/noah-luxray/front.svg",
  43920. extra: 1644/825,
  43921. bottom: 339/1983
  43922. }
  43923. },
  43924. side: {
  43925. height: math.unit(2.97, "meters"),
  43926. weight: math.unit(25000, "lb"),
  43927. name: "Side",
  43928. image: {
  43929. source: "./media/characters/noah-luxray/side.svg",
  43930. extra: 1319/650,
  43931. bottom: 163/1482
  43932. }
  43933. },
  43934. dick: {
  43935. height: math.unit(7.4, "feet"),
  43936. weight: math.unit(2500, "lb"),
  43937. name: "Dick",
  43938. image: {
  43939. source: "./media/characters/noah-luxray/dick.svg"
  43940. }
  43941. },
  43942. dickAlt: {
  43943. height: math.unit(10.83, "feet"),
  43944. weight: math.unit(2500, "lb"),
  43945. name: "Dick-alt",
  43946. image: {
  43947. source: "./media/characters/noah-luxray/dick-alt.svg"
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "BIG",
  43954. height: math.unit(2.7, "meters"),
  43955. default: true
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43961. {
  43962. standing: {
  43963. height: math.unit(183, "cm"),
  43964. weight: math.unit(68, "kg"),
  43965. name: "Standing",
  43966. image: {
  43967. source: "./media/characters/arion/standing.svg",
  43968. extra: 1869/1807,
  43969. bottom: 93/1962
  43970. }
  43971. },
  43972. reclining: {
  43973. height: math.unit(70.5, "cm"),
  43974. weight: math.unit(68, "lb"),
  43975. name: "Reclining",
  43976. image: {
  43977. source: "./media/characters/arion/reclining.svg",
  43978. extra: 937/870,
  43979. bottom: 63/1000
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "Colossus Size, Low",
  43986. height: math.unit(33, "meters"),
  43987. default: true
  43988. },
  43989. {
  43990. name: "Colossus Size, Mid",
  43991. height: math.unit(52, "meters")
  43992. },
  43993. {
  43994. name: "Colossus Size, High",
  43995. height: math.unit(60, "meters")
  43996. },
  43997. {
  43998. name: "Titan Size, Low",
  43999. height: math.unit(91, "meters"),
  44000. },
  44001. {
  44002. name: "Titan Size, Mid",
  44003. height: math.unit(122, "meters")
  44004. },
  44005. {
  44006. name: "Titan Size, High",
  44007. height: math.unit(162, "meters")
  44008. },
  44009. ]
  44010. ))
  44011. characterMakers.push(() => makeCharacter(
  44012. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44013. {
  44014. front: {
  44015. height: math.unit(53, "meters"),
  44016. name: "Front",
  44017. image: {
  44018. source: "./media/characters/stellar-marbey/front.svg",
  44019. extra: 1913/1805,
  44020. bottom: 92/2005
  44021. }
  44022. },
  44023. back: {
  44024. height: math.unit(53, "meters"),
  44025. name: "Back",
  44026. image: {
  44027. source: "./media/characters/stellar-marbey/back.svg",
  44028. extra: 1960/1851,
  44029. bottom: 28/1988
  44030. }
  44031. },
  44032. mouth: {
  44033. height: math.unit(3.5, "meters"),
  44034. name: "Mouth",
  44035. image: {
  44036. source: "./media/characters/stellar-marbey/mouth.svg"
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Macro",
  44043. height: math.unit(53, "meters"),
  44044. default: true
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44050. {
  44051. front: {
  44052. height: math.unit(8 + 1/12, "feet"),
  44053. weight: math.unit(233, "lb"),
  44054. name: "Front",
  44055. image: {
  44056. source: "./media/characters/matsu/front.svg",
  44057. extra: 832/772,
  44058. bottom: 40/872
  44059. }
  44060. },
  44061. back: {
  44062. height: math.unit(8 + 1/12, "feet"),
  44063. weight: math.unit(233, "lb"),
  44064. name: "Back",
  44065. image: {
  44066. source: "./media/characters/matsu/back.svg",
  44067. extra: 839/780,
  44068. bottom: 47/886
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Normal",
  44075. height: math.unit(8 + 1/12, "feet"),
  44076. default: true
  44077. },
  44078. ]
  44079. ))
  44080. characterMakers.push(() => makeCharacter(
  44081. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44082. {
  44083. front: {
  44084. height: math.unit(4, "feet"),
  44085. weight: math.unit(148, "lb"),
  44086. name: "Front",
  44087. image: {
  44088. source: "./media/characters/thiz/front.svg",
  44089. extra: 1913/1748,
  44090. bottom: 62/1975
  44091. }
  44092. },
  44093. },
  44094. [
  44095. {
  44096. name: "Normal",
  44097. height: math.unit(4, "feet"),
  44098. default: true
  44099. },
  44100. ]
  44101. ))
  44102. characterMakers.push(() => makeCharacter(
  44103. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44104. {
  44105. front: {
  44106. height: math.unit(7 + 6/12, "feet"),
  44107. weight: math.unit(267, "lb"),
  44108. name: "Front",
  44109. image: {
  44110. source: "./media/characters/marcel/front.svg",
  44111. extra: 1221/1096,
  44112. bottom: 76/1297
  44113. }
  44114. },
  44115. },
  44116. [
  44117. {
  44118. name: "Normal",
  44119. height: math.unit(7 + 6/12, "feet"),
  44120. default: true
  44121. },
  44122. ]
  44123. ))
  44124. characterMakers.push(() => makeCharacter(
  44125. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44126. {
  44127. side: {
  44128. height: math.unit(42, "meters"),
  44129. name: "Side",
  44130. image: {
  44131. source: "./media/characters/flake/side.svg",
  44132. extra: 1525/1306,
  44133. bottom: 209/1734
  44134. }
  44135. },
  44136. },
  44137. [
  44138. {
  44139. name: "Normal",
  44140. height: math.unit(42, "meters"),
  44141. default: true
  44142. },
  44143. ]
  44144. ))
  44145. characterMakers.push(() => makeCharacter(
  44146. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44147. {
  44148. dressed: {
  44149. height: math.unit(6 + 4/12, "feet"),
  44150. weight: math.unit(520, "lb"),
  44151. name: "Dressed",
  44152. image: {
  44153. source: "./media/characters/someonne/dressed.svg",
  44154. extra: 1020/1010,
  44155. bottom: 178/1198
  44156. }
  44157. },
  44158. undressed: {
  44159. height: math.unit(6 + 4/12, "feet"),
  44160. weight: math.unit(520, "lb"),
  44161. name: "Undressed",
  44162. image: {
  44163. source: "./media/characters/someonne/undressed.svg",
  44164. extra: 1019/1014,
  44165. bottom: 169/1188
  44166. }
  44167. },
  44168. },
  44169. [
  44170. {
  44171. name: "Normal",
  44172. height: math.unit(6 + 4/12, "feet"),
  44173. default: true
  44174. },
  44175. ]
  44176. ))
  44177. characterMakers.push(() => makeCharacter(
  44178. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44179. {
  44180. front: {
  44181. height: math.unit(3, "feet"),
  44182. weight: math.unit(30, "lb"),
  44183. name: "Front",
  44184. image: {
  44185. source: "./media/characters/till/front.svg",
  44186. extra: 892/823,
  44187. bottom: 55/947
  44188. }
  44189. },
  44190. },
  44191. [
  44192. {
  44193. name: "Normal",
  44194. height: math.unit(3, "feet"),
  44195. default: true
  44196. },
  44197. ]
  44198. ))
  44199. characterMakers.push(() => makeCharacter(
  44200. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44201. {
  44202. front: {
  44203. height: math.unit(9 + 8/12, "feet"),
  44204. weight: math.unit(800, "lb"),
  44205. name: "Front",
  44206. image: {
  44207. source: "./media/characters/sydney-heki/front.svg",
  44208. extra: 1360/1300,
  44209. bottom: 22/1382
  44210. }
  44211. },
  44212. back: {
  44213. height: math.unit(9 + 8/12, "feet"),
  44214. weight: math.unit(800, "lb"),
  44215. name: "Back",
  44216. image: {
  44217. source: "./media/characters/sydney-heki/back.svg",
  44218. extra: 1356/1293,
  44219. bottom: 12/1368
  44220. }
  44221. },
  44222. frontDressed: {
  44223. height: math.unit(9 + 8/12, "feet"),
  44224. weight: math.unit(800, "lb"),
  44225. name: "Front-dressed",
  44226. image: {
  44227. source: "./media/characters/sydney-heki/front-dressed.svg",
  44228. extra: 1360/1300,
  44229. bottom: 22/1382
  44230. }
  44231. },
  44232. },
  44233. [
  44234. {
  44235. name: "Normal",
  44236. height: math.unit(9 + 8/12, "feet"),
  44237. default: true
  44238. },
  44239. {
  44240. name: "Macro",
  44241. height: math.unit(500, "feet")
  44242. },
  44243. {
  44244. name: "Megamacro",
  44245. height: math.unit(3.6, "miles")
  44246. },
  44247. ]
  44248. ))
  44249. characterMakers.push(() => makeCharacter(
  44250. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44251. {
  44252. front: {
  44253. height: math.unit(200, "cm"),
  44254. weight: math.unit(250, "lb"),
  44255. name: "Front",
  44256. image: {
  44257. source: "./media/characters/fowler-karlsson/front.svg",
  44258. extra: 897/845,
  44259. bottom: 123/1020
  44260. }
  44261. },
  44262. back: {
  44263. height: math.unit(200, "cm"),
  44264. weight: math.unit(250, "lb"),
  44265. name: "Back",
  44266. image: {
  44267. source: "./media/characters/fowler-karlsson/back.svg",
  44268. extra: 999/944,
  44269. bottom: 26/1025
  44270. }
  44271. },
  44272. dick: {
  44273. height: math.unit(1.92, "feet"),
  44274. weight: math.unit(150, "lb"),
  44275. name: "Dick",
  44276. image: {
  44277. source: "./media/characters/fowler-karlsson/dick.svg"
  44278. }
  44279. },
  44280. },
  44281. [
  44282. {
  44283. name: "Normal",
  44284. height: math.unit(200, "cm"),
  44285. default: true
  44286. },
  44287. {
  44288. name: "Smaller Macro",
  44289. height: math.unit(90, "m")
  44290. },
  44291. {
  44292. name: "Macro",
  44293. height: math.unit(150, "m")
  44294. },
  44295. {
  44296. name: "Bigger Macro",
  44297. height: math.unit(300, "m")
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44303. {
  44304. side: {
  44305. height: math.unit(8 + 2/12, "feet"),
  44306. weight: math.unit(1, "tonne"),
  44307. name: "Side",
  44308. image: {
  44309. source: "./media/characters/rylide/side.svg",
  44310. extra: 1318/1034,
  44311. bottom: 106/1424
  44312. }
  44313. },
  44314. sitting: {
  44315. height: math.unit(303, "cm"),
  44316. weight: math.unit(1, "tonne"),
  44317. name: "Sitting",
  44318. image: {
  44319. source: "./media/characters/rylide/sitting.svg",
  44320. extra: 1303/1103,
  44321. bottom: 36/1339
  44322. }
  44323. },
  44324. },
  44325. [
  44326. {
  44327. name: "Normal",
  44328. height: math.unit(8 + 2/12, "feet"),
  44329. default: true
  44330. },
  44331. ]
  44332. ))
  44333. characterMakers.push(() => makeCharacter(
  44334. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44335. {
  44336. front: {
  44337. height: math.unit(5 + 10/12, "feet"),
  44338. weight: math.unit(160, "lb"),
  44339. name: "Front",
  44340. image: {
  44341. source: "./media/characters/pudask/front.svg",
  44342. extra: 1616/1590,
  44343. bottom: 161/1777
  44344. }
  44345. },
  44346. },
  44347. [
  44348. {
  44349. name: "Ferret Height",
  44350. height: math.unit(2 + 5/12, "feet")
  44351. },
  44352. {
  44353. name: "Canon Height",
  44354. height: math.unit(5 + 10/12, "feet"),
  44355. default: true
  44356. },
  44357. ]
  44358. ))
  44359. characterMakers.push(() => makeCharacter(
  44360. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44361. {
  44362. front: {
  44363. height: math.unit(3 + 6/12, "feet"),
  44364. weight: math.unit(60, "lb"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/ramita/front.svg",
  44368. extra: 1402/1232,
  44369. bottom: 62/1464
  44370. }
  44371. },
  44372. dressed: {
  44373. height: math.unit(3 + 6/12, "feet"),
  44374. weight: math.unit(60, "lb"),
  44375. name: "Dressed",
  44376. image: {
  44377. source: "./media/characters/ramita/dressed.svg",
  44378. extra: 1534/1249,
  44379. bottom: 50/1584
  44380. }
  44381. },
  44382. },
  44383. [
  44384. {
  44385. name: "Normal",
  44386. height: math.unit(3 + 6/12, "feet"),
  44387. default: true
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44393. {
  44394. front: {
  44395. height: math.unit(8, "feet"),
  44396. name: "Front",
  44397. image: {
  44398. source: "./media/characters/ark/front.svg",
  44399. extra: 772/693,
  44400. bottom: 45/817
  44401. }
  44402. },
  44403. },
  44404. [
  44405. {
  44406. name: "Normal",
  44407. height: math.unit(8, "feet"),
  44408. default: true
  44409. },
  44410. ]
  44411. ))
  44412. characterMakers.push(() => makeCharacter(
  44413. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44414. {
  44415. front: {
  44416. height: math.unit(6, "feet"),
  44417. weight: math.unit(250, "lb"),
  44418. volume: math.unit(5/8, "gallons"),
  44419. name: "Front",
  44420. image: {
  44421. source: "./media/characters/ludwig-horn/front.svg",
  44422. extra: 1782/1635,
  44423. bottom: 96/1878
  44424. }
  44425. },
  44426. back: {
  44427. height: math.unit(6, "feet"),
  44428. weight: math.unit(250, "lb"),
  44429. volume: math.unit(5/8, "gallons"),
  44430. name: "Back",
  44431. image: {
  44432. source: "./media/characters/ludwig-horn/back.svg",
  44433. extra: 1874/1729,
  44434. bottom: 27/1901
  44435. }
  44436. },
  44437. dick: {
  44438. height: math.unit(1.05, "feet"),
  44439. weight: math.unit(15, "lb"),
  44440. volume: math.unit(5/8, "gallons"),
  44441. name: "Dick",
  44442. image: {
  44443. source: "./media/characters/ludwig-horn/dick.svg"
  44444. }
  44445. },
  44446. },
  44447. [
  44448. {
  44449. name: "Small",
  44450. height: math.unit(6, "feet")
  44451. },
  44452. {
  44453. name: "Typical",
  44454. height: math.unit(12, "feet"),
  44455. default: true
  44456. },
  44457. {
  44458. name: "Building",
  44459. height: math.unit(80, "feet")
  44460. },
  44461. {
  44462. name: "Town",
  44463. height: math.unit(800, "feet")
  44464. },
  44465. {
  44466. name: "Kingdom",
  44467. height: math.unit(80000, "feet")
  44468. },
  44469. {
  44470. name: "Planet",
  44471. height: math.unit(8000000, "feet")
  44472. },
  44473. {
  44474. name: "Universe",
  44475. height: math.unit(8000000000, "feet")
  44476. },
  44477. {
  44478. name: "Transcended",
  44479. height: math.unit(8e27, "feet")
  44480. },
  44481. ]
  44482. ))
  44483. characterMakers.push(() => makeCharacter(
  44484. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44485. {
  44486. front: {
  44487. height: math.unit(5, "feet"),
  44488. weight: math.unit(50, "kg"),
  44489. name: "Front",
  44490. image: {
  44491. source: "./media/characters/biot-avery/front.svg",
  44492. extra: 1295/1232,
  44493. bottom: 86/1381
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "Normal",
  44500. height: math.unit(5, "feet"),
  44501. default: true
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44507. {
  44508. front: {
  44509. height: math.unit(6, "feet"),
  44510. name: "Front",
  44511. image: {
  44512. source: "./media/characters/kitsune-kiro/front.svg",
  44513. extra: 1270/1158,
  44514. bottom: 42/1312
  44515. }
  44516. },
  44517. frontAlt: {
  44518. height: math.unit(6, "feet"),
  44519. name: "Front-alt",
  44520. image: {
  44521. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44522. extra: 1130/1081,
  44523. bottom: 36/1166
  44524. }
  44525. },
  44526. },
  44527. [
  44528. {
  44529. name: "Smol",
  44530. height: math.unit(3, "feet")
  44531. },
  44532. {
  44533. name: "Normal",
  44534. height: math.unit(6, "feet"),
  44535. default: true
  44536. },
  44537. ]
  44538. ))
  44539. characterMakers.push(() => makeCharacter(
  44540. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44541. {
  44542. front: {
  44543. height: math.unit(6, "feet"),
  44544. weight: math.unit(125, "lb"),
  44545. name: "Front",
  44546. image: {
  44547. source: "./media/characters/jack-thatcher/front.svg",
  44548. extra: 1474/1370,
  44549. bottom: 26/1500
  44550. }
  44551. },
  44552. back: {
  44553. height: math.unit(6, "feet"),
  44554. weight: math.unit(125, "lb"),
  44555. name: "Back",
  44556. image: {
  44557. source: "./media/characters/jack-thatcher/back.svg",
  44558. extra: 1489/1384,
  44559. bottom: 18/1507
  44560. }
  44561. },
  44562. },
  44563. [
  44564. {
  44565. name: "Normal",
  44566. height: math.unit(6, "feet"),
  44567. default: true
  44568. },
  44569. {
  44570. name: "Macro",
  44571. height: math.unit(75, "feet")
  44572. },
  44573. {
  44574. name: "Macro-er",
  44575. height: math.unit(250, "feet")
  44576. },
  44577. ]
  44578. ))
  44579. characterMakers.push(() => makeCharacter(
  44580. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44581. {
  44582. front: {
  44583. height: math.unit(7, "feet"),
  44584. weight: math.unit(110, "kg"),
  44585. name: "Front",
  44586. image: {
  44587. source: "./media/characters/max-hyper/front.svg",
  44588. extra: 1969/1881,
  44589. bottom: 49/2018
  44590. }
  44591. },
  44592. },
  44593. [
  44594. {
  44595. name: "Normal",
  44596. height: math.unit(7, "feet"),
  44597. default: true
  44598. },
  44599. ]
  44600. ))
  44601. characterMakers.push(() => makeCharacter(
  44602. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44603. {
  44604. front: {
  44605. height: math.unit(5 + 5/12, "feet"),
  44606. weight: math.unit(160, "lb"),
  44607. name: "Front",
  44608. image: {
  44609. source: "./media/characters/spook/front.svg",
  44610. extra: 794/791,
  44611. bottom: 54/848
  44612. }
  44613. },
  44614. back: {
  44615. height: math.unit(5 + 5/12, "feet"),
  44616. weight: math.unit(160, "lb"),
  44617. name: "Back",
  44618. image: {
  44619. source: "./media/characters/spook/back.svg",
  44620. extra: 812/798,
  44621. bottom: 32/844
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Normal",
  44628. height: math.unit(5 + 5/12, "feet"),
  44629. default: true
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44635. {
  44636. front: {
  44637. height: math.unit(18, "feet"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/xeaduulix/front.svg",
  44641. extra: 1380/1166,
  44642. bottom: 110/1490
  44643. }
  44644. },
  44645. back: {
  44646. height: math.unit(18, "feet"),
  44647. name: "Back",
  44648. image: {
  44649. source: "./media/characters/xeaduulix/back.svg",
  44650. extra: 1592/1170,
  44651. bottom: 128/1720
  44652. }
  44653. },
  44654. frontNsfw: {
  44655. height: math.unit(18, "feet"),
  44656. name: "Front (NSFW)",
  44657. image: {
  44658. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44659. extra: 1380/1166,
  44660. bottom: 110/1490
  44661. }
  44662. },
  44663. backNsfw: {
  44664. height: math.unit(18, "feet"),
  44665. name: "Back (NSFW)",
  44666. image: {
  44667. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44668. extra: 1592/1170,
  44669. bottom: 128/1720
  44670. }
  44671. },
  44672. },
  44673. [
  44674. {
  44675. name: "Normal",
  44676. height: math.unit(18, "feet"),
  44677. default: true
  44678. },
  44679. ]
  44680. ))
  44681. characterMakers.push(() => makeCharacter(
  44682. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44683. {
  44684. spreadWings: {
  44685. height: math.unit(20, "feet"),
  44686. name: "Spread Wings",
  44687. image: {
  44688. source: "./media/characters/fledge/spread-wings.svg",
  44689. extra: 693/635,
  44690. bottom: 26/719
  44691. }
  44692. },
  44693. front: {
  44694. height: math.unit(20, "feet"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/fledge/front.svg",
  44698. extra: 684/637,
  44699. bottom: 18/702
  44700. }
  44701. },
  44702. frontAlt: {
  44703. height: math.unit(20, "feet"),
  44704. name: "Front (Alt)",
  44705. image: {
  44706. source: "./media/characters/fledge/front-alt.svg",
  44707. extra: 708/664,
  44708. bottom: 13/721
  44709. }
  44710. },
  44711. back: {
  44712. height: math.unit(20, "feet"),
  44713. name: "Back",
  44714. image: {
  44715. source: "./media/characters/fledge/back.svg",
  44716. extra: 718/634,
  44717. bottom: 22/740
  44718. }
  44719. },
  44720. head: {
  44721. height: math.unit(5.55, "feet"),
  44722. name: "Head",
  44723. image: {
  44724. source: "./media/characters/fledge/head.svg"
  44725. }
  44726. },
  44727. headAlt: {
  44728. height: math.unit(5.1, "feet"),
  44729. name: "Head (Alt)",
  44730. image: {
  44731. source: "./media/characters/fledge/head-alt.svg"
  44732. }
  44733. },
  44734. },
  44735. [
  44736. {
  44737. name: "Small",
  44738. height: math.unit(6 + 2/12, "feet")
  44739. },
  44740. {
  44741. name: "Big",
  44742. height: math.unit(20, "feet"),
  44743. default: true
  44744. },
  44745. {
  44746. name: "Giant",
  44747. height: math.unit(100, "feet")
  44748. },
  44749. {
  44750. name: "Macro",
  44751. height: math.unit(200, "feet")
  44752. },
  44753. ]
  44754. ))
  44755. characterMakers.push(() => makeCharacter(
  44756. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44757. {
  44758. front: {
  44759. height: math.unit(1, "meter"),
  44760. name: "Front",
  44761. image: {
  44762. source: "./media/characters/atlas-morenai/front.svg",
  44763. extra: 1275/1043,
  44764. bottom: 19/1294
  44765. }
  44766. },
  44767. back: {
  44768. height: math.unit(1, "meter"),
  44769. name: "Back",
  44770. image: {
  44771. source: "./media/characters/atlas-morenai/back.svg",
  44772. extra: 1141/1001,
  44773. bottom: 25/1166
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(1, "meter"),
  44781. default: true
  44782. },
  44783. {
  44784. name: "Magic-Infused",
  44785. height: math.unit(5, "meters")
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(5, "meters"),
  44794. name: "Front",
  44795. image: {
  44796. source: "./media/characters/cintia/front.svg",
  44797. extra: 1312/1228,
  44798. bottom: 38/1350
  44799. }
  44800. },
  44801. back: {
  44802. height: math.unit(5, "meters"),
  44803. name: "Back",
  44804. image: {
  44805. source: "./media/characters/cintia/back.svg",
  44806. extra: 1260/1166,
  44807. bottom: 98/1358
  44808. }
  44809. },
  44810. frontDick: {
  44811. height: math.unit(5, "meters"),
  44812. name: "Front (Dick)",
  44813. image: {
  44814. source: "./media/characters/cintia/front-dick.svg",
  44815. extra: 1312/1228,
  44816. bottom: 38/1350
  44817. }
  44818. },
  44819. backDick: {
  44820. height: math.unit(5, "meters"),
  44821. name: "Back (Dick)",
  44822. image: {
  44823. source: "./media/characters/cintia/back-dick.svg",
  44824. extra: 1260/1166,
  44825. bottom: 98/1358
  44826. }
  44827. },
  44828. bust: {
  44829. height: math.unit(1.97, "meters"),
  44830. name: "Bust",
  44831. image: {
  44832. source: "./media/characters/cintia/bust.svg",
  44833. extra: 617/565,
  44834. bottom: 0/617
  44835. }
  44836. },
  44837. },
  44838. [
  44839. {
  44840. name: "Normal",
  44841. height: math.unit(5, "meters"),
  44842. default: true
  44843. },
  44844. ]
  44845. ))
  44846. characterMakers.push(() => makeCharacter(
  44847. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44848. {
  44849. side: {
  44850. height: math.unit(100, "feet"),
  44851. name: "Side",
  44852. image: {
  44853. source: "./media/characters/denora/side.svg",
  44854. extra: 875/803,
  44855. bottom: 9/884
  44856. }
  44857. },
  44858. },
  44859. [
  44860. {
  44861. name: "Standard",
  44862. height: math.unit(100, "feet"),
  44863. default: true
  44864. },
  44865. {
  44866. name: "Grand",
  44867. height: math.unit(1000, "feet")
  44868. },
  44869. {
  44870. name: "Conquering",
  44871. height: math.unit(10000, "feet")
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44877. {
  44878. dressed: {
  44879. height: math.unit(8 + 5/12, "feet"),
  44880. weight: math.unit(700, "lb"),
  44881. name: "Dressed",
  44882. image: {
  44883. source: "./media/characters/kiva/dressed.svg",
  44884. extra: 1102/1055,
  44885. bottom: 60/1162
  44886. }
  44887. },
  44888. nude: {
  44889. height: math.unit(8 + 5/12, "feet"),
  44890. weight: math.unit(700, "lb"),
  44891. name: "Nude",
  44892. image: {
  44893. source: "./media/characters/kiva/nude.svg",
  44894. extra: 1102/1055,
  44895. bottom: 60/1162
  44896. }
  44897. },
  44898. },
  44899. [
  44900. {
  44901. name: "Base Height",
  44902. height: math.unit(8 + 5/12, "feet"),
  44903. default: true
  44904. },
  44905. {
  44906. name: "Macro",
  44907. height: math.unit(100, "feet")
  44908. },
  44909. {
  44910. name: "Max",
  44911. height: math.unit(3280, "feet")
  44912. },
  44913. ]
  44914. ))
  44915. characterMakers.push(() => makeCharacter(
  44916. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44917. {
  44918. front: {
  44919. height: math.unit(6 + 8/12, "feet"),
  44920. weight: math.unit(250, "lb"),
  44921. name: "Front",
  44922. image: {
  44923. source: "./media/characters/ztragon/front.svg",
  44924. extra: 1825/1684,
  44925. bottom: 98/1923
  44926. }
  44927. },
  44928. },
  44929. [
  44930. {
  44931. name: "Normal",
  44932. height: math.unit(6 + 8/12, "feet"),
  44933. default: true
  44934. },
  44935. {
  44936. name: "Macro",
  44937. height: math.unit(80, "feet")
  44938. },
  44939. ]
  44940. ))
  44941. characterMakers.push(() => makeCharacter(
  44942. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44943. {
  44944. front: {
  44945. height: math.unit(10.4, "feet"),
  44946. weight: math.unit(2, "tons"),
  44947. name: "Front",
  44948. image: {
  44949. source: "./media/characters/yesenia/front.svg",
  44950. extra: 1479/1474,
  44951. bottom: 233/1712
  44952. }
  44953. },
  44954. },
  44955. [
  44956. {
  44957. name: "Normal",
  44958. height: math.unit(10.4, "feet"),
  44959. default: true
  44960. },
  44961. ]
  44962. ))
  44963. characterMakers.push(() => makeCharacter(
  44964. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44965. {
  44966. normal: {
  44967. height: math.unit(6 + 1/12, "feet"),
  44968. weight: math.unit(180, "lb"),
  44969. name: "Normal",
  44970. image: {
  44971. source: "./media/characters/leanne-lycheborne/normal.svg",
  44972. extra: 1748/1660,
  44973. bottom: 98/1846
  44974. }
  44975. },
  44976. were: {
  44977. height: math.unit(12, "feet"),
  44978. weight: math.unit(1600, "lb"),
  44979. name: "Were",
  44980. image: {
  44981. source: "./media/characters/leanne-lycheborne/were.svg",
  44982. extra: 1485/1432,
  44983. bottom: 66/1551
  44984. }
  44985. },
  44986. },
  44987. [
  44988. {
  44989. name: "Normal",
  44990. height: math.unit(6 + 1/12, "feet"),
  44991. default: true
  44992. },
  44993. ]
  44994. ))
  44995. characterMakers.push(() => makeCharacter(
  44996. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44997. {
  44998. side: {
  44999. height: math.unit(13, "feet"),
  45000. name: "Side",
  45001. image: {
  45002. source: "./media/characters/kira-tyler/side.svg",
  45003. extra: 693/393,
  45004. bottom: 58/751
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(13, "feet"),
  45012. default: true
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45018. {
  45019. front: {
  45020. height: math.unit(10.3, "feet"),
  45021. weight: math.unit(150, "lb"),
  45022. name: "Front",
  45023. image: {
  45024. source: "./media/characters/blaze/front.svg",
  45025. extra: 1378/1286,
  45026. bottom: 172/1550
  45027. }
  45028. },
  45029. },
  45030. [
  45031. {
  45032. name: "Normal",
  45033. height: math.unit(10.3, "feet"),
  45034. default: true
  45035. },
  45036. ]
  45037. ))
  45038. characterMakers.push(() => makeCharacter(
  45039. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45040. {
  45041. side: {
  45042. height: math.unit(2, "meters"),
  45043. weight: math.unit(400, "kg"),
  45044. name: "Side",
  45045. image: {
  45046. source: "./media/characters/anu/side.svg",
  45047. extra: 506/394,
  45048. bottom: 18/524
  45049. }
  45050. },
  45051. },
  45052. [
  45053. {
  45054. name: "Humanoid",
  45055. height: math.unit(2, "meters")
  45056. },
  45057. {
  45058. name: "Normal",
  45059. height: math.unit(5, "meters"),
  45060. default: true
  45061. },
  45062. ]
  45063. ))
  45064. characterMakers.push(() => makeCharacter(
  45065. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45066. {
  45067. front: {
  45068. height: math.unit(5 + 5/12, "feet"),
  45069. weight: math.unit(170, "lb"),
  45070. name: "Front",
  45071. image: {
  45072. source: "./media/characters/synx-the-lynx/front.svg",
  45073. extra: 1893/1745,
  45074. bottom: 17/1910
  45075. }
  45076. },
  45077. side: {
  45078. height: math.unit(5 + 5/12, "feet"),
  45079. weight: math.unit(170, "lb"),
  45080. name: "Side",
  45081. image: {
  45082. source: "./media/characters/synx-the-lynx/side.svg",
  45083. extra: 1884/1740,
  45084. bottom: 39/1923
  45085. }
  45086. },
  45087. back: {
  45088. height: math.unit(5 + 5/12, "feet"),
  45089. weight: math.unit(170, "lb"),
  45090. name: "Back",
  45091. image: {
  45092. source: "./media/characters/synx-the-lynx/back.svg",
  45093. extra: 1903/1755,
  45094. bottom: 14/1917
  45095. }
  45096. },
  45097. },
  45098. [
  45099. {
  45100. name: "Normal",
  45101. height: math.unit(5 + 5/12, "feet"),
  45102. default: true
  45103. },
  45104. ]
  45105. ))
  45106. characterMakers.push(() => makeCharacter(
  45107. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45108. {
  45109. back: {
  45110. height: math.unit(15, "feet"),
  45111. name: "Back",
  45112. image: {
  45113. source: "./media/characters/nadezda-fex/back.svg",
  45114. extra: 1695/1481,
  45115. bottom: 25/1720
  45116. }
  45117. },
  45118. },
  45119. [
  45120. {
  45121. name: "Normal",
  45122. height: math.unit(15, "feet"),
  45123. default: true
  45124. },
  45125. {
  45126. name: "Macro",
  45127. height: math.unit(2.5, "miles")
  45128. },
  45129. {
  45130. name: "Goddess",
  45131. height: math.unit(2, "multiverses")
  45132. },
  45133. ]
  45134. ))
  45135. characterMakers.push(() => makeCharacter(
  45136. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45137. {
  45138. front: {
  45139. height: math.unit(216, "cm"),
  45140. name: "Front",
  45141. image: {
  45142. source: "./media/characters/lev/front.svg",
  45143. extra: 1728/1670,
  45144. bottom: 82/1810
  45145. }
  45146. },
  45147. back: {
  45148. height: math.unit(216, "cm"),
  45149. name: "Back",
  45150. image: {
  45151. source: "./media/characters/lev/back.svg",
  45152. extra: 1738/1675,
  45153. bottom: 24/1762
  45154. }
  45155. },
  45156. dressed: {
  45157. height: math.unit(216, "cm"),
  45158. name: "Dressed",
  45159. image: {
  45160. source: "./media/characters/lev/dressed.svg",
  45161. extra: 1397/1351,
  45162. bottom: 73/1470
  45163. }
  45164. },
  45165. head: {
  45166. height: math.unit(0.51, "meter"),
  45167. name: "Head",
  45168. image: {
  45169. source: "./media/characters/lev/head.svg"
  45170. }
  45171. },
  45172. },
  45173. [
  45174. {
  45175. name: "Normal",
  45176. height: math.unit(216, "cm"),
  45177. default: true
  45178. },
  45179. {
  45180. name: "Relatively Macro",
  45181. height: math.unit(80, "meters")
  45182. },
  45183. {
  45184. name: "Megamacro",
  45185. height: math.unit(21600, "meters")
  45186. },
  45187. {
  45188. name: "Megamacro+",
  45189. height: math.unit(64800, "meters")
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45195. {
  45196. front: {
  45197. height: math.unit(2, "meters"),
  45198. weight: math.unit(80, "kg"),
  45199. name: "Front",
  45200. image: {
  45201. source: "./media/characters/moka/front.svg",
  45202. extra: 1337/1255,
  45203. bottom: 58/1395
  45204. }
  45205. },
  45206. },
  45207. [
  45208. {
  45209. name: "Micro",
  45210. height: math.unit(15, "cm")
  45211. },
  45212. {
  45213. name: "Normal",
  45214. height: math.unit(2, "meters"),
  45215. default: true
  45216. },
  45217. {
  45218. name: "Macro",
  45219. height: math.unit(20, "meters"),
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45225. {
  45226. front: {
  45227. height: math.unit(9, "feet"),
  45228. weight: math.unit(240, "lb"),
  45229. name: "Front",
  45230. image: {
  45231. source: "./media/characters/kuzco/front.svg",
  45232. extra: 1593/1487,
  45233. bottom: 32/1625
  45234. }
  45235. },
  45236. side: {
  45237. height: math.unit(9, "feet"),
  45238. weight: math.unit(240, "lb"),
  45239. name: "Side",
  45240. image: {
  45241. source: "./media/characters/kuzco/side.svg",
  45242. extra: 1575/1485,
  45243. bottom: 30/1605
  45244. }
  45245. },
  45246. back: {
  45247. height: math.unit(9, "feet"),
  45248. weight: math.unit(240, "lb"),
  45249. name: "Back",
  45250. image: {
  45251. source: "./media/characters/kuzco/back.svg",
  45252. extra: 1603/1514,
  45253. bottom: 14/1617
  45254. }
  45255. },
  45256. },
  45257. [
  45258. {
  45259. name: "Normal",
  45260. height: math.unit(9, "feet"),
  45261. default: true
  45262. },
  45263. ]
  45264. ))
  45265. characterMakers.push(() => makeCharacter(
  45266. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45267. {
  45268. side: {
  45269. height: math.unit(2, "meters"),
  45270. weight: math.unit(300, "kg"),
  45271. name: "Side",
  45272. image: {
  45273. source: "./media/characters/ceruleus/side.svg",
  45274. extra: 1068/974,
  45275. bottom: 126/1194
  45276. }
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(16, "meters"),
  45283. default: true
  45284. },
  45285. ]
  45286. ))
  45287. characterMakers.push(() => makeCharacter(
  45288. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45289. {
  45290. front: {
  45291. height: math.unit(9, "feet"),
  45292. weight: math.unit(500, "kg"),
  45293. name: "Front",
  45294. image: {
  45295. source: "./media/characters/acouya/front.svg",
  45296. extra: 1660/1473,
  45297. bottom: 28/1688
  45298. }
  45299. },
  45300. },
  45301. [
  45302. {
  45303. name: "Normal",
  45304. height: math.unit(9, "feet"),
  45305. default: true
  45306. },
  45307. ]
  45308. ))
  45309. characterMakers.push(() => makeCharacter(
  45310. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45311. {
  45312. front: {
  45313. height: math.unit(5 + 6/12, "feet"),
  45314. weight: math.unit(195, "lb"),
  45315. name: "Front",
  45316. image: {
  45317. source: "./media/characters/vant/front.svg",
  45318. extra: 1396/1320,
  45319. bottom: 20/1416
  45320. }
  45321. },
  45322. back: {
  45323. height: math.unit(5 + 6/12, "feet"),
  45324. weight: math.unit(195, "lb"),
  45325. name: "Back",
  45326. image: {
  45327. source: "./media/characters/vant/back.svg",
  45328. extra: 1396/1320,
  45329. bottom: 20/1416
  45330. }
  45331. },
  45332. maw: {
  45333. height: math.unit(0.75, "feet"),
  45334. name: "Maw",
  45335. image: {
  45336. source: "./media/characters/vant/maw.svg"
  45337. }
  45338. },
  45339. paw: {
  45340. height: math.unit(1.07, "feet"),
  45341. name: "Paw",
  45342. image: {
  45343. source: "./media/characters/vant/paw.svg"
  45344. }
  45345. },
  45346. },
  45347. [
  45348. {
  45349. name: "Micro",
  45350. height: math.unit(0.25, "inches")
  45351. },
  45352. {
  45353. name: "Normal",
  45354. height: math.unit(5 + 6/12, "feet"),
  45355. default: true
  45356. },
  45357. {
  45358. name: "Macro",
  45359. height: math.unit(75, "feet")
  45360. },
  45361. ]
  45362. ))
  45363. characterMakers.push(() => makeCharacter(
  45364. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45365. {
  45366. front: {
  45367. height: math.unit(30, "meters"),
  45368. weight: math.unit(363, "tons"),
  45369. name: "Front",
  45370. image: {
  45371. source: "./media/characters/ahra/front.svg",
  45372. extra: 1914/1814,
  45373. bottom: 46/1960
  45374. }
  45375. },
  45376. },
  45377. [
  45378. {
  45379. name: "Macro",
  45380. height: math.unit(30, "meters"),
  45381. default: true
  45382. },
  45383. ]
  45384. ))
  45385. characterMakers.push(() => makeCharacter(
  45386. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45387. {
  45388. undressed: {
  45389. height: math.unit(2, "m"),
  45390. weight: math.unit(250, "kg"),
  45391. name: "Undressed",
  45392. image: {
  45393. source: "./media/characters/coriander/undressed.svg",
  45394. extra: 1757/1606,
  45395. bottom: 107/1864
  45396. }
  45397. },
  45398. dressed: {
  45399. height: math.unit(2, "m"),
  45400. weight: math.unit(250, "kg"),
  45401. name: "Dressed",
  45402. image: {
  45403. source: "./media/characters/coriander/dressed.svg",
  45404. extra: 1757/1606,
  45405. bottom: 107/1864
  45406. }
  45407. },
  45408. },
  45409. [
  45410. {
  45411. name: "Normal",
  45412. height: math.unit(4, "meters"),
  45413. default: true
  45414. },
  45415. {
  45416. name: "XL",
  45417. height: math.unit(6, "meters")
  45418. },
  45419. {
  45420. name: "XXL",
  45421. height: math.unit(8, "meters")
  45422. },
  45423. ]
  45424. ))
  45425. characterMakers.push(() => makeCharacter(
  45426. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45427. {
  45428. front: {
  45429. height: math.unit(6, "feet"),
  45430. name: "Front",
  45431. image: {
  45432. source: "./media/characters/syrinx/front.svg",
  45433. extra: 1557/1259,
  45434. bottom: 171/1728
  45435. }
  45436. },
  45437. },
  45438. [
  45439. {
  45440. name: "Normal",
  45441. height: math.unit(6 + 3/12, "feet"),
  45442. default: true
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(11 + 6/12, "feet"),
  45451. weight: math.unit(1.5, "tons"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/bor/front.svg",
  45455. extra: 1189/1109,
  45456. bottom: 170/1359
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(11 + 6/12, "feet"),
  45464. default: true
  45465. },
  45466. {
  45467. name: "Macro",
  45468. height: math.unit(32 + 9/12, "feet")
  45469. },
  45470. ]
  45471. ))
  45472. characterMakers.push(() => makeCharacter(
  45473. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45474. {
  45475. anthro: {
  45476. height: math.unit(9, "feet"),
  45477. weight: math.unit(2076, "lb"),
  45478. name: "Anthro",
  45479. image: {
  45480. source: "./media/characters/abacus/anthro.svg",
  45481. extra: 1540/1494,
  45482. bottom: 233/1773
  45483. }
  45484. },
  45485. pigeon: {
  45486. height: math.unit(1, "feet"),
  45487. name: "Pigeon",
  45488. image: {
  45489. source: "./media/characters/abacus/pigeon.svg",
  45490. extra: 528/525,
  45491. bottom: 46/574
  45492. }
  45493. },
  45494. },
  45495. [
  45496. {
  45497. name: "Normal",
  45498. height: math.unit(9, "feet"),
  45499. default: true
  45500. },
  45501. ]
  45502. ))
  45503. characterMakers.push(() => makeCharacter(
  45504. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45505. {
  45506. side: {
  45507. height: math.unit(6, "feet"),
  45508. name: "Side",
  45509. image: {
  45510. source: "./media/characters/delkhan/side.svg",
  45511. extra: 1884/1786,
  45512. bottom: 308/2192
  45513. }
  45514. },
  45515. head: {
  45516. height: math.unit(3.38, "feet"),
  45517. name: "Head",
  45518. image: {
  45519. source: "./media/characters/delkhan/head.svg"
  45520. }
  45521. },
  45522. },
  45523. [
  45524. {
  45525. name: "Normal",
  45526. height: math.unit(72, "feet"),
  45527. default: true
  45528. },
  45529. {
  45530. name: "Giant",
  45531. height: math.unit(172, "feet")
  45532. },
  45533. ]
  45534. ))
  45535. characterMakers.push(() => makeCharacter(
  45536. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45537. {
  45538. standing: {
  45539. height: math.unit(6, "feet"),
  45540. name: "Standing",
  45541. image: {
  45542. source: "./media/characters/euchidat/standing.svg",
  45543. extra: 1612/1553,
  45544. bottom: 116/1728
  45545. }
  45546. },
  45547. leaning: {
  45548. height: math.unit(6, "feet"),
  45549. name: "Leaning",
  45550. image: {
  45551. source: "./media/characters/euchidat/leaning.svg",
  45552. extra: 1719/1674,
  45553. bottom: 27/1746
  45554. }
  45555. },
  45556. },
  45557. [
  45558. {
  45559. name: "Normal",
  45560. height: math.unit(175, "feet"),
  45561. default: true
  45562. },
  45563. {
  45564. name: "Megamacro",
  45565. height: math.unit(190, "miles")
  45566. },
  45567. {
  45568. name: "Gigamacro",
  45569. height: math.unit(190000, "miles")
  45570. },
  45571. ]
  45572. ))
  45573. characterMakers.push(() => makeCharacter(
  45574. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45575. {
  45576. front: {
  45577. height: math.unit(6, "feet"),
  45578. weight: math.unit(150, "lb"),
  45579. name: "Front",
  45580. image: {
  45581. source: "./media/characters/rebecca-stack/front.svg",
  45582. extra: 1256/1201,
  45583. bottom: 18/1274
  45584. }
  45585. },
  45586. },
  45587. [
  45588. {
  45589. name: "Normal",
  45590. height: math.unit(5 + 8/12, "feet"),
  45591. default: true
  45592. },
  45593. {
  45594. name: "Demolitionist",
  45595. height: math.unit(200, "feet")
  45596. },
  45597. {
  45598. name: "Out of Control",
  45599. height: math.unit(2, "miles")
  45600. },
  45601. {
  45602. name: "Giga",
  45603. height: math.unit(7200, "miles")
  45604. },
  45605. ]
  45606. ))
  45607. characterMakers.push(() => makeCharacter(
  45608. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45609. {
  45610. front: {
  45611. height: math.unit(6, "feet"),
  45612. weight: math.unit(150, "lb"),
  45613. name: "Front",
  45614. image: {
  45615. source: "./media/characters/jenny-cartwright/front.svg",
  45616. extra: 1384/1376,
  45617. bottom: 58/1442
  45618. }
  45619. },
  45620. },
  45621. [
  45622. {
  45623. name: "Normal",
  45624. height: math.unit(6 + 7/12, "feet"),
  45625. default: true
  45626. },
  45627. {
  45628. name: "Librarian",
  45629. height: math.unit(55, "feet")
  45630. },
  45631. {
  45632. name: "Sightseer",
  45633. height: math.unit(50, "miles")
  45634. },
  45635. {
  45636. name: "Giga",
  45637. height: math.unit(30000, "miles")
  45638. },
  45639. ]
  45640. ))
  45641. characterMakers.push(() => makeCharacter(
  45642. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45643. {
  45644. nude: {
  45645. height: math.unit(8, "feet"),
  45646. weight: math.unit(225, "lb"),
  45647. name: "Nude",
  45648. image: {
  45649. source: "./media/characters/marvy/nude.svg",
  45650. extra: 1900/1683,
  45651. bottom: 89/1989
  45652. }
  45653. },
  45654. dressed: {
  45655. height: math.unit(8, "feet"),
  45656. weight: math.unit(225, "lb"),
  45657. name: "Dressed",
  45658. image: {
  45659. source: "./media/characters/marvy/dressed.svg",
  45660. extra: 1900/1683,
  45661. bottom: 89/1989
  45662. }
  45663. },
  45664. head: {
  45665. height: math.unit(2.85, "feet"),
  45666. name: "Head",
  45667. image: {
  45668. source: "./media/characters/marvy/head.svg"
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(8, "feet"),
  45676. default: true
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(8, "feet"),
  45685. weight: math.unit(250, "lb"),
  45686. name: "Front",
  45687. image: {
  45688. source: "./media/characters/leah/front.svg",
  45689. extra: 1257/1149,
  45690. bottom: 109/1366
  45691. }
  45692. },
  45693. },
  45694. [
  45695. {
  45696. name: "Normal",
  45697. height: math.unit(8, "feet"),
  45698. default: true
  45699. },
  45700. {
  45701. name: "Minimacro",
  45702. height: math.unit(40, "feet")
  45703. },
  45704. {
  45705. name: "Macro",
  45706. height: math.unit(124, "feet")
  45707. },
  45708. {
  45709. name: "Megamacro",
  45710. height: math.unit(850, "feet")
  45711. },
  45712. ]
  45713. ))
  45714. characterMakers.push(() => makeCharacter(
  45715. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45716. {
  45717. side: {
  45718. height: math.unit(13 + 6/12, "feet"),
  45719. weight: math.unit(3200, "lb"),
  45720. name: "Side",
  45721. image: {
  45722. source: "./media/characters/alvir/side.svg",
  45723. extra: 896/589,
  45724. bottom: 26/922
  45725. }
  45726. },
  45727. },
  45728. [
  45729. {
  45730. name: "Normal",
  45731. height: math.unit(13 + 6/12, "feet"),
  45732. default: true
  45733. },
  45734. ]
  45735. ))
  45736. characterMakers.push(() => makeCharacter(
  45737. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45738. {
  45739. front: {
  45740. height: math.unit(5 + 4/12, "feet"),
  45741. weight: math.unit(236, "lb"),
  45742. name: "Front",
  45743. image: {
  45744. source: "./media/characters/zaina-khalil/front.svg",
  45745. extra: 1533/1485,
  45746. bottom: 94/1627
  45747. }
  45748. },
  45749. side: {
  45750. height: math.unit(5 + 4/12, "feet"),
  45751. weight: math.unit(236, "lb"),
  45752. name: "Side",
  45753. image: {
  45754. source: "./media/characters/zaina-khalil/side.svg",
  45755. extra: 1537/1498,
  45756. bottom: 66/1603
  45757. }
  45758. },
  45759. back: {
  45760. height: math.unit(5 + 4/12, "feet"),
  45761. weight: math.unit(236, "lb"),
  45762. name: "Back",
  45763. image: {
  45764. source: "./media/characters/zaina-khalil/back.svg",
  45765. extra: 1546/1494,
  45766. bottom: 89/1635
  45767. }
  45768. },
  45769. },
  45770. [
  45771. {
  45772. name: "Normal",
  45773. height: math.unit(5 + 4/12, "feet"),
  45774. default: true
  45775. },
  45776. ]
  45777. ))
  45778. characterMakers.push(() => makeCharacter(
  45779. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45780. {
  45781. side: {
  45782. height: math.unit(12, "feet"),
  45783. weight: math.unit(4000, "lb"),
  45784. name: "Side",
  45785. image: {
  45786. source: "./media/characters/terry/side.svg",
  45787. extra: 1518/1439,
  45788. bottom: 149/1667
  45789. }
  45790. },
  45791. },
  45792. [
  45793. {
  45794. name: "Normal",
  45795. height: math.unit(12, "feet"),
  45796. default: true
  45797. },
  45798. ]
  45799. ))
  45800. characterMakers.push(() => makeCharacter(
  45801. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45802. {
  45803. front: {
  45804. height: math.unit(12, "feet"),
  45805. weight: math.unit(1500, "lb"),
  45806. name: "Front",
  45807. image: {
  45808. source: "./media/characters/kahea/front.svg",
  45809. extra: 1722/1617,
  45810. bottom: 179/1901
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Normal",
  45817. height: math.unit(12, "feet"),
  45818. default: true
  45819. },
  45820. ]
  45821. ))
  45822. characterMakers.push(() => makeCharacter(
  45823. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45824. {
  45825. demonFront: {
  45826. height: math.unit(36, "feet"),
  45827. name: "Front",
  45828. image: {
  45829. source: "./media/characters/alex-xuria/demon-front.svg",
  45830. extra: 1705/1673,
  45831. bottom: 198/1903
  45832. },
  45833. form: "demon",
  45834. default: true
  45835. },
  45836. demonBack: {
  45837. height: math.unit(36, "feet"),
  45838. name: "Back",
  45839. image: {
  45840. source: "./media/characters/alex-xuria/demon-back.svg",
  45841. extra: 1725/1693,
  45842. bottom: 70/1795
  45843. },
  45844. form: "demon"
  45845. },
  45846. demonHead: {
  45847. height: math.unit(2.14, "meters"),
  45848. name: "Head",
  45849. image: {
  45850. source: "./media/characters/alex-xuria/demon-head.svg"
  45851. },
  45852. form: "demon"
  45853. },
  45854. demonHand: {
  45855. height: math.unit(1.61, "meters"),
  45856. name: "Hand",
  45857. image: {
  45858. source: "./media/characters/alex-xuria/demon-hand.svg"
  45859. },
  45860. form: "demon"
  45861. },
  45862. demonPaw: {
  45863. height: math.unit(1.35, "meters"),
  45864. name: "Paw",
  45865. image: {
  45866. source: "./media/characters/alex-xuria/demon-paw.svg"
  45867. },
  45868. form: "demon"
  45869. },
  45870. demonFoot: {
  45871. height: math.unit(2.2, "meters"),
  45872. name: "Foot",
  45873. image: {
  45874. source: "./media/characters/alex-xuria/demon-foot.svg"
  45875. },
  45876. form: "demon"
  45877. },
  45878. demonCock: {
  45879. height: math.unit(1.74, "meters"),
  45880. name: "Cock",
  45881. image: {
  45882. source: "./media/characters/alex-xuria/demon-cock.svg"
  45883. },
  45884. form: "demon"
  45885. },
  45886. demonTailClosed: {
  45887. height: math.unit(1.47, "meters"),
  45888. name: "Tail (Closed)",
  45889. image: {
  45890. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45891. },
  45892. form: "demon"
  45893. },
  45894. demonTailOpen: {
  45895. height: math.unit(2.85, "meters"),
  45896. name: "Tail (Open)",
  45897. image: {
  45898. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45899. },
  45900. form: "demon"
  45901. },
  45902. incubusFront: {
  45903. height: math.unit(12, "feet"),
  45904. name: "Front",
  45905. image: {
  45906. source: "./media/characters/alex-xuria/incubus-front.svg",
  45907. extra: 1754/1677,
  45908. bottom: 125/1879
  45909. },
  45910. form: "incubus",
  45911. default: true
  45912. },
  45913. incubusBack: {
  45914. height: math.unit(12, "feet"),
  45915. name: "Back",
  45916. image: {
  45917. source: "./media/characters/alex-xuria/incubus-back.svg",
  45918. extra: 1702/1647,
  45919. bottom: 30/1732
  45920. },
  45921. form: "incubus"
  45922. },
  45923. incubusHead: {
  45924. height: math.unit(3.45, "feet"),
  45925. name: "Head",
  45926. image: {
  45927. source: "./media/characters/alex-xuria/incubus-head.svg"
  45928. },
  45929. form: "incubus"
  45930. },
  45931. rabbitFront: {
  45932. height: math.unit(6, "feet"),
  45933. name: "Front",
  45934. image: {
  45935. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45936. extra: 1369/1349,
  45937. bottom: 45/1414
  45938. },
  45939. form: "rabbit",
  45940. default: true
  45941. },
  45942. rabbitSide: {
  45943. height: math.unit(6, "feet"),
  45944. name: "Side",
  45945. image: {
  45946. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45947. extra: 1370/1356,
  45948. bottom: 37/1407
  45949. },
  45950. form: "rabbit"
  45951. },
  45952. rabbitBack: {
  45953. height: math.unit(6, "feet"),
  45954. name: "Back",
  45955. image: {
  45956. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45957. extra: 1375/1358,
  45958. bottom: 43/1418
  45959. },
  45960. form: "rabbit"
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Normal",
  45966. height: math.unit(6, "feet"),
  45967. default: true,
  45968. form: "rabbit"
  45969. },
  45970. {
  45971. name: "Incubus",
  45972. height: math.unit(12, "feet"),
  45973. default: true,
  45974. form: "incubus"
  45975. },
  45976. {
  45977. name: "Demon",
  45978. height: math.unit(36, "feet"),
  45979. default: true,
  45980. form: "demon"
  45981. }
  45982. ],
  45983. {
  45984. "demon": {
  45985. name: "Demon",
  45986. default: true
  45987. },
  45988. "incubus": {
  45989. name: "Incubus",
  45990. },
  45991. "rabbit": {
  45992. name: "Rabbit"
  45993. }
  45994. }
  45995. ))
  45996. characterMakers.push(() => makeCharacter(
  45997. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45998. {
  45999. front: {
  46000. height: math.unit(7 + 5/12, "feet"),
  46001. weight: math.unit(510, "lb"),
  46002. name: "Front",
  46003. image: {
  46004. source: "./media/characters/syrup/front.svg",
  46005. extra: 932/916,
  46006. bottom: 26/958
  46007. }
  46008. },
  46009. },
  46010. [
  46011. {
  46012. name: "Normal",
  46013. height: math.unit(7 + 5/12, "feet"),
  46014. default: true
  46015. },
  46016. {
  46017. name: "Big",
  46018. height: math.unit(50, "feet")
  46019. },
  46020. {
  46021. name: "Macro",
  46022. height: math.unit(300, "feet")
  46023. },
  46024. {
  46025. name: "Megamacro",
  46026. height: math.unit(1, "mile")
  46027. },
  46028. ]
  46029. ))
  46030. characterMakers.push(() => makeCharacter(
  46031. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46032. {
  46033. front: {
  46034. height: math.unit(6 + 9/12, "feet"),
  46035. name: "Front",
  46036. image: {
  46037. source: "./media/characters/zeimne/front.svg",
  46038. extra: 1969/1806,
  46039. bottom: 53/2022
  46040. }
  46041. },
  46042. },
  46043. [
  46044. {
  46045. name: "Normal",
  46046. height: math.unit(6 + 9/12, "feet"),
  46047. default: true
  46048. },
  46049. {
  46050. name: "Giant",
  46051. height: math.unit(550, "feet")
  46052. },
  46053. {
  46054. name: "Mega",
  46055. height: math.unit(3, "miles")
  46056. },
  46057. {
  46058. name: "Giga",
  46059. height: math.unit(250, "miles")
  46060. },
  46061. {
  46062. name: "Tera",
  46063. height: math.unit(1, "AU")
  46064. },
  46065. ]
  46066. ))
  46067. characterMakers.push(() => makeCharacter(
  46068. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46069. {
  46070. front: {
  46071. height: math.unit(5 + 2/12, "feet"),
  46072. name: "Front",
  46073. image: {
  46074. source: "./media/characters/grar/front.svg",
  46075. extra: 1331/1119,
  46076. bottom: 60/1391
  46077. }
  46078. },
  46079. back: {
  46080. height: math.unit(5 + 2/12, "feet"),
  46081. name: "Back",
  46082. image: {
  46083. source: "./media/characters/grar/back.svg",
  46084. extra: 1385/1169,
  46085. bottom: 23/1408
  46086. }
  46087. },
  46088. },
  46089. [
  46090. {
  46091. name: "Normal",
  46092. height: math.unit(5 + 2/12, "feet"),
  46093. default: true
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46099. {
  46100. front: {
  46101. height: math.unit(13 + 7/12, "feet"),
  46102. weight: math.unit(2200, "lb"),
  46103. name: "Front",
  46104. image: {
  46105. source: "./media/characters/endraya/front.svg",
  46106. extra: 1289/1215,
  46107. bottom: 50/1339
  46108. }
  46109. },
  46110. nude: {
  46111. height: math.unit(13 + 7/12, "feet"),
  46112. weight: math.unit(2200, "lb"),
  46113. name: "Nude",
  46114. image: {
  46115. source: "./media/characters/endraya/nude.svg",
  46116. extra: 1247/1171,
  46117. bottom: 40/1287
  46118. }
  46119. },
  46120. head: {
  46121. height: math.unit(2.6, "feet"),
  46122. name: "Head",
  46123. image: {
  46124. source: "./media/characters/endraya/head.svg"
  46125. }
  46126. },
  46127. slit: {
  46128. height: math.unit(3.4, "feet"),
  46129. name: "Slit",
  46130. image: {
  46131. source: "./media/characters/endraya/slit.svg"
  46132. }
  46133. },
  46134. },
  46135. [
  46136. {
  46137. name: "Normal",
  46138. height: math.unit(13 + 7/12, "feet"),
  46139. default: true
  46140. },
  46141. {
  46142. name: "Macro",
  46143. height: math.unit(200, "feet")
  46144. },
  46145. ]
  46146. ))
  46147. characterMakers.push(() => makeCharacter(
  46148. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46149. {
  46150. front: {
  46151. height: math.unit(1.81, "meters"),
  46152. weight: math.unit(69, "kg"),
  46153. name: "Front",
  46154. image: {
  46155. source: "./media/characters/rodryana/front.svg",
  46156. extra: 2002/1921,
  46157. bottom: 53/2055
  46158. }
  46159. },
  46160. back: {
  46161. height: math.unit(1.81, "meters"),
  46162. weight: math.unit(69, "kg"),
  46163. name: "Back",
  46164. image: {
  46165. source: "./media/characters/rodryana/back.svg",
  46166. extra: 1993/1926,
  46167. bottom: 48/2041
  46168. }
  46169. },
  46170. maw: {
  46171. height: math.unit(0.19769417475, "meters"),
  46172. name: "Maw",
  46173. image: {
  46174. source: "./media/characters/rodryana/maw.svg"
  46175. }
  46176. },
  46177. slit: {
  46178. height: math.unit(0.31631067961, "meters"),
  46179. name: "Slit",
  46180. image: {
  46181. source: "./media/characters/rodryana/slit.svg"
  46182. }
  46183. },
  46184. },
  46185. [
  46186. {
  46187. name: "Normal",
  46188. height: math.unit(1.81, "meters")
  46189. },
  46190. {
  46191. name: "Mini Macro",
  46192. height: math.unit(181, "meters")
  46193. },
  46194. {
  46195. name: "Macro",
  46196. height: math.unit(452, "meters"),
  46197. default: true
  46198. },
  46199. {
  46200. name: "Mega Macro",
  46201. height: math.unit(1.375, "km")
  46202. },
  46203. {
  46204. name: "Giga Macro",
  46205. height: math.unit(13.575, "km")
  46206. },
  46207. ]
  46208. ))
  46209. characterMakers.push(() => makeCharacter(
  46210. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46211. {
  46212. front: {
  46213. height: math.unit(6, "feet"),
  46214. weight: math.unit(1000, "lb"),
  46215. name: "Front",
  46216. image: {
  46217. source: "./media/characters/asaya/front.svg",
  46218. extra: 1460/1200,
  46219. bottom: 71/1531
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(8, "km"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46233. {
  46234. front: {
  46235. height: math.unit(3.5, "meters"),
  46236. name: "Front",
  46237. image: {
  46238. source: "./media/characters/sarzu-and-israz/front.svg",
  46239. extra: 1570/1558,
  46240. bottom: 150/1720
  46241. },
  46242. },
  46243. back: {
  46244. height: math.unit(3.5, "meters"),
  46245. name: "Back",
  46246. image: {
  46247. source: "./media/characters/sarzu-and-israz/back.svg",
  46248. extra: 1523/1509,
  46249. bottom: 132/1655
  46250. },
  46251. },
  46252. frontFemale: {
  46253. height: math.unit(3.5, "meters"),
  46254. name: "Front (Female)",
  46255. image: {
  46256. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46257. extra: 1570/1558,
  46258. bottom: 150/1720
  46259. },
  46260. },
  46261. frontHerm: {
  46262. height: math.unit(3.5, "meters"),
  46263. name: "Front (Herm)",
  46264. image: {
  46265. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46266. extra: 1570/1558,
  46267. bottom: 150/1720
  46268. },
  46269. },
  46270. },
  46271. [
  46272. {
  46273. name: "Normal",
  46274. height: math.unit(3.5, "meters"),
  46275. default: true,
  46276. },
  46277. {
  46278. name: "Macro",
  46279. height: math.unit(65.5, "meters"),
  46280. },
  46281. ],
  46282. ))
  46283. characterMakers.push(() => makeCharacter(
  46284. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46285. {
  46286. front: {
  46287. height: math.unit(6, "feet"),
  46288. weight: math.unit(250, "lb"),
  46289. name: "Front",
  46290. image: {
  46291. source: "./media/characters/zenimma/front.svg",
  46292. extra: 1346/1320,
  46293. bottom: 58/1404
  46294. }
  46295. },
  46296. back: {
  46297. height: math.unit(6, "feet"),
  46298. weight: math.unit(250, "lb"),
  46299. name: "Back",
  46300. image: {
  46301. source: "./media/characters/zenimma/back.svg",
  46302. extra: 1324/1308,
  46303. bottom: 44/1368
  46304. }
  46305. },
  46306. dick: {
  46307. height: math.unit(1.44, "feet"),
  46308. name: "Dick",
  46309. image: {
  46310. source: "./media/characters/zenimma/dick.svg"
  46311. }
  46312. },
  46313. },
  46314. [
  46315. {
  46316. name: "Canon Height",
  46317. height: math.unit(66, "miles"),
  46318. default: true
  46319. },
  46320. ]
  46321. ))
  46322. characterMakers.push(() => makeCharacter(
  46323. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46324. {
  46325. nude: {
  46326. height: math.unit(6, "feet"),
  46327. weight: math.unit(150, "lb"),
  46328. name: "Nude",
  46329. image: {
  46330. source: "./media/characters/shavon/nude.svg",
  46331. extra: 1242/1096,
  46332. bottom: 98/1340
  46333. }
  46334. },
  46335. dressed: {
  46336. height: math.unit(6, "feet"),
  46337. weight: math.unit(150, "lb"),
  46338. name: "Dressed",
  46339. image: {
  46340. source: "./media/characters/shavon/dressed.svg",
  46341. extra: 1242/1096,
  46342. bottom: 98/1340
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Macro",
  46349. height: math.unit(255, "feet"),
  46350. default: true
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46356. {
  46357. front: {
  46358. height: math.unit(6, "feet"),
  46359. name: "Front",
  46360. image: {
  46361. source: "./media/characters/steph/front.svg",
  46362. extra: 1430/1330,
  46363. bottom: 54/1484
  46364. }
  46365. },
  46366. },
  46367. [
  46368. {
  46369. name: "Normal",
  46370. height: math.unit(6, "feet"),
  46371. default: true
  46372. },
  46373. ]
  46374. ))
  46375. characterMakers.push(() => makeCharacter(
  46376. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46377. {
  46378. front: {
  46379. height: math.unit(9, "feet"),
  46380. weight: math.unit(400, "lb"),
  46381. name: "Front",
  46382. image: {
  46383. source: "./media/characters/kil'aman/front.svg",
  46384. extra: 1210/1159,
  46385. bottom: 109/1319
  46386. }
  46387. },
  46388. head: {
  46389. height: math.unit(2.14, "feet"),
  46390. name: "Head",
  46391. image: {
  46392. source: "./media/characters/kil'aman/head.svg"
  46393. }
  46394. },
  46395. maw: {
  46396. height: math.unit(1.21, "feet"),
  46397. name: "Maw",
  46398. image: {
  46399. source: "./media/characters/kil'aman/maw.svg"
  46400. }
  46401. },
  46402. foot: {
  46403. height: math.unit(1.7, "feet"),
  46404. name: "Foot",
  46405. image: {
  46406. source: "./media/characters/kil'aman/foot.svg"
  46407. }
  46408. },
  46409. dick: {
  46410. height: math.unit(2.1, "feet"),
  46411. name: "Dick",
  46412. image: {
  46413. source: "./media/characters/kil'aman/dick.svg"
  46414. }
  46415. },
  46416. },
  46417. [
  46418. {
  46419. name: "Normal",
  46420. height: math.unit(9, "feet")
  46421. },
  46422. {
  46423. name: "Canon Height",
  46424. height: math.unit(10, "miles"),
  46425. default: true
  46426. },
  46427. {
  46428. name: "Maximum",
  46429. height: math.unit(6e9, "miles")
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46435. {
  46436. front: {
  46437. height: math.unit(90, "feet"),
  46438. weight: math.unit(675000, "lb"),
  46439. name: "Front",
  46440. image: {
  46441. source: "./media/characters/qadan/front.svg",
  46442. extra: 1012/1004,
  46443. bottom: 78/1090
  46444. }
  46445. },
  46446. back: {
  46447. height: math.unit(90, "feet"),
  46448. weight: math.unit(675000, "lb"),
  46449. name: "Back",
  46450. image: {
  46451. source: "./media/characters/qadan/back.svg",
  46452. extra: 1042/1031,
  46453. bottom: 55/1097
  46454. }
  46455. },
  46456. armored: {
  46457. height: math.unit(90, "feet"),
  46458. weight: math.unit(675000, "lb"),
  46459. name: "Armored",
  46460. image: {
  46461. source: "./media/characters/qadan/armored.svg",
  46462. extra: 1047/1037,
  46463. bottom: 48/1095
  46464. }
  46465. },
  46466. },
  46467. [
  46468. {
  46469. name: "Normal",
  46470. height: math.unit(90, "feet"),
  46471. default: true
  46472. },
  46473. ]
  46474. ))
  46475. characterMakers.push(() => makeCharacter(
  46476. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46477. {
  46478. front: {
  46479. height: math.unit(6, "feet"),
  46480. weight: math.unit(225, "lb"),
  46481. name: "Front",
  46482. image: {
  46483. source: "./media/characters/brooke/front.svg",
  46484. extra: 1050/1010,
  46485. bottom: 66/1116
  46486. }
  46487. },
  46488. back: {
  46489. height: math.unit(6, "feet"),
  46490. weight: math.unit(225, "lb"),
  46491. name: "Back",
  46492. image: {
  46493. source: "./media/characters/brooke/back.svg",
  46494. extra: 1053/1013,
  46495. bottom: 41/1094
  46496. }
  46497. },
  46498. dressed: {
  46499. height: math.unit(6, "feet"),
  46500. weight: math.unit(225, "lb"),
  46501. name: "Dressed",
  46502. image: {
  46503. source: "./media/characters/brooke/dressed.svg",
  46504. extra: 1050/1010,
  46505. bottom: 66/1116
  46506. }
  46507. },
  46508. },
  46509. [
  46510. {
  46511. name: "Canon Height",
  46512. height: math.unit(500, "miles"),
  46513. default: true
  46514. },
  46515. ]
  46516. ))
  46517. characterMakers.push(() => makeCharacter(
  46518. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46519. {
  46520. front: {
  46521. height: math.unit(6 + 2/12, "feet"),
  46522. weight: math.unit(210, "lb"),
  46523. name: "Front",
  46524. image: {
  46525. source: "./media/characters/wubs/front.svg",
  46526. extra: 1345/1325,
  46527. bottom: 70/1415
  46528. }
  46529. },
  46530. back: {
  46531. height: math.unit(6 + 2/12, "feet"),
  46532. weight: math.unit(210, "lb"),
  46533. name: "Back",
  46534. image: {
  46535. source: "./media/characters/wubs/back.svg",
  46536. extra: 1296/1275,
  46537. bottom: 58/1354
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(6 + 2/12, "feet"),
  46545. default: true
  46546. },
  46547. {
  46548. name: "Macro",
  46549. height: math.unit(1000, "feet")
  46550. },
  46551. {
  46552. name: "Megamacro",
  46553. height: math.unit(1, "mile")
  46554. },
  46555. ]
  46556. ))
  46557. characterMakers.push(() => makeCharacter(
  46558. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46559. {
  46560. front: {
  46561. height: math.unit(4, "feet"),
  46562. weight: math.unit(120, "lb"),
  46563. name: "Front",
  46564. image: {
  46565. source: "./media/characters/blue/front.svg",
  46566. extra: 1636/1525,
  46567. bottom: 43/1679
  46568. }
  46569. },
  46570. back: {
  46571. height: math.unit(4, "feet"),
  46572. weight: math.unit(120, "lb"),
  46573. name: "Back",
  46574. image: {
  46575. source: "./media/characters/blue/back.svg",
  46576. extra: 1660/1560,
  46577. bottom: 57/1717
  46578. }
  46579. },
  46580. paws: {
  46581. height: math.unit(0.826, "feet"),
  46582. name: "Paws",
  46583. image: {
  46584. source: "./media/characters/blue/paws.svg"
  46585. }
  46586. },
  46587. },
  46588. [
  46589. {
  46590. name: "Micro",
  46591. height: math.unit(3, "inches")
  46592. },
  46593. {
  46594. name: "Normal",
  46595. height: math.unit(4, "feet"),
  46596. default: true
  46597. },
  46598. {
  46599. name: "Femenine Form",
  46600. height: math.unit(14, "feet")
  46601. },
  46602. {
  46603. name: "Werebat Form",
  46604. height: math.unit(18, "feet")
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46610. {
  46611. female: {
  46612. height: math.unit(7 + 4/12, "feet"),
  46613. weight: math.unit(243, "lb"),
  46614. name: "Female",
  46615. image: {
  46616. source: "./media/characters/kaya/female.svg",
  46617. extra: 975/898,
  46618. bottom: 34/1009
  46619. }
  46620. },
  46621. herm: {
  46622. height: math.unit(7 + 4/12, "feet"),
  46623. weight: math.unit(243, "lb"),
  46624. name: "Herm",
  46625. image: {
  46626. source: "./media/characters/kaya/herm.svg",
  46627. extra: 975/898,
  46628. bottom: 34/1009
  46629. }
  46630. },
  46631. },
  46632. [
  46633. {
  46634. name: "Normal",
  46635. height: math.unit(7 + 4/12, "feet"),
  46636. default: true
  46637. },
  46638. ]
  46639. ))
  46640. characterMakers.push(() => makeCharacter(
  46641. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46642. {
  46643. female: {
  46644. height: math.unit(9 + 4/12, "feet"),
  46645. weight: math.unit(398, "lb"),
  46646. name: "Female",
  46647. image: {
  46648. source: "./media/characters/kassandra/female.svg",
  46649. extra: 908/839,
  46650. bottom: 61/969
  46651. }
  46652. },
  46653. intersex: {
  46654. height: math.unit(9 + 4/12, "feet"),
  46655. weight: math.unit(398, "lb"),
  46656. name: "Intersex",
  46657. image: {
  46658. source: "./media/characters/kassandra/intersex.svg",
  46659. extra: 908/839,
  46660. bottom: 61/969
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(9 + 4/12, "feet"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(3, "meters"),
  46677. name: "Front",
  46678. image: {
  46679. source: "./media/characters/amy/front.svg",
  46680. extra: 1380/1343,
  46681. bottom: 70/1450
  46682. }
  46683. },
  46684. back: {
  46685. height: math.unit(3, "meters"),
  46686. name: "Back",
  46687. image: {
  46688. source: "./media/characters/amy/back.svg",
  46689. extra: 1380/1347,
  46690. bottom: 66/1446
  46691. }
  46692. },
  46693. },
  46694. [
  46695. {
  46696. name: "Normal",
  46697. height: math.unit(3, "meters"),
  46698. default: true
  46699. },
  46700. ]
  46701. ))
  46702. characterMakers.push(() => makeCharacter(
  46703. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46704. {
  46705. side: {
  46706. height: math.unit(47, "cm"),
  46707. weight: math.unit(10.8, "kg"),
  46708. name: "Side",
  46709. image: {
  46710. source: "./media/characters/alphaschakal/side.svg",
  46711. extra: 1058/568,
  46712. bottom: 62/1120
  46713. }
  46714. },
  46715. back: {
  46716. height: math.unit(78, "cm"),
  46717. weight: math.unit(10.8, "kg"),
  46718. name: "Back",
  46719. image: {
  46720. source: "./media/characters/alphaschakal/back.svg",
  46721. extra: 1102/942,
  46722. bottom: 185/1287
  46723. }
  46724. },
  46725. head: {
  46726. height: math.unit(28, "cm"),
  46727. name: "Head",
  46728. image: {
  46729. source: "./media/characters/alphaschakal/head.svg",
  46730. extra: 696/508,
  46731. bottom: 0/696
  46732. }
  46733. },
  46734. paw: {
  46735. height: math.unit(16, "cm"),
  46736. name: "Paw",
  46737. image: {
  46738. source: "./media/characters/alphaschakal/paw.svg"
  46739. }
  46740. },
  46741. },
  46742. [
  46743. {
  46744. name: "Normal",
  46745. height: math.unit(47, "cm"),
  46746. default: true
  46747. },
  46748. {
  46749. name: "Macro",
  46750. height: math.unit(340, "cm")
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46756. {
  46757. front: {
  46758. height: math.unit(36, "earths"),
  46759. name: "Front",
  46760. image: {
  46761. source: "./media/characters/ecobyss/front.svg",
  46762. extra: 1282/1215,
  46763. bottom: 11/1293
  46764. }
  46765. },
  46766. back: {
  46767. height: math.unit(36, "earths"),
  46768. name: "Back",
  46769. image: {
  46770. source: "./media/characters/ecobyss/back.svg",
  46771. extra: 1291/1222,
  46772. bottom: 8/1299
  46773. }
  46774. },
  46775. },
  46776. [
  46777. {
  46778. name: "Normal",
  46779. height: math.unit(36, "earths"),
  46780. default: true
  46781. },
  46782. ]
  46783. ))
  46784. characterMakers.push(() => makeCharacter(
  46785. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46786. {
  46787. front: {
  46788. height: math.unit(12, "feet"),
  46789. name: "Front",
  46790. image: {
  46791. source: "./media/characters/vasuk/front.svg",
  46792. extra: 1326/1207,
  46793. bottom: 64/1390
  46794. }
  46795. },
  46796. },
  46797. [
  46798. {
  46799. name: "Normal",
  46800. height: math.unit(12, "feet"),
  46801. default: true
  46802. },
  46803. ]
  46804. ))
  46805. characterMakers.push(() => makeCharacter(
  46806. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46807. {
  46808. side: {
  46809. height: math.unit(100, "feet"),
  46810. name: "Side",
  46811. image: {
  46812. source: "./media/characters/linneaus/side.svg",
  46813. extra: 987/807,
  46814. bottom: 47/1034
  46815. }
  46816. },
  46817. },
  46818. [
  46819. {
  46820. name: "Macro",
  46821. height: math.unit(100, "feet"),
  46822. default: true
  46823. },
  46824. ]
  46825. ))
  46826. characterMakers.push(() => makeCharacter(
  46827. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46828. {
  46829. front: {
  46830. height: math.unit(8, "feet"),
  46831. weight: math.unit(1200, "lb"),
  46832. name: "Front",
  46833. image: {
  46834. source: "./media/characters/nyterious-daligdig/front.svg",
  46835. extra: 1284/1094,
  46836. bottom: 84/1368
  46837. }
  46838. },
  46839. back: {
  46840. height: math.unit(8, "feet"),
  46841. weight: math.unit(1200, "lb"),
  46842. name: "Back",
  46843. image: {
  46844. source: "./media/characters/nyterious-daligdig/back.svg",
  46845. extra: 1301/1121,
  46846. bottom: 129/1430
  46847. }
  46848. },
  46849. mouth: {
  46850. height: math.unit(1.464, "feet"),
  46851. name: "Mouth",
  46852. image: {
  46853. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Small",
  46860. height: math.unit(8, "feet"),
  46861. default: true
  46862. },
  46863. {
  46864. name: "Normal",
  46865. height: math.unit(15, "feet")
  46866. },
  46867. {
  46868. name: "Macro",
  46869. height: math.unit(90, "feet")
  46870. },
  46871. ]
  46872. ))
  46873. characterMakers.push(() => makeCharacter(
  46874. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46875. {
  46876. front: {
  46877. height: math.unit(7 + 4/12, "feet"),
  46878. weight: math.unit(252, "lb"),
  46879. name: "Front",
  46880. image: {
  46881. source: "./media/characters/bandel/front.svg",
  46882. extra: 1946/1775,
  46883. bottom: 26/1972
  46884. }
  46885. },
  46886. back: {
  46887. height: math.unit(7 + 4/12, "feet"),
  46888. weight: math.unit(252, "lb"),
  46889. name: "Back",
  46890. image: {
  46891. source: "./media/characters/bandel/back.svg",
  46892. extra: 1940/1770,
  46893. bottom: 25/1965
  46894. }
  46895. },
  46896. maw: {
  46897. height: math.unit(2.15, "feet"),
  46898. name: "Maw",
  46899. image: {
  46900. source: "./media/characters/bandel/maw.svg"
  46901. }
  46902. },
  46903. stomach: {
  46904. height: math.unit(1.95, "feet"),
  46905. name: "Stomach",
  46906. image: {
  46907. source: "./media/characters/bandel/stomach.svg"
  46908. }
  46909. },
  46910. },
  46911. [
  46912. {
  46913. name: "Normal",
  46914. height: math.unit(7 + 4/12, "feet"),
  46915. default: true
  46916. },
  46917. ]
  46918. ))
  46919. characterMakers.push(() => makeCharacter(
  46920. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46921. {
  46922. front: {
  46923. height: math.unit(10 + 5/12, "feet"),
  46924. weight: math.unit(773.5, "kg"),
  46925. name: "Front",
  46926. image: {
  46927. source: "./media/characters/zed/front.svg",
  46928. extra: 987/941,
  46929. bottom: 52/1039
  46930. }
  46931. },
  46932. },
  46933. [
  46934. {
  46935. name: "Short",
  46936. height: math.unit(5 + 4/12, "feet")
  46937. },
  46938. {
  46939. name: "Average",
  46940. height: math.unit(10 + 5/12, "feet"),
  46941. default: true
  46942. },
  46943. {
  46944. name: "Mini-Macro",
  46945. height: math.unit(24 + 9/12, "feet")
  46946. },
  46947. {
  46948. name: "Macro",
  46949. height: math.unit(249, "feet")
  46950. },
  46951. {
  46952. name: "Mega-Macro",
  46953. height: math.unit(12490, "feet")
  46954. },
  46955. {
  46956. name: "Giga-Macro",
  46957. height: math.unit(24.9, "miles")
  46958. },
  46959. {
  46960. name: "Tera-Macro",
  46961. height: math.unit(24900, "miles")
  46962. },
  46963. {
  46964. name: "Cosmic Scale",
  46965. height: math.unit(38.9, "lightyears")
  46966. },
  46967. {
  46968. name: "Universal Scale",
  46969. height: math.unit(138e12, "lightyears")
  46970. },
  46971. ]
  46972. ))
  46973. characterMakers.push(() => makeCharacter(
  46974. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46975. {
  46976. front: {
  46977. height: math.unit(1561, "inches"),
  46978. name: "Front",
  46979. image: {
  46980. source: "./media/characters/ivan/front.svg",
  46981. extra: 1126/1071,
  46982. bottom: 26/1152
  46983. }
  46984. },
  46985. back: {
  46986. height: math.unit(1561, "inches"),
  46987. name: "Back",
  46988. image: {
  46989. source: "./media/characters/ivan/back.svg",
  46990. extra: 1134/1079,
  46991. bottom: 30/1164
  46992. }
  46993. },
  46994. },
  46995. [
  46996. {
  46997. name: "Normal",
  46998. height: math.unit(1561, "inches"),
  46999. default: true
  47000. },
  47001. ]
  47002. ))
  47003. characterMakers.push(() => makeCharacter(
  47004. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47005. {
  47006. front: {
  47007. height: math.unit(5 + 7/12, "feet"),
  47008. weight: math.unit(150, "lb"),
  47009. name: "Front",
  47010. image: {
  47011. source: "./media/characters/robin-arctic-hare/front.svg",
  47012. extra: 1148/974,
  47013. bottom: 20/1168
  47014. }
  47015. },
  47016. },
  47017. [
  47018. {
  47019. name: "Normal",
  47020. height: math.unit(5 + 7/12, "feet"),
  47021. default: true
  47022. },
  47023. ]
  47024. ))
  47025. characterMakers.push(() => makeCharacter(
  47026. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47027. {
  47028. side: {
  47029. height: math.unit(5, "feet"),
  47030. name: "Side",
  47031. image: {
  47032. source: "./media/characters/birch/side.svg",
  47033. extra: 985/796,
  47034. bottom: 111/1096
  47035. }
  47036. },
  47037. },
  47038. [
  47039. {
  47040. name: "Normal",
  47041. height: math.unit(5, "feet"),
  47042. default: true
  47043. },
  47044. ]
  47045. ))
  47046. characterMakers.push(() => makeCharacter(
  47047. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47048. {
  47049. front: {
  47050. height: math.unit(4, "feet"),
  47051. name: "Front",
  47052. image: {
  47053. source: "./media/characters/rasp/front.svg",
  47054. extra: 561/478,
  47055. bottom: 74/635
  47056. }
  47057. },
  47058. },
  47059. [
  47060. {
  47061. name: "Normal",
  47062. height: math.unit(4, "feet"),
  47063. default: true
  47064. },
  47065. ]
  47066. ))
  47067. characterMakers.push(() => makeCharacter(
  47068. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47069. {
  47070. front: {
  47071. height: math.unit(4 + 6/12, "feet"),
  47072. name: "Front",
  47073. image: {
  47074. source: "./media/characters/agatha/front.svg",
  47075. extra: 947/933,
  47076. bottom: 42/989
  47077. }
  47078. },
  47079. back: {
  47080. height: math.unit(4 + 6/12, "feet"),
  47081. name: "Back",
  47082. image: {
  47083. source: "./media/characters/agatha/back.svg",
  47084. extra: 935/922,
  47085. bottom: 48/983
  47086. }
  47087. },
  47088. },
  47089. [
  47090. {
  47091. name: "Normal",
  47092. height: math.unit(4 + 6 /12, "feet"),
  47093. default: true
  47094. },
  47095. {
  47096. name: "Max Size",
  47097. height: math.unit(500, "feet")
  47098. },
  47099. ]
  47100. ))
  47101. characterMakers.push(() => makeCharacter(
  47102. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47103. {
  47104. side: {
  47105. height: math.unit(30, "feet"),
  47106. name: "Side",
  47107. image: {
  47108. source: "./media/characters/roggy/side.svg",
  47109. extra: 909/643,
  47110. bottom: 63/972
  47111. }
  47112. },
  47113. lounging: {
  47114. height: math.unit(20, "feet"),
  47115. name: "Lounging",
  47116. image: {
  47117. source: "./media/characters/roggy/lounging.svg",
  47118. extra: 643/479,
  47119. bottom: 145/788
  47120. }
  47121. },
  47122. handpaw: {
  47123. height: math.unit(13.1, "feet"),
  47124. name: "Handpaw",
  47125. image: {
  47126. source: "./media/characters/roggy/handpaw.svg"
  47127. }
  47128. },
  47129. footpaw: {
  47130. height: math.unit(15.8, "feet"),
  47131. name: "Footpaw",
  47132. image: {
  47133. source: "./media/characters/roggy/footpaw.svg"
  47134. }
  47135. },
  47136. },
  47137. [
  47138. {
  47139. name: "Menacing",
  47140. height: math.unit(30, "feet"),
  47141. default: true
  47142. },
  47143. ]
  47144. ))
  47145. characterMakers.push(() => makeCharacter(
  47146. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47147. {
  47148. front: {
  47149. height: math.unit(5 + 7/12, "feet"),
  47150. weight: math.unit(135, "lb"),
  47151. name: "Front",
  47152. image: {
  47153. source: "./media/characters/naomi/front.svg",
  47154. extra: 1209/1154,
  47155. bottom: 129/1338
  47156. }
  47157. },
  47158. back: {
  47159. height: math.unit(5 + 7/12, "feet"),
  47160. weight: math.unit(135, "lb"),
  47161. name: "Back",
  47162. image: {
  47163. source: "./media/characters/naomi/back.svg",
  47164. extra: 1252/1190,
  47165. bottom: 23/1275
  47166. }
  47167. },
  47168. },
  47169. [
  47170. {
  47171. name: "Normal",
  47172. height: math.unit(5 + 7 /12, "feet"),
  47173. default: true
  47174. },
  47175. ]
  47176. ))
  47177. characterMakers.push(() => makeCharacter(
  47178. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47179. {
  47180. side: {
  47181. height: math.unit(35, "meters"),
  47182. name: "Side",
  47183. image: {
  47184. source: "./media/characters/kimpi/side.svg",
  47185. extra: 419/382,
  47186. bottom: 63/482
  47187. }
  47188. },
  47189. hand: {
  47190. height: math.unit(8.96, "meters"),
  47191. name: "Hand",
  47192. image: {
  47193. source: "./media/characters/kimpi/hand.svg"
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Normal",
  47200. height: math.unit(35, "meters"),
  47201. default: true
  47202. },
  47203. ]
  47204. ))
  47205. characterMakers.push(() => makeCharacter(
  47206. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47207. {
  47208. front: {
  47209. height: math.unit(4 + 4/12, "feet"),
  47210. name: "Front",
  47211. image: {
  47212. source: "./media/characters/pepper-purrloin/front.svg",
  47213. extra: 1141/1024,
  47214. bottom: 21/1162
  47215. }
  47216. },
  47217. },
  47218. [
  47219. {
  47220. name: "Normal",
  47221. height: math.unit(4 + 4/12, "feet"),
  47222. default: true
  47223. },
  47224. ]
  47225. ))
  47226. characterMakers.push(() => makeCharacter(
  47227. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47228. {
  47229. front: {
  47230. height: math.unit(6 + 2/12, "feet"),
  47231. name: "Front",
  47232. image: {
  47233. source: "./media/characters/raphael/front.svg",
  47234. extra: 1101/962,
  47235. bottom: 59/1160
  47236. }
  47237. },
  47238. },
  47239. [
  47240. {
  47241. name: "Normal",
  47242. height: math.unit(6 + 2/12, "feet"),
  47243. default: true
  47244. },
  47245. ]
  47246. ))
  47247. characterMakers.push(() => makeCharacter(
  47248. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47249. {
  47250. front: {
  47251. height: math.unit(6, "feet"),
  47252. weight: math.unit(150, "lb"),
  47253. name: "Front",
  47254. image: {
  47255. source: "./media/characters/victor-williams/front.svg",
  47256. extra: 1894/1825,
  47257. bottom: 67/1961
  47258. }
  47259. },
  47260. },
  47261. [
  47262. {
  47263. name: "Normal",
  47264. height: math.unit(6, "feet"),
  47265. default: true
  47266. },
  47267. ]
  47268. ))
  47269. characterMakers.push(() => makeCharacter(
  47270. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47271. {
  47272. front: {
  47273. height: math.unit(5 + 8/12, "feet"),
  47274. weight: math.unit(150, "lb"),
  47275. name: "Front",
  47276. image: {
  47277. source: "./media/characters/rachel/front.svg",
  47278. extra: 1902/1787,
  47279. bottom: 46/1948
  47280. }
  47281. },
  47282. },
  47283. [
  47284. {
  47285. name: "Base Height",
  47286. height: math.unit(5 + 8/12, "feet"),
  47287. default: true
  47288. },
  47289. {
  47290. name: "Macro",
  47291. height: math.unit(200, "feet")
  47292. },
  47293. {
  47294. name: "Mega Macro",
  47295. height: math.unit(1, "mile")
  47296. },
  47297. {
  47298. name: "Giga Macro",
  47299. height: math.unit(1500, "miles")
  47300. },
  47301. {
  47302. name: "Tera Macro",
  47303. height: math.unit(8000, "miles")
  47304. },
  47305. {
  47306. name: "Tera Macro+",
  47307. height: math.unit(2e5, "miles")
  47308. },
  47309. ]
  47310. ))
  47311. characterMakers.push(() => makeCharacter(
  47312. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47313. {
  47314. front: {
  47315. height: math.unit(6.5, "feet"),
  47316. name: "Front",
  47317. image: {
  47318. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47319. extra: 860/819,
  47320. bottom: 307/1167
  47321. }
  47322. },
  47323. back: {
  47324. height: math.unit(6.5, "feet"),
  47325. name: "Back",
  47326. image: {
  47327. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47328. extra: 880/837,
  47329. bottom: 395/1275
  47330. }
  47331. },
  47332. sleeping: {
  47333. height: math.unit(2.79, "feet"),
  47334. name: "Sleeping",
  47335. image: {
  47336. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47337. extra: 465/383,
  47338. bottom: 263/728
  47339. }
  47340. },
  47341. maw: {
  47342. height: math.unit(2.52, "feet"),
  47343. name: "Maw",
  47344. image: {
  47345. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47346. }
  47347. },
  47348. },
  47349. [
  47350. {
  47351. name: "Normal",
  47352. height: math.unit(6.5, "feet"),
  47353. default: true
  47354. },
  47355. ]
  47356. ))
  47357. characterMakers.push(() => makeCharacter(
  47358. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47359. {
  47360. front: {
  47361. height: math.unit(5, "feet"),
  47362. name: "Front",
  47363. image: {
  47364. source: "./media/characters/nova-nerium/front.svg",
  47365. extra: 1548/1392,
  47366. bottom: 374/1922
  47367. }
  47368. },
  47369. back: {
  47370. height: math.unit(5, "feet"),
  47371. name: "Back",
  47372. image: {
  47373. source: "./media/characters/nova-nerium/back.svg",
  47374. extra: 1658/1468,
  47375. bottom: 257/1915
  47376. }
  47377. },
  47378. },
  47379. [
  47380. {
  47381. name: "Normal",
  47382. height: math.unit(5, "feet"),
  47383. default: true
  47384. },
  47385. ]
  47386. ))
  47387. characterMakers.push(() => makeCharacter(
  47388. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47389. {
  47390. front: {
  47391. height: math.unit(5 + 4/12, "feet"),
  47392. name: "Front",
  47393. image: {
  47394. source: "./media/characters/ashe-pyriph/front.svg",
  47395. extra: 1935/1747,
  47396. bottom: 60/1995
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(5 + 4/12, "feet"),
  47404. default: true
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47410. {
  47411. front: {
  47412. height: math.unit(8.7, "feet"),
  47413. name: "Front",
  47414. image: {
  47415. source: "./media/characters/flicker-wisp/front.svg",
  47416. extra: 1835/1613,
  47417. bottom: 449/2284
  47418. }
  47419. },
  47420. side: {
  47421. height: math.unit(8.7, "feet"),
  47422. name: "Side",
  47423. image: {
  47424. source: "./media/characters/flicker-wisp/side.svg",
  47425. extra: 1841/1642,
  47426. bottom: 336/2177
  47427. },
  47428. default: true
  47429. },
  47430. maw: {
  47431. height: math.unit(3.35, "feet"),
  47432. name: "Maw",
  47433. image: {
  47434. source: "./media/characters/flicker-wisp/maw.svg",
  47435. extra: 2338/1506,
  47436. bottom: 0/2338
  47437. }
  47438. },
  47439. ovipositor: {
  47440. height: math.unit(4.95, "feet"),
  47441. name: "Ovipositor",
  47442. image: {
  47443. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47444. }
  47445. },
  47446. egg: {
  47447. height: math.unit(0.385, "feet"),
  47448. weight: math.unit(2, "lb"),
  47449. name: "Egg",
  47450. image: {
  47451. source: "./media/characters/flicker-wisp/egg.svg"
  47452. }
  47453. },
  47454. },
  47455. [
  47456. {
  47457. name: "Normal",
  47458. height: math.unit(8.7, "feet"),
  47459. default: true
  47460. },
  47461. ]
  47462. ))
  47463. characterMakers.push(() => makeCharacter(
  47464. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47465. {
  47466. side: {
  47467. height: math.unit(11, "feet"),
  47468. name: "Side",
  47469. image: {
  47470. source: "./media/characters/faefnul/side.svg",
  47471. extra: 1100/1007,
  47472. bottom: 0/1100
  47473. }
  47474. },
  47475. },
  47476. [
  47477. {
  47478. name: "Normal",
  47479. height: math.unit(11, "feet"),
  47480. default: true
  47481. },
  47482. ]
  47483. ))
  47484. characterMakers.push(() => makeCharacter(
  47485. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47486. {
  47487. front: {
  47488. height: math.unit(6 + 2/12, "feet"),
  47489. name: "Front",
  47490. image: {
  47491. source: "./media/characters/shady/front.svg",
  47492. extra: 502/461,
  47493. bottom: 9/511
  47494. }
  47495. },
  47496. kneeling: {
  47497. height: math.unit(4.6, "feet"),
  47498. name: "Kneeling",
  47499. image: {
  47500. source: "./media/characters/shady/kneeling.svg",
  47501. extra: 1328/1219,
  47502. bottom: 117/1445
  47503. }
  47504. },
  47505. maw: {
  47506. height: math.unit(2, "feet"),
  47507. name: "Maw",
  47508. image: {
  47509. source: "./media/characters/shady/maw.svg"
  47510. }
  47511. },
  47512. },
  47513. [
  47514. {
  47515. name: "Nano",
  47516. height: math.unit(1, "mm")
  47517. },
  47518. {
  47519. name: "Micro",
  47520. height: math.unit(12, "mm")
  47521. },
  47522. {
  47523. name: "Tiny",
  47524. height: math.unit(3, "inches")
  47525. },
  47526. {
  47527. name: "Normal",
  47528. height: math.unit(6 + 2/12, "feet"),
  47529. default: true
  47530. },
  47531. {
  47532. name: "Big",
  47533. height: math.unit(15, "feet")
  47534. },
  47535. {
  47536. name: "Macro",
  47537. height: math.unit(150, "feet")
  47538. },
  47539. {
  47540. name: "Titanic",
  47541. height: math.unit(500, "feet")
  47542. },
  47543. ]
  47544. ))
  47545. characterMakers.push(() => makeCharacter(
  47546. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47547. {
  47548. front: {
  47549. height: math.unit(12, "feet"),
  47550. name: "Front",
  47551. image: {
  47552. source: "./media/characters/fenrir/front.svg",
  47553. extra: 968/875,
  47554. bottom: 22/990
  47555. }
  47556. },
  47557. },
  47558. [
  47559. {
  47560. name: "Big",
  47561. height: math.unit(12, "feet"),
  47562. default: true
  47563. },
  47564. ]
  47565. ))
  47566. characterMakers.push(() => makeCharacter(
  47567. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47568. {
  47569. front: {
  47570. height: math.unit(5 + 4/12, "feet"),
  47571. name: "Front",
  47572. image: {
  47573. source: "./media/characters/makar/front.svg",
  47574. extra: 1181/1112,
  47575. bottom: 78/1259
  47576. }
  47577. },
  47578. },
  47579. [
  47580. {
  47581. name: "Normal",
  47582. height: math.unit(5 + 4/12, "feet"),
  47583. default: true
  47584. },
  47585. ]
  47586. ))
  47587. characterMakers.push(() => makeCharacter(
  47588. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47589. {
  47590. front: {
  47591. height: math.unit(5 + 7/12, "feet"),
  47592. name: "Front",
  47593. image: {
  47594. source: "./media/characters/callow/front.svg",
  47595. extra: 1482/1304,
  47596. bottom: 23/1505
  47597. }
  47598. },
  47599. back: {
  47600. height: math.unit(5 + 7/12, "feet"),
  47601. name: "Back",
  47602. image: {
  47603. source: "./media/characters/callow/back.svg",
  47604. extra: 1484/1296,
  47605. bottom: 25/1509
  47606. }
  47607. },
  47608. },
  47609. [
  47610. {
  47611. name: "Micro",
  47612. height: math.unit(3, "inches"),
  47613. default: true
  47614. },
  47615. {
  47616. name: "Normal",
  47617. height: math.unit(5 + 7/12, "feet")
  47618. },
  47619. ]
  47620. ))
  47621. characterMakers.push(() => makeCharacter(
  47622. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47623. {
  47624. front: {
  47625. height: math.unit(6 + 2/12, "feet"),
  47626. name: "Front",
  47627. image: {
  47628. source: "./media/characters/natel/front.svg",
  47629. extra: 1833/1692,
  47630. bottom: 166/1999
  47631. }
  47632. },
  47633. },
  47634. [
  47635. {
  47636. name: "Normal",
  47637. height: math.unit(6 + 2/12, "feet"),
  47638. default: true
  47639. },
  47640. ]
  47641. ))
  47642. characterMakers.push(() => makeCharacter(
  47643. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47644. {
  47645. front: {
  47646. height: math.unit(1.75, "meters"),
  47647. name: "Front",
  47648. image: {
  47649. source: "./media/characters/misu/front.svg",
  47650. extra: 1690/1558,
  47651. bottom: 234/1924
  47652. }
  47653. },
  47654. back: {
  47655. height: math.unit(1.75, "meters"),
  47656. name: "Back",
  47657. image: {
  47658. source: "./media/characters/misu/back.svg",
  47659. extra: 1762/1618,
  47660. bottom: 146/1908
  47661. }
  47662. },
  47663. frontNude: {
  47664. height: math.unit(1.75, "meters"),
  47665. name: "Front (Nude)",
  47666. image: {
  47667. source: "./media/characters/misu/front-nude.svg",
  47668. extra: 1690/1558,
  47669. bottom: 234/1924
  47670. }
  47671. },
  47672. backNude: {
  47673. height: math.unit(1.75, "meters"),
  47674. name: "Back (Nude)",
  47675. image: {
  47676. source: "./media/characters/misu/back-nude.svg",
  47677. extra: 1762/1618,
  47678. bottom: 146/1908
  47679. }
  47680. },
  47681. frontErect: {
  47682. height: math.unit(1.75, "meters"),
  47683. name: "Front (Erect)",
  47684. image: {
  47685. source: "./media/characters/misu/front-erect.svg",
  47686. extra: 1690/1558,
  47687. bottom: 234/1924
  47688. }
  47689. },
  47690. maw: {
  47691. height: math.unit(0.47, "meters"),
  47692. name: "Maw",
  47693. image: {
  47694. source: "./media/characters/misu/maw.svg"
  47695. }
  47696. },
  47697. head: {
  47698. height: math.unit(0.35, "meters"),
  47699. name: "Head",
  47700. image: {
  47701. source: "./media/characters/misu/head.svg"
  47702. }
  47703. },
  47704. rear: {
  47705. height: math.unit(0.47, "meters"),
  47706. name: "Rear",
  47707. image: {
  47708. source: "./media/characters/misu/rear.svg"
  47709. }
  47710. },
  47711. },
  47712. [
  47713. {
  47714. name: "Normal",
  47715. height: math.unit(1.75, "meters")
  47716. },
  47717. {
  47718. name: "Not good for the people",
  47719. height: math.unit(42, "meters")
  47720. },
  47721. {
  47722. name: "Not good for the neighborhood",
  47723. height: math.unit(135, "meters")
  47724. },
  47725. {
  47726. name: "Bit bigger problem",
  47727. height: math.unit(380, "meters"),
  47728. default: true
  47729. },
  47730. {
  47731. name: "Not good for the city",
  47732. height: math.unit(1.5, "km")
  47733. },
  47734. {
  47735. name: "Not good for the county",
  47736. height: math.unit(5.5, "km")
  47737. },
  47738. {
  47739. name: "Not good for the state",
  47740. height: math.unit(25, "km")
  47741. },
  47742. {
  47743. name: "Not good for the country",
  47744. height: math.unit(125, "km")
  47745. },
  47746. {
  47747. name: "Not good for the continent",
  47748. height: math.unit(2100, "km")
  47749. },
  47750. {
  47751. name: "Not good for the planet",
  47752. height: math.unit(35000, "km")
  47753. },
  47754. {
  47755. name: "Just no",
  47756. height: math.unit(8.5e18, "km")
  47757. },
  47758. ]
  47759. ))
  47760. //characters
  47761. function makeCharacters() {
  47762. const results = [];
  47763. characterMakers.forEach(character => {
  47764. results.push(character());
  47765. });
  47766. return results;
  47767. }