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

50396 строки
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. "plant",
  359. "animal"
  360. ]
  361. },
  362. "mouse": {
  363. name: "Mouse",
  364. parents: [
  365. "rodent"
  366. ]
  367. },
  368. "rat": {
  369. name: "Rat",
  370. parents: [
  371. "mammal"
  372. ]
  373. },
  374. "hoshiko-beast": {
  375. name: "Hoshiko Beast",
  376. parents: ["animal"]
  377. },
  378. "snow-jugani": {
  379. name: "Snow Jugani",
  380. parents: ["cat"]
  381. },
  382. "patamon": {
  383. name: "Patamon",
  384. parents: ["digimon", "guinea-pig"]
  385. },
  386. "digimon": {
  387. name: "Digimon",
  388. },
  389. "jugani": {
  390. name: "Jugani",
  391. parents: ["cat"]
  392. },
  393. "luxray": {
  394. name: "Luxray",
  395. parents: ["pokemon", "lion"]
  396. },
  397. "mech": {
  398. name: "Mech",
  399. parents: ["machine"]
  400. },
  401. "zoid": {
  402. name: "Zoid",
  403. parents: ["mech"]
  404. },
  405. "monster": {
  406. name: "Monster",
  407. parents: ["animal"]
  408. },
  409. "foo-dog": {
  410. name: "Foo Dog",
  411. parents: ["mammal"]
  412. },
  413. "elephant": {
  414. name: "Elephant",
  415. parents: ["mammal"]
  416. },
  417. "eagle": {
  418. name: "Eagle",
  419. parents: ["avian"]
  420. },
  421. "cow": {
  422. name: "Cow",
  423. parents: ["mammal"]
  424. },
  425. "crocodile": {
  426. name: "Crocodile",
  427. parents: ["reptile"]
  428. },
  429. "borzoi": {
  430. name: "Borzoi",
  431. parents: ["dog"]
  432. },
  433. "snake": {
  434. name: "Snake",
  435. parents: ["reptile"]
  436. },
  437. "horned-bush-viper": {
  438. name: "Horned Bush Viper",
  439. parents: ["viper"]
  440. },
  441. "cobra": {
  442. name: "Cobra",
  443. parents: ["snake"]
  444. },
  445. "harpy-eagle": {
  446. name: "Harpy Eagle",
  447. parents: ["eagle"]
  448. },
  449. "raptor": {
  450. name: "Raptor",
  451. parents: ["dinosaur"]
  452. },
  453. "dinosaur": {
  454. name: "Dinosaur",
  455. parents: ["reptile"]
  456. },
  457. "veilhound": {
  458. name: "Veilhound",
  459. parents: ["hellhound"]
  460. },
  461. "hellhound": {
  462. name: "Hellhound",
  463. parents: ["canine", "demon"]
  464. },
  465. "insect": {
  466. name: "Insect",
  467. parents: ["animal"]
  468. },
  469. "beetle": {
  470. name: "Beetle",
  471. parents: ["insect"]
  472. },
  473. "moth": {
  474. name: "Moth",
  475. parents: ["insect"]
  476. },
  477. "eastern-dragon": {
  478. name: "Eastern Dragon",
  479. parents: ["dragon"]
  480. },
  481. "jaguar": {
  482. name: "Jaguar",
  483. parents: ["cat"]
  484. },
  485. "horse": {
  486. name: "Horse",
  487. parents: ["mammal"]
  488. },
  489. "sergal": {
  490. name: "Sergal",
  491. parents: ["mammal"]
  492. },
  493. "gryphon": {
  494. name: "Gryphon",
  495. parents: ["lion", "eagle"]
  496. },
  497. "robot": {
  498. name: "Robot",
  499. parents: ["machine"]
  500. },
  501. "medihound": {
  502. name: "Medihound",
  503. parents: ["robot", "dog"]
  504. },
  505. "sylveon": {
  506. name: "Sylveon",
  507. parents: ["pokemon"]
  508. },
  509. "catgirl": {
  510. name: "Catgirl",
  511. parents: ["mammal"]
  512. },
  513. "cowgirl": {
  514. name: "Cowgirl",
  515. parents: ["mammal"]
  516. },
  517. "pony": {
  518. name: "Pony",
  519. parents: ["horse"]
  520. },
  521. "rabbit": {
  522. name: "Rabbit",
  523. parents: ["leporidae"]
  524. },
  525. "fennec-fox": {
  526. name: "Fennec Fox",
  527. parents: ["fox"]
  528. },
  529. "azodian": {
  530. name: "Azodian",
  531. parents: ["mouse"]
  532. },
  533. "shiba-inu": {
  534. name: "Shiba Inu",
  535. parents: ["dog"]
  536. },
  537. "changeling": {
  538. name: "Changeling",
  539. parents: ["insect"]
  540. },
  541. "cheetah": {
  542. name: "Cheetah",
  543. parents: ["cat"]
  544. },
  545. "golden-jackal": {
  546. name: "Golden Jackal",
  547. parents: ["jackal"]
  548. },
  549. "manectric": {
  550. name: "Manectric",
  551. parents: ["pokemon", "wolf"]
  552. },
  553. "rat": {
  554. name: "Rat",
  555. parents: ["rodent"]
  556. },
  557. "rodent": {
  558. name: "Rodent",
  559. parents: ["mammal"]
  560. },
  561. "octocoon": {
  562. name: "Octocoon",
  563. parents: ["raccoon", "octopus"]
  564. },
  565. "octopus": {
  566. name: "Octopus",
  567. parents: ["fish"]
  568. },
  569. "werewolf": {
  570. name: "Werewolf",
  571. parents: ["wolf", "werebeast"]
  572. },
  573. "werebeast": {
  574. name: "Werebeast",
  575. parents: ["monster"]
  576. },
  577. "meerkat": {
  578. name: "Meerkat",
  579. parents: ["mammal"]
  580. },
  581. "human": {
  582. name: "Human",
  583. parents: ["mammal"]
  584. },
  585. "geth": {
  586. name: "Geth",
  587. parents: ["android"]
  588. },
  589. "husky": {
  590. name: "Husky",
  591. parents: ["dog"]
  592. },
  593. "long-eared-bat": {
  594. name: "Long Eared Bat",
  595. parents: ["bat"]
  596. },
  597. "lizard": {
  598. name: "Lizard",
  599. parents: ["reptile"]
  600. },
  601. "salamander": {
  602. name: "Salamander",
  603. parents: ["lizard"]
  604. },
  605. "chameleon": {
  606. name: "Chameleon",
  607. parents: ["lizard"]
  608. },
  609. "gecko": {
  610. name: "Gecko",
  611. parents: ["lizard"]
  612. },
  613. "kobold": {
  614. name: "Kobold",
  615. parents: ["reptile"]
  616. },
  617. "charizard": {
  618. name: "Charizard",
  619. parents: ["pokemon", "dragon"]
  620. },
  621. "lugia": {
  622. name: "Lugia",
  623. parents: ["pokemon", "avian"]
  624. },
  625. "cerberus": {
  626. name: "Cerberus",
  627. parents: ["dog"]
  628. },
  629. "tyrantrum": {
  630. name: "Tyrantrum",
  631. parents: ["pokemon"]
  632. },
  633. "lemur": {
  634. name: "Lemur",
  635. parents: ["mammal"]
  636. },
  637. "kelpie": {
  638. name: "Kelpie",
  639. parents: ["horse", "monster"]
  640. },
  641. "labrador": {
  642. name: "Labrador",
  643. parents: ["dog"]
  644. },
  645. "sylveon": {
  646. name: "Sylveon",
  647. parents: ["eeveelution"]
  648. },
  649. "eeveelution": {
  650. name: "Eeveelution",
  651. parents: ["pokemon", "cat"]
  652. },
  653. "polar-bear": {
  654. name: "Polar Bear",
  655. parents: ["bear"]
  656. },
  657. "bear": {
  658. name: "Bear",
  659. parents: ["mammal"]
  660. },
  661. "absol": {
  662. name: "Absol",
  663. parents: ["pokemon", "cat"]
  664. },
  665. "wolver": {
  666. name: "Wolver",
  667. parents: ["mammal"]
  668. },
  669. "rottweiler": {
  670. name: "Rottweiler",
  671. parents: ["dog"]
  672. },
  673. "zebra": {
  674. name: "Zebra",
  675. parents: ["horse"]
  676. },
  677. "yoshi": {
  678. name: "Yoshi",
  679. parents: ["lizard"]
  680. },
  681. "lynx": {
  682. name: "Lynx",
  683. parents: ["cat"]
  684. },
  685. "unknown": {
  686. name: "Unknown",
  687. parents: []
  688. },
  689. "thylacine": {
  690. name: "Thylacine",
  691. parents: ["mammal"]
  692. },
  693. "gabumon": {
  694. name: "Gabumon",
  695. parents: ["digimon"]
  696. },
  697. "border-collie": {
  698. name: "Border Collie",
  699. parents: ["dog"]
  700. },
  701. "imp": {
  702. name: "Imp",
  703. parents: ["demon"]
  704. },
  705. "kangaroo": {
  706. name: "Kangaroo",
  707. parents: ["marsupial"]
  708. },
  709. "renamon": {
  710. name: "Renamon",
  711. parents: ["digimon", "fox"]
  712. },
  713. "candy-orca-dragon": {
  714. name: "Candy Orca Dragon",
  715. parents: ["fish", "dragon", "candy"]
  716. },
  717. "sabertooth-tiger": {
  718. name: "Sabertooth Tiger",
  719. parents: ["cat"]
  720. },
  721. "espurr": {
  722. name: "Espurr",
  723. parents: ["pokemon", "cat"]
  724. },
  725. "otter": {
  726. name: "Otter",
  727. parents: ["mustelid"]
  728. },
  729. "elemental": {
  730. name: "Elemental",
  731. parents: ["mammal"]
  732. },
  733. "mew": {
  734. name: "Mew",
  735. parents: ["pokemon"]
  736. },
  737. "goodra": {
  738. name: "Goodra",
  739. parents: ["pokemon"]
  740. },
  741. "fairy": {
  742. name: "Fairy",
  743. parents: ["magical"]
  744. },
  745. "typhlosion": {
  746. name: "Typhlosion",
  747. parents: ["pokemon"]
  748. },
  749. "magical": {
  750. name: "Magical",
  751. parents: []
  752. },
  753. "xenomorph": {
  754. name: "Xenomorph",
  755. parents: ["monster", "alien"]
  756. },
  757. "charr": {
  758. name: "Charr",
  759. parents: ["cat"]
  760. },
  761. "siberian-husky": {
  762. name: "Siberian Husky",
  763. parents: ["husky"]
  764. },
  765. "alligator": {
  766. name: "Alligator",
  767. parents: ["reptile"]
  768. },
  769. "bernese-mountain-dog": {
  770. name: "Bernese Mountain Dog",
  771. parents: ["dog"]
  772. },
  773. "reshiram": {
  774. name: "Reshiram",
  775. parents: ["pokemon", "dragon"]
  776. },
  777. "grizzly-bear": {
  778. name: "Grizzly Bear",
  779. parents: ["bear"]
  780. },
  781. "water-monitor": {
  782. name: "Water Monitor",
  783. parents: ["lizard"]
  784. },
  785. "banchofossa": {
  786. name: "Banchofossa",
  787. parents: ["mammal"]
  788. },
  789. "kirin": {
  790. name: "Kirin",
  791. parents: ["monster"]
  792. },
  793. "quilava": {
  794. name: "Quilava",
  795. parents: ["pokemon"]
  796. },
  797. "seviper": {
  798. name: "Seviper",
  799. parents: ["pokemon", "viper"]
  800. },
  801. "flying-fox": {
  802. name: "Flying Fox",
  803. parents: ["bat"]
  804. },
  805. "keynain": {
  806. name: "Keynain",
  807. parents: ["avian"]
  808. },
  809. "lucario": {
  810. name: "Lucario",
  811. parents: ["pokemon", "jackal"]
  812. },
  813. "siamese-cat": {
  814. name: "Siamese Cat",
  815. parents: ["cat"]
  816. },
  817. "spider": {
  818. name: "Spider",
  819. parents: ["insect"]
  820. },
  821. "samurott": {
  822. name: "Samurott",
  823. parents: ["pokemon", "otter"]
  824. },
  825. "megalodon": {
  826. name: "Megalodon",
  827. parents: ["shark"]
  828. },
  829. "unicorn": {
  830. name: "Unicorn",
  831. parents: ["horse"]
  832. },
  833. "greninja": {
  834. name: "Greninja",
  835. parents: ["pokemon", "frog"]
  836. },
  837. "water-dragon": {
  838. name: "Water Dragon",
  839. parents: ["dragon"]
  840. },
  841. "cross-fox": {
  842. name: "Cross Fox",
  843. parents: ["fox"]
  844. },
  845. "synth": {
  846. name: "Synth",
  847. parents: ["machine"]
  848. },
  849. "construct": {
  850. name: "Construct",
  851. parents: []
  852. },
  853. "mexican-wolf": {
  854. name: "Mexican Wolf",
  855. parents: ["wolf"]
  856. },
  857. "leopard": {
  858. name: "Leopard",
  859. parents: ["cat"]
  860. },
  861. "pig": {
  862. name: "Pig",
  863. parents: ["mammal"]
  864. },
  865. "ampharos": {
  866. name: "Ampharos",
  867. parents: ["pokemon", "sheep"]
  868. },
  869. "orca": {
  870. name: "Orca",
  871. parents: ["fish"]
  872. },
  873. "lycanroc": {
  874. name: "Lycanroc",
  875. parents: ["pokemon", "wolf"]
  876. },
  877. "surkanu": {
  878. name: "Surkanu",
  879. parents: ["monster"]
  880. },
  881. "seal": {
  882. name: "Seal",
  883. parents: ["mammal"]
  884. },
  885. "keldeo": {
  886. name: "Keldeo",
  887. parents: ["pokemon"]
  888. },
  889. "great-dane": {
  890. name: "Great Dane",
  891. parents: ["dog"]
  892. },
  893. "black-backed-jackal": {
  894. name: "Black Backed Jackal",
  895. parents: ["jackal"]
  896. },
  897. "sheep": {
  898. name: "Sheep",
  899. parents: ["mammal"]
  900. },
  901. "leopard-seal": {
  902. name: "Leopard Seal",
  903. parents: ["seal"]
  904. },
  905. "zoroark": {
  906. name: "Zoroark",
  907. parents: ["pokemon", "fox"]
  908. },
  909. "maned-wolf": {
  910. name: "Maned Wolf",
  911. parents: ["canine"]
  912. },
  913. "dracha": {
  914. name: "Dracha",
  915. parents: ["dragon"]
  916. },
  917. "wolxi": {
  918. name: "Wolxi",
  919. parents: ["mammal", "alien"]
  920. },
  921. "dratini": {
  922. name: "Dratini",
  923. parents: ["pokemon", "dragon"]
  924. },
  925. "skaven": {
  926. name: "Skaven",
  927. parents: ["rat"]
  928. },
  929. "mongoose": {
  930. name: "Mongoose",
  931. parents: ["mammal"]
  932. },
  933. "lopunny": {
  934. name: "Lopunny",
  935. parents: ["pokemon", "rabbit"]
  936. },
  937. "feraligatr": {
  938. name: "Feraligatr",
  939. parents: ["pokemon", "alligator"]
  940. },
  941. "houndoom": {
  942. name: "Houndoom",
  943. parents: ["pokemon", "dog"]
  944. },
  945. "protogen": {
  946. name: "Protogen",
  947. parents: ["machine"]
  948. },
  949. "saint-bernard": {
  950. name: "Saint Bernard",
  951. parents: ["dog"]
  952. },
  953. "crow": {
  954. name: "Crow",
  955. parents: ["corvid"]
  956. },
  957. "delphox": {
  958. name: "Delphox",
  959. parents: ["pokemon", "fox"]
  960. },
  961. "moose": {
  962. name: "Moose",
  963. parents: ["mammal"]
  964. },
  965. "joraxian": {
  966. name: "Joraxian",
  967. parents: ["monster", "canine", "demon"]
  968. },
  969. "nimbat": {
  970. name: "Nimbat",
  971. parents: ["mammal"]
  972. },
  973. "aardwolf": {
  974. name: "Aardwolf",
  975. parents: ["canine"]
  976. },
  977. "fluudrani": {
  978. name: "Fluudrani",
  979. parents: ["animal"]
  980. },
  981. "arcanine": {
  982. name: "Arcanine",
  983. parents: ["pokemon", "dog"]
  984. },
  985. "inteleon": {
  986. name: "Inteleon",
  987. parents: ["pokemon", "fish"]
  988. },
  989. "ninetales": {
  990. name: "Ninetales",
  991. parents: ["pokemon", "kitsune"]
  992. },
  993. "tigrex": {
  994. name: "Tigrex",
  995. parents: ["tiger"]
  996. },
  997. "zorua": {
  998. name: "Zorua",
  999. parents: ["pokemon", "fox"]
  1000. },
  1001. "vulpix": {
  1002. name: "Vulpix",
  1003. parents: ["pokemon", "fox"]
  1004. },
  1005. "barghest": {
  1006. name: "Barghest",
  1007. parents: ["monster"]
  1008. },
  1009. "gray-wolf": {
  1010. name: "Gray Wolf",
  1011. parents: ["wolf"]
  1012. },
  1013. "ruppells-fox": {
  1014. name: "Rüppell's Fox",
  1015. parents: ["fox"]
  1016. },
  1017. "bull-terrier": {
  1018. name: "Bull Terrier",
  1019. parents: ["dog"]
  1020. },
  1021. "european-honey-buzzard": {
  1022. name: "European Honey Buzzard",
  1023. parents: ["avian"]
  1024. },
  1025. "t-rex": {
  1026. name: "Tyrannosaurus Rex",
  1027. parents: ["dinosaur"]
  1028. },
  1029. "mactarian": {
  1030. name: "Mactarian",
  1031. parents: ["shark", "monster"]
  1032. },
  1033. "mewtwo-y": {
  1034. name: "Mewtwo Y",
  1035. parents: ["mewtwo"]
  1036. },
  1037. "mewtwo": {
  1038. name: "Mewtwo",
  1039. parents: ["pokemon"]
  1040. },
  1041. "eevee": {
  1042. name: "Eevee",
  1043. parents: ["eeveelution"]
  1044. },
  1045. "mienshao": {
  1046. name: "Mienshao",
  1047. parents: ["pokemon"]
  1048. },
  1049. "sugar-glider": {
  1050. name: "Sugar Glider",
  1051. parents: ["opossum"]
  1052. },
  1053. "spectral-bat": {
  1054. name: "Spectral Bat",
  1055. parents: ["bat"]
  1056. },
  1057. "scolipede": {
  1058. name: "Scolipede",
  1059. parents: ["pokemon", "insect"]
  1060. },
  1061. "jackalope": {
  1062. name: "Jackalope",
  1063. parents: ["rabbit", "antelope"]
  1064. },
  1065. "caracal": {
  1066. name: "Caracal",
  1067. parents: ["cat"]
  1068. },
  1069. "stoat": {
  1070. name: "Stoat",
  1071. parents: ["mammal"]
  1072. },
  1073. "african-golden-cat": {
  1074. name: "African Golden Cat",
  1075. parents: ["cat"]
  1076. },
  1077. "gigantosaurus": {
  1078. name: "Gigantosaurus",
  1079. parents: ["dinosaur"]
  1080. },
  1081. "zorgoia": {
  1082. name: "Zorgoia",
  1083. parents: ["mammal"]
  1084. },
  1085. "monitor-lizard": {
  1086. name: "Monitor Lizard",
  1087. parents: ["lizard"]
  1088. },
  1089. "ziralkia": {
  1090. name: "Ziralkia",
  1091. parents: ["mammal"]
  1092. },
  1093. "kiiasi": {
  1094. name: "Kiiasi",
  1095. parents: ["animal"]
  1096. },
  1097. "synx": {
  1098. name: "Synx",
  1099. parents: ["monster"]
  1100. },
  1101. "panther": {
  1102. name: "Panther",
  1103. parents: ["cat"]
  1104. },
  1105. "azumarill": {
  1106. name: "Azumarill",
  1107. parents: ["pokemon"]
  1108. },
  1109. "river-snaptail": {
  1110. name: "River Snaptail",
  1111. parents: ["otter", "crocodile"]
  1112. },
  1113. "great-blue-heron": {
  1114. name: "Great Blue Heron",
  1115. parents: ["avian"]
  1116. },
  1117. "smeargle": {
  1118. name: "Smeargle",
  1119. parents: ["pokemon"]
  1120. },
  1121. "vendeilen": {
  1122. name: "Vendeilen",
  1123. parents: ["monster"]
  1124. },
  1125. "ventura": {
  1126. name: "Ventura",
  1127. parents: ["canine"]
  1128. },
  1129. "clouded-leopard": {
  1130. name: "Clouded Leopard",
  1131. parents: ["leopard"]
  1132. },
  1133. "argonian": {
  1134. name: "Argonian",
  1135. parents: ["lizard"]
  1136. },
  1137. "salazzle": {
  1138. name: "Salazzle",
  1139. parents: ["pokemon", "lizard"]
  1140. },
  1141. "je-stoff-drachen": {
  1142. name: "Je-Stoff Drachen",
  1143. parents: ["dragon"]
  1144. },
  1145. "finnish-spitz-dog": {
  1146. name: "Finnish Spitz Dog",
  1147. parents: ["dog"]
  1148. },
  1149. "gray-fox": {
  1150. name: "Gray Fox",
  1151. parents: ["fox"]
  1152. },
  1153. "opossum": {
  1154. name: "Opossum",
  1155. parents: ["mammal"]
  1156. },
  1157. "antelope": {
  1158. name: "Antelope",
  1159. parents: ["mammal"]
  1160. },
  1161. "weavile": {
  1162. name: "Weavile",
  1163. parents: ["pokemon"]
  1164. },
  1165. "pikachu": {
  1166. name: "Pikachu",
  1167. parents: ["pokemon", "mouse"]
  1168. },
  1169. "grovyle": {
  1170. name: "Grovyle",
  1171. parents: ["pokemon", "plant"]
  1172. },
  1173. "sthara": {
  1174. name: "Sthara",
  1175. parents: ["snow-leopard", "reptile"]
  1176. },
  1177. "star-warrior": {
  1178. name: "Star Warrior",
  1179. parents: ["magical"]
  1180. },
  1181. "dragonoid": {
  1182. name: "Dragonoid",
  1183. parents: ["dragon"]
  1184. },
  1185. "suicune": {
  1186. name: "Suicune",
  1187. parents: ["pokemon"]
  1188. },
  1189. "vole": {
  1190. name: "Vole",
  1191. parents: ["mammal"]
  1192. },
  1193. "blaziken": {
  1194. name: "Blaziken",
  1195. parents: ["pokemon", "avian"]
  1196. },
  1197. "buizel": {
  1198. name: "Buizel",
  1199. parents: ["pokemon", "fish"]
  1200. },
  1201. "floatzel": {
  1202. name: "Floatzel",
  1203. parents: ["pokemon", "fish"]
  1204. },
  1205. "umok": {
  1206. name: "Umok",
  1207. parents: ["avian"]
  1208. },
  1209. "sea-monster": {
  1210. name: "Sea Monster",
  1211. parents: ["monster", "fish"]
  1212. },
  1213. "egyptian-vulture": {
  1214. name: "Egyptian Vulture",
  1215. parents: ["avian"]
  1216. },
  1217. "doberman": {
  1218. name: "Doberman",
  1219. parents: ["dog"]
  1220. },
  1221. "zangoose": {
  1222. name: "Zangoose",
  1223. parents: ["pokemon", "mongoose"]
  1224. },
  1225. "mongoose": {
  1226. name: "Mongoose",
  1227. parents: ["mammal"]
  1228. },
  1229. "wickerbeast": {
  1230. name: "Wickerbeast",
  1231. parents: ["monster"]
  1232. },
  1233. "zenari": {
  1234. name: "Zenari",
  1235. parents: ["lizard"]
  1236. },
  1237. "plant": {
  1238. name: "Plant",
  1239. parents: []
  1240. },
  1241. "raskatox": {
  1242. name: "Raskatox",
  1243. parents: ["raccoon", "skunk", "cat", "fox"]
  1244. },
  1245. "mikromare": {
  1246. name: "mikromare",
  1247. parents: ["alien"]
  1248. },
  1249. "alien": {
  1250. name: "Alien",
  1251. parents: ["animal"]
  1252. },
  1253. "deity": {
  1254. name: "Deity",
  1255. parents: []
  1256. },
  1257. "skarlan": {
  1258. name: "Skarlan",
  1259. parents: ["slug", "dragon"]
  1260. },
  1261. "slug": {
  1262. name: "Slug",
  1263. parents: ["mollusk"]
  1264. },
  1265. "mollusk": {
  1266. name: "Mollusk",
  1267. parents: ["animal"]
  1268. },
  1269. "chimera": {
  1270. name: "Chimera",
  1271. parents: ["monster"]
  1272. },
  1273. "gestalt": {
  1274. name: "Gestalt",
  1275. parents: ["construct"]
  1276. },
  1277. "mimic": {
  1278. name: "Mimic",
  1279. parents: ["monster"]
  1280. },
  1281. "calico-rat": {
  1282. name: "Calico Rat",
  1283. parents: ["rat"]
  1284. },
  1285. "panda": {
  1286. name: "Panda",
  1287. parents: ["mammal"]
  1288. },
  1289. "oni": {
  1290. name: "Oni",
  1291. parents: ["monster"]
  1292. },
  1293. "pegasus": {
  1294. name: "Pegasus",
  1295. parents: ["horse"]
  1296. },
  1297. "vulpera": {
  1298. name: "Vulpera",
  1299. parents: ["fennec-fox"]
  1300. },
  1301. "ceratosaurus": {
  1302. name: "Ceratosaurus",
  1303. parents: ["dinosaur"]
  1304. },
  1305. "nykur": {
  1306. name: "Nykur",
  1307. parents: ["horse", "monster"]
  1308. },
  1309. "giraffe": {
  1310. name: "Giraffe",
  1311. parents: ["mammal"]
  1312. },
  1313. "tauren": {
  1314. name: "Tauren",
  1315. parents: ["cow"]
  1316. },
  1317. "draconi": {
  1318. name: "Draconi",
  1319. parents: ["alien", "cat", "cyborg"]
  1320. },
  1321. "dire-wolf": {
  1322. name: "Dire Wolf",
  1323. parents: ["wolf"]
  1324. },
  1325. "ferromorph": {
  1326. name: "Ferromorph",
  1327. parents: ["construct"]
  1328. },
  1329. "meowth": {
  1330. name: "Meowth",
  1331. parents: ["cat", "pokemon"]
  1332. },
  1333. "pavodragon": {
  1334. name: "Pavodragon",
  1335. parents: ["dragon"]
  1336. },
  1337. "aaltranae": {
  1338. name: "Aaltranae",
  1339. parents: ["dragon"]
  1340. },
  1341. "cyborg": {
  1342. name: "Cyborg",
  1343. parents: ["machine"]
  1344. },
  1345. "draptor": {
  1346. name: "Draptor",
  1347. parents: ["dragon"]
  1348. },
  1349. "candy": {
  1350. name: "Candy",
  1351. parents: []
  1352. },
  1353. "drenath": {
  1354. name: "Drenath",
  1355. parents: ["dragon", "snake", "rabbit"]
  1356. },
  1357. "coyju": {
  1358. name: "Coyju",
  1359. parents: ["coyote", "kaiju"]
  1360. },
  1361. "kaiju": {
  1362. name: "Kaiju",
  1363. parents: ["monster"]
  1364. },
  1365. "nickit": {
  1366. name: "Nickit",
  1367. parents: ["pokemon", "cat"]
  1368. },
  1369. "lopunny": {
  1370. name: "Lopunny",
  1371. parents: ["pokemon", "rabbit"]
  1372. },
  1373. "korean-jindo-dog": {
  1374. name: "Korean Jindo Dog",
  1375. parents: ["dog"]
  1376. },
  1377. "naga": {
  1378. name: "Naga",
  1379. parents: ["snake", "monster"]
  1380. },
  1381. "undead": {
  1382. name: "Undead",
  1383. parents: ["monster"]
  1384. },
  1385. "whale": {
  1386. name: "Whale",
  1387. parents: ["fish"]
  1388. },
  1389. "gelato-bee": {
  1390. name: "Gelato Bee",
  1391. parents: ["bee"]
  1392. },
  1393. "bee": {
  1394. name: "Bee",
  1395. parents: ["insect"]
  1396. },
  1397. "gardevoir": {
  1398. name: "Gardevoir",
  1399. parents: ["pokemon"]
  1400. },
  1401. "ant": {
  1402. name: "Ant",
  1403. parents: ["insect"]
  1404. },
  1405. "frog": {
  1406. name: "Frog",
  1407. parents: ["amphibian"]
  1408. },
  1409. "amphibian": {
  1410. name: "Amphibian",
  1411. parents: ["animal"]
  1412. },
  1413. "pangolin": {
  1414. name: "Pangolin",
  1415. parents: ["mammal"]
  1416. },
  1417. "uragi'viidorn": {
  1418. name: "Uragi'viidorn",
  1419. parents: ["avian", "bear"]
  1420. },
  1421. "gryphdelphais": {
  1422. name: "Gryphdelphais",
  1423. parents: ["dolphin", "gryphon"]
  1424. },
  1425. "plush": {
  1426. name: "Plush",
  1427. parents: ["construct"]
  1428. },
  1429. "draiger": {
  1430. name: "Draiger",
  1431. parents: ["dragon","tiger"]
  1432. },
  1433. "foxsky": {
  1434. name: "Foxsky",
  1435. parents: ["fox", "husky"]
  1436. },
  1437. "umbreon": {
  1438. name: "Umbreon",
  1439. parents: ["eeveelution"]
  1440. },
  1441. "slime-dragon": {
  1442. name: "Slime Dragon",
  1443. parents: ["dragon", "goo"]
  1444. },
  1445. "enderman": {
  1446. name: "Enderman",
  1447. parents: ["monster"]
  1448. },
  1449. "gremlin": {
  1450. name: "Gremlin",
  1451. parents: ["monster"]
  1452. },
  1453. "dragonsune": {
  1454. name: "Dragonsune",
  1455. parents: ["dragon", "kitsune"]
  1456. },
  1457. "ghost": {
  1458. name: "Ghost",
  1459. parents: ["supernatural"]
  1460. },
  1461. "false-vampire-bat": {
  1462. name: "False Vampire Bat",
  1463. parents: ["bat"]
  1464. },
  1465. "succubus": {
  1466. name: "Succubus",
  1467. parents: ["demon"]
  1468. },
  1469. "mia": {
  1470. name: "Mia",
  1471. parents: ["canine"]
  1472. },
  1473. "rainbow": {
  1474. name: "Rainbow",
  1475. parents: ["monster"]
  1476. },
  1477. "solgaleo": {
  1478. name: "Solgaleo",
  1479. parents: ["pokemon"]
  1480. },
  1481. "lucent-nargacuga": {
  1482. name: "Lucent Nargacuga",
  1483. parents: ["monster-hunter"]
  1484. },
  1485. "monster-hunter": {
  1486. name: "Monster Hunter",
  1487. parents: ["monster"]
  1488. },
  1489. "leviathan": {
  1490. "name": "Leviathan",
  1491. "url": "sea-monster"
  1492. },
  1493. "bull": {
  1494. name: "Bull",
  1495. parents: ["mammal"]
  1496. },
  1497. "tanuki": {
  1498. name: "Tanuki",
  1499. parents: ["monster"]
  1500. },
  1501. "chakat": {
  1502. name: "Chakat",
  1503. parents: ["cat"]
  1504. },
  1505. "hydra": {
  1506. name: "Hydra",
  1507. parents: ["monster"]
  1508. },
  1509. "zigzagoon": {
  1510. name: "Zigzagoon",
  1511. parents: ["raccoon", "pokemon"]
  1512. },
  1513. "vulture": {
  1514. name: "Vulture",
  1515. parents: ["avian"]
  1516. },
  1517. "eastern-dragon": {
  1518. name: "Eastern Dragon",
  1519. parents: ["dragon"]
  1520. },
  1521. "gryffon": {
  1522. name: "Gryffon",
  1523. parents: ["phoenix", "red-panda"]
  1524. },
  1525. "amtsvane": {
  1526. name: "Amtsvane",
  1527. parents: ["reptile"]
  1528. },
  1529. "kigavi": {
  1530. name: "Kigavi",
  1531. parents: ["avian"]
  1532. },
  1533. "turian": {
  1534. name: "Turian",
  1535. parents: ["avian"]
  1536. },
  1537. "zeraora": {
  1538. name: "Zeraora",
  1539. parents: ["pokemon", "cat"]
  1540. },
  1541. "sandshrew": {
  1542. name: "Sandshrew",
  1543. parents: ["pokemon", "pangolin"]
  1544. },
  1545. "valais-blacknose-sheep": {
  1546. name: "Valais Blacknose Sheep",
  1547. parents: ["sheep"]
  1548. },
  1549. "novaleit": {
  1550. name: "Novaleit",
  1551. parents: ["mammal"]
  1552. },
  1553. "dunnoh": {
  1554. name: "Dunnoh",
  1555. parents: ["mammal"]
  1556. },
  1557. "lunaral-dragon": {
  1558. name: "Lunaral Dragon",
  1559. parents: ["dragon"]
  1560. },
  1561. "arctic-wolf": {
  1562. name: "Arctic Wolf",
  1563. parents: ["wolf"]
  1564. },
  1565. "donkey": {
  1566. name: "Donkey",
  1567. parents: ["horse"]
  1568. },
  1569. "chinchilla": {
  1570. name: "Chinchilla",
  1571. parents: ["rodent"]
  1572. },
  1573. "felkin": {
  1574. name: "Felkin",
  1575. parents: ["dragon"]
  1576. },
  1577. "tykeriel": {
  1578. name: "Tykeriel",
  1579. parents: ["avian"]
  1580. },
  1581. "folf": {
  1582. name: "Folf",
  1583. parents: ["fox", "wolf"]
  1584. },
  1585. "pooltoy": {
  1586. name: "Pooltoy",
  1587. parents: ["construct"]
  1588. },
  1589. "demi": {
  1590. name: "Demi",
  1591. parents: ["human"]
  1592. },
  1593. "stegosaurus": {
  1594. name: "Stegosaurus",
  1595. parents: ["dinosaur"]
  1596. },
  1597. "computer-virus": {
  1598. name: "Computer Virus",
  1599. parents: ["program"]
  1600. },
  1601. "program": {
  1602. name: "Program",
  1603. parents: ["construct"]
  1604. },
  1605. "space-springhare": {
  1606. name: "Space Springhare",
  1607. parents: ["hare"]
  1608. },
  1609. "river-drake": {
  1610. name: "River Drake",
  1611. parents: ["dragon"]
  1612. },
  1613. "djinn": {
  1614. "name": "Djinn",
  1615. "url": "supernatural"
  1616. },
  1617. "supernatural": {
  1618. name: "Supernatural",
  1619. parents: ["monster"]
  1620. },
  1621. "grasshopper-mouse": {
  1622. name: "Grasshopper Mouse",
  1623. parents: ["mouse"]
  1624. },
  1625. "somali-cat": {
  1626. name: "Somali Cat",
  1627. parents: ["cat"]
  1628. },
  1629. "minccino": {
  1630. name: "Minccino",
  1631. parents: ["pokemon", "chinchilla"]
  1632. },
  1633. "pine-marten": {
  1634. name: "Pine Marten",
  1635. parents: ["marten"]
  1636. },
  1637. "marten": {
  1638. name: "Marten",
  1639. parents: ["mustelid"]
  1640. },
  1641. "mustelid": {
  1642. name: "Mustelid",
  1643. parents: ["mammal"]
  1644. },
  1645. "caribou": {
  1646. name: "Caribou",
  1647. parents: ["deer"]
  1648. },
  1649. "gnoll": {
  1650. name: "Gnoll",
  1651. parents: ["hyena", "monster"]
  1652. },
  1653. "peacekeeper": {
  1654. name: "Peacekeeper",
  1655. parents: ["human"]
  1656. },
  1657. "river-otter": {
  1658. name: "River Otter",
  1659. parents: ["otter"]
  1660. },
  1661. "dhole": {
  1662. name: "Dhole",
  1663. parents: ["canine"]
  1664. },
  1665. "springbok": {
  1666. name: "Springbok",
  1667. parents: ["antelope"]
  1668. },
  1669. "marsupial": {
  1670. name: "Marsupial",
  1671. parents: ["mammal"]
  1672. },
  1673. "townsend-big-eared-bat": {
  1674. name: "Townsend Big-eared Bat",
  1675. parents: ["bat"]
  1676. },
  1677. "squirrel": {
  1678. name: "Squirrel",
  1679. parents: ["rodent"]
  1680. },
  1681. "magpie": {
  1682. name: "Magpie",
  1683. parents: ["corvid"]
  1684. },
  1685. "civet": {
  1686. name: "Civet",
  1687. parents: ["feliform"]
  1688. },
  1689. "feliform": {
  1690. name: "Feliform",
  1691. parents: ["mammal"]
  1692. },
  1693. "tiefling": {
  1694. name: "Tiefling",
  1695. parents: ["devil"]
  1696. },
  1697. "devil": {
  1698. name: "Devil",
  1699. parents: ["supernatural"]
  1700. },
  1701. "sika-deer": {
  1702. name: "Sika Deer",
  1703. parents: ["deer"]
  1704. },
  1705. "vaporeon": {
  1706. name: "Vaporeon",
  1707. parents: ["eeveelution"]
  1708. },
  1709. "leafeon": {
  1710. name: "Leafeon",
  1711. parents: ["eeveelution"]
  1712. },
  1713. "jolteon": {
  1714. name: "Jolteon",
  1715. parents: ["eeveelution"]
  1716. },
  1717. "spireborn": {
  1718. name: "Spireborn",
  1719. parents: ["zorgoia"]
  1720. },
  1721. "vampire": {
  1722. name: "Vampire",
  1723. parents: ["monster"]
  1724. },
  1725. "extraplanar": {
  1726. name: "Extraplanar",
  1727. parents: []
  1728. },
  1729. "goo": {
  1730. name: "Goo",
  1731. parents: []
  1732. },
  1733. "skink": {
  1734. name: "Skink",
  1735. parents: ["lizard"]
  1736. },
  1737. "bat-eared-fox": {
  1738. name: "Bat-eared Fox",
  1739. parents: ["fox"]
  1740. },
  1741. "belted-kingfisher": {
  1742. name: "Belted Kingfisher",
  1743. parents: ["avian"]
  1744. },
  1745. "omnifalcon": {
  1746. name: "Omnifalcon",
  1747. parents: ["gryphon", "falcon", "harpy-eagle"]
  1748. },
  1749. "falcon": {
  1750. name: "Falcon",
  1751. parents: ["avian"]
  1752. },
  1753. "avali": {
  1754. name: "Avali",
  1755. parents: ["avian", "alien"]
  1756. },
  1757. "arctic-fox": {
  1758. name: "Arctic Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "snow-tiger": {
  1762. name: "Snow Tiger",
  1763. parents: ["tiger"]
  1764. },
  1765. "marble-fox": {
  1766. name: "Marble Fox",
  1767. parents: ["fox"]
  1768. },
  1769. "king-wickerbeast": {
  1770. name: "King Wickerbeast",
  1771. parents: ["wickerbeast"]
  1772. },
  1773. "wickerbeast": {
  1774. name: "Wickerbeast",
  1775. parents: ["mammal"]
  1776. },
  1777. "european-polecat": {
  1778. name: "European Polecat",
  1779. parents: ["mustelid"]
  1780. },
  1781. "teshari": {
  1782. name: "Teshari",
  1783. parents: ["avian", "raptor"]
  1784. },
  1785. "alicorn": {
  1786. name: "Alicorn",
  1787. parents: ["horse"]
  1788. },
  1789. "atlas-moth": {
  1790. name: "Atlas Moth",
  1791. parents: ["moth"]
  1792. },
  1793. "owlbear": {
  1794. name: "Owlbear",
  1795. parents: ["owl", "bear", "monster"]
  1796. },
  1797. "owl": {
  1798. name: "Owl",
  1799. parents: ["avian"]
  1800. },
  1801. "silvertongue": {
  1802. name: "Silvertongue",
  1803. parents: ["reptile"]
  1804. },
  1805. "ahuizotl": {
  1806. name: "Ahuizotl",
  1807. parents: ["monster"]
  1808. },
  1809. "ender-dragon": {
  1810. name: "Ender Dragon",
  1811. parents: ["dragon"]
  1812. },
  1813. "bruhathkayosaurus": {
  1814. name: "Bruhathkayosaurus",
  1815. parents: ["sauropod"]
  1816. },
  1817. "sauropod": {
  1818. name: "Sauropod",
  1819. parents: ["dinosaur"]
  1820. },
  1821. "black-sable-antelope": {
  1822. name: "Black Sable Antelope",
  1823. parents: ["antelope"]
  1824. },
  1825. "slime": {
  1826. name: "Slime",
  1827. parents: ["goo"]
  1828. },
  1829. "utahraptor": {
  1830. name: "Utahraptor",
  1831. parents: ["raptor"]
  1832. },
  1833. "indian-giant-squirrel": {
  1834. name: "Indian Giant Squirrel",
  1835. parents: ["squirrel"]
  1836. },
  1837. "golden-retriever": {
  1838. name: "Golden Retriever",
  1839. parents: ["dog"]
  1840. },
  1841. "triceratops": {
  1842. name: "Triceratops",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "drake": {
  1846. name: "Drake",
  1847. parents: ["dragon"]
  1848. },
  1849. "okapi": {
  1850. name: "Okapi",
  1851. parents: ["giraffe"]
  1852. },
  1853. "arctic-hare": {
  1854. name: "Arctic Hare",
  1855. parents: ["hare"]
  1856. },
  1857. "hare": {
  1858. name: "Hare",
  1859. parents: ["leporidae"]
  1860. },
  1861. "leporidae": {
  1862. name: "Leporidae",
  1863. parents: ["mammal"]
  1864. },
  1865. "leopard-gecko": {
  1866. name: "Leopard Gecko",
  1867. parents: ["gecko"]
  1868. },
  1869. "dreamspawn": {
  1870. name: "Dreamspawn",
  1871. parents: ["illusion"]
  1872. },
  1873. "illusion": {
  1874. name: "Illusion",
  1875. parents: []
  1876. },
  1877. "purrloin": {
  1878. name: "Purrloin",
  1879. parents: ["cat", "pokemon"]
  1880. },
  1881. "noivern": {
  1882. name: "Noivern",
  1883. parents: ["bat", "dragon", "pokemon"]
  1884. },
  1885. "hedgehog": {
  1886. name: "Hedgehog",
  1887. parents: ["mammal"]
  1888. },
  1889. "liger": {
  1890. name: "Liger",
  1891. parents: ["lion", "tiger", "hybrid"]
  1892. },
  1893. "hybrid": {
  1894. name: "Hybrid",
  1895. parents: []
  1896. },
  1897. "drider": {
  1898. name: "Drider",
  1899. parents: ["spider"]
  1900. },
  1901. "sabresune": {
  1902. name: "Sabresune",
  1903. parents: ["kitsune", "sabertooth-tiger"]
  1904. },
  1905. "ditto": {
  1906. name: "Ditto",
  1907. parents: ["pokemon", "goo"]
  1908. },
  1909. "amogus": {
  1910. name: "Amogus",
  1911. parents: ["deity"]
  1912. },
  1913. "ferret": {
  1914. name: "Ferret",
  1915. parents: ["mustelid"]
  1916. },
  1917. "guinea-pig": {
  1918. name: "Guinea Pig",
  1919. parents: ["rodent"]
  1920. },
  1921. "viper": {
  1922. name: "Viper",
  1923. parents: ["snake"]
  1924. },
  1925. "cinderace": {
  1926. name: "Cinderace",
  1927. parents: ["pokemon", "rabbit"]
  1928. },
  1929. }
  1930. //species
  1931. function getSpeciesInfo(speciesList) {
  1932. let result = new Set();
  1933. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1934. result.add(entry)
  1935. });
  1936. return Array.from(result);
  1937. };
  1938. function getSpeciesInfoHelper(species) {
  1939. if (!speciesData[species]) {
  1940. console.warn(species + " doesn't exist");
  1941. return [];
  1942. }
  1943. if (speciesData[species].parents) {
  1944. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1945. } else {
  1946. return [species];
  1947. }
  1948. }
  1949. characterMakers.push(() => makeCharacter(
  1950. {
  1951. name: "Fen",
  1952. species: ["crux"],
  1953. description: {
  1954. title: "Bio",
  1955. text: "Very furry. Sheds on everything."
  1956. },
  1957. tags: [
  1958. "anthro",
  1959. "goo"
  1960. ]
  1961. },
  1962. {
  1963. front: {
  1964. height: math.unit(12, "feet"),
  1965. weight: math.unit(2400, "lb"),
  1966. name: "Front",
  1967. image: {
  1968. source: "./media/characters/fen/front.svg",
  1969. extra: 1804/1562,
  1970. bottom: 205/2009
  1971. }
  1972. },
  1973. diving: {
  1974. height: math.unit(4.9, "meters"),
  1975. weight: math.unit(2400, "lb"),
  1976. name: "Diving",
  1977. image: {
  1978. source: "./media/characters/fen/diving.svg"
  1979. }
  1980. },
  1981. goo: {
  1982. height: math.unit(12, "feet"),
  1983. weight: math.unit(3600, "lb"),
  1984. volume: math.unit(1000, "liters"),
  1985. capacity: math.unit(6, "people"),
  1986. name: "Goo",
  1987. image: {
  1988. source: "./media/characters/fen/goo.svg",
  1989. extra: 1307/1071,
  1990. bottom: 134/1441
  1991. }
  1992. },
  1993. maw: {
  1994. height: math.unit(5.03, "feet"),
  1995. name: "Maw",
  1996. image: {
  1997. source: "./media/characters/fen/maw.svg"
  1998. }
  1999. },
  2000. gooCeiling: {
  2001. height: math.unit(6.6, "feet"),
  2002. weight: math.unit(3000, "lb"),
  2003. volume: math.unit(1000, "liters"),
  2004. capacity: math.unit(6, "people"),
  2005. name: "Goo (Ceiling)",
  2006. image: {
  2007. source: "./media/characters/fen/goo-ceiling.svg"
  2008. }
  2009. },
  2010. back: {
  2011. height: math.unit(12, "feet"),
  2012. weight: math.unit(2400, "lb"),
  2013. name: "Back",
  2014. image: {
  2015. source: "./media/characters/fen/back.svg",
  2016. },
  2017. info: {
  2018. description: {
  2019. mode: "append",
  2020. text: "\n\nHe is not currently looking at you."
  2021. }
  2022. }
  2023. },
  2024. full: {
  2025. height: math.unit(1.6, "meter"),
  2026. weight: math.unit(3200, "lb"),
  2027. name: "Full",
  2028. image: {
  2029. source: "./media/characters/fen/full.svg",
  2030. extra: 1133/859,
  2031. bottom: 145/1278
  2032. },
  2033. info: {
  2034. description: {
  2035. mode: "append",
  2036. text: "\n\nMunch."
  2037. }
  2038. }
  2039. },
  2040. gooLounging: {
  2041. height: math.unit(4.53, "feet"),
  2042. weight: math.unit(3000, "lb"),
  2043. capacity: math.unit(6, "people"),
  2044. name: "Goo (Lounging)",
  2045. image: {
  2046. source: "./media/characters/fen/goo-lounging.svg",
  2047. bottom: 116 / 613
  2048. }
  2049. },
  2050. lounging: {
  2051. height: math.unit(10.52, "feet"),
  2052. weight: math.unit(2400, "lb"),
  2053. name: "Lounging",
  2054. image: {
  2055. source: "./media/characters/fen/lounging.svg"
  2056. }
  2057. },
  2058. },
  2059. [
  2060. {
  2061. name: "Small",
  2062. height: math.unit(2.2428, "meter")
  2063. },
  2064. {
  2065. name: "Normal",
  2066. height: math.unit(12, "feet"),
  2067. default: true,
  2068. },
  2069. {
  2070. name: "Big",
  2071. height: math.unit(20, "feet")
  2072. },
  2073. {
  2074. name: "Minimacro",
  2075. height: math.unit(40, "feet"),
  2076. info: {
  2077. description: {
  2078. mode: "append",
  2079. text: "\n\nTOO DAMN BIG"
  2080. }
  2081. }
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(100, "feet"),
  2086. info: {
  2087. description: {
  2088. mode: "append",
  2089. text: "\n\nTOO DAMN BIG"
  2090. }
  2091. }
  2092. },
  2093. {
  2094. name: "Megamacro",
  2095. height: math.unit(2, "miles")
  2096. },
  2097. {
  2098. name: "Gigamacro",
  2099. height: math.unit(10, "earths")
  2100. },
  2101. ]
  2102. ))
  2103. characterMakers.push(() => makeCharacter(
  2104. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2105. {
  2106. front: {
  2107. height: math.unit(183, "cm"),
  2108. weight: math.unit(80, "kg"),
  2109. name: "Front",
  2110. image: {
  2111. source: "./media/characters/sofia-fluttertail/front.svg",
  2112. bottom: 0.01,
  2113. extra: 2154 / 2081
  2114. }
  2115. },
  2116. frontAlt: {
  2117. height: math.unit(183, "cm"),
  2118. weight: math.unit(80, "kg"),
  2119. name: "Front (alt)",
  2120. image: {
  2121. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2122. }
  2123. },
  2124. back: {
  2125. height: math.unit(183, "cm"),
  2126. weight: math.unit(80, "kg"),
  2127. name: "Back",
  2128. image: {
  2129. source: "./media/characters/sofia-fluttertail/back.svg"
  2130. }
  2131. },
  2132. kneeling: {
  2133. height: math.unit(125, "cm"),
  2134. weight: math.unit(80, "kg"),
  2135. name: "Kneeling",
  2136. image: {
  2137. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2138. extra: 1033 / 977,
  2139. bottom: 23.7 / 1057
  2140. }
  2141. },
  2142. maw: {
  2143. height: math.unit(183 / 5, "cm"),
  2144. name: "Maw",
  2145. image: {
  2146. source: "./media/characters/sofia-fluttertail/maw.svg"
  2147. }
  2148. },
  2149. mawcloseup: {
  2150. height: math.unit(183 / 5 * 0.41, "cm"),
  2151. name: "Maw (Closeup)",
  2152. image: {
  2153. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2154. }
  2155. },
  2156. paws: {
  2157. height: math.unit(1.17, "feet"),
  2158. name: "Paws",
  2159. image: {
  2160. source: "./media/characters/sofia-fluttertail/paws.svg",
  2161. extra: 851 / 851,
  2162. bottom: 17 / 868
  2163. }
  2164. },
  2165. },
  2166. [
  2167. {
  2168. name: "Normal",
  2169. height: math.unit(1.83, "meter")
  2170. },
  2171. {
  2172. name: "Size Thief",
  2173. height: math.unit(18, "feet")
  2174. },
  2175. {
  2176. name: "50 Foot Collie",
  2177. height: math.unit(50, "feet")
  2178. },
  2179. {
  2180. name: "Macro",
  2181. height: math.unit(96, "feet"),
  2182. default: true
  2183. },
  2184. {
  2185. name: "Megamerger",
  2186. height: math.unit(650, "feet")
  2187. },
  2188. ]
  2189. ))
  2190. characterMakers.push(() => makeCharacter(
  2191. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2192. {
  2193. front: {
  2194. height: math.unit(7, "feet"),
  2195. weight: math.unit(100, "kg"),
  2196. name: "Front",
  2197. image: {
  2198. source: "./media/characters/march/front.svg",
  2199. extra: 1992/1851,
  2200. bottom: 39/2031
  2201. }
  2202. },
  2203. foot: {
  2204. height: math.unit(0.9, "feet"),
  2205. name: "Foot",
  2206. image: {
  2207. source: "./media/characters/march/foot.svg"
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Normal",
  2214. height: math.unit(7.9, "feet")
  2215. },
  2216. {
  2217. name: "Macro",
  2218. height: math.unit(220, "meters")
  2219. },
  2220. {
  2221. name: "Megamacro",
  2222. height: math.unit(2.98, "km"),
  2223. default: true
  2224. },
  2225. {
  2226. name: "Gigamacro",
  2227. height: math.unit(15963, "km")
  2228. },
  2229. {
  2230. name: "Teramacro",
  2231. height: math.unit(2980000000, "km")
  2232. },
  2233. {
  2234. name: "Examacro",
  2235. height: math.unit(250, "parsecs")
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(6, "feet"),
  2244. weight: math.unit(60, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/noir/front.svg",
  2248. extra: 1,
  2249. bottom: 0.032
  2250. }
  2251. },
  2252. },
  2253. [
  2254. {
  2255. name: "Normal",
  2256. height: math.unit(6.6, "feet")
  2257. },
  2258. {
  2259. name: "Macro",
  2260. height: math.unit(500, "feet")
  2261. },
  2262. {
  2263. name: "Megamacro",
  2264. height: math.unit(2.5, "km"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Gigamacro",
  2269. height: math.unit(22500, "km")
  2270. },
  2271. {
  2272. name: "Teramacro",
  2273. height: math.unit(2500000000, "km")
  2274. },
  2275. {
  2276. name: "Examacro",
  2277. height: math.unit(200, "parsecs")
  2278. },
  2279. ]
  2280. ))
  2281. characterMakers.push(() => makeCharacter(
  2282. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2283. {
  2284. front: {
  2285. height: math.unit(7, "feet"),
  2286. weight: math.unit(100, "kg"),
  2287. name: "Front",
  2288. image: {
  2289. source: "./media/characters/okuri/front.svg",
  2290. extra: 739/665,
  2291. bottom: 39/778
  2292. }
  2293. },
  2294. back: {
  2295. height: math.unit(7, "feet"),
  2296. weight: math.unit(100, "kg"),
  2297. name: "Back",
  2298. image: {
  2299. source: "./media/characters/okuri/back.svg",
  2300. extra: 734/653,
  2301. bottom: 13/747
  2302. }
  2303. },
  2304. sitting: {
  2305. height: math.unit(2.95, "feet"),
  2306. weight: math.unit(100, "kg"),
  2307. name: "Sitting",
  2308. image: {
  2309. source: "./media/characters/okuri/sitting.svg",
  2310. extra: 370/318,
  2311. bottom: 99/469
  2312. }
  2313. },
  2314. },
  2315. [
  2316. {
  2317. name: "Smallest",
  2318. height: math.unit(5 + 2/12, "feet")
  2319. },
  2320. {
  2321. name: "Smaller",
  2322. height: math.unit(300, "feet")
  2323. },
  2324. {
  2325. name: "Small",
  2326. height: math.unit(1000, "feet")
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(1, "mile")
  2331. },
  2332. {
  2333. name: "Mega Macro (Small)",
  2334. height: math.unit(20, "km")
  2335. },
  2336. {
  2337. name: "Mega Macro (Large)",
  2338. height: math.unit(600, "km")
  2339. },
  2340. {
  2341. name: "Giga Macro",
  2342. height: math.unit(10000, "km")
  2343. },
  2344. {
  2345. name: "Normal",
  2346. height: math.unit(577560, "km"),
  2347. default: true
  2348. },
  2349. {
  2350. name: "Large",
  2351. height: math.unit(4, "galaxies")
  2352. },
  2353. {
  2354. name: "Largest",
  2355. height: math.unit(15, "multiverses")
  2356. },
  2357. ]
  2358. ))
  2359. characterMakers.push(() => makeCharacter(
  2360. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2361. {
  2362. front: {
  2363. height: math.unit(7, "feet"),
  2364. weight: math.unit(100, "kg"),
  2365. name: "Front",
  2366. image: {
  2367. source: "./media/characters/manny/front.svg",
  2368. extra: 1,
  2369. bottom: 0.06
  2370. }
  2371. },
  2372. back: {
  2373. height: math.unit(7, "feet"),
  2374. weight: math.unit(100, "kg"),
  2375. name: "Back",
  2376. image: {
  2377. source: "./media/characters/manny/back.svg",
  2378. extra: 1,
  2379. bottom: 0.014
  2380. }
  2381. },
  2382. },
  2383. [
  2384. {
  2385. name: "Normal",
  2386. height: math.unit(7, "feet"),
  2387. },
  2388. {
  2389. name: "Macro",
  2390. height: math.unit(78, "feet"),
  2391. default: true
  2392. },
  2393. {
  2394. name: "Macro+",
  2395. height: math.unit(300, "meters")
  2396. },
  2397. {
  2398. name: "Macro++",
  2399. height: math.unit(2400, "meters")
  2400. },
  2401. {
  2402. name: "Megamacro",
  2403. height: math.unit(5167, "meters")
  2404. },
  2405. {
  2406. name: "Gigamacro",
  2407. height: math.unit(41769, "miles")
  2408. },
  2409. ]
  2410. ))
  2411. characterMakers.push(() => makeCharacter(
  2412. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2413. {
  2414. front: {
  2415. height: math.unit(7, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Front",
  2418. image: {
  2419. source: "./media/characters/adake/front-1.svg"
  2420. }
  2421. },
  2422. frontAlt: {
  2423. height: math.unit(7, "feet"),
  2424. weight: math.unit(100, "kg"),
  2425. name: "Front (Alt)",
  2426. image: {
  2427. source: "./media/characters/adake/front-2.svg",
  2428. extra: 1,
  2429. bottom: 0.01
  2430. }
  2431. },
  2432. back: {
  2433. height: math.unit(7, "feet"),
  2434. weight: math.unit(100, "kg"),
  2435. name: "Back",
  2436. image: {
  2437. source: "./media/characters/adake/back.svg",
  2438. }
  2439. },
  2440. kneel: {
  2441. height: math.unit(5.385, "feet"),
  2442. weight: math.unit(100, "kg"),
  2443. name: "Kneeling",
  2444. image: {
  2445. source: "./media/characters/adake/kneel.svg",
  2446. bottom: 0.052
  2447. }
  2448. },
  2449. },
  2450. [
  2451. {
  2452. name: "Normal",
  2453. height: math.unit(7, "feet"),
  2454. },
  2455. {
  2456. name: "Macro",
  2457. height: math.unit(78, "feet"),
  2458. default: true
  2459. },
  2460. {
  2461. name: "Macro+",
  2462. height: math.unit(300, "meters")
  2463. },
  2464. {
  2465. name: "Macro++",
  2466. height: math.unit(2400, "meters")
  2467. },
  2468. {
  2469. name: "Megamacro",
  2470. height: math.unit(5167, "meters")
  2471. },
  2472. {
  2473. name: "Gigamacro",
  2474. height: math.unit(41769, "miles")
  2475. },
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2480. {
  2481. front: {
  2482. height: math.unit(1.65, "meters"),
  2483. weight: math.unit(50, "kg"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/elijah/front.svg",
  2487. extra: 858 / 830,
  2488. bottom: 95.5 / 953.8559
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(1.65, "meters"),
  2493. weight: math.unit(50, "kg"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/elijah/back.svg",
  2497. extra: 895 / 850,
  2498. bottom: 5.3 / 897.956
  2499. }
  2500. },
  2501. frontNsfw: {
  2502. height: math.unit(1.65, "meters"),
  2503. weight: math.unit(50, "kg"),
  2504. name: "Front (NSFW)",
  2505. image: {
  2506. source: "./media/characters/elijah/front-nsfw.svg",
  2507. extra: 858 / 830,
  2508. bottom: 95.5 / 953.8559
  2509. }
  2510. },
  2511. backNsfw: {
  2512. height: math.unit(1.65, "meters"),
  2513. weight: math.unit(50, "kg"),
  2514. name: "Back (NSFW)",
  2515. image: {
  2516. source: "./media/characters/elijah/back-nsfw.svg",
  2517. extra: 895 / 850,
  2518. bottom: 5.3 / 897.956
  2519. }
  2520. },
  2521. dick: {
  2522. height: math.unit(1, "feet"),
  2523. name: "Dick",
  2524. image: {
  2525. source: "./media/characters/elijah/dick.svg"
  2526. }
  2527. },
  2528. beakOpen: {
  2529. height: math.unit(1.25, "feet"),
  2530. name: "Beak (Open)",
  2531. image: {
  2532. source: "./media/characters/elijah/beak-open.svg"
  2533. }
  2534. },
  2535. beakShut: {
  2536. height: math.unit(1.25, "feet"),
  2537. name: "Beak (Shut)",
  2538. image: {
  2539. source: "./media/characters/elijah/beak-shut.svg"
  2540. }
  2541. },
  2542. footFlexing: {
  2543. height: math.unit(1.61, "feet"),
  2544. name: "Foot (Flexing)",
  2545. image: {
  2546. source: "./media/characters/elijah/foot-flexing.svg"
  2547. }
  2548. },
  2549. footStepping: {
  2550. height: math.unit(1.44, "feet"),
  2551. name: "Foot (Stepping)",
  2552. image: {
  2553. source: "./media/characters/elijah/foot-stepping.svg"
  2554. }
  2555. },
  2556. plantigradeLeg: {
  2557. height: math.unit(2.34, "feet"),
  2558. name: "Plantigrade Leg",
  2559. image: {
  2560. source: "./media/characters/elijah/plantigrade-leg.svg"
  2561. }
  2562. },
  2563. plantigradeFootLeft: {
  2564. height: math.unit(0.9, "feet"),
  2565. name: "Plantigrade Foot (Left)",
  2566. image: {
  2567. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2568. }
  2569. },
  2570. plantigradeFootRight: {
  2571. height: math.unit(0.9, "feet"),
  2572. name: "Plantigrade Foot (Right)",
  2573. image: {
  2574. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2575. }
  2576. },
  2577. },
  2578. [
  2579. {
  2580. name: "Normal",
  2581. height: math.unit(1.65, "meters")
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(55, "meters"),
  2586. default: true
  2587. },
  2588. {
  2589. name: "Macro+",
  2590. height: math.unit(105, "meters")
  2591. },
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2596. {
  2597. front: {
  2598. height: math.unit(7 + 2/12, "feet"),
  2599. weight: math.unit(320, "kg"),
  2600. name: "Front",
  2601. image: {
  2602. source: "./media/characters/rai/front.svg",
  2603. extra: 1802/1696,
  2604. bottom: 68/1870
  2605. }
  2606. },
  2607. frontDressed: {
  2608. height: math.unit(7 + 2/12, "feet"),
  2609. weight: math.unit(320, "kg"),
  2610. name: "Front (Dressed)",
  2611. image: {
  2612. source: "./media/characters/rai/front-dressed.svg",
  2613. extra: 1802/1696,
  2614. bottom: 68/1870
  2615. }
  2616. },
  2617. side: {
  2618. height: math.unit(7 + 2/12, "feet"),
  2619. weight: math.unit(320, "kg"),
  2620. name: "Side",
  2621. image: {
  2622. source: "./media/characters/rai/side.svg",
  2623. extra: 1789/1710,
  2624. bottom: 115/1904
  2625. }
  2626. },
  2627. back: {
  2628. height: math.unit(7 + 2/12, "feet"),
  2629. weight: math.unit(320, "kg"),
  2630. name: "Back",
  2631. image: {
  2632. source: "./media/characters/rai/back.svg",
  2633. extra: 1770/1707,
  2634. bottom: 28/1798
  2635. }
  2636. },
  2637. feral: {
  2638. height: math.unit(9.5, "feet"),
  2639. weight: math.unit(640, "kg"),
  2640. name: "Feral",
  2641. image: {
  2642. source: "./media/characters/rai/feral.svg",
  2643. extra: 945/553,
  2644. bottom: 176/1121
  2645. }
  2646. },
  2647. dragon: {
  2648. height: math.unit(23, "feet"),
  2649. weight: math.unit(50000, "lb"),
  2650. name: "Dragon",
  2651. image: {
  2652. source: "./media/characters/rai/dragon.svg",
  2653. extra: 2498 / 2030,
  2654. bottom: 85.2 / 2584
  2655. }
  2656. },
  2657. maw: {
  2658. height: math.unit(1.69, "feet"),
  2659. name: "Maw",
  2660. image: {
  2661. source: "./media/characters/rai/maw.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Normal",
  2668. height: math.unit(7 + 2/12, "feet")
  2669. },
  2670. {
  2671. name: "Big",
  2672. height: math.unit(11, "feet")
  2673. },
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(302, "feet"),
  2677. default: true
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2683. {
  2684. frontDressed: {
  2685. height: math.unit(216, "feet"),
  2686. weight: math.unit(7000000, "lb"),
  2687. name: "Front (Dressed)",
  2688. image: {
  2689. source: "./media/characters/jazzy/front-dressed.svg",
  2690. extra: 2738 / 2651,
  2691. bottom: 41.8 / 2786
  2692. }
  2693. },
  2694. backDressed: {
  2695. height: math.unit(216, "feet"),
  2696. weight: math.unit(7000000, "lb"),
  2697. name: "Back (Dressed)",
  2698. image: {
  2699. source: "./media/characters/jazzy/back-dressed.svg",
  2700. extra: 2775 / 2673,
  2701. bottom: 36.8 / 2817
  2702. }
  2703. },
  2704. front: {
  2705. height: math.unit(216, "feet"),
  2706. weight: math.unit(7000000, "lb"),
  2707. name: "Front",
  2708. image: {
  2709. source: "./media/characters/jazzy/front.svg",
  2710. extra: 2738 / 2651,
  2711. bottom: 41.8 / 2786
  2712. }
  2713. },
  2714. back: {
  2715. height: math.unit(216, "feet"),
  2716. weight: math.unit(7000000, "lb"),
  2717. name: "Back",
  2718. image: {
  2719. source: "./media/characters/jazzy/back.svg",
  2720. extra: 2775 / 2673,
  2721. bottom: 36.8 / 2817
  2722. }
  2723. },
  2724. maw: {
  2725. height: math.unit(20, "feet"),
  2726. name: "Maw",
  2727. image: {
  2728. source: "./media/characters/jazzy/maw.svg"
  2729. }
  2730. },
  2731. paws: {
  2732. height: math.unit(27.5, "feet"),
  2733. name: "Paws",
  2734. image: {
  2735. source: "./media/characters/jazzy/paws.svg"
  2736. }
  2737. },
  2738. eye: {
  2739. height: math.unit(4.4, "feet"),
  2740. name: "Eye",
  2741. image: {
  2742. source: "./media/characters/jazzy/eye.svg"
  2743. }
  2744. },
  2745. droneOffense: {
  2746. height: math.unit(9.5, "inches"),
  2747. name: "Drone (Offense)",
  2748. image: {
  2749. source: "./media/characters/jazzy/drone-offense.svg"
  2750. }
  2751. },
  2752. droneRecon: {
  2753. height: math.unit(9.5, "inches"),
  2754. name: "Drone (Recon)",
  2755. image: {
  2756. source: "./media/characters/jazzy/drone-recon.svg"
  2757. }
  2758. },
  2759. droneDefense: {
  2760. height: math.unit(9.5, "inches"),
  2761. name: "Drone (Defense)",
  2762. image: {
  2763. source: "./media/characters/jazzy/drone-defense.svg"
  2764. }
  2765. },
  2766. },
  2767. [
  2768. {
  2769. name: "Macro",
  2770. height: math.unit(216, "feet"),
  2771. default: true
  2772. },
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(9 + 6/12, "feet"),
  2780. weight: math.unit(700, "lb"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/flamm/front.svg",
  2784. extra: 1751/1632,
  2785. bottom: 46/1797
  2786. }
  2787. },
  2788. buff: {
  2789. height: math.unit(9 + 6/12, "feet"),
  2790. weight: math.unit(950, "lb"),
  2791. name: "Buff",
  2792. image: {
  2793. source: "./media/characters/flamm/buff.svg",
  2794. extra: 3018/2874,
  2795. bottom: 221/3239
  2796. }
  2797. },
  2798. },
  2799. [
  2800. {
  2801. name: "Normal",
  2802. height: math.unit(9.5, "feet")
  2803. },
  2804. {
  2805. name: "Macro",
  2806. height: math.unit(200, "feet"),
  2807. default: true
  2808. },
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2813. {
  2814. front: {
  2815. height: math.unit(5 + 3/12, "feet"),
  2816. weight: math.unit(60, "kg"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/zephiro/front.svg",
  2820. extra: 2309 / 2162,
  2821. bottom: 0.069
  2822. }
  2823. },
  2824. side: {
  2825. height: math.unit(5 + 3/12, "feet"),
  2826. weight: math.unit(60, "kg"),
  2827. name: "Side",
  2828. image: {
  2829. source: "./media/characters/zephiro/side.svg",
  2830. extra: 2403 / 2279,
  2831. bottom: 0.015
  2832. }
  2833. },
  2834. back: {
  2835. height: math.unit(5 + 3/12, "feet"),
  2836. weight: math.unit(60, "kg"),
  2837. name: "Back",
  2838. image: {
  2839. source: "./media/characters/zephiro/back.svg",
  2840. extra: 2373 / 2244,
  2841. bottom: 0.013
  2842. }
  2843. },
  2844. hand: {
  2845. height: math.unit(0.68, "feet"),
  2846. name: "Hand",
  2847. image: {
  2848. source: "./media/characters/zephiro/hand.svg"
  2849. }
  2850. },
  2851. paw: {
  2852. height: math.unit(1, "feet"),
  2853. name: "Paw",
  2854. image: {
  2855. source: "./media/characters/zephiro/paw.svg"
  2856. }
  2857. },
  2858. beans: {
  2859. height: math.unit(0.93, "feet"),
  2860. name: "Beans",
  2861. image: {
  2862. source: "./media/characters/zephiro/beans.svg"
  2863. }
  2864. },
  2865. },
  2866. [
  2867. {
  2868. name: "Micro",
  2869. height: math.unit(3, "inches")
  2870. },
  2871. {
  2872. name: "Normal",
  2873. height: math.unit(5 + 3 / 12, "feet"),
  2874. default: true
  2875. },
  2876. {
  2877. name: "Macro",
  2878. height: math.unit(118, "feet")
  2879. },
  2880. ]
  2881. ))
  2882. characterMakers.push(() => makeCharacter(
  2883. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2884. {
  2885. front: {
  2886. height: math.unit(5, "feet"),
  2887. weight: math.unit(90, "kg"),
  2888. name: "Front",
  2889. image: {
  2890. source: "./media/characters/fory/front.svg",
  2891. extra: 2862 / 2674,
  2892. bottom: 180 / 3043.8
  2893. }
  2894. },
  2895. back: {
  2896. height: math.unit(5, "feet"),
  2897. weight: math.unit(90, "kg"),
  2898. name: "Back",
  2899. image: {
  2900. source: "./media/characters/fory/back.svg",
  2901. extra: 2962 / 2791,
  2902. bottom: 106 / 3071.8
  2903. }
  2904. },
  2905. foot: {
  2906. height: math.unit(2.14, "feet"),
  2907. name: "Foot",
  2908. image: {
  2909. source: "./media/characters/fory/foot.svg"
  2910. }
  2911. },
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(5, "feet")
  2917. },
  2918. {
  2919. name: "Macro",
  2920. height: math.unit(50, "feet"),
  2921. default: true
  2922. },
  2923. {
  2924. name: "Megamacro",
  2925. height: math.unit(10, "miles")
  2926. },
  2927. {
  2928. name: "Gigamacro",
  2929. height: math.unit(5, "earths")
  2930. },
  2931. ]
  2932. ))
  2933. characterMakers.push(() => makeCharacter(
  2934. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2935. {
  2936. front: {
  2937. height: math.unit(7, "feet"),
  2938. weight: math.unit(90, "kg"),
  2939. name: "Front",
  2940. image: {
  2941. source: "./media/characters/kurrikage/front.svg",
  2942. extra: 1845/1733,
  2943. bottom: 119/1964
  2944. }
  2945. },
  2946. back: {
  2947. height: math.unit(7, "feet"),
  2948. weight: math.unit(90, "kg"),
  2949. name: "Back",
  2950. image: {
  2951. source: "./media/characters/kurrikage/back.svg",
  2952. extra: 1790/1677,
  2953. bottom: 61/1851
  2954. }
  2955. },
  2956. dressed: {
  2957. height: math.unit(7, "feet"),
  2958. weight: math.unit(90, "kg"),
  2959. name: "Dressed",
  2960. image: {
  2961. source: "./media/characters/kurrikage/dressed.svg",
  2962. extra: 1845/1733,
  2963. bottom: 119/1964
  2964. }
  2965. },
  2966. foot: {
  2967. height: math.unit(1.5, "feet"),
  2968. name: "Foot",
  2969. image: {
  2970. source: "./media/characters/kurrikage/foot.svg"
  2971. }
  2972. },
  2973. staff: {
  2974. height: math.unit(6.7, "feet"),
  2975. name: "Staff",
  2976. image: {
  2977. source: "./media/characters/kurrikage/staff.svg"
  2978. }
  2979. },
  2980. peek: {
  2981. height: math.unit(1.05, "feet"),
  2982. name: "Peeking",
  2983. image: {
  2984. source: "./media/characters/kurrikage/peek.svg",
  2985. bottom: 0.08
  2986. }
  2987. },
  2988. },
  2989. [
  2990. {
  2991. name: "Normal",
  2992. height: math.unit(12, "feet"),
  2993. default: true
  2994. },
  2995. {
  2996. name: "Big",
  2997. height: math.unit(20, "feet")
  2998. },
  2999. {
  3000. name: "Macro",
  3001. height: math.unit(500, "feet")
  3002. },
  3003. {
  3004. name: "Megamacro",
  3005. height: math.unit(20, "miles")
  3006. },
  3007. ]
  3008. ))
  3009. characterMakers.push(() => makeCharacter(
  3010. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3011. {
  3012. front: {
  3013. height: math.unit(6, "feet"),
  3014. weight: math.unit(75, "kg"),
  3015. name: "Front",
  3016. image: {
  3017. source: "./media/characters/shingo/front.svg",
  3018. extra: 1900/1825,
  3019. bottom: 82/1982
  3020. }
  3021. },
  3022. side: {
  3023. height: math.unit(6, "feet"),
  3024. weight: math.unit(75, "kg"),
  3025. name: "Side",
  3026. image: {
  3027. source: "./media/characters/shingo/side.svg",
  3028. extra: 1930/1865,
  3029. bottom: 16/1946
  3030. }
  3031. },
  3032. back: {
  3033. height: math.unit(6, "feet"),
  3034. weight: math.unit(75, "kg"),
  3035. name: "Back",
  3036. image: {
  3037. source: "./media/characters/shingo/back.svg",
  3038. extra: 1922/1852,
  3039. bottom: 16/1938
  3040. }
  3041. },
  3042. frontDressed: {
  3043. height: math.unit(6, "feet"),
  3044. weight: math.unit(150, "lb"),
  3045. name: "Front-dressed",
  3046. image: {
  3047. source: "./media/characters/shingo/front-dressed.svg",
  3048. extra: 1900/1825,
  3049. bottom: 82/1982
  3050. }
  3051. },
  3052. paw: {
  3053. height: math.unit(1.29, "feet"),
  3054. name: "Paw",
  3055. image: {
  3056. source: "./media/characters/shingo/paw.svg"
  3057. }
  3058. },
  3059. hand: {
  3060. height: math.unit(1.07, "feet"),
  3061. name: "Hand",
  3062. image: {
  3063. source: "./media/characters/shingo/hand.svg"
  3064. }
  3065. },
  3066. frontAlt: {
  3067. height: math.unit(6, "feet"),
  3068. weight: math.unit(75, "kg"),
  3069. name: "Front (Alt)",
  3070. image: {
  3071. source: "./media/characters/shingo/front-alt.svg",
  3072. extra: 3511 / 3338,
  3073. bottom: 0.005
  3074. }
  3075. },
  3076. frontAlt2: {
  3077. height: math.unit(6, "feet"),
  3078. weight: math.unit(75, "kg"),
  3079. name: "Front (Alt 2)",
  3080. image: {
  3081. source: "./media/characters/shingo/front-alt-2.svg",
  3082. extra: 706/681,
  3083. bottom: 11/717
  3084. }
  3085. },
  3086. pawAlt: {
  3087. height: math.unit(1, "feet"),
  3088. name: "Paw (Alt)",
  3089. image: {
  3090. source: "./media/characters/shingo/paw-alt.svg"
  3091. }
  3092. },
  3093. },
  3094. [
  3095. {
  3096. name: "Micro",
  3097. height: math.unit(4, "inches")
  3098. },
  3099. {
  3100. name: "Normal",
  3101. height: math.unit(6, "feet"),
  3102. default: true
  3103. },
  3104. {
  3105. name: "Macro",
  3106. height: math.unit(108, "feet")
  3107. },
  3108. {
  3109. name: "Macro+",
  3110. height: math.unit(1500, "feet")
  3111. },
  3112. ]
  3113. ))
  3114. characterMakers.push(() => makeCharacter(
  3115. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3116. {
  3117. side: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Side",
  3121. image: {
  3122. source: "./media/characters/aigey/side.svg"
  3123. }
  3124. },
  3125. },
  3126. [
  3127. {
  3128. name: "Macro",
  3129. height: math.unit(200, "feet"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Megamacro",
  3134. height: math.unit(100, "miles")
  3135. },
  3136. ]
  3137. )
  3138. )
  3139. characterMakers.push(() => makeCharacter(
  3140. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3141. {
  3142. front: {
  3143. height: math.unit(5 + 5 / 12, "feet"),
  3144. weight: math.unit(75, "kg"),
  3145. name: "Front",
  3146. image: {
  3147. source: "./media/characters/natasha/front.svg",
  3148. extra: 859 / 824,
  3149. bottom: 23 / 879.6
  3150. }
  3151. },
  3152. frontNsfw: {
  3153. height: math.unit(5 + 5 / 12, "feet"),
  3154. weight: math.unit(75, "kg"),
  3155. name: "Front (NSFW)",
  3156. image: {
  3157. source: "./media/characters/natasha/front-nsfw.svg",
  3158. extra: 859 / 824,
  3159. bottom: 23 / 879.6
  3160. }
  3161. },
  3162. frontErect: {
  3163. height: math.unit(5 + 5 / 12, "feet"),
  3164. weight: math.unit(75, "kg"),
  3165. name: "Front (Erect)",
  3166. image: {
  3167. source: "./media/characters/natasha/front-erect.svg",
  3168. extra: 859 / 824,
  3169. bottom: 23 / 879.6
  3170. }
  3171. },
  3172. back: {
  3173. height: math.unit(5 + 5 / 12, "feet"),
  3174. weight: math.unit(75, "kg"),
  3175. name: "Back",
  3176. image: {
  3177. source: "./media/characters/natasha/back.svg",
  3178. extra: 887.9 / 852.6,
  3179. bottom: 9.7 / 896.4
  3180. }
  3181. },
  3182. backAlt: {
  3183. height: math.unit(5 + 5 / 12, "feet"),
  3184. weight: math.unit(75, "kg"),
  3185. name: "Back (Alt)",
  3186. image: {
  3187. source: "./media/characters/natasha/back-alt.svg",
  3188. extra: 1236.7 / 1192,
  3189. bottom: 22.3 / 1258.2
  3190. }
  3191. },
  3192. dick: {
  3193. height: math.unit(1.772, "feet"),
  3194. name: "Dick",
  3195. image: {
  3196. source: "./media/characters/natasha/dick.svg"
  3197. }
  3198. },
  3199. paw: {
  3200. height: math.unit(0.250, "meters"),
  3201. name: "Paw",
  3202. image: {
  3203. source: "./media/characters/natasha/paw.svg"
  3204. }
  3205. },
  3206. },
  3207. [
  3208. {
  3209. name: "Normal",
  3210. height: math.unit(5 + 5 / 12, "feet")
  3211. },
  3212. {
  3213. name: "Large",
  3214. height: math.unit(12, "feet")
  3215. },
  3216. {
  3217. name: "Macro",
  3218. height: math.unit(100, "feet"),
  3219. default: true
  3220. },
  3221. {
  3222. name: "Macro+",
  3223. height: math.unit(260, "feet")
  3224. },
  3225. {
  3226. name: "Macro++",
  3227. height: math.unit(1, "mile")
  3228. },
  3229. ]
  3230. ))
  3231. characterMakers.push(() => makeCharacter(
  3232. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3233. {
  3234. front: {
  3235. height: math.unit(6, "feet"),
  3236. weight: math.unit(75, "kg"),
  3237. name: "Front",
  3238. image: {
  3239. source: "./media/characters/malik/front.svg"
  3240. }
  3241. },
  3242. side: {
  3243. height: math.unit(6, "feet"),
  3244. weight: math.unit(75, "kg"),
  3245. name: "Side",
  3246. image: {
  3247. source: "./media/characters/malik/side.svg",
  3248. extra: 1.1539
  3249. }
  3250. },
  3251. back: {
  3252. height: math.unit(6, "feet"),
  3253. weight: math.unit(75, "kg"),
  3254. name: "Back",
  3255. image: {
  3256. source: "./media/characters/malik/back.svg"
  3257. }
  3258. },
  3259. },
  3260. [
  3261. {
  3262. name: "Macro",
  3263. height: math.unit(156, "feet"),
  3264. default: true
  3265. },
  3266. {
  3267. name: "Macro+",
  3268. height: math.unit(1188, "feet")
  3269. },
  3270. ]
  3271. ))
  3272. characterMakers.push(() => makeCharacter(
  3273. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3274. {
  3275. front: {
  3276. height: math.unit(6, "feet"),
  3277. weight: math.unit(75, "kg"),
  3278. name: "Front",
  3279. image: {
  3280. source: "./media/characters/sefer/front.svg",
  3281. extra: 848 / 659,
  3282. bottom: 28.3 / 876.442
  3283. }
  3284. },
  3285. back: {
  3286. height: math.unit(6, "feet"),
  3287. weight: math.unit(75, "kg"),
  3288. name: "Back",
  3289. image: {
  3290. source: "./media/characters/sefer/back.svg",
  3291. extra: 864 / 695,
  3292. bottom: 10 / 871
  3293. }
  3294. },
  3295. frontDressed: {
  3296. height: math.unit(6, "feet"),
  3297. weight: math.unit(75, "kg"),
  3298. name: "Front (Dressed)",
  3299. image: {
  3300. source: "./media/characters/sefer/front-dressed.svg",
  3301. extra: 839 / 653,
  3302. bottom: 37.6 / 878
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(6, "feet"),
  3310. default: true
  3311. },
  3312. ]
  3313. ))
  3314. characterMakers.push(() => makeCharacter(
  3315. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3316. {
  3317. body: {
  3318. height: math.unit(2.2428, "meter"),
  3319. weight: math.unit(124.738, "kg"),
  3320. name: "Body",
  3321. image: {
  3322. extra: 1225 / 1050,
  3323. source: "./media/characters/north/front.svg"
  3324. }
  3325. }
  3326. },
  3327. [
  3328. {
  3329. name: "Micro",
  3330. height: math.unit(4, "inches")
  3331. },
  3332. {
  3333. name: "Macro",
  3334. height: math.unit(63, "meters")
  3335. },
  3336. {
  3337. name: "Megamacro",
  3338. height: math.unit(101, "miles"),
  3339. default: true
  3340. }
  3341. ]
  3342. ))
  3343. characterMakers.push(() => makeCharacter(
  3344. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3345. {
  3346. angled: {
  3347. height: math.unit(4, "meter"),
  3348. weight: math.unit(150, "kg"),
  3349. name: "Angled",
  3350. image: {
  3351. source: "./media/characters/talan/angled-sfw.svg",
  3352. bottom: 29 / 3734
  3353. }
  3354. },
  3355. angledNsfw: {
  3356. height: math.unit(4, "meter"),
  3357. weight: math.unit(150, "kg"),
  3358. name: "Angled (NSFW)",
  3359. image: {
  3360. source: "./media/characters/talan/angled-nsfw.svg",
  3361. bottom: 29 / 3734
  3362. }
  3363. },
  3364. frontNsfw: {
  3365. height: math.unit(4, "meter"),
  3366. weight: math.unit(150, "kg"),
  3367. name: "Front (NSFW)",
  3368. image: {
  3369. source: "./media/characters/talan/front-nsfw.svg",
  3370. bottom: 29 / 3734
  3371. }
  3372. },
  3373. sideNsfw: {
  3374. height: math.unit(4, "meter"),
  3375. weight: math.unit(150, "kg"),
  3376. name: "Side (NSFW)",
  3377. image: {
  3378. source: "./media/characters/talan/side-nsfw.svg",
  3379. bottom: 29 / 3734
  3380. }
  3381. },
  3382. back: {
  3383. height: math.unit(4, "meter"),
  3384. weight: math.unit(150, "kg"),
  3385. name: "Back",
  3386. image: {
  3387. source: "./media/characters/talan/back.svg"
  3388. }
  3389. },
  3390. dickBottom: {
  3391. height: math.unit(0.621, "meter"),
  3392. name: "Dick (Bottom)",
  3393. image: {
  3394. source: "./media/characters/talan/dick-bottom.svg"
  3395. }
  3396. },
  3397. dickTop: {
  3398. height: math.unit(0.621, "meter"),
  3399. name: "Dick (Top)",
  3400. image: {
  3401. source: "./media/characters/talan/dick-top.svg"
  3402. }
  3403. },
  3404. dickSide: {
  3405. height: math.unit(0.305, "meter"),
  3406. name: "Dick (Side)",
  3407. image: {
  3408. source: "./media/characters/talan/dick-side.svg"
  3409. }
  3410. },
  3411. dickFront: {
  3412. height: math.unit(0.305, "meter"),
  3413. name: "Dick (Front)",
  3414. image: {
  3415. source: "./media/characters/talan/dick-front.svg"
  3416. }
  3417. },
  3418. },
  3419. [
  3420. {
  3421. name: "Normal",
  3422. height: math.unit(4, "meters")
  3423. },
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(100, "meters")
  3427. },
  3428. {
  3429. name: "Megamacro",
  3430. height: math.unit(2, "miles"),
  3431. default: true
  3432. },
  3433. {
  3434. name: "Gigamacro",
  3435. height: math.unit(5000, "miles")
  3436. },
  3437. {
  3438. name: "Teramacro",
  3439. height: math.unit(100, "parsecs")
  3440. }
  3441. ]
  3442. ))
  3443. characterMakers.push(() => makeCharacter(
  3444. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3445. {
  3446. front: {
  3447. height: math.unit(2, "meter"),
  3448. weight: math.unit(90, "kg"),
  3449. name: "Front",
  3450. image: {
  3451. source: "./media/characters/gael'rathus/front.svg"
  3452. }
  3453. },
  3454. frontAlt: {
  3455. height: math.unit(2, "meter"),
  3456. weight: math.unit(90, "kg"),
  3457. name: "Front (alt)",
  3458. image: {
  3459. source: "./media/characters/gael'rathus/front-alt.svg"
  3460. }
  3461. },
  3462. frontAlt2: {
  3463. height: math.unit(2, "meter"),
  3464. weight: math.unit(90, "kg"),
  3465. name: "Front (alt 2)",
  3466. image: {
  3467. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3468. }
  3469. }
  3470. },
  3471. [
  3472. {
  3473. name: "Normal",
  3474. height: math.unit(9, "feet"),
  3475. default: true
  3476. },
  3477. {
  3478. name: "Large",
  3479. height: math.unit(25, "feet")
  3480. },
  3481. {
  3482. name: "Macro",
  3483. height: math.unit(0.25, "miles")
  3484. },
  3485. {
  3486. name: "Megamacro",
  3487. height: math.unit(10, "miles")
  3488. }
  3489. ]
  3490. ))
  3491. characterMakers.push(() => makeCharacter(
  3492. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3493. {
  3494. side: {
  3495. height: math.unit(2, "meter"),
  3496. weight: math.unit(140, "kg"),
  3497. name: "Side",
  3498. image: {
  3499. source: "./media/characters/sosha/side.svg",
  3500. bottom: 0.042
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(12, "feet"),
  3508. default: true
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3514. {
  3515. side: {
  3516. height: math.unit(5 + 5 / 12, "feet"),
  3517. weight: math.unit(170, "kg"),
  3518. name: "Side",
  3519. image: {
  3520. source: "./media/characters/runnola/side.svg",
  3521. extra: 741 / 448,
  3522. bottom: 0.05
  3523. }
  3524. },
  3525. },
  3526. [
  3527. {
  3528. name: "Small",
  3529. height: math.unit(3, "feet")
  3530. },
  3531. {
  3532. name: "Normal",
  3533. height: math.unit(5 + 5 / 12, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Big",
  3538. height: math.unit(10, "feet")
  3539. },
  3540. ]
  3541. ))
  3542. characterMakers.push(() => makeCharacter(
  3543. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3544. {
  3545. front: {
  3546. height: math.unit(2, "meter"),
  3547. weight: math.unit(50, "kg"),
  3548. name: "Front",
  3549. image: {
  3550. source: "./media/characters/kurribird/front.svg",
  3551. bottom: 0.015
  3552. }
  3553. },
  3554. frontAlt: {
  3555. height: math.unit(1.5, "meter"),
  3556. weight: math.unit(50, "kg"),
  3557. name: "Front (Alt)",
  3558. image: {
  3559. source: "./media/characters/kurribird/front-alt.svg",
  3560. extra: 1.45
  3561. }
  3562. },
  3563. },
  3564. [
  3565. {
  3566. name: "Normal",
  3567. height: math.unit(7, "feet")
  3568. },
  3569. {
  3570. name: "Big",
  3571. height: math.unit(12, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Macro",
  3576. height: math.unit(1500, "feet")
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(2, "miles")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(80, "kg"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/elbial/front.svg",
  3593. extra: 1643 / 1556,
  3594. bottom: 60.2 / 1696
  3595. }
  3596. },
  3597. side: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(80, "kg"),
  3600. name: "Side",
  3601. image: {
  3602. source: "./media/characters/elbial/side.svg",
  3603. extra: 1601/1528,
  3604. bottom: 97/1698
  3605. }
  3606. },
  3607. back: {
  3608. height: math.unit(2, "meter"),
  3609. weight: math.unit(80, "kg"),
  3610. name: "Back",
  3611. image: {
  3612. source: "./media/characters/elbial/back.svg",
  3613. extra: 1653/1569,
  3614. bottom: 20/1673
  3615. }
  3616. },
  3617. frontDressed: {
  3618. height: math.unit(2, "meter"),
  3619. weight: math.unit(80, "kg"),
  3620. name: "Front (Dressed)",
  3621. image: {
  3622. source: "./media/characters/elbial/front-dressed.svg",
  3623. extra: 1638/1569,
  3624. bottom: 70/1708
  3625. }
  3626. },
  3627. genitals: {
  3628. height: math.unit(2 / 3.367, "meter"),
  3629. name: "Genitals",
  3630. image: {
  3631. source: "./media/characters/elbial/genitals.svg"
  3632. }
  3633. },
  3634. },
  3635. [
  3636. {
  3637. name: "Large",
  3638. height: math.unit(100, "feet")
  3639. },
  3640. {
  3641. name: "Macro",
  3642. height: math.unit(500, "feet"),
  3643. default: true
  3644. },
  3645. {
  3646. name: "Megamacro",
  3647. height: math.unit(10, "miles")
  3648. },
  3649. {
  3650. name: "Gigamacro",
  3651. height: math.unit(25000, "miles")
  3652. },
  3653. {
  3654. name: "Full-Size",
  3655. height: math.unit(8000000, "gigaparsecs")
  3656. }
  3657. ]
  3658. ))
  3659. characterMakers.push(() => makeCharacter(
  3660. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3661. {
  3662. front: {
  3663. height: math.unit(2, "meter"),
  3664. weight: math.unit(60, "kg"),
  3665. name: "Front",
  3666. image: {
  3667. source: "./media/characters/noah/front.svg"
  3668. }
  3669. },
  3670. talons: {
  3671. height: math.unit(0.315, "meter"),
  3672. name: "Talons",
  3673. image: {
  3674. source: "./media/characters/noah/talons.svg"
  3675. }
  3676. }
  3677. },
  3678. [
  3679. {
  3680. name: "Large",
  3681. height: math.unit(50, "feet")
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(750, "feet"),
  3686. default: true
  3687. },
  3688. {
  3689. name: "Megamacro",
  3690. height: math.unit(50, "miles")
  3691. },
  3692. {
  3693. name: "Gigamacro",
  3694. height: math.unit(100000, "miles")
  3695. },
  3696. {
  3697. name: "Full-Size",
  3698. height: math.unit(3000000000, "miles")
  3699. }
  3700. ]
  3701. ))
  3702. characterMakers.push(() => makeCharacter(
  3703. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3704. {
  3705. front: {
  3706. height: math.unit(2, "meter"),
  3707. weight: math.unit(80, "kg"),
  3708. name: "Front",
  3709. image: {
  3710. source: "./media/characters/natalya/front.svg"
  3711. }
  3712. },
  3713. back: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(80, "kg"),
  3716. name: "Back",
  3717. image: {
  3718. source: "./media/characters/natalya/back.svg"
  3719. }
  3720. }
  3721. },
  3722. [
  3723. {
  3724. name: "Normal",
  3725. height: math.unit(150, "feet"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Megamacro",
  3730. height: math.unit(5, "miles")
  3731. },
  3732. {
  3733. name: "Full-Size",
  3734. height: math.unit(600, "kiloparsecs")
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(2, "meter"),
  3743. weight: math.unit(50, "kg"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/erestrebah/front.svg",
  3747. extra: 1262/1162,
  3748. bottom: 96/1358
  3749. }
  3750. },
  3751. back: {
  3752. height: math.unit(2, "meter"),
  3753. weight: math.unit(50, "kg"),
  3754. name: "Back",
  3755. image: {
  3756. source: "./media/characters/erestrebah/back.svg",
  3757. extra: 1257/1139,
  3758. bottom: 13/1270
  3759. }
  3760. },
  3761. wing: {
  3762. height: math.unit(2, "meter"),
  3763. weight: math.unit(50, "kg"),
  3764. name: "Wing",
  3765. image: {
  3766. source: "./media/characters/erestrebah/wing.svg",
  3767. extra: 1262/1162,
  3768. bottom: 96/1358
  3769. }
  3770. },
  3771. mouth: {
  3772. height: math.unit(0.39, "feet"),
  3773. name: "Mouth",
  3774. image: {
  3775. source: "./media/characters/erestrebah/mouth.svg"
  3776. }
  3777. }
  3778. },
  3779. [
  3780. {
  3781. name: "Normal",
  3782. height: math.unit(10, "feet")
  3783. },
  3784. {
  3785. name: "Large",
  3786. height: math.unit(50, "feet"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Macro",
  3791. height: math.unit(300, "feet")
  3792. },
  3793. {
  3794. name: "Macro+",
  3795. height: math.unit(750, "feet")
  3796. },
  3797. {
  3798. name: "Megamacro",
  3799. height: math.unit(3, "miles")
  3800. }
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3805. {
  3806. front: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(80, "kg"),
  3809. name: "Front",
  3810. image: {
  3811. source: "./media/characters/jennifer/front.svg",
  3812. bottom: 0.11,
  3813. extra: 1.16
  3814. }
  3815. },
  3816. frontAlt: {
  3817. height: math.unit(2, "meter"),
  3818. weight: math.unit(80, "kg"),
  3819. name: "Front (Alt)",
  3820. image: {
  3821. source: "./media/characters/jennifer/front-alt.svg"
  3822. }
  3823. }
  3824. },
  3825. [
  3826. {
  3827. name: "Canon Height",
  3828. height: math.unit(120, "feet"),
  3829. default: true
  3830. },
  3831. {
  3832. name: "Macro+",
  3833. height: math.unit(300, "feet")
  3834. },
  3835. {
  3836. name: "Megamacro",
  3837. height: math.unit(20000, "feet")
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3843. {
  3844. front: {
  3845. height: math.unit(2, "meter"),
  3846. weight: math.unit(50, "kg"),
  3847. name: "Front",
  3848. image: {
  3849. source: "./media/characters/kalista/front.svg",
  3850. extra: 1314/1145,
  3851. bottom: 101/1415
  3852. }
  3853. },
  3854. back: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(50, "kg"),
  3857. name: "Back",
  3858. image: {
  3859. source: "./media/characters/kalista/back.svg",
  3860. extra: 1366 / 1156,
  3861. bottom: 33.9 / 1362.78
  3862. }
  3863. }
  3864. },
  3865. [
  3866. {
  3867. name: "Uncomfortably Small",
  3868. height: math.unit(10, "feet")
  3869. },
  3870. {
  3871. name: "Small",
  3872. height: math.unit(30, "feet")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(100, "feet"),
  3877. default: true
  3878. },
  3879. {
  3880. name: "Macro+",
  3881. height: math.unit(2000, "feet")
  3882. },
  3883. {
  3884. name: "True Form",
  3885. height: math.unit(8924, "miles")
  3886. }
  3887. ]
  3888. ))
  3889. characterMakers.push(() => makeCharacter(
  3890. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3891. {
  3892. front: {
  3893. height: math.unit(2, "meter"),
  3894. weight: math.unit(120, "kg"),
  3895. name: "Front",
  3896. image: {
  3897. source: "./media/characters/ggv/front.svg"
  3898. }
  3899. },
  3900. side: {
  3901. height: math.unit(2, "meter"),
  3902. weight: math.unit(120, "kg"),
  3903. name: "Side",
  3904. image: {
  3905. source: "./media/characters/ggv/side.svg"
  3906. }
  3907. }
  3908. },
  3909. [
  3910. {
  3911. name: "Extremely Puny",
  3912. height: math.unit(9 + 5 / 12, "feet")
  3913. },
  3914. {
  3915. name: "Horribly Small",
  3916. height: math.unit(47.7, "miles"),
  3917. default: true
  3918. },
  3919. {
  3920. name: "Reasonably Sized",
  3921. height: math.unit(25000, "parsecs")
  3922. },
  3923. {
  3924. name: "Slightly Uncompressed",
  3925. height: math.unit(7.77e31, "parsecs")
  3926. },
  3927. {
  3928. name: "Omniversal",
  3929. height: math.unit(1e300, "meters")
  3930. },
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3935. {
  3936. front: {
  3937. height: math.unit(2, "meter"),
  3938. weight: math.unit(75, "lb"),
  3939. name: "Front",
  3940. image: {
  3941. source: "./media/characters/napalm/front.svg"
  3942. }
  3943. },
  3944. back: {
  3945. height: math.unit(2, "meter"),
  3946. weight: math.unit(75, "lb"),
  3947. name: "Back",
  3948. image: {
  3949. source: "./media/characters/napalm/back.svg"
  3950. }
  3951. }
  3952. },
  3953. [
  3954. {
  3955. name: "Standard",
  3956. height: math.unit(55, "feet"),
  3957. default: true
  3958. }
  3959. ]
  3960. ))
  3961. characterMakers.push(() => makeCharacter(
  3962. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3963. {
  3964. front: {
  3965. height: math.unit(7 + 5 / 6, "feet"),
  3966. weight: math.unit(325, "lb"),
  3967. name: "Front",
  3968. image: {
  3969. source: "./media/characters/asana/front.svg",
  3970. extra: 1133 / 1060,
  3971. bottom: 15.2 / 1148.6
  3972. }
  3973. },
  3974. back: {
  3975. height: math.unit(7 + 5 / 6, "feet"),
  3976. weight: math.unit(325, "lb"),
  3977. name: "Back",
  3978. image: {
  3979. source: "./media/characters/asana/back.svg",
  3980. extra: 1114 / 1043,
  3981. bottom: 5 / 1120
  3982. }
  3983. },
  3984. dressedDark: {
  3985. height: math.unit(7 + 5 / 6, "feet"),
  3986. weight: math.unit(325, "lb"),
  3987. name: "Dressed (Dark)",
  3988. image: {
  3989. source: "./media/characters/asana/dressed-dark.svg",
  3990. extra: 1133 / 1060,
  3991. bottom: 15.2 / 1148.6
  3992. }
  3993. },
  3994. dressedLight: {
  3995. height: math.unit(7 + 5 / 6, "feet"),
  3996. weight: math.unit(325, "lb"),
  3997. name: "Dressed (Light)",
  3998. image: {
  3999. source: "./media/characters/asana/dressed-light.svg",
  4000. extra: 1133 / 1060,
  4001. bottom: 15.2 / 1148.6
  4002. }
  4003. },
  4004. },
  4005. [
  4006. {
  4007. name: "Standard",
  4008. height: math.unit(7 + 5 / 6, "feet"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Large",
  4013. height: math.unit(10, "meters")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(2500, "meters")
  4018. },
  4019. {
  4020. name: "Megamacro",
  4021. height: math.unit(5e6, "meters")
  4022. },
  4023. {
  4024. name: "Examacro",
  4025. height: math.unit(5e12, "lightyears")
  4026. },
  4027. {
  4028. name: "Max Size",
  4029. height: math.unit(1e31, "lightyears")
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4035. {
  4036. front: {
  4037. height: math.unit(2, "meter"),
  4038. weight: math.unit(60, "kg"),
  4039. name: "Front",
  4040. image: {
  4041. source: "./media/characters/ebony/front.svg",
  4042. bottom: 0.03,
  4043. extra: 1045 / 810 + 0.03
  4044. }
  4045. },
  4046. side: {
  4047. height: math.unit(2, "meter"),
  4048. weight: math.unit(60, "kg"),
  4049. name: "Side",
  4050. image: {
  4051. source: "./media/characters/ebony/side.svg",
  4052. bottom: 0.03,
  4053. extra: 1045 / 810 + 0.03
  4054. }
  4055. },
  4056. back: {
  4057. height: math.unit(2, "meter"),
  4058. weight: math.unit(60, "kg"),
  4059. name: "Back",
  4060. image: {
  4061. source: "./media/characters/ebony/back.svg",
  4062. bottom: 0.01,
  4063. extra: 1045 / 810 + 0.01
  4064. }
  4065. },
  4066. },
  4067. [
  4068. // TODO check why I did this lol
  4069. {
  4070. name: "Standard",
  4071. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4072. default: true
  4073. },
  4074. {
  4075. name: "Macro",
  4076. height: math.unit(200, "feet")
  4077. },
  4078. {
  4079. name: "Gigamacro",
  4080. height: math.unit(13000, "km")
  4081. }
  4082. ]
  4083. ))
  4084. characterMakers.push(() => makeCharacter(
  4085. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4086. {
  4087. front: {
  4088. height: math.unit(6, "feet"),
  4089. weight: math.unit(175, "lb"),
  4090. name: "Front",
  4091. image: {
  4092. source: "./media/characters/mountain/front.svg",
  4093. extra: 972 / 955,
  4094. bottom: 64 / 1036.6
  4095. }
  4096. },
  4097. back: {
  4098. height: math.unit(6, "feet"),
  4099. weight: math.unit(175, "lb"),
  4100. name: "Back",
  4101. image: {
  4102. source: "./media/characters/mountain/back.svg",
  4103. extra: 970 / 950,
  4104. bottom: 28.25 / 999
  4105. }
  4106. },
  4107. },
  4108. [
  4109. {
  4110. name: "Large",
  4111. height: math.unit(20, "meters")
  4112. },
  4113. {
  4114. name: "Macro",
  4115. height: math.unit(300, "meters")
  4116. },
  4117. {
  4118. name: "Gigamacro",
  4119. height: math.unit(10000, "km"),
  4120. default: true
  4121. },
  4122. {
  4123. name: "Examacro",
  4124. height: math.unit(10e9, "lightyears")
  4125. }
  4126. ]
  4127. ))
  4128. characterMakers.push(() => makeCharacter(
  4129. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4130. {
  4131. front: {
  4132. height: math.unit(8, "feet"),
  4133. weight: math.unit(500, "lb"),
  4134. name: "Front",
  4135. image: {
  4136. source: "./media/characters/rick/front.svg"
  4137. }
  4138. }
  4139. },
  4140. [
  4141. {
  4142. name: "Normal",
  4143. height: math.unit(8, "feet"),
  4144. default: true
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(5, "km")
  4149. }
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(8, "feet"),
  4157. weight: math.unit(120, "lb"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/ona/front.svg"
  4161. }
  4162. },
  4163. frontAlt: {
  4164. height: math.unit(8, "feet"),
  4165. weight: math.unit(120, "lb"),
  4166. name: "Front (Alt)",
  4167. image: {
  4168. source: "./media/characters/ona/front-alt.svg"
  4169. }
  4170. },
  4171. back: {
  4172. height: math.unit(8, "feet"),
  4173. weight: math.unit(120, "lb"),
  4174. name: "Back",
  4175. image: {
  4176. source: "./media/characters/ona/back.svg"
  4177. }
  4178. },
  4179. foot: {
  4180. height: math.unit(1.1, "feet"),
  4181. name: "Foot",
  4182. image: {
  4183. source: "./media/characters/ona/foot.svg"
  4184. }
  4185. }
  4186. },
  4187. [
  4188. {
  4189. name: "Megamacro",
  4190. height: math.unit(70, "km"),
  4191. default: true
  4192. },
  4193. {
  4194. name: "Gigamacro",
  4195. height: math.unit(681818, "miles")
  4196. },
  4197. {
  4198. name: "Examacro",
  4199. height: math.unit(3800000, "lightyears")
  4200. },
  4201. ]
  4202. ))
  4203. characterMakers.push(() => makeCharacter(
  4204. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4205. {
  4206. front: {
  4207. height: math.unit(12, "feet"),
  4208. weight: math.unit(3000, "lb"),
  4209. name: "Front",
  4210. image: {
  4211. source: "./media/characters/mech/front.svg",
  4212. extra: 2900 / 2770,
  4213. bottom: 110 / 3010
  4214. }
  4215. },
  4216. back: {
  4217. height: math.unit(12, "feet"),
  4218. weight: math.unit(3000, "lb"),
  4219. name: "Back",
  4220. image: {
  4221. source: "./media/characters/mech/back.svg",
  4222. extra: 3011 / 2890,
  4223. bottom: 94 / 3105
  4224. }
  4225. },
  4226. maw: {
  4227. height: math.unit(3.07, "feet"),
  4228. name: "Maw",
  4229. image: {
  4230. source: "./media/characters/mech/maw.svg"
  4231. }
  4232. },
  4233. head: {
  4234. height: math.unit(2.82, "feet"),
  4235. name: "Head",
  4236. image: {
  4237. source: "./media/characters/mech/head.svg"
  4238. }
  4239. },
  4240. dick: {
  4241. height: math.unit(1.43, "feet"),
  4242. name: "Dick",
  4243. image: {
  4244. source: "./media/characters/mech/dick.svg"
  4245. }
  4246. },
  4247. },
  4248. [
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(12, "feet")
  4252. },
  4253. {
  4254. name: "Macro",
  4255. height: math.unit(300, "feet"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Macro+",
  4260. height: math.unit(1500, "feet")
  4261. },
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(1.3, "meter"),
  4269. weight: math.unit(30, "kg"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/gregory/front.svg",
  4273. }
  4274. }
  4275. },
  4276. [
  4277. {
  4278. name: "Normal",
  4279. height: math.unit(1.3, "meter"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(20, "meter")
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4290. {
  4291. front: {
  4292. height: math.unit(2.8, "meter"),
  4293. weight: math.unit(200, "kg"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/elory/front.svg",
  4297. }
  4298. }
  4299. },
  4300. [
  4301. {
  4302. name: "Normal",
  4303. height: math.unit(2.8, "meter"),
  4304. default: true
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(38, "meter")
  4309. }
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4314. {
  4315. front: {
  4316. height: math.unit(470, "feet"),
  4317. weight: math.unit(924, "tons"),
  4318. name: "Front",
  4319. image: {
  4320. source: "./media/characters/angelpatamon/front.svg",
  4321. }
  4322. }
  4323. },
  4324. [
  4325. {
  4326. name: "Normal",
  4327. height: math.unit(470, "feet"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Deity Size I",
  4332. height: math.unit(28651.2, "km")
  4333. },
  4334. {
  4335. name: "Deity Size II",
  4336. height: math.unit(171907.2, "km")
  4337. }
  4338. ]
  4339. ))
  4340. characterMakers.push(() => makeCharacter(
  4341. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4342. {
  4343. side: {
  4344. height: math.unit(7.2, "meter"),
  4345. weight: math.unit(8.2, "tons"),
  4346. name: "Side",
  4347. image: {
  4348. source: "./media/characters/cryae/side.svg",
  4349. extra: 3500 / 1500
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(7.2, "meter"),
  4357. default: true
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(6, "feet"),
  4366. weight: math.unit(175, "lb"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/xera/front.svg",
  4370. extra: 2377 / 1972,
  4371. bottom: 75.5 / 2452
  4372. }
  4373. },
  4374. side: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(175, "lb"),
  4377. name: "Side",
  4378. image: {
  4379. source: "./media/characters/xera/side.svg",
  4380. extra: 2345 / 2019,
  4381. bottom: 39.7 / 2384
  4382. }
  4383. },
  4384. back: {
  4385. height: math.unit(6, "feet"),
  4386. weight: math.unit(175, "lb"),
  4387. name: "Back",
  4388. image: {
  4389. source: "./media/characters/xera/back.svg",
  4390. extra: 2095 / 1984,
  4391. bottom: 67 / 2166
  4392. }
  4393. },
  4394. },
  4395. [
  4396. {
  4397. name: "Small",
  4398. height: math.unit(10, "feet")
  4399. },
  4400. {
  4401. name: "Macro",
  4402. height: math.unit(500, "meters"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Macro+",
  4407. height: math.unit(10, "km")
  4408. },
  4409. {
  4410. name: "Gigamacro",
  4411. height: math.unit(25000, "km")
  4412. },
  4413. {
  4414. name: "Teramacro",
  4415. height: math.unit(3e6, "km")
  4416. }
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(6, "feet"),
  4424. weight: math.unit(175, "lb"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/nebula/front.svg",
  4428. extra: 2566 / 2362,
  4429. bottom: 81 / 2644
  4430. }
  4431. }
  4432. },
  4433. [
  4434. {
  4435. name: "Small",
  4436. height: math.unit(4.5, "meters")
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(1500, "meters"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Megamacro",
  4445. height: math.unit(150, "km")
  4446. },
  4447. {
  4448. name: "Gigamacro",
  4449. height: math.unit(27000, "km")
  4450. }
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4455. {
  4456. front: {
  4457. height: math.unit(6, "feet"),
  4458. weight: math.unit(225, "lb"),
  4459. name: "Front",
  4460. image: {
  4461. source: "./media/characters/abysgar/front.svg"
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Small",
  4468. height: math.unit(4.5, "meters")
  4469. },
  4470. {
  4471. name: "Macro",
  4472. height: math.unit(1250, "meters"),
  4473. default: true
  4474. },
  4475. {
  4476. name: "Megamacro",
  4477. height: math.unit(125, "km")
  4478. },
  4479. {
  4480. name: "Gigamacro",
  4481. height: math.unit(26000, "km")
  4482. }
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4487. {
  4488. front: {
  4489. height: math.unit(6, "feet"),
  4490. weight: math.unit(180, "lb"),
  4491. name: "Front",
  4492. image: {
  4493. source: "./media/characters/yakuz/front.svg"
  4494. }
  4495. }
  4496. },
  4497. [
  4498. {
  4499. name: "Small",
  4500. height: math.unit(5, "meters")
  4501. },
  4502. {
  4503. name: "Macro",
  4504. height: math.unit(1500, "meters"),
  4505. default: true
  4506. },
  4507. {
  4508. name: "Megamacro",
  4509. height: math.unit(200, "km")
  4510. },
  4511. {
  4512. name: "Gigamacro",
  4513. height: math.unit(100000, "km")
  4514. }
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4519. {
  4520. front: {
  4521. height: math.unit(6, "feet"),
  4522. weight: math.unit(175, "lb"),
  4523. name: "Front",
  4524. image: {
  4525. source: "./media/characters/mirova/front.svg",
  4526. extra: 3334 / 3071,
  4527. bottom: 42 / 3375.6
  4528. }
  4529. }
  4530. },
  4531. [
  4532. {
  4533. name: "Small",
  4534. height: math.unit(5, "meters")
  4535. },
  4536. {
  4537. name: "Macro",
  4538. height: math.unit(900, "meters"),
  4539. default: true
  4540. },
  4541. {
  4542. name: "Megamacro",
  4543. height: math.unit(135, "km")
  4544. },
  4545. {
  4546. name: "Gigamacro",
  4547. height: math.unit(20000, "km")
  4548. }
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4553. {
  4554. side: {
  4555. height: math.unit(28.35, "feet"),
  4556. weight: math.unit(99.75, "tons"),
  4557. name: "Side",
  4558. image: {
  4559. source: "./media/characters/asana-mech/side.svg",
  4560. extra: 923 / 699,
  4561. bottom: 50 / 975
  4562. }
  4563. },
  4564. chaingun: {
  4565. height: math.unit(7, "feet"),
  4566. weight: math.unit(2400, "lb"),
  4567. name: "Chaingun",
  4568. image: {
  4569. source: "./media/characters/asana-mech/chaingun.svg"
  4570. }
  4571. },
  4572. laser: {
  4573. height: math.unit(7.12, "feet"),
  4574. weight: math.unit(2000, "lb"),
  4575. name: "Laser",
  4576. image: {
  4577. source: "./media/characters/asana-mech/laser.svg"
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(28.35, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(2500, "feet")
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(25, "miles")
  4594. },
  4595. {
  4596. name: "Examacro",
  4597. height: math.unit(6e8, "lightyears")
  4598. },
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(5, "meters"),
  4606. weight: math.unit(1000, "kg"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/asche/front.svg",
  4610. extra: 1258 / 1190,
  4611. bottom: 47 / 1305
  4612. }
  4613. },
  4614. frontUnderwear: {
  4615. height: math.unit(5, "meters"),
  4616. weight: math.unit(1000, "kg"),
  4617. name: "Front (Underwear)",
  4618. image: {
  4619. source: "./media/characters/asche/front-underwear.svg",
  4620. extra: 1258 / 1190,
  4621. bottom: 47 / 1305
  4622. }
  4623. },
  4624. frontDressed: {
  4625. height: math.unit(5, "meters"),
  4626. weight: math.unit(1000, "kg"),
  4627. name: "Front (Dressed)",
  4628. image: {
  4629. source: "./media/characters/asche/front-dressed.svg",
  4630. extra: 1258 / 1190,
  4631. bottom: 47 / 1305
  4632. }
  4633. },
  4634. frontArmor: {
  4635. height: math.unit(5, "meters"),
  4636. weight: math.unit(1000, "kg"),
  4637. name: "Front (Armored)",
  4638. image: {
  4639. source: "./media/characters/asche/front-armored.svg",
  4640. extra: 1374 / 1308,
  4641. bottom: 23 / 1397
  4642. }
  4643. },
  4644. mp724: {
  4645. height: math.unit(0.96, "meters"),
  4646. weight: math.unit(38, "kg"),
  4647. name: "H&K MP724",
  4648. image: {
  4649. source: "./media/characters/asche/h&k-mp724.svg"
  4650. }
  4651. },
  4652. side: {
  4653. height: math.unit(5, "meters"),
  4654. weight: math.unit(1000, "kg"),
  4655. name: "Side",
  4656. image: {
  4657. source: "./media/characters/asche/side.svg",
  4658. extra: 1717 / 1609,
  4659. bottom: 0.005
  4660. }
  4661. },
  4662. back: {
  4663. height: math.unit(5, "meters"),
  4664. weight: math.unit(1000, "kg"),
  4665. name: "Back",
  4666. image: {
  4667. source: "./media/characters/asche/back.svg",
  4668. extra: 1570 / 1501
  4669. }
  4670. },
  4671. },
  4672. [
  4673. {
  4674. name: "DEFCON 5",
  4675. height: math.unit(5, "meters")
  4676. },
  4677. {
  4678. name: "DEFCON 4",
  4679. height: math.unit(500, "meters"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "DEFCON 3",
  4684. height: math.unit(5, "km")
  4685. },
  4686. {
  4687. name: "DEFCON 2",
  4688. height: math.unit(500, "km")
  4689. },
  4690. {
  4691. name: "DEFCON 1",
  4692. height: math.unit(500000, "km")
  4693. },
  4694. {
  4695. name: "DEFCON 0",
  4696. height: math.unit(3, "gigaparsecs")
  4697. },
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(2, "meters"),
  4705. weight: math.unit(76, "kg"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/gale/front.svg"
  4709. }
  4710. },
  4711. frontAlt1: {
  4712. height: math.unit(2, "meters"),
  4713. weight: math.unit(76, "kg"),
  4714. name: "Front (Alt 1)",
  4715. image: {
  4716. source: "./media/characters/gale/front-alt-1.svg"
  4717. }
  4718. },
  4719. frontAlt2: {
  4720. height: math.unit(2, "meters"),
  4721. weight: math.unit(76, "kg"),
  4722. name: "Front (Alt 2)",
  4723. image: {
  4724. source: "./media/characters/gale/front-alt-2.svg"
  4725. }
  4726. },
  4727. },
  4728. [
  4729. {
  4730. name: "Normal",
  4731. height: math.unit(7, "feet")
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(150, "feet"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Macro+",
  4740. height: math.unit(300, "feet")
  4741. },
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(5 + 10/12, "feet"),
  4749. weight: math.unit(67, "kg"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/draylen/front.svg",
  4753. extra: 832/777,
  4754. bottom: 85/917
  4755. }
  4756. }
  4757. },
  4758. [
  4759. {
  4760. name: "Normal",
  4761. height: math.unit(5 + 10/12, "feet")
  4762. },
  4763. {
  4764. name: "Macro",
  4765. height: math.unit(150, "feet"),
  4766. default: true
  4767. }
  4768. ]
  4769. ))
  4770. characterMakers.push(() => makeCharacter(
  4771. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4772. {
  4773. front: {
  4774. height: math.unit(7 + 9 / 12, "feet"),
  4775. weight: math.unit(379, "lbs"),
  4776. name: "Front",
  4777. image: {
  4778. source: "./media/characters/chez/front.svg"
  4779. }
  4780. },
  4781. side: {
  4782. height: math.unit(7 + 9 / 12, "feet"),
  4783. weight: math.unit(379, "lbs"),
  4784. name: "Side",
  4785. image: {
  4786. source: "./media/characters/chez/side.svg"
  4787. }
  4788. }
  4789. },
  4790. [
  4791. {
  4792. name: "Normal",
  4793. height: math.unit(7 + 9 / 12, "feet"),
  4794. default: true
  4795. },
  4796. {
  4797. name: "God King",
  4798. height: math.unit(9750000, "meters")
  4799. }
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4804. {
  4805. front: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(275, "lbs"),
  4808. name: "Front",
  4809. image: {
  4810. source: "./media/characters/kaylum/front.svg",
  4811. bottom: 0.01,
  4812. extra: 1166 / 1031
  4813. }
  4814. },
  4815. frontWingless: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(275, "lbs"),
  4818. name: "Front (Wingless)",
  4819. image: {
  4820. source: "./media/characters/kaylum/front-wingless.svg",
  4821. bottom: 0.01,
  4822. extra: 1117 / 1031
  4823. }
  4824. }
  4825. },
  4826. [
  4827. {
  4828. name: "Normal",
  4829. height: math.unit(3.05, "meters")
  4830. },
  4831. {
  4832. name: "Master",
  4833. height: math.unit(5.5, "meters")
  4834. },
  4835. {
  4836. name: "Rampage",
  4837. height: math.unit(19, "meters")
  4838. },
  4839. {
  4840. name: "Macro Lite",
  4841. height: math.unit(37, "meters")
  4842. },
  4843. {
  4844. name: "Hyper Predator",
  4845. height: math.unit(61, "meters")
  4846. },
  4847. {
  4848. name: "Macro",
  4849. height: math.unit(138, "meters"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4856. {
  4857. front: {
  4858. height: math.unit(5 + 5 / 12, "feet"),
  4859. weight: math.unit(120, "lbs"),
  4860. name: "Front",
  4861. image: {
  4862. source: "./media/characters/geta/front.svg",
  4863. extra: 1003/933,
  4864. bottom: 21/1024
  4865. }
  4866. },
  4867. paw: {
  4868. height: math.unit(0.35, "feet"),
  4869. name: "Paw",
  4870. image: {
  4871. source: "./media/characters/geta/paw.svg"
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Micro",
  4878. height: math.unit(3, "inches"),
  4879. default: true
  4880. },
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(5 + 5 / 12, "feet")
  4884. }
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4889. {
  4890. front: {
  4891. height: math.unit(6, "feet"),
  4892. weight: math.unit(300, "lbs"),
  4893. name: "Front",
  4894. image: {
  4895. source: "./media/characters/tyrnn/front.svg"
  4896. }
  4897. }
  4898. },
  4899. [
  4900. {
  4901. name: "Main Height",
  4902. height: math.unit(355, "feet"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Fave. Height",
  4907. height: math.unit(2400, "feet")
  4908. }
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4913. {
  4914. front: {
  4915. height: math.unit(6, "feet"),
  4916. weight: math.unit(300, "lbs"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/appledectomy/front.svg"
  4920. }
  4921. }
  4922. },
  4923. [
  4924. {
  4925. name: "Macro",
  4926. height: math.unit(2500, "feet")
  4927. },
  4928. {
  4929. name: "Megamacro",
  4930. height: math.unit(50, "miles"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(5000, "miles")
  4936. },
  4937. {
  4938. name: "Teramacro",
  4939. height: math.unit(250000, "miles")
  4940. },
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(200, "lbs"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/vulpes/front.svg",
  4952. extra: 573 / 543,
  4953. bottom: 0.033
  4954. }
  4955. },
  4956. side: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(200, "lbs"),
  4959. name: "Side",
  4960. image: {
  4961. source: "./media/characters/vulpes/side.svg",
  4962. extra: 577 / 549,
  4963. bottom: 11 / 588
  4964. }
  4965. },
  4966. back: {
  4967. height: math.unit(6, "feet"),
  4968. weight: math.unit(200, "lbs"),
  4969. name: "Back",
  4970. image: {
  4971. source: "./media/characters/vulpes/back.svg",
  4972. extra: 573 / 549,
  4973. bottom: 20 / 593
  4974. }
  4975. },
  4976. feet: {
  4977. height: math.unit(1.276, "feet"),
  4978. name: "Feet",
  4979. image: {
  4980. source: "./media/characters/vulpes/feet.svg"
  4981. }
  4982. },
  4983. maw: {
  4984. height: math.unit(1.18, "feet"),
  4985. name: "Maw",
  4986. image: {
  4987. source: "./media/characters/vulpes/maw.svg"
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Micro",
  4994. height: math.unit(2, "inches")
  4995. },
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(6.3, "feet")
  4999. },
  5000. {
  5001. name: "Macro",
  5002. height: math.unit(850, "feet")
  5003. },
  5004. {
  5005. name: "Megamacro",
  5006. height: math.unit(7500, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Gigamacro",
  5011. height: math.unit(570000, "miles")
  5012. }
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5017. {
  5018. front: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(210, "lbs"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/rain-fallen/front.svg"
  5024. }
  5025. },
  5026. side: {
  5027. height: math.unit(6, "feet"),
  5028. weight: math.unit(210, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/rain-fallen/side.svg"
  5032. }
  5033. },
  5034. back: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(210, "lbs"),
  5037. name: "Back",
  5038. image: {
  5039. source: "./media/characters/rain-fallen/back.svg"
  5040. }
  5041. },
  5042. feral: {
  5043. height: math.unit(9, "feet"),
  5044. weight: math.unit(700, "lbs"),
  5045. name: "Feral",
  5046. image: {
  5047. source: "./media/characters/rain-fallen/feral.svg"
  5048. }
  5049. },
  5050. },
  5051. [
  5052. {
  5053. name: "Meddling with Mortals",
  5054. height: math.unit(8 + 8/12, "feet")
  5055. },
  5056. {
  5057. name: "Normal",
  5058. height: math.unit(5, "meter")
  5059. },
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(150, "meter"),
  5063. default: true
  5064. },
  5065. {
  5066. name: "Megamacro",
  5067. height: math.unit(278e6, "meter")
  5068. },
  5069. {
  5070. name: "Gigamacro",
  5071. height: math.unit(2e9, "meter")
  5072. },
  5073. {
  5074. name: "Teramacro",
  5075. height: math.unit(8e12, "meter")
  5076. },
  5077. {
  5078. name: "Devourer",
  5079. height: math.unit(14, "zettameters")
  5080. },
  5081. {
  5082. name: "Scarlet King",
  5083. height: math.unit(18, "yottameters")
  5084. },
  5085. {
  5086. name: "Void",
  5087. height: math.unit(1e88, "yottameters")
  5088. }
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5093. {
  5094. standing: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(180, "lbs"),
  5097. name: "Standing",
  5098. image: {
  5099. source: "./media/characters/zaakira/standing.svg",
  5100. extra: 1599/1504,
  5101. bottom: 39/1638
  5102. }
  5103. },
  5104. laying: {
  5105. height: math.unit(3, "feet"),
  5106. weight: math.unit(180, "lbs"),
  5107. name: "Laying",
  5108. image: {
  5109. source: "./media/characters/zaakira/laying.svg"
  5110. }
  5111. },
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(12, "feet")
  5117. },
  5118. {
  5119. name: "Macro",
  5120. height: math.unit(279, "feet"),
  5121. default: true
  5122. }
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5127. {
  5128. femSfw: {
  5129. height: math.unit(8, "feet"),
  5130. weight: math.unit(350, "lb"),
  5131. name: "Fem",
  5132. image: {
  5133. source: "./media/characters/sigvald/fem-sfw.svg",
  5134. extra: 182 / 164,
  5135. bottom: 8.7 / 190.5
  5136. }
  5137. },
  5138. femNsfw: {
  5139. height: math.unit(8, "feet"),
  5140. weight: math.unit(350, "lb"),
  5141. name: "Fem (NSFW)",
  5142. image: {
  5143. source: "./media/characters/sigvald/fem-nsfw.svg",
  5144. extra: 182 / 164,
  5145. bottom: 8.7 / 190.5
  5146. }
  5147. },
  5148. maleNsfw: {
  5149. height: math.unit(8, "feet"),
  5150. weight: math.unit(350, "lb"),
  5151. name: "Male (NSFW)",
  5152. image: {
  5153. source: "./media/characters/sigvald/male-nsfw.svg",
  5154. extra: 182 / 164,
  5155. bottom: 8.7 / 190.5
  5156. }
  5157. },
  5158. hermNsfw: {
  5159. height: math.unit(8, "feet"),
  5160. weight: math.unit(350, "lb"),
  5161. name: "Herm (NSFW)",
  5162. image: {
  5163. source: "./media/characters/sigvald/herm-nsfw.svg",
  5164. extra: 182 / 164,
  5165. bottom: 8.7 / 190.5
  5166. }
  5167. },
  5168. dick: {
  5169. height: math.unit(2.36, "feet"),
  5170. name: "Dick",
  5171. image: {
  5172. source: "./media/characters/sigvald/dick.svg"
  5173. }
  5174. },
  5175. eye: {
  5176. height: math.unit(0.31, "feet"),
  5177. name: "Eye",
  5178. image: {
  5179. source: "./media/characters/sigvald/eye.svg"
  5180. }
  5181. },
  5182. mouth: {
  5183. height: math.unit(0.92, "feet"),
  5184. name: "Mouth",
  5185. image: {
  5186. source: "./media/characters/sigvald/mouth.svg"
  5187. }
  5188. },
  5189. paws: {
  5190. height: math.unit(2.2, "feet"),
  5191. name: "Paws",
  5192. image: {
  5193. source: "./media/characters/sigvald/paws.svg"
  5194. }
  5195. }
  5196. },
  5197. [
  5198. {
  5199. name: "Normal",
  5200. height: math.unit(8, "feet")
  5201. },
  5202. {
  5203. name: "Large",
  5204. height: math.unit(12, "feet")
  5205. },
  5206. {
  5207. name: "Larger",
  5208. height: math.unit(20, "feet")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(150, "feet")
  5213. },
  5214. {
  5215. name: "Macro+",
  5216. height: math.unit(200, "feet"),
  5217. default: true
  5218. },
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5223. {
  5224. side: {
  5225. height: math.unit(12, "feet"),
  5226. weight: math.unit(2000, "kg"),
  5227. name: "Side",
  5228. image: {
  5229. source: "./media/characters/scott/side.svg",
  5230. extra: 754 / 724,
  5231. bottom: 0.069
  5232. }
  5233. },
  5234. upright: {
  5235. height: math.unit(12, "feet"),
  5236. weight: math.unit(2000, "kg"),
  5237. name: "Upright",
  5238. image: {
  5239. source: "./media/characters/scott/upright.svg",
  5240. extra: 3881 / 3722,
  5241. bottom: 0.05
  5242. }
  5243. },
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(12, "feet"),
  5249. default: true
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5255. {
  5256. side: {
  5257. height: math.unit(8, "meters"),
  5258. weight: math.unit(84755, "lbs"),
  5259. name: "Side",
  5260. image: {
  5261. source: "./media/characters/tobias/side.svg",
  5262. extra: 1474 / 1096,
  5263. bottom: 38.9 / 1513.1235
  5264. }
  5265. },
  5266. },
  5267. [
  5268. {
  5269. name: "Normal",
  5270. height: math.unit(8, "meters"),
  5271. default: true
  5272. },
  5273. ]
  5274. ))
  5275. characterMakers.push(() => makeCharacter(
  5276. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5277. {
  5278. front: {
  5279. height: math.unit(5.5, "feet"),
  5280. weight: math.unit(400, "lbs"),
  5281. name: "Front",
  5282. image: {
  5283. source: "./media/characters/kieran/front.svg",
  5284. extra: 2694 / 2364,
  5285. bottom: 217 / 2908
  5286. }
  5287. },
  5288. side: {
  5289. height: math.unit(5.5, "feet"),
  5290. weight: math.unit(400, "lbs"),
  5291. name: "Side",
  5292. image: {
  5293. source: "./media/characters/kieran/side.svg",
  5294. extra: 875 / 777,
  5295. bottom: 84.6 / 959
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Normal",
  5302. height: math.unit(5.5, "feet"),
  5303. default: true
  5304. },
  5305. ]
  5306. ))
  5307. characterMakers.push(() => makeCharacter(
  5308. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5309. {
  5310. side: {
  5311. height: math.unit(2, "meters"),
  5312. weight: math.unit(70, "kg"),
  5313. name: "Side",
  5314. image: {
  5315. source: "./media/characters/sanya/side.svg",
  5316. bottom: 0.02,
  5317. extra: 1.02
  5318. }
  5319. },
  5320. },
  5321. [
  5322. {
  5323. name: "Small",
  5324. height: math.unit(2, "meters")
  5325. },
  5326. {
  5327. name: "Normal",
  5328. height: math.unit(3, "meters")
  5329. },
  5330. {
  5331. name: "Macro",
  5332. height: math.unit(16, "meters"),
  5333. default: true
  5334. },
  5335. ]
  5336. ))
  5337. characterMakers.push(() => makeCharacter(
  5338. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5339. {
  5340. front: {
  5341. height: math.unit(2, "meters"),
  5342. weight: math.unit(120, "kg"),
  5343. name: "Front",
  5344. image: {
  5345. source: "./media/characters/miranda/front.svg",
  5346. extra: 195 / 185,
  5347. bottom: 10.9 / 206.5
  5348. }
  5349. },
  5350. back: {
  5351. height: math.unit(2, "meters"),
  5352. weight: math.unit(120, "kg"),
  5353. name: "Back",
  5354. image: {
  5355. source: "./media/characters/miranda/back.svg",
  5356. extra: 201 / 193,
  5357. bottom: 2.3 / 203.7
  5358. }
  5359. },
  5360. },
  5361. [
  5362. {
  5363. name: "Normal",
  5364. height: math.unit(10, "feet"),
  5365. default: true
  5366. }
  5367. ]
  5368. ))
  5369. characterMakers.push(() => makeCharacter(
  5370. { name: "James", species: ["deer"], tags: ["anthro"] },
  5371. {
  5372. side: {
  5373. height: math.unit(2, "meters"),
  5374. weight: math.unit(100, "kg"),
  5375. name: "Front",
  5376. image: {
  5377. source: "./media/characters/james/front.svg",
  5378. extra: 10 / 8.5
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(8.5, "feet"),
  5386. default: true
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5392. {
  5393. side: {
  5394. height: math.unit(9.5, "feet"),
  5395. weight: math.unit(2500, "lbs"),
  5396. name: "Side",
  5397. image: {
  5398. source: "./media/characters/heather/side.svg"
  5399. }
  5400. },
  5401. },
  5402. [
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(9.5, "feet"),
  5406. default: true
  5407. }
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5412. {
  5413. side: {
  5414. height: math.unit(6.5, "feet"),
  5415. weight: math.unit(400, "lbs"),
  5416. name: "Side",
  5417. image: {
  5418. source: "./media/characters/lukas/side.svg",
  5419. extra: 7.25 / 6.5
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(6.5, "feet"),
  5427. default: true
  5428. }
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5433. {
  5434. side: {
  5435. height: math.unit(5, "feet"),
  5436. weight: math.unit(3000, "lbs"),
  5437. name: "Side",
  5438. image: {
  5439. source: "./media/characters/louise/side.svg"
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(5, "feet"),
  5447. default: true
  5448. }
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5453. {
  5454. side: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(150, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/ramona/side.svg",
  5460. extra: 871/854,
  5461. bottom: 41/912
  5462. }
  5463. },
  5464. },
  5465. [
  5466. {
  5467. name: "Normal",
  5468. height: math.unit(5.3, "meters"),
  5469. default: true
  5470. },
  5471. {
  5472. name: "Macro",
  5473. height: math.unit(20, "stories")
  5474. },
  5475. {
  5476. name: "Macro+",
  5477. height: math.unit(50, "stories")
  5478. },
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5483. {
  5484. standing: {
  5485. height: math.unit(5.75, "feet"),
  5486. weight: math.unit(160, "lbs"),
  5487. name: "Standing",
  5488. image: {
  5489. source: "./media/characters/deerpuff/standing.svg",
  5490. extra: 682 / 624
  5491. }
  5492. },
  5493. sitting: {
  5494. height: math.unit(5.75 / 1.79, "feet"),
  5495. weight: math.unit(160, "lbs"),
  5496. name: "Sitting",
  5497. image: {
  5498. source: "./media/characters/deerpuff/sitting.svg",
  5499. bottom: 44 / 400,
  5500. extra: 1
  5501. }
  5502. },
  5503. taurLaying: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(400, "lbs"),
  5506. name: "Taur (Laying)",
  5507. image: {
  5508. source: "./media/characters/deerpuff/taur-laying.svg"
  5509. }
  5510. },
  5511. },
  5512. [
  5513. {
  5514. name: "Puffball",
  5515. height: math.unit(6, "inches")
  5516. },
  5517. {
  5518. name: "Normalpuff",
  5519. height: math.unit(5.75, "feet")
  5520. },
  5521. {
  5522. name: "Macropuff",
  5523. height: math.unit(1500, "feet"),
  5524. default: true
  5525. },
  5526. {
  5527. name: "Megapuff",
  5528. height: math.unit(500, "miles")
  5529. },
  5530. {
  5531. name: "Gigapuff",
  5532. height: math.unit(250000, "miles")
  5533. },
  5534. {
  5535. name: "Omegapuff",
  5536. height: math.unit(1000, "lightyears")
  5537. },
  5538. ]
  5539. ))
  5540. characterMakers.push(() => makeCharacter(
  5541. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5542. {
  5543. stomping: {
  5544. height: math.unit(6, "feet"),
  5545. weight: math.unit(170, "lbs"),
  5546. name: "Stomping",
  5547. image: {
  5548. source: "./media/characters/vivian/stomping.svg"
  5549. }
  5550. },
  5551. sitting: {
  5552. height: math.unit(6 / 1.75, "feet"),
  5553. weight: math.unit(170, "lbs"),
  5554. name: "Sitting",
  5555. image: {
  5556. source: "./media/characters/vivian/sitting.svg",
  5557. bottom: 1 / 6.4,
  5558. extra: 1,
  5559. }
  5560. },
  5561. },
  5562. [
  5563. {
  5564. name: "Normal",
  5565. height: math.unit(7, "feet"),
  5566. default: true
  5567. },
  5568. {
  5569. name: "Macro",
  5570. height: math.unit(10, "stories")
  5571. },
  5572. {
  5573. name: "Macro+",
  5574. height: math.unit(30, "stories")
  5575. },
  5576. {
  5577. name: "Megamacro",
  5578. height: math.unit(10, "miles")
  5579. },
  5580. {
  5581. name: "Megamacro+",
  5582. height: math.unit(2750000, "meters")
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5588. {
  5589. front: {
  5590. height: math.unit(6, "feet"),
  5591. weight: math.unit(160, "lbs"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/prince/front.svg",
  5595. extra: 3400 / 3000
  5596. }
  5597. },
  5598. jumping: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(160, "lbs"),
  5601. name: "Jumping",
  5602. image: {
  5603. source: "./media/characters/prince/jump.svg",
  5604. extra: 2555 / 2134
  5605. }
  5606. },
  5607. },
  5608. [
  5609. {
  5610. name: "Normal",
  5611. height: math.unit(7.75, "feet"),
  5612. default: true
  5613. },
  5614. {
  5615. name: "Not cute",
  5616. height: math.unit(17, "feet")
  5617. },
  5618. {
  5619. name: "I said NOT",
  5620. height: math.unit(91, "feet")
  5621. },
  5622. {
  5623. name: "Please stop",
  5624. height: math.unit(560, "feet")
  5625. },
  5626. {
  5627. name: "What have you done",
  5628. height: math.unit(2200, "feet")
  5629. },
  5630. {
  5631. name: "Deer God",
  5632. height: math.unit(3.6, "miles")
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5638. {
  5639. standing: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(300, "lbs"),
  5642. name: "Standing",
  5643. image: {
  5644. source: "./media/characters/psymon/standing.svg",
  5645. extra: 1888 / 1810,
  5646. bottom: 0.05
  5647. }
  5648. },
  5649. slithering: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(300, "lbs"),
  5652. name: "Slithering",
  5653. image: {
  5654. source: "./media/characters/psymon/slithering.svg",
  5655. extra: 1330 / 1224
  5656. }
  5657. },
  5658. slitheringAlt: {
  5659. height: math.unit(6, "feet"),
  5660. weight: math.unit(300, "lbs"),
  5661. name: "Slithering (Alt)",
  5662. image: {
  5663. source: "./media/characters/psymon/slithering-alt.svg",
  5664. extra: 1330 / 1224
  5665. }
  5666. },
  5667. },
  5668. [
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(11.25, "feet"),
  5672. default: true
  5673. },
  5674. {
  5675. name: "Large",
  5676. height: math.unit(27, "feet")
  5677. },
  5678. {
  5679. name: "Giant",
  5680. height: math.unit(87, "feet")
  5681. },
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(365, "feet")
  5685. },
  5686. {
  5687. name: "Megamacro",
  5688. height: math.unit(3, "miles")
  5689. },
  5690. {
  5691. name: "World Serpent",
  5692. height: math.unit(8000, "miles")
  5693. },
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(6, "feet"),
  5701. weight: math.unit(180, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/daimos/front.svg",
  5705. extra: 4160 / 3897,
  5706. bottom: 0.021
  5707. }
  5708. }
  5709. },
  5710. [
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(8, "feet"),
  5714. default: true
  5715. },
  5716. {
  5717. name: "Big Dog",
  5718. height: math.unit(22, "feet")
  5719. },
  5720. {
  5721. name: "Macro",
  5722. height: math.unit(127, "feet")
  5723. },
  5724. {
  5725. name: "Megamacro",
  5726. height: math.unit(3600, "feet")
  5727. },
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5732. {
  5733. side: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(180, "lbs"),
  5736. name: "Side",
  5737. image: {
  5738. source: "./media/characters/blake/side.svg",
  5739. extra: 1212 / 1120,
  5740. bottom: 0.05
  5741. }
  5742. },
  5743. crouched: {
  5744. height: math.unit(6 * 0.57, "feet"),
  5745. weight: math.unit(180, "lbs"),
  5746. name: "Crouched",
  5747. image: {
  5748. source: "./media/characters/blake/crouched.svg",
  5749. extra: 840 / 587,
  5750. bottom: 0.04
  5751. }
  5752. },
  5753. bent: {
  5754. height: math.unit(6 * 0.75, "feet"),
  5755. weight: math.unit(180, "lbs"),
  5756. name: "Bent",
  5757. image: {
  5758. source: "./media/characters/blake/bent.svg",
  5759. extra: 592 / 544,
  5760. bottom: 0.035
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(8 + 1 / 6, "feet"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Big Backside",
  5772. height: math.unit(37, "feet")
  5773. },
  5774. {
  5775. name: "Subway Shredder",
  5776. height: math.unit(72, "feet")
  5777. },
  5778. {
  5779. name: "City Carver",
  5780. height: math.unit(1675, "feet")
  5781. },
  5782. {
  5783. name: "Tectonic Tweaker",
  5784. height: math.unit(2300, "miles")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5790. {
  5791. front: {
  5792. height: math.unit(6, "feet"),
  5793. weight: math.unit(180, "lbs"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/guisetto/front.svg",
  5797. extra: 856 / 817,
  5798. bottom: 0.06
  5799. }
  5800. },
  5801. airborne: {
  5802. height: math.unit(6, "feet"),
  5803. weight: math.unit(180, "lbs"),
  5804. name: "Airborne",
  5805. image: {
  5806. source: "./media/characters/guisetto/airborne.svg",
  5807. extra: 584 / 525
  5808. }
  5809. },
  5810. },
  5811. [
  5812. {
  5813. name: "Normal",
  5814. height: math.unit(10 + 11 / 12, "feet"),
  5815. default: true
  5816. },
  5817. {
  5818. name: "Large",
  5819. height: math.unit(35, "feet")
  5820. },
  5821. {
  5822. name: "Macro",
  5823. height: math.unit(475, "feet")
  5824. },
  5825. ]
  5826. ))
  5827. characterMakers.push(() => makeCharacter(
  5828. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5829. {
  5830. front: {
  5831. height: math.unit(6, "feet"),
  5832. weight: math.unit(180, "lbs"),
  5833. name: "Front",
  5834. image: {
  5835. source: "./media/characters/luxor/front.svg",
  5836. extra: 2940 / 2152
  5837. }
  5838. },
  5839. back: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(180, "lbs"),
  5842. name: "Back",
  5843. image: {
  5844. source: "./media/characters/luxor/back.svg",
  5845. extra: 1083 / 960
  5846. }
  5847. },
  5848. },
  5849. [
  5850. {
  5851. name: "Normal",
  5852. height: math.unit(5 + 5 / 6, "feet"),
  5853. default: true
  5854. },
  5855. {
  5856. name: "Lamp",
  5857. height: math.unit(50, "feet")
  5858. },
  5859. {
  5860. name: "Lämp",
  5861. height: math.unit(300, "feet")
  5862. },
  5863. {
  5864. name: "The sun is a lamp",
  5865. height: math.unit(250000, "miles")
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5871. {
  5872. front: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(50, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/huoyan/front.svg"
  5878. }
  5879. },
  5880. side: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(180, "lbs"),
  5883. name: "Side",
  5884. image: {
  5885. source: "./media/characters/huoyan/side.svg"
  5886. }
  5887. },
  5888. },
  5889. [
  5890. {
  5891. name: "Chef",
  5892. height: math.unit(9, "feet")
  5893. },
  5894. {
  5895. name: "Normal",
  5896. height: math.unit(65, "feet"),
  5897. default: true
  5898. },
  5899. {
  5900. name: "Macro",
  5901. height: math.unit(780, "feet")
  5902. },
  5903. {
  5904. name: "Flaming Mountain",
  5905. height: math.unit(4.8, "miles")
  5906. },
  5907. {
  5908. name: "Celestial",
  5909. height: math.unit(765000, "miles")
  5910. },
  5911. ]
  5912. ))
  5913. characterMakers.push(() => makeCharacter(
  5914. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5915. {
  5916. front: {
  5917. height: math.unit(5 + 3 / 4, "feet"),
  5918. weight: math.unit(120, "lbs"),
  5919. name: "Front",
  5920. image: {
  5921. source: "./media/characters/tails/front.svg"
  5922. }
  5923. }
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(5 + 3 / 4, "feet"),
  5929. default: true
  5930. }
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5935. {
  5936. front: {
  5937. height: math.unit(4, "feet"),
  5938. weight: math.unit(50, "lbs"),
  5939. name: "Front",
  5940. image: {
  5941. source: "./media/characters/rainy/front.svg"
  5942. }
  5943. }
  5944. },
  5945. [
  5946. {
  5947. name: "Macro",
  5948. height: math.unit(800, "feet"),
  5949. default: true
  5950. }
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5955. {
  5956. front: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(150, "lbs"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/rainier/front.svg"
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Micro",
  5968. height: math.unit(2, "mm"),
  5969. default: true
  5970. }
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5975. {
  5976. front: {
  5977. height: math.unit(8 + 4/12, "feet"),
  5978. weight: math.unit(450, "kilograms"),
  5979. volume: math.unit(5, "cups"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/andy-renard/front.svg",
  5983. extra: 1839/1726,
  5984. bottom: 134/1973
  5985. }
  5986. },
  5987. back: {
  5988. height: math.unit(8 + 4/12, "feet"),
  5989. weight: math.unit(450, "kilograms"),
  5990. volume: math.unit(5, "cups"),
  5991. name: "Back",
  5992. image: {
  5993. source: "./media/characters/andy-renard/back.svg",
  5994. extra: 1838/1710,
  5995. bottom: 105/1943
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Tall",
  6002. height: math.unit(8 + 4/12, "feet")
  6003. },
  6004. {
  6005. name: "Mini Macro",
  6006. height: math.unit(15, "feet"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(100, "feet")
  6012. },
  6013. {
  6014. name: "Mega Macro",
  6015. height: math.unit(1000, "feet")
  6016. },
  6017. {
  6018. name: "Giga Macro",
  6019. height: math.unit(10, "miles")
  6020. },
  6021. {
  6022. name: "God Macro",
  6023. height: math.unit(1, "multiverse")
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(6, "feet"),
  6032. weight: math.unit(210, "lbs"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/cimmaron/front-sfw.svg",
  6036. extra: 701 / 676,
  6037. bottom: 0.046
  6038. }
  6039. },
  6040. back: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(210, "lbs"),
  6043. name: "Back",
  6044. image: {
  6045. source: "./media/characters/cimmaron/back-sfw.svg",
  6046. extra: 701 / 676,
  6047. bottom: 0.046
  6048. }
  6049. },
  6050. frontNsfw: {
  6051. height: math.unit(6, "feet"),
  6052. weight: math.unit(210, "lbs"),
  6053. name: "Front (NSFW)",
  6054. image: {
  6055. source: "./media/characters/cimmaron/front-nsfw.svg",
  6056. extra: 701 / 676,
  6057. bottom: 0.046
  6058. }
  6059. },
  6060. backNsfw: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(210, "lbs"),
  6063. name: "Back (NSFW)",
  6064. image: {
  6065. source: "./media/characters/cimmaron/back-nsfw.svg",
  6066. extra: 701 / 676,
  6067. bottom: 0.046
  6068. }
  6069. },
  6070. dick: {
  6071. height: math.unit(1.714, "feet"),
  6072. name: "Dick",
  6073. image: {
  6074. source: "./media/characters/cimmaron/dick.svg"
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(6, "feet"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Macro Mayor",
  6086. height: math.unit(350, "meters")
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(200, "lbs"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/akari/front.svg",
  6099. extra: 962 / 901,
  6100. bottom: 0.04
  6101. }
  6102. }
  6103. },
  6104. [
  6105. {
  6106. name: "Micro",
  6107. height: math.unit(5, "inches"),
  6108. default: true
  6109. },
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(7, "feet")
  6113. },
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6118. {
  6119. front: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(140, "lbs"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/cynosura/front.svg",
  6125. extra: 896 / 847
  6126. }
  6127. },
  6128. back: {
  6129. height: math.unit(6, "feet"),
  6130. weight: math.unit(140, "lbs"),
  6131. name: "Back",
  6132. image: {
  6133. source: "./media/characters/cynosura/back.svg",
  6134. extra: 1365 / 1250
  6135. }
  6136. },
  6137. },
  6138. [
  6139. {
  6140. name: "Micro",
  6141. height: math.unit(4, "inches")
  6142. },
  6143. {
  6144. name: "Normal",
  6145. height: math.unit(5.75, "feet"),
  6146. default: true
  6147. },
  6148. {
  6149. name: "Tall",
  6150. height: math.unit(10, "feet")
  6151. },
  6152. {
  6153. name: "Big",
  6154. height: math.unit(20, "feet")
  6155. },
  6156. {
  6157. name: "Macro",
  6158. height: math.unit(50, "feet")
  6159. },
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6164. {
  6165. front: {
  6166. height: math.unit(13 + 2/12, "feet"),
  6167. weight: math.unit(800, "kg"),
  6168. name: "Front",
  6169. image: {
  6170. source: "./media/characters/gin/front.svg",
  6171. extra: 1312/1191,
  6172. bottom: 45/1357
  6173. }
  6174. },
  6175. mouth: {
  6176. height: math.unit(2.39 * 1.8, "feet"),
  6177. name: "Mouth",
  6178. image: {
  6179. source: "./media/characters/gin/mouth.svg"
  6180. }
  6181. },
  6182. hand: {
  6183. height: math.unit(1.57 * 2.19, "feet"),
  6184. name: "Hand",
  6185. image: {
  6186. source: "./media/characters/gin/hand.svg"
  6187. }
  6188. },
  6189. foot: {
  6190. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6191. name: "Foot",
  6192. image: {
  6193. source: "./media/characters/gin/foot.svg"
  6194. }
  6195. },
  6196. sole: {
  6197. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6198. name: "Sole",
  6199. image: {
  6200. source: "./media/characters/gin/sole.svg"
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Very Small",
  6207. height: math.unit(13 + 2 / 12, "feet")
  6208. },
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(600, "miles")
  6212. },
  6213. {
  6214. name: "Regular",
  6215. height: math.unit(20, "earths"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Macro",
  6220. height: math.unit(2.2, "solarradii")
  6221. },
  6222. {
  6223. name: "Teramacro",
  6224. height: math.unit(1.2, "galaxies")
  6225. },
  6226. {
  6227. name: "Omegamacro",
  6228. height: math.unit(200, "universes")
  6229. },
  6230. ]
  6231. ))
  6232. characterMakers.push(() => makeCharacter(
  6233. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6234. {
  6235. front: {
  6236. height: math.unit(6 + 1 / 6, "feet"),
  6237. weight: math.unit(178, "lbs"),
  6238. name: "Front",
  6239. image: {
  6240. source: "./media/characters/guy/front.svg"
  6241. }
  6242. }
  6243. },
  6244. [
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(6 + 1 / 6, "feet"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "Large",
  6252. height: math.unit(25 + 7 / 12, "feet")
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(60 + 9 / 12, "feet")
  6257. },
  6258. {
  6259. name: "Macro+",
  6260. height: math.unit(246, "feet")
  6261. },
  6262. {
  6263. name: "Macro++",
  6264. height: math.unit(878, "feet")
  6265. }
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(9, "feet"),
  6273. weight: math.unit(800, "lbs"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/tiberius/front.svg",
  6277. extra: 2295 / 2071
  6278. }
  6279. },
  6280. back: {
  6281. height: math.unit(9, "feet"),
  6282. weight: math.unit(800, "lbs"),
  6283. name: "Back",
  6284. image: {
  6285. source: "./media/characters/tiberius/back.svg",
  6286. extra: 2373 / 2160
  6287. }
  6288. },
  6289. },
  6290. [
  6291. {
  6292. name: "Normal",
  6293. height: math.unit(9, "feet"),
  6294. default: true
  6295. }
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6300. {
  6301. front: {
  6302. height: math.unit(6, "feet"),
  6303. weight: math.unit(600, "lbs"),
  6304. name: "Front",
  6305. image: {
  6306. source: "./media/characters/surgo/front.svg",
  6307. extra: 3591 / 2227
  6308. }
  6309. },
  6310. back: {
  6311. height: math.unit(6, "feet"),
  6312. weight: math.unit(600, "lbs"),
  6313. name: "Back",
  6314. image: {
  6315. source: "./media/characters/surgo/back.svg",
  6316. extra: 3557 / 2228
  6317. }
  6318. },
  6319. laying: {
  6320. height: math.unit(6 * 0.85, "feet"),
  6321. weight: math.unit(600, "lbs"),
  6322. name: "Laying",
  6323. image: {
  6324. source: "./media/characters/surgo/laying.svg"
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(6, "feet"),
  6332. default: true
  6333. }
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6338. {
  6339. side: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(150, "lbs"),
  6342. name: "Side",
  6343. image: {
  6344. source: "./media/characters/cibus/side.svg",
  6345. extra: 800 / 400
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(6, "feet"),
  6353. default: true
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(240, "lbs"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/nibbles/front.svg"
  6366. }
  6367. },
  6368. side: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(240, "lbs"),
  6371. name: "Side",
  6372. image: {
  6373. source: "./media/characters/nibbles/side.svg"
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(9, "feet"),
  6381. default: true
  6382. }
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6387. {
  6388. side: {
  6389. height: math.unit(5 + 1 / 6, "feet"),
  6390. weight: math.unit(130, "lbs"),
  6391. name: "Side",
  6392. image: {
  6393. source: "./media/characters/rikky/side.svg",
  6394. extra: 851 / 801
  6395. }
  6396. },
  6397. },
  6398. [
  6399. {
  6400. name: "Normal",
  6401. height: math.unit(5 + 1 / 6, "feet")
  6402. },
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(152, "feet"),
  6406. default: true
  6407. },
  6408. {
  6409. name: "Megamacro",
  6410. height: math.unit(7, "miles")
  6411. }
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6416. {
  6417. side: {
  6418. height: math.unit(370, "cm"),
  6419. weight: math.unit(350, "lbs"),
  6420. name: "Side",
  6421. image: {
  6422. source: "./media/characters/malfressa/side.svg"
  6423. }
  6424. },
  6425. walking: {
  6426. height: math.unit(370, "cm"),
  6427. weight: math.unit(350, "lbs"),
  6428. name: "Walking",
  6429. image: {
  6430. source: "./media/characters/malfressa/walking.svg"
  6431. }
  6432. },
  6433. feral: {
  6434. height: math.unit(2500, "cm"),
  6435. weight: math.unit(100000, "lbs"),
  6436. name: "Feral",
  6437. image: {
  6438. source: "./media/characters/malfressa/feral.svg",
  6439. extra: 2108 / 837,
  6440. bottom: 0.02
  6441. }
  6442. },
  6443. },
  6444. [
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(370, "cm")
  6448. },
  6449. {
  6450. name: "Macro",
  6451. height: math.unit(300, "meters"),
  6452. default: true
  6453. }
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(60, "kg"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/jaro/front.svg",
  6465. extra: 845/817,
  6466. bottom: 45/890
  6467. }
  6468. },
  6469. back: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(60, "kg"),
  6472. name: "Back",
  6473. image: {
  6474. source: "./media/characters/jaro/back.svg",
  6475. extra: 847/817,
  6476. bottom: 34/881
  6477. }
  6478. },
  6479. },
  6480. [
  6481. {
  6482. name: "Micro",
  6483. height: math.unit(7, "inches")
  6484. },
  6485. {
  6486. name: "Normal",
  6487. height: math.unit(5.5, "feet"),
  6488. default: true
  6489. },
  6490. {
  6491. name: "Minimacro",
  6492. height: math.unit(20, "feet")
  6493. },
  6494. {
  6495. name: "Macro",
  6496. height: math.unit(200, "meters")
  6497. }
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(195, "lb"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/rogue/front.svg"
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Macro",
  6515. height: math.unit(90, "feet"),
  6516. default: true
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6522. {
  6523. standing: {
  6524. height: math.unit(5 + 8 / 12, "feet"),
  6525. weight: math.unit(140, "lb"),
  6526. name: "Standing",
  6527. image: {
  6528. source: "./media/characters/piper/standing.svg",
  6529. extra: 1440/1284,
  6530. bottom: 66/1506
  6531. }
  6532. },
  6533. running: {
  6534. height: math.unit(5 + 8 / 12, "feet"),
  6535. weight: math.unit(140, "lb"),
  6536. name: "Running",
  6537. image: {
  6538. source: "./media/characters/piper/running.svg",
  6539. extra: 3948/3655,
  6540. bottom: 0/3948
  6541. }
  6542. },
  6543. sole: {
  6544. height: math.unit(0.81, "feet"),
  6545. weight: math.unit(2, "kg"),
  6546. name: "Sole",
  6547. image: {
  6548. source: "./media/characters/piper/sole.svg"
  6549. }
  6550. },
  6551. nipple: {
  6552. height: math.unit(0.25, "feet"),
  6553. weight: math.unit(1.5, "lb"),
  6554. name: "Nipple",
  6555. image: {
  6556. source: "./media/characters/piper/nipple.svg"
  6557. }
  6558. },
  6559. head: {
  6560. height: math.unit(1.1, "feet"),
  6561. name: "Head",
  6562. image: {
  6563. source: "./media/characters/piper/head.svg"
  6564. }
  6565. },
  6566. },
  6567. [
  6568. {
  6569. name: "Micro",
  6570. height: math.unit(2, "inches")
  6571. },
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(5 + 8 / 12, "feet")
  6575. },
  6576. {
  6577. name: "Macro",
  6578. height: math.unit(250, "feet"),
  6579. default: true
  6580. },
  6581. {
  6582. name: "Megamacro",
  6583. height: math.unit(7, "miles")
  6584. },
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6589. {
  6590. front: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(220, "lb"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/gemini/front.svg"
  6596. }
  6597. },
  6598. back: {
  6599. height: math.unit(6, "feet"),
  6600. weight: math.unit(220, "lb"),
  6601. name: "Back",
  6602. image: {
  6603. source: "./media/characters/gemini/back.svg"
  6604. }
  6605. },
  6606. kneeling: {
  6607. height: math.unit(6 / 1.5, "feet"),
  6608. weight: math.unit(220, "lb"),
  6609. name: "Kneeling",
  6610. image: {
  6611. source: "./media/characters/gemini/kneeling.svg",
  6612. bottom: 0.02
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(300, "meters"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Megamacro",
  6624. height: math.unit(6900, "meters")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6630. {
  6631. anthro: {
  6632. height: math.unit(2.35, "meters"),
  6633. weight: math.unit(73, "kg"),
  6634. name: "Anthro",
  6635. image: {
  6636. source: "./media/characters/alicia/anthro.svg",
  6637. extra: 2571 / 2385,
  6638. bottom: 75 / 2648
  6639. }
  6640. },
  6641. paw: {
  6642. height: math.unit(1.32, "feet"),
  6643. name: "Paw",
  6644. image: {
  6645. source: "./media/characters/alicia/paw.svg"
  6646. }
  6647. },
  6648. feral: {
  6649. height: math.unit(1.69, "meters"),
  6650. weight: math.unit(73, "kg"),
  6651. name: "Feral",
  6652. image: {
  6653. source: "./media/characters/alicia/feral.svg",
  6654. extra: 2123 / 1715,
  6655. bottom: 222 / 2349
  6656. }
  6657. },
  6658. },
  6659. [
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(2.35, "meters")
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(60, "meters"),
  6667. default: true
  6668. },
  6669. {
  6670. name: "Megamacro",
  6671. height: math.unit(10000, "kilometers")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(7, "feet"),
  6680. weight: math.unit(250, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/archy/front.svg"
  6684. }
  6685. }
  6686. },
  6687. [
  6688. {
  6689. name: "Micro",
  6690. height: math.unit(1, "inch")
  6691. },
  6692. {
  6693. name: "Shorty",
  6694. height: math.unit(5, "feet")
  6695. },
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(7, "feet")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(600, "meters"),
  6703. default: true
  6704. },
  6705. {
  6706. name: "Megamacro",
  6707. height: math.unit(1, "mile")
  6708. },
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6713. {
  6714. front: {
  6715. height: math.unit(1.65, "meters"),
  6716. weight: math.unit(74, "kg"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/berri/front.svg",
  6720. extra: 857 / 837,
  6721. bottom: 18 / 877
  6722. }
  6723. },
  6724. bum: {
  6725. height: math.unit(1.46, "feet"),
  6726. name: "Bum",
  6727. image: {
  6728. source: "./media/characters/berri/bum.svg"
  6729. }
  6730. },
  6731. mouth: {
  6732. height: math.unit(0.44, "feet"),
  6733. name: "Mouth",
  6734. image: {
  6735. source: "./media/characters/berri/mouth.svg"
  6736. }
  6737. },
  6738. paw: {
  6739. height: math.unit(0.826, "feet"),
  6740. name: "Paw",
  6741. image: {
  6742. source: "./media/characters/berri/paw.svg"
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(1.65, "meters")
  6750. },
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(60, "m"),
  6754. default: true
  6755. },
  6756. {
  6757. name: "Megamacro",
  6758. height: math.unit(9.213, "km")
  6759. },
  6760. {
  6761. name: "Planet Eater",
  6762. height: math.unit(489, "megameters")
  6763. },
  6764. {
  6765. name: "Teramacro",
  6766. height: math.unit(2471635000000, "meters")
  6767. },
  6768. {
  6769. name: "Examacro",
  6770. height: math.unit(8.0624e+26, "meters")
  6771. }
  6772. ]
  6773. ))
  6774. characterMakers.push(() => makeCharacter(
  6775. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6776. {
  6777. front: {
  6778. height: math.unit(1.72, "meters"),
  6779. weight: math.unit(68, "kg"),
  6780. name: "Front",
  6781. image: {
  6782. source: "./media/characters/lexi/front.svg"
  6783. }
  6784. }
  6785. },
  6786. [
  6787. {
  6788. name: "Very Smol",
  6789. height: math.unit(10, "mm")
  6790. },
  6791. {
  6792. name: "Micro",
  6793. height: math.unit(6.8, "cm"),
  6794. default: true
  6795. },
  6796. {
  6797. name: "Normal",
  6798. height: math.unit(1.72, "m")
  6799. }
  6800. ]
  6801. ))
  6802. characterMakers.push(() => makeCharacter(
  6803. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6804. {
  6805. front: {
  6806. height: math.unit(1.69, "meters"),
  6807. weight: math.unit(68, "kg"),
  6808. name: "Front",
  6809. image: {
  6810. source: "./media/characters/martin/front.svg",
  6811. extra: 596 / 581
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Micro",
  6818. height: math.unit(6.85, "cm"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(1.69, "m")
  6824. }
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(1.69, "meters"),
  6832. weight: math.unit(68, "kg"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/juno/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Micro",
  6842. height: math.unit(7, "cm")
  6843. },
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(1.89, "m")
  6847. },
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(353, "meters"),
  6851. default: true
  6852. }
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(1.93, "meters"),
  6860. weight: math.unit(83, "kg"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/samantha/front.svg"
  6864. }
  6865. },
  6866. frontClothed: {
  6867. height: math.unit(1.93, "meters"),
  6868. weight: math.unit(83, "kg"),
  6869. name: "Front (Clothed)",
  6870. image: {
  6871. source: "./media/characters/samantha/front-clothed.svg"
  6872. }
  6873. },
  6874. back: {
  6875. height: math.unit(1.93, "meters"),
  6876. weight: math.unit(83, "kg"),
  6877. name: "Back",
  6878. image: {
  6879. source: "./media/characters/samantha/back.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Normal",
  6886. height: math.unit(1.93, "m")
  6887. },
  6888. {
  6889. name: "Macro",
  6890. height: math.unit(74, "meters"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Macro+",
  6895. height: math.unit(223, "meters"),
  6896. },
  6897. {
  6898. name: "Megamacro",
  6899. height: math.unit(8381, "meters"),
  6900. },
  6901. {
  6902. name: "Megamacro+",
  6903. height: math.unit(12000, "kilometers")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(1.92, "meters"),
  6912. weight: math.unit(80, "kg"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/dr-clay/front.svg"
  6916. }
  6917. },
  6918. frontClothed: {
  6919. height: math.unit(1.92, "meters"),
  6920. weight: math.unit(80, "kg"),
  6921. name: "Front (Clothed)",
  6922. image: {
  6923. source: "./media/characters/dr-clay/front-clothed.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(1.92, "m")
  6931. },
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(214, "meters"),
  6935. default: true
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(12.237, "meters"),
  6940. },
  6941. {
  6942. name: "Megamacro",
  6943. height: math.unit(557, "megameters"),
  6944. },
  6945. {
  6946. name: "Unimaginable",
  6947. height: math.unit(120e9, "lightyears")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(2, "meters"),
  6956. weight: math.unit(80, "kg"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6960. }
  6961. }
  6962. },
  6963. [
  6964. {
  6965. name: "Teramacro",
  6966. height: math.unit(500000, "lightyears"),
  6967. default: true
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6973. {
  6974. crux: {
  6975. height: math.unit(2, "meters"),
  6976. weight: math.unit(150, "kg"),
  6977. name: "Crux",
  6978. image: {
  6979. source: "./media/characters/vemus/crux.svg",
  6980. extra: 1074/936,
  6981. bottom: 23/1097
  6982. }
  6983. },
  6984. skunkTanuki: {
  6985. height: math.unit(2, "meters"),
  6986. weight: math.unit(150, "kg"),
  6987. name: "Skunk-Tanuki",
  6988. image: {
  6989. source: "./media/characters/vemus/skunk-tanuki.svg",
  6990. extra: 926/893,
  6991. bottom: 20/946
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Normal",
  6998. height: math.unit(3.75, "meters"),
  6999. default: true
  7000. },
  7001. {
  7002. name: "Big",
  7003. height: math.unit(8, "meters")
  7004. },
  7005. {
  7006. name: "Macro",
  7007. height: math.unit(100, "meters")
  7008. },
  7009. {
  7010. name: "Macro+",
  7011. height: math.unit(1500, "meters")
  7012. },
  7013. {
  7014. name: "Stellar",
  7015. height: math.unit(14e8, "meters")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(2, "meters"),
  7024. weight: math.unit(70, "kg"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/beherit/front.svg",
  7028. extra: 1234/1109,
  7029. bottom: 55/1289
  7030. }
  7031. }
  7032. },
  7033. [
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(6, "feet")
  7037. },
  7038. {
  7039. name: "Lorg",
  7040. height: math.unit(25, "feet"),
  7041. default: true
  7042. },
  7043. {
  7044. name: "Lorger",
  7045. height: math.unit(75, "feet")
  7046. },
  7047. {
  7048. name: "Macro",
  7049. height: math.unit(200, "meters")
  7050. },
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(2, "meters"),
  7058. weight: math.unit(150, "kg"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/everett/front.svg",
  7062. extra: 1017/866,
  7063. bottom: 86/1103
  7064. }
  7065. },
  7066. paw: {
  7067. height: math.unit(2 / 3.6, "meters"),
  7068. name: "Paw",
  7069. image: {
  7070. source: "./media/characters/everett/paw.svg"
  7071. }
  7072. },
  7073. },
  7074. [
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(15, "feet"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Lorg",
  7082. height: math.unit(70, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Lorger",
  7087. height: math.unit(250, "feet")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(500, "meters")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(2, "meters"),
  7100. weight: math.unit(86, "kg"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/rose/front.svg",
  7104. extra: 1785/1636,
  7105. bottom: 30/1815
  7106. },
  7107. form: "liom",
  7108. default: true
  7109. },
  7110. frontSporty: {
  7111. height: math.unit(2, "meters"),
  7112. weight: math.unit(86, "kg"),
  7113. name: "Front (Sporty)",
  7114. image: {
  7115. source: "./media/characters/rose/front-sporty.svg",
  7116. extra: 350/335,
  7117. bottom: 10/360
  7118. },
  7119. form: "liom"
  7120. },
  7121. frontAlt: {
  7122. height: math.unit(1.6, "meters"),
  7123. weight: math.unit(86, "kg"),
  7124. name: "Front (Alt)",
  7125. image: {
  7126. source: "./media/characters/rose/front-alt.svg",
  7127. extra: 299/283,
  7128. bottom: 3/302
  7129. },
  7130. form: "liom"
  7131. },
  7132. plush: {
  7133. height: math.unit(2, "meters"),
  7134. weight: math.unit(86/3, "kg"),
  7135. name: "Plush",
  7136. image: {
  7137. source: "./media/characters/rose/plush.svg",
  7138. extra: 361/337,
  7139. bottom: 11/372
  7140. },
  7141. form: "plush",
  7142. default: true
  7143. },
  7144. faeStanding: {
  7145. height: math.unit(10, "cm"),
  7146. weight: math.unit(10, "grams"),
  7147. name: "Standing",
  7148. image: {
  7149. source: "./media/characters/rose/fae-standing.svg",
  7150. extra: 1189/1060,
  7151. bottom: 27/1216
  7152. },
  7153. form: "fae",
  7154. default: true
  7155. },
  7156. faeSitting: {
  7157. height: math.unit(5, "cm"),
  7158. weight: math.unit(10, "grams"),
  7159. name: "Sitting",
  7160. image: {
  7161. source: "./media/characters/rose/fae-sitting.svg",
  7162. extra: 737/577,
  7163. bottom: 356/1093
  7164. },
  7165. form: "fae"
  7166. },
  7167. faePaw: {
  7168. height: math.unit(1.35, "cm"),
  7169. name: "Paw",
  7170. image: {
  7171. source: "./media/characters/rose/fae-paw.svg"
  7172. },
  7173. form: "fae"
  7174. },
  7175. },
  7176. [
  7177. {
  7178. name: "True Micro",
  7179. height: math.unit(9, "cm"),
  7180. form: "liom"
  7181. },
  7182. {
  7183. name: "Micro",
  7184. height: math.unit(16, "cm"),
  7185. form: "liom"
  7186. },
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(1.85, "meters"),
  7190. default: true,
  7191. form: "liom"
  7192. },
  7193. {
  7194. name: "Mini-Macro",
  7195. height: math.unit(5, "meters"),
  7196. form: "liom"
  7197. },
  7198. {
  7199. name: "Macro",
  7200. height: math.unit(15, "meters"),
  7201. form: "liom"
  7202. },
  7203. {
  7204. name: "True Macro",
  7205. height: math.unit(40, "meters"),
  7206. form: "liom"
  7207. },
  7208. {
  7209. name: "City Scale",
  7210. height: math.unit(1, "km"),
  7211. form: "liom"
  7212. },
  7213. {
  7214. name: "Plushie",
  7215. height: math.unit(9, "cm"),
  7216. form: "plush",
  7217. default: true
  7218. },
  7219. {
  7220. name: "Fae",
  7221. height: math.unit(10, "cm"),
  7222. form: "fae",
  7223. default: true
  7224. },
  7225. ],
  7226. {
  7227. "liom": {
  7228. name: "Liom"
  7229. },
  7230. "plush": {
  7231. name: "Plush"
  7232. },
  7233. "fae": {
  7234. name: "Fae Fox",
  7235. default: true
  7236. }
  7237. }
  7238. ))
  7239. characterMakers.push(() => makeCharacter(
  7240. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7241. {
  7242. front: {
  7243. height: math.unit(2, "meters"),
  7244. weight: math.unit(350, "lbs"),
  7245. name: "Front",
  7246. image: {
  7247. source: "./media/characters/regal/front.svg"
  7248. }
  7249. },
  7250. back: {
  7251. height: math.unit(2, "meters"),
  7252. weight: math.unit(350, "lbs"),
  7253. name: "Back",
  7254. image: {
  7255. source: "./media/characters/regal/back.svg"
  7256. }
  7257. },
  7258. },
  7259. [
  7260. {
  7261. name: "Macro",
  7262. height: math.unit(350, "feet"),
  7263. default: true
  7264. }
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(4 + 11 / 12, "feet"),
  7272. weight: math.unit(100, "lbs"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/opal/front.svg"
  7276. }
  7277. },
  7278. frontAlt: {
  7279. height: math.unit(4 + 11 / 12, "feet"),
  7280. weight: math.unit(100, "lbs"),
  7281. name: "Front (Alt)",
  7282. image: {
  7283. source: "./media/characters/opal/front-alt.svg"
  7284. }
  7285. },
  7286. },
  7287. [
  7288. {
  7289. name: "Small",
  7290. height: math.unit(4 + 11 / 12, "feet")
  7291. },
  7292. {
  7293. name: "Normal",
  7294. height: math.unit(20, "feet"),
  7295. default: true
  7296. },
  7297. {
  7298. name: "Macro",
  7299. height: math.unit(120, "feet")
  7300. },
  7301. {
  7302. name: "Megamacro",
  7303. height: math.unit(80, "miles")
  7304. },
  7305. {
  7306. name: "True Size",
  7307. height: math.unit(100000, "lightyears")
  7308. },
  7309. ]
  7310. ))
  7311. characterMakers.push(() => makeCharacter(
  7312. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7313. {
  7314. front: {
  7315. height: math.unit(6, "feet"),
  7316. weight: math.unit(200, "lbs"),
  7317. name: "Front",
  7318. image: {
  7319. source: "./media/characters/vector-wuff/front.svg"
  7320. }
  7321. }
  7322. },
  7323. [
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(2.8, "meters")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(450, "meters"),
  7331. default: true
  7332. },
  7333. {
  7334. name: "Megamacro",
  7335. height: math.unit(15, "kilometers")
  7336. }
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7341. {
  7342. front: {
  7343. height: math.unit(6, "feet"),
  7344. weight: math.unit(256, "lbs"),
  7345. name: "Front",
  7346. image: {
  7347. source: "./media/characters/dannik/front.svg"
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(69.57, "meters"),
  7355. default: true
  7356. },
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(120, "lbs"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/azura-saharah/front.svg"
  7368. }
  7369. },
  7370. back: {
  7371. height: math.unit(6, "feet"),
  7372. weight: math.unit(120, "lbs"),
  7373. name: "Back",
  7374. image: {
  7375. source: "./media/characters/azura-saharah/back.svg"
  7376. }
  7377. },
  7378. },
  7379. [
  7380. {
  7381. name: "Macro",
  7382. height: math.unit(100, "feet"),
  7383. default: true
  7384. },
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7389. {
  7390. side: {
  7391. height: math.unit(5 + 4 / 12, "feet"),
  7392. weight: math.unit(163, "lbs"),
  7393. name: "Side",
  7394. image: {
  7395. source: "./media/characters/kennedy/side.svg"
  7396. }
  7397. }
  7398. },
  7399. [
  7400. {
  7401. name: "Standard Doggo",
  7402. height: math.unit(5 + 4 / 12, "feet")
  7403. },
  7404. {
  7405. name: "Big Doggo",
  7406. height: math.unit(25 + 3 / 12, "feet"),
  7407. default: true
  7408. },
  7409. ]
  7410. ))
  7411. characterMakers.push(() => makeCharacter(
  7412. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7413. {
  7414. front: {
  7415. height: math.unit(5 + 5/12, "feet"),
  7416. weight: math.unit(100, "lbs"),
  7417. name: "Front",
  7418. image: {
  7419. source: "./media/characters/odios-de-lunar/front.svg",
  7420. extra: 1468/1323,
  7421. bottom: 22/1490
  7422. }
  7423. }
  7424. },
  7425. [
  7426. {
  7427. name: "Micro",
  7428. height: math.unit(3, "inches")
  7429. },
  7430. {
  7431. name: "Normal",
  7432. height: math.unit(5.5, "feet"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Macro",
  7437. height: math.unit(100, "feet")
  7438. },
  7439. ]
  7440. ))
  7441. characterMakers.push(() => makeCharacter(
  7442. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7443. {
  7444. back: {
  7445. height: math.unit(6, "feet"),
  7446. weight: math.unit(220, "lbs"),
  7447. name: "Back",
  7448. image: {
  7449. source: "./media/characters/mandake/back.svg"
  7450. }
  7451. }
  7452. },
  7453. [
  7454. {
  7455. name: "Normal",
  7456. height: math.unit(7, "feet"),
  7457. default: true
  7458. },
  7459. {
  7460. name: "Macro",
  7461. height: math.unit(78, "feet")
  7462. },
  7463. {
  7464. name: "Macro+",
  7465. height: math.unit(300, "meters")
  7466. },
  7467. {
  7468. name: "Macro++",
  7469. height: math.unit(2400, "feet")
  7470. },
  7471. {
  7472. name: "Megamacro",
  7473. height: math.unit(5167, "meters")
  7474. },
  7475. {
  7476. name: "Gigamacro",
  7477. height: math.unit(41769, "miles")
  7478. },
  7479. ]
  7480. ))
  7481. characterMakers.push(() => makeCharacter(
  7482. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7483. {
  7484. front: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(120, "lbs"),
  7487. name: "Front",
  7488. image: {
  7489. source: "./media/characters/yozey/front.svg"
  7490. }
  7491. },
  7492. frontAlt: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(120, "lbs"),
  7495. name: "Front (Alt)",
  7496. image: {
  7497. source: "./media/characters/yozey/front-alt.svg"
  7498. }
  7499. },
  7500. side: {
  7501. height: math.unit(6, "feet"),
  7502. weight: math.unit(120, "lbs"),
  7503. name: "Side",
  7504. image: {
  7505. source: "./media/characters/yozey/side.svg"
  7506. }
  7507. },
  7508. },
  7509. [
  7510. {
  7511. name: "Micro",
  7512. height: math.unit(3, "inches"),
  7513. default: true
  7514. },
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(6, "feet")
  7518. }
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(103, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/valeska-voss/front.svg"
  7530. }
  7531. }
  7532. },
  7533. [
  7534. {
  7535. name: "Mini-Sized Sub",
  7536. height: math.unit(3.1, "inches")
  7537. },
  7538. {
  7539. name: "Mid-Sized Sub",
  7540. height: math.unit(6.2, "inches")
  7541. },
  7542. {
  7543. name: "Full-Sized Sub",
  7544. height: math.unit(9.3, "inches")
  7545. },
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(5 + 2 / 12, "foot"),
  7549. default: true
  7550. },
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(160, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/gene-zeta/front.svg",
  7562. extra: 3006 / 2826,
  7563. bottom: 182 / 3188
  7564. }
  7565. }
  7566. },
  7567. [
  7568. {
  7569. name: "Micro",
  7570. height: math.unit(6, "inches")
  7571. },
  7572. {
  7573. name: "Normal",
  7574. height: math.unit(5 + 11 / 12, "foot"),
  7575. default: true
  7576. },
  7577. {
  7578. name: "Macro",
  7579. height: math.unit(140, "feet")
  7580. },
  7581. {
  7582. name: "Supercharged",
  7583. height: math.unit(2500, "feet")
  7584. },
  7585. ]
  7586. ))
  7587. characterMakers.push(() => makeCharacter(
  7588. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7589. {
  7590. front: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(350, "lbs"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/razinox/front.svg",
  7596. extra: 1686 / 1548,
  7597. bottom: 28.2 / 1868
  7598. }
  7599. },
  7600. back: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(350, "lbs"),
  7603. name: "Back",
  7604. image: {
  7605. source: "./media/characters/razinox/back.svg",
  7606. extra: 1660 / 1590,
  7607. bottom: 15 / 1665
  7608. }
  7609. },
  7610. },
  7611. [
  7612. {
  7613. name: "Normal",
  7614. height: math.unit(10 + 8 / 12, "foot")
  7615. },
  7616. {
  7617. name: "Minimacro",
  7618. height: math.unit(15, "foot")
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(60, "foot"),
  7623. default: true
  7624. },
  7625. {
  7626. name: "Megamacro",
  7627. height: math.unit(5, "miles")
  7628. },
  7629. {
  7630. name: "Gigamacro",
  7631. height: math.unit(6000, "miles")
  7632. },
  7633. ]
  7634. ))
  7635. characterMakers.push(() => makeCharacter(
  7636. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7637. {
  7638. front: {
  7639. height: math.unit(6, "feet"),
  7640. weight: math.unit(150, "lbs"),
  7641. name: "Front",
  7642. image: {
  7643. source: "./media/characters/cobalt/front.svg"
  7644. }
  7645. }
  7646. },
  7647. [
  7648. {
  7649. name: "Normal",
  7650. height: math.unit(8 + 1 / 12, "foot")
  7651. },
  7652. {
  7653. name: "Macro",
  7654. height: math.unit(111, "foot"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Supracosmic",
  7659. height: math.unit(1e42, "feet")
  7660. },
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(5, "inches"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/amanda/front.svg",
  7671. extra: 926/791,
  7672. bottom: 38/964
  7673. }
  7674. },
  7675. back: {
  7676. height: math.unit(5, "inches"),
  7677. name: "Back",
  7678. image: {
  7679. source: "./media/characters/amanda/back.svg",
  7680. extra: 909/805,
  7681. bottom: 43/952
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Micro",
  7688. height: math.unit(5, "inches"),
  7689. default: true
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(2.75, "meters"),
  7698. weight: math.unit(1200, "lb"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/teal/front.svg",
  7702. extra: 2463 / 2320,
  7703. bottom: 166 / 2629
  7704. }
  7705. },
  7706. back: {
  7707. height: math.unit(2.75, "meters"),
  7708. weight: math.unit(1200, "lb"),
  7709. name: "Back",
  7710. image: {
  7711. source: "./media/characters/teal/back.svg",
  7712. extra: 2580 / 2489,
  7713. bottom: 151 / 2731
  7714. }
  7715. },
  7716. sitting: {
  7717. height: math.unit(1.9, "meters"),
  7718. weight: math.unit(1200, "lb"),
  7719. name: "Sitting",
  7720. image: {
  7721. source: "./media/characters/teal/sitting.svg",
  7722. extra: 623 / 590,
  7723. bottom: 121 / 744
  7724. }
  7725. },
  7726. standing: {
  7727. height: math.unit(2.75, "meters"),
  7728. weight: math.unit(1200, "lb"),
  7729. name: "Standing",
  7730. image: {
  7731. source: "./media/characters/teal/standing.svg",
  7732. extra: 923 / 893,
  7733. bottom: 60 / 983
  7734. }
  7735. },
  7736. stretching: {
  7737. height: math.unit(3.65, "meters"),
  7738. weight: math.unit(1200, "lb"),
  7739. name: "Stretching",
  7740. image: {
  7741. source: "./media/characters/teal/stretching.svg",
  7742. extra: 1276 / 1244,
  7743. bottom: 0 / 1276
  7744. }
  7745. },
  7746. legged: {
  7747. height: math.unit(1.3, "meters"),
  7748. weight: math.unit(100, "lb"),
  7749. name: "Legged",
  7750. image: {
  7751. source: "./media/characters/teal/legged.svg",
  7752. extra: 462 / 437,
  7753. bottom: 24 / 486
  7754. }
  7755. },
  7756. naga: {
  7757. height: math.unit(5.4, "meters"),
  7758. weight: math.unit(4000, "lb"),
  7759. name: "Naga",
  7760. image: {
  7761. source: "./media/characters/teal/naga.svg",
  7762. extra: 1902 / 1858,
  7763. bottom: 0 / 1902
  7764. }
  7765. },
  7766. hand: {
  7767. height: math.unit(0.52, "meters"),
  7768. name: "Hand",
  7769. image: {
  7770. source: "./media/characters/teal/hand.svg"
  7771. }
  7772. },
  7773. maw: {
  7774. height: math.unit(0.43, "meters"),
  7775. name: "Maw",
  7776. image: {
  7777. source: "./media/characters/teal/maw.svg"
  7778. }
  7779. },
  7780. slit: {
  7781. height: math.unit(0.25, "meters"),
  7782. name: "Slit",
  7783. image: {
  7784. source: "./media/characters/teal/slit.svg"
  7785. }
  7786. },
  7787. },
  7788. [
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(2.75, "meters"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Macro",
  7796. height: math.unit(300, "feet")
  7797. },
  7798. {
  7799. name: "Macro+",
  7800. height: math.unit(2000, "feet")
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7806. {
  7807. frontCat: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(180, "lbs"),
  7810. name: "Front (Cat)",
  7811. image: {
  7812. source: "./media/characters/ravin-amulet/front-cat.svg"
  7813. }
  7814. },
  7815. frontCatAlt: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(180, "lbs"),
  7818. name: "Front (Alt, Cat)",
  7819. image: {
  7820. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7821. }
  7822. },
  7823. frontWerewolf: {
  7824. height: math.unit(6 * 1.2, "feet"),
  7825. weight: math.unit(225, "lbs"),
  7826. name: "Front (Werewolf)",
  7827. image: {
  7828. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7829. }
  7830. },
  7831. backWerewolf: {
  7832. height: math.unit(6 * 1.2, "feet"),
  7833. weight: math.unit(225, "lbs"),
  7834. name: "Back (Werewolf)",
  7835. image: {
  7836. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7837. }
  7838. },
  7839. },
  7840. [
  7841. {
  7842. name: "Nano",
  7843. height: math.unit(1, "micrometer")
  7844. },
  7845. {
  7846. name: "Micro",
  7847. height: math.unit(1, "inch")
  7848. },
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(6, "feet"),
  7852. default: true
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(60, "feet")
  7857. }
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(165, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/fluoresce/front.svg"
  7869. }
  7870. }
  7871. },
  7872. [
  7873. {
  7874. name: "Micro",
  7875. height: math.unit(6, "cm")
  7876. },
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(5 + 7 / 12, "feet"),
  7880. default: true
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(56, "feet")
  7885. },
  7886. {
  7887. name: "Megamacro",
  7888. height: math.unit(1.9, "miles")
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(9 + 6 / 12, "feet"),
  7897. weight: math.unit(523, "lbs"),
  7898. name: "Side",
  7899. image: {
  7900. source: "./media/characters/aurora/side.svg"
  7901. }
  7902. }
  7903. },
  7904. [
  7905. {
  7906. name: "Normal",
  7907. height: math.unit(9 + 6 / 12, "feet")
  7908. },
  7909. {
  7910. name: "Macro",
  7911. height: math.unit(96, "feet"),
  7912. default: true
  7913. },
  7914. {
  7915. name: "Macro+",
  7916. height: math.unit(243, "feet")
  7917. },
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7922. {
  7923. front: {
  7924. height: math.unit(194, "cm"),
  7925. weight: math.unit(90, "kg"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/ranek/front.svg",
  7929. extra: 1862/1791,
  7930. bottom: 80/1942
  7931. }
  7932. },
  7933. back: {
  7934. height: math.unit(194, "cm"),
  7935. weight: math.unit(90, "kg"),
  7936. name: "Back",
  7937. image: {
  7938. source: "./media/characters/ranek/back.svg",
  7939. extra: 1853/1787,
  7940. bottom: 74/1927
  7941. }
  7942. },
  7943. feral: {
  7944. height: math.unit(30, "cm"),
  7945. weight: math.unit(1.6, "lbs"),
  7946. name: "Feral",
  7947. image: {
  7948. source: "./media/characters/ranek/feral.svg",
  7949. extra: 990/631,
  7950. bottom: 29/1019
  7951. }
  7952. },
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(194, "cm"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Macro",
  7962. height: math.unit(100, "meters")
  7963. },
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(5 + 6 / 12, "feet"),
  7971. weight: math.unit(153, "lbs"),
  7972. name: "Front",
  7973. image: {
  7974. source: "./media/characters/andrew-cooper/front.svg"
  7975. }
  7976. },
  7977. },
  7978. [
  7979. {
  7980. name: "Nano",
  7981. height: math.unit(1, "mm")
  7982. },
  7983. {
  7984. name: "Micro",
  7985. height: math.unit(2, "inches")
  7986. },
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(5 + 6 / 12, "feet"),
  7990. default: true
  7991. }
  7992. ]
  7993. ))
  7994. characterMakers.push(() => makeCharacter(
  7995. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7996. {
  7997. front: {
  7998. height: math.unit(6, "feet"),
  7999. weight: math.unit(180, "lbs"),
  8000. name: "Front",
  8001. image: {
  8002. source: "./media/characters/akane-sato/front.svg",
  8003. extra: 1219 / 1140
  8004. }
  8005. },
  8006. back: {
  8007. height: math.unit(6, "feet"),
  8008. weight: math.unit(180, "lbs"),
  8009. name: "Back",
  8010. image: {
  8011. source: "./media/characters/akane-sato/back.svg",
  8012. extra: 1219 / 1170
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(2.5, "meters")
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(250, "meters"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Megamacro",
  8028. height: math.unit(25, "km")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(65, "kg"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/rook/front.svg",
  8041. extra: 960 / 950
  8042. }
  8043. }
  8044. },
  8045. [
  8046. {
  8047. name: "Normal",
  8048. height: math.unit(8.8, "feet")
  8049. },
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(88, "feet"),
  8053. default: true
  8054. },
  8055. {
  8056. name: "Megamacro",
  8057. height: math.unit(8, "miles")
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(12 + 2 / 12, "feet"),
  8066. weight: math.unit(808, "lbs"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/prodigy/front.svg"
  8070. }
  8071. }
  8072. },
  8073. [
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(12 + 2 / 12, "feet"),
  8077. default: true
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(143, "feet")
  8082. },
  8083. {
  8084. name: "Macro+",
  8085. height: math.unit(400, "feet")
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(225, "lbs"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/daniel/front.svg"
  8098. }
  8099. },
  8100. leaning: {
  8101. height: math.unit(6, "feet"),
  8102. weight: math.unit(225, "lbs"),
  8103. name: "Leaning",
  8104. image: {
  8105. source: "./media/characters/daniel/leaning.svg"
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(1000, "feet"),
  8113. default: true
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(6, "feet"),
  8122. weight: math.unit(88, "lbs"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/chiros/front.svg",
  8126. extra: 306 / 226
  8127. }
  8128. },
  8129. side: {
  8130. height: math.unit(6, "feet"),
  8131. weight: math.unit(88, "lbs"),
  8132. name: "Side",
  8133. image: {
  8134. source: "./media/characters/chiros/side.svg",
  8135. extra: 306 / 226
  8136. }
  8137. },
  8138. },
  8139. [
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(6, "cm"),
  8143. default: true
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(100, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/selka/front.svg",
  8156. extra: 947 / 887
  8157. }
  8158. }
  8159. },
  8160. [
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(5, "cm"),
  8164. default: true
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(8 + 3 / 12, "feet"),
  8173. weight: math.unit(424, "lbs"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/verin/front.svg",
  8177. extra: 1845 / 1550
  8178. }
  8179. },
  8180. frontArmored: {
  8181. height: math.unit(8 + 3 / 12, "feet"),
  8182. weight: math.unit(424, "lbs"),
  8183. name: "Front (Armored)",
  8184. image: {
  8185. source: "./media/characters/verin/front-armor.svg",
  8186. extra: 1845 / 1550,
  8187. bottom: 0.01
  8188. }
  8189. },
  8190. back: {
  8191. height: math.unit(8 + 3 / 12, "feet"),
  8192. weight: math.unit(424, "lbs"),
  8193. name: "Back",
  8194. image: {
  8195. source: "./media/characters/verin/back.svg",
  8196. bottom: 0.1,
  8197. extra: 1
  8198. }
  8199. },
  8200. foot: {
  8201. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8202. name: "Foot",
  8203. image: {
  8204. source: "./media/characters/verin/foot.svg"
  8205. }
  8206. },
  8207. },
  8208. [
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(8 + 3 / 12, "feet")
  8212. },
  8213. {
  8214. name: "Minimacro",
  8215. height: math.unit(21, "feet"),
  8216. default: true
  8217. },
  8218. {
  8219. name: "Macro",
  8220. height: math.unit(626, "feet")
  8221. },
  8222. ]
  8223. ))
  8224. characterMakers.push(() => makeCharacter(
  8225. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8226. {
  8227. front: {
  8228. height: math.unit(2.718, "meters"),
  8229. weight: math.unit(150, "lbs"),
  8230. name: "Front",
  8231. image: {
  8232. source: "./media/characters/sovrim-terraquian/front.svg",
  8233. extra: 1752/1689,
  8234. bottom: 36/1788
  8235. }
  8236. },
  8237. back: {
  8238. height: math.unit(2.718, "meters"),
  8239. weight: math.unit(150, "lbs"),
  8240. name: "Back",
  8241. image: {
  8242. source: "./media/characters/sovrim-terraquian/back.svg",
  8243. extra: 1698/1657,
  8244. bottom: 58/1756
  8245. }
  8246. },
  8247. tongue: {
  8248. height: math.unit(2.865, "feet"),
  8249. name: "Tongue",
  8250. image: {
  8251. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8252. }
  8253. },
  8254. hand: {
  8255. height: math.unit(1.61, "feet"),
  8256. name: "Hand",
  8257. image: {
  8258. source: "./media/characters/sovrim-terraquian/hand.svg"
  8259. }
  8260. },
  8261. foot: {
  8262. height: math.unit(1.05, "feet"),
  8263. name: "Foot",
  8264. image: {
  8265. source: "./media/characters/sovrim-terraquian/foot.svg"
  8266. }
  8267. },
  8268. footAlt: {
  8269. height: math.unit(0.88, "feet"),
  8270. name: "Foot (Alt)",
  8271. image: {
  8272. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Micro",
  8279. height: math.unit(2, "inches")
  8280. },
  8281. {
  8282. name: "Small",
  8283. height: math.unit(1, "meter")
  8284. },
  8285. {
  8286. name: "Normal",
  8287. height: math.unit(Math.E, "meters"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(20, "meters")
  8293. },
  8294. {
  8295. name: "Macro+",
  8296. height: math.unit(400, "meters")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(7, "feet"),
  8305. weight: math.unit(489, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/reece-silvermane/front.svg",
  8309. bottom: 0.02,
  8310. extra: 1
  8311. }
  8312. },
  8313. },
  8314. [
  8315. {
  8316. name: "Macro",
  8317. height: math.unit(1.5, "miles"),
  8318. default: true
  8319. },
  8320. ]
  8321. ))
  8322. characterMakers.push(() => makeCharacter(
  8323. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8324. {
  8325. front: {
  8326. height: math.unit(6, "feet"),
  8327. weight: math.unit(78, "kg"),
  8328. name: "Front",
  8329. image: {
  8330. source: "./media/characters/kane/front.svg",
  8331. extra: 978 / 899
  8332. }
  8333. },
  8334. },
  8335. [
  8336. {
  8337. name: "Normal",
  8338. height: math.unit(2.1, "m"),
  8339. },
  8340. {
  8341. name: "Macro",
  8342. height: math.unit(1, "km"),
  8343. default: true
  8344. },
  8345. ]
  8346. ))
  8347. characterMakers.push(() => makeCharacter(
  8348. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8349. {
  8350. front: {
  8351. height: math.unit(6, "feet"),
  8352. weight: math.unit(200, "kg"),
  8353. name: "Front",
  8354. image: {
  8355. source: "./media/characters/tegon/front.svg",
  8356. bottom: 0.01,
  8357. extra: 1
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Micro",
  8364. height: math.unit(1, "inch")
  8365. },
  8366. {
  8367. name: "Normal",
  8368. height: math.unit(6 + 3 / 12, "feet"),
  8369. default: true
  8370. },
  8371. {
  8372. name: "Macro",
  8373. height: math.unit(300, "feet")
  8374. },
  8375. {
  8376. name: "Megamacro",
  8377. height: math.unit(69, "miles")
  8378. },
  8379. ]
  8380. ))
  8381. characterMakers.push(() => makeCharacter(
  8382. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8383. {
  8384. side: {
  8385. height: math.unit(6, "feet"),
  8386. weight: math.unit(2304, "lbs"),
  8387. name: "Side",
  8388. image: {
  8389. source: "./media/characters/arcturax/side.svg",
  8390. extra: 790 / 376,
  8391. bottom: 0.01
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Micro",
  8398. height: math.unit(2, "inch")
  8399. },
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(6, "feet")
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(39, "feet"),
  8407. default: true
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(7, "miles")
  8412. },
  8413. ]
  8414. ))
  8415. characterMakers.push(() => makeCharacter(
  8416. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8417. {
  8418. front: {
  8419. height: math.unit(6, "feet"),
  8420. weight: math.unit(50, "lbs"),
  8421. name: "Front",
  8422. image: {
  8423. source: "./media/characters/sentri/front.svg",
  8424. extra: 1750 / 1570,
  8425. bottom: 0.025
  8426. }
  8427. },
  8428. frontAlt: {
  8429. height: math.unit(6, "feet"),
  8430. weight: math.unit(50, "lbs"),
  8431. name: "Front (Alt)",
  8432. image: {
  8433. source: "./media/characters/sentri/front-alt.svg",
  8434. extra: 1750 / 1570,
  8435. bottom: 0.025
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Normal",
  8442. height: math.unit(15, "feet"),
  8443. default: true
  8444. },
  8445. {
  8446. name: "Macro",
  8447. height: math.unit(2500, "feet")
  8448. }
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(5 + 8 / 12, "feet"),
  8456. weight: math.unit(130, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/corvin/front.svg",
  8460. extra: 1803 / 1629
  8461. }
  8462. },
  8463. frontShirt: {
  8464. height: math.unit(5 + 8 / 12, "feet"),
  8465. weight: math.unit(130, "lbs"),
  8466. name: "Front (Shirt)",
  8467. image: {
  8468. source: "./media/characters/corvin/front-shirt.svg",
  8469. extra: 1803 / 1629
  8470. }
  8471. },
  8472. frontPoncho: {
  8473. height: math.unit(5 + 8 / 12, "feet"),
  8474. weight: math.unit(130, "lbs"),
  8475. name: "Front (Poncho)",
  8476. image: {
  8477. source: "./media/characters/corvin/front-poncho.svg",
  8478. extra: 1803 / 1629
  8479. }
  8480. },
  8481. side: {
  8482. height: math.unit(5 + 8 / 12, "feet"),
  8483. weight: math.unit(130, "lbs"),
  8484. name: "Side",
  8485. image: {
  8486. source: "./media/characters/corvin/side.svg",
  8487. extra: 1012 / 945
  8488. }
  8489. },
  8490. back: {
  8491. height: math.unit(5 + 8 / 12, "feet"),
  8492. weight: math.unit(130, "lbs"),
  8493. name: "Back",
  8494. image: {
  8495. source: "./media/characters/corvin/back.svg",
  8496. extra: 1803 / 1629
  8497. }
  8498. },
  8499. },
  8500. [
  8501. {
  8502. name: "Micro",
  8503. height: math.unit(3, "inches")
  8504. },
  8505. {
  8506. name: "Normal",
  8507. height: math.unit(5 + 8 / 12, "feet")
  8508. },
  8509. {
  8510. name: "Macro",
  8511. height: math.unit(300, "feet"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Megamacro",
  8516. height: math.unit(500, "miles")
  8517. }
  8518. ]
  8519. ))
  8520. characterMakers.push(() => makeCharacter(
  8521. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8522. {
  8523. front: {
  8524. height: math.unit(6, "feet"),
  8525. weight: math.unit(135, "lbs"),
  8526. name: "Front",
  8527. image: {
  8528. source: "./media/characters/q/front.svg",
  8529. extra: 854 / 752,
  8530. bottom: 0.005
  8531. }
  8532. },
  8533. back: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(130, "lbs"),
  8536. name: "Back",
  8537. image: {
  8538. source: "./media/characters/q/back.svg",
  8539. extra: 854 / 752
  8540. }
  8541. },
  8542. },
  8543. [
  8544. {
  8545. name: "Macro",
  8546. height: math.unit(90, "feet"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Extra Macro",
  8551. height: math.unit(300, "feet"),
  8552. },
  8553. {
  8554. name: "BIG WALF",
  8555. height: math.unit(750, "feet"),
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8561. {
  8562. front: {
  8563. height: math.unit(6, "feet"),
  8564. weight: math.unit(150, "lbs"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/carley/front.svg",
  8568. extra: 3927 / 3540,
  8569. bottom: 29.2 / 735
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(6 + 3 / 12, "feet")
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(185, "feet"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Megamacro",
  8585. height: math.unit(8, "miles"),
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(3, "feet"),
  8594. weight: math.unit(28, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/citrine/front.svg"
  8598. }
  8599. }
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(3, "feet"),
  8605. default: true
  8606. }
  8607. ]
  8608. ))
  8609. characterMakers.push(() => makeCharacter(
  8610. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8611. {
  8612. front: {
  8613. height: math.unit(14, "feet"),
  8614. weight: math.unit(1450, "kg"),
  8615. capacity: math.unit(15, "people"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/aura-starwind/front.svg",
  8619. extra: 1440/1327,
  8620. bottom: 11/1451
  8621. }
  8622. },
  8623. side: {
  8624. height: math.unit(14, "feet"),
  8625. weight: math.unit(1450, "kg"),
  8626. capacity: math.unit(15, "people"),
  8627. name: "Side",
  8628. image: {
  8629. source: "./media/characters/aura-starwind/side.svg",
  8630. extra: 1654 / 1497
  8631. }
  8632. },
  8633. taur: {
  8634. height: math.unit(18, "feet"),
  8635. weight: math.unit(5500, "kg"),
  8636. capacity: math.unit(50, "people"),
  8637. name: "Taur",
  8638. image: {
  8639. source: "./media/characters/aura-starwind/taur.svg",
  8640. extra: 1760 / 1650
  8641. }
  8642. },
  8643. feral: {
  8644. height: math.unit(46, "feet"),
  8645. weight: math.unit(25000, "kg"),
  8646. capacity: math.unit(120, "people"),
  8647. name: "Feral",
  8648. image: {
  8649. source: "./media/characters/aura-starwind/feral.svg"
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(14, "feet"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Macro",
  8661. height: math.unit(50, "meters")
  8662. },
  8663. {
  8664. name: "Megamacro",
  8665. height: math.unit(5000, "meters")
  8666. },
  8667. {
  8668. name: "Gigamacro",
  8669. height: math.unit(100000, "kilometers")
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(2 + 7 / 12, "feet"),
  8678. weight: math.unit(32, "lbs"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/rivet/front.svg",
  8682. extra: 1716 / 1658,
  8683. bottom: 0.03
  8684. }
  8685. },
  8686. foot: {
  8687. height: math.unit(0.551, "feet"),
  8688. name: "Rivet's Foot",
  8689. image: {
  8690. source: "./media/characters/rivet/foot.svg"
  8691. },
  8692. rename: true
  8693. }
  8694. },
  8695. [
  8696. {
  8697. name: "Micro",
  8698. height: math.unit(1.5, "inches"),
  8699. },
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(2 + 7 / 12, "feet"),
  8703. default: true
  8704. },
  8705. {
  8706. name: "Macro",
  8707. height: math.unit(85, "feet")
  8708. },
  8709. {
  8710. name: "Megamacro",
  8711. height: math.unit(2.2, "km")
  8712. }
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(5 + 9 / 12, "feet"),
  8720. weight: math.unit(150, "lbs"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/coffee/front.svg",
  8724. extra: 3666 / 3032,
  8725. bottom: 0.04
  8726. }
  8727. },
  8728. foot: {
  8729. height: math.unit(1.29, "feet"),
  8730. name: "Foot",
  8731. image: {
  8732. source: "./media/characters/coffee/foot.svg"
  8733. }
  8734. },
  8735. },
  8736. [
  8737. {
  8738. name: "Micro",
  8739. height: math.unit(2, "inches"),
  8740. },
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(5 + 9 / 12, "feet"),
  8744. default: true
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(800, "feet")
  8749. },
  8750. {
  8751. name: "Megamacro",
  8752. height: math.unit(25, "miles")
  8753. }
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(6, "feet"),
  8761. weight: math.unit(200, "lbs"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/chari-gal/front.svg",
  8765. extra: 1568 / 1385,
  8766. bottom: 0.047
  8767. }
  8768. },
  8769. gigantamax: {
  8770. height: math.unit(6 * 16, "feet"),
  8771. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8772. name: "Gigantamax",
  8773. image: {
  8774. source: "./media/characters/chari-gal/gigantamax.svg",
  8775. extra: 1124 / 888,
  8776. bottom: 0.03
  8777. }
  8778. },
  8779. },
  8780. [
  8781. {
  8782. name: "Normal",
  8783. height: math.unit(5 + 7 / 12, "feet")
  8784. },
  8785. {
  8786. name: "Macro",
  8787. height: math.unit(200, "feet"),
  8788. default: true
  8789. }
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(6, "feet"),
  8797. weight: math.unit(150, "lbs"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/nova/front.svg",
  8801. extra: 5000 / 4722,
  8802. bottom: 0.02
  8803. }
  8804. }
  8805. },
  8806. [
  8807. {
  8808. name: "Micro-",
  8809. height: math.unit(0.8, "inches")
  8810. },
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(2, "inches"),
  8814. default: true
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(3 + 1 / 12, "feet"),
  8823. weight: math.unit(21.7, "lbs"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/argent/front.svg",
  8827. extra: 1471 / 1331,
  8828. bottom: 100.8 / 1575.5
  8829. }
  8830. }
  8831. },
  8832. [
  8833. {
  8834. name: "Micro",
  8835. height: math.unit(2, "inches")
  8836. },
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(3 + 1 / 12, "feet"),
  8840. default: true
  8841. },
  8842. {
  8843. name: "Macro",
  8844. height: math.unit(120, "feet")
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8850. {
  8851. lamp: {
  8852. height: math.unit(7 * 1559 / 989, "feet"),
  8853. name: "Magic Lamp",
  8854. image: {
  8855. source: "./media/characters/mira-al-cul/lamp.svg",
  8856. extra: 1617 / 1559
  8857. }
  8858. },
  8859. front: {
  8860. height: math.unit(7, "feet"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/mira-al-cul/front.svg",
  8864. extra: 1044 / 990
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Heavily Restricted",
  8871. height: math.unit(7 * 1559 / 989, "feet")
  8872. },
  8873. {
  8874. name: "Freshly Freed",
  8875. height: math.unit(50 * 1559 / 989, "feet")
  8876. },
  8877. {
  8878. name: "World Encompassing",
  8879. height: math.unit(10000 * 1559 / 989, "miles")
  8880. },
  8881. {
  8882. name: "Galactic",
  8883. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8884. },
  8885. {
  8886. name: "Palmed Universe",
  8887. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Multiversal Matriarch",
  8892. height: math.unit(8.87e10, "yottameters")
  8893. },
  8894. {
  8895. name: "Void Mother",
  8896. height: math.unit(3.14e110, "yottaparsecs")
  8897. },
  8898. {
  8899. name: "Toying with Transcendence",
  8900. height: math.unit(1e307, "meters")
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8906. {
  8907. front: {
  8908. height: math.unit(17 + 1 / 12, "feet"),
  8909. weight: math.unit(476.2 * 5, "lbs"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/kuro-shi-uchū/front.svg",
  8913. extra: 2329 / 1835,
  8914. bottom: 0.02
  8915. }
  8916. },
  8917. },
  8918. [
  8919. {
  8920. name: "Micro",
  8921. height: math.unit(2, "inches")
  8922. },
  8923. {
  8924. name: "Normal",
  8925. height: math.unit(12, "meters")
  8926. },
  8927. {
  8928. name: "Planetary",
  8929. height: math.unit(0.00929, "AU"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Universal",
  8934. height: math.unit(20, "gigaparsecs")
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(5 + 2 / 12, "feet"),
  8943. weight: math.unit(120, "lbs"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/katherine/front.svg",
  8947. extra: 2075 / 1969
  8948. }
  8949. },
  8950. dress: {
  8951. height: math.unit(5 + 2 / 12, "feet"),
  8952. weight: math.unit(120, "lbs"),
  8953. name: "Dress",
  8954. image: {
  8955. source: "./media/characters/katherine/dress.svg",
  8956. extra: 2258 / 2064
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Micro",
  8963. height: math.unit(1, "inches"),
  8964. default: true
  8965. },
  8966. {
  8967. name: "Normal",
  8968. height: math.unit(5 + 2 / 12, "feet")
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(100, "meters")
  8973. },
  8974. {
  8975. name: "Megamacro",
  8976. height: math.unit(80, "miles")
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(7 + 8 / 12, "feet"),
  8985. weight: math.unit(250, "lbs"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/yevis/front.svg",
  8989. extra: 1938 / 1755
  8990. }
  8991. }
  8992. },
  8993. [
  8994. {
  8995. name: "Mortal",
  8996. height: math.unit(7 + 8 / 12, "feet")
  8997. },
  8998. {
  8999. name: "Battle",
  9000. height: math.unit(25 + 11 / 12, "feet")
  9001. },
  9002. {
  9003. name: "Wrath",
  9004. height: math.unit(1654 + 11 / 12, "feet")
  9005. },
  9006. {
  9007. name: "Planet Destroyer",
  9008. height: math.unit(12000, "miles")
  9009. },
  9010. {
  9011. name: "Galaxy Conqueror",
  9012. height: math.unit(1.45, "zettameters"),
  9013. default: true
  9014. },
  9015. {
  9016. name: "Universal War",
  9017. height: math.unit(184, "gigaparsecs")
  9018. },
  9019. {
  9020. name: "Eternity War",
  9021. height: math.unit(1.98e55, "yottaparsecs")
  9022. },
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(5 + 8 / 12, "feet"),
  9030. weight: math.unit(63, "kg"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/xavier/front.svg",
  9034. extra: 944 / 883
  9035. }
  9036. },
  9037. frontStretch: {
  9038. height: math.unit(5 + 8 / 12, "feet"),
  9039. weight: math.unit(63, "kg"),
  9040. name: "Stretching",
  9041. image: {
  9042. source: "./media/characters/xavier/front-stretch.svg",
  9043. extra: 962 / 820
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(5 + 8 / 12, "feet")
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(100, "meters"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "McLargeHuge",
  9059. height: math.unit(10, "miles")
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(5 + 5 / 12, "feet"),
  9068. weight: math.unit(150, "lb"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/joshii/front.svg",
  9072. extra: 765 / 653,
  9073. bottom: 51 / 816
  9074. }
  9075. },
  9076. foot: {
  9077. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9078. name: "Foot",
  9079. image: {
  9080. source: "./media/characters/joshii/foot.svg"
  9081. }
  9082. },
  9083. },
  9084. [
  9085. {
  9086. name: "Micro",
  9087. height: math.unit(2, "inches"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Normal",
  9092. height: math.unit(5 + 5 / 12, "feet")
  9093. },
  9094. {
  9095. name: "Macro",
  9096. height: math.unit(785, "feet")
  9097. },
  9098. {
  9099. name: "Megamacro",
  9100. height: math.unit(24.5, "miles")
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(150, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/goddess-elizabeth/front.svg",
  9113. extra: 1800 / 1525,
  9114. bottom: 0.005
  9115. }
  9116. },
  9117. foot: {
  9118. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9119. name: "Foot",
  9120. image: {
  9121. source: "./media/characters/goddess-elizabeth/foot.svg"
  9122. }
  9123. },
  9124. mouth: {
  9125. height: math.unit(6, "feet"),
  9126. name: "Mouth",
  9127. image: {
  9128. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9129. }
  9130. },
  9131. },
  9132. [
  9133. {
  9134. name: "Micro",
  9135. height: math.unit(12, "feet")
  9136. },
  9137. {
  9138. name: "Normal",
  9139. height: math.unit(80, "miles"),
  9140. default: true
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(15000, "parsecs")
  9145. },
  9146. ]
  9147. ))
  9148. characterMakers.push(() => makeCharacter(
  9149. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9150. {
  9151. front: {
  9152. height: math.unit(5 + 9 / 12, "feet"),
  9153. weight: math.unit(144, "lb"),
  9154. name: "Front",
  9155. image: {
  9156. source: "./media/characters/kara/front.svg"
  9157. }
  9158. },
  9159. feet: {
  9160. height: math.unit(6 / 6.765, "feet"),
  9161. name: "Kara's Feet",
  9162. rename: true,
  9163. image: {
  9164. source: "./media/characters/kara/feet.svg"
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Normal",
  9171. height: math.unit(5 + 9 / 12, "feet")
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(174, "feet"),
  9176. default: true
  9177. },
  9178. ]
  9179. ))
  9180. characterMakers.push(() => makeCharacter(
  9181. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9182. {
  9183. front: {
  9184. height: math.unit(18, "feet"),
  9185. weight: math.unit(4050, "lb"),
  9186. name: "Front",
  9187. image: {
  9188. source: "./media/characters/tyrone/front.svg",
  9189. extra: 2405 / 2270,
  9190. bottom: 182 / 2587
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(18, "feet"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(300, "feet")
  9203. },
  9204. {
  9205. name: "Megamacro",
  9206. height: math.unit(15, "km")
  9207. },
  9208. {
  9209. name: "Gigamacro",
  9210. height: math.unit(500, "km")
  9211. },
  9212. {
  9213. name: "Teramacro",
  9214. height: math.unit(0.5, "gigameters")
  9215. },
  9216. {
  9217. name: "Omnimacro",
  9218. height: math.unit(1e252, "yottauniverse")
  9219. },
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(7 + 8 / 12, "feet"),
  9227. weight: math.unit(120, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/danny/front.svg",
  9231. extra: 1490 / 1350
  9232. }
  9233. },
  9234. back: {
  9235. height: math.unit(7 + 8 / 12, "feet"),
  9236. weight: math.unit(120, "lb"),
  9237. name: "Back",
  9238. image: {
  9239. source: "./media/characters/danny/back.svg",
  9240. extra: 1490 / 1350
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(7 + 8 / 12, "feet"),
  9248. default: true
  9249. },
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(3.5, "inches"),
  9257. weight: math.unit(19, "grams"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/mallow/front.svg",
  9261. extra: 471 / 431
  9262. }
  9263. },
  9264. back: {
  9265. height: math.unit(3.5, "inches"),
  9266. weight: math.unit(19, "grams"),
  9267. name: "Back",
  9268. image: {
  9269. source: "./media/characters/mallow/back.svg",
  9270. extra: 471 / 431
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(3.5, "inches"),
  9278. default: true
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(9, "feet"),
  9287. weight: math.unit(230, "kg"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/starry-aqua/front.svg"
  9291. }
  9292. },
  9293. back: {
  9294. height: math.unit(9, "feet"),
  9295. weight: math.unit(230, "kg"),
  9296. name: "Back",
  9297. image: {
  9298. source: "./media/characters/starry-aqua/back.svg"
  9299. }
  9300. },
  9301. hand: {
  9302. height: math.unit(9 * 0.1168, "feet"),
  9303. name: "Hand",
  9304. image: {
  9305. source: "./media/characters/starry-aqua/hand.svg"
  9306. }
  9307. },
  9308. foot: {
  9309. height: math.unit(9 * 0.18, "feet"),
  9310. name: "Foot",
  9311. image: {
  9312. source: "./media/characters/starry-aqua/foot.svg"
  9313. }
  9314. }
  9315. },
  9316. [
  9317. {
  9318. name: "Micro",
  9319. height: math.unit(3, "inches")
  9320. },
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(9, "feet")
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(300, "feet"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "Megamacro",
  9332. height: math.unit(3200, "feet")
  9333. }
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(15, "feet"),
  9341. weight: math.unit(5026, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/luka-towers/front.svg",
  9345. extra: 1269/1133,
  9346. bottom: 51/1320
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(15, "feet"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Minimacro",
  9358. height: math.unit(25, "feet")
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(320, "feet")
  9363. },
  9364. {
  9365. name: "Megamacro",
  9366. height: math.unit(35000, "feet")
  9367. },
  9368. {
  9369. name: "Gigamacro",
  9370. height: math.unit(4000, "miles")
  9371. },
  9372. {
  9373. name: "Teramacro",
  9374. height: math.unit(15000, "miles")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(150, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/natalie-nightring/front.svg",
  9387. extra: 1,
  9388. bottom: 0.06
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Uh Oh",
  9395. height: math.unit(0.1, "mm")
  9396. },
  9397. {
  9398. name: "Small",
  9399. height: math.unit(3, "inches")
  9400. },
  9401. {
  9402. name: "Human Scale",
  9403. height: math.unit(6, "feet")
  9404. },
  9405. {
  9406. name: "Librarian",
  9407. height: math.unit(50, "feet"),
  9408. default: true
  9409. },
  9410. {
  9411. name: "Immense",
  9412. height: math.unit(200, "miles")
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(180, "lbs"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/danni-rosie/front.svg",
  9425. extra: 1260 / 1128,
  9426. bottom: 0.022
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Micro",
  9433. height: math.unit(2, "inches"),
  9434. default: true
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9440. {
  9441. front: {
  9442. height: math.unit(5 + 9 / 12, "feet"),
  9443. weight: math.unit(220, "lb"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/samantha-kruse/front.svg",
  9447. extra: (985 / 935),
  9448. bottom: 0.03
  9449. }
  9450. },
  9451. frontUndressed: {
  9452. height: math.unit(5 + 9 / 12, "feet"),
  9453. weight: math.unit(220, "lb"),
  9454. name: "Front (Undressed)",
  9455. image: {
  9456. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9457. extra: (973 / 923),
  9458. bottom: 0.025
  9459. }
  9460. },
  9461. fat: {
  9462. height: math.unit(5 + 9 / 12, "feet"),
  9463. weight: math.unit(900, "lb"),
  9464. name: "Front (Fat)",
  9465. image: {
  9466. source: "./media/characters/samantha-kruse/fat.svg",
  9467. extra: 2688 / 2561
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Normal",
  9474. height: math.unit(5 + 9 / 12, "feet"),
  9475. default: true
  9476. }
  9477. ]
  9478. ))
  9479. characterMakers.push(() => makeCharacter(
  9480. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9481. {
  9482. back: {
  9483. height: math.unit(5 + 4 / 12, "feet"),
  9484. weight: math.unit(4963, "lb"),
  9485. name: "Back",
  9486. image: {
  9487. source: "./media/characters/amelia-rosie/back.svg",
  9488. extra: 1113 / 963,
  9489. bottom: 0.01
  9490. }
  9491. },
  9492. },
  9493. [
  9494. {
  9495. name: "Level 0",
  9496. height: math.unit(5 + 4 / 12, "feet")
  9497. },
  9498. {
  9499. name: "Level 1",
  9500. height: math.unit(164597, "feet"),
  9501. default: true
  9502. },
  9503. {
  9504. name: "Level 2",
  9505. height: math.unit(956243, "miles")
  9506. },
  9507. {
  9508. name: "Level 3",
  9509. height: math.unit(29421709423, "miles")
  9510. },
  9511. {
  9512. name: "Level 4",
  9513. height: math.unit(154, "lightyears")
  9514. },
  9515. {
  9516. name: "Level 5",
  9517. height: math.unit(4738272, "lightyears")
  9518. },
  9519. {
  9520. name: "Level 6",
  9521. height: math.unit(145787152896, "lightyears")
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(5 + 11 / 12, "feet"),
  9530. weight: math.unit(65, "kg"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/rook-kitara/front.svg",
  9534. extra: 1347 / 1274,
  9535. bottom: 0.005
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Totally Unfair",
  9542. height: math.unit(1.8, "mm")
  9543. },
  9544. {
  9545. name: "Lap Rookie",
  9546. height: math.unit(1.4, "feet")
  9547. },
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(5 + 11 / 12, "feet"),
  9551. default: true
  9552. },
  9553. {
  9554. name: "How Did This Happen",
  9555. height: math.unit(80, "miles")
  9556. }
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(7, "feet"),
  9564. weight: math.unit(300, "lb"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/pisces/front.svg",
  9568. extra: 2255 / 2115,
  9569. bottom: 0.03
  9570. }
  9571. },
  9572. back: {
  9573. height: math.unit(7, "feet"),
  9574. weight: math.unit(300, "lb"),
  9575. name: "Back",
  9576. image: {
  9577. source: "./media/characters/pisces/back.svg",
  9578. extra: 2146 / 2055,
  9579. bottom: 0.04
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Normal",
  9586. height: math.unit(7, "feet"),
  9587. default: true
  9588. },
  9589. {
  9590. name: "Swimming Pool",
  9591. height: math.unit(12.2, "meters")
  9592. },
  9593. {
  9594. name: "Olympic Swimming Pool",
  9595. height: math.unit(56.3, "meters")
  9596. },
  9597. {
  9598. name: "Lake Superior",
  9599. height: math.unit(93900, "meters")
  9600. },
  9601. {
  9602. name: "Mediterranean Sea",
  9603. height: math.unit(644457, "meters")
  9604. },
  9605. {
  9606. name: "World's Oceans",
  9607. height: math.unit(4567491, "meters")
  9608. },
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(2.3, "meters"),
  9616. weight: math.unit(120, "kg"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/zelas/front.svg"
  9620. }
  9621. },
  9622. side: {
  9623. height: math.unit(2.3, "meters"),
  9624. weight: math.unit(120, "kg"),
  9625. name: "Side",
  9626. image: {
  9627. source: "./media/characters/zelas/side.svg"
  9628. }
  9629. },
  9630. back: {
  9631. height: math.unit(2.3, "meters"),
  9632. weight: math.unit(120, "kg"),
  9633. name: "Back",
  9634. image: {
  9635. source: "./media/characters/zelas/back.svg"
  9636. }
  9637. },
  9638. foot: {
  9639. height: math.unit(1.116, "feet"),
  9640. name: "Foot",
  9641. image: {
  9642. source: "./media/characters/zelas/foot.svg"
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(2.3, "meters")
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(30, "meters"),
  9654. default: true
  9655. },
  9656. ]
  9657. ))
  9658. characterMakers.push(() => makeCharacter(
  9659. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9660. {
  9661. front: {
  9662. height: math.unit(1, "inch"),
  9663. weight: math.unit(0.21, "grams"),
  9664. name: "Front",
  9665. image: {
  9666. source: "./media/characters/talbot/front.svg",
  9667. extra: 594 / 544
  9668. }
  9669. },
  9670. },
  9671. [
  9672. {
  9673. name: "Micro",
  9674. height: math.unit(1, "inch"),
  9675. default: true
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9681. {
  9682. front: {
  9683. height: math.unit(3 + 3 / 12, "feet"),
  9684. weight: math.unit(51.8, "lb"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/fliss/front.svg",
  9688. extra: 840 / 640
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Teeny Tiny",
  9695. height: math.unit(1, "mm")
  9696. },
  9697. {
  9698. name: "Small",
  9699. height: math.unit(1, "inch"),
  9700. default: true
  9701. },
  9702. {
  9703. name: "Standard Sylveon",
  9704. height: math.unit(3 + 3 / 12, "feet")
  9705. },
  9706. {
  9707. name: "Large Nuisance",
  9708. height: math.unit(33, "feet")
  9709. },
  9710. {
  9711. name: "City Filler",
  9712. height: math.unit(3000, "feet")
  9713. },
  9714. {
  9715. name: "New Horizon",
  9716. height: math.unit(6000, "miles")
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(5, "cm"),
  9725. weight: math.unit(1.94, "g"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/fleta/front.svg",
  9729. extra: 835 / 803
  9730. }
  9731. },
  9732. back: {
  9733. height: math.unit(5, "cm"),
  9734. weight: math.unit(1.94, "g"),
  9735. name: "Back",
  9736. image: {
  9737. source: "./media/characters/fleta/back.svg",
  9738. extra: 835 / 803
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Micro",
  9745. height: math.unit(5, "cm"),
  9746. default: true
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(6, "feet"),
  9755. weight: math.unit(225, "lb"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/dominic/front.svg",
  9759. extra: 1770 / 1620,
  9760. bottom: 0.025
  9761. }
  9762. },
  9763. back: {
  9764. height: math.unit(6, "feet"),
  9765. weight: math.unit(225, "lb"),
  9766. name: "Back",
  9767. image: {
  9768. source: "./media/characters/dominic/back.svg",
  9769. extra: 1745 / 1620,
  9770. bottom: 0.065
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Nano",
  9777. height: math.unit(0.1, "mm")
  9778. },
  9779. {
  9780. name: "Micro-",
  9781. height: math.unit(1, "mm")
  9782. },
  9783. {
  9784. name: "Micro",
  9785. height: math.unit(4, "inches")
  9786. },
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(6 + 4 / 12, "feet"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Macro",
  9794. height: math.unit(115, "feet")
  9795. },
  9796. {
  9797. name: "Macro+",
  9798. height: math.unit(955, "feet")
  9799. },
  9800. {
  9801. name: "Megamacro",
  9802. height: math.unit(8990, "feet")
  9803. },
  9804. {
  9805. name: "Gigmacro",
  9806. height: math.unit(9310, "miles")
  9807. },
  9808. {
  9809. name: "Teramacro",
  9810. height: math.unit(1567005010, "miles")
  9811. },
  9812. {
  9813. name: "Examacro",
  9814. height: math.unit(1425, "parsecs")
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(400, "feet"),
  9823. weight: math.unit(44444444, "lb"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/major-colonel/front.svg"
  9827. }
  9828. },
  9829. back: {
  9830. height: math.unit(400, "feet"),
  9831. weight: math.unit(44444444, "lb"),
  9832. name: "Back",
  9833. image: {
  9834. source: "./media/characters/major-colonel/back.svg"
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Macro",
  9841. height: math.unit(400, "feet"),
  9842. default: true
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9848. {
  9849. catFront: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(120, "lb"),
  9852. name: "Front (Cat Side)",
  9853. image: {
  9854. source: "./media/characters/axel-lycan/cat-front.svg",
  9855. extra: 430 / 402,
  9856. bottom: 43 / 472.35
  9857. }
  9858. },
  9859. catBack: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(120, "lb"),
  9862. name: "Back (Cat Side)",
  9863. image: {
  9864. source: "./media/characters/axel-lycan/cat-back.svg",
  9865. extra: 447 / 419,
  9866. bottom: 23.3 / 469
  9867. }
  9868. },
  9869. wolfFront: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(120, "lb"),
  9872. name: "Front (Wolf Side)",
  9873. image: {
  9874. source: "./media/characters/axel-lycan/wolf-front.svg",
  9875. extra: 485 / 456,
  9876. bottom: 19 / 504
  9877. }
  9878. },
  9879. wolfBack: {
  9880. height: math.unit(6, "feet"),
  9881. weight: math.unit(120, "lb"),
  9882. name: "Back (Wolf Side)",
  9883. image: {
  9884. source: "./media/characters/axel-lycan/wolf-back.svg",
  9885. extra: 475 / 438,
  9886. bottom: 39.2 / 514
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(1, "km"),
  9894. default: true
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9900. {
  9901. front: {
  9902. height: math.unit(5 + 9 / 12, "feet"),
  9903. weight: math.unit(175, "lb"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/vanrel-hyena/front.svg",
  9907. extra: 1086 / 1010,
  9908. bottom: 0.04
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(5 + 9 / 12, "feet"),
  9916. default: true
  9917. },
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9922. {
  9923. front: {
  9924. height: math.unit(6, "feet"),
  9925. weight: math.unit(103, "lb"),
  9926. name: "Front",
  9927. image: {
  9928. source: "./media/characters/abbott-absol/front.svg",
  9929. extra: 2010 / 1842
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Megamicro",
  9936. height: math.unit(0.1, "mm")
  9937. },
  9938. {
  9939. name: "Micro",
  9940. height: math.unit(1, "inch")
  9941. },
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(6, "feet"),
  9945. default: true
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9951. {
  9952. front: {
  9953. height: math.unit(6, "feet"),
  9954. weight: math.unit(264, "lb"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/hector/front.svg",
  9958. extra: 2280 / 2130,
  9959. bottom: 0.07
  9960. }
  9961. },
  9962. },
  9963. [
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(12.25, "foot"),
  9967. default: true
  9968. },
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(160, "feet")
  9972. },
  9973. ]
  9974. ))
  9975. characterMakers.push(() => makeCharacter(
  9976. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9977. {
  9978. front: {
  9979. height: math.unit(6, "feet"),
  9980. weight: math.unit(150, "lb"),
  9981. name: "Front",
  9982. image: {
  9983. source: "./media/characters/sal/front.svg",
  9984. extra: 1846 / 1699,
  9985. bottom: 0.04
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Megamacro",
  9992. height: math.unit(10, "miles"),
  9993. default: true
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9999. {
  10000. front: {
  10001. height: math.unit(3, "meters"),
  10002. weight: math.unit(450, "kg"),
  10003. name: "front",
  10004. image: {
  10005. source: "./media/characters/ranger/front.svg",
  10006. extra: 2401 / 2243,
  10007. bottom: 0.05
  10008. }
  10009. },
  10010. },
  10011. [
  10012. {
  10013. name: "Normal",
  10014. height: math.unit(3, "meters"),
  10015. default: true
  10016. },
  10017. ]
  10018. ))
  10019. characterMakers.push(() => makeCharacter(
  10020. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10021. {
  10022. front: {
  10023. height: math.unit(14, "feet"),
  10024. weight: math.unit(800, "kg"),
  10025. name: "Front",
  10026. image: {
  10027. source: "./media/characters/theresa/front.svg",
  10028. extra: 3575 / 3346,
  10029. bottom: 0.03
  10030. }
  10031. },
  10032. },
  10033. [
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(14, "feet"),
  10037. default: true
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10043. {
  10044. front: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(3, "kg"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/ine/front.svg",
  10050. extra: 678 / 539,
  10051. bottom: 0.023
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Normal",
  10058. height: math.unit(2.265, "feet"),
  10059. default: true
  10060. },
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10065. {
  10066. front: {
  10067. height: math.unit(5, "feet"),
  10068. weight: math.unit(30, "kg"),
  10069. name: "Front",
  10070. image: {
  10071. source: "./media/characters/vial/front.svg",
  10072. extra: 1365 / 1277,
  10073. bottom: 0.04
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Normal",
  10080. height: math.unit(5, "feet"),
  10081. default: true
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10087. {
  10088. side: {
  10089. height: math.unit(3.4, "meters"),
  10090. weight: math.unit(1000, "lb"),
  10091. name: "Side",
  10092. image: {
  10093. source: "./media/characters/rovoska/side.svg",
  10094. extra: 4403 / 1515
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(3.4, "meters"),
  10102. default: true
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10108. {
  10109. front: {
  10110. height: math.unit(8, "feet"),
  10111. weight: math.unit(315, "lb"),
  10112. name: "Front",
  10113. image: {
  10114. source: "./media/characters/gunner-rotthbauer/front.svg"
  10115. }
  10116. },
  10117. back: {
  10118. height: math.unit(8, "feet"),
  10119. weight: math.unit(315, "lb"),
  10120. name: "Back",
  10121. image: {
  10122. source: "./media/characters/gunner-rotthbauer/back.svg"
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Micro",
  10129. height: math.unit(3.5, "inches")
  10130. },
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(8, "feet"),
  10134. default: true
  10135. },
  10136. {
  10137. name: "Macro",
  10138. height: math.unit(250, "feet")
  10139. },
  10140. {
  10141. name: "Megamacro",
  10142. height: math.unit(1, "AU")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(5 + 5 / 12, "feet"),
  10151. weight: math.unit(140, "lb"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/allatia/front.svg",
  10155. extra: 1227 / 1180,
  10156. bottom: 0.027
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(5 + 5 / 12, "feet")
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(250, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(8, "miles")
  10173. }
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(120, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/tene/front.svg",
  10185. extra: 814/750,
  10186. bottom: 36/850
  10187. }
  10188. },
  10189. stomping: {
  10190. height: math.unit(2.025, "meters"),
  10191. weight: math.unit(120, "lb"),
  10192. name: "Stomping",
  10193. image: {
  10194. source: "./media/characters/tene/stomping.svg",
  10195. extra: 885/821,
  10196. bottom: 15/900
  10197. }
  10198. },
  10199. sitting: {
  10200. height: math.unit(1, "meter"),
  10201. weight: math.unit(120, "lb"),
  10202. name: "Sitting",
  10203. image: {
  10204. source: "./media/characters/tene/sitting.svg",
  10205. extra: 396/366,
  10206. bottom: 79/475
  10207. }
  10208. },
  10209. smiling: {
  10210. height: math.unit(1.2, "feet"),
  10211. name: "Smiling",
  10212. image: {
  10213. source: "./media/characters/tene/smiling.svg",
  10214. extra: 1364/1071,
  10215. bottom: 0/1364
  10216. }
  10217. },
  10218. smug: {
  10219. height: math.unit(1.3, "feet"),
  10220. name: "Smug",
  10221. image: {
  10222. source: "./media/characters/tene/smug.svg",
  10223. extra: 1323/1082,
  10224. bottom: 0/1323
  10225. }
  10226. },
  10227. feral: {
  10228. height: math.unit(3.9, "feet"),
  10229. weight: math.unit(250, "lb"),
  10230. name: "Feral",
  10231. image: {
  10232. source: "./media/characters/tene/feral.svg",
  10233. extra: 717 / 458,
  10234. bottom: 0.179
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Normal",
  10241. height: math.unit(6, "feet")
  10242. },
  10243. {
  10244. name: "Macro",
  10245. height: math.unit(300, "feet"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Megamacro",
  10250. height: math.unit(5, "miles")
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10256. {
  10257. side: {
  10258. height: math.unit(6, "feet"),
  10259. name: "Side",
  10260. image: {
  10261. source: "./media/characters/evander/side.svg",
  10262. extra: 877 / 477
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(0.83, "meters"),
  10270. default: true
  10271. },
  10272. ]
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10276. {
  10277. front: {
  10278. height: math.unit(12, "feet"),
  10279. weight: math.unit(1000, "lb"),
  10280. name: "Front",
  10281. image: {
  10282. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10283. extra: 1762 / 1611
  10284. }
  10285. },
  10286. back: {
  10287. height: math.unit(12, "feet"),
  10288. weight: math.unit(1000, "lb"),
  10289. name: "Back",
  10290. image: {
  10291. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10292. extra: 1762 / 1611
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(12, "feet"),
  10300. default: true
  10301. },
  10302. {
  10303. name: "Kaiju",
  10304. height: math.unit(150, "feet")
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(150, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/zero-alurus/front.svg"
  10317. }
  10318. },
  10319. back: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(150, "lb"),
  10322. name: "Back",
  10323. image: {
  10324. source: "./media/characters/zero-alurus/back.svg"
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(5 + 10 / 12, "feet")
  10332. },
  10333. {
  10334. name: "Macro",
  10335. height: math.unit(60, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Macro+",
  10340. height: math.unit(450, "feet")
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10346. {
  10347. front: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(200, "lb"),
  10350. name: "Front",
  10351. image: {
  10352. source: "./media/characters/mega-shi/front.svg",
  10353. extra: 1279 / 1250,
  10354. bottom: 0.02
  10355. }
  10356. },
  10357. back: {
  10358. height: math.unit(6, "feet"),
  10359. weight: math.unit(200, "lb"),
  10360. name: "Back",
  10361. image: {
  10362. source: "./media/characters/mega-shi/back.svg",
  10363. extra: 1279 / 1250,
  10364. bottom: 0.02
  10365. }
  10366. },
  10367. },
  10368. [
  10369. {
  10370. name: "Micro",
  10371. height: math.unit(16 + 6 / 12, "feet")
  10372. },
  10373. {
  10374. name: "Third Dimension",
  10375. height: math.unit(40, "meters")
  10376. },
  10377. {
  10378. name: "Normal",
  10379. height: math.unit(660, "feet"),
  10380. default: true
  10381. },
  10382. {
  10383. name: "Megamacro",
  10384. height: math.unit(10, "miles")
  10385. },
  10386. {
  10387. name: "Planetary Launch",
  10388. height: math.unit(500, "miles")
  10389. },
  10390. {
  10391. name: "Interstellar",
  10392. height: math.unit(1e9, "miles")
  10393. },
  10394. {
  10395. name: "Leaving the Universe",
  10396. height: math.unit(1, "gigaparsec")
  10397. },
  10398. {
  10399. name: "Travelling Universes",
  10400. height: math.unit(30e15, "parsecs")
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(5 + 4/12, "feet"),
  10409. weight: math.unit(120, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/odyssey/front.svg",
  10413. extra: 1747/1571,
  10414. bottom: 47/1794
  10415. }
  10416. },
  10417. side: {
  10418. height: math.unit(5.1, "feet"),
  10419. weight: math.unit(120, "lb"),
  10420. name: "Side",
  10421. image: {
  10422. source: "./media/characters/odyssey/side.svg",
  10423. extra: 1847/1619,
  10424. bottom: 47/1894
  10425. }
  10426. },
  10427. lounging: {
  10428. height: math.unit(1.464, "feet"),
  10429. weight: math.unit(120, "lb"),
  10430. name: "Lounging",
  10431. image: {
  10432. source: "./media/characters/odyssey/lounging.svg",
  10433. extra: 1235/837,
  10434. bottom: 551/1786
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(5 + 4 / 12, "feet")
  10442. },
  10443. {
  10444. name: "Macro",
  10445. height: math.unit(1, "km")
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(3000, "km")
  10450. },
  10451. {
  10452. name: "Gigamacro",
  10453. height: math.unit(1, "AU"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Omniversal",
  10458. height: math.unit(100e14, "lightyears")
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(6, "feet"),
  10467. weight: math.unit(300, "lb"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/mekuto/front.svg",
  10471. extra: 921 / 832,
  10472. bottom: 0.03
  10473. }
  10474. },
  10475. hand: {
  10476. height: math.unit(6 / 10.24, "feet"),
  10477. name: "Hand",
  10478. image: {
  10479. source: "./media/characters/mekuto/hand.svg"
  10480. }
  10481. },
  10482. foot: {
  10483. height: math.unit(6 / 5.05, "feet"),
  10484. name: "Foot",
  10485. image: {
  10486. source: "./media/characters/mekuto/foot.svg"
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Minimicro",
  10493. height: math.unit(0.2, "inches")
  10494. },
  10495. {
  10496. name: "Micro",
  10497. height: math.unit(1.5, "inches")
  10498. },
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(5 + 11 / 12, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Minimacro",
  10506. height: math.unit(17 + 9 / 12, "feet")
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(177.5, "feet")
  10511. },
  10512. {
  10513. name: "Megamacro",
  10514. height: math.unit(152, "miles")
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10520. {
  10521. front: {
  10522. height: math.unit(6.5, "inches"),
  10523. weight: math.unit(13, "oz"),
  10524. name: "Front",
  10525. image: {
  10526. source: "./media/characters/dafydd-tomos/front.svg",
  10527. extra: 2990 / 2603,
  10528. bottom: 0.03
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Micro",
  10535. height: math.unit(6.5, "inches"),
  10536. default: true
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10542. {
  10543. front: {
  10544. height: math.unit(6, "feet"),
  10545. weight: math.unit(150, "lb"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/splinter/front.svg",
  10549. extra: 2990 / 2882,
  10550. bottom: 0.04
  10551. }
  10552. },
  10553. back: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(150, "lb"),
  10556. name: "Back",
  10557. image: {
  10558. source: "./media/characters/splinter/back.svg",
  10559. extra: 2990 / 2882,
  10560. bottom: 0.04
  10561. }
  10562. },
  10563. },
  10564. [
  10565. {
  10566. name: "Normal",
  10567. height: math.unit(6, "feet")
  10568. },
  10569. {
  10570. name: "Macro",
  10571. height: math.unit(230, "meters"),
  10572. default: true
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(4 + 10 / 12, "feet"),
  10581. weight: math.unit(480, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/snow-gabumon/front.svg",
  10585. extra: 1140 / 963,
  10586. bottom: 0.058
  10587. }
  10588. },
  10589. back: {
  10590. height: math.unit(4 + 10 / 12, "feet"),
  10591. weight: math.unit(480, "lb"),
  10592. name: "Back",
  10593. image: {
  10594. source: "./media/characters/snow-gabumon/back.svg",
  10595. extra: 1115 / 962,
  10596. bottom: 0.041
  10597. }
  10598. },
  10599. frontUndresed: {
  10600. height: math.unit(4 + 10 / 12, "feet"),
  10601. weight: math.unit(480, "lb"),
  10602. name: "Front (Undressed)",
  10603. image: {
  10604. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10605. extra: 1061 / 960,
  10606. bottom: 0.045
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Micro",
  10613. height: math.unit(1, "inch")
  10614. },
  10615. {
  10616. name: "Normal",
  10617. height: math.unit(4 + 10 / 12, "feet"),
  10618. default: true
  10619. },
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(200, "feet")
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(120, "miles")
  10627. },
  10628. {
  10629. name: "Gigamacro",
  10630. height: math.unit(9800, "miles")
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10636. {
  10637. front: {
  10638. height: math.unit(1.7, "meters"),
  10639. weight: math.unit(140, "lb"),
  10640. name: "Front",
  10641. image: {
  10642. source: "./media/characters/moody/front.svg",
  10643. extra: 3226 / 3007,
  10644. bottom: 0.087
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Micro",
  10651. height: math.unit(1, "mm")
  10652. },
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(1.7, "meters"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Macro",
  10660. height: math.unit(80, "meters")
  10661. },
  10662. {
  10663. name: "Macro+",
  10664. height: math.unit(500, "meters")
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10670. {
  10671. front: {
  10672. height: math.unit(6, "feet"),
  10673. weight: math.unit(150, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/zyas/front.svg",
  10677. extra: 1180 / 1120,
  10678. bottom: 0.045
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Normal",
  10685. height: math.unit(10, "feet"),
  10686. default: true
  10687. },
  10688. {
  10689. name: "Macro",
  10690. height: math.unit(500, "feet")
  10691. },
  10692. {
  10693. name: "Megamacro",
  10694. height: math.unit(5, "miles")
  10695. },
  10696. {
  10697. name: "Teramacro",
  10698. height: math.unit(150000, "miles")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(150, "lb"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/cuon/front.svg",
  10711. extra: 1390 / 1320,
  10712. bottom: 0.008
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Micro",
  10719. height: math.unit(3, "inches")
  10720. },
  10721. {
  10722. name: "Normal",
  10723. height: math.unit(18 + 9 / 12, "feet"),
  10724. default: true
  10725. },
  10726. {
  10727. name: "Macro",
  10728. height: math.unit(360, "feet")
  10729. },
  10730. {
  10731. name: "Megamacro",
  10732. height: math.unit(360, "miles")
  10733. },
  10734. ]
  10735. ))
  10736. characterMakers.push(() => makeCharacter(
  10737. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10738. {
  10739. front: {
  10740. height: math.unit(2.4, "meters"),
  10741. weight: math.unit(70, "kg"),
  10742. name: "Front",
  10743. image: {
  10744. source: "./media/characters/nyanuxk/front.svg",
  10745. extra: 1172 / 1084,
  10746. bottom: 0.065
  10747. }
  10748. },
  10749. side: {
  10750. height: math.unit(2.4, "meters"),
  10751. weight: math.unit(70, "kg"),
  10752. name: "Side",
  10753. image: {
  10754. source: "./media/characters/nyanuxk/side.svg",
  10755. extra: 1190 / 1132,
  10756. bottom: 0.007
  10757. }
  10758. },
  10759. back: {
  10760. height: math.unit(2.4, "meters"),
  10761. weight: math.unit(70, "kg"),
  10762. name: "Back",
  10763. image: {
  10764. source: "./media/characters/nyanuxk/back.svg",
  10765. extra: 1200 / 1141,
  10766. bottom: 0.015
  10767. }
  10768. },
  10769. foot: {
  10770. height: math.unit(0.52, "meters"),
  10771. name: "Foot",
  10772. image: {
  10773. source: "./media/characters/nyanuxk/foot.svg"
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Micro",
  10780. height: math.unit(2, "cm")
  10781. },
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(2.4, "meters"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Smaller Macro",
  10789. height: math.unit(120, "meters")
  10790. },
  10791. {
  10792. name: "Bigger Macro",
  10793. height: math.unit(1.2, "km")
  10794. },
  10795. {
  10796. name: "Megamacro",
  10797. height: math.unit(15, "kilometers")
  10798. },
  10799. {
  10800. name: "Gigamacro",
  10801. height: math.unit(2000, "km")
  10802. },
  10803. {
  10804. name: "Teramacro",
  10805. height: math.unit(500000, "km")
  10806. },
  10807. ]
  10808. ))
  10809. characterMakers.push(() => makeCharacter(
  10810. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10811. {
  10812. side: {
  10813. height: math.unit(6, "feet"),
  10814. name: "Side",
  10815. image: {
  10816. source: "./media/characters/ailbhe/side.svg",
  10817. extra: 757 / 464,
  10818. bottom: 0.041
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(1.07, "meters"),
  10826. default: true
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(120, "kg"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/zevulfius/front.svg",
  10839. extra: 965 / 903
  10840. }
  10841. },
  10842. side: {
  10843. height: math.unit(6, "feet"),
  10844. weight: math.unit(120, "kg"),
  10845. name: "Side",
  10846. image: {
  10847. source: "./media/characters/zevulfius/side.svg",
  10848. extra: 939 / 900
  10849. }
  10850. },
  10851. back: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(120, "kg"),
  10854. name: "Back",
  10855. image: {
  10856. source: "./media/characters/zevulfius/back.svg",
  10857. extra: 918 / 854,
  10858. bottom: 0.005
  10859. }
  10860. },
  10861. foot: {
  10862. height: math.unit(6 / 3.72, "feet"),
  10863. name: "Foot",
  10864. image: {
  10865. source: "./media/characters/zevulfius/foot.svg"
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Macro",
  10872. height: math.unit(750, "meters")
  10873. },
  10874. {
  10875. name: "Megamacro",
  10876. height: math.unit(20, "km"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Gigamacro",
  10881. height: math.unit(2000, "km")
  10882. },
  10883. {
  10884. name: "Teramacro",
  10885. height: math.unit(250000, "km")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(100, "feet"),
  10894. weight: math.unit(350, "kg"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/rikes/front.svg",
  10898. extra: 1565 / 1483,
  10899. bottom: 0.017
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Macro",
  10906. height: math.unit(100, "feet"),
  10907. default: true
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(8, "feet"),
  10916. weight: math.unit(356, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/adam-silver-mane/front.svg",
  10920. extra: 1036/937,
  10921. bottom: 63/1099
  10922. }
  10923. },
  10924. side: {
  10925. height: math.unit(8, "feet"),
  10926. weight: math.unit(356, "lb"),
  10927. name: "Side",
  10928. image: {
  10929. source: "./media/characters/adam-silver-mane/side.svg",
  10930. extra: 997/901,
  10931. bottom: 59/1056
  10932. }
  10933. },
  10934. frontNsfw: {
  10935. height: math.unit(8, "feet"),
  10936. weight: math.unit(356, "lb"),
  10937. name: "Front (NSFW)",
  10938. image: {
  10939. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10940. extra: 1036/937,
  10941. bottom: 63/1099
  10942. }
  10943. },
  10944. sideNsfw: {
  10945. height: math.unit(8, "feet"),
  10946. weight: math.unit(356, "lb"),
  10947. name: "Side (NSFW)",
  10948. image: {
  10949. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10950. extra: 997/901,
  10951. bottom: 59/1056
  10952. }
  10953. },
  10954. dick: {
  10955. height: math.unit(2.1, "feet"),
  10956. name: "Dick",
  10957. image: {
  10958. source: "./media/characters/adam-silver-mane/dick.svg"
  10959. }
  10960. },
  10961. taur: {
  10962. height: math.unit(16, "feet"),
  10963. weight: math.unit(1500, "kg"),
  10964. name: "Taur",
  10965. image: {
  10966. source: "./media/characters/adam-silver-mane/taur.svg",
  10967. extra: 1713 / 1571,
  10968. bottom: 0.01
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(8, "feet")
  10976. },
  10977. {
  10978. name: "Minimacro",
  10979. height: math.unit(80, "feet")
  10980. },
  10981. {
  10982. name: "MDA",
  10983. height: math.unit(80, "meters")
  10984. },
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(800, "feet"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Megamacro",
  10992. height: math.unit(8000, "feet")
  10993. },
  10994. {
  10995. name: "Gigamacro",
  10996. height: math.unit(800, "miles")
  10997. },
  10998. {
  10999. name: "Teramacro",
  11000. height: math.unit(80000, "miles")
  11001. },
  11002. {
  11003. name: "Celestial",
  11004. height: math.unit(8e6, "miles")
  11005. },
  11006. {
  11007. name: "Star Dragon",
  11008. height: math.unit(800000, "parsecs")
  11009. },
  11010. {
  11011. name: "Godly",
  11012. height: math.unit(800, "teraparsecs")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(150, "lb"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/ky'owin/front.svg",
  11025. extra: 3888 / 3068,
  11026. bottom: 0.015
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(6 + 8 / 12, "feet")
  11034. },
  11035. {
  11036. name: "Large",
  11037. height: math.unit(68, "feet")
  11038. },
  11039. {
  11040. name: "Macro",
  11041. height: math.unit(132, "feet")
  11042. },
  11043. {
  11044. name: "Macro+",
  11045. height: math.unit(340, "feet")
  11046. },
  11047. {
  11048. name: "Macro++",
  11049. height: math.unit(680, "feet"),
  11050. default: true
  11051. },
  11052. {
  11053. name: "Megamacro",
  11054. height: math.unit(1, "mile")
  11055. },
  11056. {
  11057. name: "Megamacro+",
  11058. height: math.unit(10, "miles")
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(4, "feet"),
  11067. weight: math.unit(50, "lb"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/mal/front.svg",
  11071. extra: 785 / 724,
  11072. bottom: 0.07
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Micro",
  11079. height: math.unit(4, "inches")
  11080. },
  11081. {
  11082. name: "Normal",
  11083. height: math.unit(4, "feet"),
  11084. default: true
  11085. },
  11086. {
  11087. name: "Macro",
  11088. height: math.unit(200, "feet")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/jordan-deware/front.svg",
  11101. extra: 1191 / 1012
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Nano",
  11108. height: math.unit(0.01, "mm")
  11109. },
  11110. {
  11111. name: "Minimicro",
  11112. height: math.unit(1, "mm")
  11113. },
  11114. {
  11115. name: "Micro",
  11116. height: math.unit(0.5, "inches")
  11117. },
  11118. {
  11119. name: "Normal",
  11120. height: math.unit(4, "feet"),
  11121. default: true
  11122. },
  11123. {
  11124. name: "Minimacro",
  11125. height: math.unit(40, "meters")
  11126. },
  11127. {
  11128. name: "Small Macro",
  11129. height: math.unit(400, "meters")
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(4, "miles")
  11134. },
  11135. {
  11136. name: "Megamacro",
  11137. height: math.unit(40, "miles")
  11138. },
  11139. {
  11140. name: "Megamacro+",
  11141. height: math.unit(400, "miles")
  11142. },
  11143. {
  11144. name: "Gigamacro",
  11145. height: math.unit(400000, "miles")
  11146. },
  11147. ]
  11148. ))
  11149. characterMakers.push(() => makeCharacter(
  11150. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11151. {
  11152. side: {
  11153. height: math.unit(6, "feet"),
  11154. weight: math.unit(150, "lb"),
  11155. name: "Side",
  11156. image: {
  11157. source: "./media/characters/kimiko/side.svg",
  11158. extra: 600 / 358
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(15, "feet"),
  11166. default: true
  11167. },
  11168. {
  11169. name: "Macro",
  11170. height: math.unit(220, "feet")
  11171. },
  11172. {
  11173. name: "Macro+",
  11174. height: math.unit(1450, "feet")
  11175. },
  11176. {
  11177. name: "Megamacro",
  11178. height: math.unit(11500, "feet")
  11179. },
  11180. {
  11181. name: "Gigamacro",
  11182. height: math.unit(9500, "miles")
  11183. },
  11184. {
  11185. name: "Teramacro",
  11186. height: math.unit(2208005005, "miles")
  11187. },
  11188. {
  11189. name: "Examacro",
  11190. height: math.unit(2750, "parsecs")
  11191. },
  11192. {
  11193. name: "Zettamacro",
  11194. height: math.unit(101500, "parsecs")
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11200. {
  11201. front: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(70, "kg"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/andrew-sleepy/front.svg"
  11207. }
  11208. },
  11209. side: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(70, "kg"),
  11212. name: "Side",
  11213. image: {
  11214. source: "./media/characters/andrew-sleepy/side.svg"
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Micro",
  11221. height: math.unit(1, "mm"),
  11222. default: true
  11223. },
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11228. {
  11229. front: {
  11230. height: math.unit(6, "feet"),
  11231. weight: math.unit(150, "lb"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/judio/front.svg",
  11235. extra: 1258 / 1110
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Normal",
  11242. height: math.unit(5 + 6 / 12, "feet")
  11243. },
  11244. {
  11245. name: "Macro",
  11246. height: math.unit(1000, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Megamacro",
  11251. height: math.unit(10, "miles")
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11257. {
  11258. frontDressed: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(68, "kg"),
  11261. name: "Front (Dressed)",
  11262. image: {
  11263. source: "./media/characters/nomaxice/front-dressed.svg",
  11264. extra: 1137/824,
  11265. bottom: 74/1211
  11266. }
  11267. },
  11268. frontShorts: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(68, "kg"),
  11271. name: "Front (Shorts)",
  11272. image: {
  11273. source: "./media/characters/nomaxice/front-shorts.svg",
  11274. extra: 1137/824,
  11275. bottom: 74/1211
  11276. }
  11277. },
  11278. back: {
  11279. height: math.unit(6, "feet"),
  11280. weight: math.unit(68, "kg"),
  11281. name: "Back",
  11282. image: {
  11283. source: "./media/characters/nomaxice/back.svg",
  11284. extra: 822/786,
  11285. bottom: 39/861
  11286. }
  11287. },
  11288. hand: {
  11289. height: math.unit(0.565, "feet"),
  11290. name: "Hand",
  11291. image: {
  11292. source: "./media/characters/nomaxice/hand.svg"
  11293. }
  11294. },
  11295. foot: {
  11296. height: math.unit(1, "feet"),
  11297. name: "Foot",
  11298. image: {
  11299. source: "./media/characters/nomaxice/foot.svg"
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Micro",
  11306. height: math.unit(8, "cm")
  11307. },
  11308. {
  11309. name: "Norm",
  11310. height: math.unit(1.82, "m")
  11311. },
  11312. {
  11313. name: "Norm+",
  11314. height: math.unit(8.8, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Big",
  11319. height: math.unit(8, "meters")
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(18, "meters")
  11324. },
  11325. {
  11326. name: "Macro+",
  11327. height: math.unit(88, "meters")
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11333. {
  11334. front: {
  11335. height: math.unit(12, "feet"),
  11336. weight: math.unit(1.5, "tons"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/dydros/front.svg",
  11340. extra: 863 / 800,
  11341. bottom: 0.015
  11342. }
  11343. },
  11344. back: {
  11345. height: math.unit(12, "feet"),
  11346. weight: math.unit(1.5, "tons"),
  11347. name: "Back",
  11348. image: {
  11349. source: "./media/characters/dydros/back.svg",
  11350. extra: 900 / 843,
  11351. bottom: 0.005
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Normal",
  11358. height: math.unit(12, "feet"),
  11359. default: true
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11365. {
  11366. front: {
  11367. height: math.unit(6, "feet"),
  11368. weight: math.unit(100, "kg"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/riggi/front.svg",
  11372. extra: 5787 / 5303
  11373. }
  11374. },
  11375. hyper: {
  11376. height: math.unit(6 * 5 / 3, "feet"),
  11377. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11378. name: "Hyper",
  11379. image: {
  11380. source: "./media/characters/riggi/hyper.svg",
  11381. extra: 3595 / 3485
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Small Macro",
  11388. height: math.unit(50, "feet")
  11389. },
  11390. {
  11391. name: "Default",
  11392. height: math.unit(200, "feet"),
  11393. default: true
  11394. },
  11395. {
  11396. name: "Loom",
  11397. height: math.unit(10000, "feet")
  11398. },
  11399. {
  11400. name: "Cruising Altitude",
  11401. height: math.unit(30000, "feet")
  11402. },
  11403. {
  11404. name: "Megamacro",
  11405. height: math.unit(100, "miles")
  11406. },
  11407. {
  11408. name: "Continent Sized",
  11409. height: math.unit(2800, "miles")
  11410. },
  11411. {
  11412. name: "Earth Sized",
  11413. height: math.unit(8000, "miles")
  11414. },
  11415. ]
  11416. ))
  11417. characterMakers.push(() => makeCharacter(
  11418. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11419. {
  11420. front: {
  11421. height: math.unit(6, "feet"),
  11422. weight: math.unit(250, "lb"),
  11423. name: "Front",
  11424. image: {
  11425. source: "./media/characters/alexi/front.svg",
  11426. extra: 3483 / 3291,
  11427. bottom: 0.04
  11428. }
  11429. },
  11430. back: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(250, "lb"),
  11433. name: "Back",
  11434. image: {
  11435. source: "./media/characters/alexi/back.svg",
  11436. extra: 3533 / 3356,
  11437. bottom: 0.021
  11438. }
  11439. },
  11440. frontTransforming: {
  11441. height: math.unit(8.58, "feet"),
  11442. weight: math.unit(1300, "lb"),
  11443. name: "Transforming",
  11444. image: {
  11445. source: "./media/characters/alexi/front-transforming.svg",
  11446. extra: 437 / 409,
  11447. bottom: 19 / 458.66
  11448. }
  11449. },
  11450. frontTransformed: {
  11451. height: math.unit(12.5, "feet"),
  11452. weight: math.unit(4000, "lb"),
  11453. name: "Transformed",
  11454. image: {
  11455. source: "./media/characters/alexi/front-transformed.svg",
  11456. extra: 639 / 614,
  11457. bottom: 30.55 / 671
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Normal",
  11464. height: math.unit(14, "feet"),
  11465. default: true
  11466. },
  11467. {
  11468. name: "Minimacro",
  11469. height: math.unit(30, "meters")
  11470. },
  11471. {
  11472. name: "Macro",
  11473. height: math.unit(500, "meters")
  11474. },
  11475. {
  11476. name: "Megamacro",
  11477. height: math.unit(9000, "km")
  11478. },
  11479. {
  11480. name: "Teramacro",
  11481. height: math.unit(384000, "km")
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11487. {
  11488. front: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(150, "lb"),
  11491. name: "Front",
  11492. image: {
  11493. source: "./media/characters/kayroo/front.svg",
  11494. extra: 1153 / 1038,
  11495. bottom: 0.06
  11496. }
  11497. },
  11498. foot: {
  11499. height: math.unit(6, "feet"),
  11500. weight: math.unit(150, "lb"),
  11501. name: "Foot",
  11502. image: {
  11503. source: "./media/characters/kayroo/foot.svg"
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Normal",
  11510. height: math.unit(8, "feet"),
  11511. default: true
  11512. },
  11513. {
  11514. name: "Minimacro",
  11515. height: math.unit(250, "feet")
  11516. },
  11517. {
  11518. name: "Macro",
  11519. height: math.unit(2800, "feet")
  11520. },
  11521. {
  11522. name: "Megamacro",
  11523. height: math.unit(5200, "feet")
  11524. },
  11525. {
  11526. name: "Gigamacro",
  11527. height: math.unit(27000, "feet")
  11528. },
  11529. {
  11530. name: "Omega",
  11531. height: math.unit(45000, "feet")
  11532. },
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11537. {
  11538. front: {
  11539. height: math.unit(18, "feet"),
  11540. weight: math.unit(5800, "lb"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/rhys/front.svg",
  11544. extra: 3386 / 3090,
  11545. bottom: 0.07
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(18, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Working Size",
  11557. height: math.unit(200, "feet")
  11558. },
  11559. {
  11560. name: "Demolition Size",
  11561. height: math.unit(2000, "feet")
  11562. },
  11563. {
  11564. name: "Maximum Licensed Size",
  11565. height: math.unit(5, "miles")
  11566. },
  11567. {
  11568. name: "Maximum Observed Size",
  11569. height: math.unit(10, "yottameters")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11575. {
  11576. front: {
  11577. height: math.unit(6, "feet"),
  11578. weight: math.unit(250, "lb"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/toto/front.svg",
  11582. extra: 527 / 479,
  11583. bottom: 0.05
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Micro",
  11590. height: math.unit(3, "feet")
  11591. },
  11592. {
  11593. name: "Normal",
  11594. height: math.unit(10, "feet")
  11595. },
  11596. {
  11597. name: "Macro",
  11598. height: math.unit(150, "feet"),
  11599. default: true
  11600. },
  11601. {
  11602. name: "Megamacro",
  11603. height: math.unit(1200, "feet")
  11604. },
  11605. ]
  11606. ))
  11607. characterMakers.push(() => makeCharacter(
  11608. { name: "King", species: ["lion"], tags: ["anthro"] },
  11609. {
  11610. back: {
  11611. height: math.unit(6, "feet"),
  11612. weight: math.unit(150, "lb"),
  11613. name: "Back",
  11614. image: {
  11615. source: "./media/characters/king/back.svg"
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Micro",
  11622. height: math.unit(2, "inches")
  11623. },
  11624. {
  11625. name: "Normal",
  11626. height: math.unit(8, "feet")
  11627. },
  11628. {
  11629. name: "Macro",
  11630. height: math.unit(200, "feet"),
  11631. default: true
  11632. },
  11633. {
  11634. name: "Megamacro",
  11635. height: math.unit(50, "miles")
  11636. },
  11637. ]
  11638. ))
  11639. characterMakers.push(() => makeCharacter(
  11640. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11641. {
  11642. front: {
  11643. height: math.unit(11, "feet"),
  11644. weight: math.unit(1400, "lb"),
  11645. name: "Front",
  11646. image: {
  11647. source: "./media/characters/cordite/front.svg",
  11648. extra: 1919/1827,
  11649. bottom: 40/1959
  11650. }
  11651. },
  11652. side: {
  11653. height: math.unit(11, "feet"),
  11654. weight: math.unit(1400, "lb"),
  11655. name: "Side",
  11656. image: {
  11657. source: "./media/characters/cordite/side.svg",
  11658. extra: 1908/1793,
  11659. bottom: 38/1946
  11660. }
  11661. },
  11662. back: {
  11663. height: math.unit(11, "feet"),
  11664. weight: math.unit(1400, "lb"),
  11665. name: "Back",
  11666. image: {
  11667. source: "./media/characters/cordite/back.svg",
  11668. extra: 1938/1837,
  11669. bottom: 10/1948
  11670. }
  11671. },
  11672. feral: {
  11673. height: math.unit(2, "feet"),
  11674. weight: math.unit(90, "lb"),
  11675. name: "Feral",
  11676. image: {
  11677. source: "./media/characters/cordite/feral.svg",
  11678. extra: 1260 / 755,
  11679. bottom: 0.05
  11680. }
  11681. },
  11682. },
  11683. [
  11684. {
  11685. name: "Normal",
  11686. height: math.unit(11, "feet"),
  11687. default: true
  11688. },
  11689. ]
  11690. ))
  11691. characterMakers.push(() => makeCharacter(
  11692. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11693. {
  11694. front: {
  11695. height: math.unit(6, "feet"),
  11696. weight: math.unit(150, "lb"),
  11697. name: "Front",
  11698. image: {
  11699. source: "./media/characters/pianostrong/front.svg",
  11700. extra: 6577 / 6254,
  11701. bottom: 0.02
  11702. }
  11703. },
  11704. side: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(150, "lb"),
  11707. name: "Side",
  11708. image: {
  11709. source: "./media/characters/pianostrong/side.svg",
  11710. extra: 6106 / 5730
  11711. }
  11712. },
  11713. back: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(150, "lb"),
  11716. name: "Back",
  11717. image: {
  11718. source: "./media/characters/pianostrong/back.svg",
  11719. extra: 6085 / 5733,
  11720. bottom: 0.01
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Macro",
  11727. height: math.unit(100, "feet")
  11728. },
  11729. {
  11730. name: "Macro+",
  11731. height: math.unit(300, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Macro++",
  11736. height: math.unit(1000, "feet")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11742. {
  11743. front: {
  11744. height: math.unit(6, "feet"),
  11745. weight: math.unit(150, "lb"),
  11746. name: "Front",
  11747. image: {
  11748. source: "./media/characters/kona/front.svg",
  11749. extra: 2960 / 2629,
  11750. bottom: 0.005
  11751. }
  11752. },
  11753. },
  11754. [
  11755. {
  11756. name: "Normal",
  11757. height: math.unit(11 + 8 / 12, "feet")
  11758. },
  11759. {
  11760. name: "Macro",
  11761. height: math.unit(850, "feet"),
  11762. default: true
  11763. },
  11764. {
  11765. name: "Macro+",
  11766. height: math.unit(1.5, "km"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Megamacro",
  11771. height: math.unit(80, "miles")
  11772. },
  11773. {
  11774. name: "Gigamacro",
  11775. height: math.unit(3500, "miles")
  11776. },
  11777. ]
  11778. ))
  11779. characterMakers.push(() => makeCharacter(
  11780. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11781. {
  11782. side: {
  11783. height: math.unit(1.9, "meters"),
  11784. weight: math.unit(326, "kg"),
  11785. name: "Side",
  11786. image: {
  11787. source: "./media/characters/levi/side.svg",
  11788. extra: 1704 / 1334,
  11789. bottom: 0.02
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(1.9, "meters"),
  11797. default: true
  11798. },
  11799. {
  11800. name: "Macro",
  11801. height: math.unit(20, "meters")
  11802. },
  11803. {
  11804. name: "Macro+",
  11805. height: math.unit(200, "meters")
  11806. },
  11807. {
  11808. name: "Megamacro",
  11809. height: math.unit(2, "km")
  11810. },
  11811. {
  11812. name: "Megamacro+",
  11813. height: math.unit(20, "km")
  11814. },
  11815. {
  11816. name: "Gigamacro",
  11817. height: math.unit(2500, "km")
  11818. },
  11819. {
  11820. name: "Gigamacro+",
  11821. height: math.unit(120000, "km")
  11822. },
  11823. {
  11824. name: "Teramacro",
  11825. height: math.unit(7.77e6, "km")
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(6 + 4/12, "feet"),
  11834. weight: math.unit(190, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/bmc/front.svg",
  11838. extra: 1626/1472,
  11839. bottom: 79/1705
  11840. }
  11841. },
  11842. back: {
  11843. height: math.unit(6 + 4/12, "feet"),
  11844. weight: math.unit(190, "lb"),
  11845. name: "Back",
  11846. image: {
  11847. source: "./media/characters/bmc/back.svg",
  11848. extra: 1640/1479,
  11849. bottom: 45/1685
  11850. }
  11851. },
  11852. frontArmor: {
  11853. height: math.unit(6 + 4/12, "feet"),
  11854. weight: math.unit(190, "lb"),
  11855. name: "Front-armor",
  11856. image: {
  11857. source: "./media/characters/bmc/front-armor.svg",
  11858. extra: 1538/1468,
  11859. bottom: 79/1617
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Human-sized",
  11866. height: math.unit(6 + 4 / 12, "feet")
  11867. },
  11868. {
  11869. name: "Interactive Size",
  11870. height: math.unit(25, "feet")
  11871. },
  11872. {
  11873. name: "Small",
  11874. height: math.unit(250, "feet")
  11875. },
  11876. {
  11877. name: "Normal",
  11878. height: math.unit(1250, "feet"),
  11879. default: true
  11880. },
  11881. {
  11882. name: "Good Day",
  11883. height: math.unit(88, "miles")
  11884. },
  11885. {
  11886. name: "Largest Measured Size",
  11887. height: math.unit(105.960, "galaxies")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(20, "feet"),
  11896. weight: math.unit(2016, "kg"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/sven-the-kaiju/front.svg",
  11900. extra: 1277/1250,
  11901. bottom: 35/1312
  11902. }
  11903. },
  11904. mouth: {
  11905. height: math.unit(1.85, "feet"),
  11906. name: "Mouth",
  11907. image: {
  11908. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11909. }
  11910. },
  11911. },
  11912. [
  11913. {
  11914. name: "Fairy",
  11915. height: math.unit(6, "inches")
  11916. },
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(20, "feet"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Rampage",
  11924. height: math.unit(200, "feet")
  11925. },
  11926. {
  11927. name: "Archfey Forest Guardian",
  11928. height: math.unit(1, "mile")
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11934. {
  11935. front: {
  11936. height: math.unit(4, "meters"),
  11937. weight: math.unit(2, "tons"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/marik/front.svg",
  11941. extra: 1057 / 1003,
  11942. bottom: 0.08
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Normal",
  11949. height: math.unit(4, "meters"),
  11950. default: true
  11951. },
  11952. {
  11953. name: "Macro",
  11954. height: math.unit(20, "meters")
  11955. },
  11956. {
  11957. name: "Megamacro",
  11958. height: math.unit(50, "km")
  11959. },
  11960. {
  11961. name: "Gigamacro",
  11962. height: math.unit(100, "km")
  11963. },
  11964. {
  11965. name: "Alpha Macro",
  11966. height: math.unit(7.88e7, "yottameters")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11972. {
  11973. front: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(110, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/mel/front.svg",
  11979. extra: 736 / 617,
  11980. bottom: 0.017
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Pico",
  11987. height: math.unit(3, "pm")
  11988. },
  11989. {
  11990. name: "Nano",
  11991. height: math.unit(3, "nm")
  11992. },
  11993. {
  11994. name: "Micro",
  11995. height: math.unit(0.3, "mm"),
  11996. default: true
  11997. },
  11998. {
  11999. name: "Micro+",
  12000. height: math.unit(3, "mm")
  12001. },
  12002. {
  12003. name: "Normal",
  12004. height: math.unit(5 + 10.5 / 12, "feet")
  12005. },
  12006. ]
  12007. ))
  12008. characterMakers.push(() => makeCharacter(
  12009. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12010. {
  12011. kaiju: {
  12012. height: math.unit(1.75, "meters"),
  12013. weight: math.unit(55, "kg"),
  12014. name: "Kaiju",
  12015. image: {
  12016. source: "./media/characters/lykonous/kaiju.svg",
  12017. extra: 1055 / 946,
  12018. bottom: 0.135
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(2.5, "meters"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Kaiju Dragon",
  12030. height: math.unit(60, "meters")
  12031. },
  12032. {
  12033. name: "Mega Kaiju",
  12034. height: math.unit(120, "km")
  12035. },
  12036. {
  12037. name: "Giga Kaiju",
  12038. height: math.unit(200, "megameters")
  12039. },
  12040. {
  12041. name: "Terra Kaiju",
  12042. height: math.unit(400, "gigameters")
  12043. },
  12044. {
  12045. name: "Kaiju Dragon God",
  12046. height: math.unit(13000, "exaparsecs")
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12052. {
  12053. front: {
  12054. height: math.unit(6, "feet"),
  12055. weight: math.unit(150, "lb"),
  12056. name: "Front",
  12057. image: {
  12058. source: "./media/characters/blü/front.svg",
  12059. extra: 1883 / 1564,
  12060. bottom: 0.031
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Normal",
  12067. height: math.unit(13, "feet"),
  12068. default: true
  12069. },
  12070. {
  12071. name: "Big Boi",
  12072. height: math.unit(150, "meters")
  12073. },
  12074. {
  12075. name: "Mini Stomper",
  12076. height: math.unit(300, "meters")
  12077. },
  12078. {
  12079. name: "Macro",
  12080. height: math.unit(1000, "meters")
  12081. },
  12082. {
  12083. name: "Megamacro",
  12084. height: math.unit(11000, "meters")
  12085. },
  12086. {
  12087. name: "Gigamacro",
  12088. height: math.unit(11000, "km")
  12089. },
  12090. {
  12091. name: "Teramacro",
  12092. height: math.unit(420000, "km")
  12093. },
  12094. {
  12095. name: "Examacro",
  12096. height: math.unit(120, "parsecs")
  12097. },
  12098. {
  12099. name: "God Tho",
  12100. height: math.unit(98000000000, "parsecs")
  12101. },
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12106. {
  12107. taurFront: {
  12108. height: math.unit(6, "feet"),
  12109. weight: math.unit(200, "lb"),
  12110. name: "Taur (Front)",
  12111. image: {
  12112. source: "./media/characters/scales/taur-front.svg",
  12113. extra: 1,
  12114. bottom: 0.05
  12115. }
  12116. },
  12117. taurBack: {
  12118. height: math.unit(6, "feet"),
  12119. weight: math.unit(200, "lb"),
  12120. name: "Taur (Back)",
  12121. image: {
  12122. source: "./media/characters/scales/taur-back.svg",
  12123. extra: 1,
  12124. bottom: 0.08
  12125. }
  12126. },
  12127. anthro: {
  12128. height: math.unit(6 * 7 / 12, "feet"),
  12129. weight: math.unit(100, "lb"),
  12130. name: "Anthro",
  12131. image: {
  12132. source: "./media/characters/scales/anthro.svg",
  12133. extra: 1,
  12134. bottom: 0.06
  12135. }
  12136. },
  12137. },
  12138. [
  12139. {
  12140. name: "Normal",
  12141. height: math.unit(12, "feet"),
  12142. default: true
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(6, "feet"),
  12151. weight: math.unit(150, "lb"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/koragos/front.svg",
  12155. extra: 841 / 794,
  12156. bottom: 0.035
  12157. }
  12158. },
  12159. back: {
  12160. height: math.unit(6, "feet"),
  12161. weight: math.unit(150, "lb"),
  12162. name: "Back",
  12163. image: {
  12164. source: "./media/characters/koragos/back.svg",
  12165. extra: 841 / 810,
  12166. bottom: 0.022
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(6 + 11 / 12, "feet"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(490, "feet")
  12179. },
  12180. {
  12181. name: "Megamacro",
  12182. height: math.unit(10, "miles")
  12183. },
  12184. {
  12185. name: "Gigamacro",
  12186. height: math.unit(50, "miles")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(250, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/xylrem/front.svg",
  12199. extra: 3323 / 3050,
  12200. bottom: 0.065
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Micro",
  12207. height: math.unit(4, "feet")
  12208. },
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(16, "feet"),
  12212. default: true
  12213. },
  12214. {
  12215. name: "Macro",
  12216. height: math.unit(2720, "feet")
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(25000, "miles")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12226. {
  12227. front: {
  12228. height: math.unit(8, "feet"),
  12229. weight: math.unit(250, "kg"),
  12230. name: "Front",
  12231. image: {
  12232. source: "./media/characters/ikideru/front.svg",
  12233. extra: 930 / 870,
  12234. bottom: 0.087
  12235. }
  12236. },
  12237. back: {
  12238. height: math.unit(8, "feet"),
  12239. weight: math.unit(250, "kg"),
  12240. name: "Back",
  12241. image: {
  12242. source: "./media/characters/ikideru/back.svg",
  12243. extra: 919 / 852,
  12244. bottom: 0.055
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Rare",
  12251. height: math.unit(8, "feet"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Playful Loom",
  12256. height: math.unit(80, "feet")
  12257. },
  12258. {
  12259. name: "City Leaner",
  12260. height: math.unit(230, "feet")
  12261. },
  12262. {
  12263. name: "Megamacro",
  12264. height: math.unit(2500, "feet")
  12265. },
  12266. {
  12267. name: "Gigamacro",
  12268. height: math.unit(26400, "feet")
  12269. },
  12270. {
  12271. name: "Tectonic Shifter",
  12272. height: math.unit(1.7, "megameters")
  12273. },
  12274. {
  12275. name: "Planet Carer",
  12276. height: math.unit(21, "megameters")
  12277. },
  12278. {
  12279. name: "God",
  12280. height: math.unit(11157.22, "parsecs")
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12286. {
  12287. front: {
  12288. height: math.unit(6, "feet"),
  12289. weight: math.unit(120, "lb"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/neo/front.svg"
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Micro",
  12299. height: math.unit(2, "inches"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Human Size",
  12304. height: math.unit(5 + 8 / 12, "feet")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(13 + 10 / 12, "feet"),
  12313. weight: math.unit(5320, "lb"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/chauncey-chantz/front.svg",
  12317. extra: 1587 / 1435,
  12318. bottom: 0.02
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Normal",
  12325. height: math.unit(13 + 10 / 12, "feet"),
  12326. default: true
  12327. },
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(45, "feet")
  12331. },
  12332. {
  12333. name: "Megamacro",
  12334. height: math.unit(250, "miles")
  12335. },
  12336. {
  12337. name: "Planetary",
  12338. height: math.unit(10000, "miles")
  12339. },
  12340. {
  12341. name: "Galactic",
  12342. height: math.unit(40000, "parsecs")
  12343. },
  12344. {
  12345. name: "Universal",
  12346. height: math.unit(1, "yottameter")
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12352. {
  12353. front: {
  12354. height: math.unit(6, "feet"),
  12355. weight: math.unit(150, "lb"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/epifox/front.svg",
  12359. extra: 1,
  12360. bottom: 0.075
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Micro",
  12367. height: math.unit(6, "inches")
  12368. },
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(12, "feet"),
  12372. default: true
  12373. },
  12374. {
  12375. name: "Macro",
  12376. height: math.unit(3810, "feet")
  12377. },
  12378. {
  12379. name: "Megamacro",
  12380. height: math.unit(500, "miles")
  12381. },
  12382. ]
  12383. ))
  12384. characterMakers.push(() => makeCharacter(
  12385. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12386. {
  12387. front: {
  12388. height: math.unit(1.8796, "m"),
  12389. weight: math.unit(230, "lb"),
  12390. name: "Front",
  12391. image: {
  12392. source: "./media/characters/colin-t/front.svg",
  12393. extra: 1272 / 1193,
  12394. bottom: 0.07
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Micro",
  12401. height: math.unit(0.571, "meters")
  12402. },
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(1.8796, "meters"),
  12406. default: true
  12407. },
  12408. {
  12409. name: "Tall",
  12410. height: math.unit(4, "meters")
  12411. },
  12412. {
  12413. name: "Macro",
  12414. height: math.unit(67.241, "meters")
  12415. },
  12416. {
  12417. name: "Megamacro",
  12418. height: math.unit(371.856, "meters")
  12419. },
  12420. {
  12421. name: "Planetary",
  12422. height: math.unit(12631.5689, "km")
  12423. },
  12424. ]
  12425. ))
  12426. characterMakers.push(() => makeCharacter(
  12427. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12428. {
  12429. front: {
  12430. height: math.unit(1.85, "meters"),
  12431. weight: math.unit(80, "kg"),
  12432. name: "Front",
  12433. image: {
  12434. source: "./media/characters/matvei/front.svg",
  12435. extra: 614 / 594,
  12436. bottom: 0.01
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Normal",
  12443. height: math.unit(1.85, "meters"),
  12444. default: true
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(5 + 9 / 12, "feet"),
  12453. weight: math.unit(70, "lb"),
  12454. name: "Front",
  12455. image: {
  12456. source: "./media/characters/quincy/front.svg",
  12457. extra: 3041 / 2751
  12458. }
  12459. },
  12460. back: {
  12461. height: math.unit(5 + 9 / 12, "feet"),
  12462. weight: math.unit(70, "lb"),
  12463. name: "Back",
  12464. image: {
  12465. source: "./media/characters/quincy/back.svg",
  12466. extra: 3041 / 2751
  12467. }
  12468. },
  12469. flying: {
  12470. height: math.unit(5 + 4 / 12, "feet"),
  12471. weight: math.unit(70, "lb"),
  12472. name: "Flying",
  12473. image: {
  12474. source: "./media/characters/quincy/flying.svg",
  12475. extra: 1044 / 930
  12476. }
  12477. },
  12478. },
  12479. [
  12480. {
  12481. name: "Micro",
  12482. height: math.unit(3, "cm")
  12483. },
  12484. {
  12485. name: "Normal",
  12486. height: math.unit(5 + 9 / 12, "feet")
  12487. },
  12488. {
  12489. name: "Macro",
  12490. height: math.unit(200, "meters"),
  12491. default: true
  12492. },
  12493. {
  12494. name: "Megamacro",
  12495. height: math.unit(1000, "meters")
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(3 + 11/12, "feet"),
  12504. weight: math.unit(50, "lb"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/vanrel/front.svg",
  12508. extra: 1104/949,
  12509. bottom: 52/1156
  12510. }
  12511. },
  12512. back: {
  12513. height: math.unit(3 + 11/12, "feet"),
  12514. weight: math.unit(50, "lb"),
  12515. name: "Back",
  12516. image: {
  12517. source: "./media/characters/vanrel/back.svg",
  12518. extra: 1119/976,
  12519. bottom: 37/1156
  12520. }
  12521. },
  12522. tome: {
  12523. height: math.unit(1.35, "feet"),
  12524. weight: math.unit(10, "lb"),
  12525. name: "Vanrel's Tome",
  12526. rename: true,
  12527. image: {
  12528. source: "./media/characters/vanrel/tome.svg"
  12529. }
  12530. },
  12531. beans: {
  12532. height: math.unit(0.89, "feet"),
  12533. name: "Beans",
  12534. image: {
  12535. source: "./media/characters/vanrel/beans.svg"
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Normal",
  12542. height: math.unit(3 + 11/12, "feet"),
  12543. default: true
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12549. {
  12550. front: {
  12551. height: math.unit(7 + 5 / 12, "feet"),
  12552. name: "Front",
  12553. image: {
  12554. source: "./media/characters/kuiper-vanrel/front.svg",
  12555. extra: 1219/1169,
  12556. bottom: 69/1288
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(7 + 5 / 12, "feet"),
  12561. name: "Back",
  12562. image: {
  12563. source: "./media/characters/kuiper-vanrel/back.svg",
  12564. extra: 1236/1193,
  12565. bottom: 27/1263
  12566. }
  12567. },
  12568. foot: {
  12569. height: math.unit(0.55, "meters"),
  12570. name: "Foot",
  12571. image: {
  12572. source: "./media/characters/kuiper-vanrel/foot.svg",
  12573. }
  12574. },
  12575. battle: {
  12576. height: math.unit(6.824, "feet"),
  12577. name: "Battle",
  12578. image: {
  12579. source: "./media/characters/kuiper-vanrel/battle.svg",
  12580. extra: 1466 / 1327,
  12581. bottom: 29 / 1492.5
  12582. }
  12583. },
  12584. meerkui: {
  12585. height: math.unit(18, "inches"),
  12586. name: "Meerkui",
  12587. image: {
  12588. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12589. extra: 1354/1289,
  12590. bottom: 69/1423
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Normal",
  12597. height: math.unit(7 + 5 / 12, "feet"),
  12598. default: true
  12599. },
  12600. ]
  12601. ))
  12602. characterMakers.push(() => makeCharacter(
  12603. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12604. {
  12605. front: {
  12606. height: math.unit(8 + 5 / 12, "feet"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/keset-vanrel/front.svg",
  12610. extra: 1231/1148,
  12611. bottom: 82/1313
  12612. }
  12613. },
  12614. back: {
  12615. height: math.unit(8 + 5 / 12, "feet"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/keset-vanrel/back.svg",
  12619. extra: 1240/1174,
  12620. bottom: 33/1273
  12621. }
  12622. },
  12623. hand: {
  12624. height: math.unit(0.6, "meters"),
  12625. name: "Hand",
  12626. image: {
  12627. source: "./media/characters/keset-vanrel/hand.svg"
  12628. }
  12629. },
  12630. foot: {
  12631. height: math.unit(0.94978, "meters"),
  12632. name: "Foot",
  12633. image: {
  12634. source: "./media/characters/keset-vanrel/foot.svg"
  12635. }
  12636. },
  12637. battle: {
  12638. height: math.unit(7.408, "feet"),
  12639. name: "Battle",
  12640. image: {
  12641. source: "./media/characters/keset-vanrel/battle.svg",
  12642. extra: 1890 / 1386,
  12643. bottom: 73.28 / 1970
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(8 + 5 / 12, "feet"),
  12651. default: true
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12657. {
  12658. front: {
  12659. height: math.unit(6, "feet"),
  12660. weight: math.unit(150, "lb"),
  12661. name: "Front",
  12662. image: {
  12663. source: "./media/characters/neos/front.svg",
  12664. extra: 1696 / 992,
  12665. bottom: 0.14
  12666. }
  12667. },
  12668. },
  12669. [
  12670. {
  12671. name: "Normal",
  12672. height: math.unit(54, "cm"),
  12673. default: true
  12674. },
  12675. {
  12676. name: "Macro",
  12677. height: math.unit(100, "m")
  12678. },
  12679. {
  12680. name: "Megamacro",
  12681. height: math.unit(10, "km")
  12682. },
  12683. {
  12684. name: "Megamacro+",
  12685. height: math.unit(100, "km")
  12686. },
  12687. {
  12688. name: "Gigamacro",
  12689. height: math.unit(100, "Mm")
  12690. },
  12691. {
  12692. name: "Teramacro",
  12693. height: math.unit(100, "Gm")
  12694. },
  12695. {
  12696. name: "Examacro",
  12697. height: math.unit(100, "Em")
  12698. },
  12699. {
  12700. name: "Godly",
  12701. height: math.unit(10000, "Ym")
  12702. },
  12703. {
  12704. name: "Beyond Godly",
  12705. height: math.unit(25, "multiverses")
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12711. {
  12712. feminine: {
  12713. height: math.unit(5, "feet"),
  12714. weight: math.unit(100, "lb"),
  12715. name: "Feminine",
  12716. image: {
  12717. source: "./media/characters/sammy-mouse/feminine.svg",
  12718. extra: 2526 / 2425,
  12719. bottom: 0.123
  12720. }
  12721. },
  12722. masculine: {
  12723. height: math.unit(5, "feet"),
  12724. weight: math.unit(100, "lb"),
  12725. name: "Masculine",
  12726. image: {
  12727. source: "./media/characters/sammy-mouse/masculine.svg",
  12728. extra: 2526 / 2425,
  12729. bottom: 0.123
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Micro",
  12736. height: math.unit(5, "inches")
  12737. },
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(5, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(60, "feet")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(4, "feet"),
  12754. weight: math.unit(50, "lb"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/kole/front.svg",
  12758. extra: 1423 / 1303,
  12759. bottom: 0.025
  12760. }
  12761. },
  12762. back: {
  12763. height: math.unit(4, "feet"),
  12764. weight: math.unit(50, "lb"),
  12765. name: "Back",
  12766. image: {
  12767. source: "./media/characters/kole/back.svg",
  12768. extra: 1426 / 1280,
  12769. bottom: 0.02
  12770. }
  12771. },
  12772. },
  12773. [
  12774. {
  12775. name: "Normal",
  12776. height: math.unit(4, "feet"),
  12777. default: true
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(2.5, "feet"),
  12786. weight: math.unit(32, "lb"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/rufran/front.svg",
  12790. extra: 1313/885,
  12791. bottom: 94/1407
  12792. }
  12793. },
  12794. side: {
  12795. height: math.unit(2.5, "feet"),
  12796. weight: math.unit(32, "lb"),
  12797. name: "Side",
  12798. image: {
  12799. source: "./media/characters/rufran/side.svg",
  12800. extra: 1109/852,
  12801. bottom: 118/1227
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(2.5, "feet"),
  12806. weight: math.unit(32, "lb"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/rufran/back.svg",
  12810. extra: 1280/878,
  12811. bottom: 131/1411
  12812. }
  12813. },
  12814. mouth: {
  12815. height: math.unit(1.13, "feet"),
  12816. name: "Mouth",
  12817. image: {
  12818. source: "./media/characters/rufran/mouth.svg"
  12819. }
  12820. },
  12821. foot: {
  12822. height: math.unit(1.33, "feet"),
  12823. name: "Foot",
  12824. image: {
  12825. source: "./media/characters/rufran/foot.svg"
  12826. }
  12827. },
  12828. koboldFront: {
  12829. height: math.unit(2 + 6 / 12, "feet"),
  12830. weight: math.unit(20, "lb"),
  12831. name: "Front (Kobold)",
  12832. image: {
  12833. source: "./media/characters/rufran/kobold-front.svg",
  12834. extra: 2041 / 1839,
  12835. bottom: 0.055
  12836. }
  12837. },
  12838. koboldBack: {
  12839. height: math.unit(2 + 6 / 12, "feet"),
  12840. weight: math.unit(20, "lb"),
  12841. name: "Back (Kobold)",
  12842. image: {
  12843. source: "./media/characters/rufran/kobold-back.svg",
  12844. extra: 2054 / 1839,
  12845. bottom: 0.01
  12846. }
  12847. },
  12848. koboldHand: {
  12849. height: math.unit(0.2166, "meters"),
  12850. name: "Hand (Kobold)",
  12851. image: {
  12852. source: "./media/characters/rufran/kobold-hand.svg"
  12853. }
  12854. },
  12855. koboldFoot: {
  12856. height: math.unit(0.185, "meters"),
  12857. name: "Foot (Kobold)",
  12858. image: {
  12859. source: "./media/characters/rufran/kobold-foot.svg"
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Micro",
  12866. height: math.unit(1, "inch")
  12867. },
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(2 + 6 / 12, "feet"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Big",
  12875. height: math.unit(60, "feet")
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(325, "feet")
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(0.3, "meters"),
  12888. weight: math.unit(3.5, "kg"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/chip/front.svg",
  12892. extra: 748 / 674
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Micro",
  12899. height: math.unit(1, "inch"),
  12900. default: true
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12906. {
  12907. side: {
  12908. height: math.unit(2.3, "meters"),
  12909. weight: math.unit(3500, "lb"),
  12910. name: "Side",
  12911. image: {
  12912. source: "./media/characters/torvid/side.svg",
  12913. extra: 1972 / 722,
  12914. bottom: 0.035
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Normal",
  12921. height: math.unit(2.3, "meters"),
  12922. default: true
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(2, "meters"),
  12931. weight: math.unit(150.5, "kg"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/susan/front.svg",
  12935. extra: 693 / 635,
  12936. bottom: 0.05
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Megamacro",
  12943. height: math.unit(505, "miles"),
  12944. default: true
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(6, "feet"),
  12953. weight: math.unit(150, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/raindrops/front.svg",
  12957. extra: 2655 / 2461,
  12958. bottom: 49 / 2705
  12959. }
  12960. },
  12961. back: {
  12962. height: math.unit(6, "feet"),
  12963. weight: math.unit(150, "lb"),
  12964. name: "Back",
  12965. image: {
  12966. source: "./media/characters/raindrops/back.svg",
  12967. extra: 2574 / 2400,
  12968. bottom: 65 / 2634
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Micro",
  12975. height: math.unit(6, "inches")
  12976. },
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(6 + 2 / 12, "feet")
  12980. },
  12981. {
  12982. name: "Macro",
  12983. height: math.unit(131, "feet"),
  12984. default: true
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(15, "miles")
  12989. },
  12990. {
  12991. name: "Gigamacro",
  12992. height: math.unit(4000, "miles")
  12993. },
  12994. {
  12995. name: "Teramacro",
  12996. height: math.unit(315000, "miles")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13002. {
  13003. front: {
  13004. height: math.unit(2.794, "meters"),
  13005. weight: math.unit(325, "kg"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/tezwa/front.svg",
  13009. extra: 2083 / 1906,
  13010. bottom: 0.031
  13011. }
  13012. },
  13013. foot: {
  13014. height: math.unit(0.687, "meters"),
  13015. name: "Foot",
  13016. image: {
  13017. source: "./media/characters/tezwa/foot.svg"
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Normal",
  13024. height: math.unit(9 + 2 / 12, "feet"),
  13025. default: true
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(58, "feet"),
  13034. weight: math.unit(89000, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/typhus/front.svg",
  13038. extra: 816 / 800,
  13039. bottom: 0.065
  13040. }
  13041. },
  13042. },
  13043. [
  13044. {
  13045. name: "Macro",
  13046. height: math.unit(58, "feet"),
  13047. default: true
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13053. {
  13054. front: {
  13055. height: math.unit(12, "feet"),
  13056. weight: math.unit(6, "tonnes"),
  13057. name: "Front",
  13058. image: {
  13059. source: "./media/characters/lyra-von-wulf/front.svg",
  13060. extra: 1,
  13061. bottom: 0.10
  13062. }
  13063. },
  13064. frontMecha: {
  13065. height: math.unit(12, "feet"),
  13066. weight: math.unit(12, "tonnes"),
  13067. name: "Front (Mecha)",
  13068. image: {
  13069. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13070. extra: 1,
  13071. bottom: 0.042
  13072. }
  13073. },
  13074. maw: {
  13075. height: math.unit(2.2, "feet"),
  13076. name: "Maw",
  13077. image: {
  13078. source: "./media/characters/lyra-von-wulf/maw.svg"
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(12, "feet"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Classic",
  13090. height: math.unit(50, "feet")
  13091. },
  13092. {
  13093. name: "Macro",
  13094. height: math.unit(500, "feet")
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(1, "mile")
  13099. },
  13100. {
  13101. name: "Gigamacro",
  13102. height: math.unit(400, "miles")
  13103. },
  13104. {
  13105. name: "Teramacro",
  13106. height: math.unit(22000, "miles")
  13107. },
  13108. {
  13109. name: "Solarmacro",
  13110. height: math.unit(8600000, "miles")
  13111. },
  13112. {
  13113. name: "Galactic",
  13114. height: math.unit(1057000, "lightyears")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6 + 10 / 12, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/dixon/front.svg",
  13127. extra: 3361 / 3209,
  13128. bottom: 0.01
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(6 + 10 / 12, "feet"),
  13136. default: true
  13137. },
  13138. {
  13139. name: "Big",
  13140. height: math.unit(12, "meters")
  13141. },
  13142. {
  13143. name: "Macro",
  13144. height: math.unit(500, "meters")
  13145. },
  13146. {
  13147. name: "Megamacro",
  13148. height: math.unit(2, "km")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(185, "cm"),
  13157. weight: math.unit(68, "kg"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/kauko/front.svg",
  13161. extra: 1455 / 1421,
  13162. bottom: 0.03
  13163. }
  13164. },
  13165. back: {
  13166. height: math.unit(185, "cm"),
  13167. weight: math.unit(68, "kg"),
  13168. name: "Back",
  13169. image: {
  13170. source: "./media/characters/kauko/back.svg",
  13171. extra: 1455 / 1421,
  13172. bottom: 0.004
  13173. }
  13174. },
  13175. },
  13176. [
  13177. {
  13178. name: "Normal",
  13179. height: math.unit(185, "cm"),
  13180. default: true
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(150, "kg"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/varg/front.svg",
  13193. extra: 1108 / 1018,
  13194. bottom: 0.0375
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(5, "meters")
  13202. },
  13203. {
  13204. name: "Macro",
  13205. height: math.unit(200, "meters")
  13206. },
  13207. {
  13208. name: "Megamacro",
  13209. height: math.unit(20, "kilometers")
  13210. },
  13211. {
  13212. name: "True Size",
  13213. height: math.unit(211, "km"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Gigamacro",
  13218. height: math.unit(1000, "km")
  13219. },
  13220. {
  13221. name: "Gigamacro+",
  13222. height: math.unit(8000, "km")
  13223. },
  13224. {
  13225. name: "Teramacro",
  13226. height: math.unit(1000000, "km")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(7 + 7 / 12, "feet"),
  13235. weight: math.unit(267, "lb"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/dayza/front.svg",
  13239. extra: 1262 / 1200,
  13240. bottom: 0.035
  13241. }
  13242. },
  13243. side: {
  13244. height: math.unit(7 + 7 / 12, "feet"),
  13245. weight: math.unit(267, "lb"),
  13246. name: "Side",
  13247. image: {
  13248. source: "./media/characters/dayza/side.svg",
  13249. extra: 1295 / 1245,
  13250. bottom: 0.05
  13251. }
  13252. },
  13253. back: {
  13254. height: math.unit(7 + 7 / 12, "feet"),
  13255. weight: math.unit(267, "lb"),
  13256. name: "Back",
  13257. image: {
  13258. source: "./media/characters/dayza/back.svg",
  13259. extra: 1241 / 1170
  13260. }
  13261. },
  13262. },
  13263. [
  13264. {
  13265. name: "Normal",
  13266. height: math.unit(7 + 7 / 12, "feet"),
  13267. default: true
  13268. },
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(155, "feet")
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(6 + 5 / 12, "feet"),
  13280. weight: math.unit(160, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/xanthos/front.svg",
  13284. extra: 1,
  13285. bottom: 0.04
  13286. }
  13287. },
  13288. back: {
  13289. height: math.unit(6 + 5 / 12, "feet"),
  13290. weight: math.unit(160, "lb"),
  13291. name: "Back",
  13292. image: {
  13293. source: "./media/characters/xanthos/back.svg",
  13294. extra: 1,
  13295. bottom: 0.03
  13296. }
  13297. },
  13298. hand: {
  13299. height: math.unit(0.928, "feet"),
  13300. name: "Hand",
  13301. image: {
  13302. source: "./media/characters/xanthos/hand.svg"
  13303. }
  13304. },
  13305. foot: {
  13306. height: math.unit(1.286, "feet"),
  13307. name: "Foot",
  13308. image: {
  13309. source: "./media/characters/xanthos/foot.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Normal",
  13316. height: math.unit(6 + 5 / 12, "feet"),
  13317. default: true
  13318. },
  13319. {
  13320. name: "Normal+",
  13321. height: math.unit(6, "meters")
  13322. },
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(40, "feet")
  13326. },
  13327. {
  13328. name: "Macro+",
  13329. height: math.unit(200, "meters")
  13330. },
  13331. {
  13332. name: "Megamacro",
  13333. height: math.unit(20, "km")
  13334. },
  13335. {
  13336. name: "Megamacro+",
  13337. height: math.unit(100, "km")
  13338. },
  13339. {
  13340. name: "Gigamacro",
  13341. height: math.unit(200, "megameters")
  13342. },
  13343. {
  13344. name: "Gigamacro+",
  13345. height: math.unit(1.5, "gigameters")
  13346. },
  13347. ]
  13348. ))
  13349. characterMakers.push(() => makeCharacter(
  13350. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13351. {
  13352. front: {
  13353. height: math.unit(6 + 3 / 12, "feet"),
  13354. weight: math.unit(215, "lb"),
  13355. name: "Front",
  13356. image: {
  13357. source: "./media/characters/grynn/front.svg",
  13358. extra: 4627 / 4209,
  13359. bottom: 0.047
  13360. }
  13361. },
  13362. },
  13363. [
  13364. {
  13365. name: "Micro",
  13366. height: math.unit(6, "inches")
  13367. },
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(6 + 3 / 12, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Big",
  13375. height: math.unit(104, "feet")
  13376. },
  13377. {
  13378. name: "Macro",
  13379. height: math.unit(944, "feet")
  13380. },
  13381. {
  13382. name: "Macro+",
  13383. height: math.unit(9480, "feet")
  13384. },
  13385. {
  13386. name: "Megamacro",
  13387. height: math.unit(78752, "feet")
  13388. },
  13389. {
  13390. name: "Megamacro+",
  13391. height: math.unit(630128, "feet")
  13392. },
  13393. {
  13394. name: "Megamacro++",
  13395. height: math.unit(3150695, "feet")
  13396. },
  13397. ]
  13398. ))
  13399. characterMakers.push(() => makeCharacter(
  13400. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13401. {
  13402. front: {
  13403. height: math.unit(7 + 5 / 12, "feet"),
  13404. weight: math.unit(450, "lb"),
  13405. name: "Front",
  13406. image: {
  13407. source: "./media/characters/mocha-aura/front.svg",
  13408. extra: 1907 / 1817,
  13409. bottom: 0.04
  13410. }
  13411. },
  13412. back: {
  13413. height: math.unit(7 + 5 / 12, "feet"),
  13414. weight: math.unit(450, "lb"),
  13415. name: "Back",
  13416. image: {
  13417. source: "./media/characters/mocha-aura/back.svg",
  13418. extra: 1900 / 1825,
  13419. bottom: 0.045
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Nano",
  13426. height: math.unit(1, "nm")
  13427. },
  13428. {
  13429. name: "Megamicro",
  13430. height: math.unit(1, "mm")
  13431. },
  13432. {
  13433. name: "Micro",
  13434. height: math.unit(3, "inches")
  13435. },
  13436. {
  13437. name: "Normal",
  13438. height: math.unit(7 + 5 / 12, "feet"),
  13439. default: true
  13440. },
  13441. {
  13442. name: "Macro",
  13443. height: math.unit(30, "feet")
  13444. },
  13445. {
  13446. name: "Megamacro",
  13447. height: math.unit(3500, "feet")
  13448. },
  13449. {
  13450. name: "Teramacro",
  13451. height: math.unit(500000, "miles")
  13452. },
  13453. {
  13454. name: "Petamacro",
  13455. height: math.unit(50000000000000000, "parsecs")
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13461. {
  13462. front: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(150, "lb"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/ilisha-devya/front.svg",
  13468. extra: 1053/1049,
  13469. bottom: 270/1323
  13470. }
  13471. },
  13472. back: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(150, "lb"),
  13475. name: "Back",
  13476. image: {
  13477. source: "./media/characters/ilisha-devya/back.svg",
  13478. extra: 1131/1128,
  13479. bottom: 39/1170
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Macro",
  13486. height: math.unit(500, "feet"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Megamacro",
  13491. height: math.unit(10, "miles")
  13492. },
  13493. {
  13494. name: "Gigamacro",
  13495. height: math.unit(100000, "miles")
  13496. },
  13497. {
  13498. name: "Examacro",
  13499. height: math.unit(1e9, "lightyears")
  13500. },
  13501. {
  13502. name: "Omniversal",
  13503. height: math.unit(1e33, "lightyears")
  13504. },
  13505. {
  13506. name: "Beyond Infinite",
  13507. height: math.unit(1e100, "lightyears")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13513. {
  13514. Side: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Side",
  13518. image: {
  13519. source: "./media/characters/mira/side.svg",
  13520. extra: 900 / 799,
  13521. bottom: 0.02
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Human Size",
  13528. height: math.unit(6, "feet")
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(100, "feet"),
  13533. default: true
  13534. },
  13535. {
  13536. name: "Megamacro",
  13537. height: math.unit(10, "miles")
  13538. },
  13539. {
  13540. name: "Gigamacro",
  13541. height: math.unit(25000, "miles")
  13542. },
  13543. {
  13544. name: "Teramacro",
  13545. height: math.unit(300, "AU")
  13546. },
  13547. {
  13548. name: "Full Size",
  13549. height: math.unit(4.5e10, "lightyears")
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13555. {
  13556. front: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(150, "lb"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/holly/front.svg",
  13562. extra: 639 / 606
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(150, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/holly/back.svg",
  13571. extra: 623 / 598
  13572. }
  13573. },
  13574. frontWorking: {
  13575. height: math.unit(6, "feet"),
  13576. weight: math.unit(150, "lb"),
  13577. name: "Front (Working)",
  13578. image: {
  13579. source: "./media/characters/holly/front-working.svg",
  13580. extra: 607 / 577,
  13581. bottom: 0.048
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Normal",
  13588. height: math.unit(12 + 3 / 12, "feet"),
  13589. default: true
  13590. },
  13591. ]
  13592. ))
  13593. characterMakers.push(() => makeCharacter(
  13594. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13595. {
  13596. front: {
  13597. height: math.unit(6, "feet"),
  13598. weight: math.unit(150, "lb"),
  13599. name: "Front",
  13600. image: {
  13601. source: "./media/characters/porter/front.svg",
  13602. extra: 1,
  13603. bottom: 0.01
  13604. }
  13605. },
  13606. frontRobes: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Front (Robes)",
  13610. image: {
  13611. source: "./media/characters/porter/front-robes.svg",
  13612. extra: 1.01,
  13613. bottom: 0.01
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Normal",
  13620. height: math.unit(11 + 9 / 12, "feet"),
  13621. default: true
  13622. },
  13623. ]
  13624. ))
  13625. characterMakers.push(() => makeCharacter(
  13626. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13627. {
  13628. legendary: {
  13629. height: math.unit(6, "feet"),
  13630. weight: math.unit(150, "lb"),
  13631. name: "Legendary",
  13632. image: {
  13633. source: "./media/characters/lucy/legendary.svg",
  13634. extra: 1355 / 1100,
  13635. bottom: 0.045
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Legendary",
  13642. height: math.unit(86882 * 2, "miles"),
  13643. default: true
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(6, "feet"),
  13652. weight: math.unit(150, "lb"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/drusilla/front.svg",
  13656. extra: 678 / 635,
  13657. bottom: 0.03
  13658. }
  13659. },
  13660. back: {
  13661. height: math.unit(6, "feet"),
  13662. weight: math.unit(150, "lb"),
  13663. name: "Back",
  13664. image: {
  13665. source: "./media/characters/drusilla/back.svg",
  13666. extra: 678 / 635,
  13667. bottom: 0.005
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Macro",
  13674. height: math.unit(100, "feet")
  13675. },
  13676. {
  13677. name: "Canon Height",
  13678. height: math.unit(2000, "feet"),
  13679. default: true
  13680. },
  13681. ]
  13682. ))
  13683. characterMakers.push(() => makeCharacter(
  13684. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13685. {
  13686. front: {
  13687. height: math.unit(6, "feet"),
  13688. weight: math.unit(180, "lb"),
  13689. name: "Front",
  13690. image: {
  13691. source: "./media/characters/renard-thatch/front.svg",
  13692. extra: 2411 / 2275,
  13693. bottom: 0.01
  13694. }
  13695. },
  13696. frontPosing: {
  13697. height: math.unit(6, "feet"),
  13698. weight: math.unit(180, "lb"),
  13699. name: "Front (Posing)",
  13700. image: {
  13701. source: "./media/characters/renard-thatch/front-posing.svg",
  13702. extra: 2381 / 2261,
  13703. bottom: 0.01
  13704. }
  13705. },
  13706. back: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(180, "lb"),
  13709. name: "Back",
  13710. image: {
  13711. source: "./media/characters/renard-thatch/back.svg",
  13712. extra: 2428 / 2288
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Micro",
  13719. height: math.unit(3, "inches")
  13720. },
  13721. {
  13722. name: "Default",
  13723. height: math.unit(6, "feet"),
  13724. default: true
  13725. },
  13726. {
  13727. name: "Macro",
  13728. height: math.unit(75, "feet")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(1450, "feet"),
  13737. weight: math.unit(1.21e6, "tons"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/sekvra/front.svg",
  13741. extra: 1193/1190,
  13742. bottom: 78/1271
  13743. }
  13744. },
  13745. side: {
  13746. height: math.unit(1450, "feet"),
  13747. weight: math.unit(1.21e6, "tons"),
  13748. name: "Side",
  13749. image: {
  13750. source: "./media/characters/sekvra/side.svg",
  13751. extra: 1193/1190,
  13752. bottom: 52/1245
  13753. }
  13754. },
  13755. back: {
  13756. height: math.unit(1450, "feet"),
  13757. weight: math.unit(1.21e6, "tons"),
  13758. name: "Back",
  13759. image: {
  13760. source: "./media/characters/sekvra/back.svg",
  13761. extra: 1219/1216,
  13762. bottom: 21/1240
  13763. }
  13764. },
  13765. frontClothed: {
  13766. height: math.unit(1450, "feet"),
  13767. weight: math.unit(1.21e6, "tons"),
  13768. name: "Front (Clothed)",
  13769. image: {
  13770. source: "./media/characters/sekvra/front-clothed.svg",
  13771. extra: 1192/1189,
  13772. bottom: 79/1271
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Macro",
  13779. height: math.unit(1450, "feet"),
  13780. default: true
  13781. },
  13782. {
  13783. name: "Megamacro",
  13784. height: math.unit(15000, "feet")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13790. {
  13791. front: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/carmine/front.svg",
  13797. extra: 1,
  13798. bottom: 0.035
  13799. }
  13800. },
  13801. frontArmor: {
  13802. height: math.unit(6, "feet"),
  13803. weight: math.unit(150, "lb"),
  13804. name: "Front (Armor)",
  13805. image: {
  13806. source: "./media/characters/carmine/front-armor.svg",
  13807. extra: 1,
  13808. bottom: 0.035
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Large",
  13815. height: math.unit(1, "mile")
  13816. },
  13817. {
  13818. name: "Huge",
  13819. height: math.unit(40, "miles"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Colossal",
  13824. height: math.unit(2500, "miles")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(150, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/elyssia/front.svg",
  13837. extra: 2201 / 2035,
  13838. bottom: 0.05
  13839. }
  13840. },
  13841. frontClothed: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Front (Clothed)",
  13845. image: {
  13846. source: "./media/characters/elyssia/front-clothed.svg",
  13847. extra: 2201 / 2035,
  13848. bottom: 0.05
  13849. }
  13850. },
  13851. back: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Back",
  13855. image: {
  13856. source: "./media/characters/elyssia/back.svg",
  13857. extra: 2201 / 2035,
  13858. bottom: 0.013
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Smaller",
  13865. height: math.unit(150, "feet")
  13866. },
  13867. {
  13868. name: "Standard",
  13869. height: math.unit(1400, "feet"),
  13870. default: true
  13871. },
  13872. {
  13873. name: "Distracted",
  13874. height: math.unit(15000, "feet")
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13880. {
  13881. front: {
  13882. height: math.unit(7 + 4/12, "feet"),
  13883. weight: math.unit(690, "lb"),
  13884. name: "Front",
  13885. image: {
  13886. source: "./media/characters/geno-maxwell/front.svg",
  13887. extra: 984/856,
  13888. bottom: 87/1071
  13889. }
  13890. },
  13891. back: {
  13892. height: math.unit(7 + 4/12, "feet"),
  13893. weight: math.unit(690, "lb"),
  13894. name: "Back",
  13895. image: {
  13896. source: "./media/characters/geno-maxwell/back.svg",
  13897. extra: 981/854,
  13898. bottom: 57/1038
  13899. }
  13900. },
  13901. frontCostume: {
  13902. height: math.unit(7 + 4/12, "feet"),
  13903. weight: math.unit(690, "lb"),
  13904. name: "Front (Costume)",
  13905. image: {
  13906. source: "./media/characters/geno-maxwell/front-costume.svg",
  13907. extra: 984/856,
  13908. bottom: 87/1071
  13909. }
  13910. },
  13911. backcostume: {
  13912. height: math.unit(7 + 4/12, "feet"),
  13913. weight: math.unit(690, "lb"),
  13914. name: "Back (Costume)",
  13915. image: {
  13916. source: "./media/characters/geno-maxwell/back-costume.svg",
  13917. extra: 981/854,
  13918. bottom: 57/1038
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Micro",
  13925. height: math.unit(3, "inches")
  13926. },
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(7 + 4 / 12, "feet"),
  13930. default: true
  13931. },
  13932. {
  13933. name: "Macro",
  13934. height: math.unit(220, "feet")
  13935. },
  13936. {
  13937. name: "Megamacro",
  13938. height: math.unit(11, "miles")
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13944. {
  13945. front: {
  13946. height: math.unit(7 + 4/12, "feet"),
  13947. weight: math.unit(750, "lb"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/regena-maxwell/front.svg",
  13951. extra: 984/856,
  13952. bottom: 87/1071
  13953. }
  13954. },
  13955. back: {
  13956. height: math.unit(7 + 4/12, "feet"),
  13957. weight: math.unit(750, "lb"),
  13958. name: "Back",
  13959. image: {
  13960. source: "./media/characters/regena-maxwell/back.svg",
  13961. extra: 981/854,
  13962. bottom: 57/1038
  13963. }
  13964. },
  13965. frontCostume: {
  13966. height: math.unit(7 + 4/12, "feet"),
  13967. weight: math.unit(750, "lb"),
  13968. name: "Front (Costume)",
  13969. image: {
  13970. source: "./media/characters/regena-maxwell/front-costume.svg",
  13971. extra: 984/856,
  13972. bottom: 87/1071
  13973. }
  13974. },
  13975. backcostume: {
  13976. height: math.unit(7 + 4/12, "feet"),
  13977. weight: math.unit(750, "lb"),
  13978. name: "Back (Costume)",
  13979. image: {
  13980. source: "./media/characters/regena-maxwell/back-costume.svg",
  13981. extra: 981/854,
  13982. bottom: 57/1038
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Normal",
  13989. height: math.unit(7 + 4 / 12, "feet"),
  13990. default: true
  13991. },
  13992. {
  13993. name: "Macro",
  13994. height: math.unit(220, "feet")
  13995. },
  13996. {
  13997. name: "Megamacro",
  13998. height: math.unit(11, "miles")
  13999. },
  14000. ]
  14001. ))
  14002. characterMakers.push(() => makeCharacter(
  14003. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14004. {
  14005. front: {
  14006. height: math.unit(6, "feet"),
  14007. weight: math.unit(150, "lb"),
  14008. name: "Front",
  14009. image: {
  14010. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14011. extra: 860 / 690,
  14012. bottom: 0.03
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(1.7, "meters"),
  14020. default: true
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14026. {
  14027. front: {
  14028. height: math.unit(6, "feet"),
  14029. weight: math.unit(150, "lb"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/quilly/front.svg",
  14033. extra: 890 / 776
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Gigamacro",
  14040. height: math.unit(404090, "miles"),
  14041. default: true
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(7 + 8 / 12, "feet"),
  14050. weight: math.unit(350, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/tempest/front.svg",
  14054. extra: 1175 / 1086,
  14055. bottom: 0.02
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Normal",
  14062. height: math.unit(7 + 8 / 12, "feet"),
  14063. default: true
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14069. {
  14070. side: {
  14071. height: math.unit(4 + 5 / 12, "feet"),
  14072. weight: math.unit(80, "lb"),
  14073. name: "Side",
  14074. image: {
  14075. source: "./media/characters/rodger/side.svg",
  14076. extra: 1235 / 1118
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Micro",
  14083. height: math.unit(1, "inch")
  14084. },
  14085. {
  14086. name: "Normal",
  14087. height: math.unit(4 + 5 / 12, "feet"),
  14088. default: true
  14089. },
  14090. {
  14091. name: "Macro",
  14092. height: math.unit(120, "feet")
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(6, "feet"),
  14101. weight: math.unit(150, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/danyel/front.svg",
  14105. extra: 1185 / 1123,
  14106. bottom: 0.05
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Shrunken",
  14113. height: math.unit(0.5, "mm")
  14114. },
  14115. {
  14116. name: "Micro",
  14117. height: math.unit(1, "mm"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Upsized",
  14122. height: math.unit(5 + 5 / 12, "feet")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(5 + 6 / 12, "feet"),
  14131. weight: math.unit(200, "lb"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/vivian-bijoux/front.svg",
  14135. extra: 1217/1209,
  14136. bottom: 76/1293
  14137. }
  14138. },
  14139. back: {
  14140. height: math.unit(5 + 6 / 12, "feet"),
  14141. weight: math.unit(200, "lb"),
  14142. name: "Back",
  14143. image: {
  14144. source: "./media/characters/vivian-bijoux/back.svg",
  14145. extra: 1214/1208,
  14146. bottom: 51/1265
  14147. }
  14148. },
  14149. dressed: {
  14150. height: math.unit(5 + 6 / 12, "feet"),
  14151. weight: math.unit(200, "lb"),
  14152. name: "Dressed",
  14153. image: {
  14154. source: "./media/characters/vivian-bijoux/dressed.svg",
  14155. extra: 1217/1209,
  14156. bottom: 76/1293
  14157. }
  14158. },
  14159. },
  14160. [
  14161. {
  14162. name: "Normal",
  14163. height: math.unit(5 + 6 / 12, "feet"),
  14164. default: true
  14165. },
  14166. {
  14167. name: "Bad Dream",
  14168. height: math.unit(500, "feet")
  14169. },
  14170. {
  14171. name: "Nightmare",
  14172. height: math.unit(500, "miles")
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14178. {
  14179. front: {
  14180. height: math.unit(6 + 1 / 12, "feet"),
  14181. weight: math.unit(260, "lb"),
  14182. name: "Front",
  14183. image: {
  14184. source: "./media/characters/zeta/front.svg",
  14185. extra: 1968 / 1889,
  14186. bottom: 0.06
  14187. }
  14188. },
  14189. back: {
  14190. height: math.unit(6 + 1 / 12, "feet"),
  14191. weight: math.unit(260, "lb"),
  14192. name: "Back",
  14193. image: {
  14194. source: "./media/characters/zeta/back.svg",
  14195. extra: 1944 / 1858,
  14196. bottom: 0.03
  14197. }
  14198. },
  14199. hand: {
  14200. height: math.unit(1.112, "feet"),
  14201. name: "Hand",
  14202. image: {
  14203. source: "./media/characters/zeta/hand.svg"
  14204. }
  14205. },
  14206. foot: {
  14207. height: math.unit(1.48, "feet"),
  14208. name: "Foot",
  14209. image: {
  14210. source: "./media/characters/zeta/foot.svg"
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Micro",
  14217. height: math.unit(6, "inches")
  14218. },
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(6 + 1 / 12, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Macro",
  14226. height: math.unit(20, "feet")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(150, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/jamie-larsen/front.svg",
  14239. extra: 962 / 933,
  14240. bottom: 0.02
  14241. }
  14242. },
  14243. back: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(150, "lb"),
  14246. name: "Back",
  14247. image: {
  14248. source: "./media/characters/jamie-larsen/back.svg",
  14249. extra: 997 / 946
  14250. }
  14251. },
  14252. },
  14253. [
  14254. {
  14255. name: "Macro",
  14256. height: math.unit(28 + 7 / 12, "feet"),
  14257. default: true
  14258. },
  14259. {
  14260. name: "Macro+",
  14261. height: math.unit(180, "feet")
  14262. },
  14263. {
  14264. name: "Megamacro",
  14265. height: math.unit(10, "miles")
  14266. },
  14267. {
  14268. name: "Gigamacro",
  14269. height: math.unit(200000, "miles")
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14275. {
  14276. front: {
  14277. height: math.unit(6, "feet"),
  14278. weight: math.unit(120, "lb"),
  14279. name: "Front",
  14280. image: {
  14281. source: "./media/characters/vance/front.svg",
  14282. extra: 1980 / 1890,
  14283. bottom: 0.09
  14284. }
  14285. },
  14286. back: {
  14287. height: math.unit(6, "feet"),
  14288. weight: math.unit(120, "lb"),
  14289. name: "Back",
  14290. image: {
  14291. source: "./media/characters/vance/back.svg",
  14292. extra: 2081 / 1994,
  14293. bottom: 0.014
  14294. }
  14295. },
  14296. hand: {
  14297. height: math.unit(0.88, "feet"),
  14298. name: "Hand",
  14299. image: {
  14300. source: "./media/characters/vance/hand.svg"
  14301. }
  14302. },
  14303. foot: {
  14304. height: math.unit(0.64, "feet"),
  14305. name: "Foot",
  14306. image: {
  14307. source: "./media/characters/vance/foot.svg"
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Small",
  14314. height: math.unit(90, "feet"),
  14315. default: true
  14316. },
  14317. {
  14318. name: "Macro",
  14319. height: math.unit(100, "meters")
  14320. },
  14321. {
  14322. name: "Megamacro",
  14323. height: math.unit(15, "miles")
  14324. },
  14325. ]
  14326. ))
  14327. characterMakers.push(() => makeCharacter(
  14328. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14329. {
  14330. front: {
  14331. height: math.unit(6, "feet"),
  14332. weight: math.unit(180, "lb"),
  14333. name: "Front",
  14334. image: {
  14335. source: "./media/characters/xochitl/front.svg",
  14336. extra: 2297 / 2261,
  14337. bottom: 0.065
  14338. }
  14339. },
  14340. back: {
  14341. height: math.unit(6, "feet"),
  14342. weight: math.unit(180, "lb"),
  14343. name: "Back",
  14344. image: {
  14345. source: "./media/characters/xochitl/back.svg",
  14346. extra: 2386 / 2354,
  14347. bottom: 0.01
  14348. }
  14349. },
  14350. foot: {
  14351. height: math.unit(6 / 5 * 1.15, "feet"),
  14352. weight: math.unit(150, "lb"),
  14353. name: "Foot",
  14354. image: {
  14355. source: "./media/characters/xochitl/foot.svg"
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Macro",
  14362. height: math.unit(80, "feet")
  14363. },
  14364. {
  14365. name: "Macro+",
  14366. height: math.unit(400, "feet"),
  14367. default: true
  14368. },
  14369. {
  14370. name: "Gigamacro",
  14371. height: math.unit(80000, "miles")
  14372. },
  14373. {
  14374. name: "Gigamacro+",
  14375. height: math.unit(400000, "miles")
  14376. },
  14377. {
  14378. name: "Teramacro",
  14379. height: math.unit(300, "AU")
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(6, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/vincent/front.svg",
  14392. extra: 1130 / 1080,
  14393. bottom: 0.055
  14394. }
  14395. },
  14396. beak: {
  14397. height: math.unit(6 * 0.1, "feet"),
  14398. name: "Beak",
  14399. image: {
  14400. source: "./media/characters/vincent/beak.svg"
  14401. }
  14402. },
  14403. hand: {
  14404. height: math.unit(6 * 0.85, "feet"),
  14405. weight: math.unit(150, "lb"),
  14406. name: "Hand",
  14407. image: {
  14408. source: "./media/characters/vincent/hand.svg"
  14409. }
  14410. },
  14411. foot: {
  14412. height: math.unit(6 * 0.19, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Foot",
  14415. image: {
  14416. source: "./media/characters/vincent/foot.svg"
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Base",
  14423. height: math.unit(6 + 5 / 12, "feet"),
  14424. default: true
  14425. },
  14426. {
  14427. name: "Macro",
  14428. height: math.unit(300, "feet")
  14429. },
  14430. {
  14431. name: "Megamacro",
  14432. height: math.unit(2, "miles")
  14433. },
  14434. {
  14435. name: "Gigamacro",
  14436. height: math.unit(1000, "miles")
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(2, "meters"),
  14445. weight: math.unit(500, "kg"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/coatl/front.svg",
  14449. extra: 3948 / 3500,
  14450. bottom: 0.082
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(4, "meters")
  14458. },
  14459. {
  14460. name: "Macro",
  14461. height: math.unit(100, "meters"),
  14462. default: true
  14463. },
  14464. {
  14465. name: "Macro+",
  14466. height: math.unit(300, "meters")
  14467. },
  14468. {
  14469. name: "Megamacro",
  14470. height: math.unit(3, "gigameters")
  14471. },
  14472. {
  14473. name: "Megamacro+",
  14474. height: math.unit(300, "terameters")
  14475. },
  14476. {
  14477. name: "Megamacro++",
  14478. height: math.unit(3, "lightyears")
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(50, "kg"),
  14488. name: "front",
  14489. image: {
  14490. source: "./media/characters/shiroryu/front.svg",
  14491. extra: 1990 / 1935
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Mortal Mingling",
  14498. height: math.unit(3, "meters")
  14499. },
  14500. {
  14501. name: "Kaiju-ish",
  14502. height: math.unit(250, "meters")
  14503. },
  14504. {
  14505. name: "Somewhat Godly",
  14506. height: math.unit(400, "km"),
  14507. default: true
  14508. },
  14509. {
  14510. name: "Planetary",
  14511. height: math.unit(300, "megameters")
  14512. },
  14513. {
  14514. name: "Galaxy-dwarfing",
  14515. height: math.unit(450, "kiloparsecs")
  14516. },
  14517. {
  14518. name: "Universe Eater",
  14519. height: math.unit(150, "gigaparsecs")
  14520. },
  14521. {
  14522. name: "Almost Immeasurable",
  14523. height: math.unit(1.3e266, "yottaparsecs")
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14529. {
  14530. front: {
  14531. height: math.unit(6, "feet"),
  14532. weight: math.unit(150, "lb"),
  14533. name: "Front",
  14534. image: {
  14535. source: "./media/characters/umeko/front.svg",
  14536. extra: 1,
  14537. bottom: 0.019
  14538. }
  14539. },
  14540. frontArmored: {
  14541. height: math.unit(6, "feet"),
  14542. weight: math.unit(150, "lb"),
  14543. name: "Front (Armored)",
  14544. image: {
  14545. source: "./media/characters/umeko/front-armored.svg",
  14546. extra: 1,
  14547. bottom: 0.021
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Macro",
  14554. height: math.unit(220, "feet"),
  14555. default: true
  14556. },
  14557. {
  14558. name: "Guardian Dragon",
  14559. height: math.unit(50, "miles")
  14560. },
  14561. {
  14562. name: "Cosmic",
  14563. height: math.unit(800000, "miles")
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(6, "feet"),
  14572. weight: math.unit(150, "lb"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/cassidy/front.svg",
  14576. extra: 810/808,
  14577. bottom: 41/851
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Canon Height",
  14584. height: math.unit(120, "feet"),
  14585. default: true
  14586. },
  14587. {
  14588. name: "Macro+",
  14589. height: math.unit(400, "feet")
  14590. },
  14591. {
  14592. name: "Macro++",
  14593. height: math.unit(4000, "feet")
  14594. },
  14595. {
  14596. name: "Megamacro",
  14597. height: math.unit(3, "miles")
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(6, "feet"),
  14606. weight: math.unit(150, "lb"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/isaac/front.svg",
  14610. extra: 896 / 815,
  14611. bottom: 0.11
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Human Size",
  14618. height: math.unit(8, "feet"),
  14619. default: true
  14620. },
  14621. {
  14622. name: "Macro",
  14623. height: math.unit(400, "feet")
  14624. },
  14625. {
  14626. name: "Megamacro",
  14627. height: math.unit(50, "miles")
  14628. },
  14629. {
  14630. name: "Canon Height",
  14631. height: math.unit(200, "AU")
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(6, "feet"),
  14640. weight: math.unit(72, "kg"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/sleekit/front.svg",
  14644. extra: 4693 / 4487,
  14645. bottom: 0.012
  14646. }
  14647. },
  14648. },
  14649. [
  14650. {
  14651. name: "Minimum Height",
  14652. height: math.unit(10, "meters")
  14653. },
  14654. {
  14655. name: "Smaller",
  14656. height: math.unit(25, "meters")
  14657. },
  14658. {
  14659. name: "Larger",
  14660. height: math.unit(38, "meters"),
  14661. default: true
  14662. },
  14663. {
  14664. name: "Maximum height",
  14665. height: math.unit(100, "meters")
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/nillia/front.svg",
  14678. extra: 2195 / 2037,
  14679. bottom: 0.005
  14680. }
  14681. },
  14682. back: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Back",
  14686. image: {
  14687. source: "./media/characters/nillia/back.svg",
  14688. extra: 2195 / 2037,
  14689. bottom: 0.005
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Canon Height",
  14696. height: math.unit(489, "feet"),
  14697. default: true
  14698. }
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14703. {
  14704. front: {
  14705. height: math.unit(6, "feet"),
  14706. weight: math.unit(150, "lb"),
  14707. name: "Front",
  14708. image: {
  14709. source: "./media/characters/mesmyriza/front.svg",
  14710. extra: 2067 / 1784,
  14711. bottom: 0.035
  14712. }
  14713. },
  14714. foot: {
  14715. height: math.unit(6 / (250 / 35), "feet"),
  14716. name: "Foot",
  14717. image: {
  14718. source: "./media/characters/mesmyriza/foot.svg"
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Macro",
  14725. height: math.unit(457, "meters"),
  14726. default: true
  14727. },
  14728. {
  14729. name: "Megamacro",
  14730. height: math.unit(8, "megameters")
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(250, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/saudade/front.svg",
  14743. extra: 1172 / 1139,
  14744. bottom: 0.035
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Micro",
  14751. height: math.unit(3, "inches")
  14752. },
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(6, "feet"),
  14756. default: true
  14757. },
  14758. {
  14759. name: "Macro",
  14760. height: math.unit(50, "feet")
  14761. },
  14762. {
  14763. name: "Megamacro",
  14764. height: math.unit(2800, "feet")
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14770. {
  14771. front: {
  14772. height: math.unit(5 + 4 / 12, "feet"),
  14773. weight: math.unit(100, "lb"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/keireer/front.svg",
  14777. extra: 716 / 666,
  14778. bottom: 0.05
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Normal",
  14785. height: math.unit(5 + 4 / 12, "feet"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(6, "feet"),
  14795. weight: math.unit(90, "kg"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/mirja/front.svg",
  14799. extra: 1789 / 1683,
  14800. bottom: 0.05
  14801. }
  14802. },
  14803. frontDressed: {
  14804. height: math.unit(6, "feet"),
  14805. weight: math.unit(90, "lb"),
  14806. name: "Front (Dressed)",
  14807. image: {
  14808. source: "./media/characters/mirja/front-dressed.svg",
  14809. extra: 1789 / 1683,
  14810. bottom: 0.05
  14811. }
  14812. },
  14813. back: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(90, "lb"),
  14816. name: "Back",
  14817. image: {
  14818. source: "./media/characters/mirja/back.svg",
  14819. extra: 953 / 917,
  14820. bottom: 0.017
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "\"Incognito\"",
  14827. height: math.unit(3, "meters")
  14828. },
  14829. {
  14830. name: "Strolling Size",
  14831. height: math.unit(15, "km")
  14832. },
  14833. {
  14834. name: "Larger Strolling Size",
  14835. height: math.unit(400, "km")
  14836. },
  14837. {
  14838. name: "Preferred Size",
  14839. height: math.unit(5000, "km")
  14840. },
  14841. {
  14842. name: "True Size",
  14843. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14844. default: true
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(15, "feet"),
  14853. weight: math.unit(880, "kg"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/nightraver/front.svg",
  14857. extra: 2444 / 2160,
  14858. bottom: 0.027
  14859. }
  14860. },
  14861. back: {
  14862. height: math.unit(15, "feet"),
  14863. weight: math.unit(880, "kg"),
  14864. name: "Back",
  14865. image: {
  14866. source: "./media/characters/nightraver/back.svg",
  14867. extra: 2309 / 2180,
  14868. bottom: 0.005
  14869. }
  14870. },
  14871. sole: {
  14872. height: math.unit(2.878, "feet"),
  14873. name: "Sole",
  14874. image: {
  14875. source: "./media/characters/nightraver/sole.svg"
  14876. }
  14877. },
  14878. foot: {
  14879. height: math.unit(2.285, "feet"),
  14880. name: "Foot",
  14881. image: {
  14882. source: "./media/characters/nightraver/foot.svg"
  14883. }
  14884. },
  14885. maw: {
  14886. height: math.unit(2.67, "feet"),
  14887. name: "Maw",
  14888. image: {
  14889. source: "./media/characters/nightraver/maw.svg"
  14890. }
  14891. },
  14892. },
  14893. [
  14894. {
  14895. name: "Micro",
  14896. height: math.unit(1, "cm")
  14897. },
  14898. {
  14899. name: "Normal",
  14900. height: math.unit(15, "feet"),
  14901. default: true
  14902. },
  14903. {
  14904. name: "Macro",
  14905. height: math.unit(300, "feet")
  14906. },
  14907. {
  14908. name: "Megamacro",
  14909. height: math.unit(300, "miles")
  14910. },
  14911. {
  14912. name: "Gigamacro",
  14913. height: math.unit(10000, "miles")
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14919. {
  14920. side: {
  14921. height: math.unit(2, "inches"),
  14922. weight: math.unit(5, "grams"),
  14923. name: "Side",
  14924. image: {
  14925. source: "./media/characters/arc/side.svg"
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Micro",
  14932. height: math.unit(2, "inches"),
  14933. default: true
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(1.1938, "meters"),
  14942. weight: math.unit(54, "kg"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/nebula-shahar/front.svg",
  14946. extra: 1642 / 1436,
  14947. bottom: 0.06
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Megamicro",
  14954. height: math.unit(0.3, "mm")
  14955. },
  14956. {
  14957. name: "Micro",
  14958. height: math.unit(3, "cm")
  14959. },
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(138, "cm"),
  14963. default: true
  14964. },
  14965. {
  14966. name: "Macro",
  14967. height: math.unit(30, "m")
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(5.24, "feet"),
  14976. weight: math.unit(150, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/shayla/front.svg",
  14980. extra: 1512 / 1414,
  14981. bottom: 0.01
  14982. }
  14983. },
  14984. back: {
  14985. height: math.unit(5.24, "feet"),
  14986. weight: math.unit(150, "lb"),
  14987. name: "Back",
  14988. image: {
  14989. source: "./media/characters/shayla/back.svg",
  14990. extra: 1512 / 1414
  14991. }
  14992. },
  14993. hand: {
  14994. height: math.unit(0.7781496062992126, "feet"),
  14995. name: "Hand",
  14996. image: {
  14997. source: "./media/characters/shayla/hand.svg"
  14998. }
  14999. },
  15000. foot: {
  15001. height: math.unit(1.4206036745406823, "feet"),
  15002. name: "Foot",
  15003. image: {
  15004. source: "./media/characters/shayla/foot.svg"
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Micro",
  15011. height: math.unit(0.32, "feet")
  15012. },
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(5.24, "feet"),
  15016. default: true
  15017. },
  15018. {
  15019. name: "Macro",
  15020. height: math.unit(492.12, "feet")
  15021. },
  15022. {
  15023. name: "Megamacro",
  15024. height: math.unit(186.41, "miles")
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15030. {
  15031. front: {
  15032. height: math.unit(2.2, "m"),
  15033. weight: math.unit(120, "kg"),
  15034. name: "Front",
  15035. image: {
  15036. source: "./media/characters/pia-jr/front.svg",
  15037. extra: 1000 / 970,
  15038. bottom: 0.035
  15039. }
  15040. },
  15041. hand: {
  15042. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15043. name: "Hand",
  15044. image: {
  15045. source: "./media/characters/pia-jr/hand.svg"
  15046. }
  15047. },
  15048. paw: {
  15049. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15050. name: "Paw",
  15051. image: {
  15052. source: "./media/characters/pia-jr/paw.svg"
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Micro",
  15059. height: math.unit(1.2, "cm")
  15060. },
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(2.2, "m"),
  15064. default: true
  15065. },
  15066. {
  15067. name: "Macro",
  15068. height: math.unit(180, "m")
  15069. },
  15070. {
  15071. name: "Megamacro",
  15072. height: math.unit(420, "km")
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(2, "m"),
  15081. weight: math.unit(115, "kg"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/pia-sr/front.svg",
  15085. extra: 760 / 730,
  15086. bottom: 0.015
  15087. }
  15088. },
  15089. back: {
  15090. height: math.unit(2, "m"),
  15091. weight: math.unit(115, "kg"),
  15092. name: "Back",
  15093. image: {
  15094. source: "./media/characters/pia-sr/back.svg",
  15095. extra: 760 / 730,
  15096. bottom: 0.01
  15097. }
  15098. },
  15099. hand: {
  15100. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15101. name: "Hand",
  15102. image: {
  15103. source: "./media/characters/pia-sr/hand.svg"
  15104. }
  15105. },
  15106. foot: {
  15107. height: math.unit(1.83, "feet"),
  15108. name: "Foot",
  15109. image: {
  15110. source: "./media/characters/pia-sr/foot.svg"
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Micro",
  15117. height: math.unit(88, "mm")
  15118. },
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(2, "m"),
  15122. default: true
  15123. },
  15124. {
  15125. name: "Macro",
  15126. height: math.unit(200, "m")
  15127. },
  15128. {
  15129. name: "Megamacro",
  15130. height: math.unit(420, "km")
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(8 + 2 / 12, "feet"),
  15139. weight: math.unit(300, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/kibibyte/front.svg",
  15143. extra: 2221 / 2098,
  15144. bottom: 0.04
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(8 + 2 / 12, "feet"),
  15152. default: true
  15153. },
  15154. {
  15155. name: "Socialable Macro",
  15156. height: math.unit(50, "feet")
  15157. },
  15158. {
  15159. name: "Macro",
  15160. height: math.unit(300, "feet")
  15161. },
  15162. {
  15163. name: "Megamacro",
  15164. height: math.unit(500, "miles")
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15170. {
  15171. front: {
  15172. height: math.unit(6, "feet"),
  15173. weight: math.unit(150, "lb"),
  15174. name: "Front",
  15175. image: {
  15176. source: "./media/characters/felix/front.svg",
  15177. extra: 762 / 722,
  15178. bottom: 0.02
  15179. }
  15180. },
  15181. frontClothed: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Front (Clothed)",
  15185. image: {
  15186. source: "./media/characters/felix/front-clothed.svg",
  15187. extra: 762 / 722,
  15188. bottom: 0.02
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(6 + 8 / 12, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(2600, "feet")
  15201. },
  15202. {
  15203. name: "Megamacro",
  15204. height: math.unit(450, "miles")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6 + 1 / 12, "feet"),
  15213. weight: math.unit(250, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/tobo/front.svg",
  15217. extra: 608 / 586,
  15218. bottom: 0.023
  15219. }
  15220. },
  15221. back: {
  15222. height: math.unit(6 + 1 / 12, "feet"),
  15223. weight: math.unit(250, "lb"),
  15224. name: "Back",
  15225. image: {
  15226. source: "./media/characters/tobo/back.svg",
  15227. extra: 608 / 586
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Nano",
  15234. height: math.unit(2, "nm")
  15235. },
  15236. {
  15237. name: "Megamicro",
  15238. height: math.unit(0.1, "mm")
  15239. },
  15240. {
  15241. name: "Micro",
  15242. height: math.unit(1, "inch"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Human-sized",
  15247. height: math.unit(6 + 1 / 12, "feet")
  15248. },
  15249. {
  15250. name: "Macro",
  15251. height: math.unit(250, "feet")
  15252. },
  15253. {
  15254. name: "Megamacro",
  15255. height: math.unit(75, "miles")
  15256. },
  15257. {
  15258. name: "Texas-sized",
  15259. height: math.unit(750, "miles")
  15260. },
  15261. {
  15262. name: "Teramacro",
  15263. height: math.unit(50000, "miles")
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(6, "feet"),
  15272. weight: math.unit(269, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/danny-kapowsky/front.svg",
  15276. extra: 766 / 736,
  15277. bottom: 0.044
  15278. }
  15279. },
  15280. back: {
  15281. height: math.unit(6, "feet"),
  15282. weight: math.unit(269, "lb"),
  15283. name: "Back",
  15284. image: {
  15285. source: "./media/characters/danny-kapowsky/back.svg",
  15286. extra: 797 / 760,
  15287. bottom: 0.025
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Macro",
  15294. height: math.unit(150, "feet"),
  15295. default: true
  15296. },
  15297. {
  15298. name: "Macro+",
  15299. height: math.unit(200, "feet")
  15300. },
  15301. {
  15302. name: "Macro++",
  15303. height: math.unit(300, "feet")
  15304. },
  15305. {
  15306. name: "Macro+++",
  15307. height: math.unit(400, "feet")
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15313. {
  15314. side: {
  15315. height: math.unit(6, "feet"),
  15316. weight: math.unit(170, "lb"),
  15317. name: "Side",
  15318. image: {
  15319. source: "./media/characters/finn/side.svg",
  15320. extra: 1953 / 1807,
  15321. bottom: 0.057
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Megamacro",
  15328. height: math.unit(14445, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(5 + 6 / 12, "feet"),
  15338. weight: math.unit(125, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/roy/front.svg",
  15342. extra: 1,
  15343. bottom: 0.11
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Micro",
  15350. height: math.unit(3, "inches"),
  15351. default: true
  15352. },
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(5 + 6 / 12, "feet")
  15356. },
  15357. {
  15358. name: "Lesser Macro",
  15359. height: math.unit(60, "feet")
  15360. },
  15361. {
  15362. name: "Greater Macro",
  15363. height: math.unit(120, "feet")
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(100, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/aevsivs/front.svg",
  15376. extra: 1,
  15377. bottom: 0.03
  15378. }
  15379. },
  15380. back: {
  15381. height: math.unit(6, "feet"),
  15382. weight: math.unit(100, "lb"),
  15383. name: "Back",
  15384. image: {
  15385. source: "./media/characters/aevsivs/back.svg"
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Micro",
  15392. height: math.unit(2, "inches"),
  15393. default: true
  15394. },
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(5, "feet")
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(5 + 7 / 12, "feet"),
  15406. weight: math.unit(159, "lb"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/hildegard/front.svg",
  15410. extra: 289 / 269,
  15411. bottom: 7.63 / 297.8
  15412. }
  15413. },
  15414. back: {
  15415. height: math.unit(5 + 7 / 12, "feet"),
  15416. weight: math.unit(159, "lb"),
  15417. name: "Back",
  15418. image: {
  15419. source: "./media/characters/hildegard/back.svg",
  15420. extra: 280 / 260,
  15421. bottom: 2.3 / 282
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(5 + 7 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15435. {
  15436. bernard: {
  15437. height: math.unit(2 + 7 / 12, "feet"),
  15438. weight: math.unit(66, "lb"),
  15439. name: "Bernard",
  15440. rename: true,
  15441. image: {
  15442. source: "./media/characters/bernard-wilder/bernard.svg",
  15443. extra: 192 / 128,
  15444. bottom: 0.05
  15445. }
  15446. },
  15447. wilder: {
  15448. height: math.unit(5 + 8 / 12, "feet"),
  15449. weight: math.unit(143, "lb"),
  15450. name: "Wilder",
  15451. rename: true,
  15452. image: {
  15453. source: "./media/characters/bernard-wilder/wilder.svg",
  15454. extra: 361 / 312,
  15455. bottom: 0.02
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Normal",
  15462. height: math.unit(2 + 7 / 12, "feet"),
  15463. default: true
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15469. {
  15470. anthro: {
  15471. height: math.unit(6 + 1 / 12, "feet"),
  15472. weight: math.unit(155, "lb"),
  15473. name: "Anthro",
  15474. image: {
  15475. source: "./media/characters/hearth/anthro.svg",
  15476. extra: 1178/1136,
  15477. bottom: 28/1206
  15478. }
  15479. },
  15480. feral: {
  15481. height: math.unit(3.78, "feet"),
  15482. weight: math.unit(35, "kg"),
  15483. name: "Feral",
  15484. image: {
  15485. source: "./media/characters/hearth/feral.svg",
  15486. extra: 153 / 135,
  15487. bottom: 0.03
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(6 + 1 / 12, "feet"),
  15495. default: true
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(6, "feet"),
  15504. weight: math.unit(182, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/ingrid/front.svg",
  15508. extra: 294 / 268,
  15509. bottom: 0.027
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(6, "feet"),
  15517. default: true
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15523. {
  15524. eevee: {
  15525. height: math.unit(2 + 10 / 12, "feet"),
  15526. weight: math.unit(86, "lb"),
  15527. name: "Malgam",
  15528. image: {
  15529. source: "./media/characters/malgam/eevee.svg",
  15530. extra: 952/784,
  15531. bottom: 38/990
  15532. }
  15533. },
  15534. sylveon: {
  15535. height: math.unit(4, "feet"),
  15536. weight: math.unit(101, "lb"),
  15537. name: "Future Malgam",
  15538. rename: true,
  15539. image: {
  15540. source: "./media/characters/malgam/sylveon.svg",
  15541. extra: 371 / 325,
  15542. bottom: 0.015
  15543. }
  15544. },
  15545. gigantamax: {
  15546. height: math.unit(50, "feet"),
  15547. name: "Gigantamax Malgam",
  15548. rename: true,
  15549. image: {
  15550. source: "./media/characters/malgam/gigantamax.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(2 + 10 / 12, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(5 + 11 / 12, "feet"),
  15567. weight: math.unit(188, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/fleur/front.svg",
  15571. extra: 309 / 283,
  15572. bottom: 0.007
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(5 + 11 / 12, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(5 + 4 / 12, "feet"),
  15589. weight: math.unit(122, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/jude/front.svg",
  15593. extra: 288 / 273,
  15594. bottom: 0.03
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(5 + 4 / 12, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(5 + 11 / 12, "feet"),
  15611. weight: math.unit(190, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/seara/front.svg",
  15615. extra: 1,
  15616. bottom: 0.05
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Normal",
  15623. height: math.unit(5 + 11 / 12, "feet"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(16 + 5 / 12, "feet"),
  15633. weight: math.unit(524, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/caspian-lugia/front.svg",
  15637. extra: 1,
  15638. bottom: 0.04
  15639. }
  15640. },
  15641. },
  15642. [
  15643. {
  15644. name: "Normal",
  15645. height: math.unit(16 + 5 / 12, "feet"),
  15646. default: true
  15647. },
  15648. ]
  15649. ))
  15650. characterMakers.push(() => makeCharacter(
  15651. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15652. {
  15653. front: {
  15654. height: math.unit(5 + 7 / 12, "feet"),
  15655. weight: math.unit(170, "lb"),
  15656. name: "Front",
  15657. image: {
  15658. source: "./media/characters/mika/front.svg",
  15659. extra: 1,
  15660. bottom: 0.016
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Normal",
  15667. height: math.unit(5 + 7 / 12, "feet"),
  15668. default: true
  15669. },
  15670. ]
  15671. ))
  15672. characterMakers.push(() => makeCharacter(
  15673. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15674. {
  15675. front: {
  15676. height: math.unit(6 + 2 / 12, "feet"),
  15677. weight: math.unit(268, "lb"),
  15678. name: "Front",
  15679. image: {
  15680. source: "./media/characters/sol/front.svg",
  15681. extra: 247 / 231,
  15682. bottom: 0.05
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(6 + 2 / 12, "feet"),
  15690. default: true
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15696. {
  15697. buizel: {
  15698. height: math.unit(2 + 5 / 12, "feet"),
  15699. weight: math.unit(87, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/umiko/buizel.svg",
  15703. extra: 172 / 157,
  15704. bottom: 0.01
  15705. },
  15706. form: "buizel",
  15707. default: true
  15708. },
  15709. floatzel: {
  15710. height: math.unit(5 + 9 / 12, "feet"),
  15711. weight: math.unit(250, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/umiko/floatzel.svg",
  15715. extra: 1076/1006,
  15716. bottom: 15/1091
  15717. },
  15718. form: "floatzel",
  15719. default: true
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(2 + 5 / 12, "feet"),
  15726. form: "buizel",
  15727. default: true
  15728. },
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(5 + 9 / 12, "feet"),
  15732. form: "floatzel",
  15733. default: true
  15734. },
  15735. ],
  15736. {
  15737. "buizel": {
  15738. name: "Buizel"
  15739. },
  15740. "floatzel": {
  15741. name: "Floatzel",
  15742. default: true
  15743. }
  15744. }
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15748. {
  15749. front: {
  15750. height: math.unit(6 + 2 / 12, "feet"),
  15751. weight: math.unit(146, "lb"),
  15752. name: "Front",
  15753. image: {
  15754. source: "./media/characters/iliac/front.svg",
  15755. extra: 389 / 365,
  15756. bottom: 0.035
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(6 + 2 / 12, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15770. {
  15771. front: {
  15772. height: math.unit(6, "feet"),
  15773. weight: math.unit(170, "lb"),
  15774. name: "Front",
  15775. image: {
  15776. source: "./media/characters/topaz/front.svg",
  15777. extra: 317 / 303,
  15778. bottom: 0.055
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(6, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(5 + 11 / 12, "feet"),
  15795. weight: math.unit(144, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/gabriel/front.svg",
  15799. extra: 285 / 262,
  15800. bottom: 0.004
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(5 + 11 / 12, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15814. {
  15815. side: {
  15816. height: math.unit(6 + 5 / 12, "feet"),
  15817. weight: math.unit(300, "lb"),
  15818. name: "Side",
  15819. image: {
  15820. source: "./media/characters/tempest-suicune/side.svg",
  15821. extra: 195 / 154,
  15822. bottom: 0.04
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(6 + 5 / 12, "feet"),
  15830. default: true
  15831. },
  15832. ]
  15833. ))
  15834. characterMakers.push(() => makeCharacter(
  15835. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15836. {
  15837. front: {
  15838. height: math.unit(7 + 2 / 12, "feet"),
  15839. weight: math.unit(322, "lb"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/vulcan/front.svg",
  15843. extra: 154 / 147,
  15844. bottom: 0.04
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(7 + 2 / 12, "feet"),
  15852. default: true
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(5 + 10 / 12, "feet"),
  15861. weight: math.unit(264, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/gault/front.svg",
  15865. extra: 161 / 140,
  15866. bottom: 0.028
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(5 + 10 / 12, "feet"),
  15874. default: true
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(6, "feet"),
  15883. weight: math.unit(150, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/shard/front.svg",
  15887. extra: 273 / 238,
  15888. bottom: 0.02
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(3 + 6 / 12, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15902. {
  15903. front: {
  15904. height: math.unit(5 + 11 / 12, "feet"),
  15905. weight: math.unit(146, "lb"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/ashe/front.svg",
  15909. extra: 400 / 373,
  15910. bottom: 0.01
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(5 + 11 / 12, "feet"),
  15918. default: true
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(5 + 5 / 12, "feet"),
  15927. weight: math.unit(135, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/beatrix/front.svg",
  15931. extra: 392 / 379,
  15932. bottom: 0.01
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(6, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(6 + 2/12, "feet"),
  15949. weight: math.unit(135, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/ignatius/front.svg",
  15953. extra: 1380/1259,
  15954. bottom: 27/1407
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(6 + 2/12, "feet"),
  15962. default: true
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15968. {
  15969. front: {
  15970. height: math.unit(6 + 2 / 12, "feet"),
  15971. weight: math.unit(138, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/mei-li/front.svg",
  15975. extra: 237 / 229,
  15976. bottom: 0.03
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(6 + 2 / 12, "feet"),
  15984. default: true
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(2 + 4 / 12, "feet"),
  15993. weight: math.unit(62, "lb"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/puru/front.svg",
  15997. extra: 206 / 149,
  15998. bottom: 0.06
  15999. }
  16000. },
  16001. },
  16002. [
  16003. {
  16004. name: "Normal",
  16005. height: math.unit(2 + 4 / 12, "feet"),
  16006. default: true
  16007. },
  16008. ]
  16009. ))
  16010. characterMakers.push(() => makeCharacter(
  16011. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16012. {
  16013. anthro: {
  16014. height: math.unit(5 + 8/12, "feet"),
  16015. weight: math.unit(200, "lb"),
  16016. energyNeed: math.unit(2000, "kcal"),
  16017. name: "Anthro",
  16018. image: {
  16019. source: "./media/characters/kee/anthro.svg",
  16020. extra: 3251/3184,
  16021. bottom: 250/3501
  16022. }
  16023. },
  16024. taur: {
  16025. height: math.unit(11, "feet"),
  16026. weight: math.unit(500, "lb"),
  16027. energyNeed: math.unit(5000, "kcal"),
  16028. name: "Taur",
  16029. image: {
  16030. source: "./media/characters/kee/taur.svg",
  16031. extra: 1362/1320,
  16032. bottom: 83/1445
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(5 + 8/12, "feet"),
  16040. default: true
  16041. },
  16042. {
  16043. name: "Macro",
  16044. height: math.unit(35, "feet")
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16050. {
  16051. anthro: {
  16052. height: math.unit(7, "feet"),
  16053. weight: math.unit(190, "lb"),
  16054. name: "Anthro",
  16055. image: {
  16056. source: "./media/characters/cobalt-dracha/anthro.svg",
  16057. extra: 231 / 225,
  16058. bottom: 0.04
  16059. }
  16060. },
  16061. feral: {
  16062. height: math.unit(9 + 7 / 12, "feet"),
  16063. weight: math.unit(294, "lb"),
  16064. name: "Feral",
  16065. image: {
  16066. source: "./media/characters/cobalt-dracha/feral.svg",
  16067. extra: 692 / 633,
  16068. bottom: 0.05
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(7, "feet"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16082. {
  16083. fallen: {
  16084. height: math.unit(11 + 8 / 12, "feet"),
  16085. weight: math.unit(485, "lb"),
  16086. name: "Java (Fallen)",
  16087. rename: true,
  16088. image: {
  16089. source: "./media/characters/java/fallen.svg",
  16090. extra: 226 / 208,
  16091. bottom: 0.005
  16092. }
  16093. },
  16094. godkin: {
  16095. height: math.unit(10 + 6 / 12, "feet"),
  16096. weight: math.unit(328, "lb"),
  16097. name: "Java (Godkin)",
  16098. rename: true,
  16099. image: {
  16100. source: "./media/characters/java/godkin.svg",
  16101. extra: 1104/1068,
  16102. bottom: 36/1140
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Normal",
  16109. height: math.unit(11 + 8 / 12, "feet"),
  16110. default: true
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(5 + 9 / 12, "feet"),
  16119. weight: math.unit(170, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/purna/front.svg",
  16123. extra: 239 / 229,
  16124. bottom: 0.01
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(5 + 9 / 12, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(5 + 9 / 12, "feet"),
  16141. weight: math.unit(142, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/kuva/front.svg",
  16145. extra: 281 / 271,
  16146. bottom: 0.006
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(5 + 9 / 12, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16160. {
  16161. anthro: {
  16162. height: math.unit(9 + 2 / 12, "feet"),
  16163. weight: math.unit(270, "lb"),
  16164. name: "Anthro",
  16165. image: {
  16166. source: "./media/characters/embra/anthro.svg",
  16167. extra: 200 / 187,
  16168. bottom: 0.02
  16169. }
  16170. },
  16171. feral: {
  16172. height: math.unit(18 + 8 / 12, "feet"),
  16173. weight: math.unit(576, "lb"),
  16174. name: "Feral",
  16175. image: {
  16176. source: "./media/characters/embra/feral.svg",
  16177. extra: 152 / 137,
  16178. bottom: 0.037
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Normal",
  16185. height: math.unit(9 + 2 / 12, "feet"),
  16186. default: true
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16192. {
  16193. anthro: {
  16194. height: math.unit(10 + 9 / 12, "feet"),
  16195. weight: math.unit(224, "lb"),
  16196. name: "Anthro",
  16197. image: {
  16198. source: "./media/characters/grottos/anthro.svg",
  16199. extra: 350 / 332,
  16200. bottom: 0.045
  16201. }
  16202. },
  16203. feral: {
  16204. height: math.unit(20 + 7 / 12, "feet"),
  16205. weight: math.unit(629, "lb"),
  16206. name: "Feral",
  16207. image: {
  16208. source: "./media/characters/grottos/feral.svg",
  16209. extra: 207 / 190,
  16210. bottom: 0.05
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Normal",
  16217. height: math.unit(10 + 9 / 12, "feet"),
  16218. default: true
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16224. {
  16225. anthro: {
  16226. height: math.unit(9 + 6 / 12, "feet"),
  16227. weight: math.unit(298, "lb"),
  16228. name: "Anthro",
  16229. image: {
  16230. source: "./media/characters/frifna/anthro.svg",
  16231. extra: 282 / 269,
  16232. bottom: 0.015
  16233. }
  16234. },
  16235. feral: {
  16236. height: math.unit(16 + 2 / 12, "feet"),
  16237. weight: math.unit(624, "lb"),
  16238. name: "Feral",
  16239. image: {
  16240. source: "./media/characters/frifna/feral.svg"
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(9 + 6 / 12, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(6 + 2 / 12, "feet"),
  16257. weight: math.unit(168, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/elise/front.svg",
  16261. extra: 276 / 271
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(6 + 2 / 12, "feet"),
  16269. default: true
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(5 + 10 / 12, "feet"),
  16278. weight: math.unit(210, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/glade/front.svg",
  16282. extra: 258 / 247,
  16283. bottom: 0.008
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(5 + 10 / 12, "feet"),
  16291. default: true
  16292. },
  16293. ]
  16294. ))
  16295. characterMakers.push(() => makeCharacter(
  16296. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16297. {
  16298. front: {
  16299. height: math.unit(5 + 10 / 12, "feet"),
  16300. weight: math.unit(129, "lb"),
  16301. name: "Front",
  16302. image: {
  16303. source: "./media/characters/rina/front.svg",
  16304. extra: 266 / 255,
  16305. bottom: 0.005
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(5 + 10 / 12, "feet"),
  16313. default: true
  16314. },
  16315. ]
  16316. ))
  16317. characterMakers.push(() => makeCharacter(
  16318. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16319. {
  16320. front: {
  16321. height: math.unit(6 + 1 / 12, "feet"),
  16322. weight: math.unit(192, "lb"),
  16323. name: "Front",
  16324. image: {
  16325. source: "./media/characters/veronica/front.svg",
  16326. extra: 319 / 309,
  16327. bottom: 0.005
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "Normal",
  16334. height: math.unit(6 + 1 / 12, "feet"),
  16335. default: true
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16341. {
  16342. front: {
  16343. height: math.unit(9 + 3 / 12, "feet"),
  16344. weight: math.unit(1100, "lb"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/braxton/front.svg",
  16348. extra: 1057 / 984,
  16349. bottom: 0.05
  16350. }
  16351. },
  16352. },
  16353. [
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(9 + 3 / 12, "feet")
  16357. },
  16358. {
  16359. name: "Giant",
  16360. height: math.unit(300, "feet"),
  16361. default: true
  16362. },
  16363. {
  16364. name: "Macro",
  16365. height: math.unit(700, "feet")
  16366. },
  16367. {
  16368. name: "Megamacro",
  16369. height: math.unit(6000, "feet")
  16370. },
  16371. ]
  16372. ))
  16373. characterMakers.push(() => makeCharacter(
  16374. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16375. {
  16376. front: {
  16377. height: math.unit(6 + 7 / 12, "feet"),
  16378. weight: math.unit(150, "lb"),
  16379. name: "Front",
  16380. image: {
  16381. source: "./media/characters/blue-feyonics/front.svg",
  16382. extra: 1403 / 1306,
  16383. bottom: 0.047
  16384. }
  16385. },
  16386. },
  16387. [
  16388. {
  16389. name: "Normal",
  16390. height: math.unit(6 + 7 / 12, "feet"),
  16391. default: true
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16397. {
  16398. front: {
  16399. height: math.unit(1.8, "meters"),
  16400. weight: math.unit(60, "kg"),
  16401. name: "Front",
  16402. image: {
  16403. source: "./media/characters/maxwell/front.svg",
  16404. extra: 2060 / 1873
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Micro",
  16411. height: math.unit(1, "mm")
  16412. },
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(1.8, "meter"),
  16416. default: true
  16417. },
  16418. {
  16419. name: "Macro",
  16420. height: math.unit(30, "meters")
  16421. },
  16422. {
  16423. name: "Megamacro",
  16424. height: math.unit(10, "km")
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(6, "feet"),
  16433. weight: math.unit(150, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/jack/front.svg",
  16437. extra: 1754 / 1640,
  16438. bottom: 0.01
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(80000, "feet"),
  16446. default: true
  16447. },
  16448. {
  16449. name: "Max size",
  16450. height: math.unit(10, "lightyears")
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16456. {
  16457. urban: {
  16458. height: math.unit(5, "feet"),
  16459. weight: math.unit(240, "lb"),
  16460. name: "Urban",
  16461. image: {
  16462. source: "./media/characters/cafat/urban.svg",
  16463. extra: 1223/1126,
  16464. bottom: 205/1428
  16465. }
  16466. },
  16467. summer: {
  16468. height: math.unit(5, "feet"),
  16469. weight: math.unit(240, "lb"),
  16470. name: "Summer",
  16471. image: {
  16472. source: "./media/characters/cafat/summer.svg",
  16473. extra: 1223/1126,
  16474. bottom: 205/1428
  16475. }
  16476. },
  16477. winter: {
  16478. height: math.unit(5, "feet"),
  16479. weight: math.unit(240, "lb"),
  16480. name: "Winter",
  16481. image: {
  16482. source: "./media/characters/cafat/winter.svg",
  16483. extra: 1223/1126,
  16484. bottom: 205/1428
  16485. }
  16486. },
  16487. lingerie: {
  16488. height: math.unit(5, "feet"),
  16489. weight: math.unit(240, "lb"),
  16490. name: "Lingerie",
  16491. image: {
  16492. source: "./media/characters/cafat/lingerie.svg",
  16493. extra: 1223/1126,
  16494. bottom: 205/1428
  16495. }
  16496. },
  16497. upright: {
  16498. height: math.unit(6.3, "feet"),
  16499. weight: math.unit(240, "lb"),
  16500. name: "Upright",
  16501. image: {
  16502. source: "./media/characters/cafat/upright.svg",
  16503. bottom: 0.01
  16504. }
  16505. },
  16506. uprightFull: {
  16507. height: math.unit(6.3, "feet"),
  16508. weight: math.unit(240, "lb"),
  16509. name: "Upright (Full)",
  16510. image: {
  16511. source: "./media/characters/cafat/upright-full.svg",
  16512. bottom: 0.01
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Small",
  16519. height: math.unit(5, "feet"),
  16520. default: true
  16521. },
  16522. {
  16523. name: "Large",
  16524. height: math.unit(13, "feet")
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(6, "feet"),
  16533. weight: math.unit(150, "lb"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/verin-raharra/front.svg",
  16537. extra: 5019 / 4835,
  16538. bottom: 0.023
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(7 + 5 / 12, "feet"),
  16546. default: true
  16547. },
  16548. {
  16549. name: "Upsized",
  16550. height: math.unit(20, "feet")
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(7, "feet"),
  16559. weight: math.unit(230, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/nakata/front.svg",
  16563. extra: 1.005,
  16564. bottom: 0.01
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(7, "feet"),
  16572. default: true
  16573. },
  16574. {
  16575. name: "Big",
  16576. height: math.unit(14, "feet")
  16577. },
  16578. {
  16579. name: "Macro",
  16580. height: math.unit(400, "feet")
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16586. {
  16587. front: {
  16588. height: math.unit(4.91, "feet"),
  16589. weight: math.unit(100, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/lily/front.svg",
  16593. extra: 1585 / 1415,
  16594. bottom: 0.02
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(4.91, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16608. {
  16609. laying: {
  16610. height: math.unit(4 + 4 / 12, "feet"),
  16611. weight: math.unit(600, "lb"),
  16612. name: "Laying",
  16613. image: {
  16614. source: "./media/characters/sheila/laying.svg",
  16615. extra: 1333 / 1265,
  16616. bottom: 0.16
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(4 + 4 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(6, "feet"),
  16633. weight: math.unit(190, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/sax/front.svg",
  16637. extra: 1187 / 973,
  16638. bottom: 0.042
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Micro",
  16645. height: math.unit(4, "inches"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(6, "feet"),
  16655. weight: math.unit(150, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/pandora/front.svg",
  16659. extra: 2720 / 2556,
  16660. bottom: 0.015
  16661. }
  16662. },
  16663. back: {
  16664. height: math.unit(6, "feet"),
  16665. weight: math.unit(150, "lb"),
  16666. name: "Back",
  16667. image: {
  16668. source: "./media/characters/pandora/back.svg",
  16669. extra: 2720 / 2556,
  16670. bottom: 0.01
  16671. }
  16672. },
  16673. beans: {
  16674. height: math.unit(6 / 8, "feet"),
  16675. name: "Beans",
  16676. image: {
  16677. source: "./media/characters/pandora/beans.svg"
  16678. }
  16679. },
  16680. collar: {
  16681. height: math.unit(0.31, "feet"),
  16682. name: "Collar",
  16683. image: {
  16684. source: "./media/characters/pandora/collar.svg"
  16685. }
  16686. },
  16687. skirt: {
  16688. height: math.unit(6, "feet"),
  16689. weight: math.unit(150, "lb"),
  16690. name: "Skirt",
  16691. image: {
  16692. source: "./media/characters/pandora/skirt.svg",
  16693. extra: 1622 / 1525,
  16694. bottom: 0.015
  16695. }
  16696. },
  16697. hoodie: {
  16698. height: math.unit(6, "feet"),
  16699. weight: math.unit(150, "lb"),
  16700. name: "Hoodie",
  16701. image: {
  16702. source: "./media/characters/pandora/hoodie.svg",
  16703. extra: 1622 / 1525,
  16704. bottom: 0.015
  16705. }
  16706. },
  16707. casual: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(150, "lb"),
  16710. name: "Casual",
  16711. image: {
  16712. source: "./media/characters/pandora/casual.svg",
  16713. extra: 1622 / 1525,
  16714. bottom: 0.015
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Normal",
  16721. height: math.unit(6, "feet")
  16722. },
  16723. {
  16724. name: "Big Steppy",
  16725. height: math.unit(1, "km"),
  16726. default: true
  16727. },
  16728. {
  16729. name: "Galactic Steppy",
  16730. height: math.unit(2, "gigameters")
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16736. {
  16737. side: {
  16738. height: math.unit(10, "feet"),
  16739. weight: math.unit(800, "kg"),
  16740. name: "Side",
  16741. image: {
  16742. source: "./media/characters/venio-darcony/side.svg",
  16743. extra: 1373 / 1003,
  16744. bottom: 0.037
  16745. }
  16746. },
  16747. front: {
  16748. height: math.unit(19, "feet"),
  16749. weight: math.unit(800, "kg"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/venio-darcony/front.svg"
  16753. }
  16754. },
  16755. back: {
  16756. height: math.unit(19, "feet"),
  16757. weight: math.unit(800, "kg"),
  16758. name: "Back",
  16759. image: {
  16760. source: "./media/characters/venio-darcony/back.svg"
  16761. }
  16762. },
  16763. sideNsfw: {
  16764. height: math.unit(10, "feet"),
  16765. weight: math.unit(800, "kg"),
  16766. name: "Side (NSFW)",
  16767. image: {
  16768. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16769. extra: 1373 / 1003,
  16770. bottom: 0.037
  16771. }
  16772. },
  16773. frontNsfw: {
  16774. height: math.unit(19, "feet"),
  16775. weight: math.unit(800, "kg"),
  16776. name: "Front (NSFW)",
  16777. image: {
  16778. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16779. }
  16780. },
  16781. backNsfw: {
  16782. height: math.unit(19, "feet"),
  16783. weight: math.unit(800, "kg"),
  16784. name: "Back (NSFW)",
  16785. image: {
  16786. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16787. }
  16788. },
  16789. sideArmored: {
  16790. height: math.unit(10, "feet"),
  16791. weight: math.unit(800, "kg"),
  16792. name: "Side (Armored)",
  16793. image: {
  16794. source: "./media/characters/venio-darcony/side-armored.svg",
  16795. extra: 1373 / 1003,
  16796. bottom: 0.037
  16797. }
  16798. },
  16799. frontArmored: {
  16800. height: math.unit(19, "feet"),
  16801. weight: math.unit(900, "kg"),
  16802. name: "Front (Armored)",
  16803. image: {
  16804. source: "./media/characters/venio-darcony/front-armored.svg"
  16805. }
  16806. },
  16807. backArmored: {
  16808. height: math.unit(19, "feet"),
  16809. weight: math.unit(900, "kg"),
  16810. name: "Back (Armored)",
  16811. image: {
  16812. source: "./media/characters/venio-darcony/back-armored.svg"
  16813. }
  16814. },
  16815. sword: {
  16816. height: math.unit(10, "feet"),
  16817. weight: math.unit(50, "lb"),
  16818. name: "Sword",
  16819. image: {
  16820. source: "./media/characters/venio-darcony/sword.svg"
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(10, "feet")
  16828. },
  16829. {
  16830. name: "Macro",
  16831. height: math.unit(130, "feet"),
  16832. default: true
  16833. },
  16834. {
  16835. name: "Macro+",
  16836. height: math.unit(240, "feet")
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(6, "feet"),
  16845. weight: math.unit(150, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/veski/front.svg",
  16849. extra: 1299 / 1225,
  16850. bottom: 0.04
  16851. }
  16852. },
  16853. back: {
  16854. height: math.unit(6, "feet"),
  16855. weight: math.unit(150, "lb"),
  16856. name: "Back",
  16857. image: {
  16858. source: "./media/characters/veski/back.svg",
  16859. extra: 1299 / 1225,
  16860. bottom: 0.008
  16861. }
  16862. },
  16863. maw: {
  16864. height: math.unit(1.5 * 1.21, "feet"),
  16865. name: "Maw",
  16866. image: {
  16867. source: "./media/characters/veski/maw.svg"
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Macro",
  16874. height: math.unit(2, "km"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16881. {
  16882. front: {
  16883. height: math.unit(5 + 7 / 12, "feet"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/isabelle/front.svg",
  16887. extra: 2130 / 1976,
  16888. bottom: 0.05
  16889. }
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Supermicro",
  16895. height: math.unit(10, "micrometers")
  16896. },
  16897. {
  16898. name: "Micro",
  16899. height: math.unit(1, "inch")
  16900. },
  16901. {
  16902. name: "Tiny",
  16903. height: math.unit(5, "inches")
  16904. },
  16905. {
  16906. name: "Standard",
  16907. height: math.unit(5 + 7 / 12, "inches")
  16908. },
  16909. {
  16910. name: "Macro",
  16911. height: math.unit(80, "meters"),
  16912. default: true
  16913. },
  16914. {
  16915. name: "Megamacro",
  16916. height: math.unit(250, "meters")
  16917. },
  16918. {
  16919. name: "Gigamacro",
  16920. height: math.unit(5, "km")
  16921. },
  16922. {
  16923. name: "Cosmic",
  16924. height: math.unit(2.5e6, "miles")
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(6, "feet"),
  16933. weight: math.unit(150, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/hanzo/front.svg",
  16937. extra: 374 / 344,
  16938. bottom: 0.02
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(8, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(7, "feet"),
  16955. weight: math.unit(130, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/anna/front.svg",
  16959. extra: 169 / 145,
  16960. bottom: 0.06
  16961. }
  16962. },
  16963. full: {
  16964. height: math.unit(4.96, "feet"),
  16965. weight: math.unit(220, "lb"),
  16966. name: "Full",
  16967. image: {
  16968. source: "./media/characters/anna/full.svg",
  16969. extra: 138 / 114,
  16970. bottom: 0.15
  16971. }
  16972. },
  16973. tongue: {
  16974. height: math.unit(2.53, "feet"),
  16975. name: "Tongue",
  16976. image: {
  16977. source: "./media/characters/anna/tongue.svg"
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(7, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(7, "feet"),
  16994. weight: math.unit(150, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/ian-corvid/front.svg",
  16998. extra: 150 / 142,
  16999. bottom: 0.02
  17000. }
  17001. },
  17002. back: {
  17003. height: math.unit(7, "feet"),
  17004. weight: math.unit(150, "lb"),
  17005. name: "Back",
  17006. image: {
  17007. source: "./media/characters/ian-corvid/back.svg",
  17008. extra: 150 / 143,
  17009. bottom: 0.01
  17010. }
  17011. },
  17012. stomping: {
  17013. height: math.unit(7, "feet"),
  17014. weight: math.unit(150, "lb"),
  17015. name: "Stomping",
  17016. image: {
  17017. source: "./media/characters/ian-corvid/stomping.svg",
  17018. extra: 76 / 72
  17019. }
  17020. },
  17021. sitting: {
  17022. height: math.unit(7 / 1.8, "feet"),
  17023. weight: math.unit(150, "lb"),
  17024. name: "Sitting",
  17025. image: {
  17026. source: "./media/characters/ian-corvid/sitting.svg",
  17027. extra: 1400 / 1269,
  17028. bottom: 0.15
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Tiny Microw",
  17035. height: math.unit(1, "inch")
  17036. },
  17037. {
  17038. name: "Microw",
  17039. height: math.unit(6, "inches")
  17040. },
  17041. {
  17042. name: "Crow",
  17043. height: math.unit(7 + 1 / 12, "feet"),
  17044. default: true
  17045. },
  17046. {
  17047. name: "Macrow",
  17048. height: math.unit(176, "feet")
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(5 + 7 / 12, "feet"),
  17057. weight: math.unit(147, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/natalie-kellon/front.svg",
  17061. extra: 1214 / 1141,
  17062. bottom: 0.02
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Micro",
  17069. height: math.unit(1 / 16, "inch")
  17070. },
  17071. {
  17072. name: "Tiny",
  17073. height: math.unit(4, "inches")
  17074. },
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(5 + 7 / 12, "feet"),
  17078. default: true
  17079. },
  17080. {
  17081. name: "Amazon",
  17082. height: math.unit(12, "feet")
  17083. },
  17084. {
  17085. name: "Giantess",
  17086. height: math.unit(160, "meters")
  17087. },
  17088. {
  17089. name: "Titaness",
  17090. height: math.unit(800, "meters")
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17096. {
  17097. front: {
  17098. height: math.unit(6, "feet"),
  17099. weight: math.unit(150, "lb"),
  17100. name: "Front",
  17101. image: {
  17102. source: "./media/characters/alluria/front.svg",
  17103. extra: 806 / 738,
  17104. bottom: 0.01
  17105. }
  17106. },
  17107. side: {
  17108. height: math.unit(6, "feet"),
  17109. weight: math.unit(150, "lb"),
  17110. name: "Side",
  17111. image: {
  17112. source: "./media/characters/alluria/side.svg",
  17113. extra: 800 / 750,
  17114. }
  17115. },
  17116. back: {
  17117. height: math.unit(6, "feet"),
  17118. weight: math.unit(150, "lb"),
  17119. name: "Back",
  17120. image: {
  17121. source: "./media/characters/alluria/back.svg",
  17122. extra: 806 / 738,
  17123. }
  17124. },
  17125. frontMaid: {
  17126. height: math.unit(6, "feet"),
  17127. weight: math.unit(150, "lb"),
  17128. name: "Front (Maid)",
  17129. image: {
  17130. source: "./media/characters/alluria/front-maid.svg",
  17131. extra: 806 / 738,
  17132. bottom: 0.01
  17133. }
  17134. },
  17135. sideMaid: {
  17136. height: math.unit(6, "feet"),
  17137. weight: math.unit(150, "lb"),
  17138. name: "Side (Maid)",
  17139. image: {
  17140. source: "./media/characters/alluria/side-maid.svg",
  17141. extra: 800 / 750,
  17142. bottom: 0.005
  17143. }
  17144. },
  17145. backMaid: {
  17146. height: math.unit(6, "feet"),
  17147. weight: math.unit(150, "lb"),
  17148. name: "Back (Maid)",
  17149. image: {
  17150. source: "./media/characters/alluria/back-maid.svg",
  17151. extra: 806 / 738,
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Micro",
  17158. height: math.unit(6, "inches"),
  17159. default: true
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17165. {
  17166. front: {
  17167. height: math.unit(6, "feet"),
  17168. weight: math.unit(150, "lb"),
  17169. name: "Front",
  17170. image: {
  17171. source: "./media/characters/kyle/front.svg",
  17172. extra: 1069 / 962,
  17173. bottom: 77.228 / 1727.45
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Macro",
  17180. height: math.unit(150, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(6, "feet"),
  17190. weight: math.unit(300, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/duncan/front.svg",
  17194. extra: 1650 / 1482,
  17195. bottom: 0.05
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(100, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(5 + 4 / 12, "feet"),
  17212. weight: math.unit(220, "lb"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/memory/front.svg",
  17216. extra: 3641 / 3545,
  17217. bottom: 0.03
  17218. }
  17219. },
  17220. back: {
  17221. height: math.unit(5 + 4 / 12, "feet"),
  17222. weight: math.unit(220, "lb"),
  17223. name: "Back",
  17224. image: {
  17225. source: "./media/characters/memory/back.svg",
  17226. extra: 3641 / 3545,
  17227. bottom: 0.025
  17228. }
  17229. },
  17230. frontSkirt: {
  17231. height: math.unit(5 + 4 / 12, "feet"),
  17232. weight: math.unit(220, "lb"),
  17233. name: "Front (Skirt)",
  17234. image: {
  17235. source: "./media/characters/memory/front-skirt.svg",
  17236. extra: 3641 / 3545,
  17237. bottom: 0.03
  17238. }
  17239. },
  17240. frontDress: {
  17241. height: math.unit(5 + 4 / 12, "feet"),
  17242. weight: math.unit(220, "lb"),
  17243. name: "Front (Dress)",
  17244. image: {
  17245. source: "./media/characters/memory/front-dress.svg",
  17246. extra: 3641 / 3545,
  17247. bottom: 0.03
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Micro",
  17254. height: math.unit(6, "inches"),
  17255. default: true
  17256. },
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(5 + 4 / 12, "feet")
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17265. {
  17266. front: {
  17267. height: math.unit(4 + 11 / 12, "feet"),
  17268. weight: math.unit(100, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/luno/front.svg",
  17272. extra: 1535 / 1487,
  17273. bottom: 0.03
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Micro",
  17280. height: math.unit(3, "inches")
  17281. },
  17282. {
  17283. name: "Normal",
  17284. height: math.unit(4 + 11 / 12, "feet"),
  17285. default: true
  17286. },
  17287. {
  17288. name: "Macro",
  17289. height: math.unit(300, "feet")
  17290. },
  17291. {
  17292. name: "Megamacro",
  17293. height: math.unit(700, "miles")
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17299. {
  17300. front: {
  17301. height: math.unit(6 + 2 / 12, "feet"),
  17302. weight: math.unit(170, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/jamesy/front.svg",
  17306. extra: 440 / 382,
  17307. bottom: 0.005
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Micro",
  17314. height: math.unit(3, "inches")
  17315. },
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(6 + 2 / 12, "feet"),
  17319. default: true
  17320. },
  17321. {
  17322. name: "Macro",
  17323. height: math.unit(300, "feet")
  17324. },
  17325. {
  17326. name: "Megamacro",
  17327. height: math.unit(700, "miles")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17333. {
  17334. front: {
  17335. height: math.unit(6, "feet"),
  17336. weight: math.unit(160, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/mark/front.svg",
  17340. extra: 3300 / 3100,
  17341. bottom: 136.42 / 3440.47
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Macro",
  17348. height: math.unit(120, "meters")
  17349. },
  17350. {
  17351. name: "Bigger Macro",
  17352. height: math.unit(350, "meters")
  17353. },
  17354. {
  17355. name: "Megamacro",
  17356. height: math.unit(8, "km"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Continental",
  17361. height: math.unit(4550, "km")
  17362. },
  17363. {
  17364. name: "Planetary",
  17365. height: math.unit(65000, "km")
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(6, "feet"),
  17374. weight: math.unit(400, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/mac/front.svg",
  17378. extra: 1048 / 987.7,
  17379. bottom: 60 / 1107.6,
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Macro",
  17386. height: math.unit(500, "feet"),
  17387. default: true
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(5 + 2 / 12, "feet"),
  17396. weight: math.unit(190, "lb"),
  17397. name: "Front",
  17398. image: {
  17399. source: "./media/characters/bari/front.svg",
  17400. extra: 3156 / 2880,
  17401. bottom: 0.03
  17402. }
  17403. },
  17404. back: {
  17405. height: math.unit(5 + 2 / 12, "feet"),
  17406. weight: math.unit(190, "lb"),
  17407. name: "Back",
  17408. image: {
  17409. source: "./media/characters/bari/back.svg",
  17410. extra: 3260 / 2834,
  17411. bottom: 0.025
  17412. }
  17413. },
  17414. frontPlush: {
  17415. height: math.unit(5 + 2 / 12, "feet"),
  17416. weight: math.unit(190, "lb"),
  17417. name: "Front (Plush)",
  17418. image: {
  17419. source: "./media/characters/bari/front-plush.svg",
  17420. extra: 1112 / 1061,
  17421. bottom: 0.002
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Micro",
  17428. height: math.unit(3, "inches")
  17429. },
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(5 + 2 / 12, "feet"),
  17433. default: true
  17434. },
  17435. {
  17436. name: "Macro",
  17437. height: math.unit(20, "feet")
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(6 + 1 / 12, "feet"),
  17446. weight: math.unit(275, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/hunter-misha-raven/front.svg"
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Mortal",
  17456. height: math.unit(6 + 1 / 12, "feet")
  17457. },
  17458. {
  17459. name: "Divine",
  17460. height: math.unit(1.12134e34, "parsecs"),
  17461. default: true
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17467. {
  17468. front: {
  17469. height: math.unit(6 + 3 / 12, "feet"),
  17470. weight: math.unit(220, "lb"),
  17471. name: "Front",
  17472. image: {
  17473. source: "./media/characters/max-calore/front.svg",
  17474. extra: 1700 / 1648,
  17475. bottom: 0.01
  17476. }
  17477. },
  17478. back: {
  17479. height: math.unit(6 + 3 / 12, "feet"),
  17480. weight: math.unit(220, "lb"),
  17481. name: "Back",
  17482. image: {
  17483. source: "./media/characters/max-calore/back.svg",
  17484. extra: 1700 / 1648,
  17485. bottom: 0.01
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(6 + 3 / 12, "feet"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17499. {
  17500. side: {
  17501. height: math.unit(2 + 8 / 12, "feet"),
  17502. weight: math.unit(99, "lb"),
  17503. name: "Side",
  17504. image: {
  17505. source: "./media/characters/aspen/side.svg",
  17506. extra: 152 / 138,
  17507. bottom: 0.032
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(2 + 8 / 12, "feet"),
  17515. default: true
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17521. {
  17522. side: {
  17523. height: math.unit(3 + 2 / 12, "feet"),
  17524. weight: math.unit(224, "lb"),
  17525. name: "Side",
  17526. image: {
  17527. source: "./media/characters/sheila-feral-wolf/side.svg",
  17528. extra: 179 / 166,
  17529. bottom: 0.03
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(3 + 2 / 12, "feet"),
  17537. default: true
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17543. {
  17544. side: {
  17545. height: math.unit(1 + 9 / 12, "feet"),
  17546. weight: math.unit(38, "lb"),
  17547. name: "Side",
  17548. image: {
  17549. source: "./media/characters/michelle/side.svg",
  17550. extra: 147 / 136.7,
  17551. bottom: 0.03
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Normal",
  17558. height: math.unit(1 + 9 / 12, "feet"),
  17559. default: true
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17565. {
  17566. front: {
  17567. height: math.unit(1.54, "feet"),
  17568. weight: math.unit(50, "lb"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/nino/front.svg"
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(1.54, "feet"),
  17579. default: true
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(1.49, "feet"),
  17588. weight: math.unit(45, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/viola/front.svg"
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(1.49, "feet"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(6 + 5 / 12, "feet"),
  17608. weight: math.unit(580, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/atlas/front.svg",
  17612. extra: 298.5 / 290,
  17613. bottom: 0.015
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(6 + 5 / 12, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17627. {
  17628. side: {
  17629. height: math.unit(15.6, "inches"),
  17630. weight: math.unit(10, "lb"),
  17631. name: "Side",
  17632. image: {
  17633. source: "./media/characters/davy/side.svg",
  17634. extra: 200 / 170,
  17635. bottom: 0.01
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(15.6, "inches"),
  17643. default: true
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17649. {
  17650. side: {
  17651. height: math.unit(4 + 8 / 12, "feet"),
  17652. weight: math.unit(166, "lb"),
  17653. name: "Side",
  17654. image: {
  17655. source: "./media/characters/fiona/side.svg",
  17656. extra: 232 / 220,
  17657. bottom: 0.03
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(4 + 8 / 12, "feet"),
  17665. default: true
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17671. {
  17672. front: {
  17673. height: math.unit(26, "inches"),
  17674. weight: math.unit(35, "lb"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/lyla/front.svg",
  17678. bottom: 0.1
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(3, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17692. {
  17693. side: {
  17694. height: math.unit(1.8, "feet"),
  17695. weight: math.unit(44, "lb"),
  17696. name: "Side",
  17697. image: {
  17698. source: "./media/characters/perseus/side.svg",
  17699. bottom: 0.21
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(1.8, "feet"),
  17707. default: true
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17713. {
  17714. side: {
  17715. height: math.unit(4 + 2 / 12, "feet"),
  17716. weight: math.unit(20, "lb"),
  17717. name: "Side",
  17718. image: {
  17719. source: "./media/characters/remus/side.svg"
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(4 + 2 / 12, "feet"),
  17727. default: true
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17733. {
  17734. front: {
  17735. height: math.unit(4 + 11 / 12, "feet"),
  17736. weight: math.unit(114, "lb"),
  17737. name: "Front",
  17738. image: {
  17739. source: "./media/characters/raf/front.svg",
  17740. extra: 1504/1339,
  17741. bottom: 26/1530
  17742. }
  17743. },
  17744. side: {
  17745. height: math.unit(4 + 11 / 12, "feet"),
  17746. weight: math.unit(114, "lb"),
  17747. name: "Side",
  17748. image: {
  17749. source: "./media/characters/raf/side.svg",
  17750. extra: 1466/1316,
  17751. bottom: 29/1495
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Micro",
  17758. height: math.unit(2, "inches")
  17759. },
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(4 + 11 / 12, "feet"),
  17763. default: true
  17764. },
  17765. {
  17766. name: "Macro",
  17767. height: math.unit(70, "feet")
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17773. {
  17774. front: {
  17775. height: math.unit(1.5, "meters"),
  17776. weight: math.unit(68, "kg"),
  17777. name: "Front",
  17778. image: {
  17779. source: "./media/characters/liam-einarr/front.svg",
  17780. extra: 2822 / 2666
  17781. }
  17782. },
  17783. back: {
  17784. height: math.unit(1.5, "meters"),
  17785. weight: math.unit(68, "kg"),
  17786. name: "Back",
  17787. image: {
  17788. source: "./media/characters/liam-einarr/back.svg",
  17789. extra: 2822 / 2666,
  17790. bottom: 0.015
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(1.5, "meters"),
  17798. default: true
  17799. },
  17800. {
  17801. name: "Macro",
  17802. height: math.unit(150, "meters")
  17803. },
  17804. {
  17805. name: "Megamacro",
  17806. height: math.unit(35, "km")
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(6, "feet"),
  17815. weight: math.unit(75, "kg"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/linda/front.svg",
  17819. extra: 930 / 874,
  17820. bottom: 0.004
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(6, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(6 + 8 / 12, "feet"),
  17837. weight: math.unit(220, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/caylex/front.svg",
  17841. extra: 821 / 772,
  17842. bottom: 0.07
  17843. }
  17844. },
  17845. back: {
  17846. height: math.unit(6 + 8 / 12, "feet"),
  17847. weight: math.unit(220, "lb"),
  17848. name: "Back",
  17849. image: {
  17850. source: "./media/characters/caylex/back.svg",
  17851. extra: 821 / 772,
  17852. bottom: 0.022
  17853. }
  17854. },
  17855. hand: {
  17856. height: math.unit(1.25, "feet"),
  17857. name: "Hand",
  17858. image: {
  17859. source: "./media/characters/caylex/hand.svg"
  17860. }
  17861. },
  17862. foot: {
  17863. height: math.unit(1.6, "feet"),
  17864. name: "Foot",
  17865. image: {
  17866. source: "./media/characters/caylex/foot.svg"
  17867. }
  17868. },
  17869. armored: {
  17870. height: math.unit(6 + 8 / 12, "feet"),
  17871. weight: math.unit(250, "lb"),
  17872. name: "Armored",
  17873. image: {
  17874. source: "./media/characters/caylex/armored.svg",
  17875. extra: 1420 / 1310,
  17876. bottom: 0.045
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(6 + 8 / 12, "feet"),
  17884. default: true
  17885. },
  17886. {
  17887. name: "Normal+",
  17888. height: math.unit(12, "feet")
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17894. {
  17895. front: {
  17896. height: math.unit(7 + 6 / 12, "feet"),
  17897. weight: math.unit(288, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/alana/front.svg",
  17901. extra: 679 / 653,
  17902. bottom: 22.5 / 701
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Normal",
  17909. height: math.unit(7 + 6 / 12, "feet")
  17910. },
  17911. {
  17912. name: "Large",
  17913. height: math.unit(50, "feet")
  17914. },
  17915. {
  17916. name: "Macro",
  17917. height: math.unit(100, "feet"),
  17918. default: true
  17919. },
  17920. {
  17921. name: "Macro+",
  17922. height: math.unit(200, "feet")
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(6 + 1 / 12, "feet"),
  17931. weight: math.unit(210, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/hasani/front.svg",
  17935. extra: 244 / 232,
  17936. bottom: 0.01
  17937. }
  17938. },
  17939. back: {
  17940. height: math.unit(6 + 1 / 12, "feet"),
  17941. weight: math.unit(210, "lb"),
  17942. name: "Back",
  17943. image: {
  17944. source: "./media/characters/hasani/back.svg",
  17945. extra: 244 / 232,
  17946. bottom: 0.01
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Normal",
  17953. height: math.unit(6 + 1 / 12, "feet")
  17954. },
  17955. {
  17956. name: "Macro",
  17957. height: math.unit(175, "feet"),
  17958. default: true
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17964. {
  17965. front: {
  17966. height: math.unit(1.82, "meters"),
  17967. weight: math.unit(140, "lb"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/nita/front.svg",
  17971. extra: 2473 / 2363,
  17972. bottom: 0.01
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(1.82, "m")
  17980. },
  17981. {
  17982. name: "Macro",
  17983. height: math.unit(300, "m")
  17984. },
  17985. {
  17986. name: "Mistake Canon",
  17987. height: math.unit(0.5, "miles"),
  17988. default: true
  17989. },
  17990. {
  17991. name: "Big Mistake",
  17992. height: math.unit(13, "miles")
  17993. },
  17994. {
  17995. name: "Playing God",
  17996. height: math.unit(2450, "miles")
  17997. },
  17998. ]
  17999. ))
  18000. characterMakers.push(() => makeCharacter(
  18001. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18002. {
  18003. front: {
  18004. height: math.unit(4, "feet"),
  18005. weight: math.unit(120, "lb"),
  18006. name: "Front",
  18007. image: {
  18008. source: "./media/characters/shiriko/front.svg",
  18009. extra: 970/934,
  18010. bottom: 5/975
  18011. }
  18012. },
  18013. },
  18014. [
  18015. {
  18016. name: "Normal",
  18017. height: math.unit(4, "feet"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(6, "feet"),
  18027. name: "front",
  18028. image: {
  18029. source: "./media/characters/deja/front.svg",
  18030. extra: 926 / 840,
  18031. bottom: 0.07
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Planck Length",
  18038. height: math.unit(1.6e-35, "meters")
  18039. },
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(30.48, "meters"),
  18043. default: true
  18044. },
  18045. {
  18046. name: "Universal",
  18047. height: math.unit(8.8e26, "meters")
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18053. {
  18054. side: {
  18055. height: math.unit(8, "feet"),
  18056. weight: math.unit(6300, "lb"),
  18057. name: "Side",
  18058. image: {
  18059. source: "./media/characters/anima/side.svg",
  18060. bottom: 0.035
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Normal",
  18067. height: math.unit(8, "feet"),
  18068. default: true
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(8, "feet"),
  18077. weight: math.unit(350, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/bianca/front.svg",
  18081. extra: 234 / 225,
  18082. bottom: 0.03
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(8, "feet"),
  18090. default: true
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(6, "feet"),
  18099. weight: math.unit(150, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/adinia/front.svg",
  18103. extra: 1845 / 1672,
  18104. bottom: 0.02
  18105. }
  18106. },
  18107. back: {
  18108. height: math.unit(6, "feet"),
  18109. weight: math.unit(150, "lb"),
  18110. name: "Back",
  18111. image: {
  18112. source: "./media/characters/adinia/back.svg",
  18113. extra: 1845 / 1672,
  18114. bottom: 0.002
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(11 + 5 / 12, "feet"),
  18122. default: true
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18128. {
  18129. front: {
  18130. height: math.unit(3, "meters"),
  18131. weight: math.unit(200, "kg"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/lykasa/front.svg",
  18135. extra: 1076 / 976,
  18136. bottom: 0.06
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(3, "meters")
  18144. },
  18145. {
  18146. name: "Kaiju",
  18147. height: math.unit(120, "meters"),
  18148. default: true
  18149. },
  18150. {
  18151. name: "Mega Kaiju",
  18152. height: math.unit(240, "km")
  18153. },
  18154. {
  18155. name: "Giga Kaiju",
  18156. height: math.unit(400, "megameters")
  18157. },
  18158. {
  18159. name: "Tera Kaiju",
  18160. height: math.unit(800, "gigameters")
  18161. },
  18162. {
  18163. name: "Kaiju Dragon Goddess",
  18164. height: math.unit(26, "zettaparsecs")
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18170. {
  18171. side: {
  18172. height: math.unit(283 / 124 * 6, "feet"),
  18173. weight: math.unit(35000, "lb"),
  18174. name: "Side",
  18175. image: {
  18176. source: "./media/characters/malfaren/side.svg",
  18177. extra: 1310/529,
  18178. bottom: 24/1334
  18179. }
  18180. },
  18181. front: {
  18182. height: math.unit(22.36, "feet"),
  18183. weight: math.unit(35000, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/malfaren/front.svg",
  18187. extra: 1237/1115,
  18188. bottom: 32/1269
  18189. }
  18190. },
  18191. maw: {
  18192. height: math.unit(6.9, "feet"),
  18193. name: "Maw",
  18194. image: {
  18195. source: "./media/characters/malfaren/maw.svg"
  18196. }
  18197. },
  18198. dick: {
  18199. height: math.unit(6.19, "feet"),
  18200. name: "Dick",
  18201. image: {
  18202. source: "./media/characters/malfaren/dick.svg"
  18203. }
  18204. },
  18205. eye: {
  18206. height: math.unit(0.69, "feet"),
  18207. name: "Eye",
  18208. image: {
  18209. source: "./media/characters/malfaren/eye.svg"
  18210. }
  18211. },
  18212. },
  18213. [
  18214. {
  18215. name: "Big",
  18216. height: math.unit(283 / 162 * 6, "feet"),
  18217. },
  18218. {
  18219. name: "Bigger",
  18220. height: math.unit(283 / 124 * 6, "feet")
  18221. },
  18222. {
  18223. name: "Massive",
  18224. height: math.unit(283 / 92 * 6, "feet"),
  18225. default: true
  18226. },
  18227. {
  18228. name: "👀💦",
  18229. height: math.unit(283 / 73 * 6, "feet"),
  18230. },
  18231. ]
  18232. ))
  18233. characterMakers.push(() => makeCharacter(
  18234. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18235. {
  18236. front: {
  18237. height: math.unit(1.7, "m"),
  18238. weight: math.unit(70, "kg"),
  18239. name: "Front",
  18240. image: {
  18241. source: "./media/characters/kernel/front.svg",
  18242. extra: 222 / 210,
  18243. bottom: 0.007
  18244. }
  18245. },
  18246. },
  18247. [
  18248. {
  18249. name: "Nano",
  18250. height: math.unit(17, "micrometers")
  18251. },
  18252. {
  18253. name: "Micro",
  18254. height: math.unit(1.7, "mm")
  18255. },
  18256. {
  18257. name: "Small",
  18258. height: math.unit(1.7, "cm")
  18259. },
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(1.7, "m"),
  18263. default: true
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(1.75, "meters"),
  18272. weight: math.unit(65, "kg"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/jayne-folest/front.svg",
  18276. extra: 2115 / 2007,
  18277. bottom: 0.02
  18278. }
  18279. },
  18280. back: {
  18281. height: math.unit(1.75, "meters"),
  18282. weight: math.unit(65, "kg"),
  18283. name: "Back",
  18284. image: {
  18285. source: "./media/characters/jayne-folest/back.svg",
  18286. extra: 2115 / 2007,
  18287. bottom: 0.005
  18288. }
  18289. },
  18290. frontClothed: {
  18291. height: math.unit(1.75, "meters"),
  18292. weight: math.unit(65, "kg"),
  18293. name: "Front (Clothed)",
  18294. image: {
  18295. source: "./media/characters/jayne-folest/front-clothed.svg",
  18296. extra: 2115 / 2007,
  18297. bottom: 0.035
  18298. }
  18299. },
  18300. hand: {
  18301. height: math.unit(1 / 1.260, "feet"),
  18302. name: "Hand",
  18303. image: {
  18304. source: "./media/characters/jayne-folest/hand.svg"
  18305. }
  18306. },
  18307. foot: {
  18308. height: math.unit(1 / 0.918, "feet"),
  18309. name: "Foot",
  18310. image: {
  18311. source: "./media/characters/jayne-folest/foot.svg"
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Micro",
  18318. height: math.unit(4, "cm")
  18319. },
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(1.75, "meters")
  18323. },
  18324. {
  18325. name: "Macro",
  18326. height: math.unit(47.5, "meters"),
  18327. default: true
  18328. },
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18333. {
  18334. front: {
  18335. height: math.unit(180, "cm"),
  18336. weight: math.unit(70, "kg"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/algier/front.svg",
  18340. extra: 596 / 572,
  18341. bottom: 0.04
  18342. }
  18343. },
  18344. back: {
  18345. height: math.unit(180, "cm"),
  18346. weight: math.unit(70, "kg"),
  18347. name: "Back",
  18348. image: {
  18349. source: "./media/characters/algier/back.svg",
  18350. extra: 596 / 572,
  18351. bottom: 0.025
  18352. }
  18353. },
  18354. frontdressed: {
  18355. height: math.unit(180, "cm"),
  18356. weight: math.unit(150, "kg"),
  18357. name: "Front-dressed",
  18358. image: {
  18359. source: "./media/characters/algier/front-dressed.svg",
  18360. extra: 596 / 572,
  18361. bottom: 0.038
  18362. }
  18363. },
  18364. },
  18365. [
  18366. {
  18367. name: "Micro",
  18368. height: math.unit(5, "cm")
  18369. },
  18370. {
  18371. name: "Normal",
  18372. height: math.unit(180, "cm"),
  18373. default: true
  18374. },
  18375. {
  18376. name: "Macro",
  18377. height: math.unit(64, "m")
  18378. },
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18383. {
  18384. upright: {
  18385. height: math.unit(7, "feet"),
  18386. weight: math.unit(300, "lb"),
  18387. name: "Upright",
  18388. image: {
  18389. source: "./media/characters/pretzel/upright.svg",
  18390. extra: 534 / 522,
  18391. bottom: 0.065
  18392. }
  18393. },
  18394. sprawling: {
  18395. height: math.unit(3.75, "feet"),
  18396. weight: math.unit(300, "lb"),
  18397. name: "Sprawling",
  18398. image: {
  18399. source: "./media/characters/pretzel/sprawling.svg",
  18400. extra: 314 / 281,
  18401. bottom: 0.1
  18402. }
  18403. },
  18404. tongue: {
  18405. height: math.unit(2, "feet"),
  18406. name: "Tongue",
  18407. image: {
  18408. source: "./media/characters/pretzel/tongue.svg"
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(7, "feet"),
  18416. default: true
  18417. },
  18418. {
  18419. name: "Oversized",
  18420. height: math.unit(15, "feet")
  18421. },
  18422. {
  18423. name: "Huge",
  18424. height: math.unit(30, "feet")
  18425. },
  18426. {
  18427. name: "Macro",
  18428. height: math.unit(250, "feet")
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18434. {
  18435. sideFront: {
  18436. height: math.unit(5 + 2 / 12, "feet"),
  18437. weight: math.unit(120, "lb"),
  18438. name: "Front Side",
  18439. image: {
  18440. source: "./media/characters/roxi/side-front.svg",
  18441. extra: 2924 / 2717,
  18442. bottom: 0.08
  18443. }
  18444. },
  18445. sideBack: {
  18446. height: math.unit(5 + 2 / 12, "feet"),
  18447. weight: math.unit(120, "lb"),
  18448. name: "Back Side",
  18449. image: {
  18450. source: "./media/characters/roxi/side-back.svg",
  18451. extra: 2904 / 2693,
  18452. bottom: 0.06
  18453. }
  18454. },
  18455. front: {
  18456. height: math.unit(5 + 2 / 12, "feet"),
  18457. weight: math.unit(120, "lb"),
  18458. name: "Front",
  18459. image: {
  18460. source: "./media/characters/roxi/front.svg",
  18461. extra: 2028 / 1907,
  18462. bottom: 0.01
  18463. }
  18464. },
  18465. frontAlt: {
  18466. height: math.unit(5 + 2 / 12, "feet"),
  18467. weight: math.unit(120, "lb"),
  18468. name: "Front (Alt)",
  18469. image: {
  18470. source: "./media/characters/roxi/front-alt.svg",
  18471. extra: 1828 / 1798,
  18472. bottom: 0.01
  18473. }
  18474. },
  18475. sitting: {
  18476. height: math.unit(2.8, "feet"),
  18477. weight: math.unit(120, "lb"),
  18478. name: "Sitting",
  18479. image: {
  18480. source: "./media/characters/roxi/sitting.svg",
  18481. extra: 2660 / 2462,
  18482. bottom: 0.1
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(5 + 2 / 12, "feet"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18496. {
  18497. side: {
  18498. height: math.unit(55, "feet"),
  18499. weight: math.unit(153, "tons"),
  18500. name: "Side",
  18501. image: {
  18502. source: "./media/characters/shadow/side.svg",
  18503. extra: 701 / 628,
  18504. bottom: 0.02
  18505. }
  18506. },
  18507. flying: {
  18508. height: math.unit(145, "feet"),
  18509. weight: math.unit(153, "tons"),
  18510. name: "Flying",
  18511. image: {
  18512. source: "./media/characters/shadow/flying.svg"
  18513. }
  18514. },
  18515. },
  18516. [
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(55, "feet"),
  18520. default: true
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18526. {
  18527. front: {
  18528. height: math.unit(6, "feet"),
  18529. weight: math.unit(200, "lb"),
  18530. name: "Front",
  18531. image: {
  18532. source: "./media/characters/marcie/front.svg",
  18533. extra: 960 / 876,
  18534. bottom: 58 / 1017.87
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(1, "mile"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(7, "feet"),
  18551. weight: math.unit(200, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/kachina/front.svg",
  18555. extra: 1290.68 / 1119,
  18556. bottom: 36.5 / 1327.18
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(7, "feet"),
  18564. default: true
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18570. {
  18571. looking: {
  18572. height: math.unit(2, "meters"),
  18573. weight: math.unit(300, "kg"),
  18574. name: "Looking",
  18575. image: {
  18576. source: "./media/characters/kash/looking.svg",
  18577. extra: 474 / 344,
  18578. bottom: 0.03
  18579. }
  18580. },
  18581. side: {
  18582. height: math.unit(2, "meters"),
  18583. weight: math.unit(300, "kg"),
  18584. name: "Side",
  18585. image: {
  18586. source: "./media/characters/kash/side.svg",
  18587. extra: 302 / 251,
  18588. bottom: 0.03
  18589. }
  18590. },
  18591. front: {
  18592. height: math.unit(2, "meters"),
  18593. weight: math.unit(300, "kg"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/kash/front.svg",
  18597. extra: 495 / 360,
  18598. bottom: 0.015
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(2, "meters"),
  18606. default: true
  18607. },
  18608. {
  18609. name: "Big",
  18610. height: math.unit(3, "meters")
  18611. },
  18612. {
  18613. name: "Large",
  18614. height: math.unit(5, "meters")
  18615. },
  18616. ]
  18617. ))
  18618. characterMakers.push(() => makeCharacter(
  18619. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18620. {
  18621. feeding: {
  18622. height: math.unit(6.7, "feet"),
  18623. weight: math.unit(350, "lb"),
  18624. name: "Feeding",
  18625. image: {
  18626. source: "./media/characters/lalim/feeding.svg",
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(6.7, "feet"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(9.5, "feet"),
  18643. weight: math.unit(600, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/de'vout/front.svg",
  18647. extra: 1443 / 1328,
  18648. bottom: 0.025
  18649. }
  18650. },
  18651. back: {
  18652. height: math.unit(9.5, "feet"),
  18653. weight: math.unit(600, "lb"),
  18654. name: "Back",
  18655. image: {
  18656. source: "./media/characters/de'vout/back.svg",
  18657. extra: 1443 / 1328
  18658. }
  18659. },
  18660. frontDressed: {
  18661. height: math.unit(9.5, "feet"),
  18662. weight: math.unit(600, "lb"),
  18663. name: "Front (Dressed",
  18664. image: {
  18665. source: "./media/characters/de'vout/front-dressed.svg",
  18666. extra: 1443 / 1328,
  18667. bottom: 0.025
  18668. }
  18669. },
  18670. backDressed: {
  18671. height: math.unit(9.5, "feet"),
  18672. weight: math.unit(600, "lb"),
  18673. name: "Back (Dressed",
  18674. image: {
  18675. source: "./media/characters/de'vout/back-dressed.svg",
  18676. extra: 1443 / 1328
  18677. }
  18678. },
  18679. },
  18680. [
  18681. {
  18682. name: "Normal",
  18683. height: math.unit(9.5, "feet"),
  18684. default: true
  18685. },
  18686. ]
  18687. ))
  18688. characterMakers.push(() => makeCharacter(
  18689. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18690. {
  18691. front: {
  18692. height: math.unit(8, "feet"),
  18693. weight: math.unit(225, "lb"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/talana/front.svg",
  18697. extra: 1410 / 1300,
  18698. bottom: 0.015
  18699. }
  18700. },
  18701. frontDressed: {
  18702. height: math.unit(8, "feet"),
  18703. weight: math.unit(225, "lb"),
  18704. name: "Front (Dressed",
  18705. image: {
  18706. source: "./media/characters/talana/front-dressed.svg",
  18707. extra: 1410 / 1300,
  18708. bottom: 0.015
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(8, "feet"),
  18716. default: true
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18722. {
  18723. side: {
  18724. height: math.unit(7.2, "feet"),
  18725. weight: math.unit(150, "lb"),
  18726. name: "Side",
  18727. image: {
  18728. source: "./media/characters/xeauvok/side.svg",
  18729. extra: 1975 / 1523,
  18730. bottom: 0.07
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(7.2, "feet"),
  18738. default: true
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18744. {
  18745. side: {
  18746. height: math.unit(10, "feet"),
  18747. weight: math.unit(900, "kg"),
  18748. name: "Side",
  18749. image: {
  18750. source: "./media/characters/zara/side.svg",
  18751. extra: 504 / 498
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(10, "feet"),
  18759. default: true
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18765. {
  18766. side: {
  18767. height: math.unit(6, "feet"),
  18768. weight: math.unit(150, "lb"),
  18769. name: "Side",
  18770. image: {
  18771. source: "./media/characters/richard-dragon/side.svg",
  18772. extra: 845 / 340,
  18773. bottom: 0.017
  18774. }
  18775. },
  18776. maw: {
  18777. height: math.unit(2.97, "feet"),
  18778. name: "Maw",
  18779. image: {
  18780. source: "./media/characters/richard-dragon/maw.svg"
  18781. }
  18782. },
  18783. },
  18784. [
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(4, "feet"),
  18792. weight: math.unit(100, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/richard-smeargle/front.svg",
  18796. extra: 2952 / 2820,
  18797. bottom: 0.028
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(4, "feet"),
  18805. default: true
  18806. },
  18807. {
  18808. name: "Dynamax",
  18809. height: math.unit(20, "meters")
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(6, "feet"),
  18818. weight: math.unit(110, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/klay/front.svg",
  18822. extra: 962 / 883,
  18823. bottom: 0.04
  18824. }
  18825. },
  18826. back: {
  18827. height: math.unit(6, "feet"),
  18828. weight: math.unit(110, "lb"),
  18829. name: "Back",
  18830. image: {
  18831. source: "./media/characters/klay/back.svg",
  18832. extra: 962 / 883
  18833. }
  18834. },
  18835. beans: {
  18836. height: math.unit(1.15, "feet"),
  18837. name: "Beans",
  18838. image: {
  18839. source: "./media/characters/klay/beans.svg"
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Micro",
  18846. height: math.unit(6, "inches")
  18847. },
  18848. {
  18849. name: "Mini",
  18850. height: math.unit(3, "feet")
  18851. },
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(6, "feet"),
  18855. default: true
  18856. },
  18857. {
  18858. name: "Big",
  18859. height: math.unit(25, "feet")
  18860. },
  18861. {
  18862. name: "Macro",
  18863. height: math.unit(100, "feet")
  18864. },
  18865. {
  18866. name: "Megamacro",
  18867. height: math.unit(400, "feet")
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(6, "feet"),
  18876. weight: math.unit(160, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/marcus/front.svg",
  18880. extra: 734 / 676,
  18881. bottom: 0.03
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Little",
  18888. height: math.unit(6, "feet")
  18889. },
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(110, "feet"),
  18893. default: true
  18894. },
  18895. {
  18896. name: "Macro",
  18897. height: math.unit(250, "feet")
  18898. },
  18899. {
  18900. name: "Megamacro",
  18901. height: math.unit(1000, "feet")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(7, "feet"),
  18910. weight: math.unit(275, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/claude-delroute/front.svg",
  18914. extra: 902/827,
  18915. bottom: 26/928
  18916. }
  18917. },
  18918. side: {
  18919. height: math.unit(7, "feet"),
  18920. weight: math.unit(275, "lb"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/claude-delroute/side.svg",
  18924. extra: 908/853,
  18925. bottom: 16/924
  18926. }
  18927. },
  18928. back: {
  18929. height: math.unit(7, "feet"),
  18930. weight: math.unit(275, "lb"),
  18931. name: "Back",
  18932. image: {
  18933. source: "./media/characters/claude-delroute/back.svg",
  18934. extra: 911/829,
  18935. bottom: 18/929
  18936. }
  18937. },
  18938. maw: {
  18939. height: math.unit(0.6407, "meters"),
  18940. name: "Maw",
  18941. image: {
  18942. source: "./media/characters/claude-delroute/maw.svg"
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(7, "feet"),
  18950. default: true
  18951. },
  18952. {
  18953. name: "Lorge",
  18954. height: math.unit(20, "feet")
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18960. {
  18961. front: {
  18962. height: math.unit(8 + 4 / 12, "feet"),
  18963. weight: math.unit(600, "lb"),
  18964. name: "Front",
  18965. image: {
  18966. source: "./media/characters/dragonien/front.svg",
  18967. extra: 100 / 94,
  18968. bottom: 3.3 / 103.3445
  18969. }
  18970. },
  18971. back: {
  18972. height: math.unit(8 + 4 / 12, "feet"),
  18973. weight: math.unit(600, "lb"),
  18974. name: "Back",
  18975. image: {
  18976. source: "./media/characters/dragonien/back.svg",
  18977. extra: 776 / 746,
  18978. bottom: 6.4 / 782.0616
  18979. }
  18980. },
  18981. foot: {
  18982. height: math.unit(1.54, "feet"),
  18983. name: "Foot",
  18984. image: {
  18985. source: "./media/characters/dragonien/foot.svg",
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(8 + 4 / 12, "feet"),
  18993. default: true
  18994. },
  18995. {
  18996. name: "Macro",
  18997. height: math.unit(200, "feet")
  18998. },
  18999. {
  19000. name: "Megamacro",
  19001. height: math.unit(1, "mile")
  19002. },
  19003. {
  19004. name: "Gigamacro",
  19005. height: math.unit(1000, "miles")
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(5 + 2 / 12, "feet"),
  19014. weight: math.unit(110, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/desta/front.svg",
  19018. extra: 767 / 726,
  19019. bottom: 11.7 / 779
  19020. }
  19021. },
  19022. back: {
  19023. height: math.unit(5 + 2 / 12, "feet"),
  19024. weight: math.unit(110, "lb"),
  19025. name: "Back",
  19026. image: {
  19027. source: "./media/characters/desta/back.svg",
  19028. extra: 777 / 728,
  19029. bottom: 6 / 784
  19030. }
  19031. },
  19032. frontAlt: {
  19033. height: math.unit(5 + 2 / 12, "feet"),
  19034. weight: math.unit(110, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/desta/front-alt.svg",
  19038. extra: 1482 / 1417
  19039. }
  19040. },
  19041. side: {
  19042. height: math.unit(5 + 2 / 12, "feet"),
  19043. weight: math.unit(110, "lb"),
  19044. name: "Side",
  19045. image: {
  19046. source: "./media/characters/desta/side.svg",
  19047. extra: 2579 / 2491,
  19048. bottom: 0.053
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Micro",
  19055. height: math.unit(6, "inches")
  19056. },
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(5 + 2 / 12, "feet"),
  19060. default: true
  19061. },
  19062. {
  19063. name: "Macro",
  19064. height: math.unit(62, "feet")
  19065. },
  19066. {
  19067. name: "Megamacro",
  19068. height: math.unit(1800, "feet")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(10, "feet"),
  19077. weight: math.unit(700, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/storm-alystar/front.svg",
  19081. extra: 2112 / 1898,
  19082. bottom: 0.034
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Micro",
  19089. height: math.unit(3.5, "inches")
  19090. },
  19091. {
  19092. name: "Normal",
  19093. height: math.unit(10, "feet"),
  19094. default: true
  19095. },
  19096. {
  19097. name: "Macro",
  19098. height: math.unit(400, "feet")
  19099. },
  19100. {
  19101. name: "Deific",
  19102. height: math.unit(60, "miles")
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(2.35, "meters"),
  19111. weight: math.unit(119, "kg"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/ilia/front.svg",
  19115. extra: 1285 / 1255,
  19116. bottom: 0.06
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(2.35, "meters")
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(140, "meters"),
  19128. default: true
  19129. },
  19130. {
  19131. name: "Megamacro",
  19132. height: math.unit(100, "miles")
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(6 + 5 / 12, "feet"),
  19141. weight: math.unit(190, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/kingdead/front.svg",
  19145. extra: 1228 / 1177
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Micro",
  19152. height: math.unit(7, "inches")
  19153. },
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(6 + 5 / 12, "feet")
  19157. },
  19158. {
  19159. name: "Macro",
  19160. height: math.unit(150, "feet"),
  19161. default: true
  19162. },
  19163. {
  19164. name: "Megamacro",
  19165. height: math.unit(200, "miles")
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(8, "feet"),
  19174. weight: math.unit(600, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/kyrehx/front.svg",
  19178. extra: 1195 / 1095,
  19179. bottom: 0.034
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Micro",
  19186. height: math.unit(2, "inches")
  19187. },
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(8, "feet"),
  19191. default: true
  19192. },
  19193. {
  19194. name: "Macro",
  19195. height: math.unit(255, "feet")
  19196. },
  19197. ]
  19198. ))
  19199. characterMakers.push(() => makeCharacter(
  19200. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19201. {
  19202. front: {
  19203. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19204. weight: math.unit(184, "lb"),
  19205. name: "Front",
  19206. image: {
  19207. source: "./media/characters/xang/front.svg",
  19208. extra: 845 / 755
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19216. default: true
  19217. },
  19218. {
  19219. name: "Macro",
  19220. height: math.unit(0.935 * 146, "feet")
  19221. },
  19222. {
  19223. name: "Megamacro",
  19224. height: math.unit(0.935 * 3, "miles")
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19230. {
  19231. frontDressed: {
  19232. height: math.unit(5 + 7 / 12, "feet"),
  19233. weight: math.unit(140, "lb"),
  19234. name: "Front (Dressed)",
  19235. image: {
  19236. source: "./media/characters/doc-weardno/front-dressed.svg",
  19237. extra: 263 / 234
  19238. }
  19239. },
  19240. backDressed: {
  19241. height: math.unit(5 + 7 / 12, "feet"),
  19242. weight: math.unit(140, "lb"),
  19243. name: "Back (Dressed)",
  19244. image: {
  19245. source: "./media/characters/doc-weardno/back-dressed.svg",
  19246. extra: 266 / 238
  19247. }
  19248. },
  19249. front: {
  19250. height: math.unit(5 + 7 / 12, "feet"),
  19251. weight: math.unit(140, "lb"),
  19252. name: "Front",
  19253. image: {
  19254. source: "./media/characters/doc-weardno/front.svg",
  19255. extra: 254 / 233
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Micro",
  19262. height: math.unit(3, "inches")
  19263. },
  19264. {
  19265. name: "Normal",
  19266. height: math.unit(5 + 7 / 12, "feet"),
  19267. default: true
  19268. },
  19269. {
  19270. name: "Macro",
  19271. height: math.unit(25, "feet")
  19272. },
  19273. {
  19274. name: "Megamacro",
  19275. height: math.unit(2, "miles")
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(6 + 2 / 12, "feet"),
  19284. weight: math.unit(153, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/seth-whilst/front.svg",
  19288. bottom: 0.07
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Micro",
  19295. height: math.unit(5, "inches")
  19296. },
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(6 + 2 / 12, "feet"),
  19300. default: true
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(3, "inches"),
  19309. weight: math.unit(8, "grams"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/pocket-jabari/front.svg",
  19313. extra: 1024 / 974,
  19314. bottom: 0.039
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Minimicro",
  19321. height: math.unit(8, "mm")
  19322. },
  19323. {
  19324. name: "Micro",
  19325. height: math.unit(3, "inches"),
  19326. default: true
  19327. },
  19328. {
  19329. name: "Normal",
  19330. height: math.unit(3, "feet")
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19336. {
  19337. frontDressed: {
  19338. height: math.unit(15, "feet"),
  19339. weight: math.unit(3280, "lb"),
  19340. name: "Front (Dressed)",
  19341. image: {
  19342. source: "./media/characters/sapphy/front-dressed.svg",
  19343. extra: 1951/1654,
  19344. bottom: 194/2145
  19345. },
  19346. form: "anthro",
  19347. default: true
  19348. },
  19349. backDressed: {
  19350. height: math.unit(15, "feet"),
  19351. weight: math.unit(3280, "lb"),
  19352. name: "Back (Dressed)",
  19353. image: {
  19354. source: "./media/characters/sapphy/back-dressed.svg",
  19355. extra: 2058/1918,
  19356. bottom: 125/2183
  19357. },
  19358. form: "anthro"
  19359. },
  19360. frontNude: {
  19361. height: math.unit(15, "feet"),
  19362. weight: math.unit(3280, "lb"),
  19363. name: "Front (Nude)",
  19364. image: {
  19365. source: "./media/characters/sapphy/front-nude.svg",
  19366. extra: 1951/1654,
  19367. bottom: 194/2145
  19368. },
  19369. form: "anthro"
  19370. },
  19371. backNude: {
  19372. height: math.unit(15, "feet"),
  19373. weight: math.unit(3280, "lb"),
  19374. name: "Back (Nude)",
  19375. image: {
  19376. source: "./media/characters/sapphy/back-nude.svg",
  19377. extra: 2058/1918,
  19378. bottom: 125/2183
  19379. },
  19380. form: "anthro"
  19381. },
  19382. full: {
  19383. height: math.unit(15, "feet"),
  19384. weight: math.unit(3280, "lb"),
  19385. name: "Full",
  19386. image: {
  19387. source: "./media/characters/sapphy/full.svg",
  19388. extra: 1396/1317,
  19389. bottom: 44/1440
  19390. },
  19391. form: "anthro"
  19392. },
  19393. dick: {
  19394. height: math.unit(3.8, "feet"),
  19395. name: "Dick",
  19396. image: {
  19397. source: "./media/characters/sapphy/dick.svg"
  19398. },
  19399. form: "anthro"
  19400. },
  19401. feral: {
  19402. height: math.unit(35, "feet"),
  19403. weight: math.unit(160, "tons"),
  19404. name: "Feral",
  19405. image: {
  19406. source: "./media/characters/sapphy/feral.svg",
  19407. extra: 1050/573,
  19408. bottom: 60/1110
  19409. },
  19410. form: "feral",
  19411. default: true
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(15, "feet"),
  19418. form: "anthro"
  19419. },
  19420. {
  19421. name: "Casual Macro",
  19422. height: math.unit(120, "feet"),
  19423. form: "anthro"
  19424. },
  19425. {
  19426. name: "Macro",
  19427. height: math.unit(2150, "feet"),
  19428. default: true,
  19429. form: "anthro"
  19430. },
  19431. {
  19432. name: "Megamacro",
  19433. height: math.unit(8, "miles"),
  19434. form: "anthro"
  19435. },
  19436. {
  19437. name: "Galaxy Mom",
  19438. height: math.unit(6, "megalightyears"),
  19439. form: "anthro"
  19440. },
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(35, "feet"),
  19444. form: "feral",
  19445. default: true
  19446. },
  19447. {
  19448. name: "Macro",
  19449. height: math.unit(300, "feet"),
  19450. form: "feral"
  19451. },
  19452. {
  19453. name: "Galaxy Mom",
  19454. height: math.unit(10, "megalightyears"),
  19455. form: "feral"
  19456. },
  19457. ],
  19458. {
  19459. "anthro": {
  19460. name: "Anthro",
  19461. default: true
  19462. },
  19463. "feral": {
  19464. name: "Feral"
  19465. }
  19466. }
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19470. {
  19471. front: {
  19472. height: math.unit(6, "feet"),
  19473. weight: math.unit(170, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/kiro/front.svg",
  19477. extra: 1064 / 1012,
  19478. bottom: 0.052
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Micro",
  19485. height: math.unit(6, "inches")
  19486. },
  19487. {
  19488. name: "Normal",
  19489. height: math.unit(6, "feet"),
  19490. default: true
  19491. },
  19492. {
  19493. name: "Macro",
  19494. height: math.unit(72, "feet")
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19500. {
  19501. front: {
  19502. height: math.unit(5 + 9 / 12, "feet"),
  19503. weight: math.unit(175, "lb"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/irishfox/front.svg",
  19507. extra: 1912 / 1680,
  19508. bottom: 0.02
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Nano",
  19515. height: math.unit(1, "mm")
  19516. },
  19517. {
  19518. name: "Micro",
  19519. height: math.unit(2, "inches")
  19520. },
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(5 + 9 / 12, "feet"),
  19524. default: true
  19525. },
  19526. {
  19527. name: "Macro",
  19528. height: math.unit(45, "feet")
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19534. {
  19535. front: {
  19536. height: math.unit(6 + 1 / 12, "feet"),
  19537. weight: math.unit(75, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/aronai-sieyes/front.svg",
  19541. extra: 1532/1450,
  19542. bottom: 42/1574
  19543. }
  19544. },
  19545. side: {
  19546. height: math.unit(6 + 1 / 12, "feet"),
  19547. weight: math.unit(75, "lb"),
  19548. name: "Side",
  19549. image: {
  19550. source: "./media/characters/aronai-sieyes/side.svg",
  19551. extra: 1422/1365,
  19552. bottom: 148/1570
  19553. }
  19554. },
  19555. back: {
  19556. height: math.unit(6 + 1 / 12, "feet"),
  19557. weight: math.unit(75, "lb"),
  19558. name: "Back",
  19559. image: {
  19560. source: "./media/characters/aronai-sieyes/back.svg",
  19561. extra: 1526/1464,
  19562. bottom: 51/1577
  19563. }
  19564. },
  19565. dressed: {
  19566. height: math.unit(6 + 1 / 12, "feet"),
  19567. weight: math.unit(75, "lb"),
  19568. name: "Dressed",
  19569. image: {
  19570. source: "./media/characters/aronai-sieyes/dressed.svg",
  19571. extra: 1559/1483,
  19572. bottom: 39/1598
  19573. }
  19574. },
  19575. slit: {
  19576. height: math.unit(1.3, "feet"),
  19577. name: "Slit",
  19578. image: {
  19579. source: "./media/characters/aronai-sieyes/slit.svg"
  19580. }
  19581. },
  19582. slitSpread: {
  19583. height: math.unit(0.9, "feet"),
  19584. name: "Slit (Spread)",
  19585. image: {
  19586. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19587. }
  19588. },
  19589. rump: {
  19590. height: math.unit(1.3, "feet"),
  19591. name: "Rump",
  19592. image: {
  19593. source: "./media/characters/aronai-sieyes/rump.svg"
  19594. }
  19595. },
  19596. maw: {
  19597. height: math.unit(1.25, "feet"),
  19598. name: "Maw",
  19599. image: {
  19600. source: "./media/characters/aronai-sieyes/maw.svg"
  19601. }
  19602. },
  19603. feral: {
  19604. height: math.unit(18, "feet"),
  19605. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19606. name: "Feral",
  19607. image: {
  19608. source: "./media/characters/aronai-sieyes/feral.svg",
  19609. extra: 1530 / 1240,
  19610. bottom: 0.035
  19611. }
  19612. },
  19613. },
  19614. [
  19615. {
  19616. name: "Micro",
  19617. height: math.unit(2, "inches")
  19618. },
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(6 + 1 / 12, "feet"),
  19622. default: true
  19623. }
  19624. ]
  19625. ))
  19626. characterMakers.push(() => makeCharacter(
  19627. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19628. {
  19629. front: {
  19630. height: math.unit(12, "feet"),
  19631. weight: math.unit(410, "kg"),
  19632. name: "Front",
  19633. image: {
  19634. source: "./media/characters/xuna/front.svg",
  19635. extra: 2184 / 1980
  19636. }
  19637. },
  19638. side: {
  19639. height: math.unit(12, "feet"),
  19640. weight: math.unit(410, "kg"),
  19641. name: "Side",
  19642. image: {
  19643. source: "./media/characters/xuna/side.svg",
  19644. extra: 2184 / 1980
  19645. }
  19646. },
  19647. back: {
  19648. height: math.unit(12, "feet"),
  19649. weight: math.unit(410, "kg"),
  19650. name: "Back",
  19651. image: {
  19652. source: "./media/characters/xuna/back.svg",
  19653. extra: 2184 / 1980
  19654. }
  19655. },
  19656. },
  19657. [
  19658. {
  19659. name: "Nano glow",
  19660. height: math.unit(10, "nm")
  19661. },
  19662. {
  19663. name: "Micro floof",
  19664. height: math.unit(0.3, "m")
  19665. },
  19666. {
  19667. name: "Huggable softy boi",
  19668. height: math.unit(3.6576, "m"),
  19669. default: true
  19670. },
  19671. {
  19672. name: "Admirable floof",
  19673. height: math.unit(80, "meters")
  19674. },
  19675. {
  19676. name: "Gentle macro",
  19677. height: math.unit(300, "meters")
  19678. },
  19679. {
  19680. name: "Very careful floof",
  19681. height: math.unit(3200, "meters")
  19682. },
  19683. {
  19684. name: "The mega floof",
  19685. height: math.unit(36000, "meters")
  19686. },
  19687. {
  19688. name: "Giga-fur-Wicker",
  19689. height: math.unit(4800000, "meters")
  19690. },
  19691. {
  19692. name: "Licky world",
  19693. height: math.unit(20000000, "meters")
  19694. },
  19695. {
  19696. name: "Floofy cyan sun",
  19697. height: math.unit(1500000000, "meters")
  19698. },
  19699. {
  19700. name: "Milky Wicker",
  19701. height: math.unit(1000000000000000000000, "meters")
  19702. },
  19703. {
  19704. name: "The observing Wicker",
  19705. height: math.unit(999999999999999999999999999, "meters")
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19711. {
  19712. front: {
  19713. height: math.unit(5 + 9 / 12, "feet"),
  19714. weight: math.unit(150, "lb"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/arokha-sieyes/front.svg",
  19718. extra: 1425 / 1284,
  19719. bottom: 0.05
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(5 + 9 / 12, "feet")
  19727. },
  19728. {
  19729. name: "Macro",
  19730. height: math.unit(30, "meters"),
  19731. default: true
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19737. {
  19738. front: {
  19739. height: math.unit(6, "feet"),
  19740. weight: math.unit(180, "lb"),
  19741. name: "Front",
  19742. image: {
  19743. source: "./media/characters/arokh-sieyes/front.svg",
  19744. extra: 1830 / 1769,
  19745. bottom: 0.01
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(6, "feet")
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(30, "meters"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19763. {
  19764. side: {
  19765. height: math.unit(13 + 1 / 12, "feet"),
  19766. weight: math.unit(8.5, "tonnes"),
  19767. name: "Side",
  19768. image: {
  19769. source: "./media/characters/goldeneye/side.svg",
  19770. extra: 1182 / 778,
  19771. bottom: 0.067
  19772. }
  19773. },
  19774. paw: {
  19775. height: math.unit(3.4, "feet"),
  19776. name: "Paw",
  19777. image: {
  19778. source: "./media/characters/goldeneye/paw.svg"
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(13 + 1 / 12, "feet"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19792. {
  19793. front: {
  19794. height: math.unit(6 + 1 / 12, "feet"),
  19795. weight: math.unit(210, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/leonardo-lycheborne/front.svg",
  19799. extra: 776/723,
  19800. bottom: 34/810
  19801. }
  19802. },
  19803. side: {
  19804. height: math.unit(6 + 1 / 12, "feet"),
  19805. weight: math.unit(210, "lb"),
  19806. name: "Side",
  19807. image: {
  19808. source: "./media/characters/leonardo-lycheborne/side.svg",
  19809. extra: 780/728,
  19810. bottom: 12/792
  19811. }
  19812. },
  19813. back: {
  19814. height: math.unit(6 + 1 / 12, "feet"),
  19815. weight: math.unit(210, "lb"),
  19816. name: "Back",
  19817. image: {
  19818. source: "./media/characters/leonardo-lycheborne/back.svg",
  19819. extra: 775/721,
  19820. bottom: 17/792
  19821. }
  19822. },
  19823. hand: {
  19824. height: math.unit(1.08, "feet"),
  19825. name: "Hand",
  19826. image: {
  19827. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19828. }
  19829. },
  19830. foot: {
  19831. height: math.unit(1.32, "feet"),
  19832. name: "Foot",
  19833. image: {
  19834. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19835. }
  19836. },
  19837. maw: {
  19838. height: math.unit(1, "feet"),
  19839. name: "Maw",
  19840. image: {
  19841. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19842. }
  19843. },
  19844. were: {
  19845. height: math.unit(20, "feet"),
  19846. weight: math.unit(7800, "lb"),
  19847. name: "Were",
  19848. image: {
  19849. source: "./media/characters/leonardo-lycheborne/were.svg",
  19850. extra: 1224/1165,
  19851. bottom: 72/1296
  19852. }
  19853. },
  19854. feral: {
  19855. height: math.unit(7.5, "feet"),
  19856. weight: math.unit(600, "lb"),
  19857. name: "Feral",
  19858. image: {
  19859. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19860. extra: 797/702,
  19861. bottom: 139/936
  19862. }
  19863. },
  19864. taur: {
  19865. height: math.unit(11, "feet"),
  19866. weight: math.unit(3300, "lb"),
  19867. name: "Taur",
  19868. image: {
  19869. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19870. extra: 1271/1197,
  19871. bottom: 47/1318
  19872. }
  19873. },
  19874. barghest: {
  19875. height: math.unit(11, "feet"),
  19876. weight: math.unit(1300, "lb"),
  19877. name: "Barghest",
  19878. image: {
  19879. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19880. extra: 1291/1204,
  19881. bottom: 37/1328
  19882. }
  19883. },
  19884. dick: {
  19885. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19886. name: "Dick",
  19887. image: {
  19888. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19889. }
  19890. },
  19891. dickWere: {
  19892. height: math.unit((20) / 3.8, "feet"),
  19893. name: "Dick (Were)",
  19894. image: {
  19895. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(6 + 1 / 12, "feet"),
  19903. default: true
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(10, "feet"),
  19912. weight: math.unit(350, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/jet/front.svg",
  19916. extra: 2050 / 1980,
  19917. bottom: 0.013
  19918. }
  19919. },
  19920. back: {
  19921. height: math.unit(10, "feet"),
  19922. weight: math.unit(350, "lb"),
  19923. name: "Back",
  19924. image: {
  19925. source: "./media/characters/jet/back.svg",
  19926. extra: 2050 / 1980,
  19927. bottom: 0.013
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Micro",
  19934. height: math.unit(6, "inches")
  19935. },
  19936. {
  19937. name: "Normal",
  19938. height: math.unit(10, "feet"),
  19939. default: true
  19940. },
  19941. {
  19942. name: "Macro",
  19943. height: math.unit(100, "feet")
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19949. {
  19950. front: {
  19951. height: math.unit(15, "feet"),
  19952. weight: math.unit(2800, "lb"),
  19953. name: "Front",
  19954. image: {
  19955. source: "./media/characters/tanarath/front.svg",
  19956. extra: 2392 / 2220,
  19957. bottom: 0.03
  19958. }
  19959. },
  19960. back: {
  19961. height: math.unit(15, "feet"),
  19962. weight: math.unit(2800, "lb"),
  19963. name: "Back",
  19964. image: {
  19965. source: "./media/characters/tanarath/back.svg",
  19966. extra: 2392 / 2220,
  19967. bottom: 0.03
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(15, "feet"),
  19975. default: true
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(7 + 1 / 12, "feet"),
  19984. weight: math.unit(175, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/patty-cattybatty/front.svg",
  19988. extra: 908 / 874,
  19989. bottom: 0.025
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Micro",
  19996. height: math.unit(1, "inch")
  19997. },
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(7 + 1 / 12, "feet")
  20001. },
  20002. {
  20003. name: "Mini Macro",
  20004. height: math.unit(155, "feet")
  20005. },
  20006. {
  20007. name: "Macro",
  20008. height: math.unit(1077, "feet")
  20009. },
  20010. {
  20011. name: "Mega Macro",
  20012. height: math.unit(47650, "feet"),
  20013. default: true
  20014. },
  20015. {
  20016. name: "Giga Macro",
  20017. height: math.unit(440, "miles")
  20018. },
  20019. {
  20020. name: "Tera Macro",
  20021. height: math.unit(8700, "miles")
  20022. },
  20023. {
  20024. name: "Planetary Macro",
  20025. height: math.unit(32700, "miles")
  20026. },
  20027. {
  20028. name: "Solar Macro",
  20029. height: math.unit(550000, "miles")
  20030. },
  20031. {
  20032. name: "Celestial Macro",
  20033. height: math.unit(2.5, "AU")
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(4 + 5 / 12, "feet"),
  20042. weight: math.unit(90, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/cappu/front.svg",
  20046. extra: 1247 / 1152,
  20047. bottom: 0.012
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(4 + 5 / 12, "feet"),
  20055. default: true
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20061. {
  20062. frontDressed: {
  20063. height: math.unit(70, "cm"),
  20064. weight: math.unit(6, "kg"),
  20065. name: "Front (Dressed)",
  20066. image: {
  20067. source: "./media/characters/sebi/front-dressed.svg",
  20068. extra: 713.5 / 686.5,
  20069. bottom: 0.003
  20070. }
  20071. },
  20072. front: {
  20073. height: math.unit(70, "cm"),
  20074. weight: math.unit(5, "kg"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/sebi/front.svg",
  20078. extra: 713.5 / 686.5,
  20079. bottom: 0.003
  20080. }
  20081. }
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(70, "cm"),
  20087. default: true
  20088. },
  20089. {
  20090. name: "Macro",
  20091. height: math.unit(8, "meters")
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20097. {
  20098. front: {
  20099. height: math.unit(6, "feet"),
  20100. weight: math.unit(150, "lb"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/typhek/front.svg",
  20104. extra: 1948 / 1929,
  20105. bottom: 0.025
  20106. }
  20107. },
  20108. side: {
  20109. height: math.unit(6, "feet"),
  20110. weight: math.unit(150, "lb"),
  20111. name: "Side",
  20112. image: {
  20113. source: "./media/characters/typhek/side.svg",
  20114. extra: 2034 / 2010,
  20115. bottom: 0.003
  20116. }
  20117. },
  20118. back: {
  20119. height: math.unit(6, "feet"),
  20120. weight: math.unit(150, "lb"),
  20121. name: "Back",
  20122. image: {
  20123. source: "./media/characters/typhek/back.svg",
  20124. extra: 2005 / 1978,
  20125. bottom: 0.004
  20126. }
  20127. },
  20128. palm: {
  20129. height: math.unit(1.2, "feet"),
  20130. name: "Palm",
  20131. image: {
  20132. source: "./media/characters/typhek/palm.svg"
  20133. }
  20134. },
  20135. fist: {
  20136. height: math.unit(1.1, "feet"),
  20137. name: "Fist",
  20138. image: {
  20139. source: "./media/characters/typhek/fist.svg"
  20140. }
  20141. },
  20142. foot: {
  20143. height: math.unit(1.57, "feet"),
  20144. name: "Foot",
  20145. image: {
  20146. source: "./media/characters/typhek/foot.svg"
  20147. }
  20148. },
  20149. sole: {
  20150. height: math.unit(2.05, "feet"),
  20151. name: "Sole",
  20152. image: {
  20153. source: "./media/characters/typhek/sole.svg"
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Macro",
  20160. height: math.unit(40, "stories"),
  20161. default: true
  20162. },
  20163. {
  20164. name: "Megamacro",
  20165. height: math.unit(1, "mile")
  20166. },
  20167. {
  20168. name: "Gigamacro",
  20169. height: math.unit(4000, "solarradii")
  20170. },
  20171. {
  20172. name: "Universal",
  20173. height: math.unit(1.1, "universes")
  20174. }
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20179. {
  20180. side: {
  20181. height: math.unit(5 + 7 / 12, "feet"),
  20182. weight: math.unit(150, "lb"),
  20183. name: "Side",
  20184. image: {
  20185. source: "./media/characters/kassy/side.svg",
  20186. extra: 1280 / 1225,
  20187. bottom: 0.002
  20188. }
  20189. },
  20190. front: {
  20191. height: math.unit(5 + 7 / 12, "feet"),
  20192. weight: math.unit(150, "lb"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/kassy/front.svg",
  20196. extra: 1280 / 1225,
  20197. bottom: 0.025
  20198. }
  20199. },
  20200. back: {
  20201. height: math.unit(5 + 7 / 12, "feet"),
  20202. weight: math.unit(150, "lb"),
  20203. name: "Back",
  20204. image: {
  20205. source: "./media/characters/kassy/back.svg",
  20206. extra: 1280 / 1225,
  20207. bottom: 0.002
  20208. }
  20209. },
  20210. foot: {
  20211. height: math.unit(1.266, "feet"),
  20212. name: "Foot",
  20213. image: {
  20214. source: "./media/characters/kassy/foot.svg"
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(5 + 7 / 12, "feet")
  20222. },
  20223. {
  20224. name: "Macro",
  20225. height: math.unit(137, "feet"),
  20226. default: true
  20227. },
  20228. {
  20229. name: "Megamacro",
  20230. height: math.unit(1, "mile")
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20236. {
  20237. front: {
  20238. height: math.unit(6 + 1 / 12, "feet"),
  20239. weight: math.unit(200, "lb"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/neil/front.svg",
  20243. extra: 1326 / 1250,
  20244. bottom: 0.023
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(6 + 1 / 12, "feet"),
  20252. default: true
  20253. },
  20254. {
  20255. name: "Macro",
  20256. height: math.unit(200, "feet")
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20262. {
  20263. front: {
  20264. height: math.unit(5 + 9 / 12, "feet"),
  20265. weight: math.unit(190, "lb"),
  20266. name: "Front",
  20267. image: {
  20268. source: "./media/characters/atticus/front.svg",
  20269. extra: 2934 / 2785,
  20270. bottom: 0.025
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Normal",
  20277. height: math.unit(5 + 9 / 12, "feet"),
  20278. default: true
  20279. },
  20280. {
  20281. name: "Macro",
  20282. height: math.unit(180, "feet")
  20283. },
  20284. ]
  20285. ))
  20286. characterMakers.push(() => makeCharacter(
  20287. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20288. {
  20289. side: {
  20290. height: math.unit(9, "feet"),
  20291. weight: math.unit(650, "lb"),
  20292. name: "Side",
  20293. image: {
  20294. source: "./media/characters/milo/side.svg",
  20295. extra: 2644 / 2310,
  20296. bottom: 0.032
  20297. }
  20298. },
  20299. },
  20300. [
  20301. {
  20302. name: "Normal",
  20303. height: math.unit(9, "feet"),
  20304. default: true
  20305. },
  20306. {
  20307. name: "Macro",
  20308. height: math.unit(300, "feet")
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20314. {
  20315. side: {
  20316. height: math.unit(8, "meters"),
  20317. weight: math.unit(90000, "kg"),
  20318. name: "Side",
  20319. image: {
  20320. source: "./media/characters/ijzer/side.svg",
  20321. extra: 2756 / 1600,
  20322. bottom: 0.01
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Small",
  20329. height: math.unit(3, "meters")
  20330. },
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(8, "meters"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Normal+",
  20338. height: math.unit(10, "meters")
  20339. },
  20340. {
  20341. name: "Bigger",
  20342. height: math.unit(24, "meters")
  20343. },
  20344. {
  20345. name: "Huge",
  20346. height: math.unit(80, "meters")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(6 + 2 / 12, "feet"),
  20355. weight: math.unit(153, "lb"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/luca-cervicum/front.svg",
  20359. extra: 370 / 327,
  20360. bottom: 0.015
  20361. }
  20362. },
  20363. back: {
  20364. height: math.unit(6 + 2 / 12, "feet"),
  20365. weight: math.unit(153, "lb"),
  20366. name: "Back",
  20367. image: {
  20368. source: "./media/characters/luca-cervicum/back.svg",
  20369. extra: 367 / 333,
  20370. bottom: 0.005
  20371. }
  20372. },
  20373. frontGear: {
  20374. height: math.unit(6 + 2 / 12, "feet"),
  20375. weight: math.unit(173, "lb"),
  20376. name: "Front (Gear)",
  20377. image: {
  20378. source: "./media/characters/luca-cervicum/front-gear.svg",
  20379. extra: 377 / 333,
  20380. bottom: 0.006
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(6 + 2 / 12, "feet"),
  20388. default: true
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(6 + 1 / 12, "feet"),
  20397. weight: math.unit(304, "lb"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/oliver/front.svg",
  20401. extra: 157 / 143,
  20402. bottom: 0.08
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(6 + 1 / 12, "feet"),
  20410. default: true
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(5 + 7 / 12, "feet"),
  20419. weight: math.unit(140, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/shane/front.svg",
  20423. extra: 304 / 289,
  20424. bottom: 0.005
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Normal",
  20431. height: math.unit(5 + 7 / 12, "feet"),
  20432. default: true
  20433. },
  20434. ]
  20435. ))
  20436. characterMakers.push(() => makeCharacter(
  20437. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20438. {
  20439. front: {
  20440. height: math.unit(5 + 9 / 12, "feet"),
  20441. weight: math.unit(178, "lb"),
  20442. name: "Front",
  20443. image: {
  20444. source: "./media/characters/shin/front.svg",
  20445. extra: 159 / 151,
  20446. bottom: 0.015
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(5 + 9 / 12, "feet"),
  20454. default: true
  20455. },
  20456. ]
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(5 + 10 / 12, "feet"),
  20463. weight: math.unit(168, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/xerxes/front.svg",
  20467. extra: 282 / 260,
  20468. bottom: 0.045
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(5 + 10 / 12, "feet"),
  20476. default: true
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20482. {
  20483. front: {
  20484. height: math.unit(6 + 7 / 12, "feet"),
  20485. weight: math.unit(208, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/chaska/front.svg",
  20489. extra: 332 / 319,
  20490. bottom: 0.015
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(6 + 7 / 12, "feet"),
  20498. default: true
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20504. {
  20505. front: {
  20506. height: math.unit(5 + 8 / 12, "feet"),
  20507. weight: math.unit(208, "lb"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/enuk/front.svg",
  20511. extra: 437 / 406,
  20512. bottom: 0.02
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(5 + 8 / 12, "feet"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20526. {
  20527. front: {
  20528. height: math.unit(5 + 10 / 12, "feet"),
  20529. weight: math.unit(252, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/bruun/front.svg",
  20533. extra: 197 / 187,
  20534. bottom: 0.012
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Normal",
  20541. height: math.unit(5 + 10 / 12, "feet"),
  20542. default: true
  20543. },
  20544. ]
  20545. ))
  20546. characterMakers.push(() => makeCharacter(
  20547. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20548. {
  20549. front: {
  20550. height: math.unit(6 + 10 / 12, "feet"),
  20551. weight: math.unit(255, "lb"),
  20552. name: "Front",
  20553. image: {
  20554. source: "./media/characters/alexeev/front.svg",
  20555. extra: 213 / 200,
  20556. bottom: 0.05
  20557. }
  20558. },
  20559. },
  20560. [
  20561. {
  20562. name: "Normal",
  20563. height: math.unit(6 + 10 / 12, "feet"),
  20564. default: true
  20565. },
  20566. ]
  20567. ))
  20568. characterMakers.push(() => makeCharacter(
  20569. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20570. {
  20571. front: {
  20572. height: math.unit(2 + 8 / 12, "feet"),
  20573. weight: math.unit(22, "lb"),
  20574. name: "Front",
  20575. image: {
  20576. source: "./media/characters/evelyn/front.svg",
  20577. extra: 208 / 180
  20578. }
  20579. },
  20580. },
  20581. [
  20582. {
  20583. name: "Normal",
  20584. height: math.unit(2 + 8 / 12, "feet"),
  20585. default: true
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20591. {
  20592. front: {
  20593. height: math.unit(5 + 9 / 12, "feet"),
  20594. weight: math.unit(139, "lb"),
  20595. name: "Front",
  20596. image: {
  20597. source: "./media/characters/inca/front.svg",
  20598. extra: 294 / 291,
  20599. bottom: 0.03
  20600. }
  20601. },
  20602. },
  20603. [
  20604. {
  20605. name: "Normal",
  20606. height: math.unit(5 + 9 / 12, "feet"),
  20607. default: true
  20608. },
  20609. ]
  20610. ))
  20611. characterMakers.push(() => makeCharacter(
  20612. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20613. {
  20614. front: {
  20615. height: math.unit(6 + 3 / 12, "feet"),
  20616. weight: math.unit(185, "lb"),
  20617. name: "Front",
  20618. image: {
  20619. source: "./media/characters/mera/front.svg",
  20620. extra: 291 / 277,
  20621. bottom: 0.03
  20622. }
  20623. },
  20624. },
  20625. [
  20626. {
  20627. name: "Normal",
  20628. height: math.unit(6 + 3 / 12, "feet"),
  20629. default: true
  20630. },
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20635. {
  20636. front: {
  20637. height: math.unit(6 + 7 / 12, "feet"),
  20638. weight: math.unit(160, "lb"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/ceres/front.svg",
  20642. extra: 1023 / 950,
  20643. bottom: 0.027
  20644. }
  20645. },
  20646. back: {
  20647. height: math.unit(6 + 7 / 12, "feet"),
  20648. weight: math.unit(160, "lb"),
  20649. name: "Back",
  20650. image: {
  20651. source: "./media/characters/ceres/back.svg",
  20652. extra: 1023 / 950
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(6 + 7 / 12, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(5 + 10 / 12, "feet"),
  20669. weight: math.unit(150, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/kris/front.svg",
  20673. extra: 885 / 803,
  20674. bottom: 0.03
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(5 + 10 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(7, "feet"),
  20691. weight: math.unit(120, "kg"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/taluthus/front.svg",
  20695. extra: 903 / 833,
  20696. bottom: 0.015
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(7, "feet"),
  20704. default: true
  20705. },
  20706. {
  20707. name: "Macro",
  20708. height: math.unit(300, "feet")
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(5 + 9 / 12, "feet"),
  20717. weight: math.unit(145, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/dawn/front.svg",
  20721. extra: 2094 / 2016,
  20722. bottom: 0.025
  20723. }
  20724. },
  20725. back: {
  20726. height: math.unit(5 + 9 / 12, "feet"),
  20727. weight: math.unit(160, "lb"),
  20728. name: "Back",
  20729. image: {
  20730. source: "./media/characters/dawn/back.svg",
  20731. extra: 2112 / 2080,
  20732. bottom: 0.005
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(6 + 7 / 12, "feet"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20746. {
  20747. anthro: {
  20748. height: math.unit(8 + 3 / 12, "feet"),
  20749. weight: math.unit(450, "lb"),
  20750. name: "Anthro",
  20751. image: {
  20752. source: "./media/characters/arador/anthro.svg",
  20753. extra: 1835 / 1718,
  20754. bottom: 0.025
  20755. }
  20756. },
  20757. feral: {
  20758. height: math.unit(4, "feet"),
  20759. weight: math.unit(200, "lb"),
  20760. name: "Feral",
  20761. image: {
  20762. source: "./media/characters/arador/feral.svg",
  20763. extra: 1683 / 1514,
  20764. bottom: 0.07
  20765. }
  20766. },
  20767. },
  20768. [
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(8 + 3 / 12, "feet")
  20772. },
  20773. {
  20774. name: "Macro",
  20775. height: math.unit(82.5, "feet"),
  20776. default: true
  20777. },
  20778. ]
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(5 + 10 / 12, "feet"),
  20785. weight: math.unit(125, "lb"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/dharsi/front.svg",
  20789. extra: 716 / 630,
  20790. bottom: 0.035
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Nano",
  20797. height: math.unit(100, "nm")
  20798. },
  20799. {
  20800. name: "Micro",
  20801. height: math.unit(2, "inches")
  20802. },
  20803. {
  20804. name: "Normal",
  20805. height: math.unit(5 + 10 / 12, "feet"),
  20806. default: true
  20807. },
  20808. {
  20809. name: "Macro",
  20810. height: math.unit(1000, "feet")
  20811. },
  20812. {
  20813. name: "Megamacro",
  20814. height: math.unit(10, "miles")
  20815. },
  20816. {
  20817. name: "Gigamacro",
  20818. height: math.unit(3000, "miles")
  20819. },
  20820. {
  20821. name: "Teramacro",
  20822. height: math.unit(500000, "miles")
  20823. },
  20824. {
  20825. name: "Teramacro+",
  20826. height: math.unit(30, "galaxies")
  20827. },
  20828. ]
  20829. ))
  20830. characterMakers.push(() => makeCharacter(
  20831. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20832. {
  20833. front: {
  20834. height: math.unit(6, "feet"),
  20835. weight: math.unit(150, "lb"),
  20836. name: "Front",
  20837. image: {
  20838. source: "./media/characters/deathy/front.svg",
  20839. extra: 1552 / 1463,
  20840. bottom: 0.025
  20841. }
  20842. },
  20843. side: {
  20844. height: math.unit(6, "feet"),
  20845. weight: math.unit(150, "lb"),
  20846. name: "Side",
  20847. image: {
  20848. source: "./media/characters/deathy/side.svg",
  20849. extra: 1604 / 1455,
  20850. bottom: 0.025
  20851. }
  20852. },
  20853. back: {
  20854. height: math.unit(6, "feet"),
  20855. weight: math.unit(150, "lb"),
  20856. name: "Back",
  20857. image: {
  20858. source: "./media/characters/deathy/back.svg",
  20859. extra: 1580 / 1463,
  20860. bottom: 0.005
  20861. }
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Micro",
  20867. height: math.unit(5, "millimeters")
  20868. },
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(6 + 5 / 12, "feet"),
  20872. default: true
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20878. {
  20879. front: {
  20880. height: math.unit(16, "feet"),
  20881. weight: math.unit(4000, "lb"),
  20882. name: "Front",
  20883. image: {
  20884. source: "./media/characters/juniper/front.svg",
  20885. bottom: 0.04
  20886. }
  20887. },
  20888. },
  20889. [
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(16, "feet"),
  20893. default: true
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20899. {
  20900. front: {
  20901. height: math.unit(6, "feet"),
  20902. weight: math.unit(150, "lb"),
  20903. name: "Front",
  20904. image: {
  20905. source: "./media/characters/hipster/front.svg",
  20906. extra: 1312 / 1209,
  20907. bottom: 0.025
  20908. }
  20909. },
  20910. back: {
  20911. height: math.unit(6, "feet"),
  20912. weight: math.unit(150, "lb"),
  20913. name: "Back",
  20914. image: {
  20915. source: "./media/characters/hipster/back.svg",
  20916. extra: 1281 / 1196,
  20917. bottom: 0.01
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Micro",
  20924. height: math.unit(1, "mm")
  20925. },
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(4, "inches"),
  20929. default: true
  20930. },
  20931. {
  20932. name: "Macro",
  20933. height: math.unit(500, "feet")
  20934. },
  20935. {
  20936. name: "Megamacro",
  20937. height: math.unit(1000, "miles")
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(6, "feet"),
  20946. weight: math.unit(150, "lb"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/tendirmuldr/front.svg",
  20950. extra: 1878 / 1772,
  20951. bottom: 0.015
  20952. }
  20953. },
  20954. },
  20955. [
  20956. {
  20957. name: "Megamacro",
  20958. height: math.unit(1500, "miles"),
  20959. default: true
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20965. {
  20966. front: {
  20967. height: math.unit(14, "feet"),
  20968. weight: math.unit(12000, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/mort/front.svg",
  20972. extra: 365 / 318,
  20973. bottom: 0.01
  20974. }
  20975. },
  20976. side: {
  20977. height: math.unit(14, "feet"),
  20978. weight: math.unit(12000, "lb"),
  20979. name: "Side",
  20980. image: {
  20981. source: "./media/characters/mort/side.svg",
  20982. extra: 365 / 318,
  20983. bottom: 0.052
  20984. },
  20985. default: true
  20986. },
  20987. back: {
  20988. height: math.unit(14, "feet"),
  20989. weight: math.unit(12000, "lb"),
  20990. name: "Back",
  20991. image: {
  20992. source: "./media/characters/mort/back.svg",
  20993. extra: 371 / 332,
  20994. bottom: 0.18
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(14, "feet"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21008. {
  21009. front: {
  21010. height: math.unit(8, "feet"),
  21011. weight: math.unit(1, "ton"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/lycoa/front.svg",
  21015. extra: 1836/1728,
  21016. bottom: 81/1917
  21017. }
  21018. },
  21019. back: {
  21020. height: math.unit(8, "feet"),
  21021. weight: math.unit(1, "ton"),
  21022. name: "Back",
  21023. image: {
  21024. source: "./media/characters/lycoa/back.svg",
  21025. extra: 1785/1720,
  21026. bottom: 91/1876
  21027. }
  21028. },
  21029. head: {
  21030. height: math.unit(1.6243, "feet"),
  21031. name: "Head",
  21032. image: {
  21033. source: "./media/characters/lycoa/head.svg",
  21034. extra: 1011/782,
  21035. bottom: 0/1011
  21036. }
  21037. },
  21038. tailmaw: {
  21039. height: math.unit(1.9, "feet"),
  21040. name: "Tailmaw",
  21041. image: {
  21042. source: "./media/characters/lycoa/tailmaw.svg"
  21043. }
  21044. },
  21045. tentacles: {
  21046. height: math.unit(2.1, "feet"),
  21047. name: "Tentacles",
  21048. image: {
  21049. source: "./media/characters/lycoa/tentacles.svg"
  21050. }
  21051. },
  21052. dick: {
  21053. height: math.unit(1.73, "feet"),
  21054. name: "Dick",
  21055. image: {
  21056. source: "./media/characters/lycoa/dick.svg"
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Normal",
  21063. height: math.unit(8, "feet"),
  21064. default: true
  21065. },
  21066. {
  21067. name: "Macro",
  21068. height: math.unit(30, "feet")
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21074. {
  21075. front: {
  21076. height: math.unit(4 + 2 / 12, "feet"),
  21077. weight: math.unit(70, "lb"),
  21078. name: "Front",
  21079. image: {
  21080. source: "./media/characters/naldara/front.svg",
  21081. extra: 1664/1387,
  21082. bottom: 81/1745
  21083. },
  21084. form: "anthro",
  21085. default: true
  21086. },
  21087. naga: {
  21088. height: math.unit(20, "feet"),
  21089. weight: math.unit(15000, "kg"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/naldara/naga.svg",
  21093. extra: 1590/1396,
  21094. bottom: 285/1875
  21095. },
  21096. form: "naga",
  21097. default: true
  21098. },
  21099. },
  21100. [
  21101. {
  21102. name: "Normal",
  21103. height: math.unit(4 + 2 / 12, "feet"),
  21104. form: "anthro",
  21105. default: true
  21106. },
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(20, "feet"),
  21110. form: "naga",
  21111. default: true
  21112. },
  21113. ],
  21114. {
  21115. "anthro": {
  21116. name: "Anthro",
  21117. default: true
  21118. },
  21119. "naga": {
  21120. name: "Naga"
  21121. }
  21122. }
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(13 + 7 / 12, "feet"),
  21129. weight: math.unit(1500, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/briar/front.svg",
  21133. extra: 1223/1157,
  21134. bottom: 123/1346
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(13 + 7 / 12, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21148. {
  21149. side: {
  21150. height: math.unit(16, "feet"),
  21151. weight: math.unit(500, "lb"),
  21152. name: "Side",
  21153. image: {
  21154. source: "./media/characters/vanguard/side.svg",
  21155. extra: 1022/914,
  21156. bottom: 30/1052
  21157. }
  21158. },
  21159. sideAlt: {
  21160. height: math.unit(10, "feet"),
  21161. weight: math.unit(500, "lb"),
  21162. name: "Side (Alt)",
  21163. image: {
  21164. source: "./media/characters/vanguard/side-alt.svg",
  21165. extra: 502 / 425,
  21166. bottom: 0.087
  21167. }
  21168. },
  21169. },
  21170. [
  21171. {
  21172. name: "Normal",
  21173. height: math.unit(17.71, "feet"),
  21174. default: true
  21175. },
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21180. {
  21181. front: {
  21182. height: math.unit(7.5, "feet"),
  21183. weight: math.unit(2, "lb"),
  21184. name: "Front",
  21185. image: {
  21186. source: "./media/characters/artemis/work-safe-front.svg",
  21187. extra: 1192 / 1075,
  21188. bottom: 0.07
  21189. },
  21190. form: "work-safe",
  21191. default: true
  21192. },
  21193. frontNsfw: {
  21194. height: math.unit(7.5, "feet"),
  21195. weight: math.unit(2, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/artemis/calibrating-front.svg",
  21199. extra: 1192 / 1075,
  21200. bottom: 0.07
  21201. },
  21202. form: "calibrating",
  21203. default: true
  21204. },
  21205. frontNsfwer: {
  21206. height: math.unit(7.5, "feet"),
  21207. weight: math.unit(2, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/artemis/oversize-load-front.svg",
  21211. extra: 1192 / 1075,
  21212. bottom: 0.07
  21213. },
  21214. form: "oversize-load",
  21215. default: true
  21216. },
  21217. side: {
  21218. height: math.unit(7.5, "feet"),
  21219. weight: math.unit(2, "lb"),
  21220. name: "Side",
  21221. image: {
  21222. source: "./media/characters/artemis/work-safe-side.svg",
  21223. extra: 1192 / 1075,
  21224. bottom: 0.07
  21225. },
  21226. form: "work-safe"
  21227. },
  21228. sideNsfw: {
  21229. height: math.unit(7.5, "feet"),
  21230. weight: math.unit(2, "lb"),
  21231. name: "Side",
  21232. image: {
  21233. source: "./media/characters/artemis/calibrating-side.svg",
  21234. extra: 1192 / 1075,
  21235. bottom: 0.07
  21236. },
  21237. form: "calibrating"
  21238. },
  21239. sideNsfwer: {
  21240. height: math.unit(7.5, "feet"),
  21241. weight: math.unit(2, "lb"),
  21242. name: "Side",
  21243. image: {
  21244. source: "./media/characters/artemis/oversize-load-side.svg",
  21245. extra: 1192 / 1075,
  21246. bottom: 0.07
  21247. },
  21248. form: "oversize-load"
  21249. },
  21250. maw: {
  21251. height: math.unit(1.1, "feet"),
  21252. name: "Maw",
  21253. image: {
  21254. source: "./media/characters/artemis/maw.svg"
  21255. },
  21256. form: "work-safe"
  21257. },
  21258. stomach: {
  21259. height: math.unit(0.95, "feet"),
  21260. name: "Stomach",
  21261. image: {
  21262. source: "./media/characters/artemis/stomach.svg"
  21263. },
  21264. form: "work-safe"
  21265. },
  21266. dickCanine: {
  21267. height: math.unit(1, "feet"),
  21268. name: "Dick (Canine)",
  21269. image: {
  21270. source: "./media/characters/artemis/dick-canine.svg"
  21271. },
  21272. form: "calibrating"
  21273. },
  21274. dickEquine: {
  21275. height: math.unit(0.85, "feet"),
  21276. name: "Dick (Equine)",
  21277. image: {
  21278. source: "./media/characters/artemis/dick-equine.svg"
  21279. },
  21280. form: "calibrating"
  21281. },
  21282. dickExotic: {
  21283. height: math.unit(0.85, "feet"),
  21284. name: "Dick (Exotic)",
  21285. image: {
  21286. source: "./media/characters/artemis/dick-exotic.svg"
  21287. },
  21288. form: "calibrating"
  21289. },
  21290. dickCanineBigger: {
  21291. height: math.unit(1 * 1.33, "feet"),
  21292. name: "Dick (Canine)",
  21293. image: {
  21294. source: "./media/characters/artemis/dick-canine.svg"
  21295. },
  21296. form: "oversize-load"
  21297. },
  21298. dickEquineBigger: {
  21299. height: math.unit(0.85 * 1.33, "feet"),
  21300. name: "Dick (Equine)",
  21301. image: {
  21302. source: "./media/characters/artemis/dick-equine.svg"
  21303. },
  21304. form: "oversize-load"
  21305. },
  21306. dickExoticBigger: {
  21307. height: math.unit(0.85 * 1.33, "feet"),
  21308. name: "Dick (Exotic)",
  21309. image: {
  21310. source: "./media/characters/artemis/dick-exotic.svg"
  21311. },
  21312. form: "oversize-load"
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Normal",
  21318. height: math.unit(7.5, "feet"),
  21319. form: "work-safe",
  21320. default: true
  21321. },
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(7.5, "feet"),
  21325. form: "calibrating",
  21326. default: true
  21327. },
  21328. {
  21329. name: "Normal",
  21330. height: math.unit(7.5, "feet"),
  21331. form: "oversize-load",
  21332. default: true
  21333. },
  21334. {
  21335. name: "Enlarged",
  21336. height: math.unit(12, "feet"),
  21337. form: "work-safe",
  21338. },
  21339. {
  21340. name: "Enlarged",
  21341. height: math.unit(12, "feet"),
  21342. form: "calibrating",
  21343. },
  21344. {
  21345. name: "Enlarged",
  21346. height: math.unit(12, "feet"),
  21347. form: "oversize-load",
  21348. },
  21349. ],
  21350. {
  21351. "work-safe": {
  21352. name: "Work-Safe",
  21353. default: true
  21354. },
  21355. "calibrating": {
  21356. name: "Calibrating"
  21357. },
  21358. "oversize-load": {
  21359. name: "Oversize Load"
  21360. }
  21361. }
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21365. {
  21366. front: {
  21367. height: math.unit(5 + 3 / 12, "feet"),
  21368. weight: math.unit(160, "lb"),
  21369. name: "Front",
  21370. image: {
  21371. source: "./media/characters/kira/front.svg",
  21372. extra: 906 / 786,
  21373. bottom: 0.01
  21374. }
  21375. },
  21376. back: {
  21377. height: math.unit(5 + 3 / 12, "feet"),
  21378. weight: math.unit(160, "lb"),
  21379. name: "Back",
  21380. image: {
  21381. source: "./media/characters/kira/back.svg",
  21382. extra: 882 / 757,
  21383. bottom: 0.005
  21384. }
  21385. },
  21386. frontDressed: {
  21387. height: math.unit(5 + 3 / 12, "feet"),
  21388. weight: math.unit(160, "lb"),
  21389. name: "Front (Dressed)",
  21390. image: {
  21391. source: "./media/characters/kira/front-dressed.svg",
  21392. extra: 906 / 786,
  21393. bottom: 0.01
  21394. }
  21395. },
  21396. beans: {
  21397. height: math.unit(0.92, "feet"),
  21398. name: "Beans",
  21399. image: {
  21400. source: "./media/characters/kira/beans.svg"
  21401. }
  21402. },
  21403. },
  21404. [
  21405. {
  21406. name: "Normal",
  21407. height: math.unit(5 + 3 / 12, "feet"),
  21408. default: true
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21414. {
  21415. front: {
  21416. height: math.unit(5 + 4 / 12, "feet"),
  21417. weight: math.unit(145, "lb"),
  21418. name: "Front",
  21419. image: {
  21420. source: "./media/characters/scramble/front.svg",
  21421. extra: 763 / 727,
  21422. bottom: 0.05
  21423. }
  21424. },
  21425. back: {
  21426. height: math.unit(5 + 4 / 12, "feet"),
  21427. weight: math.unit(145, "lb"),
  21428. name: "Back",
  21429. image: {
  21430. source: "./media/characters/scramble/back.svg",
  21431. extra: 826 / 737,
  21432. bottom: 0.002
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(5 + 4 / 12, "feet"),
  21440. default: true
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21446. {
  21447. side: {
  21448. height: math.unit(6 + 2 / 12, "feet"),
  21449. weight: math.unit(190, "lb"),
  21450. name: "Side",
  21451. image: {
  21452. source: "./media/characters/biscuit/side.svg",
  21453. extra: 858 / 791,
  21454. bottom: 0.044
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(6 + 2 / 12, "feet"),
  21462. default: true
  21463. },
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21468. {
  21469. front: {
  21470. height: math.unit(5 + 2 / 12, "feet"),
  21471. weight: math.unit(120, "lb"),
  21472. name: "Front",
  21473. image: {
  21474. source: "./media/characters/poffin/front.svg",
  21475. extra: 786 / 680,
  21476. bottom: 0.005
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Normal",
  21483. height: math.unit(5 + 2 / 12, "feet"),
  21484. default: true
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(6 + 3 / 12, "feet"),
  21493. weight: math.unit(519, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/dhari/front.svg",
  21497. extra: 1048 / 946,
  21498. bottom: 0.015
  21499. }
  21500. },
  21501. back: {
  21502. height: math.unit(6 + 3 / 12, "feet"),
  21503. weight: math.unit(519, "lb"),
  21504. name: "Back",
  21505. image: {
  21506. source: "./media/characters/dhari/back.svg",
  21507. extra: 1048 / 931,
  21508. bottom: 0.005
  21509. }
  21510. },
  21511. frontDressed: {
  21512. height: math.unit(6 + 3 / 12, "feet"),
  21513. weight: math.unit(519, "lb"),
  21514. name: "Front (Dressed)",
  21515. image: {
  21516. source: "./media/characters/dhari/front-dressed.svg",
  21517. extra: 1713 / 1546,
  21518. bottom: 0.02
  21519. }
  21520. },
  21521. backDressed: {
  21522. height: math.unit(6 + 3 / 12, "feet"),
  21523. weight: math.unit(519, "lb"),
  21524. name: "Back (Dressed)",
  21525. image: {
  21526. source: "./media/characters/dhari/back-dressed.svg",
  21527. extra: 1699 / 1537,
  21528. bottom: 0.01
  21529. }
  21530. },
  21531. maw: {
  21532. height: math.unit(0.95, "feet"),
  21533. name: "Maw",
  21534. image: {
  21535. source: "./media/characters/dhari/maw.svg"
  21536. }
  21537. },
  21538. wereFront: {
  21539. height: math.unit(12 + 8 / 12, "feet"),
  21540. weight: math.unit(4000, "lb"),
  21541. name: "Front (Were)",
  21542. image: {
  21543. source: "./media/characters/dhari/were-front.svg",
  21544. extra: 1065 / 969,
  21545. bottom: 0.015
  21546. }
  21547. },
  21548. wereBack: {
  21549. height: math.unit(12 + 8 / 12, "feet"),
  21550. weight: math.unit(4000, "lb"),
  21551. name: "Back (Were)",
  21552. image: {
  21553. source: "./media/characters/dhari/were-back.svg",
  21554. extra: 1065 / 969,
  21555. bottom: 0.012
  21556. }
  21557. },
  21558. wereMaw: {
  21559. height: math.unit(0.625, "meters"),
  21560. name: "Maw (Were)",
  21561. image: {
  21562. source: "./media/characters/dhari/were-maw.svg"
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(6 + 3 / 12, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21576. {
  21577. anthro: {
  21578. height: math.unit(5 + 7 / 12, "feet"),
  21579. weight: math.unit(175, "lb"),
  21580. name: "Anthro",
  21581. image: {
  21582. source: "./media/characters/rena-dyne/anthro.svg",
  21583. extra: 1849 / 1785,
  21584. bottom: 0.005
  21585. }
  21586. },
  21587. taur: {
  21588. height: math.unit(15 + 6 / 12, "feet"),
  21589. weight: math.unit(8000, "lb"),
  21590. name: "Taur",
  21591. image: {
  21592. source: "./media/characters/rena-dyne/taur.svg",
  21593. extra: 2315 / 2234,
  21594. bottom: 0.033
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(5 + 7 / 12, "feet"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(8, "feet"),
  21611. weight: math.unit(600, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/weremeep/front.svg",
  21615. extra: 967 / 862,
  21616. bottom: 0.01
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(8, "feet"),
  21624. default: true
  21625. },
  21626. {
  21627. name: "Lorg",
  21628. height: math.unit(12, "feet")
  21629. },
  21630. {
  21631. name: "Oh Lawd She Comin'",
  21632. height: math.unit(20, "feet")
  21633. },
  21634. ]
  21635. ))
  21636. characterMakers.push(() => makeCharacter(
  21637. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21638. {
  21639. front: {
  21640. height: math.unit(4, "feet"),
  21641. weight: math.unit(90, "lb"),
  21642. name: "Front",
  21643. image: {
  21644. source: "./media/characters/reza/front.svg",
  21645. extra: 1183 / 1111,
  21646. bottom: 0.017
  21647. }
  21648. },
  21649. back: {
  21650. height: math.unit(4, "feet"),
  21651. weight: math.unit(90, "lb"),
  21652. name: "Back",
  21653. image: {
  21654. source: "./media/characters/reza/back.svg",
  21655. extra: 1183 / 1111,
  21656. bottom: 0.01
  21657. }
  21658. },
  21659. drake: {
  21660. height: math.unit(30, "feet"),
  21661. weight: math.unit(246960, "lb"),
  21662. name: "Drake",
  21663. image: {
  21664. source: "./media/characters/reza/drake.svg",
  21665. extra: 2350 / 2024,
  21666. bottom: 60.7 / 2403
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(4, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21680. {
  21681. side: {
  21682. height: math.unit(15, "feet"),
  21683. weight: math.unit(14, "tons"),
  21684. name: "Side",
  21685. image: {
  21686. source: "./media/characters/athea/side.svg",
  21687. extra: 960 / 540,
  21688. bottom: 0.003
  21689. }
  21690. },
  21691. sitting: {
  21692. height: math.unit(6 * 2.85, "feet"),
  21693. weight: math.unit(14, "tons"),
  21694. name: "Sitting",
  21695. image: {
  21696. source: "./media/characters/athea/sitting.svg",
  21697. extra: 621 / 581,
  21698. bottom: 0.075
  21699. }
  21700. },
  21701. maw: {
  21702. height: math.unit(7.59498031496063, "feet"),
  21703. name: "Maw",
  21704. image: {
  21705. source: "./media/characters/athea/maw.svg"
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Lap Cat",
  21712. height: math.unit(2.5, "feet")
  21713. },
  21714. {
  21715. name: "Minimacro",
  21716. height: math.unit(15, "feet"),
  21717. default: true
  21718. },
  21719. {
  21720. name: "Macro",
  21721. height: math.unit(120, "feet")
  21722. },
  21723. {
  21724. name: "Macro+",
  21725. height: math.unit(640, "feet")
  21726. },
  21727. {
  21728. name: "Colossus",
  21729. height: math.unit(2.2, "miles")
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(8 + 8 / 12, "feet"),
  21738. weight: math.unit(130, "kg"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/seroko/front.svg",
  21742. extra: 1385 / 1280,
  21743. bottom: 0.025
  21744. }
  21745. },
  21746. back: {
  21747. height: math.unit(8 + 8 / 12, "feet"),
  21748. weight: math.unit(130, "kg"),
  21749. name: "Back",
  21750. image: {
  21751. source: "./media/characters/seroko/back.svg",
  21752. extra: 1369 / 1238,
  21753. bottom: 0.018
  21754. }
  21755. },
  21756. frontDressed: {
  21757. height: math.unit(8 + 8 / 12, "feet"),
  21758. weight: math.unit(130, "kg"),
  21759. name: "Front (Dressed)",
  21760. image: {
  21761. source: "./media/characters/seroko/front-dressed.svg",
  21762. extra: 1366 / 1275,
  21763. bottom: 0.03
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(8 + 8 / 12, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(5.5, "feet"),
  21780. weight: math.unit(160, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/quatzi/front.svg",
  21784. extra: 2346 / 2242,
  21785. bottom: 0.015
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(5.5, "feet"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Big",
  21797. height: math.unit(7.7, "feet")
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(5 + 11 / 12, "feet"),
  21806. weight: math.unit(180, "lb"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/sen/front.svg",
  21810. extra: 1321 / 1254,
  21811. bottom: 0.015
  21812. }
  21813. },
  21814. side: {
  21815. height: math.unit(5 + 11 / 12, "feet"),
  21816. weight: math.unit(180, "lb"),
  21817. name: "Side",
  21818. image: {
  21819. source: "./media/characters/sen/side.svg",
  21820. extra: 1321 / 1254,
  21821. bottom: 0.007
  21822. }
  21823. },
  21824. back: {
  21825. height: math.unit(5 + 11 / 12, "feet"),
  21826. weight: math.unit(180, "lb"),
  21827. name: "Back",
  21828. image: {
  21829. source: "./media/characters/sen/back.svg",
  21830. extra: 1321 / 1254
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(5 + 11 / 12, "feet"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(166.6, "cm"),
  21847. weight: math.unit(66.6, "kg"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/fruity/front.svg",
  21851. extra: 1510 / 1386,
  21852. bottom: 0.04
  21853. }
  21854. },
  21855. back: {
  21856. height: math.unit(166.6, "cm"),
  21857. weight: math.unit(66.6, "lb"),
  21858. name: "Back",
  21859. image: {
  21860. source: "./media/characters/fruity/back.svg",
  21861. extra: 1563 / 1435,
  21862. bottom: 0.005
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Normal",
  21869. height: math.unit(166.6, "cm"),
  21870. default: true
  21871. },
  21872. {
  21873. name: "Demonic",
  21874. height: math.unit(166.6, "feet")
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21880. {
  21881. side: {
  21882. height: math.unit(10, "feet"),
  21883. weight: math.unit(500, "lb"),
  21884. name: "Side",
  21885. image: {
  21886. source: "./media/characters/zost/side.svg",
  21887. extra: 2870/2533,
  21888. bottom: 252/3122
  21889. }
  21890. },
  21891. mawFront: {
  21892. height: math.unit(1.08, "meters"),
  21893. name: "Maw (Front)",
  21894. image: {
  21895. source: "./media/characters/zost/maw-front.svg"
  21896. }
  21897. },
  21898. mawSide: {
  21899. height: math.unit(2.66, "feet"),
  21900. name: "Maw (Side)",
  21901. image: {
  21902. source: "./media/characters/zost/maw-side.svg"
  21903. }
  21904. },
  21905. wingspan: {
  21906. height: math.unit(7.4, "feet"),
  21907. name: "Wingspan",
  21908. image: {
  21909. source: "./media/characters/zost/wingspan.svg"
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(10, "feet"),
  21917. default: true
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(5 + 4 / 12, "feet"),
  21926. weight: math.unit(120, "lb"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/luci/front.svg",
  21930. extra: 1985 / 1884,
  21931. bottom: 0.04
  21932. }
  21933. },
  21934. back: {
  21935. height: math.unit(5 + 4 / 12, "feet"),
  21936. weight: math.unit(120, "lb"),
  21937. name: "Back",
  21938. image: {
  21939. source: "./media/characters/luci/back.svg",
  21940. extra: 1892 / 1791,
  21941. bottom: 0.002
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(5 + 4 / 12, "feet"),
  21949. default: true
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21955. {
  21956. front: {
  21957. height: math.unit(1500, "feet"),
  21958. weight: math.unit(3.8e6, "tons"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/2th/front.svg",
  21962. extra: 3489 / 3350,
  21963. bottom: 0.1
  21964. }
  21965. },
  21966. foot: {
  21967. height: math.unit(461, "feet"),
  21968. name: "Foot",
  21969. image: {
  21970. source: "./media/characters/2th/foot.svg"
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "\"Micro\"",
  21977. height: math.unit(15 + 7 / 12, "feet")
  21978. },
  21979. {
  21980. name: "Normal",
  21981. height: math.unit(1500, "feet"),
  21982. default: true
  21983. },
  21984. {
  21985. name: "Macro",
  21986. height: math.unit(5000, "feet")
  21987. },
  21988. {
  21989. name: "Megamacro",
  21990. height: math.unit(15, "miles")
  21991. },
  21992. {
  21993. name: "Gigamacro",
  21994. height: math.unit(4000, "miles")
  21995. },
  21996. {
  21997. name: "Galactic",
  21998. height: math.unit(50, "AU")
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22004. {
  22005. front: {
  22006. height: math.unit(5 + 6 / 12, "feet"),
  22007. weight: math.unit(220, "lb"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/amethyst/front.svg",
  22011. extra: 2078 / 2040,
  22012. bottom: 0.045
  22013. }
  22014. },
  22015. back: {
  22016. height: math.unit(5 + 6 / 12, "feet"),
  22017. weight: math.unit(220, "lb"),
  22018. name: "Back",
  22019. image: {
  22020. source: "./media/characters/amethyst/back.svg",
  22021. extra: 2021 / 1989,
  22022. bottom: 0.02
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(5 + 6 / 12, "feet"),
  22030. default: true
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(4 + 11 / 12, "feet"),
  22039. weight: math.unit(120, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/yumi-akiyama/front.svg",
  22043. extra: 1327 / 1235,
  22044. bottom: 0.02
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(4 + 11 / 12, "feet"),
  22049. weight: math.unit(120, "lb"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/yumi-akiyama/back.svg",
  22053. extra: 1287 / 1245,
  22054. bottom: 0.002
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Galactic",
  22061. height: math.unit(50, "galaxies"),
  22062. default: true
  22063. },
  22064. {
  22065. name: "Universal",
  22066. height: math.unit(100, "universes")
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(8, "feet"),
  22075. weight: math.unit(500, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/rifter-yrmori/front.svg",
  22079. extra: 1180 / 1125,
  22080. bottom: 0.02
  22081. }
  22082. },
  22083. back: {
  22084. height: math.unit(8, "feet"),
  22085. weight: math.unit(500, "lb"),
  22086. name: "Back",
  22087. image: {
  22088. source: "./media/characters/rifter-yrmori/back.svg",
  22089. extra: 1190 / 1145,
  22090. bottom: 0.001
  22091. }
  22092. },
  22093. wings: {
  22094. height: math.unit(7.75, "feet"),
  22095. weight: math.unit(500, "lb"),
  22096. name: "Wings",
  22097. image: {
  22098. source: "./media/characters/rifter-yrmori/wings.svg",
  22099. extra: 1357 / 1285
  22100. }
  22101. },
  22102. maw: {
  22103. height: math.unit(0.8, "feet"),
  22104. name: "Maw",
  22105. image: {
  22106. source: "./media/characters/rifter-yrmori/maw.svg"
  22107. }
  22108. },
  22109. mawfront: {
  22110. height: math.unit(1.45, "feet"),
  22111. name: "Maw (Front)",
  22112. image: {
  22113. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Normal",
  22120. height: math.unit(8, "feet"),
  22121. default: true
  22122. },
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(42, "meters")
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22131. {
  22132. were: {
  22133. height: math.unit(25 + 6 / 12, "feet"),
  22134. weight: math.unit(10000, "lb"),
  22135. name: "Were",
  22136. image: {
  22137. source: "./media/characters/tahajin/were.svg",
  22138. extra: 801 / 770,
  22139. bottom: 0.042
  22140. }
  22141. },
  22142. aquatic: {
  22143. height: math.unit(6 + 4 / 12, "feet"),
  22144. weight: math.unit(160, "lb"),
  22145. name: "Aquatic",
  22146. image: {
  22147. source: "./media/characters/tahajin/aquatic.svg",
  22148. extra: 572 / 542,
  22149. bottom: 0.04
  22150. }
  22151. },
  22152. chow: {
  22153. height: math.unit(8 + 11 / 12, "feet"),
  22154. weight: math.unit(450, "lb"),
  22155. name: "Chow",
  22156. image: {
  22157. source: "./media/characters/tahajin/chow.svg",
  22158. extra: 660 / 640,
  22159. bottom: 0.015
  22160. }
  22161. },
  22162. demiNaga: {
  22163. height: math.unit(6 + 8 / 12, "feet"),
  22164. weight: math.unit(300, "lb"),
  22165. name: "Demi Naga",
  22166. image: {
  22167. source: "./media/characters/tahajin/demi-naga.svg",
  22168. extra: 643 / 615,
  22169. bottom: 0.1
  22170. }
  22171. },
  22172. data: {
  22173. height: math.unit(5, "inches"),
  22174. weight: math.unit(0.1, "lb"),
  22175. name: "Data",
  22176. image: {
  22177. source: "./media/characters/tahajin/data.svg"
  22178. }
  22179. },
  22180. fluu: {
  22181. height: math.unit(5 + 7 / 12, "feet"),
  22182. weight: math.unit(140, "lb"),
  22183. name: "Fluu",
  22184. image: {
  22185. source: "./media/characters/tahajin/fluu.svg",
  22186. extra: 628 / 592,
  22187. bottom: 0.02
  22188. }
  22189. },
  22190. starWarrior: {
  22191. height: math.unit(4 + 5 / 12, "feet"),
  22192. weight: math.unit(50, "lb"),
  22193. name: "Star Warrior",
  22194. image: {
  22195. source: "./media/characters/tahajin/star-warrior.svg"
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(25 + 6 / 12, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(8, "feet"),
  22212. weight: math.unit(350, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/gabira/front.svg",
  22216. extra: 608 / 580,
  22217. bottom: 0.03
  22218. }
  22219. },
  22220. back: {
  22221. height: math.unit(8, "feet"),
  22222. weight: math.unit(350, "lb"),
  22223. name: "Back",
  22224. image: {
  22225. source: "./media/characters/gabira/back.svg",
  22226. extra: 608 / 580,
  22227. bottom: 0.03
  22228. }
  22229. },
  22230. },
  22231. [
  22232. {
  22233. name: "Normal",
  22234. height: math.unit(8, "feet"),
  22235. default: true
  22236. },
  22237. ]
  22238. ))
  22239. characterMakers.push(() => makeCharacter(
  22240. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22241. {
  22242. front: {
  22243. height: math.unit(5 + 3 / 12, "feet"),
  22244. weight: math.unit(137, "lb"),
  22245. name: "Front",
  22246. image: {
  22247. source: "./media/characters/sasha-katraine/front.svg",
  22248. extra: 1745/1694,
  22249. bottom: 37/1782
  22250. }
  22251. },
  22252. back: {
  22253. height: math.unit(5 + 3 / 12, "feet"),
  22254. weight: math.unit(137, "lb"),
  22255. name: "Back",
  22256. image: {
  22257. source: "./media/characters/sasha-katraine/back.svg",
  22258. extra: 1776/1699,
  22259. bottom: 26/1802
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Micro",
  22266. height: math.unit(5, "inches")
  22267. },
  22268. {
  22269. name: "Normal",
  22270. height: math.unit(5 + 3 / 12, "feet"),
  22271. default: true
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22277. {
  22278. side: {
  22279. height: math.unit(4, "inches"),
  22280. weight: math.unit(200, "grams"),
  22281. name: "Side",
  22282. image: {
  22283. source: "./media/characters/der/side.svg",
  22284. extra: 719 / 400,
  22285. bottom: 30.6 / 749.9187
  22286. }
  22287. },
  22288. },
  22289. [
  22290. {
  22291. name: "Micro",
  22292. height: math.unit(4, "inches"),
  22293. default: true
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22299. {
  22300. side: {
  22301. height: math.unit(30, "meters"),
  22302. weight: math.unit(700, "tonnes"),
  22303. name: "Side",
  22304. image: {
  22305. source: "./media/characters/fixerdragon/side.svg",
  22306. extra: (1293.0514 - 116.03) / 1106.86,
  22307. bottom: 116.03 / 1293.0514
  22308. }
  22309. },
  22310. },
  22311. [
  22312. {
  22313. name: "Planck",
  22314. height: math.unit(1.6e-35, "meters")
  22315. },
  22316. {
  22317. name: "Micro",
  22318. height: math.unit(0.4, "meters")
  22319. },
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(30, "meters"),
  22323. default: true
  22324. },
  22325. {
  22326. name: "Megamacro",
  22327. height: math.unit(1.2, "megameters")
  22328. },
  22329. {
  22330. name: "Teramacro",
  22331. height: math.unit(130, "terameters")
  22332. },
  22333. {
  22334. name: "Yottamacro",
  22335. height: math.unit(6200, "yottameters")
  22336. },
  22337. ]
  22338. ));
  22339. characterMakers.push(() => makeCharacter(
  22340. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22341. {
  22342. front: {
  22343. height: math.unit(8, "feet"),
  22344. weight: math.unit(250, "lb"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/kite/front.svg",
  22348. extra: 2796 / 2659,
  22349. bottom: 0.002
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Normal",
  22356. height: math.unit(8, "feet"),
  22357. default: true
  22358. },
  22359. {
  22360. name: "Macro",
  22361. height: math.unit(360, "feet")
  22362. },
  22363. {
  22364. name: "Megamacro",
  22365. height: math.unit(1500, "feet")
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(5 + 11/12, "feet"),
  22374. weight: math.unit(170, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/poojawa-vynar/front.svg",
  22378. extra: 1735/1585,
  22379. bottom: 96/1831
  22380. }
  22381. },
  22382. back: {
  22383. height: math.unit(5 + 11/12, "feet"),
  22384. weight: math.unit(170, "lb"),
  22385. name: "Back",
  22386. image: {
  22387. source: "./media/characters/poojawa-vynar/back.svg",
  22388. extra: 1749/1607,
  22389. bottom: 28/1777
  22390. }
  22391. },
  22392. male: {
  22393. height: math.unit(5 + 11/12, "feet"),
  22394. weight: math.unit(170, "lb"),
  22395. name: "Male",
  22396. image: {
  22397. source: "./media/characters/poojawa-vynar/male.svg",
  22398. extra: 1855/1713,
  22399. bottom: 63/1918
  22400. }
  22401. },
  22402. taur: {
  22403. height: math.unit(5 + 11/12, "feet"),
  22404. weight: math.unit(170, "lb"),
  22405. name: "Taur",
  22406. image: {
  22407. source: "./media/characters/poojawa-vynar/taur.svg",
  22408. extra: 1151/1059,
  22409. bottom: 356/1507
  22410. }
  22411. },
  22412. frontDressed: {
  22413. height: math.unit(5 + 11/12, "feet"),
  22414. weight: math.unit(170, "lb"),
  22415. name: "Front (Dressed)",
  22416. image: {
  22417. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22418. extra: 1735/1585,
  22419. bottom: 96/1831
  22420. }
  22421. },
  22422. backDressed: {
  22423. height: math.unit(5 + 11/12, "feet"),
  22424. weight: math.unit(170, "lb"),
  22425. name: "Back (Dressed)",
  22426. image: {
  22427. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22428. extra: 1749/1607,
  22429. bottom: 28/1777
  22430. }
  22431. },
  22432. maleDressed: {
  22433. height: math.unit(5 + 11/12, "feet"),
  22434. weight: math.unit(170, "lb"),
  22435. name: "Male (Dressed)",
  22436. image: {
  22437. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22438. extra: 1855/1713,
  22439. bottom: 63/1918
  22440. }
  22441. },
  22442. taurDressed: {
  22443. height: math.unit(5 + 11/12, "feet"),
  22444. weight: math.unit(170, "lb"),
  22445. name: "Taur (Dressed)",
  22446. image: {
  22447. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22448. extra: 1151/1059,
  22449. bottom: 356/1507
  22450. }
  22451. },
  22452. maw: {
  22453. height: math.unit(1.46, "feet"),
  22454. name: "Maw",
  22455. image: {
  22456. source: "./media/characters/poojawa-vynar/maw.svg"
  22457. }
  22458. },
  22459. head: {
  22460. height: math.unit(2.34, "feet"),
  22461. name: "Head",
  22462. image: {
  22463. source: "./media/characters/poojawa-vynar/head.svg"
  22464. }
  22465. },
  22466. paw: {
  22467. height: math.unit(1.61, "feet"),
  22468. name: "Paw",
  22469. image: {
  22470. source: "./media/characters/poojawa-vynar/paw.svg"
  22471. }
  22472. },
  22473. pawToering: {
  22474. height: math.unit(1.72, "feet"),
  22475. name: "Paw (Toering)",
  22476. image: {
  22477. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22478. }
  22479. },
  22480. toering: {
  22481. height: math.unit(2.9, "inches"),
  22482. name: "Toering",
  22483. image: {
  22484. source: "./media/characters/poojawa-vynar/toering.svg"
  22485. }
  22486. },
  22487. shaft: {
  22488. height: math.unit(0.625, "feet"),
  22489. name: "Shaft",
  22490. image: {
  22491. source: "./media/characters/poojawa-vynar/shaft.svg"
  22492. }
  22493. },
  22494. spade: {
  22495. height: math.unit(0.42, "feet"),
  22496. name: "Spade",
  22497. image: {
  22498. source: "./media/characters/poojawa-vynar/spade.svg"
  22499. }
  22500. },
  22501. },
  22502. [
  22503. {
  22504. name: "Shortstack",
  22505. height: math.unit(4, "feet")
  22506. },
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(5 + 11 / 12, "feet"),
  22510. default: true
  22511. },
  22512. {
  22513. name: "Tauric",
  22514. height: math.unit(4, "meters")
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(293, "meters"),
  22523. weight: math.unit(70400, "tons"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/violette/front.svg",
  22527. extra: 1227 / 1180,
  22528. bottom: 0.005
  22529. }
  22530. },
  22531. back: {
  22532. height: math.unit(293, "meters"),
  22533. weight: math.unit(70400, "tons"),
  22534. name: "Back",
  22535. image: {
  22536. source: "./media/characters/violette/back.svg",
  22537. extra: 1227 / 1180,
  22538. bottom: 0.005
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Macro",
  22545. height: math.unit(293, "meters"),
  22546. default: true
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22552. {
  22553. front: {
  22554. height: math.unit(1050, "feet"),
  22555. weight: math.unit(200000, "tons"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/alessandra/front.svg",
  22559. extra: 960 / 912,
  22560. bottom: 0.06
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Macro",
  22567. height: math.unit(1050, "feet")
  22568. },
  22569. {
  22570. name: "Macro+",
  22571. height: math.unit(900, "meters"),
  22572. default: true
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22578. {
  22579. front: {
  22580. height: math.unit(5, "feet"),
  22581. weight: math.unit(187, "lb"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/person/front.svg",
  22585. extra: 3087 / 2945,
  22586. bottom: 91 / 3181
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Micro",
  22593. height: math.unit(3, "inches")
  22594. },
  22595. {
  22596. name: "Normal",
  22597. height: math.unit(5, "feet"),
  22598. default: true
  22599. },
  22600. {
  22601. name: "Macro",
  22602. height: math.unit(90, "feet")
  22603. },
  22604. {
  22605. name: "Max Size",
  22606. height: math.unit(280, "feet")
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22612. {
  22613. front: {
  22614. height: math.unit(4.5, "meters"),
  22615. weight: math.unit(3200, "lb"),
  22616. name: "Front",
  22617. image: {
  22618. source: "./media/characters/ty/front.svg",
  22619. extra: 1038 / 960,
  22620. bottom: 31.156 / 1068
  22621. }
  22622. },
  22623. back: {
  22624. height: math.unit(4.5, "meters"),
  22625. weight: math.unit(3200, "lb"),
  22626. name: "Back",
  22627. image: {
  22628. source: "./media/characters/ty/back.svg",
  22629. extra: 1044 / 966,
  22630. bottom: 7.48 / 1049
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(4.5, "meters"),
  22638. default: true
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(5 + 4 / 12, "feet"),
  22647. weight: math.unit(115, "lb"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/rocky/front.svg",
  22651. extra: 1012 / 975,
  22652. bottom: 54 / 1066
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Normal",
  22659. height: math.unit(5 + 4 / 12, "feet"),
  22660. default: true
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22666. {
  22667. upright: {
  22668. height: math.unit(6, "meters"),
  22669. weight: math.unit(4000, "kg"),
  22670. name: "Upright",
  22671. image: {
  22672. source: "./media/characters/ruin/upright.svg",
  22673. extra: 668 / 661,
  22674. bottom: 42 / 799.8396
  22675. }
  22676. },
  22677. },
  22678. [
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(6, "meters"),
  22682. default: true
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(5, "feet"),
  22691. weight: math.unit(106, "lb"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/robin/front.svg",
  22695. extra: 862 / 799,
  22696. bottom: 42.4 / 914.8856
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Normal",
  22703. height: math.unit(5, "feet"),
  22704. default: true
  22705. },
  22706. ]
  22707. ))
  22708. characterMakers.push(() => makeCharacter(
  22709. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22710. {
  22711. side: {
  22712. height: math.unit(3, "feet"),
  22713. weight: math.unit(225, "lb"),
  22714. name: "Side",
  22715. image: {
  22716. source: "./media/characters/saian/side.svg",
  22717. extra: 566 / 356,
  22718. bottom: 79.7 / 643
  22719. }
  22720. },
  22721. maw: {
  22722. height: math.unit(2.85, "feet"),
  22723. name: "Maw",
  22724. image: {
  22725. source: "./media/characters/saian/maw.svg"
  22726. }
  22727. },
  22728. },
  22729. [
  22730. {
  22731. name: "Normal",
  22732. height: math.unit(3, "feet"),
  22733. default: true
  22734. },
  22735. ]
  22736. ))
  22737. characterMakers.push(() => makeCharacter(
  22738. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22739. {
  22740. side: {
  22741. height: math.unit(8, "feet"),
  22742. weight: math.unit(300, "lb"),
  22743. name: "Side",
  22744. image: {
  22745. source: "./media/characters/equus-silvermane/side.svg",
  22746. extra: 2176 / 2050,
  22747. bottom: 65.7 / 2245
  22748. }
  22749. },
  22750. front: {
  22751. height: math.unit(8, "feet"),
  22752. weight: math.unit(300, "lb"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/equus-silvermane/front.svg",
  22756. extra: 4633 / 4400,
  22757. bottom: 71.3 / 4706.915
  22758. }
  22759. },
  22760. sideStepping: {
  22761. height: math.unit(8, "feet"),
  22762. weight: math.unit(300, "lb"),
  22763. name: "Side (Stepping)",
  22764. image: {
  22765. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22766. extra: 1968 / 1860,
  22767. bottom: 16.4 / 1989
  22768. }
  22769. },
  22770. },
  22771. [
  22772. {
  22773. name: "Normal",
  22774. height: math.unit(8, "feet")
  22775. },
  22776. {
  22777. name: "Minimacro",
  22778. height: math.unit(75, "feet"),
  22779. default: true
  22780. },
  22781. {
  22782. name: "Macro",
  22783. height: math.unit(150, "feet")
  22784. },
  22785. {
  22786. name: "Macro+",
  22787. height: math.unit(1000, "feet")
  22788. },
  22789. {
  22790. name: "Megamacro",
  22791. height: math.unit(1, "mile")
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22797. {
  22798. side: {
  22799. height: math.unit(20, "feet"),
  22800. weight: math.unit(30000, "kg"),
  22801. name: "Side",
  22802. image: {
  22803. source: "./media/characters/windar/side.svg",
  22804. extra: 1491 / 1248,
  22805. bottom: 82.56 / 1568
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Normal",
  22812. height: math.unit(20, "feet"),
  22813. default: true
  22814. },
  22815. ]
  22816. ))
  22817. characterMakers.push(() => makeCharacter(
  22818. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22819. {
  22820. side: {
  22821. height: math.unit(15.66, "feet"),
  22822. weight: math.unit(150, "lb"),
  22823. name: "Side",
  22824. image: {
  22825. source: "./media/characters/melody/side.svg",
  22826. extra: 1097 / 944,
  22827. bottom: 11.8 / 1109
  22828. }
  22829. },
  22830. sideOutfit: {
  22831. height: math.unit(15.66, "feet"),
  22832. weight: math.unit(150, "lb"),
  22833. name: "Side (Outfit)",
  22834. image: {
  22835. source: "./media/characters/melody/side-outfit.svg",
  22836. extra: 1097 / 944,
  22837. bottom: 11.8 / 1109
  22838. }
  22839. },
  22840. },
  22841. [
  22842. {
  22843. name: "Normal",
  22844. height: math.unit(15.66, "feet"),
  22845. default: true
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(8, "feet"),
  22854. weight: math.unit(325, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/windera/front.svg",
  22858. extra: 3180 / 2845,
  22859. bottom: 178 / 3365
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Normal",
  22866. height: math.unit(8, "feet"),
  22867. default: true
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22873. {
  22874. front: {
  22875. height: math.unit(28.75, "feet"),
  22876. weight: math.unit(2000, "kg"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/sonear/front.svg",
  22880. extra: 1041.1 / 964.9,
  22881. bottom: 53.7 / 1096.6
  22882. }
  22883. },
  22884. },
  22885. [
  22886. {
  22887. name: "Normal",
  22888. height: math.unit(28.75, "feet"),
  22889. default: true
  22890. },
  22891. ]
  22892. ))
  22893. characterMakers.push(() => makeCharacter(
  22894. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22895. {
  22896. side: {
  22897. height: math.unit(25.5, "feet"),
  22898. weight: math.unit(23000, "kg"),
  22899. name: "Side",
  22900. image: {
  22901. source: "./media/characters/kanara/side.svg"
  22902. }
  22903. },
  22904. },
  22905. [
  22906. {
  22907. name: "Normal",
  22908. height: math.unit(25.5, "feet"),
  22909. default: true
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22915. {
  22916. side: {
  22917. height: math.unit(10, "feet"),
  22918. weight: math.unit(1000, "kg"),
  22919. name: "Side",
  22920. image: {
  22921. source: "./media/characters/ereus/side.svg",
  22922. extra: 1157 / 959,
  22923. bottom: 153 / 1312.5
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(10, "feet"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22937. {
  22938. side: {
  22939. height: math.unit(4.5, "feet"),
  22940. weight: math.unit(500, "lb"),
  22941. name: "Side",
  22942. image: {
  22943. source: "./media/characters/e-ter/side.svg",
  22944. extra: 1550 / 1248,
  22945. bottom: 146 / 1694
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(4.5, "feet"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22959. {
  22960. side: {
  22961. height: math.unit(9.7, "feet"),
  22962. weight: math.unit(4000, "kg"),
  22963. name: "Side",
  22964. image: {
  22965. source: "./media/characters/yamie/side.svg"
  22966. }
  22967. },
  22968. },
  22969. [
  22970. {
  22971. name: "Normal",
  22972. height: math.unit(9.7, "feet"),
  22973. default: true
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22979. {
  22980. front: {
  22981. height: math.unit(50, "feet"),
  22982. weight: math.unit(50000, "kg"),
  22983. name: "Front",
  22984. image: {
  22985. source: "./media/characters/anders/front.svg",
  22986. extra: 570 / 539,
  22987. bottom: 14.7 / 586.7
  22988. }
  22989. },
  22990. },
  22991. [
  22992. {
  22993. name: "Large",
  22994. height: math.unit(50, "feet")
  22995. },
  22996. {
  22997. name: "Macro",
  22998. height: math.unit(2000, "feet"),
  22999. default: true
  23000. },
  23001. {
  23002. name: "Megamacro",
  23003. height: math.unit(12, "miles")
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23009. {
  23010. front: {
  23011. height: math.unit(7 + 2 / 12, "feet"),
  23012. weight: math.unit(300, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/reban/front.svg",
  23016. extra: 1287/1212,
  23017. bottom: 148/1435
  23018. }
  23019. },
  23020. head: {
  23021. height: math.unit(1.95, "feet"),
  23022. name: "Head",
  23023. image: {
  23024. source: "./media/characters/reban/head.svg"
  23025. }
  23026. },
  23027. maw: {
  23028. height: math.unit(0.95, "feet"),
  23029. name: "Maw",
  23030. image: {
  23031. source: "./media/characters/reban/maw.svg"
  23032. }
  23033. },
  23034. foot: {
  23035. height: math.unit(1.65, "feet"),
  23036. name: "Foot",
  23037. image: {
  23038. source: "./media/characters/reban/foot.svg"
  23039. }
  23040. },
  23041. dick: {
  23042. height: math.unit(7 / 5, "feet"),
  23043. name: "Dick",
  23044. image: {
  23045. source: "./media/characters/reban/dick.svg"
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Natural Height",
  23052. height: math.unit(7 + 2 / 12, "feet")
  23053. },
  23054. {
  23055. name: "Macro",
  23056. height: math.unit(500, "feet"),
  23057. default: true
  23058. },
  23059. {
  23060. name: "Canon Height",
  23061. height: math.unit(50, "AU")
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(6, "feet"),
  23070. weight: math.unit(150, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/terrance-keayes/front.svg",
  23074. extra: 1.005,
  23075. bottom: 151 / 1615
  23076. }
  23077. },
  23078. side: {
  23079. height: math.unit(6, "feet"),
  23080. weight: math.unit(150, "lb"),
  23081. name: "Side",
  23082. image: {
  23083. source: "./media/characters/terrance-keayes/side.svg",
  23084. extra: 1.005,
  23085. bottom: 129.4 / 1544
  23086. }
  23087. },
  23088. back: {
  23089. height: math.unit(6, "feet"),
  23090. weight: math.unit(150, "lb"),
  23091. name: "Back",
  23092. image: {
  23093. source: "./media/characters/terrance-keayes/back.svg",
  23094. extra: 1.005,
  23095. bottom: 58.4 / 1557.3
  23096. }
  23097. },
  23098. dick: {
  23099. height: math.unit(6 * 0.208, "feet"),
  23100. name: "Dick",
  23101. image: {
  23102. source: "./media/characters/terrance-keayes/dick.svg"
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Canon Height",
  23109. height: math.unit(35, "miles"),
  23110. default: true
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23116. {
  23117. front: {
  23118. height: math.unit(6, "feet"),
  23119. weight: math.unit(150, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/ofelia/front.svg",
  23123. extra: 1130/1117,
  23124. bottom: 91/1221
  23125. }
  23126. },
  23127. back: {
  23128. height: math.unit(6, "feet"),
  23129. weight: math.unit(150, "lb"),
  23130. name: "Back",
  23131. image: {
  23132. source: "./media/characters/ofelia/back.svg",
  23133. extra: 1172/1159,
  23134. bottom: 28/1200
  23135. }
  23136. },
  23137. maw: {
  23138. height: math.unit(1, "feet"),
  23139. name: "Maw",
  23140. image: {
  23141. source: "./media/characters/ofelia/maw.svg"
  23142. }
  23143. },
  23144. foot: {
  23145. height: math.unit(1.949, "feet"),
  23146. name: "Foot",
  23147. image: {
  23148. source: "./media/characters/ofelia/foot.svg"
  23149. }
  23150. },
  23151. },
  23152. [
  23153. {
  23154. name: "Canon Height",
  23155. height: math.unit(2000, "miles"),
  23156. default: true
  23157. },
  23158. ]
  23159. ))
  23160. characterMakers.push(() => makeCharacter(
  23161. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23162. {
  23163. front: {
  23164. height: math.unit(6, "feet"),
  23165. weight: math.unit(150, "lb"),
  23166. name: "Front",
  23167. image: {
  23168. source: "./media/characters/samuel/front.svg",
  23169. extra: 265 / 258,
  23170. bottom: 2 / 266.1566
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Macro",
  23177. height: math.unit(100, "feet"),
  23178. default: true
  23179. },
  23180. {
  23181. name: "Full Size",
  23182. height: math.unit(1000, "miles")
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(6, "feet"),
  23191. weight: math.unit(300, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/beishir-kiel/front.svg",
  23195. extra: 569 / 547,
  23196. bottom: 41.9 / 609
  23197. }
  23198. },
  23199. maw: {
  23200. height: math.unit(6 * 0.202, "feet"),
  23201. name: "Maw",
  23202. image: {
  23203. source: "./media/characters/beishir-kiel/maw.svg"
  23204. }
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Macro",
  23210. height: math.unit(300, "feet"),
  23211. default: true
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(5 + 7/12, "feet"),
  23220. weight: math.unit(120, "lb"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/logan-grey/front.svg",
  23224. extra: 1836/1738,
  23225. bottom: 108/1944
  23226. }
  23227. },
  23228. back: {
  23229. height: math.unit(5 + 7/12, "feet"),
  23230. weight: math.unit(120, "lb"),
  23231. name: "Back",
  23232. image: {
  23233. source: "./media/characters/logan-grey/back.svg",
  23234. extra: 1880/1794,
  23235. bottom: 24/1904
  23236. }
  23237. },
  23238. frontSfw: {
  23239. height: math.unit(5 + 7/12, "feet"),
  23240. weight: math.unit(120, "lb"),
  23241. name: "Front (SFW)",
  23242. image: {
  23243. source: "./media/characters/logan-grey/front-sfw.svg",
  23244. extra: 1836/1738,
  23245. bottom: 108/1944
  23246. }
  23247. },
  23248. backSfw: {
  23249. height: math.unit(5 + 7/12, "feet"),
  23250. weight: math.unit(120, "lb"),
  23251. name: "Back (SFW)",
  23252. image: {
  23253. source: "./media/characters/logan-grey/back-sfw.svg",
  23254. extra: 1880/1794,
  23255. bottom: 24/1904
  23256. }
  23257. },
  23258. hands: {
  23259. height: math.unit(0.84, "feet"),
  23260. name: "Hands",
  23261. image: {
  23262. source: "./media/characters/logan-grey/hands.svg"
  23263. }
  23264. },
  23265. paws: {
  23266. height: math.unit(0.72, "feet"),
  23267. name: "Paws",
  23268. image: {
  23269. source: "./media/characters/logan-grey/paws.svg"
  23270. }
  23271. },
  23272. cock: {
  23273. height: math.unit(1.45, "feet"),
  23274. name: "Cock",
  23275. image: {
  23276. source: "./media/characters/logan-grey/cock.svg"
  23277. }
  23278. },
  23279. cockAlt: {
  23280. height: math.unit(1.437, "feet"),
  23281. name: "Cock (alt)",
  23282. image: {
  23283. source: "./media/characters/logan-grey/cock-alt.svg"
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(5 + 8 / 12, "feet")
  23291. },
  23292. {
  23293. name: "The 500 Foot Femboy",
  23294. height: math.unit(500, "feet"),
  23295. default: true
  23296. },
  23297. {
  23298. name: "Megmacro",
  23299. height: math.unit(20, "miles")
  23300. },
  23301. ]
  23302. ))
  23303. characterMakers.push(() => makeCharacter(
  23304. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23305. {
  23306. front: {
  23307. height: math.unit(8 + 2 / 12, "feet"),
  23308. weight: math.unit(275, "lb"),
  23309. name: "Front",
  23310. image: {
  23311. source: "./media/characters/draganta/front.svg",
  23312. extra: 1177 / 1135,
  23313. bottom: 33.46 / 1212.1
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Normal",
  23320. height: math.unit(8 + 6 / 12, "feet"),
  23321. default: true
  23322. },
  23323. {
  23324. name: "Macro",
  23325. height: math.unit(150, "feet")
  23326. },
  23327. {
  23328. name: "Megamacro",
  23329. height: math.unit(1000, "miles")
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23335. {
  23336. front: {
  23337. height: math.unit(1.72, "m"),
  23338. weight: math.unit(80, "lb"),
  23339. name: "Front",
  23340. image: {
  23341. source: "./media/characters/voski/front.svg",
  23342. extra: 2076.22 / 2022.4,
  23343. bottom: 102.7 / 2177.3866
  23344. }
  23345. },
  23346. frontFlaccid: {
  23347. height: math.unit(1.72, "m"),
  23348. weight: math.unit(80, "lb"),
  23349. name: "Front (Flaccid)",
  23350. image: {
  23351. source: "./media/characters/voski/front-flaccid.svg",
  23352. extra: 2076.22 / 2022.4,
  23353. bottom: 102.7 / 2177.3866
  23354. }
  23355. },
  23356. frontErect: {
  23357. height: math.unit(1.72, "m"),
  23358. weight: math.unit(80, "lb"),
  23359. name: "Front (Erect)",
  23360. image: {
  23361. source: "./media/characters/voski/front-erect.svg",
  23362. extra: 2076.22 / 2022.4,
  23363. bottom: 102.7 / 2177.3866
  23364. }
  23365. },
  23366. back: {
  23367. height: math.unit(1.72, "m"),
  23368. weight: math.unit(80, "lb"),
  23369. name: "Back",
  23370. image: {
  23371. source: "./media/characters/voski/back.svg",
  23372. extra: 2104 / 2051,
  23373. bottom: 10.45 / 2113.63
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(1.72, "m")
  23381. },
  23382. {
  23383. name: "Macro",
  23384. height: math.unit(55, "m"),
  23385. default: true
  23386. },
  23387. {
  23388. name: "Macro+",
  23389. height: math.unit(300, "m")
  23390. },
  23391. {
  23392. name: "Macro++",
  23393. height: math.unit(700, "m")
  23394. },
  23395. {
  23396. name: "Macro+++",
  23397. height: math.unit(4500, "m")
  23398. },
  23399. {
  23400. name: "Macro++++",
  23401. height: math.unit(45, "km")
  23402. },
  23403. {
  23404. name: "Macro+++++",
  23405. height: math.unit(1220, "km")
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23411. {
  23412. front: {
  23413. height: math.unit(2.3, "m"),
  23414. weight: math.unit(304, "kg"),
  23415. name: "Front",
  23416. image: {
  23417. source: "./media/characters/icowom-lee/front.svg",
  23418. extra: 985 / 955,
  23419. bottom: 25.4 / 1012
  23420. }
  23421. },
  23422. fronttentacles: {
  23423. height: math.unit(2.3, "m"),
  23424. weight: math.unit(304, "kg"),
  23425. name: "Front-tentacles",
  23426. image: {
  23427. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23428. extra: 985 / 955,
  23429. bottom: 25.4 / 1012
  23430. }
  23431. },
  23432. back: {
  23433. height: math.unit(2.3, "m"),
  23434. weight: math.unit(304, "kg"),
  23435. name: "Back",
  23436. image: {
  23437. source: "./media/characters/icowom-lee/back.svg",
  23438. extra: 975 / 954,
  23439. bottom: 9.5 / 985
  23440. }
  23441. },
  23442. backtentacles: {
  23443. height: math.unit(2.3, "m"),
  23444. weight: math.unit(304, "kg"),
  23445. name: "Back-tentacles",
  23446. image: {
  23447. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23448. extra: 975 / 954,
  23449. bottom: 9.5 / 985
  23450. }
  23451. },
  23452. frontDressed: {
  23453. height: math.unit(2.3, "m"),
  23454. weight: math.unit(304, "kg"),
  23455. name: "Front (Dressed)",
  23456. image: {
  23457. source: "./media/characters/icowom-lee/front-dressed.svg",
  23458. extra: 3076 / 2933,
  23459. bottom: 51.4 / 3125.1889
  23460. }
  23461. },
  23462. rump: {
  23463. height: math.unit(0.776, "meters"),
  23464. name: "Rump",
  23465. image: {
  23466. source: "./media/characters/icowom-lee/rump.svg"
  23467. }
  23468. },
  23469. genitals: {
  23470. height: math.unit(0.78, "meters"),
  23471. name: "Genitals",
  23472. image: {
  23473. source: "./media/characters/icowom-lee/genitals.svg"
  23474. }
  23475. },
  23476. },
  23477. [
  23478. {
  23479. name: "Normal",
  23480. height: math.unit(2.3, "meters"),
  23481. default: true
  23482. },
  23483. {
  23484. name: "Macro",
  23485. height: math.unit(94, "meters"),
  23486. default: true
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23492. {
  23493. front: {
  23494. height: math.unit(22, "meters"),
  23495. weight: math.unit(21000, "kg"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/shock-diamond/front.svg",
  23499. extra: 2204 / 2053,
  23500. bottom: 65 / 2239.47
  23501. }
  23502. },
  23503. frontNude: {
  23504. height: math.unit(22, "meters"),
  23505. weight: math.unit(21000, "kg"),
  23506. name: "Front (Nude)",
  23507. image: {
  23508. source: "./media/characters/shock-diamond/front-nude.svg",
  23509. extra: 2514 / 2285,
  23510. bottom: 13 / 2527.56
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(3, "meters")
  23518. },
  23519. {
  23520. name: "Macro",
  23521. height: math.unit(22, "meters"),
  23522. default: true
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23528. {
  23529. front: {
  23530. height: math.unit(5 + 4 / 12, "feet"),
  23531. weight: math.unit(120, "lb"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/rory/front.svg",
  23535. extra: 1318/1241,
  23536. bottom: 42/1360
  23537. }
  23538. },
  23539. back: {
  23540. height: math.unit(5 + 4 / 12, "feet"),
  23541. weight: math.unit(120, "lb"),
  23542. name: "Back",
  23543. image: {
  23544. source: "./media/characters/rory/back.svg",
  23545. extra: 1318/1241,
  23546. bottom: 42/1360
  23547. }
  23548. },
  23549. butt: {
  23550. height: math.unit(1.74, "feet"),
  23551. name: "Butt",
  23552. image: {
  23553. source: "./media/characters/rory/butt.svg"
  23554. }
  23555. },
  23556. dick: {
  23557. height: math.unit(1.02, "feet"),
  23558. name: "Dick",
  23559. image: {
  23560. source: "./media/characters/rory/dick.svg"
  23561. }
  23562. },
  23563. paws: {
  23564. height: math.unit(1, "feet"),
  23565. name: "Paws",
  23566. image: {
  23567. source: "./media/characters/rory/paws.svg"
  23568. }
  23569. },
  23570. frontAlt: {
  23571. height: math.unit(5 + 4 / 12, "feet"),
  23572. weight: math.unit(120, "lb"),
  23573. name: "Front (Alt)",
  23574. image: {
  23575. source: "./media/characters/rory/front-alt.svg",
  23576. extra: 589 / 556,
  23577. bottom: 45.7 / 635.76
  23578. }
  23579. },
  23580. frontAltNude: {
  23581. height: math.unit(5 + 4 / 12, "feet"),
  23582. weight: math.unit(120, "lb"),
  23583. name: "Front (Alt, Nude)",
  23584. image: {
  23585. source: "./media/characters/rory/front-alt-nude.svg",
  23586. extra: 589 / 556,
  23587. bottom: 45.7 / 635.76
  23588. }
  23589. },
  23590. side: {
  23591. height: math.unit(5 + 4 / 12, "feet"),
  23592. weight: math.unit(120, "lb"),
  23593. name: "Side",
  23594. image: {
  23595. source: "./media/characters/rory/side.svg",
  23596. extra: 597 / 564,
  23597. bottom: 55 / 653
  23598. }
  23599. },
  23600. backAlt: {
  23601. height: math.unit(5 + 4 / 12, "feet"),
  23602. weight: math.unit(120, "lb"),
  23603. name: "Back (Alt)",
  23604. image: {
  23605. source: "./media/characters/rory/back-alt.svg",
  23606. extra: 620 / 585,
  23607. bottom: 8.86 / 630.43
  23608. }
  23609. },
  23610. dickAlt: {
  23611. height: math.unit(0.86, "feet"),
  23612. name: "Dick (Alt)",
  23613. image: {
  23614. source: "./media/characters/rory/dick-alt.svg"
  23615. }
  23616. },
  23617. },
  23618. [
  23619. {
  23620. name: "Normal",
  23621. height: math.unit(5 + 4 / 12, "feet"),
  23622. default: true
  23623. },
  23624. {
  23625. name: "Macro",
  23626. height: math.unit(100, "feet")
  23627. },
  23628. {
  23629. name: "Macro+",
  23630. height: math.unit(140, "feet")
  23631. },
  23632. {
  23633. name: "Macro++",
  23634. height: math.unit(300, "feet")
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23640. {
  23641. front: {
  23642. height: math.unit(5 + 9 / 12, "feet"),
  23643. weight: math.unit(190, "lb"),
  23644. name: "Front",
  23645. image: {
  23646. source: "./media/characters/sprisk/front.svg",
  23647. extra: 1225 / 1180,
  23648. bottom: 42.7 / 1266.4
  23649. }
  23650. },
  23651. frontNsfw: {
  23652. height: math.unit(5 + 9 / 12, "feet"),
  23653. weight: math.unit(190, "lb"),
  23654. name: "Front (NSFW)",
  23655. image: {
  23656. source: "./media/characters/sprisk/front-nsfw.svg",
  23657. extra: 1225 / 1180,
  23658. bottom: 42.7 / 1266.4
  23659. }
  23660. },
  23661. back: {
  23662. height: math.unit(5 + 9 / 12, "feet"),
  23663. weight: math.unit(190, "lb"),
  23664. name: "Back",
  23665. image: {
  23666. source: "./media/characters/sprisk/back.svg",
  23667. extra: 1247 / 1200,
  23668. bottom: 5.6 / 1253.04
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Tiny",
  23675. height: math.unit(2, "inches")
  23676. },
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(5 + 9 / 12, "feet"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Mini Macro",
  23684. height: math.unit(18, "feet")
  23685. },
  23686. {
  23687. name: "Macro",
  23688. height: math.unit(100, "feet")
  23689. },
  23690. {
  23691. name: "MACRO",
  23692. height: math.unit(50, "miles")
  23693. },
  23694. {
  23695. name: "M A C R O",
  23696. height: math.unit(300, "miles")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23702. {
  23703. side: {
  23704. height: math.unit(15.6, "meters"),
  23705. weight: math.unit(700000, "kg"),
  23706. name: "Side",
  23707. image: {
  23708. source: "./media/characters/bunsen/side.svg",
  23709. extra: 1644 / 358
  23710. }
  23711. },
  23712. foot: {
  23713. height: math.unit(1.611 * 1644 / 358, "meter"),
  23714. name: "Foot",
  23715. image: {
  23716. source: "./media/characters/bunsen/foot.svg"
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "Small",
  23723. height: math.unit(10, "feet")
  23724. },
  23725. {
  23726. name: "Normal",
  23727. height: math.unit(15.6, "meters"),
  23728. default: true
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23734. {
  23735. front: {
  23736. height: math.unit(4 + 11 / 12, "feet"),
  23737. weight: math.unit(140, "lb"),
  23738. name: "Front",
  23739. image: {
  23740. source: "./media/characters/sesh/front.svg",
  23741. extra: 3420 / 3231,
  23742. bottom: 72 / 3949.5
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Normal",
  23749. height: math.unit(4 + 11 / 12, "feet")
  23750. },
  23751. {
  23752. name: "Grown",
  23753. height: math.unit(15, "feet"),
  23754. default: true
  23755. },
  23756. {
  23757. name: "Macro",
  23758. height: math.unit(1500, "feet")
  23759. },
  23760. {
  23761. name: "Megamacro",
  23762. height: math.unit(30, "miles")
  23763. },
  23764. {
  23765. name: "Continental",
  23766. height: math.unit(3000, "miles")
  23767. },
  23768. {
  23769. name: "Gravity Mass",
  23770. height: math.unit(300000, "miles")
  23771. },
  23772. {
  23773. name: "Planet Buster",
  23774. height: math.unit(30000000, "miles")
  23775. },
  23776. {
  23777. name: "Big",
  23778. height: math.unit(3000000000, "miles")
  23779. },
  23780. ]
  23781. ))
  23782. characterMakers.push(() => makeCharacter(
  23783. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23784. {
  23785. front: {
  23786. height: math.unit(9, "feet"),
  23787. weight: math.unit(350, "lb"),
  23788. name: "Front",
  23789. image: {
  23790. source: "./media/characters/pepper/front.svg",
  23791. extra: 1448 / 1312,
  23792. bottom: 9.4 / 1457.88
  23793. }
  23794. },
  23795. back: {
  23796. height: math.unit(9, "feet"),
  23797. weight: math.unit(350, "lb"),
  23798. name: "Back",
  23799. image: {
  23800. source: "./media/characters/pepper/back.svg",
  23801. extra: 1423 / 1300,
  23802. bottom: 4.6 / 1429
  23803. }
  23804. },
  23805. maw: {
  23806. height: math.unit(0.932, "feet"),
  23807. name: "Maw",
  23808. image: {
  23809. source: "./media/characters/pepper/maw.svg"
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(9, "feet"),
  23817. default: true
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23823. {
  23824. front: {
  23825. height: math.unit(6, "feet"),
  23826. weight: math.unit(150, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/maelstrom/front.svg",
  23830. extra: 2100 / 1883,
  23831. bottom: 94 / 2196.7
  23832. }
  23833. },
  23834. },
  23835. [
  23836. {
  23837. name: "Less Kaiju",
  23838. height: math.unit(200, "feet")
  23839. },
  23840. {
  23841. name: "Kaiju",
  23842. height: math.unit(400, "feet"),
  23843. default: true
  23844. },
  23845. {
  23846. name: "Kaiju-er",
  23847. height: math.unit(600, "feet")
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(6 + 5 / 12, "feet"),
  23856. weight: math.unit(180, "lb"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/lexir/front.svg",
  23860. extra: 180 / 172,
  23861. bottom: 12 / 192
  23862. }
  23863. },
  23864. back: {
  23865. height: math.unit(6 + 5 / 12, "feet"),
  23866. weight: math.unit(180, "lb"),
  23867. name: "Back",
  23868. image: {
  23869. source: "./media/characters/lexir/back.svg",
  23870. extra: 1273/1201,
  23871. bottom: 39/1312
  23872. }
  23873. },
  23874. },
  23875. [
  23876. {
  23877. name: "Very Smal",
  23878. height: math.unit(1, "nm")
  23879. },
  23880. {
  23881. name: "Normal",
  23882. height: math.unit(6 + 5 / 12, "feet"),
  23883. default: true
  23884. },
  23885. {
  23886. name: "Macro",
  23887. height: math.unit(1, "mile")
  23888. },
  23889. {
  23890. name: "Megamacro",
  23891. height: math.unit(50, "miles")
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23897. {
  23898. front: {
  23899. height: math.unit(1.5, "meters"),
  23900. weight: math.unit(100, "lb"),
  23901. name: "Front",
  23902. image: {
  23903. source: "./media/characters/maksio/front.svg",
  23904. extra: 1549 / 1531,
  23905. bottom: 123.7 / 1674.5429
  23906. }
  23907. },
  23908. back: {
  23909. height: math.unit(1.5, "meters"),
  23910. weight: math.unit(100, "lb"),
  23911. name: "Back",
  23912. image: {
  23913. source: "./media/characters/maksio/back.svg",
  23914. extra: 1541 / 1509,
  23915. bottom: 97 / 1639
  23916. }
  23917. },
  23918. hand: {
  23919. height: math.unit(0.621, "feet"),
  23920. name: "Hand",
  23921. image: {
  23922. source: "./media/characters/maksio/hand.svg"
  23923. }
  23924. },
  23925. foot: {
  23926. height: math.unit(1.611, "feet"),
  23927. name: "Foot",
  23928. image: {
  23929. source: "./media/characters/maksio/foot.svg"
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Shrunken",
  23936. height: math.unit(10, "cm")
  23937. },
  23938. {
  23939. name: "Normal",
  23940. height: math.unit(150, "cm"),
  23941. default: true
  23942. },
  23943. ]
  23944. ))
  23945. characterMakers.push(() => makeCharacter(
  23946. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23947. {
  23948. front: {
  23949. height: math.unit(100, "feet"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/erza-bear/front.svg",
  23953. extra: 2449 / 2390,
  23954. bottom: 46 / 2494
  23955. }
  23956. },
  23957. back: {
  23958. height: math.unit(100, "feet"),
  23959. name: "Back",
  23960. image: {
  23961. source: "./media/characters/erza-bear/back.svg",
  23962. extra: 2489 / 2430,
  23963. bottom: 85.4 / 2480
  23964. }
  23965. },
  23966. tail: {
  23967. height: math.unit(42, "feet"),
  23968. name: "Tail",
  23969. image: {
  23970. source: "./media/characters/erza-bear/tail.svg"
  23971. }
  23972. },
  23973. tongue: {
  23974. height: math.unit(8, "feet"),
  23975. name: "Tongue",
  23976. image: {
  23977. source: "./media/characters/erza-bear/tongue.svg"
  23978. }
  23979. },
  23980. dick: {
  23981. height: math.unit(10.5, "feet"),
  23982. name: "Dick",
  23983. image: {
  23984. source: "./media/characters/erza-bear/dick.svg"
  23985. }
  23986. },
  23987. dickVertical: {
  23988. height: math.unit(16.9, "feet"),
  23989. name: "Dick (Vertical)",
  23990. image: {
  23991. source: "./media/characters/erza-bear/dick-vertical.svg"
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Macro",
  23998. height: math.unit(100, "feet"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(172, "cm"),
  24008. weight: math.unit(73, "kg"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/violet-flor/front.svg",
  24012. extra: 1530 / 1442,
  24013. bottom: 61.9 / 1588.8
  24014. }
  24015. },
  24016. back: {
  24017. height: math.unit(180, "cm"),
  24018. weight: math.unit(73, "kg"),
  24019. name: "Back",
  24020. image: {
  24021. source: "./media/characters/violet-flor/back.svg",
  24022. extra: 1692 / 1630,
  24023. bottom: 20 / 1712
  24024. }
  24025. },
  24026. },
  24027. [
  24028. {
  24029. name: "Normal",
  24030. height: math.unit(172, "cm"),
  24031. default: true
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24037. {
  24038. front: {
  24039. height: math.unit(6, "feet"),
  24040. weight: math.unit(220, "lb"),
  24041. name: "Front",
  24042. image: {
  24043. source: "./media/characters/lynn-rhea/front.svg",
  24044. extra: 310 / 273
  24045. }
  24046. },
  24047. back: {
  24048. height: math.unit(6, "feet"),
  24049. weight: math.unit(220, "lb"),
  24050. name: "Back",
  24051. image: {
  24052. source: "./media/characters/lynn-rhea/back.svg",
  24053. extra: 310 / 273
  24054. }
  24055. },
  24056. dicks: {
  24057. height: math.unit(0.9, "feet"),
  24058. name: "Dicks",
  24059. image: {
  24060. source: "./media/characters/lynn-rhea/dicks.svg"
  24061. }
  24062. },
  24063. slit: {
  24064. height: math.unit(0.4, "feet"),
  24065. name: "Slit",
  24066. image: {
  24067. source: "./media/characters/lynn-rhea/slit.svg"
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Micro",
  24074. height: math.unit(1, "inch")
  24075. },
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(60, "feet"),
  24079. default: true
  24080. },
  24081. {
  24082. name: "Megamacro",
  24083. height: math.unit(2, "miles")
  24084. },
  24085. {
  24086. name: "Gigamacro",
  24087. height: math.unit(3, "earths")
  24088. },
  24089. {
  24090. name: "Galactic",
  24091. height: math.unit(0.8, "galaxies")
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24097. {
  24098. front: {
  24099. height: math.unit(1600, "feet"),
  24100. weight: math.unit(85758785169, "kg"),
  24101. name: "Front",
  24102. image: {
  24103. source: "./media/characters/valathos/front.svg",
  24104. extra: 1451 / 1339
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Macro",
  24111. height: math.unit(1600, "feet"),
  24112. default: true
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(7 + 5 / 12, "feet"),
  24121. weight: math.unit(300, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/azula/front.svg",
  24125. extra: 3208 / 2880,
  24126. bottom: 80.2 / 3277
  24127. }
  24128. },
  24129. back: {
  24130. height: math.unit(7 + 5 / 12, "feet"),
  24131. weight: math.unit(300, "lb"),
  24132. name: "Back",
  24133. image: {
  24134. source: "./media/characters/azula/back.svg",
  24135. extra: 3169 / 2822,
  24136. bottom: 150.6 / 3321
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(7 + 5 / 12, "feet"),
  24144. default: true
  24145. },
  24146. {
  24147. name: "Big",
  24148. height: math.unit(20, "feet")
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(5 + 1 / 12, "feet"),
  24157. weight: math.unit(110, "lb"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/rupert/front.svg",
  24161. extra: 1549 / 1495,
  24162. bottom: 54.2 / 1604.4
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(5 + 1 / 12, "feet"),
  24170. default: true
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24176. {
  24177. front: {
  24178. height: math.unit(8 + 4 / 12, "feet"),
  24179. weight: math.unit(350, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/sheera-castellar/front.svg",
  24183. extra: 1957 / 1894,
  24184. bottom: 26.97 / 1975.017
  24185. }
  24186. },
  24187. side: {
  24188. height: math.unit(8 + 4 / 12, "feet"),
  24189. weight: math.unit(350, "lb"),
  24190. name: "Side",
  24191. image: {
  24192. source: "./media/characters/sheera-castellar/side.svg",
  24193. extra: 1957 / 1894
  24194. }
  24195. },
  24196. back: {
  24197. height: math.unit(8 + 4 / 12, "feet"),
  24198. weight: math.unit(350, "lb"),
  24199. name: "Back",
  24200. image: {
  24201. source: "./media/characters/sheera-castellar/back.svg",
  24202. extra: 1957 / 1894
  24203. }
  24204. },
  24205. angled: {
  24206. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24207. weight: math.unit(350, "lb"),
  24208. name: "Angled",
  24209. image: {
  24210. source: "./media/characters/sheera-castellar/angled.svg",
  24211. extra: 1807 / 1707,
  24212. bottom: 68 / 1875
  24213. }
  24214. },
  24215. genitals: {
  24216. height: math.unit(2.2, "feet"),
  24217. name: "Genitals",
  24218. image: {
  24219. source: "./media/characters/sheera-castellar/genitals.svg"
  24220. }
  24221. },
  24222. taur: {
  24223. height: math.unit(10 + 6/12, "feet"),
  24224. name: "Taur",
  24225. image: {
  24226. source: "./media/characters/sheera-castellar/taur.svg",
  24227. extra: 2017/1909,
  24228. bottom: 185/2202
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(8 + 4 / 12, "feet")
  24236. },
  24237. {
  24238. name: "Macro",
  24239. height: math.unit(150, "feet"),
  24240. default: true
  24241. },
  24242. {
  24243. name: "Macro+",
  24244. height: math.unit(800, "feet")
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24250. {
  24251. front: {
  24252. height: math.unit(6, "feet"),
  24253. weight: math.unit(150, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/jaipur/front.svg",
  24257. extra: 3860 / 3731,
  24258. bottom: 287 / 4140
  24259. }
  24260. },
  24261. back: {
  24262. height: math.unit(6, "feet"),
  24263. weight: math.unit(150, "lb"),
  24264. name: "Back",
  24265. image: {
  24266. source: "./media/characters/jaipur/back.svg",
  24267. extra: 1637/1561,
  24268. bottom: 154/1791
  24269. }
  24270. },
  24271. },
  24272. [
  24273. {
  24274. name: "Normal",
  24275. height: math.unit(1.85, "meters"),
  24276. default: true
  24277. },
  24278. {
  24279. name: "Macro",
  24280. height: math.unit(150, "meters")
  24281. },
  24282. {
  24283. name: "Macro+",
  24284. height: math.unit(0.5, "miles")
  24285. },
  24286. {
  24287. name: "Macro++",
  24288. height: math.unit(2.5, "miles")
  24289. },
  24290. {
  24291. name: "Macro+++",
  24292. height: math.unit(12, "miles")
  24293. },
  24294. {
  24295. name: "Macro++++",
  24296. height: math.unit(120, "miles")
  24297. },
  24298. {
  24299. name: "Macro+++++",
  24300. height: math.unit(1200, "miles")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(6, "feet"),
  24309. weight: math.unit(150, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/sheila-wolf/front.svg",
  24313. extra: 1931 / 1808,
  24314. bottom: 29.5 / 1960
  24315. }
  24316. },
  24317. dick: {
  24318. height: math.unit(1.464, "feet"),
  24319. name: "Dick",
  24320. image: {
  24321. source: "./media/characters/sheila-wolf/dick.svg"
  24322. }
  24323. },
  24324. muzzle: {
  24325. height: math.unit(0.513, "feet"),
  24326. name: "Muzzle",
  24327. image: {
  24328. source: "./media/characters/sheila-wolf/muzzle.svg"
  24329. }
  24330. },
  24331. },
  24332. [
  24333. {
  24334. name: "Macro",
  24335. height: math.unit(70, "feet"),
  24336. default: true
  24337. },
  24338. ]
  24339. ))
  24340. characterMakers.push(() => makeCharacter(
  24341. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24342. {
  24343. front: {
  24344. height: math.unit(32, "meters"),
  24345. weight: math.unit(300000, "kg"),
  24346. name: "Front",
  24347. image: {
  24348. source: "./media/characters/almor/front.svg",
  24349. extra: 1408 / 1322,
  24350. bottom: 94.6 / 1506.5
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Macro",
  24357. height: math.unit(32, "meters"),
  24358. default: true
  24359. },
  24360. ]
  24361. ))
  24362. characterMakers.push(() => makeCharacter(
  24363. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24364. {
  24365. front: {
  24366. height: math.unit(7, "feet"),
  24367. weight: math.unit(200, "lb"),
  24368. name: "Front",
  24369. image: {
  24370. source: "./media/characters/silver/front.svg",
  24371. extra: 472.1 / 450.5,
  24372. bottom: 26.5 / 499.424
  24373. }
  24374. },
  24375. },
  24376. [
  24377. {
  24378. name: "Normal",
  24379. height: math.unit(7, "feet"),
  24380. default: true
  24381. },
  24382. {
  24383. name: "Macro",
  24384. height: math.unit(800, "feet")
  24385. },
  24386. {
  24387. name: "Megamacro",
  24388. height: math.unit(250, "miles")
  24389. },
  24390. ]
  24391. ))
  24392. characterMakers.push(() => makeCharacter(
  24393. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24394. {
  24395. front: {
  24396. height: math.unit(6, "feet"),
  24397. weight: math.unit(150, "lb"),
  24398. name: "Front",
  24399. image: {
  24400. source: "./media/characters/pliskin/front.svg",
  24401. extra: 1469 / 1359,
  24402. bottom: 70 / 1540
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Micro",
  24409. height: math.unit(3, "inches")
  24410. },
  24411. {
  24412. name: "Normal",
  24413. height: math.unit(5 + 11 / 12, "feet"),
  24414. default: true
  24415. },
  24416. {
  24417. name: "Macro",
  24418. height: math.unit(120, "feet")
  24419. },
  24420. ]
  24421. ))
  24422. characterMakers.push(() => makeCharacter(
  24423. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24424. {
  24425. front: {
  24426. height: math.unit(6, "feet"),
  24427. weight: math.unit(150, "lb"),
  24428. name: "Front",
  24429. image: {
  24430. source: "./media/characters/sammy/front.svg",
  24431. extra: 1193 / 1089,
  24432. bottom: 30.5 / 1226
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "Macro",
  24439. height: math.unit(1700, "feet"),
  24440. default: true
  24441. },
  24442. {
  24443. name: "Examacro",
  24444. height: math.unit(2.5e9, "lightyears")
  24445. },
  24446. ]
  24447. ))
  24448. characterMakers.push(() => makeCharacter(
  24449. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24450. {
  24451. front: {
  24452. height: math.unit(21, "meters"),
  24453. weight: math.unit(12, "tonnes"),
  24454. name: "Front",
  24455. image: {
  24456. source: "./media/characters/kuru/front.svg",
  24457. extra: 4301 / 3785,
  24458. bottom: 371.3 / 4691
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(21, "meters"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(23, "meters"),
  24475. weight: math.unit(12.2, "tonnes"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/rakka/front.svg",
  24479. extra: 4670 / 4169,
  24480. bottom: 301 / 4968.7
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "Macro",
  24487. height: math.unit(23, "meters"),
  24488. default: true
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24494. {
  24495. front: {
  24496. height: math.unit(6, "feet"),
  24497. weight: math.unit(150, "lb"),
  24498. name: "Front",
  24499. image: {
  24500. source: "./media/characters/rhys-feline/front.svg",
  24501. extra: 2488 / 2308,
  24502. bottom: 35.67 / 2519.19
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Really Small",
  24509. height: math.unit(1, "nm")
  24510. },
  24511. {
  24512. name: "Micro",
  24513. height: math.unit(4, "inches")
  24514. },
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(4 + 10 / 12, "feet"),
  24518. default: true
  24519. },
  24520. {
  24521. name: "Macro",
  24522. height: math.unit(100, "feet")
  24523. },
  24524. {
  24525. name: "Megamacto",
  24526. height: math.unit(50, "miles")
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24532. {
  24533. side: {
  24534. height: math.unit(30, "feet"),
  24535. weight: math.unit(35000, "kg"),
  24536. name: "Side",
  24537. image: {
  24538. source: "./media/characters/alydar/side.svg",
  24539. extra: 234 / 222,
  24540. bottom: 6.5 / 241
  24541. }
  24542. },
  24543. front: {
  24544. height: math.unit(30, "feet"),
  24545. weight: math.unit(35000, "kg"),
  24546. name: "Front",
  24547. image: {
  24548. source: "./media/characters/alydar/front.svg",
  24549. extra: 223.37 / 210.2,
  24550. bottom: 22.3 / 246.76
  24551. }
  24552. },
  24553. top: {
  24554. height: math.unit(64.54, "feet"),
  24555. weight: math.unit(35000, "kg"),
  24556. name: "Top",
  24557. image: {
  24558. source: "./media/characters/alydar/top.svg"
  24559. }
  24560. },
  24561. anthro: {
  24562. height: math.unit(30, "feet"),
  24563. weight: math.unit(9000, "kg"),
  24564. name: "Anthro",
  24565. image: {
  24566. source: "./media/characters/alydar/anthro.svg",
  24567. extra: 432 / 421,
  24568. bottom: 7.18 / 440
  24569. }
  24570. },
  24571. maw: {
  24572. height: math.unit(11.693, "feet"),
  24573. name: "Maw",
  24574. image: {
  24575. source: "./media/characters/alydar/maw.svg"
  24576. }
  24577. },
  24578. head: {
  24579. height: math.unit(11.693, "feet"),
  24580. name: "Head",
  24581. image: {
  24582. source: "./media/characters/alydar/head.svg"
  24583. }
  24584. },
  24585. headAlt: {
  24586. height: math.unit(12.861, "feet"),
  24587. name: "Head (Alt)",
  24588. image: {
  24589. source: "./media/characters/alydar/head-alt.svg"
  24590. }
  24591. },
  24592. wing: {
  24593. height: math.unit(20.712, "feet"),
  24594. name: "Wing",
  24595. image: {
  24596. source: "./media/characters/alydar/wing.svg"
  24597. }
  24598. },
  24599. wingFeather: {
  24600. height: math.unit(9.662, "feet"),
  24601. name: "Wing Feather",
  24602. image: {
  24603. source: "./media/characters/alydar/wing-feather.svg"
  24604. }
  24605. },
  24606. countourFeather: {
  24607. height: math.unit(4.154, "feet"),
  24608. name: "Contour Feather",
  24609. image: {
  24610. source: "./media/characters/alydar/contour-feather.svg"
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Diplomatic",
  24617. height: math.unit(13, "feet"),
  24618. default: true
  24619. },
  24620. {
  24621. name: "Small",
  24622. height: math.unit(30, "feet")
  24623. },
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(95, "feet"),
  24627. default: true
  24628. },
  24629. {
  24630. name: "Large",
  24631. height: math.unit(285, "feet")
  24632. },
  24633. {
  24634. name: "Incomprehensible",
  24635. height: math.unit(450, "megameters")
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24641. {
  24642. side: {
  24643. height: math.unit(11, "feet"),
  24644. weight: math.unit(1750, "kg"),
  24645. name: "Side",
  24646. image: {
  24647. source: "./media/characters/selicia/side.svg",
  24648. extra: 440 / 396,
  24649. bottom: 24.8 / 465.979
  24650. }
  24651. },
  24652. maw: {
  24653. height: math.unit(4.665, "feet"),
  24654. name: "Maw",
  24655. image: {
  24656. source: "./media/characters/selicia/maw.svg"
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Normal",
  24663. height: math.unit(11, "feet"),
  24664. default: true
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24670. {
  24671. side: {
  24672. height: math.unit(2 + 6 / 12, "feet"),
  24673. weight: math.unit(30, "lb"),
  24674. name: "Side",
  24675. image: {
  24676. source: "./media/characters/layla/side.svg",
  24677. extra: 244 / 188,
  24678. bottom: 18.2 / 262.1
  24679. }
  24680. },
  24681. back: {
  24682. height: math.unit(2 + 6 / 12, "feet"),
  24683. weight: math.unit(30, "lb"),
  24684. name: "Back",
  24685. image: {
  24686. source: "./media/characters/layla/back.svg",
  24687. extra: 308 / 241.5,
  24688. bottom: 8.9 / 316.8
  24689. }
  24690. },
  24691. cumming: {
  24692. height: math.unit(2 + 6 / 12, "feet"),
  24693. weight: math.unit(30, "lb"),
  24694. name: "Cumming",
  24695. image: {
  24696. source: "./media/characters/layla/cumming.svg",
  24697. extra: 342 / 279,
  24698. bottom: 595 / 938
  24699. }
  24700. },
  24701. dickFlaccid: {
  24702. height: math.unit(2.595, "feet"),
  24703. name: "Flaccid Genitals",
  24704. image: {
  24705. source: "./media/characters/layla/dick-flaccid.svg"
  24706. }
  24707. },
  24708. dickErect: {
  24709. height: math.unit(2.359, "feet"),
  24710. name: "Erect Genitals",
  24711. image: {
  24712. source: "./media/characters/layla/dick-erect.svg"
  24713. }
  24714. },
  24715. dragon: {
  24716. height: math.unit(40, "feet"),
  24717. name: "Dragon",
  24718. image: {
  24719. source: "./media/characters/layla/dragon.svg",
  24720. extra: 610/535,
  24721. bottom: 367/977
  24722. }
  24723. },
  24724. taur: {
  24725. height: math.unit(30, "feet"),
  24726. name: "Taur",
  24727. image: {
  24728. source: "./media/characters/layla/taur.svg",
  24729. extra: 1268/1199,
  24730. bottom: 112/1380
  24731. }
  24732. },
  24733. },
  24734. [
  24735. {
  24736. name: "Micro",
  24737. height: math.unit(1, "inch")
  24738. },
  24739. {
  24740. name: "Small",
  24741. height: math.unit(1, "foot")
  24742. },
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(2 + 6 / 12, "feet"),
  24746. default: true
  24747. },
  24748. {
  24749. name: "Macro",
  24750. height: math.unit(200, "feet")
  24751. },
  24752. {
  24753. name: "Megamacro",
  24754. height: math.unit(1000, "miles")
  24755. },
  24756. {
  24757. name: "Planetary",
  24758. height: math.unit(8000, "miles")
  24759. },
  24760. {
  24761. name: "True Layla",
  24762. height: math.unit(200000 * 7, "multiverses")
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24768. {
  24769. back: {
  24770. height: math.unit(10.5, "feet"),
  24771. weight: math.unit(800, "lb"),
  24772. name: "Back",
  24773. image: {
  24774. source: "./media/characters/knox/back.svg",
  24775. extra: 1486 / 1089,
  24776. bottom: 107 / 1601.4
  24777. }
  24778. },
  24779. side: {
  24780. height: math.unit(10.5, "feet"),
  24781. weight: math.unit(800, "lb"),
  24782. name: "Side",
  24783. image: {
  24784. source: "./media/characters/knox/side.svg",
  24785. extra: 244 / 218,
  24786. bottom: 14 / 260
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Compact",
  24793. height: math.unit(10.5, "feet"),
  24794. default: true
  24795. },
  24796. {
  24797. name: "Dynamax",
  24798. height: math.unit(210, "feet")
  24799. },
  24800. {
  24801. name: "Full Macro",
  24802. height: math.unit(850, "feet")
  24803. },
  24804. ]
  24805. ))
  24806. characterMakers.push(() => makeCharacter(
  24807. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24808. {
  24809. front: {
  24810. height: math.unit(28, "feet"),
  24811. weight: math.unit(10500, "lb"),
  24812. name: "Front",
  24813. image: {
  24814. source: "./media/characters/kayda/front.svg",
  24815. extra: 1536 / 1428,
  24816. bottom: 68.7 / 1603
  24817. }
  24818. },
  24819. back: {
  24820. height: math.unit(28, "feet"),
  24821. weight: math.unit(10500, "lb"),
  24822. name: "Back",
  24823. image: {
  24824. source: "./media/characters/kayda/back.svg",
  24825. extra: 1557 / 1464,
  24826. bottom: 39.5 / 1597.49
  24827. }
  24828. },
  24829. dick: {
  24830. height: math.unit(3.858, "feet"),
  24831. name: "Dick",
  24832. image: {
  24833. source: "./media/characters/kayda/dick.svg"
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Macro",
  24840. height: math.unit(28, "feet"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(10 + 11 / 12, "feet"),
  24850. weight: math.unit(1400, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/brian/front.svg",
  24854. extra: 737 / 692,
  24855. bottom: 55.4 / 785
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(10 + 11 / 12, "feet"),
  24863. default: true
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24869. {
  24870. front: {
  24871. height: math.unit(5 + 8 / 12, "feet"),
  24872. weight: math.unit(140, "lb"),
  24873. name: "Front",
  24874. image: {
  24875. source: "./media/characters/khemri/front.svg",
  24876. extra: 4780 / 4059,
  24877. bottom: 80.1 / 4859.25
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Micro",
  24884. height: math.unit(6, "inches")
  24885. },
  24886. {
  24887. name: "Normal",
  24888. height: math.unit(5 + 8 / 12, "feet"),
  24889. default: true
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24895. {
  24896. front: {
  24897. height: math.unit(13, "feet"),
  24898. weight: math.unit(1700, "lb"),
  24899. name: "Front",
  24900. image: {
  24901. source: "./media/characters/felix-braveheart/front.svg",
  24902. extra: 1222 / 1157,
  24903. bottom: 53.2 / 1280
  24904. }
  24905. },
  24906. back: {
  24907. height: math.unit(13, "feet"),
  24908. weight: math.unit(1700, "lb"),
  24909. name: "Back",
  24910. image: {
  24911. source: "./media/characters/felix-braveheart/back.svg",
  24912. extra: 1277 / 1203,
  24913. bottom: 50.2 / 1327
  24914. }
  24915. },
  24916. feral: {
  24917. height: math.unit(6, "feet"),
  24918. weight: math.unit(400, "lb"),
  24919. name: "Feral",
  24920. image: {
  24921. source: "./media/characters/felix-braveheart/feral.svg",
  24922. extra: 682 / 625,
  24923. bottom: 6.9 / 688
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(13, "feet"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24937. {
  24938. side: {
  24939. height: math.unit(5 + 11 / 12, "feet"),
  24940. weight: math.unit(1400, "lb"),
  24941. name: "Side",
  24942. image: {
  24943. source: "./media/characters/shadow-blade/side.svg",
  24944. extra: 1726 / 1267,
  24945. bottom: 58.4 / 1785
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Normal",
  24952. height: math.unit(5 + 11 / 12, "feet"),
  24953. default: true
  24954. },
  24955. ]
  24956. ))
  24957. characterMakers.push(() => makeCharacter(
  24958. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24959. {
  24960. front: {
  24961. height: math.unit(1 + 6 / 12, "feet"),
  24962. weight: math.unit(25, "lb"),
  24963. name: "Front",
  24964. image: {
  24965. source: "./media/characters/karla-halldor/front.svg",
  24966. extra: 1459 / 1383,
  24967. bottom: 12 / 1472
  24968. }
  24969. },
  24970. },
  24971. [
  24972. {
  24973. name: "Normal",
  24974. height: math.unit(1 + 6 / 12, "feet"),
  24975. default: true
  24976. },
  24977. ]
  24978. ))
  24979. characterMakers.push(() => makeCharacter(
  24980. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24981. {
  24982. front: {
  24983. height: math.unit(6 + 2 / 12, "feet"),
  24984. weight: math.unit(160, "lb"),
  24985. name: "Front",
  24986. image: {
  24987. source: "./media/characters/ariam/front.svg",
  24988. extra: 1073/976,
  24989. bottom: 52/1125
  24990. }
  24991. },
  24992. back: {
  24993. height: math.unit(6 + 2/12, "feet"),
  24994. weight: math.unit(160, "lb"),
  24995. name: "Back",
  24996. image: {
  24997. source: "./media/characters/ariam/back.svg",
  24998. extra: 1103/1023,
  24999. bottom: 9/1112
  25000. }
  25001. },
  25002. dressed: {
  25003. height: math.unit(6 + 2/12, "feet"),
  25004. weight: math.unit(160, "lb"),
  25005. name: "Dressed",
  25006. image: {
  25007. source: "./media/characters/ariam/dressed.svg",
  25008. extra: 1099/1009,
  25009. bottom: 25/1124
  25010. }
  25011. },
  25012. squatting: {
  25013. height: math.unit(4.1, "feet"),
  25014. weight: math.unit(160, "lb"),
  25015. name: "Squatting",
  25016. image: {
  25017. source: "./media/characters/ariam/squatting.svg",
  25018. extra: 2617 / 2112,
  25019. bottom: 61.2 / 2681,
  25020. }
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Normal",
  25026. height: math.unit(6 + 2 / 12, "feet"),
  25027. default: true
  25028. },
  25029. {
  25030. name: "Normal+",
  25031. height: math.unit(4, "meters")
  25032. },
  25033. {
  25034. name: "Macro",
  25035. height: math.unit(50, "meters")
  25036. },
  25037. {
  25038. name: "Macro+",
  25039. height: math.unit(100, "meters")
  25040. },
  25041. {
  25042. name: "Megamacro",
  25043. height: math.unit(20, "km")
  25044. },
  25045. {
  25046. name: "Caretaker",
  25047. height: math.unit(444, "megameters")
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25053. {
  25054. front: {
  25055. height: math.unit(1.67, "meters"),
  25056. weight: math.unit(140, "lb"),
  25057. name: "Front",
  25058. image: {
  25059. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25060. extra: 438 / 410,
  25061. bottom: 0.75 / 439
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Shrunken",
  25068. height: math.unit(7.6, "cm")
  25069. },
  25070. {
  25071. name: "Human Scale",
  25072. height: math.unit(1.67, "meters")
  25073. },
  25074. {
  25075. name: "Wolxi Scale",
  25076. height: math.unit(36.7, "meters"),
  25077. default: true
  25078. },
  25079. ]
  25080. ))
  25081. characterMakers.push(() => makeCharacter(
  25082. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25083. {
  25084. front: {
  25085. height: math.unit(1.73, "meters"),
  25086. weight: math.unit(240, "lb"),
  25087. name: "Front",
  25088. image: {
  25089. source: "./media/characters/izue-two-mothers/front.svg",
  25090. extra: 469 / 437,
  25091. bottom: 1.24 / 470.6
  25092. }
  25093. },
  25094. },
  25095. [
  25096. {
  25097. name: "Shrunken",
  25098. height: math.unit(7.86, "cm")
  25099. },
  25100. {
  25101. name: "Human Scale",
  25102. height: math.unit(1.73, "meters")
  25103. },
  25104. {
  25105. name: "Wolxi Scale",
  25106. height: math.unit(38, "meters"),
  25107. default: true
  25108. },
  25109. ]
  25110. ))
  25111. characterMakers.push(() => makeCharacter(
  25112. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25113. {
  25114. front: {
  25115. height: math.unit(1.55, "meters"),
  25116. weight: math.unit(120, "lb"),
  25117. name: "Front",
  25118. image: {
  25119. source: "./media/characters/teeku-love-shack/front.svg",
  25120. extra: 387 / 362,
  25121. bottom: 1.51 / 388
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Shrunken",
  25128. height: math.unit(7, "cm")
  25129. },
  25130. {
  25131. name: "Human Scale",
  25132. height: math.unit(1.55, "meters")
  25133. },
  25134. {
  25135. name: "Wolxi Scale",
  25136. height: math.unit(34.1, "meters"),
  25137. default: true
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25143. {
  25144. front: {
  25145. height: math.unit(1.83, "meters"),
  25146. weight: math.unit(135, "lb"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/dejma-the-red/front.svg",
  25150. extra: 480 / 458,
  25151. bottom: 1.8 / 482
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Shrunken",
  25158. height: math.unit(8.3, "cm")
  25159. },
  25160. {
  25161. name: "Human Scale",
  25162. height: math.unit(1.83, "meters")
  25163. },
  25164. {
  25165. name: "Wolxi Scale",
  25166. height: math.unit(40, "meters"),
  25167. default: true
  25168. },
  25169. ]
  25170. ))
  25171. characterMakers.push(() => makeCharacter(
  25172. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25173. {
  25174. front: {
  25175. height: math.unit(1.78, "meters"),
  25176. weight: math.unit(65, "kg"),
  25177. name: "Front",
  25178. image: {
  25179. source: "./media/characters/aki/front.svg",
  25180. extra: 452 / 415
  25181. }
  25182. },
  25183. frontNsfw: {
  25184. height: math.unit(1.78, "meters"),
  25185. weight: math.unit(65, "kg"),
  25186. name: "Front (NSFW)",
  25187. image: {
  25188. source: "./media/characters/aki/front-nsfw.svg",
  25189. extra: 452 / 415
  25190. }
  25191. },
  25192. back: {
  25193. height: math.unit(1.78, "meters"),
  25194. weight: math.unit(65, "kg"),
  25195. name: "Back",
  25196. image: {
  25197. source: "./media/characters/aki/back.svg",
  25198. extra: 452 / 415
  25199. }
  25200. },
  25201. rump: {
  25202. height: math.unit(2.05, "feet"),
  25203. name: "Rump",
  25204. image: {
  25205. source: "./media/characters/aki/rump.svg"
  25206. }
  25207. },
  25208. dick: {
  25209. height: math.unit(0.95, "feet"),
  25210. name: "Dick",
  25211. image: {
  25212. source: "./media/characters/aki/dick.svg"
  25213. }
  25214. },
  25215. },
  25216. [
  25217. {
  25218. name: "Micro",
  25219. height: math.unit(15, "cm")
  25220. },
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(178, "cm"),
  25224. default: true
  25225. },
  25226. {
  25227. name: "Macro",
  25228. height: math.unit(214, "m")
  25229. },
  25230. {
  25231. name: "Macro+",
  25232. height: math.unit(534, "m")
  25233. },
  25234. ]
  25235. ))
  25236. characterMakers.push(() => makeCharacter(
  25237. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25238. {
  25239. front: {
  25240. height: math.unit(5 + 5 / 12, "feet"),
  25241. weight: math.unit(120, "lb"),
  25242. name: "Front",
  25243. image: {
  25244. source: "./media/characters/ari/front.svg",
  25245. extra: 1550/1471,
  25246. bottom: 39/1589
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(5 + 5 / 12, "feet")
  25254. },
  25255. {
  25256. name: "Macro",
  25257. height: math.unit(100, "feet"),
  25258. default: true
  25259. },
  25260. {
  25261. name: "Megamacro",
  25262. height: math.unit(100, "miles")
  25263. },
  25264. {
  25265. name: "Gigamacro",
  25266. height: math.unit(80000, "miles")
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25272. {
  25273. side: {
  25274. height: math.unit(9, "feet"),
  25275. weight: math.unit(400, "kg"),
  25276. name: "Side",
  25277. image: {
  25278. source: "./media/characters/bolt/side.svg",
  25279. extra: 1126 / 896,
  25280. bottom: 60 / 1187.3,
  25281. }
  25282. },
  25283. },
  25284. [
  25285. {
  25286. name: "Micro",
  25287. height: math.unit(5, "inches")
  25288. },
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(9, "feet"),
  25292. default: true
  25293. },
  25294. {
  25295. name: "Macro",
  25296. height: math.unit(700, "feet")
  25297. },
  25298. {
  25299. name: "Max Size",
  25300. height: math.unit(1.52e22, "yottameters")
  25301. },
  25302. ]
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(4.3, "meters"),
  25309. weight: math.unit(3, "tons"),
  25310. name: "Front",
  25311. image: {
  25312. source: "./media/characters/draekon-sylviar/front.svg",
  25313. extra: 2072/1512,
  25314. bottom: 74/2146
  25315. }
  25316. },
  25317. back: {
  25318. height: math.unit(4.3, "meters"),
  25319. weight: math.unit(3, "tons"),
  25320. name: "Back",
  25321. image: {
  25322. source: "./media/characters/draekon-sylviar/back.svg",
  25323. extra: 1639/1483,
  25324. bottom: 41/1680
  25325. }
  25326. },
  25327. feral: {
  25328. height: math.unit(1.15, "meters"),
  25329. weight: math.unit(3, "tons"),
  25330. name: "Feral",
  25331. image: {
  25332. source: "./media/characters/draekon-sylviar/feral.svg",
  25333. extra: 1033/395,
  25334. bottom: 130/1163
  25335. }
  25336. },
  25337. maw: {
  25338. height: math.unit(1.3, "meters"),
  25339. name: "Maw",
  25340. image: {
  25341. source: "./media/characters/draekon-sylviar/maw.svg"
  25342. }
  25343. },
  25344. mawSeparated: {
  25345. height: math.unit(1.53, "meters"),
  25346. name: "Separated Maw",
  25347. image: {
  25348. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25349. }
  25350. },
  25351. tail: {
  25352. height: math.unit(1.15, "meters"),
  25353. name: "Tail",
  25354. image: {
  25355. source: "./media/characters/draekon-sylviar/tail.svg"
  25356. }
  25357. },
  25358. tailDick: {
  25359. height: math.unit(1.15, "meters"),
  25360. name: "Tail (Dick)",
  25361. image: {
  25362. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25363. }
  25364. },
  25365. tailDickSeparated: {
  25366. height: math.unit(1.19, "meters"),
  25367. name: "Tail (Separated Dick)",
  25368. image: {
  25369. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25370. }
  25371. },
  25372. slit: {
  25373. height: math.unit(1, "meters"),
  25374. name: "Slit",
  25375. image: {
  25376. source: "./media/characters/draekon-sylviar/slit.svg"
  25377. }
  25378. },
  25379. dick: {
  25380. height: math.unit(1.15, "meters"),
  25381. name: "Dick",
  25382. image: {
  25383. source: "./media/characters/draekon-sylviar/dick.svg"
  25384. }
  25385. },
  25386. dickSeparated: {
  25387. height: math.unit(1.1, "meters"),
  25388. name: "Separated Dick",
  25389. image: {
  25390. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25391. }
  25392. },
  25393. sheath: {
  25394. height: math.unit(1.15, "meters"),
  25395. name: "Sheath",
  25396. image: {
  25397. source: "./media/characters/draekon-sylviar/sheath.svg"
  25398. }
  25399. },
  25400. },
  25401. [
  25402. {
  25403. name: "Small",
  25404. height: math.unit(4.53 / 2, "meters"),
  25405. default: true
  25406. },
  25407. {
  25408. name: "Normal",
  25409. height: math.unit(4.53, "meters"),
  25410. default: true
  25411. },
  25412. {
  25413. name: "Large",
  25414. height: math.unit(4.53 * 2, "meters"),
  25415. },
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(6 + 2 / 12, "feet"),
  25423. weight: math.unit(180, "lb"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/brawler/front.svg",
  25427. extra: 3301 / 3027,
  25428. bottom: 138 / 3439
  25429. }
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Normal",
  25435. height: math.unit(6 + 2 / 12, "feet"),
  25436. default: true
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25442. {
  25443. front: {
  25444. height: math.unit(11, "feet"),
  25445. weight: math.unit(1000, "lb"),
  25446. name: "Front",
  25447. image: {
  25448. source: "./media/characters/alex/front.svg",
  25449. bottom: 44.5 / 620
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Micro",
  25456. height: math.unit(5, "inches")
  25457. },
  25458. {
  25459. name: "Normal",
  25460. height: math.unit(11, "feet"),
  25461. default: true
  25462. },
  25463. {
  25464. name: "Macro",
  25465. height: math.unit(9.5e9, "feet")
  25466. },
  25467. {
  25468. name: "Max Size",
  25469. height: math.unit(1.4e283, "yottameters")
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25475. {
  25476. female: {
  25477. height: math.unit(29.9, "m"),
  25478. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25479. name: "Female",
  25480. image: {
  25481. source: "./media/characters/zenari/female.svg",
  25482. extra: 3281.6 / 3217,
  25483. bottom: 72.2 / 3353
  25484. }
  25485. },
  25486. male: {
  25487. height: math.unit(27.7, "m"),
  25488. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25489. name: "Male",
  25490. image: {
  25491. source: "./media/characters/zenari/male.svg",
  25492. extra: 3008 / 2991,
  25493. bottom: 54.6 / 3069
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Macro",
  25500. height: math.unit(29.7, "meters"),
  25501. default: true
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25507. {
  25508. female: {
  25509. height: math.unit(23.8, "m"),
  25510. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25511. name: "Female",
  25512. image: {
  25513. source: "./media/characters/mactarian/female.svg",
  25514. extra: 2662 / 2569,
  25515. bottom: 73 / 2736
  25516. }
  25517. },
  25518. male: {
  25519. height: math.unit(23.8, "m"),
  25520. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25521. name: "Male",
  25522. image: {
  25523. source: "./media/characters/mactarian/male.svg",
  25524. extra: 2673 / 2600,
  25525. bottom: 76 / 2750
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Macro",
  25532. height: math.unit(23.8, "meters"),
  25533. default: true
  25534. },
  25535. ]
  25536. ))
  25537. characterMakers.push(() => makeCharacter(
  25538. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25539. {
  25540. female: {
  25541. height: math.unit(19.3, "m"),
  25542. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25543. name: "Female",
  25544. image: {
  25545. source: "./media/characters/umok/female.svg",
  25546. extra: 2186 / 2078,
  25547. bottom: 87 / 2277
  25548. }
  25549. },
  25550. male: {
  25551. height: math.unit(19.5, "m"),
  25552. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25553. name: "Male",
  25554. image: {
  25555. source: "./media/characters/umok/male.svg",
  25556. extra: 2233 / 2140,
  25557. bottom: 24.4 / 2258
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Macro",
  25564. height: math.unit(19.3, "meters"),
  25565. default: true
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25571. {
  25572. female: {
  25573. height: math.unit(26.15, "m"),
  25574. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25575. name: "Female",
  25576. image: {
  25577. source: "./media/characters/joraxian/female.svg",
  25578. extra: 2912 / 2824,
  25579. bottom: 36 / 2956
  25580. }
  25581. },
  25582. male: {
  25583. height: math.unit(25.4, "m"),
  25584. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25585. name: "Male",
  25586. image: {
  25587. source: "./media/characters/joraxian/male.svg",
  25588. extra: 2877 / 2721,
  25589. bottom: 82 / 2967
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Macro",
  25596. height: math.unit(26.15, "meters"),
  25597. default: true
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25603. {
  25604. female: {
  25605. height: math.unit(21.6, "m"),
  25606. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25607. name: "Female",
  25608. image: {
  25609. source: "./media/characters/sthara/female.svg",
  25610. extra: 2516 / 2347,
  25611. bottom: 21.5 / 2537
  25612. }
  25613. },
  25614. male: {
  25615. height: math.unit(24, "m"),
  25616. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25617. name: "Male",
  25618. image: {
  25619. source: "./media/characters/sthara/male.svg",
  25620. extra: 2732 / 2607,
  25621. bottom: 23 / 2732
  25622. }
  25623. },
  25624. },
  25625. [
  25626. {
  25627. name: "Macro",
  25628. height: math.unit(21.6, "meters"),
  25629. default: true
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25635. {
  25636. front: {
  25637. height: math.unit(6 + 4 / 12, "feet"),
  25638. weight: math.unit(175, "lb"),
  25639. name: "Front",
  25640. image: {
  25641. source: "./media/characters/luka-bryzant/front.svg",
  25642. extra: 311 / 289,
  25643. bottom: 4 / 315
  25644. }
  25645. },
  25646. back: {
  25647. height: math.unit(6 + 4 / 12, "feet"),
  25648. weight: math.unit(175, "lb"),
  25649. name: "Back",
  25650. image: {
  25651. source: "./media/characters/luka-bryzant/back.svg",
  25652. extra: 311 / 289,
  25653. bottom: 3.8 / 313.7
  25654. }
  25655. },
  25656. },
  25657. [
  25658. {
  25659. name: "Micro",
  25660. height: math.unit(10, "inches")
  25661. },
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(6 + 4 / 12, "feet"),
  25665. default: true
  25666. },
  25667. {
  25668. name: "Large",
  25669. height: math.unit(12, "feet")
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25675. {
  25676. front: {
  25677. height: math.unit(5 + 7 / 12, "feet"),
  25678. weight: math.unit(185, "lb"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/aman-aquila/front.svg",
  25682. extra: 1013 / 976,
  25683. bottom: 45.6 / 1057
  25684. }
  25685. },
  25686. side: {
  25687. height: math.unit(5 + 7 / 12, "feet"),
  25688. weight: math.unit(185, "lb"),
  25689. name: "Side",
  25690. image: {
  25691. source: "./media/characters/aman-aquila/side.svg",
  25692. extra: 1054 / 1011,
  25693. bottom: 15 / 1070
  25694. }
  25695. },
  25696. back: {
  25697. height: math.unit(5 + 7 / 12, "feet"),
  25698. weight: math.unit(185, "lb"),
  25699. name: "Back",
  25700. image: {
  25701. source: "./media/characters/aman-aquila/back.svg",
  25702. extra: 1026 / 970,
  25703. bottom: 12 / 1039
  25704. }
  25705. },
  25706. head: {
  25707. height: math.unit(1.211, "feet"),
  25708. name: "Head",
  25709. image: {
  25710. source: "./media/characters/aman-aquila/head.svg",
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Minimicro",
  25717. height: math.unit(0.057, "inches")
  25718. },
  25719. {
  25720. name: "Micro",
  25721. height: math.unit(7, "inches")
  25722. },
  25723. {
  25724. name: "Mini",
  25725. height: math.unit(3 + 7 / 12, "feet")
  25726. },
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(5 + 7 / 12, "feet"),
  25730. default: true
  25731. },
  25732. {
  25733. name: "Macro",
  25734. height: math.unit(157 + 7 / 12, "feet")
  25735. },
  25736. {
  25737. name: "Megamacro",
  25738. height: math.unit(1557 + 7 / 12, "feet")
  25739. },
  25740. {
  25741. name: "Gigamacro",
  25742. height: math.unit(15557 + 7 / 12, "feet")
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25748. {
  25749. front: {
  25750. height: math.unit(3 + 2 / 12, "inches"),
  25751. weight: math.unit(0.3, "ounces"),
  25752. name: "Front",
  25753. image: {
  25754. source: "./media/characters/hiphae/front.svg",
  25755. extra: 1931 / 1683,
  25756. bottom: 24 / 1955
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(3 + 1 / 2, "inches"),
  25764. default: true
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(5 + 10 / 12, "feet"),
  25773. weight: math.unit(165, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/nicky/front.svg",
  25777. extra: 3144 / 2886,
  25778. bottom: 45.6 / 3192
  25779. }
  25780. },
  25781. back: {
  25782. height: math.unit(5 + 10 / 12, "feet"),
  25783. weight: math.unit(165, "lb"),
  25784. name: "Back",
  25785. image: {
  25786. source: "./media/characters/nicky/back.svg",
  25787. extra: 3055 / 2804,
  25788. bottom: 28.4 / 3087
  25789. }
  25790. },
  25791. frontclothed: {
  25792. height: math.unit(5 + 10 / 12, "feet"),
  25793. weight: math.unit(165, "lb"),
  25794. name: "Front-clothed",
  25795. image: {
  25796. source: "./media/characters/nicky/front-clothed.svg",
  25797. extra: 3184.9 / 2926.9,
  25798. bottom: 86.5 / 3239.9
  25799. }
  25800. },
  25801. foot: {
  25802. height: math.unit(1.16, "feet"),
  25803. name: "Foot",
  25804. image: {
  25805. source: "./media/characters/nicky/foot.svg"
  25806. }
  25807. },
  25808. feet: {
  25809. height: math.unit(1.34, "feet"),
  25810. name: "Feet",
  25811. image: {
  25812. source: "./media/characters/nicky/feet.svg"
  25813. }
  25814. },
  25815. maw: {
  25816. height: math.unit(0.9, "feet"),
  25817. name: "Maw",
  25818. image: {
  25819. source: "./media/characters/nicky/maw.svg"
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(5 + 10 / 12, "feet"),
  25827. default: true
  25828. },
  25829. {
  25830. name: "Macro",
  25831. height: math.unit(60, "feet")
  25832. },
  25833. {
  25834. name: "Megamacro",
  25835. height: math.unit(1, "mile")
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25841. {
  25842. side: {
  25843. height: math.unit(10, "feet"),
  25844. weight: math.unit(600, "lb"),
  25845. name: "Side",
  25846. image: {
  25847. source: "./media/characters/blair/side.svg",
  25848. bottom: 16.6 / 475,
  25849. extra: 458 / 431
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Micro",
  25856. height: math.unit(8, "inches")
  25857. },
  25858. {
  25859. name: "Normal",
  25860. height: math.unit(10, "feet"),
  25861. default: true
  25862. },
  25863. {
  25864. name: "Macro",
  25865. height: math.unit(180, "feet")
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(5 + 4 / 12, "feet"),
  25874. weight: math.unit(125, "lb"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/fisher/front.svg",
  25878. extra: 444 / 390,
  25879. bottom: 2 / 444.8
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Micro",
  25886. height: math.unit(4, "inches")
  25887. },
  25888. {
  25889. name: "Normal",
  25890. height: math.unit(5 + 4 / 12, "feet"),
  25891. default: true
  25892. },
  25893. {
  25894. name: "Macro",
  25895. height: math.unit(100, "feet")
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(6.71, "feet"),
  25904. weight: math.unit(200, "lb"),
  25905. capacity: math.unit(1000000, "people"),
  25906. name: "Front",
  25907. image: {
  25908. source: "./media/characters/gliss/front.svg",
  25909. extra: 2347 / 2231,
  25910. bottom: 113 / 2462
  25911. }
  25912. },
  25913. hammerspaceSize: {
  25914. height: math.unit(6.71 * 717, "feet"),
  25915. weight: math.unit(200, "lb"),
  25916. capacity: math.unit(1000000, "people"),
  25917. name: "Hammerspace Size",
  25918. image: {
  25919. source: "./media/characters/gliss/front.svg",
  25920. extra: 2347 / 2231,
  25921. bottom: 113 / 2462
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "Normal",
  25928. height: math.unit(6.71, "feet"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25935. {
  25936. side: {
  25937. height: math.unit(1.44, "m"),
  25938. weight: math.unit(80, "kg"),
  25939. name: "Side",
  25940. image: {
  25941. source: "./media/characters/dune-anderson/side.svg",
  25942. bottom: 49 / 1426
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Wolf-sized",
  25949. height: math.unit(1.44, "meters")
  25950. },
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(5.05, "meters"),
  25954. default: true
  25955. },
  25956. {
  25957. name: "Big",
  25958. height: math.unit(14.4, "meters")
  25959. },
  25960. {
  25961. name: "Huge",
  25962. height: math.unit(144, "meters")
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(7, "feet"),
  25971. weight: math.unit(425, "lb"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/hind/front.svg",
  25975. extra: 2091 / 1860,
  25976. bottom: 129 / 2220
  25977. }
  25978. },
  25979. back: {
  25980. height: math.unit(7, "feet"),
  25981. weight: math.unit(425, "lb"),
  25982. name: "Back",
  25983. image: {
  25984. source: "./media/characters/hind/back.svg",
  25985. extra: 2091 / 1860,
  25986. bottom: 24.6 / 2309
  25987. }
  25988. },
  25989. tail: {
  25990. height: math.unit(2.8, "feet"),
  25991. name: "Tail",
  25992. image: {
  25993. source: "./media/characters/hind/tail.svg"
  25994. }
  25995. },
  25996. head: {
  25997. height: math.unit(2.55, "feet"),
  25998. name: "Head",
  25999. image: {
  26000. source: "./media/characters/hind/head.svg"
  26001. }
  26002. },
  26003. },
  26004. [
  26005. {
  26006. name: "XS",
  26007. height: math.unit(0.7, "feet")
  26008. },
  26009. {
  26010. name: "Normal",
  26011. height: math.unit(7, "feet"),
  26012. default: true
  26013. },
  26014. {
  26015. name: "XL",
  26016. height: math.unit(70, "feet")
  26017. },
  26018. ]
  26019. ))
  26020. characterMakers.push(() => makeCharacter(
  26021. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26022. {
  26023. front: {
  26024. height: math.unit(2.1, "meters"),
  26025. weight: math.unit(150, "lb"),
  26026. name: "Front",
  26027. image: {
  26028. source: "./media/characters/tharquench-sizestealer/front.svg",
  26029. extra: 1605/1470,
  26030. bottom: 36/1641
  26031. }
  26032. },
  26033. frontAlt: {
  26034. height: math.unit(2.1, "meters"),
  26035. weight: math.unit(150, "lb"),
  26036. name: "Front (Alt)",
  26037. image: {
  26038. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26039. extra: 2318 / 2063,
  26040. bottom: 93.4 / 2410
  26041. }
  26042. },
  26043. },
  26044. [
  26045. {
  26046. name: "Nano",
  26047. height: math.unit(1, "mm")
  26048. },
  26049. {
  26050. name: "Micro",
  26051. height: math.unit(1, "cm")
  26052. },
  26053. {
  26054. name: "Normal",
  26055. height: math.unit(2.1, "meters"),
  26056. default: true
  26057. },
  26058. ]
  26059. ))
  26060. characterMakers.push(() => makeCharacter(
  26061. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26062. {
  26063. front: {
  26064. height: math.unit(7 + 5 / 12, "feet"),
  26065. weight: math.unit(357, "lb"),
  26066. name: "Front",
  26067. image: {
  26068. source: "./media/characters/solex-draconov/front.svg",
  26069. extra: 1993 / 1865,
  26070. bottom: 117 / 2111
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Natural Height",
  26077. height: math.unit(7 + 5 / 12, "feet"),
  26078. default: true
  26079. },
  26080. {
  26081. name: "Macro",
  26082. height: math.unit(350, "feet")
  26083. },
  26084. {
  26085. name: "Macro+",
  26086. height: math.unit(1000, "feet")
  26087. },
  26088. {
  26089. name: "Megamacro",
  26090. height: math.unit(20, "km")
  26091. },
  26092. {
  26093. name: "Megamacro+",
  26094. height: math.unit(1000, "km")
  26095. },
  26096. {
  26097. name: "Gigamacro",
  26098. height: math.unit(2.5, "Gm")
  26099. },
  26100. {
  26101. name: "Teramacro",
  26102. height: math.unit(15, "Tm")
  26103. },
  26104. {
  26105. name: "Galactic",
  26106. height: math.unit(30, "Zm")
  26107. },
  26108. {
  26109. name: "Universal",
  26110. height: math.unit(21000, "Ym")
  26111. },
  26112. {
  26113. name: "Omniversal",
  26114. height: math.unit(9.861e50, "Ym")
  26115. },
  26116. {
  26117. name: "Existential",
  26118. height: math.unit(1e300, "meters")
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26124. {
  26125. side: {
  26126. height: math.unit(25, "feet"),
  26127. weight: math.unit(90000, "lb"),
  26128. name: "Side",
  26129. image: {
  26130. source: "./media/characters/mandarax/side.svg",
  26131. extra: 614 / 332,
  26132. bottom: 55 / 630
  26133. }
  26134. },
  26135. lounging: {
  26136. height: math.unit(15.4, "feet"),
  26137. weight: math.unit(90000, "lb"),
  26138. name: "Lounging",
  26139. image: {
  26140. source: "./media/characters/mandarax/lounging.svg",
  26141. extra: 817/609,
  26142. bottom: 685/1502
  26143. }
  26144. },
  26145. head: {
  26146. height: math.unit(11.4, "feet"),
  26147. name: "Head",
  26148. image: {
  26149. source: "./media/characters/mandarax/head.svg"
  26150. }
  26151. },
  26152. belly: {
  26153. height: math.unit(33, "feet"),
  26154. name: "Belly",
  26155. capacity: math.unit(500, "people"),
  26156. image: {
  26157. source: "./media/characters/mandarax/belly.svg"
  26158. }
  26159. },
  26160. dick: {
  26161. height: math.unit(8.46, "feet"),
  26162. name: "Dick",
  26163. image: {
  26164. source: "./media/characters/mandarax/dick.svg"
  26165. }
  26166. },
  26167. top: {
  26168. height: math.unit(28, "meters"),
  26169. name: "Top",
  26170. image: {
  26171. source: "./media/characters/mandarax/top.svg"
  26172. }
  26173. },
  26174. },
  26175. [
  26176. {
  26177. name: "Normal",
  26178. height: math.unit(25, "feet"),
  26179. default: true
  26180. },
  26181. ]
  26182. ))
  26183. characterMakers.push(() => makeCharacter(
  26184. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26185. {
  26186. front: {
  26187. height: math.unit(5, "feet"),
  26188. weight: math.unit(90, "lb"),
  26189. name: "Front",
  26190. image: {
  26191. source: "./media/characters/pixil/front.svg",
  26192. extra: 2000 / 1618,
  26193. bottom: 12.3 / 2011
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(5, "feet"),
  26201. default: true
  26202. },
  26203. {
  26204. name: "Megamacro",
  26205. height: math.unit(10, "miles"),
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26211. {
  26212. front: {
  26213. height: math.unit(7 + 2 / 12, "feet"),
  26214. weight: math.unit(200, "lb"),
  26215. name: "Front",
  26216. image: {
  26217. source: "./media/characters/angel/front.svg",
  26218. extra: 1830 / 1737,
  26219. bottom: 22.6 / 1854,
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Normal",
  26226. height: math.unit(7 + 2 / 12, "feet"),
  26227. default: true
  26228. },
  26229. {
  26230. name: "Macro",
  26231. height: math.unit(1000, "feet")
  26232. },
  26233. {
  26234. name: "Megamacro",
  26235. height: math.unit(2, "miles")
  26236. },
  26237. {
  26238. name: "Gigamacro",
  26239. height: math.unit(20, "earths")
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26245. {
  26246. front: {
  26247. height: math.unit(5, "feet"),
  26248. weight: math.unit(180, "lb"),
  26249. name: "Front",
  26250. image: {
  26251. source: "./media/characters/mekana/front.svg",
  26252. extra: 1671 / 1605,
  26253. bottom: 3.5 / 1691
  26254. }
  26255. },
  26256. side: {
  26257. height: math.unit(5, "feet"),
  26258. weight: math.unit(180, "lb"),
  26259. name: "Side",
  26260. image: {
  26261. source: "./media/characters/mekana/side.svg",
  26262. extra: 1671 / 1605,
  26263. bottom: 3.5 / 1691
  26264. }
  26265. },
  26266. back: {
  26267. height: math.unit(5, "feet"),
  26268. weight: math.unit(180, "lb"),
  26269. name: "Back",
  26270. image: {
  26271. source: "./media/characters/mekana/back.svg",
  26272. extra: 1671 / 1605,
  26273. bottom: 3.5 / 1691
  26274. }
  26275. },
  26276. },
  26277. [
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(5, "feet"),
  26281. default: true
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(4 + 6 / 12, "feet"),
  26290. weight: math.unit(80, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/pixie/front.svg",
  26294. extra: 1924 / 1825,
  26295. bottom: 22.4 / 1946
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(4 + 6 / 12, "feet"),
  26303. default: true
  26304. },
  26305. {
  26306. name: "Macro",
  26307. height: math.unit(40, "feet")
  26308. },
  26309. ]
  26310. ))
  26311. characterMakers.push(() => makeCharacter(
  26312. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26313. {
  26314. front: {
  26315. height: math.unit(2.1, "meters"),
  26316. weight: math.unit(200, "lb"),
  26317. name: "Front",
  26318. image: {
  26319. source: "./media/characters/the-lascivious/front.svg",
  26320. extra: 1 / 0.893,
  26321. bottom: 3.5 / 573.7
  26322. }
  26323. },
  26324. },
  26325. [
  26326. {
  26327. name: "Human Scale",
  26328. height: math.unit(2.1, "meters")
  26329. },
  26330. {
  26331. name: "Wolxi Scale",
  26332. height: math.unit(46.2, "m"),
  26333. default: true
  26334. },
  26335. {
  26336. name: "Boinker of Buildings",
  26337. height: math.unit(10, "km")
  26338. },
  26339. {
  26340. name: "Shagger of Skyscrapers",
  26341. height: math.unit(40, "km")
  26342. },
  26343. {
  26344. name: "Banger of Boroughs",
  26345. height: math.unit(4000, "km")
  26346. },
  26347. {
  26348. name: "Screwer of States",
  26349. height: math.unit(100000, "km")
  26350. },
  26351. {
  26352. name: "Pounder of Planets",
  26353. height: math.unit(2000000, "km")
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(6, "feet"),
  26362. weight: math.unit(150, "lb"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/aj/front.svg",
  26366. extra: 2039 / 1562,
  26367. bottom: 40 / 2079
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Normal",
  26374. height: math.unit(11 + 6 / 12, "feet"),
  26375. default: true
  26376. },
  26377. {
  26378. name: "Megamacro",
  26379. height: math.unit(60, "megameters")
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26385. {
  26386. side: {
  26387. height: math.unit(31 + 8 / 12, "feet"),
  26388. weight: math.unit(75000, "kg"),
  26389. name: "Side",
  26390. image: {
  26391. source: "./media/characters/koros/side.svg",
  26392. extra: 1442 / 1297,
  26393. bottom: 122.7 / 1562
  26394. }
  26395. },
  26396. dicksKingsCrown: {
  26397. height: math.unit(6, "feet"),
  26398. name: "Dicks (King's Crown)",
  26399. image: {
  26400. source: "./media/characters/koros/dicks-kings-crown.svg"
  26401. }
  26402. },
  26403. dicksTailSet: {
  26404. height: math.unit(3, "feet"),
  26405. name: "Dicks (Tail Set)",
  26406. image: {
  26407. source: "./media/characters/koros/dicks-tail-set.svg"
  26408. }
  26409. },
  26410. dickCumming: {
  26411. height: math.unit(7.98, "feet"),
  26412. name: "Dick (Cumming)",
  26413. image: {
  26414. source: "./media/characters/koros/dick-cumming.svg"
  26415. }
  26416. },
  26417. dicksBack: {
  26418. height: math.unit(5.9, "feet"),
  26419. name: "Dicks (Back)",
  26420. image: {
  26421. source: "./media/characters/koros/dicks-back.svg"
  26422. }
  26423. },
  26424. dicksFront: {
  26425. height: math.unit(3.72, "feet"),
  26426. name: "Dicks (Front)",
  26427. image: {
  26428. source: "./media/characters/koros/dicks-front.svg"
  26429. }
  26430. },
  26431. dicksPeeking: {
  26432. height: math.unit(3.0, "feet"),
  26433. name: "Dicks (Peeking)",
  26434. image: {
  26435. source: "./media/characters/koros/dicks-peeking.svg"
  26436. }
  26437. },
  26438. eye: {
  26439. height: math.unit(1.7, "feet"),
  26440. name: "Eye",
  26441. image: {
  26442. source: "./media/characters/koros/eye.svg"
  26443. }
  26444. },
  26445. headFront: {
  26446. height: math.unit(11.69, "feet"),
  26447. name: "Head (Front)",
  26448. image: {
  26449. source: "./media/characters/koros/head-front.svg"
  26450. }
  26451. },
  26452. headSide: {
  26453. height: math.unit(14, "feet"),
  26454. name: "Head (Side)",
  26455. image: {
  26456. source: "./media/characters/koros/head-side.svg"
  26457. }
  26458. },
  26459. leg: {
  26460. height: math.unit(17, "feet"),
  26461. name: "Leg",
  26462. image: {
  26463. source: "./media/characters/koros/leg.svg"
  26464. }
  26465. },
  26466. mawSide: {
  26467. height: math.unit(12.8, "feet"),
  26468. name: "Maw (Side)",
  26469. image: {
  26470. source: "./media/characters/koros/maw-side.svg"
  26471. }
  26472. },
  26473. mawSpitting: {
  26474. height: math.unit(17, "feet"),
  26475. name: "Maw (Spitting)",
  26476. image: {
  26477. source: "./media/characters/koros/maw-spitting.svg"
  26478. }
  26479. },
  26480. slit: {
  26481. height: math.unit(2.8, "feet"),
  26482. name: "Slit",
  26483. image: {
  26484. source: "./media/characters/koros/slit.svg"
  26485. }
  26486. },
  26487. stomach: {
  26488. height: math.unit(6.8, "feet"),
  26489. capacity: math.unit(20, "people"),
  26490. name: "Stomach",
  26491. image: {
  26492. source: "./media/characters/koros/stomach.svg"
  26493. }
  26494. },
  26495. wingspanBottom: {
  26496. height: math.unit(114, "feet"),
  26497. name: "Wingspan (Bottom)",
  26498. image: {
  26499. source: "./media/characters/koros/wingspan-bottom.svg"
  26500. }
  26501. },
  26502. wingspanTop: {
  26503. height: math.unit(104, "feet"),
  26504. name: "Wingspan (Top)",
  26505. image: {
  26506. source: "./media/characters/koros/wingspan-top.svg"
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Normal",
  26513. height: math.unit(31 + 8 / 12, "feet"),
  26514. default: true
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(18 + 5 / 12, "feet"),
  26523. weight: math.unit(3750, "kg"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/vexx/front.svg",
  26527. extra: 426 / 396,
  26528. bottom: 31.5 / 458
  26529. }
  26530. },
  26531. maw: {
  26532. height: math.unit(6, "feet"),
  26533. name: "Maw",
  26534. image: {
  26535. source: "./media/characters/vexx/maw.svg"
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(18 + 5 / 12, "feet"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(17 + 6 / 12, "feet"),
  26552. weight: math.unit(150, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/baadra/front.svg",
  26556. extra: 1694/1553,
  26557. bottom: 179/1873
  26558. }
  26559. },
  26560. frontAlt: {
  26561. height: math.unit(17 + 6 / 12, "feet"),
  26562. weight: math.unit(150, "lb"),
  26563. name: "Front (Alt)",
  26564. image: {
  26565. source: "./media/characters/baadra/front-alt.svg",
  26566. extra: 3137 / 2890,
  26567. bottom: 168.4 / 3305
  26568. }
  26569. },
  26570. back: {
  26571. height: math.unit(17 + 6 / 12, "feet"),
  26572. weight: math.unit(150, "lb"),
  26573. name: "Back",
  26574. image: {
  26575. source: "./media/characters/baadra/back.svg",
  26576. extra: 3142 / 2890,
  26577. bottom: 220 / 3371
  26578. }
  26579. },
  26580. head: {
  26581. height: math.unit(5.45, "feet"),
  26582. name: "Head",
  26583. image: {
  26584. source: "./media/characters/baadra/head.svg"
  26585. }
  26586. },
  26587. headAngry: {
  26588. height: math.unit(4.95, "feet"),
  26589. name: "Head (Angry)",
  26590. image: {
  26591. source: "./media/characters/baadra/head-angry.svg"
  26592. }
  26593. },
  26594. headOpen: {
  26595. height: math.unit(6, "feet"),
  26596. name: "Head (Open)",
  26597. image: {
  26598. source: "./media/characters/baadra/head-open.svg"
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Normal",
  26605. height: math.unit(17 + 6 / 12, "feet"),
  26606. default: true
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(7 + 3 / 12, "feet"),
  26615. weight: math.unit(180, "lb"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/juri/front.svg",
  26619. extra: 1401 / 1237,
  26620. bottom: 18.5 / 1418
  26621. }
  26622. },
  26623. side: {
  26624. height: math.unit(7 + 3 / 12, "feet"),
  26625. weight: math.unit(180, "lb"),
  26626. name: "Side",
  26627. image: {
  26628. source: "./media/characters/juri/side.svg",
  26629. extra: 1424 / 1242,
  26630. bottom: 18.5 / 1447
  26631. }
  26632. },
  26633. sitting: {
  26634. height: math.unit(6, "feet"),
  26635. weight: math.unit(180, "lb"),
  26636. name: "Sitting",
  26637. image: {
  26638. source: "./media/characters/juri/sitting.svg",
  26639. extra: 1270 / 1143,
  26640. bottom: 100 / 1343
  26641. }
  26642. },
  26643. back: {
  26644. height: math.unit(7 + 3 / 12, "feet"),
  26645. weight: math.unit(180, "lb"),
  26646. name: "Back",
  26647. image: {
  26648. source: "./media/characters/juri/back.svg",
  26649. extra: 1377 / 1240,
  26650. bottom: 23.7 / 1405
  26651. }
  26652. },
  26653. maw: {
  26654. height: math.unit(2.8, "feet"),
  26655. name: "Maw",
  26656. image: {
  26657. source: "./media/characters/juri/maw.svg"
  26658. }
  26659. },
  26660. stomach: {
  26661. height: math.unit(0.89, "feet"),
  26662. capacity: math.unit(4, "liters"),
  26663. name: "Stomach",
  26664. image: {
  26665. source: "./media/characters/juri/stomach.svg"
  26666. }
  26667. },
  26668. },
  26669. [
  26670. {
  26671. name: "Normal",
  26672. height: math.unit(7 + 3 / 12, "feet"),
  26673. default: true
  26674. },
  26675. ]
  26676. ))
  26677. characterMakers.push(() => makeCharacter(
  26678. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26679. {
  26680. fox: {
  26681. height: math.unit(5 + 6 / 12, "feet"),
  26682. weight: math.unit(140, "lb"),
  26683. name: "Fox",
  26684. image: {
  26685. source: "./media/characters/maxene-sita/fox.svg",
  26686. extra: 146 / 138,
  26687. bottom: 2.1 / 148.19
  26688. }
  26689. },
  26690. foxLaying: {
  26691. height: math.unit(1.70, "feet"),
  26692. weight: math.unit(140, "lb"),
  26693. name: "Fox (Laying)",
  26694. image: {
  26695. source: "./media/characters/maxene-sita/fox-laying.svg",
  26696. extra: 910 / 572,
  26697. bottom: 71 / 981
  26698. }
  26699. },
  26700. kitsune: {
  26701. height: math.unit(10, "feet"),
  26702. weight: math.unit(800, "lb"),
  26703. name: "Kitsune",
  26704. image: {
  26705. source: "./media/characters/maxene-sita/kitsune.svg",
  26706. extra: 185 / 176,
  26707. bottom: 4.7 / 189.9
  26708. }
  26709. },
  26710. hellhound: {
  26711. height: math.unit(10, "feet"),
  26712. weight: math.unit(700, "lb"),
  26713. name: "Hellhound",
  26714. image: {
  26715. source: "./media/characters/maxene-sita/hellhound.svg",
  26716. extra: 1600 / 1545,
  26717. bottom: 81 / 1681
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(5 + 6 / 12, "feet"),
  26725. default: true
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26731. {
  26732. front: {
  26733. height: math.unit(3 + 4 / 12, "feet"),
  26734. weight: math.unit(70, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/maia/front.svg",
  26738. extra: 227 / 219.5,
  26739. bottom: 40 / 267
  26740. }
  26741. },
  26742. back: {
  26743. height: math.unit(3 + 4 / 12, "feet"),
  26744. weight: math.unit(70, "lb"),
  26745. name: "Back",
  26746. image: {
  26747. source: "./media/characters/maia/back.svg",
  26748. extra: 237 / 225
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Normal",
  26755. height: math.unit(3 + 4 / 12, "feet"),
  26756. default: true
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(5 + 10 / 12, "feet"),
  26765. weight: math.unit(197, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/jabaro/front.svg",
  26769. extra: 225 / 216,
  26770. bottom: 5.06 / 230
  26771. }
  26772. },
  26773. back: {
  26774. height: math.unit(5 + 10 / 12, "feet"),
  26775. weight: math.unit(197, "lb"),
  26776. name: "Back",
  26777. image: {
  26778. source: "./media/characters/jabaro/back.svg",
  26779. extra: 225 / 219,
  26780. bottom: 1.9 / 227
  26781. }
  26782. },
  26783. },
  26784. [
  26785. {
  26786. name: "Normal",
  26787. height: math.unit(5 + 10 / 12, "feet"),
  26788. default: true
  26789. },
  26790. ]
  26791. ))
  26792. characterMakers.push(() => makeCharacter(
  26793. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26794. {
  26795. front: {
  26796. height: math.unit(5 + 8 / 12, "feet"),
  26797. weight: math.unit(139, "lb"),
  26798. name: "Front",
  26799. image: {
  26800. source: "./media/characters/risa/front.svg",
  26801. extra: 270 / 260,
  26802. bottom: 11.2 / 282
  26803. }
  26804. },
  26805. back: {
  26806. height: math.unit(5 + 8 / 12, "feet"),
  26807. weight: math.unit(139, "lb"),
  26808. name: "Back",
  26809. image: {
  26810. source: "./media/characters/risa/back.svg",
  26811. extra: 264 / 255,
  26812. bottom: 4 / 268
  26813. }
  26814. },
  26815. },
  26816. [
  26817. {
  26818. name: "Normal",
  26819. height: math.unit(5 + 8 / 12, "feet"),
  26820. default: true
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26826. {
  26827. front: {
  26828. height: math.unit(2 + 11 / 12, "feet"),
  26829. weight: math.unit(30, "lb"),
  26830. name: "Front",
  26831. image: {
  26832. source: "./media/characters/weatley/front.svg",
  26833. bottom: 10.7 / 414,
  26834. extra: 403.5 / 362
  26835. }
  26836. },
  26837. back: {
  26838. height: math.unit(2 + 11 / 12, "feet"),
  26839. weight: math.unit(30, "lb"),
  26840. name: "Back",
  26841. image: {
  26842. source: "./media/characters/weatley/back.svg",
  26843. bottom: 10.7 / 414,
  26844. extra: 403.5 / 362
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(2 + 11 / 12, "feet"),
  26852. default: true
  26853. },
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26858. {
  26859. front: {
  26860. height: math.unit(5 + 2 / 12, "feet"),
  26861. weight: math.unit(50, "kg"),
  26862. name: "Front",
  26863. image: {
  26864. source: "./media/characters/mercury-crescent/front.svg",
  26865. extra: 1088 / 1033,
  26866. bottom: 18.9 / 1109
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(5 + 2 / 12, "feet"),
  26874. default: true
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(2, "feet"),
  26883. weight: math.unit(15, "kg"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/diamond-jones/front.svg",
  26887. extra: 727/723,
  26888. bottom: 46/773
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(2, "feet"),
  26896. default: true
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26902. {
  26903. front: {
  26904. height: math.unit(3, "feet"),
  26905. weight: math.unit(30, "kg"),
  26906. name: "Front",
  26907. image: {
  26908. source: "./media/characters/sweet-bit/front.svg",
  26909. extra: 675 / 567,
  26910. bottom: 27.7 / 703
  26911. }
  26912. },
  26913. },
  26914. [
  26915. {
  26916. name: "Normal",
  26917. height: math.unit(3, "feet"),
  26918. default: true
  26919. },
  26920. ]
  26921. ))
  26922. characterMakers.push(() => makeCharacter(
  26923. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26924. {
  26925. side: {
  26926. height: math.unit(9.178, "feet"),
  26927. weight: math.unit(500, "lb"),
  26928. name: "Side",
  26929. image: {
  26930. source: "./media/characters/umbrazen/side.svg",
  26931. extra: 1730 / 1473,
  26932. bottom: 34.6 / 1765
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Normal",
  26939. height: math.unit(9.178, "feet"),
  26940. default: true
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(10, "feet"),
  26949. weight: math.unit(750, "lb"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/arlist/front.svg",
  26953. extra: 961 / 778,
  26954. bottom: 6.2 / 986
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(10, "feet"),
  26962. default: true
  26963. },
  26964. ]
  26965. ))
  26966. characterMakers.push(() => makeCharacter(
  26967. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26968. {
  26969. front: {
  26970. height: math.unit(5 + 1 / 12, "feet"),
  26971. weight: math.unit(110, "lb"),
  26972. name: "Front",
  26973. image: {
  26974. source: "./media/characters/aradel/front.svg",
  26975. extra: 324 / 303,
  26976. bottom: 3.6 / 329.4
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Normal",
  26983. height: math.unit(5 + 1 / 12, "feet"),
  26984. default: true
  26985. },
  26986. ]
  26987. ))
  26988. characterMakers.push(() => makeCharacter(
  26989. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26990. {
  26991. dressed: {
  26992. height: math.unit(3 + 8 / 12, "feet"),
  26993. weight: math.unit(50, "lb"),
  26994. name: "Dressed",
  26995. image: {
  26996. source: "./media/characters/serryn/dressed.svg",
  26997. extra: 1792 / 1656,
  26998. bottom: 43.5 / 1840
  26999. }
  27000. },
  27001. nude: {
  27002. height: math.unit(3 + 8 / 12, "feet"),
  27003. weight: math.unit(50, "lb"),
  27004. name: "Nude",
  27005. image: {
  27006. source: "./media/characters/serryn/nude.svg",
  27007. extra: 1792 / 1656,
  27008. bottom: 43.5 / 1840
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(3 + 8 / 12, "feet"),
  27016. default: true
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(7 + 10 / 12, "feet"),
  27025. weight: math.unit(255, "lb"),
  27026. name: "Front",
  27027. image: {
  27028. source: "./media/characters/xavier-thyme/front.svg",
  27029. extra: 3733 / 3642,
  27030. bottom: 131 / 3869
  27031. }
  27032. },
  27033. frontRaven: {
  27034. height: math.unit(7 + 10 / 12, "feet"),
  27035. weight: math.unit(255, "lb"),
  27036. name: "Front (Raven)",
  27037. image: {
  27038. source: "./media/characters/xavier-thyme/front-raven.svg",
  27039. extra: 4385 / 3642,
  27040. bottom: 131 / 4517
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Normal",
  27047. height: math.unit(7 + 10 / 12, "feet"),
  27048. default: true
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27054. {
  27055. front: {
  27056. height: math.unit(1.6, "m"),
  27057. weight: math.unit(50, "kg"),
  27058. name: "Front",
  27059. image: {
  27060. source: "./media/characters/kiki/front.svg",
  27061. extra: 4682 / 3610,
  27062. bottom: 115 / 4777
  27063. }
  27064. },
  27065. },
  27066. [
  27067. {
  27068. name: "Normal",
  27069. height: math.unit(1.6, "meters"),
  27070. default: true
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27076. {
  27077. front: {
  27078. height: math.unit(50, "m"),
  27079. weight: math.unit(500, "tonnes"),
  27080. name: "Front",
  27081. image: {
  27082. source: "./media/characters/ryoko/front.svg",
  27083. extra: 4632 / 3926,
  27084. bottom: 193 / 4823
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(50, "meters"),
  27092. default: true
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(30, "m"),
  27101. weight: math.unit(22, "tonnes"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/elio/front.svg",
  27105. extra: 4582 / 3720,
  27106. bottom: 236 / 4828
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(30, "meters"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(6 + 3 / 12, "feet"),
  27123. weight: math.unit(120, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/azura/front.svg",
  27127. extra: 1149 / 1135,
  27128. bottom: 45 / 1194
  27129. }
  27130. },
  27131. frontClothed: {
  27132. height: math.unit(6 + 3 / 12, "feet"),
  27133. weight: math.unit(120, "lb"),
  27134. name: "Front (Clothed)",
  27135. image: {
  27136. source: "./media/characters/azura/front-clothed.svg",
  27137. extra: 1149 / 1135,
  27138. bottom: 45 / 1194
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Normal",
  27145. height: math.unit(6 + 3 / 12, "feet"),
  27146. default: true
  27147. },
  27148. {
  27149. name: "Macro",
  27150. height: math.unit(20 + 6 / 12, "feet")
  27151. },
  27152. {
  27153. name: "Megamacro",
  27154. height: math.unit(12, "miles")
  27155. },
  27156. {
  27157. name: "Gigamacro",
  27158. height: math.unit(10000, "miles")
  27159. },
  27160. {
  27161. name: "Teramacro",
  27162. height: math.unit(900000, "miles")
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(12, "feet"),
  27171. weight: math.unit(1, "ton"),
  27172. capacity: math.unit(660000, "gallons"),
  27173. name: "Front",
  27174. image: {
  27175. source: "./media/characters/zeus/front.svg",
  27176. extra: 5005 / 4717,
  27177. bottom: 363 / 5388
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Normal",
  27184. height: math.unit(12, "feet")
  27185. },
  27186. {
  27187. name: "Preferred Size",
  27188. height: math.unit(0.5, "miles"),
  27189. default: true
  27190. },
  27191. {
  27192. name: "Giga Horse",
  27193. height: math.unit(300, "miles")
  27194. },
  27195. {
  27196. name: "Riding Planets",
  27197. height: math.unit(30, "megameters")
  27198. },
  27199. {
  27200. name: "Cosmic Giant",
  27201. height: math.unit(3, "zettameters")
  27202. },
  27203. {
  27204. name: "Breeding God",
  27205. height: math.unit(9.92e22, "yottameters")
  27206. },
  27207. ]
  27208. ))
  27209. characterMakers.push(() => makeCharacter(
  27210. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27211. {
  27212. side: {
  27213. height: math.unit(9, "feet"),
  27214. weight: math.unit(1500, "kg"),
  27215. name: "Side",
  27216. image: {
  27217. source: "./media/characters/fang/side.svg",
  27218. extra: 924 / 866,
  27219. bottom: 47.5 / 972.3
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(9, "feet"),
  27227. default: true
  27228. },
  27229. {
  27230. name: "Macro",
  27231. height: math.unit(75 + 6 / 12, "feet")
  27232. },
  27233. {
  27234. name: "Teramacro",
  27235. height: math.unit(50000, "miles")
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27241. {
  27242. front: {
  27243. height: math.unit(10, "feet"),
  27244. weight: math.unit(2, "tons"),
  27245. name: "Front",
  27246. image: {
  27247. source: "./media/characters/rekhit/front.svg",
  27248. extra: 2796 / 2590,
  27249. bottom: 225 / 3022
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(10, "feet"),
  27257. default: true
  27258. },
  27259. {
  27260. name: "Macro",
  27261. height: math.unit(500, "feet")
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(7 + 6.451 / 12, "feet"),
  27270. weight: math.unit(310, "lb"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/dahlia-verrick/front.svg",
  27274. extra: 1488 / 1365,
  27275. bottom: 6.2 / 1495
  27276. }
  27277. },
  27278. back: {
  27279. height: math.unit(7 + 6.451 / 12, "feet"),
  27280. weight: math.unit(310, "lb"),
  27281. name: "Back",
  27282. image: {
  27283. source: "./media/characters/dahlia-verrick/back.svg",
  27284. extra: 1472 / 1351,
  27285. bottom: 5.28 / 1477
  27286. }
  27287. },
  27288. frontBusiness: {
  27289. height: math.unit(7 + 6.451 / 12, "feet"),
  27290. weight: math.unit(200, "lb"),
  27291. name: "Front (Business)",
  27292. image: {
  27293. source: "./media/characters/dahlia-verrick/front-business.svg",
  27294. extra: 1478 / 1381,
  27295. bottom: 5.5 / 1484
  27296. }
  27297. },
  27298. frontCasual: {
  27299. height: math.unit(7 + 6.451 / 12, "feet"),
  27300. weight: math.unit(200, "lb"),
  27301. name: "Front (Casual)",
  27302. image: {
  27303. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27304. extra: 1478 / 1381,
  27305. bottom: 5.5 / 1484
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Travel-Sized",
  27312. height: math.unit(7.45, "inches")
  27313. },
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(7 + 6.451 / 12, "feet"),
  27317. default: true
  27318. },
  27319. {
  27320. name: "Hitting the Town",
  27321. height: math.unit(37 + 8 / 12, "feet")
  27322. },
  27323. {
  27324. name: "Stomp in the Suburbs",
  27325. height: math.unit(964 + 9.728 / 12, "feet")
  27326. },
  27327. {
  27328. name: "Sit on the City",
  27329. height: math.unit(61747 + 10.592 / 12, "feet")
  27330. },
  27331. {
  27332. name: "Glomp the Globe",
  27333. height: math.unit(252919327 + 4.832 / 12, "feet")
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27339. {
  27340. front: {
  27341. height: math.unit(6 + 4 / 12, "feet"),
  27342. weight: math.unit(320, "lb"),
  27343. name: "Front",
  27344. image: {
  27345. source: "./media/characters/balina-mahigan/front.svg",
  27346. extra: 447 / 428,
  27347. bottom: 18 / 466
  27348. }
  27349. },
  27350. back: {
  27351. height: math.unit(6 + 4 / 12, "feet"),
  27352. weight: math.unit(320, "lb"),
  27353. name: "Back",
  27354. image: {
  27355. source: "./media/characters/balina-mahigan/back.svg",
  27356. extra: 445 / 428,
  27357. bottom: 4.07 / 448
  27358. }
  27359. },
  27360. arm: {
  27361. height: math.unit(1.88, "feet"),
  27362. name: "Arm",
  27363. image: {
  27364. source: "./media/characters/balina-mahigan/arm.svg"
  27365. }
  27366. },
  27367. backPort: {
  27368. height: math.unit(0.685, "feet"),
  27369. name: "Back Port",
  27370. image: {
  27371. source: "./media/characters/balina-mahigan/back-port.svg"
  27372. }
  27373. },
  27374. hoofpaw: {
  27375. height: math.unit(1.41, "feet"),
  27376. name: "Hoofpaw",
  27377. image: {
  27378. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27379. }
  27380. },
  27381. leftHandBack: {
  27382. height: math.unit(0.938, "feet"),
  27383. name: "Left Hand (Back)",
  27384. image: {
  27385. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27386. }
  27387. },
  27388. leftHandFront: {
  27389. height: math.unit(0.938, "feet"),
  27390. name: "Left Hand (Front)",
  27391. image: {
  27392. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27393. }
  27394. },
  27395. rightHandBack: {
  27396. height: math.unit(0.95, "feet"),
  27397. name: "Right Hand (Back)",
  27398. image: {
  27399. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27400. }
  27401. },
  27402. rightHandFront: {
  27403. height: math.unit(0.95, "feet"),
  27404. name: "Right Hand (Front)",
  27405. image: {
  27406. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Normal",
  27413. height: math.unit(6 + 4 / 12, "feet"),
  27414. default: true
  27415. },
  27416. ]
  27417. ))
  27418. characterMakers.push(() => makeCharacter(
  27419. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27420. {
  27421. front: {
  27422. height: math.unit(6, "feet"),
  27423. weight: math.unit(320, "lb"),
  27424. name: "Front",
  27425. image: {
  27426. source: "./media/characters/balina-mejeri/front.svg",
  27427. extra: 517 / 488,
  27428. bottom: 44.2 / 561
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(6 + 4 / 12, "feet")
  27436. },
  27437. {
  27438. name: "Business",
  27439. height: math.unit(155, "feet"),
  27440. default: true
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27446. {
  27447. kneeling: {
  27448. height: math.unit(6 + 4 / 12, "feet"),
  27449. weight: math.unit(300 * 20, "lb"),
  27450. name: "Kneeling",
  27451. image: {
  27452. source: "./media/characters/balbarian/kneeling.svg",
  27453. extra: 922 / 862,
  27454. bottom: 42.4 / 965
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(6 + 4 / 12, "feet")
  27462. },
  27463. {
  27464. name: "Treasured",
  27465. height: math.unit(18 + 9 / 12, "feet"),
  27466. default: true
  27467. },
  27468. {
  27469. name: "Macro",
  27470. height: math.unit(900, "feet")
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27476. {
  27477. front: {
  27478. height: math.unit(6 + 4 / 12, "feet"),
  27479. weight: math.unit(325, "lb"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/balina-amarini/front.svg",
  27483. extra: 415 / 403,
  27484. bottom: 19 / 433.4
  27485. }
  27486. },
  27487. back: {
  27488. height: math.unit(6 + 4 / 12, "feet"),
  27489. weight: math.unit(325, "lb"),
  27490. name: "Back",
  27491. image: {
  27492. source: "./media/characters/balina-amarini/back.svg",
  27493. extra: 415 / 403,
  27494. bottom: 13.5 / 432
  27495. }
  27496. },
  27497. overdrive: {
  27498. height: math.unit(6 + 4 / 12, "feet"),
  27499. weight: math.unit(400, "lb"),
  27500. name: "Overdrive",
  27501. image: {
  27502. source: "./media/characters/balina-amarini/overdrive.svg",
  27503. extra: 269 / 259,
  27504. bottom: 12 / 282
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Boom",
  27511. height: math.unit(9 + 10 / 12, "feet"),
  27512. default: true
  27513. },
  27514. {
  27515. name: "Macro",
  27516. height: math.unit(280, "feet")
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27522. {
  27523. goddess: {
  27524. height: math.unit(600, "feet"),
  27525. weight: math.unit(2000000, "tons"),
  27526. name: "Goddess",
  27527. image: {
  27528. source: "./media/characters/lady-kubwa/goddess.svg",
  27529. extra: 1240.5 / 1223,
  27530. bottom: 22 / 1263
  27531. }
  27532. },
  27533. goddesser: {
  27534. height: math.unit(900, "feet"),
  27535. weight: math.unit(20000000, "lb"),
  27536. name: "Goddess-er",
  27537. image: {
  27538. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27539. extra: 899 / 888,
  27540. bottom: 12.6 / 912
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Macro",
  27547. height: math.unit(600, "feet"),
  27548. default: true
  27549. },
  27550. {
  27551. name: "Megamacro",
  27552. height: math.unit(250, "miles")
  27553. },
  27554. ]
  27555. ))
  27556. characterMakers.push(() => makeCharacter(
  27557. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27558. {
  27559. front: {
  27560. height: math.unit(7 + 7 / 12, "feet"),
  27561. weight: math.unit(250, "lb"),
  27562. name: "Front",
  27563. image: {
  27564. source: "./media/characters/tala-grovehorn/front.svg",
  27565. extra: 2636 / 2525,
  27566. bottom: 147 / 2781
  27567. }
  27568. },
  27569. back: {
  27570. height: math.unit(7 + 7 / 12, "feet"),
  27571. weight: math.unit(250, "lb"),
  27572. name: "Back",
  27573. image: {
  27574. source: "./media/characters/tala-grovehorn/back.svg",
  27575. extra: 2635 / 2539,
  27576. bottom: 100 / 2732.8
  27577. }
  27578. },
  27579. mouth: {
  27580. height: math.unit(1.15, "feet"),
  27581. name: "Mouth",
  27582. image: {
  27583. source: "./media/characters/tala-grovehorn/mouth.svg"
  27584. }
  27585. },
  27586. dick: {
  27587. height: math.unit(2.36, "feet"),
  27588. name: "Dick",
  27589. image: {
  27590. source: "./media/characters/tala-grovehorn/dick.svg"
  27591. }
  27592. },
  27593. slit: {
  27594. height: math.unit(0.61, "feet"),
  27595. name: "Slit",
  27596. image: {
  27597. source: "./media/characters/tala-grovehorn/slit.svg"
  27598. }
  27599. },
  27600. },
  27601. [
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27606. {
  27607. front: {
  27608. height: math.unit(7 + 7 / 12, "feet"),
  27609. weight: math.unit(225, "lb"),
  27610. name: "Front",
  27611. image: {
  27612. source: "./media/characters/epona/front.svg",
  27613. extra: 2445 / 2290,
  27614. bottom: 251 / 2696
  27615. }
  27616. },
  27617. back: {
  27618. height: math.unit(7 + 7 / 12, "feet"),
  27619. weight: math.unit(225, "lb"),
  27620. name: "Back",
  27621. image: {
  27622. source: "./media/characters/epona/back.svg",
  27623. extra: 2546 / 2408,
  27624. bottom: 44 / 2589
  27625. }
  27626. },
  27627. genitals: {
  27628. height: math.unit(1.5, "feet"),
  27629. name: "Genitals",
  27630. image: {
  27631. source: "./media/characters/epona/genitals.svg"
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Normal",
  27638. height: math.unit(7 + 7 / 12, "feet"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27645. {
  27646. front: {
  27647. height: math.unit(7, "feet"),
  27648. weight: math.unit(518, "lb"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/avia-bloodbourn/front.svg",
  27652. extra: 1466 / 1350,
  27653. bottom: 65 / 1527
  27654. }
  27655. },
  27656. },
  27657. [
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(9.35, "feet"),
  27665. weight: math.unit(600, "lb"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/amera/front.svg",
  27669. extra: 891 / 818,
  27670. bottom: 30 / 922.7
  27671. }
  27672. },
  27673. back: {
  27674. height: math.unit(9.35, "feet"),
  27675. weight: math.unit(600, "lb"),
  27676. name: "Back",
  27677. image: {
  27678. source: "./media/characters/amera/back.svg",
  27679. extra: 876 / 824,
  27680. bottom: 6.8 / 884
  27681. }
  27682. },
  27683. dick: {
  27684. height: math.unit(2.14, "feet"),
  27685. name: "Dick",
  27686. image: {
  27687. source: "./media/characters/amera/dick.svg"
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(9.35, "feet"),
  27695. default: true
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27701. {
  27702. kneeling: {
  27703. height: math.unit(3 + 4 / 12, "feet"),
  27704. weight: math.unit(90, "lb"),
  27705. name: "Kneeling",
  27706. image: {
  27707. source: "./media/characters/rosewen/kneeling.svg",
  27708. extra: 1835 / 1571,
  27709. bottom: 27.7 / 1862
  27710. }
  27711. },
  27712. },
  27713. [
  27714. {
  27715. name: "Normal",
  27716. height: math.unit(3 + 4 / 12, "feet"),
  27717. default: true
  27718. },
  27719. ]
  27720. ))
  27721. characterMakers.push(() => makeCharacter(
  27722. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27723. {
  27724. front: {
  27725. height: math.unit(5 + 10 / 12, "feet"),
  27726. weight: math.unit(200, "lb"),
  27727. name: "Front",
  27728. image: {
  27729. source: "./media/characters/sabah/front.svg",
  27730. extra: 849 / 763,
  27731. bottom: 33.9 / 881
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(5 + 10 / 12, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27745. {
  27746. front: {
  27747. height: math.unit(3 + 5 / 12, "feet"),
  27748. weight: math.unit(40, "kg"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/purple-flame/front.svg",
  27752. extra: 1577 / 1412,
  27753. bottom: 97 / 1694
  27754. }
  27755. },
  27756. frontDressed: {
  27757. height: math.unit(3 + 5 / 12, "feet"),
  27758. weight: math.unit(40, "kg"),
  27759. name: "Front (Dressed)",
  27760. image: {
  27761. source: "./media/characters/purple-flame/front-dressed.svg",
  27762. extra: 1577 / 1412,
  27763. bottom: 97 / 1694
  27764. }
  27765. },
  27766. headphones: {
  27767. height: math.unit(0.85, "feet"),
  27768. name: "Headphones",
  27769. image: {
  27770. source: "./media/characters/purple-flame/headphones.svg"
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Really Small",
  27777. height: math.unit(5, "cm")
  27778. },
  27779. {
  27780. name: "Micro",
  27781. height: math.unit(1 + 5 / 12, "feet")
  27782. },
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(3 + 5 / 12, "feet"),
  27786. default: true
  27787. },
  27788. {
  27789. name: "Minimacro",
  27790. height: math.unit(125, "feet")
  27791. },
  27792. {
  27793. name: "Macro",
  27794. height: math.unit(0.5, "miles")
  27795. },
  27796. {
  27797. name: "Megamacro",
  27798. height: math.unit(50, "miles")
  27799. },
  27800. {
  27801. name: "Gigantic",
  27802. height: math.unit(750, "miles")
  27803. },
  27804. {
  27805. name: "Planetary",
  27806. height: math.unit(15000, "miles")
  27807. },
  27808. ]
  27809. ))
  27810. characterMakers.push(() => makeCharacter(
  27811. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27812. {
  27813. front: {
  27814. height: math.unit(14, "feet"),
  27815. weight: math.unit(959, "lb"),
  27816. name: "Front",
  27817. image: {
  27818. source: "./media/characters/arsenal/front.svg",
  27819. extra: 2357 / 2157,
  27820. bottom: 93 / 2458
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(14, "feet"),
  27828. default: true
  27829. },
  27830. ]
  27831. ))
  27832. characterMakers.push(() => makeCharacter(
  27833. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27834. {
  27835. front: {
  27836. height: math.unit(6, "feet"),
  27837. weight: math.unit(150, "lb"),
  27838. name: "Front",
  27839. image: {
  27840. source: "./media/characters/adira/front.svg",
  27841. extra: 1078 / 1029,
  27842. bottom: 87 / 1166
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Micro",
  27849. height: math.unit(4, "inches"),
  27850. default: true
  27851. },
  27852. {
  27853. name: "Macro",
  27854. height: math.unit(50, "feet")
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(16, "feet"),
  27863. weight: math.unit(1000, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/grim/front.svg",
  27867. extra: 622 / 614,
  27868. bottom: 18.1 / 642
  27869. }
  27870. },
  27871. back: {
  27872. height: math.unit(16, "feet"),
  27873. weight: math.unit(1000, "lb"),
  27874. name: "Back",
  27875. image: {
  27876. source: "./media/characters/grim/back.svg",
  27877. extra: 610.6 / 602,
  27878. bottom: 40.8 / 652
  27879. }
  27880. },
  27881. hunched: {
  27882. height: math.unit(9.75, "feet"),
  27883. weight: math.unit(1000, "lb"),
  27884. name: "Hunched",
  27885. image: {
  27886. source: "./media/characters/grim/hunched.svg",
  27887. extra: 304 / 297,
  27888. bottom: 35.4 / 394
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Normal",
  27895. height: math.unit(16, "feet"),
  27896. default: true
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27902. {
  27903. front: {
  27904. height: math.unit(2.3, "meters"),
  27905. weight: math.unit(300, "lb"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/sinja/front-sfw.svg",
  27909. extra: 1393 / 1294,
  27910. bottom: 70 / 1463
  27911. }
  27912. },
  27913. frontNsfw: {
  27914. height: math.unit(2.3, "meters"),
  27915. weight: math.unit(300, "lb"),
  27916. name: "Front (NSFW)",
  27917. image: {
  27918. source: "./media/characters/sinja/front-nsfw.svg",
  27919. extra: 1393 / 1294,
  27920. bottom: 70 / 1463
  27921. }
  27922. },
  27923. back: {
  27924. height: math.unit(2.3, "meters"),
  27925. weight: math.unit(300, "lb"),
  27926. name: "Back",
  27927. image: {
  27928. source: "./media/characters/sinja/back.svg",
  27929. extra: 1393 / 1294,
  27930. bottom: 70 / 1463
  27931. }
  27932. },
  27933. head: {
  27934. height: math.unit(1.771, "feet"),
  27935. name: "Head",
  27936. image: {
  27937. source: "./media/characters/sinja/head.svg"
  27938. }
  27939. },
  27940. slit: {
  27941. height: math.unit(0.8, "feet"),
  27942. name: "Slit",
  27943. image: {
  27944. source: "./media/characters/sinja/slit.svg"
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Normal",
  27951. height: math.unit(2.3, "meters")
  27952. },
  27953. {
  27954. name: "Macro",
  27955. height: math.unit(91, "meters"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Megamacro",
  27960. height: math.unit(91440, "meters")
  27961. },
  27962. {
  27963. name: "Gigamacro",
  27964. height: math.unit(60960000, "meters")
  27965. },
  27966. {
  27967. name: "Teramacro",
  27968. height: math.unit(9144000000, "meters")
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(1.7, "meters"),
  27977. weight: math.unit(130, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/kyu/front.svg",
  27981. extra: 415 / 395,
  27982. bottom: 5 / 420
  27983. }
  27984. },
  27985. head: {
  27986. height: math.unit(1.75, "feet"),
  27987. name: "Head",
  27988. image: {
  27989. source: "./media/characters/kyu/head.svg"
  27990. }
  27991. },
  27992. foot: {
  27993. height: math.unit(0.81, "feet"),
  27994. name: "Foot",
  27995. image: {
  27996. source: "./media/characters/kyu/foot.svg"
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Normal",
  28003. height: math.unit(1.7, "meters")
  28004. },
  28005. {
  28006. name: "Macro",
  28007. height: math.unit(131, "feet"),
  28008. default: true
  28009. },
  28010. {
  28011. name: "Megamacro",
  28012. height: math.unit(91440, "meters")
  28013. },
  28014. {
  28015. name: "Gigamacro",
  28016. height: math.unit(60960000, "meters")
  28017. },
  28018. {
  28019. name: "Teramacro",
  28020. height: math.unit(9144000000, "meters")
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(7 + 1 / 12, "feet"),
  28029. weight: math.unit(250, "lb"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/joey/front.svg",
  28033. extra: 1791 / 1537,
  28034. bottom: 28 / 1816
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Micro",
  28041. height: math.unit(3, "inches")
  28042. },
  28043. {
  28044. name: "Normal",
  28045. height: math.unit(7 + 1 / 12, "feet"),
  28046. default: true
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(165, "cm"),
  28055. weight: math.unit(140, "lb"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/sam-evans/front.svg",
  28059. extra: 3417 / 3230,
  28060. bottom: 41.3 / 3417
  28061. }
  28062. },
  28063. frontSixTails: {
  28064. height: math.unit(165, "cm"),
  28065. weight: math.unit(140, "lb"),
  28066. name: "Front-six-tails",
  28067. image: {
  28068. source: "./media/characters/sam-evans/front-six-tails.svg",
  28069. extra: 3417 / 3230,
  28070. bottom: 41.3 / 3417
  28071. }
  28072. },
  28073. back: {
  28074. height: math.unit(165, "cm"),
  28075. weight: math.unit(140, "lb"),
  28076. name: "Back",
  28077. image: {
  28078. source: "./media/characters/sam-evans/back.svg",
  28079. extra: 3227 / 3032,
  28080. bottom: 6.8 / 3234
  28081. }
  28082. },
  28083. face: {
  28084. height: math.unit(0.68, "feet"),
  28085. name: "Face",
  28086. image: {
  28087. source: "./media/characters/sam-evans/face.svg"
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(165, "cm"),
  28095. default: true
  28096. },
  28097. {
  28098. name: "Macro",
  28099. height: math.unit(100, "meters")
  28100. },
  28101. {
  28102. name: "Macro+",
  28103. height: math.unit(800, "meters")
  28104. },
  28105. {
  28106. name: "Macro++",
  28107. height: math.unit(3, "km")
  28108. },
  28109. {
  28110. name: "Macro+++",
  28111. height: math.unit(30, "km")
  28112. },
  28113. ]
  28114. ))
  28115. characterMakers.push(() => makeCharacter(
  28116. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28117. {
  28118. front: {
  28119. height: math.unit(10, "feet"),
  28120. weight: math.unit(750, "lb"),
  28121. name: "Front",
  28122. image: {
  28123. source: "./media/characters/juliet-a/front.svg",
  28124. extra: 1766 / 1720,
  28125. bottom: 43 / 1809
  28126. }
  28127. },
  28128. back: {
  28129. height: math.unit(10, "feet"),
  28130. weight: math.unit(750, "lb"),
  28131. name: "Back",
  28132. image: {
  28133. source: "./media/characters/juliet-a/back.svg",
  28134. extra: 1781 / 1734,
  28135. bottom: 35 / 1810,
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(10, "feet"),
  28143. default: true
  28144. },
  28145. {
  28146. name: "Dragon Form",
  28147. height: math.unit(250, "feet")
  28148. },
  28149. {
  28150. name: "Macro",
  28151. height: math.unit(1000, "feet")
  28152. },
  28153. {
  28154. name: "Megamacro",
  28155. height: math.unit(10000, "feet")
  28156. }
  28157. ]
  28158. ))
  28159. characterMakers.push(() => makeCharacter(
  28160. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28161. {
  28162. regular: {
  28163. height: math.unit(7 + 3 / 12, "feet"),
  28164. weight: math.unit(260, "lb"),
  28165. name: "Regular",
  28166. image: {
  28167. source: "./media/characters/wild/regular.svg",
  28168. extra: 97.45 / 92,
  28169. bottom: 6.8 / 104.3
  28170. }
  28171. },
  28172. biggums: {
  28173. height: math.unit(8 + 6 / 12, "feet"),
  28174. weight: math.unit(425, "lb"),
  28175. name: "Biggums",
  28176. image: {
  28177. source: "./media/characters/wild/biggums.svg",
  28178. extra: 97.45 / 92,
  28179. bottom: 7.5 / 132.34
  28180. }
  28181. },
  28182. mawRegular: {
  28183. height: math.unit(1.24, "feet"),
  28184. name: "Maw (Regular)",
  28185. image: {
  28186. source: "./media/characters/wild/maw.svg"
  28187. }
  28188. },
  28189. mawBiggums: {
  28190. height: math.unit(1.47, "feet"),
  28191. name: "Maw (Biggums)",
  28192. image: {
  28193. source: "./media/characters/wild/maw.svg"
  28194. }
  28195. },
  28196. },
  28197. [
  28198. {
  28199. name: "Normal",
  28200. height: math.unit(7 + 3 / 12, "feet"),
  28201. default: true
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28207. {
  28208. front: {
  28209. height: math.unit(2.5, "meters"),
  28210. weight: math.unit(200, "kg"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/vidar/front.svg",
  28214. extra: 2994 / 2795,
  28215. bottom: 56 / 3061
  28216. }
  28217. },
  28218. back: {
  28219. height: math.unit(2.5, "meters"),
  28220. weight: math.unit(200, "kg"),
  28221. name: "Back",
  28222. image: {
  28223. source: "./media/characters/vidar/back.svg",
  28224. extra: 3131 / 2928,
  28225. bottom: 13.5 / 3141.5
  28226. }
  28227. },
  28228. feral: {
  28229. height: math.unit(2.5, "meters"),
  28230. weight: math.unit(2000, "kg"),
  28231. name: "Feral",
  28232. image: {
  28233. source: "./media/characters/vidar/feral.svg",
  28234. extra: 2790 / 1765,
  28235. bottom: 6 / 2796
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Normal",
  28242. height: math.unit(2.5, "meters"),
  28243. default: true
  28244. },
  28245. {
  28246. name: "Macro",
  28247. height: math.unit(100, "meters")
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28253. {
  28254. front: {
  28255. height: math.unit(5 + 9 / 12, "feet"),
  28256. weight: math.unit(120, "lb"),
  28257. name: "Front",
  28258. image: {
  28259. source: "./media/characters/ash/front.svg",
  28260. extra: 2189 / 1961,
  28261. bottom: 5.2 / 2194
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Normal",
  28268. height: math.unit(5 + 9 / 12, "feet"),
  28269. default: true
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(9, "feet"),
  28278. weight: math.unit(10000, "lb"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/gygabite/front.svg",
  28282. bottom: 31.7 / 537.8,
  28283. extra: 505 / 370
  28284. }
  28285. },
  28286. },
  28287. [
  28288. {
  28289. name: "Normal",
  28290. height: math.unit(9, "feet"),
  28291. default: true
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(12, "feet"),
  28300. weight: math.unit(35000, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/p0tat0/front.svg",
  28304. extra: 1065 / 921,
  28305. bottom: 55.7 / 1121.25
  28306. }
  28307. },
  28308. },
  28309. [
  28310. {
  28311. name: "Normal",
  28312. height: math.unit(12, "feet"),
  28313. default: true
  28314. },
  28315. ]
  28316. ))
  28317. characterMakers.push(() => makeCharacter(
  28318. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28319. {
  28320. side: {
  28321. height: math.unit(6.5, "feet"),
  28322. weight: math.unit(800, "lb"),
  28323. name: "Side",
  28324. image: {
  28325. source: "./media/characters/dusk/side.svg",
  28326. extra: 615 / 373,
  28327. bottom: 53 / 664
  28328. }
  28329. },
  28330. sitting: {
  28331. height: math.unit(7, "feet"),
  28332. weight: math.unit(800, "lb"),
  28333. name: "Sitting",
  28334. image: {
  28335. source: "./media/characters/dusk/sitting.svg",
  28336. extra: 753 / 425,
  28337. bottom: 33 / 774
  28338. }
  28339. },
  28340. head: {
  28341. height: math.unit(6.1, "feet"),
  28342. name: "Head",
  28343. image: {
  28344. source: "./media/characters/dusk/head.svg"
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(7, "feet"),
  28352. default: true
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(15, "feet"),
  28361. weight: math.unit(7000, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/jay-direwolf/front.svg",
  28365. extra: 1810 / 1732,
  28366. bottom: 66 / 1892
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Normal",
  28373. height: math.unit(15, "feet"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(4 + 9 / 12, "feet"),
  28383. weight: math.unit(130, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/anchovie/front.svg",
  28387. extra: 382 / 350,
  28388. bottom: 25 / 409
  28389. }
  28390. },
  28391. back: {
  28392. height: math.unit(4 + 9 / 12, "feet"),
  28393. weight: math.unit(130, "lb"),
  28394. name: "Back",
  28395. image: {
  28396. source: "./media/characters/anchovie/back.svg",
  28397. extra: 385 / 352,
  28398. bottom: 16.6 / 402
  28399. }
  28400. },
  28401. frontDressed: {
  28402. height: math.unit(4 + 9 / 12, "feet"),
  28403. weight: math.unit(130, "lb"),
  28404. name: "Front (Dressed)",
  28405. image: {
  28406. source: "./media/characters/anchovie/front-dressed.svg",
  28407. extra: 382 / 350,
  28408. bottom: 25 / 409
  28409. }
  28410. },
  28411. backDressed: {
  28412. height: math.unit(4 + 9 / 12, "feet"),
  28413. weight: math.unit(130, "lb"),
  28414. name: "Back (Dressed)",
  28415. image: {
  28416. source: "./media/characters/anchovie/back-dressed.svg",
  28417. extra: 385 / 352,
  28418. bottom: 16.6 / 402
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Micro",
  28425. height: math.unit(6.4, "inches")
  28426. },
  28427. {
  28428. name: "Normal",
  28429. height: math.unit(4 + 9 / 12, "feet"),
  28430. default: true
  28431. },
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28436. {
  28437. front: {
  28438. height: math.unit(2, "meters"),
  28439. weight: math.unit(180, "lb"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/acidrenamon/front.svg",
  28443. extra: 987 / 890,
  28444. bottom: 22.8 / 1009
  28445. }
  28446. },
  28447. back: {
  28448. height: math.unit(2, "meters"),
  28449. weight: math.unit(180, "lb"),
  28450. name: "Back",
  28451. image: {
  28452. source: "./media/characters/acidrenamon/back.svg",
  28453. extra: 983 / 891,
  28454. bottom: 8.4 / 992
  28455. }
  28456. },
  28457. head: {
  28458. height: math.unit(1.92, "feet"),
  28459. name: "Head",
  28460. image: {
  28461. source: "./media/characters/acidrenamon/head.svg"
  28462. }
  28463. },
  28464. rump: {
  28465. height: math.unit(1.72, "feet"),
  28466. name: "Rump",
  28467. image: {
  28468. source: "./media/characters/acidrenamon/rump.svg"
  28469. }
  28470. },
  28471. tail: {
  28472. height: math.unit(4.2, "feet"),
  28473. name: "Tail",
  28474. image: {
  28475. source: "./media/characters/acidrenamon/tail.svg"
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(2, "meters"),
  28483. default: true
  28484. },
  28485. {
  28486. name: "Minimacro",
  28487. height: math.unit(7, "meters")
  28488. },
  28489. {
  28490. name: "Macro",
  28491. height: math.unit(200, "meters")
  28492. },
  28493. {
  28494. name: "Gigamacro",
  28495. height: math.unit(0.2, "earths")
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28501. {
  28502. front: {
  28503. height: math.unit(152, "feet"),
  28504. name: "Front",
  28505. image: {
  28506. source: "./media/characters/kenzie-lee/front.svg",
  28507. extra: 1869/1774,
  28508. bottom: 128/1997
  28509. }
  28510. },
  28511. side: {
  28512. height: math.unit(86, "feet"),
  28513. name: "Side",
  28514. image: {
  28515. source: "./media/characters/kenzie-lee/side.svg",
  28516. extra: 930/815,
  28517. bottom: 177/1107
  28518. }
  28519. },
  28520. paw: {
  28521. height: math.unit(15, "feet"),
  28522. name: "Paw",
  28523. image: {
  28524. source: "./media/characters/kenzie-lee/paw.svg"
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Kenzie Flea",
  28531. height: math.unit(2, "mm"),
  28532. default: true
  28533. },
  28534. {
  28535. name: "Micro",
  28536. height: math.unit(2, "inches")
  28537. },
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(152, "feet")
  28541. },
  28542. {
  28543. name: "Megamacro",
  28544. height: math.unit(7, "miles")
  28545. },
  28546. {
  28547. name: "Gigamacro",
  28548. height: math.unit(8000, "miles")
  28549. },
  28550. ]
  28551. ))
  28552. characterMakers.push(() => makeCharacter(
  28553. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28554. {
  28555. front: {
  28556. height: math.unit(6, "feet"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/withers/front.svg",
  28560. extra: 1935/1760,
  28561. bottom: 72/2007
  28562. }
  28563. },
  28564. back: {
  28565. height: math.unit(6, "feet"),
  28566. name: "Back",
  28567. image: {
  28568. source: "./media/characters/withers/back.svg",
  28569. extra: 1944/1792,
  28570. bottom: 12/1956
  28571. }
  28572. },
  28573. dressed: {
  28574. height: math.unit(6, "feet"),
  28575. name: "Dressed",
  28576. image: {
  28577. source: "./media/characters/withers/dressed.svg",
  28578. extra: 1937/1765,
  28579. bottom: 73/2010
  28580. }
  28581. },
  28582. phase1: {
  28583. height: math.unit(1.1, "feet"),
  28584. name: "Phase 1",
  28585. image: {
  28586. source: "./media/characters/withers/phase-1.svg",
  28587. extra: 1885/1232,
  28588. bottom: 0/1885
  28589. }
  28590. },
  28591. phase2: {
  28592. height: math.unit(1.05, "feet"),
  28593. name: "Phase 2",
  28594. image: {
  28595. source: "./media/characters/withers/phase-2.svg",
  28596. extra: 1792/1090,
  28597. bottom: 0/1792
  28598. }
  28599. },
  28600. partyWipe: {
  28601. height: math.unit(1.1, "feet"),
  28602. name: "Party Wipe",
  28603. image: {
  28604. source: "./media/characters/withers/party-wipe.svg",
  28605. extra: 1864/1207,
  28606. bottom: 0/1864
  28607. }
  28608. },
  28609. },
  28610. [
  28611. {
  28612. name: "Macro",
  28613. height: math.unit(167, "feet"),
  28614. default: true
  28615. },
  28616. {
  28617. name: "Megamacro",
  28618. height: math.unit(15, "miles")
  28619. }
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(6 + 7 / 12, "feet"),
  28627. weight: math.unit(250, "lb"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/nemoskii/front.svg",
  28631. extra: 2270 / 1734,
  28632. bottom: 86 / 2354
  28633. }
  28634. },
  28635. back: {
  28636. height: math.unit(6 + 7 / 12, "feet"),
  28637. weight: math.unit(250, "lb"),
  28638. name: "Back",
  28639. image: {
  28640. source: "./media/characters/nemoskii/back.svg",
  28641. extra: 1845 / 1788,
  28642. bottom: 10.5 / 1852
  28643. }
  28644. },
  28645. head: {
  28646. height: math.unit(1.31, "feet"),
  28647. name: "Head",
  28648. image: {
  28649. source: "./media/characters/nemoskii/head.svg"
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Micro",
  28656. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28657. },
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(6 + 7 / 12, "feet"),
  28661. default: true
  28662. },
  28663. {
  28664. name: "Macro",
  28665. height: math.unit((6 + 7 / 12) * 150, "feet")
  28666. },
  28667. {
  28668. name: "Macro+",
  28669. height: math.unit((6 + 7 / 12) * 500, "feet")
  28670. },
  28671. {
  28672. name: "Megamacro",
  28673. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(1, "mile"),
  28682. weight: math.unit(265261.9, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/shui/front.svg",
  28686. extra: 1633 / 1564,
  28687. bottom: 91.5 / 1726
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Macro",
  28694. height: math.unit(1, "mile"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(12 + 6 / 12, "feet"),
  28704. weight: math.unit(1342, "lb"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/arokh-takakura/front.svg",
  28708. extra: 1089 / 1043,
  28709. bottom: 77.4 / 1176.7
  28710. }
  28711. },
  28712. back: {
  28713. height: math.unit(12 + 6 / 12, "feet"),
  28714. weight: math.unit(1342, "lb"),
  28715. name: "Back",
  28716. image: {
  28717. source: "./media/characters/arokh-takakura/back.svg",
  28718. extra: 1046 / 1019,
  28719. bottom: 102 / 1150
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Big",
  28726. height: math.unit(12 + 6 / 12, "feet"),
  28727. default: true
  28728. },
  28729. ]
  28730. ))
  28731. characterMakers.push(() => makeCharacter(
  28732. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28733. {
  28734. front: {
  28735. height: math.unit(5 + 6 / 12, "feet"),
  28736. weight: math.unit(150, "lb"),
  28737. name: "Front",
  28738. image: {
  28739. source: "./media/characters/theo/front.svg",
  28740. extra: 1184 / 1131,
  28741. bottom: 7.4 / 1191
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Micro",
  28748. height: math.unit(5, "inches")
  28749. },
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(5 + 6 / 12, "feet"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(5 + 9 / 12, "feet"),
  28762. weight: math.unit(130, "lb"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/cecelia-swift/front.svg",
  28766. extra: 502 / 484,
  28767. bottom: 23 / 523
  28768. }
  28769. },
  28770. back: {
  28771. height: math.unit(5 + 9 / 12, "feet"),
  28772. weight: math.unit(130, "lb"),
  28773. name: "Back",
  28774. image: {
  28775. source: "./media/characters/cecelia-swift/back.svg",
  28776. extra: 499 / 485,
  28777. bottom: 12 / 511
  28778. }
  28779. },
  28780. head: {
  28781. height: math.unit(0.90, "feet"),
  28782. name: "Head",
  28783. image: {
  28784. source: "./media/characters/cecelia-swift/head.svg"
  28785. }
  28786. },
  28787. rump: {
  28788. height: math.unit(1.75, "feet"),
  28789. name: "Rump",
  28790. image: {
  28791. source: "./media/characters/cecelia-swift/rump.svg"
  28792. }
  28793. },
  28794. },
  28795. [
  28796. {
  28797. name: "Normal",
  28798. height: math.unit(5 + 9 / 12, "feet"),
  28799. default: true
  28800. },
  28801. {
  28802. name: "Big",
  28803. height: math.unit(50, "feet")
  28804. },
  28805. {
  28806. name: "Macro",
  28807. height: math.unit(100, "feet")
  28808. },
  28809. {
  28810. name: "Macro+",
  28811. height: math.unit(500, "feet")
  28812. },
  28813. {
  28814. name: "Macro++",
  28815. height: math.unit(1000, "feet")
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(6, "feet"),
  28824. weight: math.unit(150, "lb"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/kaunan/front.svg",
  28828. extra: 2890 / 2523,
  28829. bottom: 49 / 2939
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Macro",
  28836. height: math.unit(150, "feet"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(175, "cm"),
  28846. weight: math.unit(60, "kg"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/fei/front.svg",
  28850. extra: 1873/1723,
  28851. bottom: 53/1926
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Mortal",
  28858. height: math.unit(175, "cm")
  28859. },
  28860. {
  28861. name: "Normal",
  28862. height: math.unit(3500, "m"),
  28863. default: true
  28864. },
  28865. {
  28866. name: "Stroll",
  28867. height: math.unit(17.5, "km")
  28868. },
  28869. {
  28870. name: "Showoff",
  28871. height: math.unit(175, "km")
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(7, "feet"),
  28880. weight: math.unit(1000, "kg"),
  28881. name: "Front",
  28882. image: {
  28883. source: "./media/characters/edrax/front.svg",
  28884. extra: 2838 / 2550,
  28885. bottom: 130 / 2968
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Small",
  28892. height: math.unit(7, "feet")
  28893. },
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(1500, "meters")
  28897. },
  28898. {
  28899. name: "Mega",
  28900. height: math.unit(12000000, "km"),
  28901. default: true
  28902. },
  28903. {
  28904. name: "Megamacro",
  28905. height: math.unit(10600000, "lightyears")
  28906. },
  28907. {
  28908. name: "Hypermacro",
  28909. height: math.unit(256, "yottameters")
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28915. {
  28916. front: {
  28917. height: math.unit(10, "feet"),
  28918. weight: math.unit(750, "lb"),
  28919. name: "Front",
  28920. image: {
  28921. source: "./media/characters/clove/front.svg",
  28922. extra: 1918/1751,
  28923. bottom: 52/1970
  28924. }
  28925. },
  28926. back: {
  28927. height: math.unit(10, "feet"),
  28928. weight: math.unit(750, "lb"),
  28929. name: "Back",
  28930. image: {
  28931. source: "./media/characters/clove/back.svg",
  28932. extra: 1912/1747,
  28933. bottom: 50/1962
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(10, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(4, "feet"),
  28950. weight: math.unit(50, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/alex-rabbit/front.svg",
  28954. extra: 507 / 458,
  28955. bottom: 18.5 / 527
  28956. }
  28957. },
  28958. back: {
  28959. height: math.unit(4, "feet"),
  28960. weight: math.unit(50, "lb"),
  28961. name: "Back",
  28962. image: {
  28963. source: "./media/characters/alex-rabbit/back.svg",
  28964. extra: 502 / 460,
  28965. bottom: 18.9 / 521
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(4, "feet"),
  28973. default: true
  28974. },
  28975. ]
  28976. ))
  28977. characterMakers.push(() => makeCharacter(
  28978. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28979. {
  28980. front: {
  28981. height: math.unit(1 + 3 / 12, "feet"),
  28982. weight: math.unit(80, "lb"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/zander-rose/front.svg",
  28986. extra: 916 / 797,
  28987. bottom: 17 / 933
  28988. }
  28989. },
  28990. back: {
  28991. height: math.unit(1 + 3 / 12, "feet"),
  28992. weight: math.unit(80, "lb"),
  28993. name: "Back",
  28994. image: {
  28995. source: "./media/characters/zander-rose/back.svg",
  28996. extra: 903 / 779,
  28997. bottom: 31 / 934
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Normal",
  29004. height: math.unit(1 + 3 / 12, "feet"),
  29005. default: true
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29011. {
  29012. anthro: {
  29013. height: math.unit(6, "feet"),
  29014. weight: math.unit(150, "lb"),
  29015. name: "Anthro",
  29016. image: {
  29017. source: "./media/characters/razz/anthro.svg",
  29018. extra: 1437 / 1343,
  29019. bottom: 48 / 1485
  29020. }
  29021. },
  29022. feral: {
  29023. height: math.unit(6, "feet"),
  29024. weight: math.unit(150, "lb"),
  29025. name: "Feral",
  29026. image: {
  29027. source: "./media/characters/razz/feral.svg",
  29028. extra: 2569 / 1385,
  29029. bottom: 95 / 2664
  29030. }
  29031. },
  29032. },
  29033. [
  29034. {
  29035. name: "Normal",
  29036. height: math.unit(6, "feet"),
  29037. default: true
  29038. },
  29039. ]
  29040. ))
  29041. characterMakers.push(() => makeCharacter(
  29042. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29043. {
  29044. front: {
  29045. height: math.unit(9 + 4 / 12, "feet"),
  29046. weight: math.unit(500, "lb"),
  29047. name: "Front",
  29048. image: {
  29049. source: "./media/characters/morrigan/front.svg",
  29050. extra: 2707 / 2579,
  29051. bottom: 156 / 2863
  29052. }
  29053. },
  29054. },
  29055. [
  29056. {
  29057. name: "Normal",
  29058. height: math.unit(9 + 4 / 12, "feet"),
  29059. default: true
  29060. },
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(5, "stories"),
  29068. weight: math.unit(4000, "lb"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/jenene/front.svg",
  29072. extra: 1780 / 1710,
  29073. bottom: 57 / 1837
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Normal",
  29080. height: math.unit(5, "stories"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29087. {
  29088. taurSfw: {
  29089. height: math.unit(10, "meters"),
  29090. weight: math.unit(17500, "kg"),
  29091. name: "Taur",
  29092. image: {
  29093. source: "./media/characters/faey/taur-sfw.svg",
  29094. extra: 1200 / 968,
  29095. bottom: 41 / 1241
  29096. }
  29097. },
  29098. chestmaw: {
  29099. height: math.unit(2.01, "meters"),
  29100. name: "Chestmaw",
  29101. image: {
  29102. source: "./media/characters/faey/chestmaw.svg"
  29103. }
  29104. },
  29105. foot: {
  29106. height: math.unit(2.43, "meters"),
  29107. name: "Foot",
  29108. image: {
  29109. source: "./media/characters/faey/foot.svg"
  29110. }
  29111. },
  29112. jaws: {
  29113. height: math.unit(1.66, "meters"),
  29114. name: "Jaws",
  29115. image: {
  29116. source: "./media/characters/faey/jaws.svg"
  29117. }
  29118. },
  29119. tongues: {
  29120. height: math.unit(2.01, "meters"),
  29121. name: "Tongues",
  29122. image: {
  29123. source: "./media/characters/faey/tongues.svg"
  29124. }
  29125. },
  29126. },
  29127. [
  29128. {
  29129. name: "Small",
  29130. height: math.unit(10, "meters"),
  29131. default: true
  29132. },
  29133. {
  29134. name: "Big",
  29135. height: math.unit(500000, "km")
  29136. },
  29137. ]
  29138. ))
  29139. characterMakers.push(() => makeCharacter(
  29140. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29141. {
  29142. front: {
  29143. height: math.unit(7, "feet"),
  29144. weight: math.unit(275, "lb"),
  29145. name: "Front",
  29146. image: {
  29147. source: "./media/characters/roku/front.svg",
  29148. extra: 903 / 878,
  29149. bottom: 37 / 940
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(7, "feet"),
  29157. default: true
  29158. },
  29159. {
  29160. name: "Macro",
  29161. height: math.unit(500, "feet")
  29162. },
  29163. {
  29164. name: "Megamacro",
  29165. height: math.unit(200, "miles")
  29166. },
  29167. ]
  29168. ))
  29169. characterMakers.push(() => makeCharacter(
  29170. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29171. {
  29172. front: {
  29173. height: math.unit(6 + 2 / 12, "feet"),
  29174. weight: math.unit(150, "lb"),
  29175. name: "Front",
  29176. image: {
  29177. source: "./media/characters/lira/front.svg",
  29178. extra: 1727 / 1605,
  29179. bottom: 26 / 1753
  29180. }
  29181. },
  29182. back: {
  29183. height: math.unit(6 + 2 / 12, "feet"),
  29184. weight: math.unit(150, "lb"),
  29185. name: "Back",
  29186. image: {
  29187. source: "./media/characters/lira/back.svg",
  29188. extra: 1713/1621,
  29189. bottom: 20/1733
  29190. }
  29191. },
  29192. hand: {
  29193. height: math.unit(0.75, "feet"),
  29194. name: "Hand",
  29195. image: {
  29196. source: "./media/characters/lira/hand.svg"
  29197. }
  29198. },
  29199. maw: {
  29200. height: math.unit(0.65, "feet"),
  29201. name: "Maw",
  29202. image: {
  29203. source: "./media/characters/lira/maw.svg"
  29204. }
  29205. },
  29206. pawDigi: {
  29207. height: math.unit(1.6, "feet"),
  29208. name: "Paw Digi",
  29209. image: {
  29210. source: "./media/characters/lira/paw-digi.svg"
  29211. }
  29212. },
  29213. pawPlanti: {
  29214. height: math.unit(1.4, "feet"),
  29215. name: "Paw Planti",
  29216. image: {
  29217. source: "./media/characters/lira/paw-planti.svg"
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Normal",
  29224. height: math.unit(6 + 2 / 12, "feet"),
  29225. default: true
  29226. },
  29227. {
  29228. name: "Macro",
  29229. height: math.unit(100, "feet")
  29230. },
  29231. {
  29232. name: "Macro²",
  29233. height: math.unit(1600, "feet")
  29234. },
  29235. {
  29236. name: "Planetary",
  29237. height: math.unit(20, "earths")
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(6, "feet"),
  29246. weight: math.unit(150, "lb"),
  29247. name: "Front",
  29248. image: {
  29249. source: "./media/characters/hadjet/front.svg",
  29250. extra: 1480 / 1346,
  29251. bottom: 26 / 1506
  29252. }
  29253. },
  29254. frontNsfw: {
  29255. height: math.unit(6, "feet"),
  29256. weight: math.unit(150, "lb"),
  29257. name: "Front (NSFW)",
  29258. image: {
  29259. source: "./media/characters/hadjet/front-nsfw.svg",
  29260. extra: 1440 / 1358,
  29261. bottom: 52 / 1492
  29262. }
  29263. },
  29264. },
  29265. [
  29266. {
  29267. name: "Macro",
  29268. height: math.unit(10, "stories"),
  29269. default: true
  29270. },
  29271. {
  29272. name: "Megamacro",
  29273. height: math.unit(1.5, "miles")
  29274. },
  29275. {
  29276. name: "Megamacro+",
  29277. height: math.unit(5, "miles")
  29278. },
  29279. ]
  29280. ))
  29281. characterMakers.push(() => makeCharacter(
  29282. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29283. {
  29284. side: {
  29285. height: math.unit(106, "feet"),
  29286. weight: math.unit(500, "tonnes"),
  29287. name: "Side",
  29288. image: {
  29289. source: "./media/characters/kodran/side.svg",
  29290. extra: 553 / 480,
  29291. bottom: 33 / 586
  29292. }
  29293. },
  29294. front: {
  29295. height: math.unit(132, "feet"),
  29296. weight: math.unit(500, "tonnes"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/kodran/front.svg",
  29300. extra: 667 / 643,
  29301. bottom: 42 / 709
  29302. }
  29303. },
  29304. flying: {
  29305. height: math.unit(350, "feet"),
  29306. weight: math.unit(500, "tonnes"),
  29307. name: "Flying",
  29308. image: {
  29309. source: "./media/characters/kodran/flying.svg"
  29310. }
  29311. },
  29312. foot: {
  29313. height: math.unit(33, "feet"),
  29314. name: "Foot",
  29315. image: {
  29316. source: "./media/characters/kodran/foot.svg"
  29317. }
  29318. },
  29319. footFront: {
  29320. height: math.unit(19, "feet"),
  29321. name: "Foot (Front)",
  29322. image: {
  29323. source: "./media/characters/kodran/foot-front.svg",
  29324. extra: 261 / 261,
  29325. bottom: 91 / 352
  29326. }
  29327. },
  29328. headFront: {
  29329. height: math.unit(53, "feet"),
  29330. name: "Head (Front)",
  29331. image: {
  29332. source: "./media/characters/kodran/head-front.svg"
  29333. }
  29334. },
  29335. headSide: {
  29336. height: math.unit(65, "feet"),
  29337. name: "Head (Side)",
  29338. image: {
  29339. source: "./media/characters/kodran/head-side.svg"
  29340. }
  29341. },
  29342. throat: {
  29343. height: math.unit(79, "feet"),
  29344. name: "Throat",
  29345. image: {
  29346. source: "./media/characters/kodran/throat.svg"
  29347. }
  29348. },
  29349. },
  29350. [
  29351. {
  29352. name: "Large",
  29353. height: math.unit(106, "feet"),
  29354. default: true
  29355. },
  29356. ]
  29357. ))
  29358. characterMakers.push(() => makeCharacter(
  29359. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29360. {
  29361. side: {
  29362. height: math.unit(11, "feet"),
  29363. weight: math.unit(150, "lb"),
  29364. name: "Side",
  29365. image: {
  29366. source: "./media/characters/pyxaron/side.svg",
  29367. extra: 305 / 195,
  29368. bottom: 17 / 322
  29369. }
  29370. },
  29371. },
  29372. [
  29373. {
  29374. name: "Normal",
  29375. height: math.unit(11, "feet"),
  29376. default: true
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29382. {
  29383. front: {
  29384. height: math.unit(6, "feet"),
  29385. weight: math.unit(150, "lb"),
  29386. name: "Front",
  29387. image: {
  29388. source: "./media/characters/meep/front.svg",
  29389. extra: 88 / 80,
  29390. bottom: 6 / 94
  29391. }
  29392. },
  29393. },
  29394. [
  29395. {
  29396. name: "Fun Sized",
  29397. height: math.unit(2, "inches"),
  29398. default: true
  29399. },
  29400. {
  29401. name: "Friend Sized",
  29402. height: math.unit(8, "inches")
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(15, "feet"),
  29411. weight: math.unit(2500, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/holly-rabbit/front.svg",
  29415. extra: 1433 / 1233,
  29416. bottom: 125 / 1558
  29417. }
  29418. },
  29419. dick: {
  29420. height: math.unit(4.6, "feet"),
  29421. name: "Dick",
  29422. image: {
  29423. source: "./media/characters/holly-rabbit/dick.svg"
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Normal",
  29430. height: math.unit(15, "feet"),
  29431. default: true
  29432. },
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(250, "feet")
  29436. },
  29437. {
  29438. name: "Macro+",
  29439. height: math.unit(2500, "feet")
  29440. },
  29441. ]
  29442. ))
  29443. characterMakers.push(() => makeCharacter(
  29444. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29445. {
  29446. front: {
  29447. height: math.unit(3.02, "meters"),
  29448. weight: math.unit(500, "kg"),
  29449. name: "Front",
  29450. image: {
  29451. source: "./media/characters/drena/front.svg",
  29452. extra: 282 / 243,
  29453. bottom: 8 / 290
  29454. }
  29455. },
  29456. side: {
  29457. height: math.unit(3.02, "meters"),
  29458. weight: math.unit(500, "kg"),
  29459. name: "Side",
  29460. image: {
  29461. source: "./media/characters/drena/side.svg",
  29462. extra: 280 / 245,
  29463. bottom: 10 / 290
  29464. }
  29465. },
  29466. back: {
  29467. height: math.unit(3.02, "meters"),
  29468. weight: math.unit(500, "kg"),
  29469. name: "Back",
  29470. image: {
  29471. source: "./media/characters/drena/back.svg",
  29472. extra: 278 / 243,
  29473. bottom: 2 / 280
  29474. }
  29475. },
  29476. foot: {
  29477. height: math.unit(0.75, "meters"),
  29478. name: "Foot",
  29479. image: {
  29480. source: "./media/characters/drena/foot.svg"
  29481. }
  29482. },
  29483. maw: {
  29484. height: math.unit(0.82, "meters"),
  29485. name: "Maw",
  29486. image: {
  29487. source: "./media/characters/drena/maw.svg"
  29488. }
  29489. },
  29490. eating: {
  29491. height: math.unit(0.75, "meters"),
  29492. name: "Eating",
  29493. image: {
  29494. source: "./media/characters/drena/eating.svg"
  29495. }
  29496. },
  29497. rump: {
  29498. height: math.unit(0.93, "meters"),
  29499. name: "Rump",
  29500. image: {
  29501. source: "./media/characters/drena/rump.svg"
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Normal",
  29508. height: math.unit(3.02, "meters"),
  29509. default: true
  29510. },
  29511. ]
  29512. ))
  29513. characterMakers.push(() => makeCharacter(
  29514. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29515. {
  29516. front: {
  29517. height: math.unit(6 + 4 / 12, "feet"),
  29518. weight: math.unit(250, "lb"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/remmyzilla/front.svg",
  29522. extra: 4033 / 3588,
  29523. bottom: 123 / 4156
  29524. }
  29525. },
  29526. back: {
  29527. height: math.unit(6 + 4 / 12, "feet"),
  29528. weight: math.unit(250, "lb"),
  29529. name: "Back",
  29530. image: {
  29531. source: "./media/characters/remmyzilla/back.svg",
  29532. extra: 2687 / 2555,
  29533. bottom: 48 / 2735
  29534. }
  29535. },
  29536. paw: {
  29537. height: math.unit(1.73, "feet"),
  29538. name: "Paw",
  29539. image: {
  29540. source: "./media/characters/remmyzilla/paw.svg"
  29541. }
  29542. },
  29543. maw: {
  29544. height: math.unit(1.73, "feet"),
  29545. name: "Maw",
  29546. image: {
  29547. source: "./media/characters/remmyzilla/maw.svg"
  29548. }
  29549. },
  29550. },
  29551. [
  29552. {
  29553. name: "Normal",
  29554. height: math.unit(6 + 4 / 12, "feet")
  29555. },
  29556. {
  29557. name: "Minimacro",
  29558. height: math.unit(12 + 8 / 12, "feet")
  29559. },
  29560. {
  29561. name: "Normal",
  29562. height: math.unit(640, "feet"),
  29563. default: true
  29564. },
  29565. {
  29566. name: "Megamacro",
  29567. height: math.unit(6400, "feet")
  29568. },
  29569. {
  29570. name: "Gigamacro",
  29571. height: math.unit(64000, "miles")
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(2.5, "meters"),
  29580. weight: math.unit(300, "lb"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/lawrence/front.svg",
  29584. extra: 357 / 335,
  29585. bottom: 30 / 387
  29586. }
  29587. },
  29588. back: {
  29589. height: math.unit(2.5, "meters"),
  29590. weight: math.unit(300, "lb"),
  29591. name: "Back",
  29592. image: {
  29593. source: "./media/characters/lawrence/back.svg",
  29594. extra: 357 / 338,
  29595. bottom: 16 / 373
  29596. }
  29597. },
  29598. head: {
  29599. height: math.unit(0.9, "meter"),
  29600. name: "Head",
  29601. image: {
  29602. source: "./media/characters/lawrence/head.svg"
  29603. }
  29604. },
  29605. maw: {
  29606. height: math.unit(0.7, "meter"),
  29607. name: "Maw",
  29608. image: {
  29609. source: "./media/characters/lawrence/maw.svg"
  29610. }
  29611. },
  29612. footBottom: {
  29613. height: math.unit(0.5, "meter"),
  29614. name: "Foot (Bottom)",
  29615. image: {
  29616. source: "./media/characters/lawrence/foot-bottom.svg"
  29617. }
  29618. },
  29619. footTop: {
  29620. height: math.unit(0.5, "meter"),
  29621. name: "Foot (Top)",
  29622. image: {
  29623. source: "./media/characters/lawrence/foot-top.svg"
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(2.5, "meters"),
  29631. default: true
  29632. },
  29633. {
  29634. name: "Macro",
  29635. height: math.unit(95, "meters")
  29636. },
  29637. {
  29638. name: "Megamacro",
  29639. height: math.unit(150, "km")
  29640. },
  29641. ]
  29642. ))
  29643. characterMakers.push(() => makeCharacter(
  29644. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29645. {
  29646. front: {
  29647. height: math.unit(4.2, "meters"),
  29648. name: "Front",
  29649. image: {
  29650. source: "./media/characters/sydney/front.svg",
  29651. extra: 1323 / 1277,
  29652. bottom: 111 / 1434
  29653. }
  29654. },
  29655. },
  29656. [
  29657. {
  29658. name: "Normal",
  29659. height: math.unit(4.2, "meters"),
  29660. default: true
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29666. {
  29667. back: {
  29668. height: math.unit(201, "feet"),
  29669. name: "Back",
  29670. image: {
  29671. source: "./media/characters/jessica/back.svg",
  29672. extra: 273 / 259,
  29673. bottom: 7 / 280
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(201, "feet"),
  29681. default: true
  29682. },
  29683. {
  29684. name: "Megamacro",
  29685. height: math.unit(8, "miles")
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29691. {
  29692. side: {
  29693. height: math.unit(5.6, "m"),
  29694. weight: math.unit(8000, "kg"),
  29695. name: "Side",
  29696. image: {
  29697. source: "./media/characters/victoria/side.svg",
  29698. extra: 1542/1229,
  29699. bottom: 124/1666
  29700. }
  29701. },
  29702. maw: {
  29703. height: math.unit(7.14, "feet"),
  29704. name: "Maw",
  29705. image: {
  29706. source: "./media/characters/victoria/maw.svg"
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Normal",
  29713. height: math.unit(5.6, "m"),
  29714. default: true
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29720. {
  29721. front: {
  29722. height: math.unit(5 + 6 / 12, "feet"),
  29723. name: "Front",
  29724. image: {
  29725. source: "./media/characters/cat/front.svg",
  29726. extra: 1449/1295,
  29727. bottom: 34/1483
  29728. },
  29729. form: "cat",
  29730. default: true
  29731. },
  29732. back: {
  29733. height: math.unit(5 + 6 / 12, "feet"),
  29734. name: "Back",
  29735. image: {
  29736. source: "./media/characters/cat/back.svg",
  29737. extra: 1466/1301,
  29738. bottom: 19/1485
  29739. },
  29740. form: "cat"
  29741. },
  29742. taur: {
  29743. height: math.unit(7, "feet"),
  29744. name: "Taur",
  29745. image: {
  29746. source: "./media/characters/cat/taur.svg",
  29747. extra: 1389/1233,
  29748. bottom: 83/1472
  29749. },
  29750. form: "taur",
  29751. default: true
  29752. },
  29753. lucarioFront: {
  29754. height: math.unit(4, "feet"),
  29755. name: "Lucario (Front)",
  29756. image: {
  29757. source: "./media/characters/cat/lucario-front.svg",
  29758. extra: 1149/1019,
  29759. bottom: 84/1233
  29760. },
  29761. form: "lucario",
  29762. default: true
  29763. },
  29764. lucarioBack: {
  29765. height: math.unit(4, "feet"),
  29766. name: "Lucario (Back)",
  29767. image: {
  29768. source: "./media/characters/cat/lucario-back.svg",
  29769. extra: 1190/1059,
  29770. bottom: 33/1223
  29771. },
  29772. form: "lucario"
  29773. },
  29774. megaLucario: {
  29775. height: math.unit(4, "feet"),
  29776. name: "Mega Lucario",
  29777. image: {
  29778. source: "./media/characters/cat/mega-lucario.svg",
  29779. extra: 1515 / 1319,
  29780. bottom: 63 / 1578
  29781. },
  29782. form: "lucario"
  29783. },
  29784. nickit: {
  29785. height: math.unit(2, "feet"),
  29786. name: "Nickit",
  29787. image: {
  29788. source: "./media/characters/cat/nickit.svg",
  29789. extra: 1980 / 1585,
  29790. bottom: 102 / 2082
  29791. },
  29792. form: "nickit",
  29793. default: true
  29794. },
  29795. lopunnyFront: {
  29796. height: math.unit(5, "feet"),
  29797. name: "Lopunny (Front)",
  29798. image: {
  29799. source: "./media/characters/cat/lopunny-front.svg",
  29800. extra: 1782 / 1469,
  29801. bottom: 38 / 1820
  29802. },
  29803. form: "lopunny",
  29804. default: true
  29805. },
  29806. lopunnyBack: {
  29807. height: math.unit(5, "feet"),
  29808. name: "Lopunny (Back)",
  29809. image: {
  29810. source: "./media/characters/cat/lopunny-back.svg",
  29811. extra: 1660 / 1490,
  29812. bottom: 25 / 1685
  29813. },
  29814. form: "lopunny"
  29815. },
  29816. },
  29817. [
  29818. {
  29819. name: "Really small",
  29820. height: math.unit(1, "nm")
  29821. },
  29822. {
  29823. name: "Micro",
  29824. height: math.unit(5, "inches")
  29825. },
  29826. {
  29827. name: "Normal",
  29828. height: math.unit(5 + 6 / 12, "feet"),
  29829. default: true
  29830. },
  29831. {
  29832. name: "Macro",
  29833. height: math.unit(50, "feet")
  29834. },
  29835. {
  29836. name: "Macro+",
  29837. height: math.unit(150, "feet")
  29838. },
  29839. {
  29840. name: "Megamacro",
  29841. height: math.unit(100, "miles")
  29842. },
  29843. ]
  29844. ))
  29845. characterMakers.push(() => makeCharacter(
  29846. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29847. {
  29848. front: {
  29849. height: math.unit(63.4, "meters"),
  29850. weight: math.unit(3.28349e+6, "kilograms"),
  29851. name: "Front",
  29852. image: {
  29853. source: "./media/characters/kirina-violet/front.svg",
  29854. extra: 2812 / 2725,
  29855. bottom: 0 / 2812
  29856. }
  29857. },
  29858. back: {
  29859. height: math.unit(63.4, "meters"),
  29860. weight: math.unit(3.28349e+6, "kilograms"),
  29861. name: "Back",
  29862. image: {
  29863. source: "./media/characters/kirina-violet/back.svg",
  29864. extra: 2812 / 2725,
  29865. bottom: 0 / 2812
  29866. }
  29867. },
  29868. mouth: {
  29869. height: math.unit(4.35, "meters"),
  29870. name: "Mouth",
  29871. image: {
  29872. source: "./media/characters/kirina-violet/mouth.svg"
  29873. }
  29874. },
  29875. paw: {
  29876. height: math.unit(5.6, "meters"),
  29877. name: "Paw",
  29878. image: {
  29879. source: "./media/characters/kirina-violet/paw.svg"
  29880. }
  29881. },
  29882. tail: {
  29883. height: math.unit(18, "meters"),
  29884. name: "Tail",
  29885. image: {
  29886. source: "./media/characters/kirina-violet/tail.svg"
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Macro",
  29893. height: math.unit(63.4, "meters"),
  29894. default: true
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29900. {
  29901. front: {
  29902. height: math.unit(75, "feet"),
  29903. name: "Front",
  29904. image: {
  29905. source: "./media/characters/cat-gigachu/front.svg",
  29906. extra: 1239/1027,
  29907. bottom: 32/1271
  29908. }
  29909. },
  29910. back: {
  29911. height: math.unit(75, "feet"),
  29912. name: "Back",
  29913. image: {
  29914. source: "./media/characters/cat-gigachu/back.svg",
  29915. extra: 1229/1030,
  29916. bottom: 9/1238
  29917. }
  29918. },
  29919. },
  29920. [
  29921. {
  29922. name: "Dynamax",
  29923. height: math.unit(75, "feet"),
  29924. default: true
  29925. },
  29926. ]
  29927. ))
  29928. characterMakers.push(() => makeCharacter(
  29929. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29930. {
  29931. front: {
  29932. height: math.unit(6, "feet"),
  29933. weight: math.unit(150, "lb"),
  29934. name: "Front",
  29935. image: {
  29936. source: "./media/characters/sfaiyan/front.svg",
  29937. extra: 999 / 978,
  29938. bottom: 5 / 1004
  29939. }
  29940. },
  29941. },
  29942. [
  29943. {
  29944. name: "Normal",
  29945. height: math.unit(1.82, "meters")
  29946. },
  29947. {
  29948. name: "Giant",
  29949. height: math.unit(2.27, "km"),
  29950. default: true
  29951. },
  29952. ]
  29953. ))
  29954. characterMakers.push(() => makeCharacter(
  29955. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29956. {
  29957. front: {
  29958. height: math.unit(179, "cm"),
  29959. weight: math.unit(100, "kg"),
  29960. name: "Front",
  29961. image: {
  29962. source: "./media/characters/raunehkeli/front.svg",
  29963. extra: 1934 / 1926,
  29964. bottom: 0 / 1934
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(179, "cm")
  29972. },
  29973. {
  29974. name: "Maximum",
  29975. height: math.unit(575, "meters"),
  29976. default: true
  29977. },
  29978. ]
  29979. ))
  29980. characterMakers.push(() => makeCharacter(
  29981. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29982. {
  29983. front: {
  29984. height: math.unit(6, "feet"),
  29985. weight: math.unit(150, "lb"),
  29986. name: "Front",
  29987. image: {
  29988. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29989. extra: 2625 / 2518,
  29990. bottom: 60 / 2685
  29991. }
  29992. },
  29993. },
  29994. [
  29995. {
  29996. name: "Normal",
  29997. height: math.unit(6 + 2 / 12, "feet")
  29998. },
  29999. {
  30000. name: "Macro",
  30001. height: math.unit(1180, "feet"),
  30002. default: true
  30003. },
  30004. ]
  30005. ))
  30006. characterMakers.push(() => makeCharacter(
  30007. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30008. {
  30009. front: {
  30010. height: math.unit(5 + 6 / 12, "feet"),
  30011. weight: math.unit(108, "lb"),
  30012. name: "Front",
  30013. image: {
  30014. source: "./media/characters/lilith-zott/front.svg",
  30015. extra: 2510 / 2238,
  30016. bottom: 100 / 2610
  30017. }
  30018. },
  30019. frontDressed: {
  30020. height: math.unit(5 + 6 / 12, "feet"),
  30021. weight: math.unit(108, "lb"),
  30022. name: "Front (Dressed)",
  30023. image: {
  30024. source: "./media/characters/lilith-zott/front-dressed.svg",
  30025. extra: 2510 / 2238,
  30026. bottom: 100 / 2610
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Normal",
  30033. height: math.unit(5 + 6 / 12, "feet")
  30034. },
  30035. {
  30036. name: "Macro",
  30037. height: math.unit(1030, "feet"),
  30038. default: true
  30039. },
  30040. ]
  30041. ))
  30042. characterMakers.push(() => makeCharacter(
  30043. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30044. {
  30045. front: {
  30046. height: math.unit(6, "feet"),
  30047. weight: math.unit(150, "lb"),
  30048. name: "Front",
  30049. image: {
  30050. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30051. extra: 2567 / 2435,
  30052. bottom: 39 / 2606
  30053. }
  30054. },
  30055. frontSuper: {
  30056. height: math.unit(6, "feet"),
  30057. name: "Front (Super)",
  30058. image: {
  30059. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30060. extra: 2567 / 2435,
  30061. bottom: 39 / 2606
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(5 + 10 / 12, "feet")
  30069. },
  30070. {
  30071. name: "Macro",
  30072. height: math.unit(1100, "feet"),
  30073. default: true
  30074. },
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30079. {
  30080. front: {
  30081. height: math.unit(100, "miles"),
  30082. name: "Front",
  30083. image: {
  30084. source: "./media/characters/sona/front.svg",
  30085. extra: 2433 / 2201,
  30086. bottom: 53 / 2486
  30087. }
  30088. },
  30089. foot: {
  30090. height: math.unit(16.1, "miles"),
  30091. name: "Foot",
  30092. image: {
  30093. source: "./media/characters/sona/foot.svg"
  30094. }
  30095. },
  30096. },
  30097. [
  30098. {
  30099. name: "Macro",
  30100. height: math.unit(100, "miles"),
  30101. default: true
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30107. {
  30108. front: {
  30109. height: math.unit(6, "feet"),
  30110. weight: math.unit(150, "lb"),
  30111. name: "Front",
  30112. image: {
  30113. source: "./media/characters/bailey/front.svg",
  30114. extra: 1778 / 1724,
  30115. bottom: 30 / 1808
  30116. }
  30117. },
  30118. },
  30119. [
  30120. {
  30121. name: "Micro",
  30122. height: math.unit(4, "inches")
  30123. },
  30124. {
  30125. name: "Normal",
  30126. height: math.unit(5 + 5 / 12, "feet"),
  30127. default: true
  30128. },
  30129. {
  30130. name: "Macro",
  30131. height: math.unit(250, "feet")
  30132. },
  30133. {
  30134. name: "Megamacro",
  30135. height: math.unit(100, "miles")
  30136. },
  30137. ]
  30138. ))
  30139. characterMakers.push(() => makeCharacter(
  30140. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30141. {
  30142. front: {
  30143. height: math.unit(5 + 2 / 12, "feet"),
  30144. weight: math.unit(120, "lb"),
  30145. name: "Front",
  30146. image: {
  30147. source: "./media/characters/snaps/front.svg",
  30148. extra: 2370 / 2177,
  30149. bottom: 48 / 2418
  30150. }
  30151. },
  30152. back: {
  30153. height: math.unit(5 + 2 / 12, "feet"),
  30154. weight: math.unit(120, "lb"),
  30155. name: "Back",
  30156. image: {
  30157. source: "./media/characters/snaps/back.svg",
  30158. extra: 2408 / 2258,
  30159. bottom: 15 / 2423
  30160. }
  30161. },
  30162. },
  30163. [
  30164. {
  30165. name: "Micro",
  30166. height: math.unit(9, "inches")
  30167. },
  30168. {
  30169. name: "Normal",
  30170. height: math.unit(5 + 2 / 12, "feet"),
  30171. default: true
  30172. },
  30173. {
  30174. name: "Mini Macro",
  30175. height: math.unit(10, "feet")
  30176. },
  30177. ]
  30178. ))
  30179. characterMakers.push(() => makeCharacter(
  30180. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30181. {
  30182. front: {
  30183. height: math.unit(1.8, "meters"),
  30184. weight: math.unit(85, "kg"),
  30185. name: "Front",
  30186. image: {
  30187. source: "./media/characters/azteck/front.svg",
  30188. extra: 2815 / 2625,
  30189. bottom: 89 / 2904
  30190. }
  30191. },
  30192. back: {
  30193. height: math.unit(1.8, "meters"),
  30194. weight: math.unit(85, "kg"),
  30195. name: "Back",
  30196. image: {
  30197. source: "./media/characters/azteck/back.svg",
  30198. extra: 2856 / 2648,
  30199. bottom: 85 / 2941
  30200. }
  30201. },
  30202. frontDressed: {
  30203. height: math.unit(1.8, "meters"),
  30204. weight: math.unit(85, "kg"),
  30205. name: "Front (Dressed)",
  30206. image: {
  30207. source: "./media/characters/azteck/front-dressed.svg",
  30208. extra: 2147 / 2003,
  30209. bottom: 68 / 2215
  30210. }
  30211. },
  30212. head: {
  30213. height: math.unit(0.47, "meters"),
  30214. weight: math.unit(85, "kg"),
  30215. name: "Head",
  30216. image: {
  30217. source: "./media/characters/azteck/head.svg"
  30218. }
  30219. },
  30220. },
  30221. [
  30222. {
  30223. name: "Bite sized",
  30224. height: math.unit(16, "cm")
  30225. },
  30226. {
  30227. name: "Normal",
  30228. height: math.unit(1.8, "meters"),
  30229. default: true
  30230. },
  30231. ]
  30232. ))
  30233. characterMakers.push(() => makeCharacter(
  30234. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30235. {
  30236. front: {
  30237. height: math.unit(6, "feet"),
  30238. weight: math.unit(150, "lb"),
  30239. name: "Front",
  30240. image: {
  30241. source: "./media/characters/pidge/front.svg",
  30242. extra: 1936/1820,
  30243. bottom: 0/1936
  30244. }
  30245. },
  30246. back: {
  30247. height: math.unit(6, "feet"),
  30248. weight: math.unit(150, "lb"),
  30249. name: "Back",
  30250. image: {
  30251. source: "./media/characters/pidge/back.svg",
  30252. extra: 1938/1843,
  30253. bottom: 0/1938
  30254. }
  30255. },
  30256. casual: {
  30257. height: math.unit(6, "feet"),
  30258. weight: math.unit(150, "lb"),
  30259. name: "Casual",
  30260. image: {
  30261. source: "./media/characters/pidge/casual.svg",
  30262. extra: 1936/1820,
  30263. bottom: 0/1936
  30264. }
  30265. },
  30266. tech: {
  30267. height: math.unit(6, "feet"),
  30268. weight: math.unit(150, "lb"),
  30269. name: "Tech",
  30270. image: {
  30271. source: "./media/characters/pidge/tech.svg",
  30272. extra: 1802/1682,
  30273. bottom: 0/1802
  30274. }
  30275. },
  30276. head: {
  30277. height: math.unit(1.61, "feet"),
  30278. name: "Head",
  30279. image: {
  30280. source: "./media/characters/pidge/head.svg"
  30281. }
  30282. },
  30283. collar: {
  30284. height: math.unit(0.82, "feet"),
  30285. name: "Collar",
  30286. image: {
  30287. source: "./media/characters/pidge/collar.svg"
  30288. }
  30289. },
  30290. },
  30291. [
  30292. {
  30293. name: "Macro",
  30294. height: math.unit(2, "mile"),
  30295. default: true
  30296. },
  30297. {
  30298. name: "PUPPY",
  30299. height: math.unit(20, "miles")
  30300. },
  30301. ]
  30302. ))
  30303. characterMakers.push(() => makeCharacter(
  30304. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30305. {
  30306. front: {
  30307. height: math.unit(6, "feet"),
  30308. weight: math.unit(150, "lb"),
  30309. name: "Front",
  30310. image: {
  30311. source: "./media/characters/en/front.svg",
  30312. extra: 1697 / 1563,
  30313. bottom: 103 / 1800
  30314. }
  30315. },
  30316. back: {
  30317. height: math.unit(6, "feet"),
  30318. weight: math.unit(150, "lb"),
  30319. name: "Back",
  30320. image: {
  30321. source: "./media/characters/en/back.svg",
  30322. extra: 1700 / 1570,
  30323. bottom: 51 / 1751
  30324. }
  30325. },
  30326. frontDressed: {
  30327. height: math.unit(6, "feet"),
  30328. weight: math.unit(150, "lb"),
  30329. name: "Front (Dressed)",
  30330. image: {
  30331. source: "./media/characters/en/front-dressed.svg",
  30332. extra: 1697 / 1563,
  30333. bottom: 103 / 1800
  30334. }
  30335. },
  30336. backDressed: {
  30337. height: math.unit(6, "feet"),
  30338. weight: math.unit(150, "lb"),
  30339. name: "Back (Dressed)",
  30340. image: {
  30341. source: "./media/characters/en/back-dressed.svg",
  30342. extra: 1700 / 1570,
  30343. bottom: 51 / 1751
  30344. }
  30345. },
  30346. },
  30347. [
  30348. {
  30349. name: "Macro",
  30350. height: math.unit(210, "feet"),
  30351. default: true
  30352. },
  30353. ]
  30354. ))
  30355. characterMakers.push(() => makeCharacter(
  30356. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30357. {
  30358. front: {
  30359. height: math.unit(6, "feet"),
  30360. weight: math.unit(150, "lb"),
  30361. name: "Front",
  30362. image: {
  30363. source: "./media/characters/haze-orris/front.svg",
  30364. extra: 3975 / 3525,
  30365. bottom: 137 / 4112
  30366. }
  30367. },
  30368. },
  30369. [
  30370. {
  30371. name: "Micro",
  30372. height: math.unit(150, "mm"),
  30373. default: true
  30374. },
  30375. ]
  30376. ))
  30377. characterMakers.push(() => makeCharacter(
  30378. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30379. {
  30380. front: {
  30381. height: math.unit(6, "feet"),
  30382. weight: math.unit(150, "lb"),
  30383. name: "Front",
  30384. image: {
  30385. source: "./media/characters/casselene-yaro/front.svg",
  30386. extra: 4721 / 4541,
  30387. bottom: 82 / 4803
  30388. }
  30389. },
  30390. back: {
  30391. height: math.unit(6, "feet"),
  30392. weight: math.unit(150, "lb"),
  30393. name: "Back",
  30394. image: {
  30395. source: "./media/characters/casselene-yaro/back.svg",
  30396. extra: 4569 / 4377,
  30397. bottom: 69 / 4638
  30398. }
  30399. },
  30400. dressed: {
  30401. height: math.unit(6, "feet"),
  30402. weight: math.unit(150, "lb"),
  30403. name: "Dressed",
  30404. image: {
  30405. source: "./media/characters/casselene-yaro/dressed.svg",
  30406. extra: 4721 / 4541,
  30407. bottom: 82 / 4803
  30408. }
  30409. },
  30410. maw: {
  30411. height: math.unit(1, "feet"),
  30412. name: "Maw",
  30413. image: {
  30414. source: "./media/characters/casselene-yaro/maw.svg"
  30415. }
  30416. },
  30417. },
  30418. [
  30419. {
  30420. name: "Macro",
  30421. height: math.unit(190, "feet"),
  30422. default: true
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(10, "feet"),
  30431. weight: math.unit(15015, "lb"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/platine/front.svg",
  30435. extra: 1428/1353,
  30436. bottom: 31/1459
  30437. }
  30438. },
  30439. },
  30440. [
  30441. {
  30442. name: "Normal",
  30443. height: math.unit(10, "feet"),
  30444. default: true
  30445. },
  30446. {
  30447. name: "Macro",
  30448. height: math.unit(100, "feet")
  30449. },
  30450. {
  30451. name: "Megamacro",
  30452. height: math.unit(1000, "feet")
  30453. },
  30454. ]
  30455. ))
  30456. characterMakers.push(() => makeCharacter(
  30457. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30458. {
  30459. front: {
  30460. height: math.unit(15 + 5 / 12, "feet"),
  30461. weight: math.unit(4600, "lb"),
  30462. name: "Front",
  30463. image: {
  30464. source: "./media/characters/neapolitan-ananassa/front.svg",
  30465. extra: 2903 / 2736,
  30466. bottom: 0 / 2903
  30467. }
  30468. },
  30469. side: {
  30470. height: math.unit(15 + 5 / 12, "feet"),
  30471. weight: math.unit(4600, "lb"),
  30472. name: "Side",
  30473. image: {
  30474. source: "./media/characters/neapolitan-ananassa/side.svg",
  30475. extra: 2925 / 2719,
  30476. bottom: 0 / 2925
  30477. }
  30478. },
  30479. back: {
  30480. height: math.unit(15 + 5 / 12, "feet"),
  30481. weight: math.unit(4600, "lb"),
  30482. name: "Back",
  30483. image: {
  30484. source: "./media/characters/neapolitan-ananassa/back.svg",
  30485. extra: 2903 / 2736,
  30486. bottom: 0 / 2903
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Normal",
  30493. height: math.unit(15 + 5 / 12, "feet"),
  30494. default: true
  30495. },
  30496. {
  30497. name: "Post-Millenium",
  30498. height: math.unit(35 + 5 / 12, "feet")
  30499. },
  30500. {
  30501. name: "Post-Era",
  30502. height: math.unit(450 + 5 / 12, "feet")
  30503. },
  30504. ]
  30505. ))
  30506. characterMakers.push(() => makeCharacter(
  30507. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30508. {
  30509. front: {
  30510. height: math.unit(300, "meters"),
  30511. weight: math.unit(125000, "tonnes"),
  30512. name: "Front",
  30513. image: {
  30514. source: "./media/characters/pazuzu/front.svg",
  30515. extra: 877 / 794,
  30516. bottom: 47 / 924
  30517. }
  30518. },
  30519. },
  30520. [
  30521. {
  30522. name: "Macro",
  30523. height: math.unit(300, "meters"),
  30524. default: true
  30525. },
  30526. ]
  30527. ))
  30528. characterMakers.push(() => makeCharacter(
  30529. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30530. {
  30531. side: {
  30532. height: math.unit(10 + 7 / 12, "feet"),
  30533. weight: math.unit(2.5, "tons"),
  30534. name: "Side",
  30535. image: {
  30536. source: "./media/characters/aasha/side.svg",
  30537. extra: 1345 / 1245,
  30538. bottom: 111 / 1456
  30539. }
  30540. },
  30541. back: {
  30542. height: math.unit(10 + 7 / 12, "feet"),
  30543. weight: math.unit(2.5, "tons"),
  30544. name: "Back",
  30545. image: {
  30546. source: "./media/characters/aasha/back.svg",
  30547. extra: 1133 / 1057,
  30548. bottom: 257 / 1390
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Normal",
  30555. height: math.unit(10 + 7 / 12, "feet"),
  30556. default: true
  30557. },
  30558. ]
  30559. ))
  30560. characterMakers.push(() => makeCharacter(
  30561. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30562. {
  30563. front: {
  30564. height: math.unit(6 + 3 / 12, "feet"),
  30565. name: "Front",
  30566. image: {
  30567. source: "./media/characters/nevan/front.svg",
  30568. extra: 704 / 704,
  30569. bottom: 28 / 732
  30570. }
  30571. },
  30572. back: {
  30573. height: math.unit(6 + 3 / 12, "feet"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/nevan/back.svg",
  30577. extra: 714 / 714,
  30578. bottom: 21 / 735
  30579. }
  30580. },
  30581. frontFlaccid: {
  30582. height: math.unit(6 + 3 / 12, "feet"),
  30583. name: "Front (Flaccid)",
  30584. image: {
  30585. source: "./media/characters/nevan/front-flaccid.svg",
  30586. extra: 704 / 704,
  30587. bottom: 28 / 732
  30588. }
  30589. },
  30590. frontErect: {
  30591. height: math.unit(6 + 3 / 12, "feet"),
  30592. name: "Front (Erect)",
  30593. image: {
  30594. source: "./media/characters/nevan/front-erect.svg",
  30595. extra: 704 / 704,
  30596. bottom: 28 / 732
  30597. }
  30598. },
  30599. backFlaccid: {
  30600. height: math.unit(6 + 3 / 12, "feet"),
  30601. name: "Back (Flaccid)",
  30602. image: {
  30603. source: "./media/characters/nevan/back-flaccid.svg",
  30604. extra: 714 / 714,
  30605. bottom: 21 / 735
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Normal",
  30612. height: math.unit(6 + 3 / 12, "feet"),
  30613. default: true
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(4, "feet"),
  30622. name: "Front",
  30623. image: {
  30624. source: "./media/characters/arhan/front.svg",
  30625. extra: 3368 / 3133,
  30626. bottom: 0 / 3368
  30627. }
  30628. },
  30629. side: {
  30630. height: math.unit(4, "feet"),
  30631. name: "Side",
  30632. image: {
  30633. source: "./media/characters/arhan/side.svg",
  30634. extra: 3347 / 3105,
  30635. bottom: 0 / 3347
  30636. }
  30637. },
  30638. tongue: {
  30639. height: math.unit(1.42, "feet"),
  30640. name: "Tongue",
  30641. image: {
  30642. source: "./media/characters/arhan/tongue.svg"
  30643. }
  30644. },
  30645. head: {
  30646. height: math.unit(0.85, "feet"),
  30647. name: "Head",
  30648. image: {
  30649. source: "./media/characters/arhan/head.svg"
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Normal",
  30656. height: math.unit(4, "feet"),
  30657. default: true
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30663. {
  30664. front: {
  30665. height: math.unit(5 + 7.5 / 12, "feet"),
  30666. weight: math.unit(120, "lb"),
  30667. name: "Front",
  30668. image: {
  30669. source: "./media/characters/digi-duncan/front.svg",
  30670. extra: 330 / 326,
  30671. bottom: 16 / 346
  30672. }
  30673. },
  30674. side: {
  30675. height: math.unit(5 + 7.5 / 12, "feet"),
  30676. weight: math.unit(120, "lb"),
  30677. name: "Side",
  30678. image: {
  30679. source: "./media/characters/digi-duncan/side.svg",
  30680. extra: 341 / 337,
  30681. bottom: 1 / 342
  30682. }
  30683. },
  30684. back: {
  30685. height: math.unit(5 + 7.5 / 12, "feet"),
  30686. weight: math.unit(120, "lb"),
  30687. name: "Back",
  30688. image: {
  30689. source: "./media/characters/digi-duncan/back.svg",
  30690. extra: 330 / 326,
  30691. bottom: 12 / 342
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Speck",
  30698. height: math.unit(0.25, "mm")
  30699. },
  30700. {
  30701. name: "Micro",
  30702. height: math.unit(5, "mm")
  30703. },
  30704. {
  30705. name: "Tiny",
  30706. height: math.unit(0.5, "inches"),
  30707. default: true
  30708. },
  30709. {
  30710. name: "Human",
  30711. height: math.unit(5 + 7.5 / 12, "feet")
  30712. },
  30713. {
  30714. name: "Minigiant",
  30715. height: math.unit(8 + 5.25, "feet")
  30716. },
  30717. {
  30718. name: "Giant",
  30719. height: math.unit(2000, "feet")
  30720. },
  30721. {
  30722. name: "Mega",
  30723. height: math.unit(371.1, "miles")
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30729. {
  30730. front: {
  30731. height: math.unit(2, "meters"),
  30732. weight: math.unit(350, "kg"),
  30733. name: "Front",
  30734. image: {
  30735. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30736. extra: 898 / 838,
  30737. bottom: 9 / 907
  30738. }
  30739. },
  30740. },
  30741. [
  30742. {
  30743. name: "Micro",
  30744. height: math.unit(8, "meters")
  30745. },
  30746. {
  30747. name: "Normal",
  30748. height: math.unit(50, "meters"),
  30749. default: true
  30750. },
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(500, "meters")
  30754. },
  30755. ]
  30756. ))
  30757. characterMakers.push(() => makeCharacter(
  30758. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30759. {
  30760. front: {
  30761. height: math.unit(6 + 6 / 12, "feet"),
  30762. name: "Front",
  30763. image: {
  30764. source: "./media/characters/khardesh/front.svg",
  30765. extra: 1788/1596,
  30766. bottom: 66/1854
  30767. }
  30768. },
  30769. back: {
  30770. height: math.unit(6 + 6 / 12, "feet"),
  30771. name: "Back",
  30772. image: {
  30773. source: "./media/characters/khardesh/back.svg",
  30774. extra: 1781/1584,
  30775. bottom: 68/1849
  30776. }
  30777. },
  30778. },
  30779. [
  30780. {
  30781. name: "Normal",
  30782. height: math.unit(6 + 6 / 12, "feet"),
  30783. default: true
  30784. },
  30785. {
  30786. name: "Normal+",
  30787. height: math.unit(4, "meters")
  30788. },
  30789. {
  30790. name: "Macro",
  30791. height: math.unit(50, "meters")
  30792. },
  30793. {
  30794. name: "Macro+",
  30795. height: math.unit(100, "meters")
  30796. },
  30797. {
  30798. name: "Megamacro",
  30799. height: math.unit(20, "km")
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(6, "feet"),
  30808. weight: math.unit(150, "lb"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/kosho/front.svg",
  30812. extra: 1847 / 1847,
  30813. bottom: 86 / 1933
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Second-stage micro",
  30820. height: math.unit(0.5, "inches")
  30821. },
  30822. {
  30823. name: "First-stage micro",
  30824. height: math.unit(6, "inches")
  30825. },
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(6, "feet"),
  30829. default: true
  30830. },
  30831. {
  30832. name: "First-stage macro",
  30833. height: math.unit(72, "feet")
  30834. },
  30835. {
  30836. name: "Second-stage macro",
  30837. height: math.unit(864, "feet")
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30843. {
  30844. normal: {
  30845. height: math.unit(4 + 6 / 12, "feet"),
  30846. name: "Normal",
  30847. image: {
  30848. source: "./media/characters/hydra/normal.svg",
  30849. extra: 2833 / 2634,
  30850. bottom: 68 / 2901
  30851. }
  30852. },
  30853. smol: {
  30854. height: math.unit(0.705, "inches"),
  30855. name: "Smol",
  30856. image: {
  30857. source: "./media/characters/hydra/smol.svg",
  30858. extra: 2715 / 2540,
  30859. bottom: 0 / 2715
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(4 + 6 / 12, "feet"),
  30867. default: true
  30868. }
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30873. {
  30874. front: {
  30875. height: math.unit(0.6, "cm"),
  30876. name: "Front",
  30877. image: {
  30878. source: "./media/characters/daz/front.svg",
  30879. extra: 1682 / 1164,
  30880. bottom: 42 / 1724
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(0.6, "cm"),
  30888. default: true
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(6, "feet"),
  30897. weight: math.unit(235, "lb"),
  30898. name: "Front",
  30899. image: {
  30900. source: "./media/characters/theo-pangolin/front.svg",
  30901. extra: 1996 / 1969,
  30902. bottom: 115 / 2111
  30903. }
  30904. },
  30905. back: {
  30906. height: math.unit(6, "feet"),
  30907. weight: math.unit(235, "lb"),
  30908. name: "Back",
  30909. image: {
  30910. source: "./media/characters/theo-pangolin/back.svg",
  30911. extra: 1979 / 1979,
  30912. bottom: 40 / 2019
  30913. }
  30914. },
  30915. feral: {
  30916. height: math.unit(2, "feet"),
  30917. weight: math.unit(30, "lb"),
  30918. name: "Feral",
  30919. image: {
  30920. source: "./media/characters/theo-pangolin/feral.svg",
  30921. extra: 803 / 791,
  30922. bottom: 181 / 984
  30923. }
  30924. },
  30925. footFive: {
  30926. height: math.unit(1.43, "feet"),
  30927. name: "Foot (Five Toes)",
  30928. image: {
  30929. source: "./media/characters/theo-pangolin/foot-five.svg"
  30930. }
  30931. },
  30932. footFour: {
  30933. height: math.unit(1.43, "feet"),
  30934. name: "Foot (Four Toes)",
  30935. image: {
  30936. source: "./media/characters/theo-pangolin/foot-four.svg"
  30937. }
  30938. },
  30939. handFour: {
  30940. height: math.unit(0.81, "feet"),
  30941. name: "Hand (Four Fingers)",
  30942. image: {
  30943. source: "./media/characters/theo-pangolin/hand-four.svg"
  30944. }
  30945. },
  30946. handThree: {
  30947. height: math.unit(0.81, "feet"),
  30948. name: "Hand (Three Fingers)",
  30949. image: {
  30950. source: "./media/characters/theo-pangolin/hand-three.svg"
  30951. }
  30952. },
  30953. headFront: {
  30954. height: math.unit(1.37, "feet"),
  30955. name: "Head (Front)",
  30956. image: {
  30957. source: "./media/characters/theo-pangolin/head-front.svg"
  30958. }
  30959. },
  30960. headSide: {
  30961. height: math.unit(1.43, "feet"),
  30962. name: "Head (Side)",
  30963. image: {
  30964. source: "./media/characters/theo-pangolin/head-side.svg"
  30965. }
  30966. },
  30967. tongue: {
  30968. height: math.unit(2.29, "feet"),
  30969. name: "Tongue",
  30970. image: {
  30971. source: "./media/characters/theo-pangolin/tongue.svg"
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Normal",
  30978. height: math.unit(6, "feet")
  30979. },
  30980. {
  30981. name: "Macro",
  30982. height: math.unit(400, "feet"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30989. {
  30990. front: {
  30991. height: math.unit(6, "inches"),
  30992. weight: math.unit(0.036, "kg"),
  30993. name: "Front",
  30994. image: {
  30995. source: "./media/characters/renée/front.svg",
  30996. extra: 900 / 886,
  30997. bottom: 8 / 908
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Nano",
  31004. height: math.unit(1, "nm")
  31005. },
  31006. {
  31007. name: "Micro",
  31008. height: math.unit(1, "mm")
  31009. },
  31010. {
  31011. name: "Normal",
  31012. height: math.unit(6, "inches")
  31013. },
  31014. {
  31015. name: "Macro",
  31016. height: math.unit(2000, "feet"),
  31017. default: true
  31018. },
  31019. {
  31020. name: "Megamacro",
  31021. height: math.unit(2, "km")
  31022. },
  31023. {
  31024. name: "Gigamacro",
  31025. height: math.unit(2000, "km")
  31026. },
  31027. {
  31028. name: "Teramacro",
  31029. height: math.unit(250000, "km")
  31030. },
  31031. ]
  31032. ))
  31033. characterMakers.push(() => makeCharacter(
  31034. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31035. {
  31036. front: {
  31037. height: math.unit(4, "meters"),
  31038. weight: math.unit(150, "kg"),
  31039. name: "Front",
  31040. image: {
  31041. source: "./media/characters/caledvwlch/front.svg",
  31042. extra: 1760 / 1551,
  31043. bottom: 28 / 1788
  31044. }
  31045. },
  31046. side: {
  31047. height: math.unit(4, "meters"),
  31048. weight: math.unit(150, "kg"),
  31049. name: "Side",
  31050. image: {
  31051. source: "./media/characters/caledvwlch/side.svg",
  31052. extra: 1605 / 1536,
  31053. bottom: 31 / 1636
  31054. }
  31055. },
  31056. back: {
  31057. height: math.unit(4, "meters"),
  31058. weight: math.unit(150, "kg"),
  31059. name: "Back",
  31060. image: {
  31061. source: "./media/characters/caledvwlch/back.svg",
  31062. extra: 1635 / 1565,
  31063. bottom: 27 / 1662
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "\"Incognito\"",
  31070. height: math.unit(4, "meters")
  31071. },
  31072. {
  31073. name: "Small rampage",
  31074. height: math.unit(600, "meters")
  31075. },
  31076. {
  31077. name: "Mega",
  31078. height: math.unit(30, "km")
  31079. },
  31080. {
  31081. name: "Home-size",
  31082. height: math.unit(50, "km"),
  31083. default: true
  31084. },
  31085. {
  31086. name: "Giga",
  31087. height: math.unit(300, "km")
  31088. },
  31089. {
  31090. name: "Lounging",
  31091. height: math.unit(11000, "km")
  31092. },
  31093. {
  31094. name: "Planet snacking",
  31095. height: math.unit(2000000, "km")
  31096. },
  31097. ]
  31098. ))
  31099. characterMakers.push(() => makeCharacter(
  31100. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31101. {
  31102. front: {
  31103. height: math.unit(6, "feet"),
  31104. weight: math.unit(215, "lb"),
  31105. name: "Front",
  31106. image: {
  31107. source: "./media/characters/sapphire-svell/front.svg",
  31108. extra: 495 / 455,
  31109. bottom: 20 / 515
  31110. }
  31111. },
  31112. back: {
  31113. height: math.unit(6, "feet"),
  31114. weight: math.unit(216, "lb"),
  31115. name: "Back",
  31116. image: {
  31117. source: "./media/characters/sapphire-svell/back.svg",
  31118. extra: 497 / 477,
  31119. bottom: 7 / 504
  31120. }
  31121. },
  31122. maw: {
  31123. height: math.unit(1.57, "feet"),
  31124. name: "Maw",
  31125. image: {
  31126. source: "./media/characters/sapphire-svell/maw.svg"
  31127. }
  31128. },
  31129. foot: {
  31130. height: math.unit(1.07, "feet"),
  31131. name: "Foot",
  31132. image: {
  31133. source: "./media/characters/sapphire-svell/foot.svg"
  31134. }
  31135. },
  31136. toering: {
  31137. height: math.unit(1.7, "inch"),
  31138. name: "Toering",
  31139. image: {
  31140. source: "./media/characters/sapphire-svell/toering.svg"
  31141. }
  31142. },
  31143. },
  31144. [
  31145. {
  31146. name: "Normal",
  31147. height: math.unit(300, "feet"),
  31148. default: true
  31149. },
  31150. {
  31151. name: "Augmented",
  31152. height: math.unit(1250, "feet")
  31153. },
  31154. {
  31155. name: "Unleashed",
  31156. height: math.unit(3000, "feet")
  31157. },
  31158. ]
  31159. ))
  31160. characterMakers.push(() => makeCharacter(
  31161. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31162. {
  31163. side: {
  31164. height: math.unit(2 + 3 / 12, "feet"),
  31165. weight: math.unit(110, "lb"),
  31166. name: "Side",
  31167. image: {
  31168. source: "./media/characters/glitch-flux/side.svg",
  31169. extra: 997 / 805,
  31170. bottom: 20 / 1017
  31171. }
  31172. },
  31173. },
  31174. [
  31175. {
  31176. name: "Normal",
  31177. height: math.unit(2 + 3 / 12, "feet"),
  31178. default: true
  31179. },
  31180. ]
  31181. ))
  31182. characterMakers.push(() => makeCharacter(
  31183. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31184. {
  31185. front: {
  31186. height: math.unit(4, "meters"),
  31187. name: "Front",
  31188. image: {
  31189. source: "./media/characters/mid/front.svg",
  31190. extra: 507 / 476,
  31191. bottom: 17 / 524
  31192. }
  31193. },
  31194. back: {
  31195. height: math.unit(4, "meters"),
  31196. name: "Back",
  31197. image: {
  31198. source: "./media/characters/mid/back.svg",
  31199. extra: 519 / 487,
  31200. bottom: 7 / 526
  31201. }
  31202. },
  31203. stuck: {
  31204. height: math.unit(2.2, "meters"),
  31205. name: "Stuck",
  31206. image: {
  31207. source: "./media/characters/mid/stuck.svg",
  31208. extra: 1951 / 1869,
  31209. bottom: 88 / 2039
  31210. }
  31211. }
  31212. },
  31213. [
  31214. {
  31215. name: "Normal",
  31216. height: math.unit(4, "meters"),
  31217. default: true
  31218. },
  31219. {
  31220. name: "Big",
  31221. height: math.unit(10, "meters")
  31222. },
  31223. {
  31224. name: "Macro",
  31225. height: math.unit(800, "meters")
  31226. },
  31227. {
  31228. name: "Megamacro",
  31229. height: math.unit(100, "km")
  31230. },
  31231. {
  31232. name: "Overgrown",
  31233. height: math.unit(1, "parsec")
  31234. },
  31235. ]
  31236. ))
  31237. characterMakers.push(() => makeCharacter(
  31238. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31239. {
  31240. front: {
  31241. height: math.unit(2.5, "meters"),
  31242. weight: math.unit(225, "kg"),
  31243. name: "Front",
  31244. image: {
  31245. source: "./media/characters/iris/front.svg",
  31246. extra: 3348 / 3251,
  31247. bottom: 205 / 3553
  31248. }
  31249. },
  31250. maw: {
  31251. height: math.unit(0.56, "meter"),
  31252. name: "Maw",
  31253. image: {
  31254. source: "./media/characters/iris/maw.svg"
  31255. }
  31256. },
  31257. },
  31258. [
  31259. {
  31260. name: "Mewter cat",
  31261. height: math.unit(1.2, "meters")
  31262. },
  31263. {
  31264. name: "Minimacro",
  31265. height: math.unit(2.5, "meters"),
  31266. default: true
  31267. },
  31268. {
  31269. name: "Macro",
  31270. height: math.unit(180, "meters")
  31271. },
  31272. {
  31273. name: "Megamacro",
  31274. height: math.unit(2746, "meters")
  31275. },
  31276. ]
  31277. ))
  31278. characterMakers.push(() => makeCharacter(
  31279. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31280. {
  31281. front: {
  31282. height: math.unit(6, "feet"),
  31283. weight: math.unit(135, "lb"),
  31284. name: "Front",
  31285. image: {
  31286. source: "./media/characters/axel/front.svg",
  31287. extra: 908 / 908,
  31288. bottom: 58 / 966
  31289. }
  31290. },
  31291. side: {
  31292. height: math.unit(6, "feet"),
  31293. weight: math.unit(135, "lb"),
  31294. name: "Side",
  31295. image: {
  31296. source: "./media/characters/axel/side.svg",
  31297. extra: 958 / 958,
  31298. bottom: 11 / 969
  31299. }
  31300. },
  31301. back: {
  31302. height: math.unit(6, "feet"),
  31303. weight: math.unit(135, "lb"),
  31304. name: "Back",
  31305. image: {
  31306. source: "./media/characters/axel/back.svg",
  31307. extra: 887 / 887,
  31308. bottom: 34 / 921
  31309. }
  31310. },
  31311. head: {
  31312. height: math.unit(1.07, "feet"),
  31313. name: "Head",
  31314. image: {
  31315. source: "./media/characters/axel/head.svg"
  31316. }
  31317. },
  31318. beak: {
  31319. height: math.unit(1.4, "feet"),
  31320. name: "Beak",
  31321. image: {
  31322. source: "./media/characters/axel/beak.svg"
  31323. }
  31324. },
  31325. beakSide: {
  31326. height: math.unit(1.4, "feet"),
  31327. name: "Beak Side",
  31328. image: {
  31329. source: "./media/characters/axel/beak-side.svg"
  31330. }
  31331. },
  31332. sheath: {
  31333. height: math.unit(0.5, "feet"),
  31334. name: "Sheath",
  31335. image: {
  31336. source: "./media/characters/axel/sheath.svg"
  31337. }
  31338. },
  31339. dick: {
  31340. height: math.unit(0.98, "feet"),
  31341. name: "Dick",
  31342. image: {
  31343. source: "./media/characters/axel/dick.svg"
  31344. }
  31345. },
  31346. },
  31347. [
  31348. {
  31349. name: "Macro",
  31350. height: math.unit(68, "meters"),
  31351. default: true
  31352. },
  31353. ]
  31354. ))
  31355. characterMakers.push(() => makeCharacter(
  31356. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31357. {
  31358. front: {
  31359. height: math.unit(3.5, "meters"),
  31360. weight: math.unit(1200, "kg"),
  31361. name: "Front",
  31362. image: {
  31363. source: "./media/characters/joanna/front.svg",
  31364. extra: 1596 / 1488,
  31365. bottom: 29 / 1625
  31366. }
  31367. },
  31368. back: {
  31369. height: math.unit(3.5, "meters"),
  31370. weight: math.unit(1200, "kg"),
  31371. name: "Back",
  31372. image: {
  31373. source: "./media/characters/joanna/back.svg",
  31374. extra: 1594 / 1495,
  31375. bottom: 26 / 1620
  31376. }
  31377. },
  31378. frontShorts: {
  31379. height: math.unit(3.5, "meters"),
  31380. weight: math.unit(1200, "kg"),
  31381. name: "Front (Shorts)",
  31382. image: {
  31383. source: "./media/characters/joanna/front-shorts.svg",
  31384. extra: 1596 / 1488,
  31385. bottom: 29 / 1625
  31386. }
  31387. },
  31388. frontBiker: {
  31389. height: math.unit(3.5, "meters"),
  31390. weight: math.unit(1200, "kg"),
  31391. name: "Front (Biker)",
  31392. image: {
  31393. source: "./media/characters/joanna/front-biker.svg",
  31394. extra: 1596 / 1488,
  31395. bottom: 29 / 1625
  31396. }
  31397. },
  31398. backBiker: {
  31399. height: math.unit(3.5, "meters"),
  31400. weight: math.unit(1200, "kg"),
  31401. name: "Back (Biker)",
  31402. image: {
  31403. source: "./media/characters/joanna/back-biker.svg",
  31404. extra: 1594 / 1495,
  31405. bottom: 88 / 1682
  31406. }
  31407. },
  31408. bikeLeft: {
  31409. height: math.unit(2.4, "meters"),
  31410. weight: math.unit(1600, "kg"),
  31411. name: "Bike (Left)",
  31412. image: {
  31413. source: "./media/characters/joanna/bike-left.svg",
  31414. extra: 720 / 720,
  31415. bottom: 8 / 728
  31416. }
  31417. },
  31418. bikeRight: {
  31419. height: math.unit(2.4, "meters"),
  31420. weight: math.unit(1600, "kg"),
  31421. name: "Bike (Right)",
  31422. image: {
  31423. source: "./media/characters/joanna/bike-right.svg",
  31424. extra: 720 / 720,
  31425. bottom: 8 / 728
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "Incognito",
  31432. height: math.unit(3.5, "meters")
  31433. },
  31434. {
  31435. name: "Casual Big",
  31436. height: math.unit(200, "meters")
  31437. },
  31438. {
  31439. name: "Macro",
  31440. height: math.unit(600, "meters")
  31441. },
  31442. {
  31443. name: "Original",
  31444. height: math.unit(20, "km"),
  31445. default: true
  31446. },
  31447. {
  31448. name: "Giga",
  31449. height: math.unit(400, "km")
  31450. },
  31451. {
  31452. name: "Lounging",
  31453. height: math.unit(1500, "km")
  31454. },
  31455. {
  31456. name: "Planetary",
  31457. height: math.unit(200000, "km")
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31463. {
  31464. front: {
  31465. height: math.unit(6, "feet"),
  31466. weight: math.unit(150, "lb"),
  31467. name: "Front",
  31468. image: {
  31469. source: "./media/characters/hugo-sigil/front.svg",
  31470. extra: 522 / 500,
  31471. bottom: 2 / 524
  31472. }
  31473. },
  31474. back: {
  31475. height: math.unit(6, "feet"),
  31476. weight: math.unit(150, "lb"),
  31477. name: "Back",
  31478. image: {
  31479. source: "./media/characters/hugo-sigil/back.svg",
  31480. extra: 519 / 495,
  31481. bottom: 5 / 524
  31482. }
  31483. },
  31484. maw: {
  31485. height: math.unit(1.4, "feet"),
  31486. weight: math.unit(150, "lb"),
  31487. name: "Maw",
  31488. image: {
  31489. source: "./media/characters/hugo-sigil/maw.svg"
  31490. }
  31491. },
  31492. feet: {
  31493. height: math.unit(1.56, "feet"),
  31494. weight: math.unit(150, "lb"),
  31495. name: "Feet",
  31496. image: {
  31497. source: "./media/characters/hugo-sigil/feet.svg",
  31498. extra: 177 / 177,
  31499. bottom: 12 / 189
  31500. }
  31501. },
  31502. },
  31503. [
  31504. {
  31505. name: "Normal",
  31506. height: math.unit(6, "feet")
  31507. },
  31508. {
  31509. name: "Macro",
  31510. height: math.unit(200, "feet"),
  31511. default: true
  31512. },
  31513. ]
  31514. ))
  31515. characterMakers.push(() => makeCharacter(
  31516. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31517. {
  31518. front: {
  31519. height: math.unit(6, "feet"),
  31520. weight: math.unit(150, "lb"),
  31521. name: "Front",
  31522. image: {
  31523. source: "./media/characters/peri/front.svg",
  31524. extra: 2354 / 2233,
  31525. bottom: 49 / 2403
  31526. }
  31527. },
  31528. },
  31529. [
  31530. {
  31531. name: "Really Small",
  31532. height: math.unit(1, "nm")
  31533. },
  31534. {
  31535. name: "Micro",
  31536. height: math.unit(4, "inches")
  31537. },
  31538. {
  31539. name: "Normal",
  31540. height: math.unit(7, "inches"),
  31541. default: true
  31542. },
  31543. {
  31544. name: "Macro",
  31545. height: math.unit(400, "feet")
  31546. },
  31547. {
  31548. name: "Megamacro",
  31549. height: math.unit(100, "miles")
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31555. {
  31556. frontSlim: {
  31557. height: math.unit(7, "feet"),
  31558. name: "Front (Slim)",
  31559. image: {
  31560. source: "./media/characters/issilora/front-slim.svg",
  31561. extra: 529 / 449,
  31562. bottom: 53 / 582
  31563. }
  31564. },
  31565. sideSlim: {
  31566. height: math.unit(7, "feet"),
  31567. name: "Side (Slim)",
  31568. image: {
  31569. source: "./media/characters/issilora/side-slim.svg",
  31570. extra: 570 / 480,
  31571. bottom: 30 / 600
  31572. }
  31573. },
  31574. backSlim: {
  31575. height: math.unit(7, "feet"),
  31576. name: "Back (Slim)",
  31577. image: {
  31578. source: "./media/characters/issilora/back-slim.svg",
  31579. extra: 537 / 455,
  31580. bottom: 46 / 583
  31581. }
  31582. },
  31583. frontBuff: {
  31584. height: math.unit(7, "feet"),
  31585. name: "Front (Buff)",
  31586. image: {
  31587. source: "./media/characters/issilora/front-buff.svg",
  31588. extra: 2310 / 2035,
  31589. bottom: 335 / 2645
  31590. }
  31591. },
  31592. head: {
  31593. height: math.unit(1.94, "feet"),
  31594. name: "Head",
  31595. image: {
  31596. source: "./media/characters/issilora/head.svg"
  31597. }
  31598. },
  31599. },
  31600. [
  31601. {
  31602. name: "Minimum",
  31603. height: math.unit(7, "feet")
  31604. },
  31605. {
  31606. name: "Comfortable",
  31607. height: math.unit(17, "feet")
  31608. },
  31609. {
  31610. name: "Fun Size",
  31611. height: math.unit(47, "feet")
  31612. },
  31613. {
  31614. name: "Natural Macro",
  31615. height: math.unit(137, "feet"),
  31616. default: true
  31617. },
  31618. {
  31619. name: "Maximum Kaiju",
  31620. height: math.unit(397, "feet")
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31626. {
  31627. front: {
  31628. height: math.unit(50 + 9/12, "feet"),
  31629. weight: math.unit(32.8, "tons"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/irb'iiritaahn/front.svg",
  31633. extra: 1878/1826,
  31634. bottom: 326/2204
  31635. }
  31636. },
  31637. back: {
  31638. height: math.unit(50 + 9/12, "feet"),
  31639. weight: math.unit(32.8, "tons"),
  31640. name: "Back",
  31641. image: {
  31642. source: "./media/characters/irb'iiritaahn/back.svg",
  31643. extra: 2052/2018,
  31644. bottom: 152/2204
  31645. }
  31646. },
  31647. head: {
  31648. height: math.unit(12.86, "feet"),
  31649. name: "Head",
  31650. image: {
  31651. source: "./media/characters/irb'iiritaahn/head.svg"
  31652. }
  31653. },
  31654. maw: {
  31655. height: math.unit(9.66, "feet"),
  31656. name: "Maw",
  31657. image: {
  31658. source: "./media/characters/irb'iiritaahn/maw.svg"
  31659. }
  31660. },
  31661. frontDick: {
  31662. height: math.unit(8.78461, "feet"),
  31663. name: "Front Dick",
  31664. image: {
  31665. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31666. }
  31667. },
  31668. rearDick: {
  31669. height: math.unit(8.78461, "feet"),
  31670. name: "Rear Dick",
  31671. image: {
  31672. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31673. }
  31674. },
  31675. rearDickUnfolded: {
  31676. height: math.unit(8.78, "feet"),
  31677. name: "Rear Dick (Unfolded)",
  31678. image: {
  31679. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31680. }
  31681. },
  31682. wings: {
  31683. height: math.unit(43, "feet"),
  31684. name: "Wings",
  31685. image: {
  31686. source: "./media/characters/irb'iiritaahn/wings.svg"
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Macro",
  31693. height: math.unit(50 + 9/12, "feet"),
  31694. default: true
  31695. },
  31696. ]
  31697. ))
  31698. characterMakers.push(() => makeCharacter(
  31699. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31700. {
  31701. front: {
  31702. height: math.unit(205, "cm"),
  31703. weight: math.unit(102, "kg"),
  31704. name: "Front",
  31705. image: {
  31706. source: "./media/characters/irbisgreif/front.svg",
  31707. extra: 785/706,
  31708. bottom: 13/798
  31709. }
  31710. },
  31711. back: {
  31712. height: math.unit(205, "cm"),
  31713. weight: math.unit(102, "kg"),
  31714. name: "Back",
  31715. image: {
  31716. source: "./media/characters/irbisgreif/back.svg",
  31717. extra: 713/701,
  31718. bottom: 26/739
  31719. }
  31720. },
  31721. frontDressed: {
  31722. height: math.unit(216, "cm"),
  31723. weight: math.unit(102, "kg"),
  31724. name: "Front-dressed",
  31725. image: {
  31726. source: "./media/characters/irbisgreif/front-dressed.svg",
  31727. extra: 902/776,
  31728. bottom: 14/916
  31729. }
  31730. },
  31731. sideDressed: {
  31732. height: math.unit(195, "cm"),
  31733. weight: math.unit(102, "kg"),
  31734. name: "Side-dressed",
  31735. image: {
  31736. source: "./media/characters/irbisgreif/side-dressed.svg",
  31737. extra: 788/688,
  31738. bottom: 21/809
  31739. }
  31740. },
  31741. backDressed: {
  31742. height: math.unit(216, "cm"),
  31743. weight: math.unit(102, "kg"),
  31744. name: "Back-dressed",
  31745. image: {
  31746. source: "./media/characters/irbisgreif/back-dressed.svg",
  31747. extra: 901/783,
  31748. bottom: 10/911
  31749. }
  31750. },
  31751. dick: {
  31752. height: math.unit(0.49, "feet"),
  31753. name: "Dick",
  31754. image: {
  31755. source: "./media/characters/irbisgreif/dick.svg"
  31756. }
  31757. },
  31758. wingTop: {
  31759. height: math.unit(1.93 , "feet"),
  31760. name: "Wing-top",
  31761. image: {
  31762. source: "./media/characters/irbisgreif/wing-top.svg"
  31763. }
  31764. },
  31765. wingBottom: {
  31766. height: math.unit(1.93 , "feet"),
  31767. name: "Wing-bottom",
  31768. image: {
  31769. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31770. }
  31771. },
  31772. },
  31773. [
  31774. {
  31775. name: "Normal",
  31776. height: math.unit(216, "cm"),
  31777. default: true
  31778. },
  31779. ]
  31780. ))
  31781. characterMakers.push(() => makeCharacter(
  31782. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31783. {
  31784. front: {
  31785. height: math.unit(6, "feet"),
  31786. weight: math.unit(150, "lb"),
  31787. name: "Front",
  31788. image: {
  31789. source: "./media/characters/pride/front.svg",
  31790. extra: 1299/1230,
  31791. bottom: 18/1317
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Normal",
  31798. height: math.unit(7, "feet")
  31799. },
  31800. {
  31801. name: "Mini-macro",
  31802. height: math.unit(11, "feet")
  31803. },
  31804. {
  31805. name: "Macro",
  31806. height: math.unit(15, "meters"),
  31807. default: true
  31808. },
  31809. {
  31810. name: "Macro+",
  31811. height: math.unit(40, "meters")
  31812. },
  31813. ]
  31814. ))
  31815. characterMakers.push(() => makeCharacter(
  31816. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31817. {
  31818. front: {
  31819. height: math.unit(4 + 2 / 12, "feet"),
  31820. weight: math.unit(95, "lb"),
  31821. name: "Front",
  31822. image: {
  31823. source: "./media/characters/vaelophis-nyx/front.svg",
  31824. extra: 2532/2330,
  31825. bottom: 0/2532
  31826. }
  31827. },
  31828. back: {
  31829. height: math.unit(4 + 2 / 12, "feet"),
  31830. weight: math.unit(95, "lb"),
  31831. name: "Back",
  31832. image: {
  31833. source: "./media/characters/vaelophis-nyx/back.svg",
  31834. extra: 2484/2361,
  31835. bottom: 0/2484
  31836. }
  31837. },
  31838. feralSide: {
  31839. height: math.unit(2 + 1/12, "feet"),
  31840. weight: math.unit(20, "lb"),
  31841. name: "Feral (Side)",
  31842. image: {
  31843. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31844. extra: 1721/1581,
  31845. bottom: 70/1791
  31846. }
  31847. },
  31848. feralLazing: {
  31849. height: math.unit(1.08, "feet"),
  31850. weight: math.unit(20, "lb"),
  31851. name: "Feral (Lazing)",
  31852. image: {
  31853. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31854. extra: 822/822,
  31855. bottom: 248/1070
  31856. }
  31857. },
  31858. ear: {
  31859. height: math.unit(0.416, "feet"),
  31860. name: "Ear",
  31861. image: {
  31862. source: "./media/characters/vaelophis-nyx/ear.svg"
  31863. }
  31864. },
  31865. eye: {
  31866. height: math.unit(0.0748, "feet"),
  31867. name: "Eye",
  31868. image: {
  31869. source: "./media/characters/vaelophis-nyx/eye.svg"
  31870. }
  31871. },
  31872. mouth: {
  31873. height: math.unit(0.378, "feet"),
  31874. name: "Mouth",
  31875. image: {
  31876. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31877. }
  31878. },
  31879. spade: {
  31880. height: math.unit(0.55, "feet"),
  31881. name: "Spade",
  31882. image: {
  31883. source: "./media/characters/vaelophis-nyx/spade.svg"
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Normal",
  31890. height: math.unit(4 + 2/12, "feet"),
  31891. default: true
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31897. {
  31898. front: {
  31899. height: math.unit(7, "feet"),
  31900. weight: math.unit(231, "lb"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/flux/front.svg",
  31904. extra: 919/871,
  31905. bottom: 0/919
  31906. }
  31907. },
  31908. back: {
  31909. height: math.unit(7, "feet"),
  31910. weight: math.unit(231, "lb"),
  31911. name: "Back",
  31912. image: {
  31913. source: "./media/characters/flux/back.svg",
  31914. extra: 1040/992,
  31915. bottom: 0/1040
  31916. }
  31917. },
  31918. frontDressed: {
  31919. height: math.unit(7, "feet"),
  31920. weight: math.unit(231, "lb"),
  31921. name: "Front (Dressed)",
  31922. image: {
  31923. source: "./media/characters/flux/front-dressed.svg",
  31924. extra: 919/871,
  31925. bottom: 0/919
  31926. }
  31927. },
  31928. feralSide: {
  31929. height: math.unit(5, "feet"),
  31930. weight: math.unit(150, "lb"),
  31931. name: "Feral (Side)",
  31932. image: {
  31933. source: "./media/characters/flux/feral-side.svg",
  31934. extra: 598/528,
  31935. bottom: 28/626
  31936. }
  31937. },
  31938. head: {
  31939. height: math.unit(1.585, "feet"),
  31940. name: "Head",
  31941. image: {
  31942. source: "./media/characters/flux/head.svg"
  31943. }
  31944. },
  31945. headSide: {
  31946. height: math.unit(1.74, "feet"),
  31947. name: "Head (Side)",
  31948. image: {
  31949. source: "./media/characters/flux/head-side.svg"
  31950. }
  31951. },
  31952. headSideFire: {
  31953. height: math.unit(1.76, "feet"),
  31954. name: "Head (Side, Fire)",
  31955. image: {
  31956. source: "./media/characters/flux/head-side-fire.svg"
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(7, "feet"),
  31964. default: true
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31970. {
  31971. front: {
  31972. height: math.unit(9, "feet"),
  31973. weight: math.unit(1012, "lb"),
  31974. name: "Front",
  31975. image: {
  31976. source: "./media/characters/ulfra-lupae/front.svg",
  31977. extra: 1083/1011,
  31978. bottom: 67/1150
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Micro",
  31985. height: math.unit(6, "inches")
  31986. },
  31987. {
  31988. name: "Socializing",
  31989. height: math.unit(6 + 5/12, "feet")
  31990. },
  31991. {
  31992. name: "Normal",
  31993. height: math.unit(9, "feet"),
  31994. default: true
  31995. },
  31996. {
  31997. name: "Macro",
  31998. height: math.unit(150, "feet")
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32004. {
  32005. front: {
  32006. height: math.unit(5 + 2/12, "feet"),
  32007. weight: math.unit(120, "lb"),
  32008. name: "Front",
  32009. image: {
  32010. source: "./media/characters/timber/front.svg",
  32011. extra: 2814/2705,
  32012. bottom: 181/2995
  32013. }
  32014. },
  32015. },
  32016. [
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(5 + 2/12, "feet"),
  32020. default: true
  32021. },
  32022. ]
  32023. ))
  32024. characterMakers.push(() => makeCharacter(
  32025. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32026. {
  32027. front: {
  32028. height: math.unit(9, "feet"),
  32029. name: "Front",
  32030. image: {
  32031. source: "./media/characters/nicki/front.svg",
  32032. extra: 1240/990,
  32033. bottom: 45/1285
  32034. },
  32035. form: "anthro",
  32036. default: true
  32037. },
  32038. side: {
  32039. height: math.unit(9, "feet"),
  32040. name: "Side",
  32041. image: {
  32042. source: "./media/characters/nicki/side.svg",
  32043. extra: 1047/973,
  32044. bottom: 61/1108
  32045. },
  32046. form: "anthro"
  32047. },
  32048. back: {
  32049. height: math.unit(9, "feet"),
  32050. name: "Back",
  32051. image: {
  32052. source: "./media/characters/nicki/back.svg",
  32053. extra: 1006/965,
  32054. bottom: 39/1045
  32055. },
  32056. form: "anthro"
  32057. },
  32058. taur: {
  32059. height: math.unit(15, "feet"),
  32060. name: "Taur",
  32061. image: {
  32062. source: "./media/characters/nicki/taur.svg",
  32063. extra: 1592/1347,
  32064. bottom: 0/1592
  32065. },
  32066. form: "taur",
  32067. default: true
  32068. },
  32069. },
  32070. [
  32071. {
  32072. name: "Normal",
  32073. height: math.unit(9, "feet"),
  32074. form: "anthro",
  32075. default: true
  32076. },
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(15, "feet"),
  32080. form: "taur",
  32081. default: true
  32082. }
  32083. ],
  32084. {
  32085. "anthro": {
  32086. name: "Anthro",
  32087. default: true
  32088. },
  32089. "taur": {
  32090. name: "Taur"
  32091. }
  32092. }
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32096. {
  32097. front: {
  32098. height: math.unit(7 + 10/12, "feet"),
  32099. weight: math.unit(3.5, "tons"),
  32100. name: "Front",
  32101. image: {
  32102. source: "./media/characters/lee/front.svg",
  32103. extra: 1773/1615,
  32104. bottom: 86/1859
  32105. }
  32106. },
  32107. hand: {
  32108. height: math.unit(1.78, "feet"),
  32109. name: "Hand",
  32110. image: {
  32111. source: "./media/characters/lee/hand.svg"
  32112. }
  32113. },
  32114. maw: {
  32115. height: math.unit(1.18, "feet"),
  32116. name: "Maw",
  32117. image: {
  32118. source: "./media/characters/lee/maw.svg"
  32119. }
  32120. },
  32121. },
  32122. [
  32123. {
  32124. name: "Normal",
  32125. height: math.unit(7 + 10/12, "feet"),
  32126. default: true
  32127. },
  32128. ]
  32129. ))
  32130. characterMakers.push(() => makeCharacter(
  32131. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32132. {
  32133. front: {
  32134. height: math.unit(9, "feet"),
  32135. name: "Front",
  32136. image: {
  32137. source: "./media/characters/guti/front.svg",
  32138. extra: 4551/4355,
  32139. bottom: 123/4674
  32140. }
  32141. },
  32142. tongue: {
  32143. height: math.unit(1, "feet"),
  32144. name: "Tongue",
  32145. image: {
  32146. source: "./media/characters/guti/tongue.svg"
  32147. }
  32148. },
  32149. paw: {
  32150. height: math.unit(1.18, "feet"),
  32151. name: "Paw",
  32152. image: {
  32153. source: "./media/characters/guti/paw.svg"
  32154. }
  32155. },
  32156. },
  32157. [
  32158. {
  32159. name: "Normal",
  32160. height: math.unit(9, "feet"),
  32161. default: true
  32162. },
  32163. ]
  32164. ))
  32165. characterMakers.push(() => makeCharacter(
  32166. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32167. {
  32168. side: {
  32169. height: math.unit(5, "meters"),
  32170. name: "Side",
  32171. image: {
  32172. source: "./media/characters/vesper/side.svg",
  32173. extra: 1605/1518,
  32174. bottom: 0/1605
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Small",
  32181. height: math.unit(5, "meters")
  32182. },
  32183. {
  32184. name: "Sage",
  32185. height: math.unit(100, "meters"),
  32186. default: true
  32187. },
  32188. {
  32189. name: "Fun Size",
  32190. height: math.unit(600, "meters")
  32191. },
  32192. {
  32193. name: "Goddess",
  32194. height: math.unit(20000, "km")
  32195. },
  32196. {
  32197. name: "Maximum",
  32198. height: math.unit(5, "galaxies")
  32199. },
  32200. ]
  32201. ))
  32202. characterMakers.push(() => makeCharacter(
  32203. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32204. {
  32205. front: {
  32206. height: math.unit(6 + 3/12, "feet"),
  32207. weight: math.unit(190, "lb"),
  32208. name: "Front",
  32209. image: {
  32210. source: "./media/characters/gawain/front.svg",
  32211. extra: 2222/2139,
  32212. bottom: 90/2312
  32213. }
  32214. },
  32215. back: {
  32216. height: math.unit(6 + 3/12, "feet"),
  32217. weight: math.unit(190, "lb"),
  32218. name: "Back",
  32219. image: {
  32220. source: "./media/characters/gawain/back.svg",
  32221. extra: 2199/2111,
  32222. bottom: 73/2272
  32223. }
  32224. },
  32225. },
  32226. [
  32227. {
  32228. name: "Normal",
  32229. height: math.unit(6 + 3/12, "feet"),
  32230. default: true
  32231. },
  32232. ]
  32233. ))
  32234. characterMakers.push(() => makeCharacter(
  32235. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32236. {
  32237. side: {
  32238. height: math.unit(3.5, "meters"),
  32239. weight: math.unit(16000, "lb"),
  32240. name: "Side",
  32241. image: {
  32242. source: "./media/characters/dascalti/side.svg",
  32243. extra: 392/273,
  32244. bottom: 47/439
  32245. }
  32246. },
  32247. breath: {
  32248. height: math.unit(7.4, "feet"),
  32249. name: "Breath",
  32250. image: {
  32251. source: "./media/characters/dascalti/breath.svg"
  32252. }
  32253. },
  32254. fed: {
  32255. height: math.unit(3.6, "meters"),
  32256. weight: math.unit(16000, "lb"),
  32257. name: "Fed",
  32258. image: {
  32259. source: "./media/characters/dascalti/fed.svg",
  32260. extra: 1419/820,
  32261. bottom: 95/1514
  32262. }
  32263. },
  32264. },
  32265. [
  32266. {
  32267. name: "Normal",
  32268. height: math.unit(3.5, "meters"),
  32269. default: true
  32270. },
  32271. ]
  32272. ))
  32273. characterMakers.push(() => makeCharacter(
  32274. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32275. {
  32276. front: {
  32277. height: math.unit(3 + 5/12, "feet"),
  32278. name: "Front",
  32279. image: {
  32280. source: "./media/characters/mauve/front.svg",
  32281. extra: 1126/1033,
  32282. bottom: 65/1191
  32283. }
  32284. },
  32285. side: {
  32286. height: math.unit(3 + 5/12, "feet"),
  32287. name: "Side",
  32288. image: {
  32289. source: "./media/characters/mauve/side.svg",
  32290. extra: 1089/1001,
  32291. bottom: 29/1118
  32292. }
  32293. },
  32294. back: {
  32295. height: math.unit(3 + 5/12, "feet"),
  32296. name: "Back",
  32297. image: {
  32298. source: "./media/characters/mauve/back.svg",
  32299. extra: 1173/1053,
  32300. bottom: 109/1282
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(3 + 5/12, "feet"),
  32308. default: true
  32309. },
  32310. ]
  32311. ))
  32312. characterMakers.push(() => makeCharacter(
  32313. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32314. {
  32315. front: {
  32316. height: math.unit(6 + 3/12, "feet"),
  32317. weight: math.unit(430, "lb"),
  32318. name: "Front",
  32319. image: {
  32320. source: "./media/characters/carlos/front.svg",
  32321. extra: 1964/1913,
  32322. bottom: 70/2034
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Normal",
  32329. height: math.unit(6 + 3/12, "feet"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32336. {
  32337. back: {
  32338. height: math.unit(5 + 10/12, "feet"),
  32339. weight: math.unit(200, "lb"),
  32340. name: "Back",
  32341. image: {
  32342. source: "./media/characters/jax/back.svg",
  32343. extra: 764/739,
  32344. bottom: 25/789
  32345. }
  32346. },
  32347. },
  32348. [
  32349. {
  32350. name: "Normal",
  32351. height: math.unit(5 + 10/12, "feet"),
  32352. default: true
  32353. },
  32354. ]
  32355. ))
  32356. characterMakers.push(() => makeCharacter(
  32357. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32358. {
  32359. front: {
  32360. height: math.unit(8, "feet"),
  32361. weight: math.unit(250, "lb"),
  32362. name: "Front",
  32363. image: {
  32364. source: "./media/characters/eikthynir/front.svg",
  32365. extra: 1332/1166,
  32366. bottom: 82/1414
  32367. }
  32368. },
  32369. back: {
  32370. height: math.unit(8, "feet"),
  32371. weight: math.unit(250, "lb"),
  32372. name: "Back",
  32373. image: {
  32374. source: "./media/characters/eikthynir/back.svg",
  32375. extra: 1342/1190,
  32376. bottom: 19/1361
  32377. }
  32378. },
  32379. dick: {
  32380. height: math.unit(2.35, "feet"),
  32381. name: "Dick",
  32382. image: {
  32383. source: "./media/characters/eikthynir/dick.svg"
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Normal",
  32390. height: math.unit(8, "feet"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32397. {
  32398. front: {
  32399. height: math.unit(99, "meters"),
  32400. weight: math.unit(13000, "tons"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/zlmos/front.svg",
  32404. extra: 2202/1992,
  32405. bottom: 315/2517
  32406. }
  32407. },
  32408. },
  32409. [
  32410. {
  32411. name: "Macro",
  32412. height: math.unit(99, "meters"),
  32413. default: true
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32419. {
  32420. front: {
  32421. height: math.unit(6 + 5/12, "feet"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/purri/front.svg",
  32425. extra: 1698/1610,
  32426. bottom: 32/1730
  32427. }
  32428. },
  32429. frontAlt: {
  32430. height: math.unit(6 + 5/12, "feet"),
  32431. name: "Front (Alt)",
  32432. image: {
  32433. source: "./media/characters/purri/front-alt.svg",
  32434. extra: 450/420,
  32435. bottom: 26/476
  32436. }
  32437. },
  32438. boots: {
  32439. height: math.unit(5.5, "feet"),
  32440. name: "Boots",
  32441. image: {
  32442. source: "./media/characters/purri/boots.svg",
  32443. extra: 905/853,
  32444. bottom: 18/923
  32445. }
  32446. },
  32447. lying: {
  32448. height: math.unit(2, "feet"),
  32449. name: "Lying",
  32450. image: {
  32451. source: "./media/characters/purri/lying.svg",
  32452. extra: 940/843,
  32453. bottom: 146/1086
  32454. }
  32455. },
  32456. devious: {
  32457. height: math.unit(1.77, "feet"),
  32458. name: "Devious",
  32459. image: {
  32460. source: "./media/characters/purri/devious.svg",
  32461. extra: 1440/1155,
  32462. bottom: 147/1587
  32463. }
  32464. },
  32465. bean: {
  32466. height: math.unit(1.94, "feet"),
  32467. name: "Bean",
  32468. image: {
  32469. source: "./media/characters/purri/bean.svg"
  32470. }
  32471. },
  32472. },
  32473. [
  32474. {
  32475. name: "Micro",
  32476. height: math.unit(1, "mm")
  32477. },
  32478. {
  32479. name: "Normal",
  32480. height: math.unit(6 + 5/12, "feet"),
  32481. default: true
  32482. },
  32483. {
  32484. name: "Macro :3c",
  32485. height: math.unit(2, "miles")
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32491. {
  32492. front: {
  32493. height: math.unit(6 + 2/12, "feet"),
  32494. weight: math.unit(250, "lb"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/moonlight/front.svg",
  32498. extra: 1044/908,
  32499. bottom: 56/1100
  32500. }
  32501. },
  32502. feral: {
  32503. height: math.unit(3 + 1/12, "feet"),
  32504. weight: math.unit(50, "kg"),
  32505. name: "Feral",
  32506. image: {
  32507. source: "./media/characters/moonlight/feral.svg",
  32508. extra: 3705/2791,
  32509. bottom: 145/3850
  32510. }
  32511. },
  32512. paw: {
  32513. height: math.unit(1, "feet"),
  32514. name: "Paw",
  32515. image: {
  32516. source: "./media/characters/moonlight/paw.svg"
  32517. }
  32518. },
  32519. paws: {
  32520. height: math.unit(0.98, "feet"),
  32521. name: "Paws",
  32522. image: {
  32523. source: "./media/characters/moonlight/paws.svg",
  32524. extra: 939/939,
  32525. bottom: 50/989
  32526. }
  32527. },
  32528. mouth: {
  32529. height: math.unit(0.48, "feet"),
  32530. name: "Mouth",
  32531. image: {
  32532. source: "./media/characters/moonlight/mouth.svg"
  32533. }
  32534. },
  32535. dick: {
  32536. height: math.unit(1.46, "feet"),
  32537. name: "Dick",
  32538. image: {
  32539. source: "./media/characters/moonlight/dick.svg"
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Normal",
  32546. height: math.unit(6 + 2/12, "feet"),
  32547. default: true
  32548. },
  32549. {
  32550. name: "Macro",
  32551. height: math.unit(300, "feet")
  32552. },
  32553. {
  32554. name: "Macro+",
  32555. height: math.unit(1, "mile")
  32556. },
  32557. {
  32558. name: "Mt. Moon",
  32559. height: math.unit(5, "miles")
  32560. },
  32561. {
  32562. name: "Megamacro",
  32563. height: math.unit(15, "miles")
  32564. },
  32565. ]
  32566. ))
  32567. characterMakers.push(() => makeCharacter(
  32568. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32569. {
  32570. back: {
  32571. height: math.unit(6, "feet"),
  32572. weight: math.unit(150, "lb"),
  32573. name: "Back",
  32574. image: {
  32575. source: "./media/characters/sylen/back.svg",
  32576. extra: 1335/1273,
  32577. bottom: 107/1442
  32578. }
  32579. },
  32580. },
  32581. [
  32582. {
  32583. name: "Normal",
  32584. height: math.unit(5 + 5/12, "feet")
  32585. },
  32586. {
  32587. name: "Megamacro",
  32588. height: math.unit(3, "miles"),
  32589. default: true
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32595. {
  32596. front: {
  32597. height: math.unit(6, "feet"),
  32598. weight: math.unit(190, "lb"),
  32599. name: "Front",
  32600. image: {
  32601. source: "./media/characters/huttser/front.svg",
  32602. extra: 1152/1058,
  32603. bottom: 23/1175
  32604. }
  32605. },
  32606. side: {
  32607. height: math.unit(6, "feet"),
  32608. weight: math.unit(190, "lb"),
  32609. name: "Side",
  32610. image: {
  32611. source: "./media/characters/huttser/side.svg",
  32612. extra: 1174/1065,
  32613. bottom: 18/1192
  32614. }
  32615. },
  32616. back: {
  32617. height: math.unit(6, "feet"),
  32618. weight: math.unit(190, "lb"),
  32619. name: "Back",
  32620. image: {
  32621. source: "./media/characters/huttser/back.svg",
  32622. extra: 1158/1056,
  32623. bottom: 12/1170
  32624. }
  32625. },
  32626. },
  32627. [
  32628. ]
  32629. ))
  32630. characterMakers.push(() => makeCharacter(
  32631. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32632. {
  32633. side: {
  32634. height: math.unit(12 + 9/12, "feet"),
  32635. weight: math.unit(15000, "lb"),
  32636. name: "Side",
  32637. image: {
  32638. source: "./media/characters/faan/side.svg",
  32639. extra: 2747/2697,
  32640. bottom: 0/2747
  32641. }
  32642. },
  32643. front: {
  32644. height: math.unit(12 + 9/12, "feet"),
  32645. weight: math.unit(15000, "lb"),
  32646. name: "Front",
  32647. image: {
  32648. source: "./media/characters/faan/front.svg",
  32649. extra: 607/571,
  32650. bottom: 24/631
  32651. }
  32652. },
  32653. head: {
  32654. height: math.unit(2.85, "feet"),
  32655. name: "Head",
  32656. image: {
  32657. source: "./media/characters/faan/head.svg"
  32658. }
  32659. },
  32660. headAlt: {
  32661. height: math.unit(3.13, "feet"),
  32662. name: "Head-alt",
  32663. image: {
  32664. source: "./media/characters/faan/head-alt.svg"
  32665. }
  32666. },
  32667. },
  32668. [
  32669. {
  32670. name: "Normal",
  32671. height: math.unit(12 + 9/12, "feet"),
  32672. default: true
  32673. },
  32674. ]
  32675. ))
  32676. characterMakers.push(() => makeCharacter(
  32677. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32678. {
  32679. front: {
  32680. height: math.unit(6, "feet"),
  32681. weight: math.unit(300, "lb"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/tanio/front.svg",
  32685. extra: 711/673,
  32686. bottom: 25/736
  32687. }
  32688. },
  32689. },
  32690. [
  32691. {
  32692. name: "Normal",
  32693. height: math.unit(6, "feet"),
  32694. default: true
  32695. },
  32696. ]
  32697. ))
  32698. characterMakers.push(() => makeCharacter(
  32699. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32700. {
  32701. front: {
  32702. height: math.unit(3, "inches"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/noboru/front.svg",
  32706. extra: 1039/932,
  32707. bottom: 18/1057
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Micro",
  32714. height: math.unit(3, "inches"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(1.85, "meters"),
  32724. weight: math.unit(80, "kg"),
  32725. name: "Front",
  32726. image: {
  32727. source: "./media/characters/daniel-barrett/front.svg",
  32728. extra: 355/337,
  32729. bottom: 9/364
  32730. }
  32731. },
  32732. },
  32733. [
  32734. {
  32735. name: "Pico",
  32736. height: math.unit(0.0433, "mm")
  32737. },
  32738. {
  32739. name: "Nano",
  32740. height: math.unit(1.5, "mm")
  32741. },
  32742. {
  32743. name: "Micro",
  32744. height: math.unit(5.3, "cm"),
  32745. default: true
  32746. },
  32747. {
  32748. name: "Normal",
  32749. height: math.unit(1.85, "meters")
  32750. },
  32751. {
  32752. name: "Macro",
  32753. height: math.unit(64.7, "meters")
  32754. },
  32755. {
  32756. name: "Megamacro",
  32757. height: math.unit(2.26, "km")
  32758. },
  32759. {
  32760. name: "Gigamacro",
  32761. height: math.unit(79, "km")
  32762. },
  32763. {
  32764. name: "Teramacro",
  32765. height: math.unit(2765, "km")
  32766. },
  32767. {
  32768. name: "Petamacro",
  32769. height: math.unit(96678, "km")
  32770. },
  32771. ]
  32772. ))
  32773. characterMakers.push(() => makeCharacter(
  32774. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32775. {
  32776. front: {
  32777. height: math.unit(30, "meters"),
  32778. weight: math.unit(400, "tons"),
  32779. name: "Front",
  32780. image: {
  32781. source: "./media/characters/zeel/front.svg",
  32782. extra: 2599/2599,
  32783. bottom: 226/2825
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Macro",
  32790. height: math.unit(30, "meters"),
  32791. default: true
  32792. },
  32793. ]
  32794. ))
  32795. characterMakers.push(() => makeCharacter(
  32796. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32797. {
  32798. front: {
  32799. height: math.unit(6 + 7/12, "feet"),
  32800. weight: math.unit(210, "lb"),
  32801. name: "Front",
  32802. image: {
  32803. source: "./media/characters/tarn/front.svg",
  32804. extra: 3517/3220,
  32805. bottom: 91/3608
  32806. }
  32807. },
  32808. back: {
  32809. height: math.unit(6 + 7/12, "feet"),
  32810. weight: math.unit(210, "lb"),
  32811. name: "Back",
  32812. image: {
  32813. source: "./media/characters/tarn/back.svg",
  32814. extra: 3566/3241,
  32815. bottom: 34/3600
  32816. }
  32817. },
  32818. dick: {
  32819. height: math.unit(1.65, "feet"),
  32820. name: "Dick",
  32821. image: {
  32822. source: "./media/characters/tarn/dick.svg"
  32823. }
  32824. },
  32825. paw: {
  32826. height: math.unit(1.80, "feet"),
  32827. name: "Paw",
  32828. image: {
  32829. source: "./media/characters/tarn/paw.svg"
  32830. }
  32831. },
  32832. tongue: {
  32833. height: math.unit(0.97, "feet"),
  32834. name: "Tongue",
  32835. image: {
  32836. source: "./media/characters/tarn/tongue.svg"
  32837. }
  32838. },
  32839. },
  32840. [
  32841. {
  32842. name: "Micro",
  32843. height: math.unit(4, "inches")
  32844. },
  32845. {
  32846. name: "Normal",
  32847. height: math.unit(6 + 7/12, "feet"),
  32848. default: true
  32849. },
  32850. {
  32851. name: "Macro",
  32852. height: math.unit(300, "feet")
  32853. },
  32854. ]
  32855. ))
  32856. characterMakers.push(() => makeCharacter(
  32857. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32858. {
  32859. front: {
  32860. height: math.unit(5 + 7/12, "feet"),
  32861. weight: math.unit(80, "kg"),
  32862. name: "Front",
  32863. image: {
  32864. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32865. extra: 3023/2865,
  32866. bottom: 33/3056
  32867. }
  32868. },
  32869. back: {
  32870. height: math.unit(5 + 7/12, "feet"),
  32871. weight: math.unit(80, "kg"),
  32872. name: "Back",
  32873. image: {
  32874. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32875. extra: 3020/2886,
  32876. bottom: 30/3050
  32877. }
  32878. },
  32879. dick: {
  32880. height: math.unit(0.98, "feet"),
  32881. name: "Dick",
  32882. image: {
  32883. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32884. }
  32885. },
  32886. anatomy: {
  32887. height: math.unit(2.86, "feet"),
  32888. name: "Anatomy",
  32889. image: {
  32890. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Really Small",
  32897. height: math.unit(2, "inches")
  32898. },
  32899. {
  32900. name: "Micro",
  32901. height: math.unit(5.583, "inches")
  32902. },
  32903. {
  32904. name: "Normal",
  32905. height: math.unit(5 + 7/12, "feet"),
  32906. default: true
  32907. },
  32908. {
  32909. name: "Macro",
  32910. height: math.unit(67, "feet")
  32911. },
  32912. {
  32913. name: "Megamacro",
  32914. height: math.unit(134, "feet")
  32915. },
  32916. ]
  32917. ))
  32918. characterMakers.push(() => makeCharacter(
  32919. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32920. {
  32921. front: {
  32922. height: math.unit(9, "feet"),
  32923. weight: math.unit(120, "lb"),
  32924. name: "Front",
  32925. image: {
  32926. source: "./media/characters/sally/front.svg",
  32927. extra: 1506/1349,
  32928. bottom: 66/1572
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Normal",
  32935. height: math.unit(9, "feet"),
  32936. default: true
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32942. {
  32943. front: {
  32944. height: math.unit(8, "feet"),
  32945. weight: math.unit(900, "lb"),
  32946. name: "Front",
  32947. image: {
  32948. source: "./media/characters/owen/front.svg",
  32949. extra: 1761/1657,
  32950. bottom: 74/1835
  32951. }
  32952. },
  32953. side: {
  32954. height: math.unit(8, "feet"),
  32955. weight: math.unit(900, "lb"),
  32956. name: "Side",
  32957. image: {
  32958. source: "./media/characters/owen/side.svg",
  32959. extra: 1797/1734,
  32960. bottom: 30/1827
  32961. }
  32962. },
  32963. back: {
  32964. height: math.unit(8, "feet"),
  32965. weight: math.unit(900, "lb"),
  32966. name: "Back",
  32967. image: {
  32968. source: "./media/characters/owen/back.svg",
  32969. extra: 1796/1706,
  32970. bottom: 59/1855
  32971. }
  32972. },
  32973. maw: {
  32974. height: math.unit(1.76, "feet"),
  32975. name: "Maw",
  32976. image: {
  32977. source: "./media/characters/owen/maw.svg"
  32978. }
  32979. },
  32980. },
  32981. [
  32982. {
  32983. name: "Normal",
  32984. height: math.unit(8, "feet"),
  32985. default: true
  32986. },
  32987. ]
  32988. ))
  32989. characterMakers.push(() => makeCharacter(
  32990. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32991. {
  32992. front: {
  32993. height: math.unit(4, "feet"),
  32994. weight: math.unit(400, "lb"),
  32995. name: "Front",
  32996. image: {
  32997. source: "./media/characters/ryth/front.svg",
  32998. extra: 1920/1748,
  32999. bottom: 42/1962
  33000. }
  33001. },
  33002. back: {
  33003. height: math.unit(4, "feet"),
  33004. weight: math.unit(400, "lb"),
  33005. name: "Back",
  33006. image: {
  33007. source: "./media/characters/ryth/back.svg",
  33008. extra: 1897/1690,
  33009. bottom: 89/1986
  33010. }
  33011. },
  33012. mouth: {
  33013. height: math.unit(1.39, "feet"),
  33014. name: "Mouth",
  33015. image: {
  33016. source: "./media/characters/ryth/mouth.svg"
  33017. }
  33018. },
  33019. tailmaw: {
  33020. height: math.unit(1.23, "feet"),
  33021. name: "Tailmaw",
  33022. image: {
  33023. source: "./media/characters/ryth/tailmaw.svg"
  33024. }
  33025. },
  33026. goia: {
  33027. height: math.unit(4, "meters"),
  33028. weight: math.unit(10800, "lb"),
  33029. name: "Goia",
  33030. image: {
  33031. source: "./media/characters/ryth/goia.svg",
  33032. extra: 745/640,
  33033. bottom: 107/852
  33034. }
  33035. },
  33036. goiaFront: {
  33037. height: math.unit(4, "meters"),
  33038. weight: math.unit(10800, "lb"),
  33039. name: "Goia (Front)",
  33040. image: {
  33041. source: "./media/characters/ryth/goia-front.svg",
  33042. extra: 750/586,
  33043. bottom: 114/864
  33044. }
  33045. },
  33046. goiaMaw: {
  33047. height: math.unit(5.55, "feet"),
  33048. name: "Goia Maw",
  33049. image: {
  33050. source: "./media/characters/ryth/goia-maw.svg"
  33051. }
  33052. },
  33053. goiaForepaw: {
  33054. height: math.unit(3.5, "feet"),
  33055. name: "Goia Forepaw",
  33056. image: {
  33057. source: "./media/characters/ryth/goia-forepaw.svg"
  33058. }
  33059. },
  33060. goiaHindpaw: {
  33061. height: math.unit(5.55, "feet"),
  33062. name: "Goia Hindpaw",
  33063. image: {
  33064. source: "./media/characters/ryth/goia-hindpaw.svg"
  33065. }
  33066. },
  33067. },
  33068. [
  33069. {
  33070. name: "Normal",
  33071. height: math.unit(4, "feet"),
  33072. default: true
  33073. },
  33074. ]
  33075. ))
  33076. characterMakers.push(() => makeCharacter(
  33077. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33078. {
  33079. front: {
  33080. height: math.unit(7, "feet"),
  33081. weight: math.unit(180, "lb"),
  33082. name: "Front",
  33083. image: {
  33084. source: "./media/characters/necrolance/front.svg",
  33085. extra: 1062/947,
  33086. bottom: 41/1103
  33087. }
  33088. },
  33089. back: {
  33090. height: math.unit(7, "feet"),
  33091. weight: math.unit(180, "lb"),
  33092. name: "Back",
  33093. image: {
  33094. source: "./media/characters/necrolance/back.svg",
  33095. extra: 1045/984,
  33096. bottom: 14/1059
  33097. }
  33098. },
  33099. wing: {
  33100. height: math.unit(2.67, "feet"),
  33101. name: "Wing",
  33102. image: {
  33103. source: "./media/characters/necrolance/wing.svg"
  33104. }
  33105. },
  33106. },
  33107. [
  33108. {
  33109. name: "Normal",
  33110. height: math.unit(7, "feet"),
  33111. default: true
  33112. },
  33113. ]
  33114. ))
  33115. characterMakers.push(() => makeCharacter(
  33116. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33117. {
  33118. front: {
  33119. height: math.unit(76, "meters"),
  33120. weight: math.unit(30000, "tons"),
  33121. name: "Front",
  33122. image: {
  33123. source: "./media/characters/tyler/front.svg",
  33124. extra: 1640/1640,
  33125. bottom: 114/1754
  33126. }
  33127. },
  33128. },
  33129. [
  33130. {
  33131. name: "Macro",
  33132. height: math.unit(76, "meters"),
  33133. default: true
  33134. },
  33135. ]
  33136. ))
  33137. characterMakers.push(() => makeCharacter(
  33138. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33139. {
  33140. front: {
  33141. height: math.unit(4 + 11/12, "feet"),
  33142. weight: math.unit(132, "lb"),
  33143. name: "Front",
  33144. image: {
  33145. source: "./media/characters/icey/front.svg",
  33146. extra: 2750/2550,
  33147. bottom: 33/2783
  33148. }
  33149. },
  33150. back: {
  33151. height: math.unit(4 + 11/12, "feet"),
  33152. weight: math.unit(132, "lb"),
  33153. name: "Back",
  33154. image: {
  33155. source: "./media/characters/icey/back.svg",
  33156. extra: 2624/2481,
  33157. bottom: 35/2659
  33158. }
  33159. },
  33160. },
  33161. [
  33162. {
  33163. name: "Normal",
  33164. height: math.unit(4 + 11/12, "feet"),
  33165. default: true
  33166. },
  33167. ]
  33168. ))
  33169. characterMakers.push(() => makeCharacter(
  33170. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33171. {
  33172. front: {
  33173. height: math.unit(100, "feet"),
  33174. weight: math.unit(0, "lb"),
  33175. name: "Front",
  33176. image: {
  33177. source: "./media/characters/smile/front.svg",
  33178. extra: 2983/2912,
  33179. bottom: 162/3145
  33180. }
  33181. },
  33182. back: {
  33183. height: math.unit(100, "feet"),
  33184. weight: math.unit(0, "lb"),
  33185. name: "Back",
  33186. image: {
  33187. source: "./media/characters/smile/back.svg",
  33188. extra: 3143/3031,
  33189. bottom: 91/3234
  33190. }
  33191. },
  33192. head: {
  33193. height: math.unit(26.3, "feet"),
  33194. weight: math.unit(0, "lb"),
  33195. name: "Head",
  33196. image: {
  33197. source: "./media/characters/smile/head.svg"
  33198. }
  33199. },
  33200. collar: {
  33201. height: math.unit(5.3, "feet"),
  33202. weight: math.unit(0, "lb"),
  33203. name: "Collar",
  33204. image: {
  33205. source: "./media/characters/smile/collar.svg"
  33206. }
  33207. },
  33208. },
  33209. [
  33210. {
  33211. name: "Macro",
  33212. height: math.unit(100, "feet"),
  33213. default: true
  33214. },
  33215. ]
  33216. ))
  33217. characterMakers.push(() => makeCharacter(
  33218. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33219. {
  33220. dragon: {
  33221. height: math.unit(26, "feet"),
  33222. weight: math.unit(36, "tons"),
  33223. name: "Dragon",
  33224. image: {
  33225. source: "./media/characters/arimphae/dragon.svg",
  33226. extra: 1574/983,
  33227. bottom: 357/1931
  33228. }
  33229. },
  33230. drake: {
  33231. height: math.unit(9, "feet"),
  33232. weight: math.unit(1.5, "tons"),
  33233. name: "Drake",
  33234. image: {
  33235. source: "./media/characters/arimphae/drake.svg",
  33236. extra: 1120/925,
  33237. bottom: 435/1555
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Small",
  33244. height: math.unit(26*5/9, "feet")
  33245. },
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(26, "feet"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(8 + 9/12, "feet"),
  33258. name: "Front",
  33259. image: {
  33260. source: "./media/characters/xander/front.svg",
  33261. extra: 1237/974,
  33262. bottom: 94/1331
  33263. }
  33264. },
  33265. },
  33266. [
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(8 + 9/12, "feet"),
  33270. default: true
  33271. },
  33272. {
  33273. name: "Gaze Grabber",
  33274. height: math.unit(13 + 8/12, "feet")
  33275. },
  33276. {
  33277. name: "Jaw Dropper",
  33278. height: math.unit(27, "feet")
  33279. },
  33280. {
  33281. name: "Show Stopper",
  33282. height: math.unit(136, "feet")
  33283. },
  33284. {
  33285. name: "Superstar",
  33286. height: math.unit(1.9e6, "miles")
  33287. },
  33288. ]
  33289. ))
  33290. characterMakers.push(() => makeCharacter(
  33291. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33292. {
  33293. side: {
  33294. height: math.unit(2100, "feet"),
  33295. name: "Side",
  33296. image: {
  33297. source: "./media/characters/osiris/side.svg",
  33298. extra: 1105/939,
  33299. bottom: 167/1272
  33300. }
  33301. },
  33302. },
  33303. [
  33304. {
  33305. name: "Macro",
  33306. height: math.unit(2100, "feet"),
  33307. default: true
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(6 + 8/12, "feet"),
  33316. weight: math.unit(225, "lb"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/rhys-londe/front.svg",
  33320. extra: 2258/2141,
  33321. bottom: 188/2446
  33322. }
  33323. },
  33324. back: {
  33325. height: math.unit(6 + 8/12, "feet"),
  33326. weight: math.unit(225, "lb"),
  33327. name: "Back",
  33328. image: {
  33329. source: "./media/characters/rhys-londe/back.svg",
  33330. extra: 2237/2137,
  33331. bottom: 63/2300
  33332. }
  33333. },
  33334. frontNsfw: {
  33335. height: math.unit(6 + 8/12, "feet"),
  33336. weight: math.unit(225, "lb"),
  33337. name: "Front (NSFW)",
  33338. image: {
  33339. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33340. extra: 2258/2141,
  33341. bottom: 188/2446
  33342. }
  33343. },
  33344. backNsfw: {
  33345. height: math.unit(6 + 8/12, "feet"),
  33346. weight: math.unit(225, "lb"),
  33347. name: "Back (NSFW)",
  33348. image: {
  33349. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33350. extra: 2237/2137,
  33351. bottom: 63/2300
  33352. }
  33353. },
  33354. dick: {
  33355. height: math.unit(30, "inches"),
  33356. name: "Dick",
  33357. image: {
  33358. source: "./media/characters/rhys-londe/dick.svg"
  33359. }
  33360. },
  33361. maw: {
  33362. height: math.unit(1.6, "feet"),
  33363. name: "Maw",
  33364. image: {
  33365. source: "./media/characters/rhys-londe/maw.svg"
  33366. }
  33367. },
  33368. },
  33369. [
  33370. {
  33371. name: "Normal",
  33372. height: math.unit(6 + 8/12, "feet"),
  33373. default: true
  33374. },
  33375. ]
  33376. ))
  33377. characterMakers.push(() => makeCharacter(
  33378. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33379. {
  33380. front: {
  33381. height: math.unit(3 + 10/12, "feet"),
  33382. weight: math.unit(90, "lb"),
  33383. name: "Front",
  33384. image: {
  33385. source: "./media/characters/taivas-ensim/front.svg",
  33386. extra: 1327/1216,
  33387. bottom: 96/1423
  33388. }
  33389. },
  33390. back: {
  33391. height: math.unit(3 + 10/12, "feet"),
  33392. weight: math.unit(90, "lb"),
  33393. name: "Back",
  33394. image: {
  33395. source: "./media/characters/taivas-ensim/back.svg",
  33396. extra: 1355/1247,
  33397. bottom: 11/1366
  33398. }
  33399. },
  33400. frontNsfw: {
  33401. height: math.unit(3 + 10/12, "feet"),
  33402. weight: math.unit(90, "lb"),
  33403. name: "Front (NSFW)",
  33404. image: {
  33405. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33406. extra: 1327/1216,
  33407. bottom: 96/1423
  33408. }
  33409. },
  33410. backNsfw: {
  33411. height: math.unit(3 + 10/12, "feet"),
  33412. weight: math.unit(90, "lb"),
  33413. name: "Back (NSFW)",
  33414. image: {
  33415. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33416. extra: 1355/1247,
  33417. bottom: 11/1366
  33418. }
  33419. },
  33420. },
  33421. [
  33422. {
  33423. name: "Normal",
  33424. height: math.unit(3 + 10/12, "feet"),
  33425. default: true
  33426. },
  33427. ]
  33428. ))
  33429. characterMakers.push(() => makeCharacter(
  33430. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33431. {
  33432. front: {
  33433. height: math.unit(9 + 6/12, "feet"),
  33434. weight: math.unit(940, "lb"),
  33435. name: "Front",
  33436. image: {
  33437. source: "./media/characters/byliss/front.svg",
  33438. extra: 1327/1290,
  33439. bottom: 82/1409
  33440. }
  33441. },
  33442. back: {
  33443. height: math.unit(9 + 6/12, "feet"),
  33444. weight: math.unit(940, "lb"),
  33445. name: "Back",
  33446. image: {
  33447. source: "./media/characters/byliss/back.svg",
  33448. extra: 1376/1349,
  33449. bottom: 9/1385
  33450. }
  33451. },
  33452. frontNsfw: {
  33453. height: math.unit(9 + 6/12, "feet"),
  33454. weight: math.unit(940, "lb"),
  33455. name: "Front (NSFW)",
  33456. image: {
  33457. source: "./media/characters/byliss/front-nsfw.svg",
  33458. extra: 1327/1290,
  33459. bottom: 82/1409
  33460. }
  33461. },
  33462. backNsfw: {
  33463. height: math.unit(9 + 6/12, "feet"),
  33464. weight: math.unit(940, "lb"),
  33465. name: "Back (NSFW)",
  33466. image: {
  33467. source: "./media/characters/byliss/back-nsfw.svg",
  33468. extra: 1376/1349,
  33469. bottom: 9/1385
  33470. }
  33471. },
  33472. },
  33473. [
  33474. {
  33475. name: "Normal",
  33476. height: math.unit(9 + 6/12, "feet"),
  33477. default: true
  33478. },
  33479. ]
  33480. ))
  33481. characterMakers.push(() => makeCharacter(
  33482. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33483. {
  33484. front: {
  33485. height: math.unit(5 + 2/12, "feet"),
  33486. weight: math.unit(200, "lb"),
  33487. name: "Front",
  33488. image: {
  33489. source: "./media/characters/noraly/front.svg",
  33490. extra: 4985/4773,
  33491. bottom: 150/5135
  33492. }
  33493. },
  33494. full: {
  33495. height: math.unit(5 + 2/12, "feet"),
  33496. weight: math.unit(164, "lb"),
  33497. name: "Full",
  33498. image: {
  33499. source: "./media/characters/noraly/full.svg",
  33500. extra: 1114/1059,
  33501. bottom: 35/1149
  33502. }
  33503. },
  33504. fuller: {
  33505. height: math.unit(5 + 2/12, "feet"),
  33506. weight: math.unit(230, "lb"),
  33507. name: "Fuller",
  33508. image: {
  33509. source: "./media/characters/noraly/fuller.svg",
  33510. extra: 1114/1059,
  33511. bottom: 35/1149
  33512. }
  33513. },
  33514. fullest: {
  33515. height: math.unit(5 + 2/12, "feet"),
  33516. weight: math.unit(300, "lb"),
  33517. name: "Fullest",
  33518. image: {
  33519. source: "./media/characters/noraly/fullest.svg",
  33520. extra: 1114/1059,
  33521. bottom: 35/1149
  33522. }
  33523. },
  33524. },
  33525. [
  33526. {
  33527. name: "Normal",
  33528. height: math.unit(5 + 2/12, "feet"),
  33529. default: true
  33530. },
  33531. ]
  33532. ))
  33533. characterMakers.push(() => makeCharacter(
  33534. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33535. {
  33536. front: {
  33537. height: math.unit(5 + 2/12, "feet"),
  33538. weight: math.unit(210, "lb"),
  33539. name: "Front",
  33540. image: {
  33541. source: "./media/characters/pera/front.svg",
  33542. extra: 1560/1531,
  33543. bottom: 165/1725
  33544. }
  33545. },
  33546. back: {
  33547. height: math.unit(5 + 2/12, "feet"),
  33548. weight: math.unit(210, "lb"),
  33549. name: "Back",
  33550. image: {
  33551. source: "./media/characters/pera/back.svg",
  33552. extra: 1523/1493,
  33553. bottom: 152/1675
  33554. }
  33555. },
  33556. dick: {
  33557. height: math.unit(2.4, "feet"),
  33558. name: "Dick",
  33559. image: {
  33560. source: "./media/characters/pera/dick.svg"
  33561. }
  33562. },
  33563. },
  33564. [
  33565. {
  33566. name: "Normal",
  33567. height: math.unit(5 + 2/12, "feet"),
  33568. default: true
  33569. },
  33570. ]
  33571. ))
  33572. characterMakers.push(() => makeCharacter(
  33573. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33574. {
  33575. front: {
  33576. height: math.unit(12, "feet"),
  33577. weight: math.unit(3200, "lb"),
  33578. name: "Front",
  33579. image: {
  33580. source: "./media/characters/julian/front.svg",
  33581. extra: 2962/2701,
  33582. bottom: 184/3146
  33583. }
  33584. },
  33585. maw: {
  33586. height: math.unit(5.35, "feet"),
  33587. name: "Maw",
  33588. image: {
  33589. source: "./media/characters/julian/maw.svg"
  33590. }
  33591. },
  33592. paw: {
  33593. height: math.unit(3.07, "feet"),
  33594. name: "Paw",
  33595. image: {
  33596. source: "./media/characters/julian/paw.svg"
  33597. }
  33598. },
  33599. },
  33600. [
  33601. {
  33602. name: "Default",
  33603. height: math.unit(12, "feet"),
  33604. default: true
  33605. },
  33606. {
  33607. name: "Big",
  33608. height: math.unit(50, "feet")
  33609. },
  33610. {
  33611. name: "Really Big",
  33612. height: math.unit(1, "mile")
  33613. },
  33614. {
  33615. name: "Extremely Big",
  33616. height: math.unit(100, "miles")
  33617. },
  33618. {
  33619. name: "Planet Hugger",
  33620. height: math.unit(200, "megameters")
  33621. },
  33622. {
  33623. name: "Unreasonably Big",
  33624. height: math.unit(1e300, "meters")
  33625. },
  33626. ]
  33627. ))
  33628. characterMakers.push(() => makeCharacter(
  33629. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33630. {
  33631. solgooleo: {
  33632. height: math.unit(4, "meters"),
  33633. weight: math.unit(6000*1.5, "kg"),
  33634. volume: math.unit(6000, "liters"),
  33635. name: "Solgooleo",
  33636. image: {
  33637. source: "./media/characters/pi/solgooleo.svg",
  33638. extra: 388/331,
  33639. bottom: 29/417
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(4, "meters"),
  33647. default: true
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(8, "feet"),
  33656. weight: math.unit(4, "tons"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/shaun/front.svg",
  33660. extra: 503/495,
  33661. bottom: 20/523
  33662. }
  33663. },
  33664. back: {
  33665. height: math.unit(8, "feet"),
  33666. weight: math.unit(4, "tons"),
  33667. name: "Back",
  33668. image: {
  33669. source: "./media/characters/shaun/back.svg",
  33670. extra: 487/480,
  33671. bottom: 20/507
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Lorg",
  33678. height: math.unit(8, "feet"),
  33679. default: true
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33685. {
  33686. frontAnthro: {
  33687. height: math.unit(7, "feet"),
  33688. name: "Front",
  33689. image: {
  33690. source: "./media/characters/sini/front-anthro.svg",
  33691. extra: 726/678,
  33692. bottom: 35/761
  33693. },
  33694. form: "anthro",
  33695. default: true
  33696. },
  33697. backAnthro: {
  33698. height: math.unit(7, "feet"),
  33699. name: "Back",
  33700. image: {
  33701. source: "./media/characters/sini/back-anthro.svg",
  33702. extra: 743/701,
  33703. bottom: 12/755
  33704. },
  33705. form: "anthro",
  33706. },
  33707. frontAnthroNsfw: {
  33708. height: math.unit(7, "feet"),
  33709. name: "Front (NSFW)",
  33710. image: {
  33711. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33712. extra: 726/678,
  33713. bottom: 35/761
  33714. },
  33715. form: "anthro"
  33716. },
  33717. backAnthroNsfw: {
  33718. height: math.unit(7, "feet"),
  33719. name: "Back (NSFW)",
  33720. image: {
  33721. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33722. extra: 743/701,
  33723. bottom: 12/755
  33724. },
  33725. form: "anthro",
  33726. },
  33727. mawAnthro: {
  33728. height: math.unit(2.14, "feet"),
  33729. name: "Maw",
  33730. image: {
  33731. source: "./media/characters/sini/maw-anthro.svg"
  33732. },
  33733. form: "anthro"
  33734. },
  33735. dick: {
  33736. height: math.unit(1.45, "feet"),
  33737. name: "Dick",
  33738. image: {
  33739. source: "./media/characters/sini/dick-anthro.svg"
  33740. },
  33741. form: "anthro"
  33742. },
  33743. feral: {
  33744. height: math.unit(16, "feet"),
  33745. name: "Feral",
  33746. image: {
  33747. source: "./media/characters/sini/feral.svg",
  33748. extra: 814/605,
  33749. bottom: 11/825
  33750. },
  33751. form: "feral",
  33752. default: true
  33753. },
  33754. feralNsfw: {
  33755. height: math.unit(16, "feet"),
  33756. name: "Feral (NSFW)",
  33757. image: {
  33758. source: "./media/characters/sini/feral-nsfw.svg",
  33759. extra: 814/605,
  33760. bottom: 11/825
  33761. },
  33762. form: "feral"
  33763. },
  33764. mawFeral: {
  33765. height: math.unit(5.66, "feet"),
  33766. name: "Maw",
  33767. image: {
  33768. source: "./media/characters/sini/maw-feral.svg"
  33769. },
  33770. form: "feral",
  33771. },
  33772. pawFeral: {
  33773. height: math.unit(5.17, "feet"),
  33774. name: "Paw",
  33775. image: {
  33776. source: "./media/characters/sini/paw-feral.svg"
  33777. },
  33778. form: "feral",
  33779. },
  33780. rumpFeral: {
  33781. height: math.unit(13.11, "feet"),
  33782. name: "Rump",
  33783. image: {
  33784. source: "./media/characters/sini/rump-feral.svg"
  33785. },
  33786. form: "feral",
  33787. },
  33788. dickFeral: {
  33789. height: math.unit(1, "feet"),
  33790. name: "Dick",
  33791. image: {
  33792. source: "./media/characters/sini/dick-feral.svg"
  33793. },
  33794. form: "feral",
  33795. },
  33796. eyeFeral: {
  33797. height: math.unit(1.23, "feet"),
  33798. name: "Eye",
  33799. image: {
  33800. source: "./media/characters/sini/eye-feral.svg"
  33801. },
  33802. form: "feral",
  33803. },
  33804. },
  33805. [
  33806. {
  33807. name: "Normal",
  33808. height: math.unit(7, "feet"),
  33809. default: true,
  33810. form: "anthro"
  33811. },
  33812. {
  33813. name: "Normal",
  33814. height: math.unit(16, "feet"),
  33815. default: true,
  33816. form: "feral"
  33817. },
  33818. ],
  33819. {
  33820. "anthro": {
  33821. name: "Anthro",
  33822. default: true
  33823. },
  33824. "feral": {
  33825. name: "Feral",
  33826. }
  33827. }
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33831. {
  33832. side: {
  33833. height: math.unit(13, "meters"),
  33834. weight: math.unit(9072, "kg"),
  33835. name: "Side",
  33836. image: {
  33837. source: "./media/characters/raylldo/side.svg",
  33838. extra: 403/344,
  33839. bottom: 42/445
  33840. }
  33841. },
  33842. leaping: {
  33843. height: math.unit(12.3, "meters"),
  33844. weight: math.unit(9072, "kg"),
  33845. name: "Leaping",
  33846. image: {
  33847. source: "./media/characters/raylldo/leaping.svg",
  33848. extra: 470/249,
  33849. bottom: 13/483
  33850. }
  33851. },
  33852. flying: {
  33853. height: math.unit(18, "meters"),
  33854. weight: math.unit(9072, "kg"),
  33855. name: "Flying",
  33856. image: {
  33857. source: "./media/characters/raylldo/flying.svg"
  33858. }
  33859. },
  33860. head: {
  33861. height: math.unit(5.85, "meters"),
  33862. name: "Head",
  33863. image: {
  33864. source: "./media/characters/raylldo/head.svg"
  33865. }
  33866. },
  33867. maw: {
  33868. height: math.unit(5.32, "meters"),
  33869. name: "Maw",
  33870. image: {
  33871. source: "./media/characters/raylldo/maw.svg"
  33872. }
  33873. },
  33874. eye: {
  33875. height: math.unit(0.54, "meters"),
  33876. name: "Eye",
  33877. image: {
  33878. source: "./media/characters/raylldo/eye.svg"
  33879. }
  33880. },
  33881. },
  33882. [
  33883. {
  33884. name: "Normal",
  33885. height: math.unit(13, "meters"),
  33886. default: true
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33892. {
  33893. anthroFront: {
  33894. height: math.unit(9, "feet"),
  33895. weight: math.unit(600, "lb"),
  33896. name: "Anthro (Front)",
  33897. image: {
  33898. source: "./media/characters/glint/anthro-front.svg",
  33899. extra: 1097/1018,
  33900. bottom: 28/1125
  33901. }
  33902. },
  33903. anthroBack: {
  33904. height: math.unit(9, "feet"),
  33905. weight: math.unit(600, "lb"),
  33906. name: "Anthro (Back)",
  33907. image: {
  33908. source: "./media/characters/glint/anthro-back.svg",
  33909. extra: 1154/997,
  33910. bottom: 36/1190
  33911. }
  33912. },
  33913. feral: {
  33914. height: math.unit(11, "feet"),
  33915. weight: math.unit(50000, "lb"),
  33916. name: "Feral",
  33917. image: {
  33918. source: "./media/characters/glint/feral.svg",
  33919. extra: 3035/1585,
  33920. bottom: 1169/4204
  33921. }
  33922. },
  33923. dickAnthro: {
  33924. height: math.unit(0.7, "meters"),
  33925. name: "Dick (Anthro)",
  33926. image: {
  33927. source: "./media/characters/glint/dick-anthro.svg"
  33928. }
  33929. },
  33930. dickFeral: {
  33931. height: math.unit(2.65, "meters"),
  33932. name: "Dick (Feral)",
  33933. image: {
  33934. source: "./media/characters/glint/dick-feral.svg"
  33935. }
  33936. },
  33937. slitHidden: {
  33938. height: math.unit(5.85, "meters"),
  33939. name: "Slit (Hidden)",
  33940. image: {
  33941. source: "./media/characters/glint/slit-hidden.svg"
  33942. }
  33943. },
  33944. slitErect: {
  33945. height: math.unit(5.85, "meters"),
  33946. name: "Slit (Erect)",
  33947. image: {
  33948. source: "./media/characters/glint/slit-erect.svg"
  33949. }
  33950. },
  33951. mawAnthro: {
  33952. height: math.unit(0.63, "meters"),
  33953. name: "Maw (Anthro)",
  33954. image: {
  33955. source: "./media/characters/glint/maw.svg"
  33956. }
  33957. },
  33958. mawFeral: {
  33959. height: math.unit(2.89, "meters"),
  33960. name: "Maw (Feral)",
  33961. image: {
  33962. source: "./media/characters/glint/maw.svg"
  33963. }
  33964. },
  33965. },
  33966. [
  33967. {
  33968. name: "Normal",
  33969. height: math.unit(9, "feet"),
  33970. default: true
  33971. },
  33972. ]
  33973. ))
  33974. characterMakers.push(() => makeCharacter(
  33975. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33976. {
  33977. side: {
  33978. height: math.unit(15, "feet"),
  33979. weight: math.unit(5000, "kg"),
  33980. name: "Side",
  33981. image: {
  33982. source: "./media/characters/kairne/side.svg",
  33983. extra: 979/811,
  33984. bottom: 13/992
  33985. }
  33986. },
  33987. front: {
  33988. height: math.unit(15, "feet"),
  33989. weight: math.unit(5000, "kg"),
  33990. name: "Front",
  33991. image: {
  33992. source: "./media/characters/kairne/front.svg",
  33993. extra: 908/814,
  33994. bottom: 26/934
  33995. }
  33996. },
  33997. sideNsfw: {
  33998. height: math.unit(15, "feet"),
  33999. weight: math.unit(5000, "kg"),
  34000. name: "Side (NSFW)",
  34001. image: {
  34002. source: "./media/characters/kairne/side-nsfw.svg",
  34003. extra: 979/811,
  34004. bottom: 13/992
  34005. }
  34006. },
  34007. frontNsfw: {
  34008. height: math.unit(15, "feet"),
  34009. weight: math.unit(5000, "kg"),
  34010. name: "Front (NSFW)",
  34011. image: {
  34012. source: "./media/characters/kairne/front-nsfw.svg",
  34013. extra: 908/814,
  34014. bottom: 26/934
  34015. }
  34016. },
  34017. dickCaged: {
  34018. height: math.unit(0.65, "meters"),
  34019. name: "Dick-caged",
  34020. image: {
  34021. source: "./media/characters/kairne/dick-caged.svg"
  34022. }
  34023. },
  34024. dick: {
  34025. height: math.unit(0.79, "meters"),
  34026. name: "Dick",
  34027. image: {
  34028. source: "./media/characters/kairne/dick.svg"
  34029. }
  34030. },
  34031. genitals: {
  34032. height: math.unit(1.29, "meters"),
  34033. name: "Genitals",
  34034. image: {
  34035. source: "./media/characters/kairne/genitals.svg"
  34036. }
  34037. },
  34038. maw: {
  34039. height: math.unit(1.73, "meters"),
  34040. name: "Maw",
  34041. image: {
  34042. source: "./media/characters/kairne/maw.svg"
  34043. }
  34044. },
  34045. },
  34046. [
  34047. {
  34048. name: "Normal",
  34049. height: math.unit(15, "feet"),
  34050. default: true
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(5 + 8/12, "feet"),
  34059. weight: math.unit(139, "lb"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/biscuit-jackal/front.svg",
  34063. extra: 2106/1961,
  34064. bottom: 58/2164
  34065. }
  34066. },
  34067. back: {
  34068. height: math.unit(5 + 8/12, "feet"),
  34069. weight: math.unit(139, "lb"),
  34070. name: "Back",
  34071. image: {
  34072. source: "./media/characters/biscuit-jackal/back.svg",
  34073. extra: 2132/1976,
  34074. bottom: 57/2189
  34075. }
  34076. },
  34077. werejackal: {
  34078. height: math.unit(6 + 3/12, "feet"),
  34079. weight: math.unit(188, "lb"),
  34080. name: "Werejackal",
  34081. image: {
  34082. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34083. extra: 2373/2178,
  34084. bottom: 53/2426
  34085. }
  34086. },
  34087. },
  34088. [
  34089. {
  34090. name: "Normal",
  34091. height: math.unit(5 + 8/12, "feet"),
  34092. default: true
  34093. },
  34094. ]
  34095. ))
  34096. characterMakers.push(() => makeCharacter(
  34097. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34098. {
  34099. front: {
  34100. height: math.unit(140, "cm"),
  34101. weight: math.unit(45, "kg"),
  34102. name: "Front",
  34103. image: {
  34104. source: "./media/characters/tayra-white/front.svg",
  34105. extra: 2229/2192,
  34106. bottom: 75/2304
  34107. }
  34108. },
  34109. },
  34110. [
  34111. {
  34112. name: "Normal",
  34113. height: math.unit(140, "cm"),
  34114. default: true
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34120. {
  34121. front: {
  34122. height: math.unit(4 + 5/12, "feet"),
  34123. name: "Front",
  34124. image: {
  34125. source: "./media/characters/scoop/front.svg",
  34126. extra: 1257/1136,
  34127. bottom: 69/1326
  34128. }
  34129. },
  34130. back: {
  34131. height: math.unit(4 + 5/12, "feet"),
  34132. name: "Back",
  34133. image: {
  34134. source: "./media/characters/scoop/back.svg",
  34135. extra: 1321/1152,
  34136. bottom: 32/1353
  34137. }
  34138. },
  34139. maw: {
  34140. height: math.unit(0.68, "feet"),
  34141. name: "Maw",
  34142. image: {
  34143. source: "./media/characters/scoop/maw.svg"
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Really Small",
  34150. height: math.unit(1, "mm")
  34151. },
  34152. {
  34153. name: "Micro",
  34154. height: math.unit(1, "inch")
  34155. },
  34156. {
  34157. name: "Normal",
  34158. height: math.unit(4 + 5/12, "feet"),
  34159. default: true
  34160. },
  34161. {
  34162. name: "Macro",
  34163. height: math.unit(200, "feet")
  34164. },
  34165. {
  34166. name: "Megamacro",
  34167. height: math.unit(3240, "feet")
  34168. },
  34169. {
  34170. name: "Teramacro",
  34171. height: math.unit(2500, "miles")
  34172. },
  34173. ]
  34174. ))
  34175. characterMakers.push(() => makeCharacter(
  34176. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34177. {
  34178. front: {
  34179. height: math.unit(15 + 7/12, "feet"),
  34180. weight: math.unit(1150, "tons"),
  34181. name: "Front",
  34182. image: {
  34183. source: "./media/characters/saphinara/front.svg",
  34184. extra: 1837/1643,
  34185. bottom: 84/1921
  34186. },
  34187. form: "normal",
  34188. default: true
  34189. },
  34190. side: {
  34191. height: math.unit(15 + 7/12, "feet"),
  34192. weight: math.unit(1150, "tons"),
  34193. name: "Side",
  34194. image: {
  34195. source: "./media/characters/saphinara/side.svg",
  34196. extra: 605/547,
  34197. bottom: 6/611
  34198. },
  34199. form: "normal"
  34200. },
  34201. back: {
  34202. height: math.unit(15 + 7/12, "feet"),
  34203. weight: math.unit(1150, "tons"),
  34204. name: "Back",
  34205. image: {
  34206. source: "./media/characters/saphinara/back.svg",
  34207. extra: 591/531,
  34208. bottom: 13/604
  34209. },
  34210. form: "normal"
  34211. },
  34212. frontTail: {
  34213. height: math.unit(15 + 7/12, "feet"),
  34214. weight: math.unit(1150, "tons"),
  34215. name: "Front (Full Tail)",
  34216. image: {
  34217. source: "./media/characters/saphinara/front-tail.svg",
  34218. extra: 2256/1630,
  34219. bottom: 261/2517
  34220. },
  34221. form: "normal"
  34222. },
  34223. insides: {
  34224. height: math.unit(11.92, "feet"),
  34225. name: "Insides",
  34226. image: {
  34227. source: "./media/characters/saphinara/insides.svg"
  34228. },
  34229. form: "normal"
  34230. },
  34231. head: {
  34232. height: math.unit(4.17, "feet"),
  34233. name: "Head",
  34234. image: {
  34235. source: "./media/characters/saphinara/head.svg"
  34236. },
  34237. form: "normal"
  34238. },
  34239. tongue: {
  34240. height: math.unit(4.60, "feet"),
  34241. name: "Tongue",
  34242. image: {
  34243. source: "./media/characters/saphinara/tongue.svg"
  34244. },
  34245. form: "normal"
  34246. },
  34247. headEnraged: {
  34248. height: math.unit(5.55, "feet"),
  34249. name: "Head (Enraged)",
  34250. image: {
  34251. source: "./media/characters/saphinara/head-enraged.svg"
  34252. },
  34253. form: "normal"
  34254. },
  34255. wings: {
  34256. height: math.unit(11.95, "feet"),
  34257. name: "Wings",
  34258. image: {
  34259. source: "./media/characters/saphinara/wings.svg"
  34260. },
  34261. form: "normal"
  34262. },
  34263. feathers: {
  34264. height: math.unit(8.92, "feet"),
  34265. name: "Feathers",
  34266. image: {
  34267. source: "./media/characters/saphinara/feathers.svg"
  34268. },
  34269. form: "normal"
  34270. },
  34271. shackles: {
  34272. height: math.unit(2, "feet"),
  34273. name: "Shackles",
  34274. image: {
  34275. source: "./media/characters/saphinara/shackles.svg"
  34276. },
  34277. form: "normal"
  34278. },
  34279. eyes: {
  34280. height: math.unit(1.331, "feet"),
  34281. name: "Eyes",
  34282. image: {
  34283. source: "./media/characters/saphinara/eyes.svg"
  34284. },
  34285. form: "normal"
  34286. },
  34287. eyesEnraged: {
  34288. height: math.unit(1.331, "feet"),
  34289. name: "Eyes (Enraged)",
  34290. image: {
  34291. source: "./media/characters/saphinara/eyes-enraged.svg"
  34292. },
  34293. form: "normal"
  34294. },
  34295. trueFormSide: {
  34296. height: math.unit(200, "feet"),
  34297. weight: math.unit(1e7, "tons"),
  34298. name: "Side",
  34299. image: {
  34300. source: "./media/characters/saphinara/true-form-side.svg",
  34301. extra: 1399/770,
  34302. bottom: 97/1496
  34303. },
  34304. form: "true-form",
  34305. default: true
  34306. },
  34307. trueFormMaw: {
  34308. height: math.unit(71.5, "feet"),
  34309. name: "Maw",
  34310. image: {
  34311. source: "./media/characters/saphinara/true-form-maw.svg",
  34312. extra: 2302/1453,
  34313. bottom: 0/2302
  34314. },
  34315. form: "true-form"
  34316. },
  34317. },
  34318. [
  34319. {
  34320. name: "Normal",
  34321. height: math.unit(15 + 7/12, "feet"),
  34322. default: true,
  34323. form: "normal"
  34324. },
  34325. {
  34326. name: "Angry",
  34327. height: math.unit(30 + 6/12, "feet"),
  34328. form: "normal"
  34329. },
  34330. {
  34331. name: "Enraged",
  34332. height: math.unit(102 + 1/12, "feet"),
  34333. form: "normal"
  34334. },
  34335. {
  34336. name: "True",
  34337. height: math.unit(200, "feet"),
  34338. default: true,
  34339. form: "true-form"
  34340. }
  34341. ],
  34342. {
  34343. "normal": {
  34344. name: "Normal",
  34345. default: true
  34346. },
  34347. "true-form": {
  34348. name: "True Form"
  34349. }
  34350. }
  34351. ))
  34352. characterMakers.push(() => makeCharacter(
  34353. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34354. {
  34355. front: {
  34356. height: math.unit(6 + 8/12, "feet"),
  34357. weight: math.unit(300, "lb"),
  34358. name: "Front",
  34359. image: {
  34360. source: "./media/characters/jrain/front.svg",
  34361. extra: 3039/2865,
  34362. bottom: 399/3438
  34363. }
  34364. },
  34365. back: {
  34366. height: math.unit(6 + 8/12, "feet"),
  34367. weight: math.unit(300, "lb"),
  34368. name: "Back",
  34369. image: {
  34370. source: "./media/characters/jrain/back.svg",
  34371. extra: 3089/2938,
  34372. bottom: 172/3261
  34373. }
  34374. },
  34375. head: {
  34376. height: math.unit(2.14, "feet"),
  34377. name: "Head",
  34378. image: {
  34379. source: "./media/characters/jrain/head.svg"
  34380. }
  34381. },
  34382. maw: {
  34383. height: math.unit(1.77, "feet"),
  34384. name: "Maw",
  34385. image: {
  34386. source: "./media/characters/jrain/maw.svg"
  34387. }
  34388. },
  34389. leftHand: {
  34390. height: math.unit(1.1, "feet"),
  34391. name: "Left Hand",
  34392. image: {
  34393. source: "./media/characters/jrain/left-hand.svg"
  34394. }
  34395. },
  34396. rightHand: {
  34397. height: math.unit(1.1, "feet"),
  34398. name: "Right Hand",
  34399. image: {
  34400. source: "./media/characters/jrain/right-hand.svg"
  34401. }
  34402. },
  34403. eye: {
  34404. height: math.unit(0.35, "feet"),
  34405. name: "Eye",
  34406. image: {
  34407. source: "./media/characters/jrain/eye.svg"
  34408. }
  34409. },
  34410. },
  34411. [
  34412. {
  34413. name: "Normal",
  34414. height: math.unit(6 + 8/12, "feet"),
  34415. default: true
  34416. },
  34417. {
  34418. name: "Casually Large",
  34419. height: math.unit(25, "feet")
  34420. },
  34421. {
  34422. name: "Giant",
  34423. height: math.unit(100, "feet")
  34424. },
  34425. {
  34426. name: "Kaiju",
  34427. height: math.unit(300, "feet")
  34428. },
  34429. ]
  34430. ))
  34431. characterMakers.push(() => makeCharacter(
  34432. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34433. {
  34434. dragon: {
  34435. height: math.unit(5, "meters"),
  34436. name: "Dragon",
  34437. image: {
  34438. source: "./media/characters/sabrina/dragon.svg",
  34439. extra: 3670 / 2365,
  34440. bottom: 333 / 4003
  34441. }
  34442. },
  34443. gryphon: {
  34444. height: math.unit(3, "meters"),
  34445. name: "Gryphon",
  34446. image: {
  34447. source: "./media/characters/sabrina/gryphon.svg",
  34448. extra: 1576 / 945,
  34449. bottom: 71 / 1647
  34450. }
  34451. },
  34452. snake: {
  34453. height: math.unit(12, "meters"),
  34454. name: "Snake",
  34455. image: {
  34456. source: "./media/characters/sabrina/snake.svg",
  34457. extra: 1758 / 1320,
  34458. bottom: 186 / 1944
  34459. }
  34460. },
  34461. collar: {
  34462. height: math.unit(1.86, "meters"),
  34463. name: "Collar",
  34464. image: {
  34465. source: "./media/characters/sabrina/collar.svg"
  34466. }
  34467. },
  34468. eye: {
  34469. height: math.unit(0.53, "meters"),
  34470. name: "Eye",
  34471. image: {
  34472. source: "./media/characters/sabrina/eye.svg"
  34473. }
  34474. },
  34475. foot: {
  34476. height: math.unit(1.86, "meters"),
  34477. name: "Foot",
  34478. image: {
  34479. source: "./media/characters/sabrina/foot.svg"
  34480. }
  34481. },
  34482. hand: {
  34483. height: math.unit(1.32, "meters"),
  34484. name: "Hand",
  34485. image: {
  34486. source: "./media/characters/sabrina/hand.svg"
  34487. }
  34488. },
  34489. head: {
  34490. height: math.unit(2.44, "meters"),
  34491. name: "Head",
  34492. image: {
  34493. source: "./media/characters/sabrina/head.svg"
  34494. }
  34495. },
  34496. headAngry: {
  34497. height: math.unit(2.44, "meters"),
  34498. name: "Head (Angry))",
  34499. image: {
  34500. source: "./media/characters/sabrina/head-angry.svg"
  34501. }
  34502. },
  34503. maw: {
  34504. height: math.unit(1.65, "meters"),
  34505. name: "Maw",
  34506. image: {
  34507. source: "./media/characters/sabrina/maw.svg"
  34508. }
  34509. },
  34510. spikes: {
  34511. height: math.unit(1.69, "meters"),
  34512. name: "Spikes",
  34513. image: {
  34514. source: "./media/characters/sabrina/spikes.svg"
  34515. }
  34516. },
  34517. stomach: {
  34518. height: math.unit(1.15, "meters"),
  34519. name: "Stomach",
  34520. image: {
  34521. source: "./media/characters/sabrina/stomach.svg"
  34522. }
  34523. },
  34524. tongue: {
  34525. height: math.unit(1.27, "meters"),
  34526. name: "Tongue",
  34527. image: {
  34528. source: "./media/characters/sabrina/tongue.svg"
  34529. }
  34530. },
  34531. wingDorsal: {
  34532. height: math.unit(4.85, "meters"),
  34533. name: "Wing (Dorsal)",
  34534. image: {
  34535. source: "./media/characters/sabrina/wing-dorsal.svg"
  34536. }
  34537. },
  34538. wingVentral: {
  34539. height: math.unit(4.85, "meters"),
  34540. name: "Wing (Ventral)",
  34541. image: {
  34542. source: "./media/characters/sabrina/wing-ventral.svg"
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Normal",
  34549. height: math.unit(5, "meters"),
  34550. default: true
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34556. {
  34557. frontMaid: {
  34558. height: math.unit(5 + 5/12, "feet"),
  34559. weight: math.unit(130, "lb"),
  34560. name: "Front (Maid)",
  34561. image: {
  34562. source: "./media/characters/midnight-tales/front-maid.svg",
  34563. extra: 489/454,
  34564. bottom: 61/550
  34565. }
  34566. },
  34567. frontFormal: {
  34568. height: math.unit(5 + 5/12, "feet"),
  34569. weight: math.unit(130, "lb"),
  34570. name: "Front (Formal)",
  34571. image: {
  34572. source: "./media/characters/midnight-tales/front-formal.svg",
  34573. extra: 489/454,
  34574. bottom: 61/550
  34575. }
  34576. },
  34577. back: {
  34578. height: math.unit(5 + 5/12, "feet"),
  34579. weight: math.unit(130, "lb"),
  34580. name: "Back",
  34581. image: {
  34582. source: "./media/characters/midnight-tales/back.svg",
  34583. extra: 498/456,
  34584. bottom: 33/531
  34585. }
  34586. },
  34587. frontBeast: {
  34588. height: math.unit(40, "feet"),
  34589. weight: math.unit(64000, "lb"),
  34590. name: "Front (Beast)",
  34591. image: {
  34592. source: "./media/characters/midnight-tales/front-beast.svg",
  34593. extra: 927/860,
  34594. bottom: 53/980
  34595. }
  34596. },
  34597. backBeast: {
  34598. height: math.unit(40, "feet"),
  34599. weight: math.unit(64000, "lb"),
  34600. name: "Back (Beast)",
  34601. image: {
  34602. source: "./media/characters/midnight-tales/back-beast.svg",
  34603. extra: 929/855,
  34604. bottom: 16/945
  34605. }
  34606. },
  34607. footBeast: {
  34608. height: math.unit(6.7, "feet"),
  34609. name: "Foot (Beast)",
  34610. image: {
  34611. source: "./media/characters/midnight-tales/foot-beast.svg"
  34612. }
  34613. },
  34614. headBeast: {
  34615. height: math.unit(8, "feet"),
  34616. name: "Head (Beast)",
  34617. image: {
  34618. source: "./media/characters/midnight-tales/head-beast.svg"
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Normal",
  34625. height: math.unit(5 + 5 / 12, "feet"),
  34626. default: true
  34627. },
  34628. {
  34629. name: "Macro",
  34630. height: math.unit(25, "feet")
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(5 + 10/12, "feet"),
  34639. name: "Front",
  34640. image: {
  34641. source: "./media/characters/argon/front.svg",
  34642. extra: 2009/1935,
  34643. bottom: 118/2127
  34644. }
  34645. },
  34646. back: {
  34647. height: math.unit(5 + 10/12, "feet"),
  34648. name: "Back",
  34649. image: {
  34650. source: "./media/characters/argon/back.svg",
  34651. extra: 2047/1992,
  34652. bottom: 20/2067
  34653. }
  34654. },
  34655. frontDressed: {
  34656. height: math.unit(5 + 10/12, "feet"),
  34657. name: "Front (Dressed)",
  34658. image: {
  34659. source: "./media/characters/argon/front-dressed.svg",
  34660. extra: 2009/1935,
  34661. bottom: 118/2127
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Normal",
  34668. height: math.unit(5 + 10/12, "feet"),
  34669. default: true
  34670. },
  34671. ]
  34672. ))
  34673. characterMakers.push(() => makeCharacter(
  34674. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34675. {
  34676. front: {
  34677. height: math.unit(8 + 6/12, "feet"),
  34678. weight: math.unit(1150, "lb"),
  34679. name: "Front",
  34680. image: {
  34681. source: "./media/characters/kichi/front.svg",
  34682. extra: 1267/1164,
  34683. bottom: 61/1328
  34684. }
  34685. },
  34686. back: {
  34687. height: math.unit(8 + 6/12, "feet"),
  34688. weight: math.unit(1150, "lb"),
  34689. name: "Back",
  34690. image: {
  34691. source: "./media/characters/kichi/back.svg",
  34692. extra: 1273/1166,
  34693. bottom: 33/1306
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(8 + 6/12, "feet"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(6, "feet"),
  34710. weight: math.unit(210, "lb"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/manetel-greyscale/front.svg",
  34714. extra: 350/312,
  34715. bottom: 8/358
  34716. }
  34717. },
  34718. },
  34719. [
  34720. {
  34721. name: "Micro",
  34722. height: math.unit(2, "inches")
  34723. },
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(6, "feet"),
  34727. default: true
  34728. },
  34729. {
  34730. name: "Minimacro",
  34731. height: math.unit(17, "feet")
  34732. },
  34733. {
  34734. name: "Macro",
  34735. height: math.unit(117, "feet")
  34736. },
  34737. ]
  34738. ))
  34739. characterMakers.push(() => makeCharacter(
  34740. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34741. {
  34742. side: {
  34743. height: math.unit(5 + 1/12, "feet"),
  34744. weight: math.unit(418, "lb"),
  34745. name: "Side",
  34746. image: {
  34747. source: "./media/characters/softpurr/side.svg",
  34748. extra: 1993/1945,
  34749. bottom: 134/2127
  34750. }
  34751. },
  34752. front: {
  34753. height: math.unit(5 + 1/12, "feet"),
  34754. weight: math.unit(418, "lb"),
  34755. name: "Front",
  34756. image: {
  34757. source: "./media/characters/softpurr/front.svg",
  34758. extra: 1950/1856,
  34759. bottom: 174/2124
  34760. }
  34761. },
  34762. paw: {
  34763. height: math.unit(1, "feet"),
  34764. name: "Paw",
  34765. image: {
  34766. source: "./media/characters/softpurr/paw.svg"
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(5 + 1/12, "feet"),
  34774. default: true
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(260, "meters"),
  34783. name: "Front",
  34784. image: {
  34785. source: "./media/characters/anahita/front.svg",
  34786. extra: 665/635,
  34787. bottom: 89/754
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Macro",
  34794. height: math.unit(260, "meters"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(4 + 10/12, "feet"),
  34804. weight: math.unit(160, "lb"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/chip-mouse/front.svg",
  34808. extra: 3528/3408,
  34809. bottom: 0/3528
  34810. }
  34811. },
  34812. frontNsfw: {
  34813. height: math.unit(4 + 10/12, "feet"),
  34814. weight: math.unit(160, "lb"),
  34815. name: "Front (NSFW)",
  34816. image: {
  34817. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34818. extra: 3528/3408,
  34819. bottom: 0/3528
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(4 + 10/12, "feet"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34833. {
  34834. side: {
  34835. height: math.unit(10, "feet"),
  34836. weight: math.unit(14000, "lb"),
  34837. name: "Side",
  34838. image: {
  34839. source: "./media/characters/kremm/side.svg",
  34840. extra: 1390/1053,
  34841. bottom: 90/1480
  34842. }
  34843. },
  34844. gut: {
  34845. height: math.unit(5.8, "feet"),
  34846. name: "Gut",
  34847. image: {
  34848. source: "./media/characters/kremm/gut.svg"
  34849. }
  34850. },
  34851. ass: {
  34852. height: math.unit(6.1, "feet"),
  34853. name: "Ass",
  34854. image: {
  34855. source: "./media/characters/kremm/ass.svg"
  34856. }
  34857. },
  34858. jaws: {
  34859. height: math.unit(2.2, "feet"),
  34860. name: "Jaws",
  34861. image: {
  34862. source: "./media/characters/kremm/jaws.svg"
  34863. }
  34864. },
  34865. dick: {
  34866. height: math.unit(4.26, "feet"),
  34867. name: "Dick",
  34868. image: {
  34869. source: "./media/characters/kremm/dick.svg"
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Normal",
  34876. height: math.unit(10, "feet"),
  34877. default: true
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(30, "stories"),
  34886. name: "Front",
  34887. image: {
  34888. source: "./media/characters/kai/front.svg",
  34889. extra: 1892/1718,
  34890. bottom: 162/2054
  34891. }
  34892. },
  34893. },
  34894. [
  34895. {
  34896. name: "Macro",
  34897. height: math.unit(30, "stories"),
  34898. default: true
  34899. },
  34900. ]
  34901. ))
  34902. characterMakers.push(() => makeCharacter(
  34903. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34904. {
  34905. front: {
  34906. height: math.unit(6 + 4/12, "feet"),
  34907. weight: math.unit(145, "lb"),
  34908. name: "Front",
  34909. image: {
  34910. source: "./media/characters/sykes/front.svg",
  34911. extra: 1321 / 1187,
  34912. bottom: 66 / 1387
  34913. }
  34914. },
  34915. back: {
  34916. height: math.unit(6 + 4/12, "feet"),
  34917. weight: math.unit(145, "lb"),
  34918. name: "Back",
  34919. image: {
  34920. source: "./media/characters/sykes/back.svg",
  34921. extra: 1326/1181,
  34922. bottom: 31/1357
  34923. }
  34924. },
  34925. traditionalOutfit: {
  34926. height: math.unit(6 + 4/12, "feet"),
  34927. weight: math.unit(145, "lb"),
  34928. name: "Traditional Outfit",
  34929. image: {
  34930. source: "./media/characters/sykes/traditional-outfit.svg",
  34931. extra: 1321 / 1187,
  34932. bottom: 66 / 1387
  34933. }
  34934. },
  34935. adventureOutfit: {
  34936. height: math.unit(6 + 4/12, "feet"),
  34937. weight: math.unit(145, "lb"),
  34938. name: "Adventure Outfit",
  34939. image: {
  34940. source: "./media/characters/sykes/adventure-outfit.svg",
  34941. extra: 1321 / 1187,
  34942. bottom: 66 / 1387
  34943. }
  34944. },
  34945. handLeft: {
  34946. height: math.unit(0.9, "feet"),
  34947. name: "Hand (Left)",
  34948. image: {
  34949. source: "./media/characters/sykes/hand-left.svg"
  34950. }
  34951. },
  34952. handRight: {
  34953. height: math.unit(0.839, "feet"),
  34954. name: "Hand (Right)",
  34955. image: {
  34956. source: "./media/characters/sykes/hand-right.svg"
  34957. }
  34958. },
  34959. leftFoot: {
  34960. height: math.unit(1.2, "feet"),
  34961. name: "Foot (Left)",
  34962. image: {
  34963. source: "./media/characters/sykes/foot-left.svg"
  34964. }
  34965. },
  34966. rightFoot: {
  34967. height: math.unit(1.2, "feet"),
  34968. name: "Foot (Right)",
  34969. image: {
  34970. source: "./media/characters/sykes/foot-right.svg"
  34971. }
  34972. },
  34973. maw: {
  34974. height: math.unit(1.93, "feet"),
  34975. name: "Maw",
  34976. image: {
  34977. source: "./media/characters/sykes/maw.svg"
  34978. }
  34979. },
  34980. teeth: {
  34981. height: math.unit(0.51, "feet"),
  34982. name: "Teeth",
  34983. image: {
  34984. source: "./media/characters/sykes/teeth.svg"
  34985. }
  34986. },
  34987. tongue: {
  34988. height: math.unit(2.13, "feet"),
  34989. name: "Tongue",
  34990. image: {
  34991. source: "./media/characters/sykes/tongue.svg"
  34992. }
  34993. },
  34994. uvula: {
  34995. height: math.unit(0.16, "feet"),
  34996. name: "Uvula",
  34997. image: {
  34998. source: "./media/characters/sykes/uvula.svg"
  34999. }
  35000. },
  35001. collar: {
  35002. height: math.unit(0.287, "feet"),
  35003. name: "Collar",
  35004. image: {
  35005. source: "./media/characters/sykes/collar.svg"
  35006. }
  35007. },
  35008. tail: {
  35009. height: math.unit(3.8, "feet"),
  35010. name: "Tail",
  35011. image: {
  35012. source: "./media/characters/sykes/tail.svg"
  35013. }
  35014. },
  35015. },
  35016. [
  35017. {
  35018. name: "Shrunken",
  35019. height: math.unit(5, "inches")
  35020. },
  35021. {
  35022. name: "Normal",
  35023. height: math.unit(6 + 4 / 12, "feet"),
  35024. default: true
  35025. },
  35026. {
  35027. name: "Big",
  35028. height: math.unit(15, "feet")
  35029. },
  35030. ]
  35031. ))
  35032. characterMakers.push(() => makeCharacter(
  35033. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35034. {
  35035. front: {
  35036. height: math.unit(5 + 8/12, "feet"),
  35037. weight: math.unit(190, "lb"),
  35038. name: "Front",
  35039. image: {
  35040. source: "./media/characters/oven-otter/front.svg",
  35041. extra: 1809/1740,
  35042. bottom: 181/1990
  35043. }
  35044. },
  35045. back: {
  35046. height: math.unit(5 + 8/12, "feet"),
  35047. weight: math.unit(190, "lb"),
  35048. name: "Back",
  35049. image: {
  35050. source: "./media/characters/oven-otter/back.svg",
  35051. extra: 1709/1635,
  35052. bottom: 118/1827
  35053. }
  35054. },
  35055. hand: {
  35056. height: math.unit(1.07, "feet"),
  35057. name: "Hand",
  35058. image: {
  35059. source: "./media/characters/oven-otter/hand.svg"
  35060. }
  35061. },
  35062. beans: {
  35063. height: math.unit(1.74, "feet"),
  35064. name: "Beans",
  35065. image: {
  35066. source: "./media/characters/oven-otter/beans.svg"
  35067. }
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Micro",
  35073. height: math.unit(0.5, "inches")
  35074. },
  35075. {
  35076. name: "Normal",
  35077. height: math.unit(5 + 8/12, "feet"),
  35078. default: true
  35079. },
  35080. {
  35081. name: "Macro",
  35082. height: math.unit(250, "feet")
  35083. },
  35084. {
  35085. name: "Really High",
  35086. height: math.unit(420, "feet")
  35087. },
  35088. ]
  35089. ))
  35090. characterMakers.push(() => makeCharacter(
  35091. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35092. {
  35093. front: {
  35094. height: math.unit(5, "meters"),
  35095. weight: math.unit(292000000000000, "kg"),
  35096. name: "Front",
  35097. image: {
  35098. source: "./media/characters/devourer/front.svg",
  35099. extra: 1800/1733,
  35100. bottom: 211/2011
  35101. }
  35102. },
  35103. maw: {
  35104. height: math.unit(1.1, "meter"),
  35105. name: "Maw",
  35106. image: {
  35107. source: "./media/characters/devourer/maw.svg"
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Small",
  35114. height: math.unit(3, "meters")
  35115. },
  35116. {
  35117. name: "Large",
  35118. height: math.unit(5, "meters"),
  35119. default: true
  35120. },
  35121. ]
  35122. ))
  35123. characterMakers.push(() => makeCharacter(
  35124. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35125. {
  35126. front: {
  35127. height: math.unit(6, "feet"),
  35128. weight: math.unit(400, "lb"),
  35129. name: "Front",
  35130. image: {
  35131. source: "./media/characters/ellarby/front.svg",
  35132. extra: 1909/1763,
  35133. bottom: 80/1989
  35134. }
  35135. },
  35136. back: {
  35137. height: math.unit(6, "feet"),
  35138. weight: math.unit(400, "lb"),
  35139. name: "Back",
  35140. image: {
  35141. source: "./media/characters/ellarby/back.svg",
  35142. extra: 1914/1784,
  35143. bottom: 172/2086
  35144. }
  35145. },
  35146. },
  35147. [
  35148. {
  35149. name: "Mischief",
  35150. height: math.unit(18, "inches")
  35151. },
  35152. {
  35153. name: "Trouble",
  35154. height: math.unit(12, "feet")
  35155. },
  35156. {
  35157. name: "Havoc",
  35158. height: math.unit(200, "feet"),
  35159. default: true
  35160. },
  35161. {
  35162. name: "Pandemonium",
  35163. height: math.unit(1, "mile")
  35164. },
  35165. {
  35166. name: "Catastrophe",
  35167. height: math.unit(100, "miles")
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35173. {
  35174. front: {
  35175. height: math.unit(4.7, "meters"),
  35176. weight: math.unit(6500, "kg"),
  35177. name: "Front",
  35178. image: {
  35179. source: "./media/characters/vex/front.svg",
  35180. extra: 1288/1140,
  35181. bottom: 100/1388
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(4.7, "meters"),
  35189. default: true
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35195. {
  35196. normal: {
  35197. height: math.unit(6, "feet"),
  35198. weight: math.unit(350, "lb"),
  35199. name: "Normal",
  35200. image: {
  35201. source: "./media/characters/teshy/normal.svg",
  35202. extra: 1795/1735,
  35203. bottom: 16/1811
  35204. }
  35205. },
  35206. monsterFront: {
  35207. height: math.unit(12, "feet"),
  35208. weight: math.unit(4700, "lb"),
  35209. name: "Monster (Front)",
  35210. image: {
  35211. source: "./media/characters/teshy/monster-front.svg",
  35212. extra: 2042/2034,
  35213. bottom: 128/2170
  35214. }
  35215. },
  35216. monsterSide: {
  35217. height: math.unit(12, "feet"),
  35218. weight: math.unit(4700, "lb"),
  35219. name: "Monster (Side)",
  35220. image: {
  35221. source: "./media/characters/teshy/monster-side.svg",
  35222. extra: 2067/2056,
  35223. bottom: 70/2137
  35224. }
  35225. },
  35226. monsterBack: {
  35227. height: math.unit(12, "feet"),
  35228. weight: math.unit(4700, "lb"),
  35229. name: "Monster (Back)",
  35230. image: {
  35231. source: "./media/characters/teshy/monster-back.svg",
  35232. extra: 1921/1914,
  35233. bottom: 171/2092
  35234. }
  35235. },
  35236. },
  35237. [
  35238. {
  35239. name: "Normal",
  35240. height: math.unit(6, "feet"),
  35241. default: true
  35242. },
  35243. ]
  35244. ))
  35245. characterMakers.push(() => makeCharacter(
  35246. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35247. {
  35248. front: {
  35249. height: math.unit(6, "feet"),
  35250. name: "Front",
  35251. image: {
  35252. source: "./media/characters/ramey/front.svg",
  35253. extra: 790/787,
  35254. bottom: 27/817
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Normal",
  35261. height: math.unit(6, "feet"),
  35262. default: true
  35263. },
  35264. ]
  35265. ))
  35266. characterMakers.push(() => makeCharacter(
  35267. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35268. {
  35269. front: {
  35270. height: math.unit(5 + 5/12, "feet"),
  35271. weight: math.unit(120, "lb"),
  35272. name: "Front",
  35273. image: {
  35274. source: "./media/characters/phirae/front.svg",
  35275. extra: 2491/2436,
  35276. bottom: 38/2529
  35277. }
  35278. },
  35279. },
  35280. [
  35281. {
  35282. name: "Normal",
  35283. height: math.unit(5 + 5/12, "feet"),
  35284. default: true
  35285. },
  35286. ]
  35287. ))
  35288. characterMakers.push(() => makeCharacter(
  35289. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35290. {
  35291. front: {
  35292. height: math.unit(5 + 3/12, "feet"),
  35293. name: "Front",
  35294. image: {
  35295. source: "./media/characters/stagglas/front.svg",
  35296. extra: 962/882,
  35297. bottom: 53/1015
  35298. }
  35299. },
  35300. feral: {
  35301. height: math.unit(335, "cm"),
  35302. name: "Feral",
  35303. image: {
  35304. source: "./media/characters/stagglas/feral.svg",
  35305. extra: 1732/1090,
  35306. bottom: 48/1780
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(5 + 3/12, "feet"),
  35314. default: true
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(5 + 4/12, "feet"),
  35323. weight: math.unit(145, "lb"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/starra/front.svg",
  35327. extra: 1790/1691,
  35328. bottom: 91/1881
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(5 + 4/12, "feet"),
  35336. default: true
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35342. {
  35343. front: {
  35344. height: math.unit(2.2, "meters"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35348. extra: 1194/1005,
  35349. bottom: 25/1219
  35350. }
  35351. },
  35352. },
  35353. [
  35354. {
  35355. name: "Normal",
  35356. height: math.unit(2.2, "meters"),
  35357. default: true
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35363. {
  35364. side: {
  35365. height: math.unit(8 + 2/12, "feet"),
  35366. weight: math.unit(1240, "lb"),
  35367. name: "Side",
  35368. image: {
  35369. source: "./media/characters/mika-valentine/side.svg",
  35370. extra: 2670/2501,
  35371. bottom: 250/2920
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Normal",
  35378. height: math.unit(8 + 2/12, "feet"),
  35379. default: true
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35385. {
  35386. front: {
  35387. height: math.unit(7 + 2/12, "feet"),
  35388. name: "Front",
  35389. image: {
  35390. source: "./media/characters/xoltol/front.svg",
  35391. extra: 2212/2124,
  35392. bottom: 84/2296
  35393. }
  35394. },
  35395. side: {
  35396. height: math.unit(7 + 2/12, "feet"),
  35397. name: "Side",
  35398. image: {
  35399. source: "./media/characters/xoltol/side.svg",
  35400. extra: 2273/2197,
  35401. bottom: 26/2299
  35402. }
  35403. },
  35404. hand: {
  35405. height: math.unit(2.5, "feet"),
  35406. name: "Hand",
  35407. image: {
  35408. source: "./media/characters/xoltol/hand.svg"
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Small-ish",
  35415. height: math.unit(5 + 11/12, "feet")
  35416. },
  35417. {
  35418. name: "Normal",
  35419. height: math.unit(7 + 2/12, "feet")
  35420. },
  35421. {
  35422. name: "\"Macro\"",
  35423. height: math.unit(14 + 9/12, "feet"),
  35424. default: true
  35425. },
  35426. {
  35427. name: "Alternate Height",
  35428. height: math.unit(20, "feet")
  35429. },
  35430. {
  35431. name: "Actually Macro",
  35432. height: math.unit(100, "feet")
  35433. },
  35434. ]
  35435. ))
  35436. characterMakers.push(() => makeCharacter(
  35437. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35438. {
  35439. front: {
  35440. height: math.unit(5 + 2/12, "feet"),
  35441. name: "Front",
  35442. image: {
  35443. source: "./media/characters/kotetsu-redwood/front.svg",
  35444. extra: 1053/942,
  35445. bottom: 60/1113
  35446. }
  35447. },
  35448. },
  35449. [
  35450. {
  35451. name: "Normal",
  35452. height: math.unit(5 + 2/12, "feet"),
  35453. default: true
  35454. },
  35455. ]
  35456. ))
  35457. characterMakers.push(() => makeCharacter(
  35458. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35459. {
  35460. front: {
  35461. height: math.unit(2.4, "meters"),
  35462. weight: math.unit(125, "kg"),
  35463. name: "Front",
  35464. image: {
  35465. source: "./media/characters/lilith/front.svg",
  35466. extra: 1590/1513,
  35467. bottom: 203/1793
  35468. }
  35469. },
  35470. },
  35471. [
  35472. {
  35473. name: "Humanoid",
  35474. height: math.unit(2.4, "meters")
  35475. },
  35476. {
  35477. name: "Normal",
  35478. height: math.unit(6, "meters"),
  35479. default: true
  35480. },
  35481. {
  35482. name: "Largest",
  35483. height: math.unit(55, "meters")
  35484. },
  35485. ]
  35486. ))
  35487. characterMakers.push(() => makeCharacter(
  35488. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35489. {
  35490. front: {
  35491. height: math.unit(8 + 4/12, "feet"),
  35492. weight: math.unit(535, "lb"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/beh'kah-bolger/front.svg",
  35496. extra: 1660/1603,
  35497. bottom: 37/1697
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(8 + 4/12, "feet"),
  35505. default: true
  35506. },
  35507. {
  35508. name: "Kaiju",
  35509. height: math.unit(250, "feet")
  35510. },
  35511. {
  35512. name: "Still Growing",
  35513. height: math.unit(10, "miles")
  35514. },
  35515. {
  35516. name: "Continental",
  35517. height: math.unit(5000, "miles")
  35518. },
  35519. {
  35520. name: "Final Form",
  35521. height: math.unit(2500000, "miles")
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35527. {
  35528. front: {
  35529. height: math.unit(7 + 2/12, "feet"),
  35530. weight: math.unit(230, "kg"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/tatyana-milewska/front.svg",
  35534. extra: 1199/1150,
  35535. bottom: 86/1285
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(7 + 2/12, "feet"),
  35543. default: true
  35544. },
  35545. {
  35546. name: "Big",
  35547. height: math.unit(12, "feet")
  35548. },
  35549. {
  35550. name: "Minimacro",
  35551. height: math.unit(20, "feet")
  35552. },
  35553. {
  35554. name: "Macro",
  35555. height: math.unit(120, "feet")
  35556. },
  35557. ]
  35558. ))
  35559. characterMakers.push(() => makeCharacter(
  35560. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35561. {
  35562. front: {
  35563. height: math.unit(7 + 8/12, "feet"),
  35564. weight: math.unit(152, "kg"),
  35565. name: "Front",
  35566. image: {
  35567. source: "./media/characters/helen-arri/front.svg",
  35568. extra: 440/423,
  35569. bottom: 14/454
  35570. }
  35571. },
  35572. back: {
  35573. height: math.unit(7 + 8/12, "feet"),
  35574. weight: math.unit(152, "kg"),
  35575. name: "Back",
  35576. image: {
  35577. source: "./media/characters/helen-arri/back.svg",
  35578. extra: 443/426,
  35579. bottom: 8/451
  35580. }
  35581. },
  35582. },
  35583. [
  35584. {
  35585. name: "Normal",
  35586. height: math.unit(7 + 8/12, "feet"),
  35587. default: true
  35588. },
  35589. {
  35590. name: "Big",
  35591. height: math.unit(14, "feet")
  35592. },
  35593. {
  35594. name: "Minimacro",
  35595. height: math.unit(24, "feet")
  35596. },
  35597. {
  35598. name: "Macro",
  35599. height: math.unit(140, "feet")
  35600. },
  35601. ]
  35602. ))
  35603. characterMakers.push(() => makeCharacter(
  35604. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35605. {
  35606. front: {
  35607. height: math.unit(6, "meters"),
  35608. name: "Front",
  35609. image: {
  35610. source: "./media/characters/ehanu-rehu/front.svg",
  35611. extra: 1800/1800,
  35612. bottom: 59/1859
  35613. }
  35614. },
  35615. },
  35616. [
  35617. {
  35618. name: "Normal",
  35619. height: math.unit(6, "meters"),
  35620. default: true
  35621. },
  35622. ]
  35623. ))
  35624. characterMakers.push(() => makeCharacter(
  35625. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35626. {
  35627. front: {
  35628. height: math.unit(7 + 3/12, "feet"),
  35629. name: "Front",
  35630. image: {
  35631. source: "./media/characters/renholder/front.svg",
  35632. extra: 3096/2960,
  35633. bottom: 250/3346
  35634. }
  35635. },
  35636. },
  35637. [
  35638. {
  35639. name: "Normal Bat",
  35640. height: math.unit(7 + 3/12, "feet"),
  35641. default: true
  35642. },
  35643. {
  35644. name: "Slightly Tall Bat",
  35645. height: math.unit(100, "feet")
  35646. },
  35647. {
  35648. name: "Big Bat",
  35649. height: math.unit(1000, "feet")
  35650. },
  35651. {
  35652. name: "City-Sized Bat",
  35653. height: math.unit(200000, "feet")
  35654. },
  35655. {
  35656. name: "Bigger Bat",
  35657. height: math.unit(10000, "miles")
  35658. },
  35659. {
  35660. name: "Solar Sized Bat",
  35661. height: math.unit(100, "AU")
  35662. },
  35663. {
  35664. name: "Galactic Bat",
  35665. height: math.unit(200000, "lightyears")
  35666. },
  35667. {
  35668. name: "Universally Known Bat",
  35669. height: math.unit(1, "universe")
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35675. {
  35676. front: {
  35677. height: math.unit(6 + 11/12, "feet"),
  35678. weight: math.unit(250, "lb"),
  35679. name: "Front",
  35680. image: {
  35681. source: "./media/characters/cookiecat/front.svg",
  35682. extra: 893/827,
  35683. bottom: 14/907
  35684. }
  35685. },
  35686. },
  35687. [
  35688. {
  35689. name: "Micro",
  35690. height: math.unit(3, "inches")
  35691. },
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(6 + 11/12, "feet"),
  35695. default: true
  35696. },
  35697. {
  35698. name: "Macro",
  35699. height: math.unit(100, "feet")
  35700. },
  35701. {
  35702. name: "Macro+",
  35703. height: math.unit(404, "feet")
  35704. },
  35705. {
  35706. name: "Megamacro",
  35707. height: math.unit(165, "miles")
  35708. },
  35709. {
  35710. name: "Planetary",
  35711. height: math.unit(4600, "miles")
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35717. {
  35718. front: {
  35719. height: math.unit(10 + 3/12, "feet"),
  35720. weight: math.unit(1500, "lb"),
  35721. name: "Front",
  35722. image: {
  35723. source: "./media/characters/tux-kusanagi/front.svg",
  35724. extra: 944/840,
  35725. bottom: 39/983
  35726. }
  35727. },
  35728. back: {
  35729. height: math.unit(10 + 3/12, "feet"),
  35730. weight: math.unit(1500, "lb"),
  35731. name: "Back",
  35732. image: {
  35733. source: "./media/characters/tux-kusanagi/back.svg",
  35734. extra: 941/842,
  35735. bottom: 28/969
  35736. }
  35737. },
  35738. rump: {
  35739. height: math.unit(5.25, "feet"),
  35740. name: "Rump",
  35741. image: {
  35742. source: "./media/characters/tux-kusanagi/rump.svg"
  35743. }
  35744. },
  35745. beak: {
  35746. height: math.unit(1.54, "feet"),
  35747. name: "Beak",
  35748. image: {
  35749. source: "./media/characters/tux-kusanagi/beak.svg"
  35750. }
  35751. },
  35752. },
  35753. [
  35754. {
  35755. name: "Normal",
  35756. height: math.unit(10 + 3/12, "feet"),
  35757. default: true
  35758. },
  35759. ]
  35760. ))
  35761. characterMakers.push(() => makeCharacter(
  35762. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35763. {
  35764. front: {
  35765. height: math.unit(58, "feet"),
  35766. weight: math.unit(200, "tons"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/uzarmazari/front.svg",
  35770. extra: 1575/1455,
  35771. bottom: 152/1727
  35772. }
  35773. },
  35774. back: {
  35775. height: math.unit(58, "feet"),
  35776. weight: math.unit(200, "tons"),
  35777. name: "Back",
  35778. image: {
  35779. source: "./media/characters/uzarmazari/back.svg",
  35780. extra: 1585/1510,
  35781. bottom: 157/1742
  35782. }
  35783. },
  35784. head: {
  35785. height: math.unit(26, "feet"),
  35786. name: "Head",
  35787. image: {
  35788. source: "./media/characters/uzarmazari/head.svg"
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(58, "feet"),
  35796. default: true
  35797. },
  35798. ]
  35799. ))
  35800. characterMakers.push(() => makeCharacter(
  35801. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35802. {
  35803. side: {
  35804. height: math.unit(15, "feet"),
  35805. name: "Side",
  35806. image: {
  35807. source: "./media/characters/akitu/side.svg",
  35808. extra: 1421/1321,
  35809. bottom: 157/1578
  35810. }
  35811. },
  35812. front: {
  35813. height: math.unit(15, "feet"),
  35814. name: "Front",
  35815. image: {
  35816. source: "./media/characters/akitu/front.svg",
  35817. extra: 1435/1326,
  35818. bottom: 232/1667
  35819. }
  35820. },
  35821. },
  35822. [
  35823. {
  35824. name: "Normal",
  35825. height: math.unit(15, "feet"),
  35826. default: true
  35827. },
  35828. ]
  35829. ))
  35830. characterMakers.push(() => makeCharacter(
  35831. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35832. {
  35833. front: {
  35834. height: math.unit(10 + 8/12, "feet"),
  35835. name: "Front",
  35836. image: {
  35837. source: "./media/characters/azalie-croixland/front.svg",
  35838. extra: 1972/1856,
  35839. bottom: 31/2003
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Original Height",
  35846. height: math.unit(5 + 4/12, "feet")
  35847. },
  35848. {
  35849. name: "Normal Height",
  35850. height: math.unit(10 + 8/12, "feet"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35857. {
  35858. side: {
  35859. height: math.unit(7 + 1/12, "feet"),
  35860. weight: math.unit(245, "lb"),
  35861. name: "Side",
  35862. image: {
  35863. source: "./media/characters/kavus-kazian/side.svg",
  35864. extra: 349/342,
  35865. bottom: 15/364
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(7 + 1/12, "feet"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35879. {
  35880. normalFront: {
  35881. height: math.unit(5 + 11/12, "feet"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/moonlight-rose/normal-front.svg",
  35885. extra: 1980/1825,
  35886. bottom: 18/1998
  35887. },
  35888. form: "normal",
  35889. default: true
  35890. },
  35891. normalBack: {
  35892. height: math.unit(5 + 11/12, "feet"),
  35893. name: "Back",
  35894. image: {
  35895. source: "./media/characters/moonlight-rose/normal-back.svg",
  35896. extra: 2010/1839,
  35897. bottom: 10/2020
  35898. },
  35899. form: "normal"
  35900. },
  35901. demonFront: {
  35902. height: math.unit(1.5, "earths"),
  35903. name: "Front",
  35904. image: {
  35905. source: "./media/characters/moonlight-rose/demon.svg",
  35906. extra: 1400/1294,
  35907. bottom: 45/1445
  35908. },
  35909. form: "demon",
  35910. default: true
  35911. },
  35912. terraFront: {
  35913. height: math.unit(1.5, "earths"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/moonlight-rose/terra.svg"
  35917. },
  35918. form: "terra",
  35919. default: true
  35920. },
  35921. jupiterFront: {
  35922. height: math.unit(69911*2, "km"),
  35923. name: "Front",
  35924. image: {
  35925. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35926. extra: 1367/1286,
  35927. bottom: 55/1422
  35928. },
  35929. form: "jupiter",
  35930. default: true
  35931. },
  35932. neptuneFront: {
  35933. height: math.unit(24622*2, "feet"),
  35934. name: "Front",
  35935. image: {
  35936. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35937. extra: 1851/1712,
  35938. bottom: 0/1851
  35939. },
  35940. form: "neptune",
  35941. default: true
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "\"Natural\" Height",
  35947. height: math.unit(5 + 11/12, "feet"),
  35948. form: "normal"
  35949. },
  35950. {
  35951. name: "Smallest comfortable size",
  35952. height: math.unit(40, "meters"),
  35953. form: "normal"
  35954. },
  35955. {
  35956. name: "Common size",
  35957. height: math.unit(50, "km"),
  35958. form: "normal",
  35959. default: true
  35960. },
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(1.5, "earths"),
  35964. form: "demon",
  35965. default: true
  35966. },
  35967. {
  35968. name: "Universal",
  35969. height: math.unit(15, "universes"),
  35970. form: "demon"
  35971. },
  35972. {
  35973. name: "Earth",
  35974. height: math.unit(1.5, "earths"),
  35975. form: "terra",
  35976. default: true
  35977. },
  35978. {
  35979. name: "Super Earth",
  35980. height: math.unit(67.5, "earths"),
  35981. form: "terra"
  35982. },
  35983. {
  35984. name: "Doesn't fit in a solar system...",
  35985. height: math.unit(1, "galaxy"),
  35986. form: "terra"
  35987. },
  35988. {
  35989. name: "Saturn",
  35990. height: math.unit(58232*2, "km"),
  35991. form: "jupiter"
  35992. },
  35993. {
  35994. name: "Jupiter",
  35995. height: math.unit(69911*2, "km"),
  35996. form: "jupiter",
  35997. default: true
  35998. },
  35999. {
  36000. name: "HD 100546 b",
  36001. height: math.unit(482938, "km"),
  36002. form: "jupiter"
  36003. },
  36004. {
  36005. name: "Enceladus",
  36006. height: math.unit(513*2, "km"),
  36007. form: "neptune"
  36008. },
  36009. {
  36010. name: "Europe",
  36011. height: math.unit(1560*2, "km"),
  36012. form: "neptune"
  36013. },
  36014. {
  36015. name: "Neptune",
  36016. height: math.unit(24622*2, "km"),
  36017. form: "neptune",
  36018. default: true
  36019. },
  36020. {
  36021. name: "CoRoT-9b",
  36022. height: math.unit(75067*2, "km"),
  36023. form: "neptune"
  36024. },
  36025. ],
  36026. {
  36027. "normal": {
  36028. name: "Normal",
  36029. default: true
  36030. },
  36031. "demon": {
  36032. name: "Demon"
  36033. },
  36034. "terra": {
  36035. name: "Terra"
  36036. },
  36037. "jupiter": {
  36038. name: "Jupiter"
  36039. },
  36040. "neptune": {
  36041. name: "Neptune"
  36042. }
  36043. }
  36044. ))
  36045. characterMakers.push(() => makeCharacter(
  36046. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36047. {
  36048. front: {
  36049. height: math.unit(16, "feet"),
  36050. weight: math.unit(610, "kg"),
  36051. name: "Front",
  36052. image: {
  36053. source: "./media/characters/huckle/front.svg",
  36054. extra: 1731/1625,
  36055. bottom: 33/1764
  36056. }
  36057. },
  36058. back: {
  36059. height: math.unit(16, "feet"),
  36060. weight: math.unit(610, "kg"),
  36061. name: "Back",
  36062. image: {
  36063. source: "./media/characters/huckle/back.svg",
  36064. extra: 1738/1651,
  36065. bottom: 37/1775
  36066. }
  36067. },
  36068. laughing: {
  36069. height: math.unit(3.75, "feet"),
  36070. name: "Laughing",
  36071. image: {
  36072. source: "./media/characters/huckle/laughing.svg"
  36073. }
  36074. },
  36075. angry: {
  36076. height: math.unit(4.15, "feet"),
  36077. name: "Angry",
  36078. image: {
  36079. source: "./media/characters/huckle/angry.svg"
  36080. }
  36081. },
  36082. },
  36083. [
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(16, "feet"),
  36087. default: true
  36088. },
  36089. {
  36090. name: "Mini Macro",
  36091. height: math.unit(463, "feet")
  36092. },
  36093. {
  36094. name: "Macro",
  36095. height: math.unit(1680, "meters")
  36096. },
  36097. {
  36098. name: "Mega Macro",
  36099. height: math.unit(175, "km")
  36100. },
  36101. {
  36102. name: "Terra Macro",
  36103. height: math.unit(32, "gigameters")
  36104. },
  36105. {
  36106. name: "Multiverse+",
  36107. height: math.unit(2.56e23, "yottameters")
  36108. },
  36109. ]
  36110. ))
  36111. characterMakers.push(() => makeCharacter(
  36112. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36113. {
  36114. front: {
  36115. height: math.unit(6 + 9/12, "feet"),
  36116. weight: math.unit(280, "lb"),
  36117. name: "Front",
  36118. image: {
  36119. source: "./media/characters/candy/front.svg",
  36120. extra: 234/217,
  36121. bottom: 11/245
  36122. }
  36123. },
  36124. },
  36125. [
  36126. {
  36127. name: "Really Small",
  36128. height: math.unit(0.1, "nm")
  36129. },
  36130. {
  36131. name: "Micro",
  36132. height: math.unit(2, "inches")
  36133. },
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(6 + 9/12, "feet"),
  36137. default: true
  36138. },
  36139. {
  36140. name: "Small Macro",
  36141. height: math.unit(69, "feet")
  36142. },
  36143. {
  36144. name: "Macro",
  36145. height: math.unit(160, "feet")
  36146. },
  36147. {
  36148. name: "Megamacro",
  36149. height: math.unit(22000, "miles")
  36150. },
  36151. {
  36152. name: "Gigamacro",
  36153. height: math.unit(50000, "miles")
  36154. },
  36155. ]
  36156. ))
  36157. characterMakers.push(() => makeCharacter(
  36158. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36159. {
  36160. front: {
  36161. height: math.unit(4, "feet"),
  36162. weight: math.unit(90, "lb"),
  36163. name: "Front",
  36164. image: {
  36165. source: "./media/characters/joey-mcdonald/front.svg",
  36166. extra: 1059/852,
  36167. bottom: 33/1092
  36168. }
  36169. },
  36170. back: {
  36171. height: math.unit(4, "feet"),
  36172. weight: math.unit(90, "lb"),
  36173. name: "Back",
  36174. image: {
  36175. source: "./media/characters/joey-mcdonald/back.svg",
  36176. extra: 1077/879,
  36177. bottom: 5/1082
  36178. }
  36179. },
  36180. frontKobold: {
  36181. height: math.unit(4, "feet"),
  36182. weight: math.unit(100, "lb"),
  36183. name: "Front-kobold",
  36184. image: {
  36185. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36186. extra: 1480/1367,
  36187. bottom: 0/1480
  36188. }
  36189. },
  36190. backKobold: {
  36191. height: math.unit(4, "feet"),
  36192. weight: math.unit(100, "lb"),
  36193. name: "Back-kobold",
  36194. image: {
  36195. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36196. extra: 1449/1361,
  36197. bottom: 0/1449
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(4, "feet"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(12 + 6/12, "feet"),
  36214. name: "Front",
  36215. image: {
  36216. source: "./media/characters/kass-lockheed/front.svg",
  36217. extra: 354/343,
  36218. bottom: 9/363
  36219. }
  36220. },
  36221. back: {
  36222. height: math.unit(12 + 6/12, "feet"),
  36223. name: "Back",
  36224. image: {
  36225. source: "./media/characters/kass-lockheed/back.svg",
  36226. extra: 364/352,
  36227. bottom: 3/367
  36228. }
  36229. },
  36230. dick: {
  36231. height: math.unit(3.12, "feet"),
  36232. name: "Dick",
  36233. image: {
  36234. source: "./media/characters/kass-lockheed/dick.svg"
  36235. }
  36236. },
  36237. head: {
  36238. height: math.unit(2.6, "feet"),
  36239. name: "Head",
  36240. image: {
  36241. source: "./media/characters/kass-lockheed/head.svg"
  36242. }
  36243. },
  36244. bleh: {
  36245. height: math.unit(2.85, "feet"),
  36246. name: "Bleh",
  36247. image: {
  36248. source: "./media/characters/kass-lockheed/bleh.svg"
  36249. }
  36250. },
  36251. smug: {
  36252. height: math.unit(2.85, "feet"),
  36253. name: "Smug",
  36254. image: {
  36255. source: "./media/characters/kass-lockheed/smug.svg"
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(12 + 6/12, "feet"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(6 + 2/12, "feet"),
  36272. name: "Front",
  36273. image: {
  36274. source: "./media/characters/taylor/front.svg",
  36275. extra: 639/495,
  36276. bottom: 12/651
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(6 + 2/12, "feet"),
  36284. default: true
  36285. },
  36286. {
  36287. name: "Big",
  36288. height: math.unit(15, "feet")
  36289. },
  36290. {
  36291. name: "Lorg",
  36292. height: math.unit(80, "feet")
  36293. },
  36294. {
  36295. name: "Too Lorg",
  36296. height: math.unit(120, "feet")
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36302. {
  36303. front: {
  36304. height: math.unit(15, "feet"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/kaizer/front.svg",
  36308. extra: 1612/1436,
  36309. bottom: 43/1655
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(15, "feet"),
  36317. default: true
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36323. {
  36324. front: {
  36325. height: math.unit(2, "feet"),
  36326. weight: math.unit(30, "lb"),
  36327. name: "Front",
  36328. image: {
  36329. source: "./media/characters/sandy/front.svg",
  36330. extra: 1439/1307,
  36331. bottom: 194/1633
  36332. }
  36333. },
  36334. },
  36335. [
  36336. {
  36337. name: "Normal",
  36338. height: math.unit(2, "feet"),
  36339. default: true
  36340. },
  36341. ]
  36342. ))
  36343. characterMakers.push(() => makeCharacter(
  36344. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36345. {
  36346. front: {
  36347. height: math.unit(3, "feet"),
  36348. name: "Front",
  36349. image: {
  36350. source: "./media/characters/mellvi/front.svg",
  36351. extra: 1831/1630,
  36352. bottom: 58/1889
  36353. }
  36354. },
  36355. },
  36356. [
  36357. {
  36358. name: "Normal",
  36359. height: math.unit(3, "feet"),
  36360. default: true
  36361. },
  36362. ]
  36363. ))
  36364. characterMakers.push(() => makeCharacter(
  36365. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36366. {
  36367. front: {
  36368. height: math.unit(5 + 11/12, "feet"),
  36369. weight: math.unit(200, "lb"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/shirou/front.svg",
  36373. extra: 2491/2383,
  36374. bottom: 189/2680
  36375. }
  36376. },
  36377. back: {
  36378. height: math.unit(5 + 11/12, "feet"),
  36379. weight: math.unit(200, "lb"),
  36380. name: "Back",
  36381. image: {
  36382. source: "./media/characters/shirou/back.svg",
  36383. extra: 2554/2450,
  36384. bottom: 76/2630
  36385. }
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "Normal",
  36391. height: math.unit(5 + 11/12, "feet"),
  36392. default: true
  36393. },
  36394. ]
  36395. ))
  36396. characterMakers.push(() => makeCharacter(
  36397. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36398. {
  36399. front: {
  36400. height: math.unit(6 + 3/12, "feet"),
  36401. weight: math.unit(177, "lb"),
  36402. name: "Front",
  36403. image: {
  36404. source: "./media/characters/noryu/front.svg",
  36405. extra: 973/885,
  36406. bottom: 10/983
  36407. }
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "Normal",
  36413. height: math.unit(6 + 3/12, "feet"),
  36414. default: true
  36415. },
  36416. ]
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36420. {
  36421. front: {
  36422. height: math.unit(5 + 6/12, "feet"),
  36423. weight: math.unit(170, "lb"),
  36424. name: "Front",
  36425. image: {
  36426. source: "./media/characters/mevolas-rubenido/front.svg",
  36427. extra: 2109/1901,
  36428. bottom: 96/2205
  36429. }
  36430. },
  36431. },
  36432. [
  36433. {
  36434. name: "Normal",
  36435. height: math.unit(5 + 6/12, "feet"),
  36436. default: true
  36437. },
  36438. ]
  36439. ))
  36440. characterMakers.push(() => makeCharacter(
  36441. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36442. {
  36443. front: {
  36444. height: math.unit(100, "feet"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/dee/front.svg",
  36448. extra: 2153/2036,
  36449. bottom: 59/2212
  36450. }
  36451. },
  36452. back: {
  36453. height: math.unit(100, "feet"),
  36454. name: "Back",
  36455. image: {
  36456. source: "./media/characters/dee/back.svg",
  36457. extra: 2183/2058,
  36458. bottom: 75/2258
  36459. }
  36460. },
  36461. foot: {
  36462. height: math.unit(19.43, "feet"),
  36463. name: "Foot",
  36464. image: {
  36465. source: "./media/characters/dee/foot.svg"
  36466. }
  36467. },
  36468. hoof: {
  36469. height: math.unit(20.6, "feet"),
  36470. name: "Hoof",
  36471. image: {
  36472. source: "./media/characters/dee/hoof.svg"
  36473. }
  36474. },
  36475. },
  36476. [
  36477. {
  36478. name: "Macro",
  36479. height: math.unit(100, "feet"),
  36480. default: true
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(5 + 6/12, "feet"),
  36489. name: "Front",
  36490. image: {
  36491. source: "./media/characters/teh/front.svg",
  36492. extra: 1002/847,
  36493. bottom: 62/1064
  36494. }
  36495. },
  36496. },
  36497. [
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(5 + 6/12, "feet"),
  36501. default: true
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36507. {
  36508. side: {
  36509. height: math.unit(6 + 1/12, "feet"),
  36510. weight: math.unit(204, "lb"),
  36511. name: "Side",
  36512. image: {
  36513. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36514. extra: 974/775,
  36515. bottom: 169/1143
  36516. }
  36517. },
  36518. sitting: {
  36519. height: math.unit(6 + 2/12, "feet"),
  36520. weight: math.unit(204, "lb"),
  36521. name: "Sitting",
  36522. image: {
  36523. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36524. extra: 1175/964,
  36525. bottom: 378/1553
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(6 + 1/12, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36539. {
  36540. front: {
  36541. height: math.unit(6, "inches"),
  36542. name: "Front",
  36543. image: {
  36544. source: "./media/characters/tululi/front.svg",
  36545. extra: 1997/1876,
  36546. bottom: 20/2017
  36547. }
  36548. },
  36549. },
  36550. [
  36551. {
  36552. name: "Normal",
  36553. height: math.unit(6, "inches"),
  36554. default: true
  36555. },
  36556. ]
  36557. ))
  36558. characterMakers.push(() => makeCharacter(
  36559. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36560. {
  36561. front: {
  36562. height: math.unit(4 + 1/12, "feet"),
  36563. name: "Front",
  36564. image: {
  36565. source: "./media/characters/star/front.svg",
  36566. extra: 1493/1189,
  36567. bottom: 48/1541
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Normal",
  36574. height: math.unit(4 + 1/12, "feet"),
  36575. default: true
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36581. {
  36582. front: {
  36583. height: math.unit(6 + 3/12, "feet"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/comet/front.svg",
  36587. extra: 1681/1462,
  36588. bottom: 26/1707
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(6 + 3/12, "feet"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36602. {
  36603. front: {
  36604. height: math.unit(950, "feet"),
  36605. name: "Front",
  36606. image: {
  36607. source: "./media/characters/vortex/front.svg",
  36608. extra: 1497/1434,
  36609. bottom: 56/1553
  36610. }
  36611. },
  36612. maw: {
  36613. height: math.unit(285, "feet"),
  36614. name: "Maw",
  36615. image: {
  36616. source: "./media/characters/vortex/maw.svg"
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Macro",
  36623. height: math.unit(950, "feet"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36630. {
  36631. front: {
  36632. height: math.unit(600, "feet"),
  36633. weight: math.unit(0.02, "grams"),
  36634. name: "Front",
  36635. image: {
  36636. source: "./media/characters/doodle/front.svg",
  36637. extra: 1578/1413,
  36638. bottom: 37/1615
  36639. }
  36640. },
  36641. },
  36642. [
  36643. {
  36644. name: "Macro",
  36645. height: math.unit(600, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(6 + 6/12, "feet"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/jai/front.svg",
  36658. extra: 1645/1534,
  36659. bottom: 115/1760
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(6 + 6/12, "feet"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(6 + 8/12, "feet"),
  36676. name: "Front",
  36677. image: {
  36678. source: "./media/characters/pixel/front.svg",
  36679. extra: 1900/1735,
  36680. bottom: 63/1963
  36681. }
  36682. },
  36683. },
  36684. [
  36685. {
  36686. name: "Normal",
  36687. height: math.unit(6 + 8/12, "feet"),
  36688. default: true
  36689. },
  36690. ]
  36691. ))
  36692. characterMakers.push(() => makeCharacter(
  36693. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36694. {
  36695. back: {
  36696. height: math.unit(4 + 1/12, "feet"),
  36697. weight: math.unit(75, "lb"),
  36698. name: "Back",
  36699. image: {
  36700. source: "./media/characters/rhett/back.svg",
  36701. extra: 930/878,
  36702. bottom: 25/955
  36703. }
  36704. },
  36705. front: {
  36706. height: math.unit(4 + 1/12, "feet"),
  36707. weight: math.unit(75, "lb"),
  36708. name: "Front",
  36709. image: {
  36710. source: "./media/characters/rhett/front.svg",
  36711. extra: 1682/1586,
  36712. bottom: 92/1774
  36713. }
  36714. },
  36715. },
  36716. [
  36717. {
  36718. name: "Micro",
  36719. height: math.unit(8, "inches")
  36720. },
  36721. {
  36722. name: "Tiny",
  36723. height: math.unit(2, "feet")
  36724. },
  36725. {
  36726. name: "Normal",
  36727. height: math.unit(4 + 1/12, "feet"),
  36728. default: true
  36729. },
  36730. ]
  36731. ))
  36732. characterMakers.push(() => makeCharacter(
  36733. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36734. {
  36735. front: {
  36736. height: math.unit(3 + 3/12, "feet"),
  36737. name: "Front",
  36738. image: {
  36739. source: "./media/characters/penny/front.svg",
  36740. extra: 1406/1311,
  36741. bottom: 26/1432
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(3 + 3/12, "feet"),
  36749. default: true
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36755. {
  36756. front: {
  36757. height: math.unit(4 + 11/12, "feet"),
  36758. name: "Front",
  36759. image: {
  36760. source: "./media/characters/monty/front.svg",
  36761. extra: 1479/1209,
  36762. bottom: 0/1479
  36763. }
  36764. },
  36765. },
  36766. [
  36767. {
  36768. name: "Normal",
  36769. height: math.unit(4 + 11/12, "feet"),
  36770. default: true
  36771. },
  36772. ]
  36773. ))
  36774. characterMakers.push(() => makeCharacter(
  36775. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36776. {
  36777. front: {
  36778. height: math.unit(8 + 4/12, "feet"),
  36779. name: "Front",
  36780. image: {
  36781. source: "./media/characters/sterling/front.svg",
  36782. extra: 1420/1236,
  36783. bottom: 27/1447
  36784. }
  36785. },
  36786. },
  36787. [
  36788. {
  36789. name: "Normal",
  36790. height: math.unit(8 + 4/12, "feet"),
  36791. default: true
  36792. },
  36793. ]
  36794. ))
  36795. characterMakers.push(() => makeCharacter(
  36796. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36797. {
  36798. front: {
  36799. height: math.unit(15, "feet"),
  36800. name: "Front",
  36801. image: {
  36802. source: "./media/characters/marble/front.svg",
  36803. extra: 973/937,
  36804. bottom: 32/1005
  36805. }
  36806. },
  36807. },
  36808. [
  36809. {
  36810. name: "Normal",
  36811. height: math.unit(15, "feet"),
  36812. default: true
  36813. },
  36814. ]
  36815. ))
  36816. characterMakers.push(() => makeCharacter(
  36817. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36818. {
  36819. front: {
  36820. height: math.unit(3, "inches"),
  36821. name: "Front",
  36822. image: {
  36823. source: "./media/characters/powder/front.svg",
  36824. extra: 1504/1334,
  36825. bottom: 518/2022
  36826. }
  36827. },
  36828. },
  36829. [
  36830. {
  36831. name: "Normal",
  36832. height: math.unit(3, "inches"),
  36833. default: true
  36834. },
  36835. ]
  36836. ))
  36837. characterMakers.push(() => makeCharacter(
  36838. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36839. {
  36840. front: {
  36841. height: math.unit(4 + 5/12, "feet"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/joey-raccoon/front.svg",
  36845. extra: 1273/1197,
  36846. bottom: 0/1273
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(4 + 5/12, "feet"),
  36854. default: true
  36855. },
  36856. ]
  36857. ))
  36858. characterMakers.push(() => makeCharacter(
  36859. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36860. {
  36861. front: {
  36862. height: math.unit(8 + 4/12, "feet"),
  36863. name: "Front",
  36864. image: {
  36865. source: "./media/characters/vick/front.svg",
  36866. extra: 2187/2118,
  36867. bottom: 47/2234
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(8 + 4/12, "feet"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. characterMakers.push(() => makeCharacter(
  36880. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36881. {
  36882. front: {
  36883. height: math.unit(5 + 5/12, "feet"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/mitsy/front.svg",
  36887. extra: 1842/1695,
  36888. bottom: 0/1842
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(5 + 5/12, "feet"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36902. {
  36903. front: {
  36904. height: math.unit(6 + 3/12, "feet"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/silvy/front.svg",
  36908. extra: 1995/1836,
  36909. bottom: 225/2220
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(6 + 3/12, "feet"),
  36917. default: true
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(3 + 8/12, "feet"),
  36926. name: "Front",
  36927. image: {
  36928. source: "./media/characters/rodney/front.svg",
  36929. extra: 1956/1747,
  36930. bottom: 31/1987
  36931. }
  36932. },
  36933. frontDressed: {
  36934. height: math.unit(2.9, "feet"),
  36935. name: "Front (Dressed)",
  36936. image: {
  36937. source: "./media/characters/rodney/front-dressed.svg",
  36938. extra: 1382/1241,
  36939. bottom: 385/1767
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(3 + 8/12, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(5 + 9/12, "feet"),
  36956. weight: math.unit(194, "lbs"),
  36957. name: "Front",
  36958. image: {
  36959. source: "./media/characters/zakail-sudekai/front.svg",
  36960. extra: 2696/2533,
  36961. bottom: 248/2944
  36962. }
  36963. },
  36964. maw: {
  36965. height: math.unit(1.35, "feet"),
  36966. name: "Maw",
  36967. image: {
  36968. source: "./media/characters/zakail-sudekai/maw.svg"
  36969. }
  36970. },
  36971. },
  36972. [
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(5 + 9/12, "feet"),
  36976. default: true
  36977. },
  36978. ]
  36979. ))
  36980. characterMakers.push(() => makeCharacter(
  36981. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36982. {
  36983. front: {
  36984. height: math.unit(8 + 4/12, "feet"),
  36985. weight: math.unit(1200, "lb"),
  36986. name: "Front",
  36987. image: {
  36988. source: "./media/characters/eleanor/front.svg",
  36989. extra: 1226/1192,
  36990. bottom: 52/1278
  36991. }
  36992. },
  36993. back: {
  36994. height: math.unit(8 + 4/12, "feet"),
  36995. weight: math.unit(1200, "lb"),
  36996. name: "Back",
  36997. image: {
  36998. source: "./media/characters/eleanor/back.svg",
  36999. extra: 1242/1184,
  37000. bottom: 60/1302
  37001. }
  37002. },
  37003. head: {
  37004. height: math.unit(2.62, "feet"),
  37005. name: "Head",
  37006. image: {
  37007. source: "./media/characters/eleanor/head.svg"
  37008. }
  37009. },
  37010. },
  37011. [
  37012. {
  37013. name: "Normal",
  37014. height: math.unit(8 + 4/12, "feet"),
  37015. default: true
  37016. },
  37017. ]
  37018. ))
  37019. characterMakers.push(() => makeCharacter(
  37020. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37021. {
  37022. front: {
  37023. height: math.unit(8 + 4/12, "feet"),
  37024. weight: math.unit(750, "lb"),
  37025. name: "Front",
  37026. image: {
  37027. source: "./media/characters/tanya/front.svg",
  37028. extra: 1749/1615,
  37029. bottom: 33/1782
  37030. }
  37031. },
  37032. },
  37033. [
  37034. {
  37035. name: "Normal",
  37036. height: math.unit(8 + 4/12, "feet"),
  37037. default: true
  37038. },
  37039. ]
  37040. ))
  37041. characterMakers.push(() => makeCharacter(
  37042. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37043. {
  37044. front: {
  37045. height: math.unit(5, "feet"),
  37046. weight: math.unit(225, "lb"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/cindy/front.svg",
  37050. extra: 1320/1250,
  37051. bottom: 42/1362
  37052. }
  37053. },
  37054. frontDressed: {
  37055. height: math.unit(5, "feet"),
  37056. weight: math.unit(225, "lb"),
  37057. name: "Front (Dressed)",
  37058. image: {
  37059. source: "./media/characters/cindy/front-dressed.svg",
  37060. extra: 1320/1250,
  37061. bottom: 42/1362
  37062. }
  37063. },
  37064. back: {
  37065. height: math.unit(5, "feet"),
  37066. weight: math.unit(225, "lb"),
  37067. name: "Back",
  37068. image: {
  37069. source: "./media/characters/cindy/back.svg",
  37070. extra: 1384/1346,
  37071. bottom: 14/1398
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(5, "feet"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(6 + 9/12, "feet"),
  37088. weight: math.unit(440, "lb"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/wilbur-owen/front.svg",
  37092. extra: 1575/1448,
  37093. bottom: 72/1647
  37094. }
  37095. },
  37096. back: {
  37097. height: math.unit(6 + 9/12, "feet"),
  37098. weight: math.unit(440, "lb"),
  37099. name: "Back",
  37100. image: {
  37101. source: "./media/characters/wilbur-owen/back.svg",
  37102. extra: 1578/1445,
  37103. bottom: 36/1614
  37104. }
  37105. },
  37106. },
  37107. [
  37108. {
  37109. name: "Normal",
  37110. height: math.unit(6 + 9/12, "feet"),
  37111. default: true
  37112. },
  37113. ]
  37114. ))
  37115. characterMakers.push(() => makeCharacter(
  37116. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37117. {
  37118. front: {
  37119. height: math.unit(6 + 5/12, "feet"),
  37120. weight: math.unit(650, "lb"),
  37121. name: "Front",
  37122. image: {
  37123. source: "./media/characters/keegan/front.svg",
  37124. extra: 2387/2198,
  37125. bottom: 33/2420
  37126. }
  37127. },
  37128. side: {
  37129. height: math.unit(6 + 5/12, "feet"),
  37130. weight: math.unit(650, "lb"),
  37131. name: "Side",
  37132. image: {
  37133. source: "./media/characters/keegan/side.svg",
  37134. extra: 2390/2202,
  37135. bottom: 47/2437
  37136. }
  37137. },
  37138. back: {
  37139. height: math.unit(6 + 5/12, "feet"),
  37140. weight: math.unit(650, "lb"),
  37141. name: "Back",
  37142. image: {
  37143. source: "./media/characters/keegan/back.svg",
  37144. extra: 2418/2268,
  37145. bottom: 15/2433
  37146. }
  37147. },
  37148. frontSfw: {
  37149. height: math.unit(6 + 5/12, "feet"),
  37150. weight: math.unit(650, "lb"),
  37151. name: "Front (SFW)",
  37152. image: {
  37153. source: "./media/characters/keegan/front-sfw.svg",
  37154. extra: 2387/2198,
  37155. bottom: 33/2420
  37156. }
  37157. },
  37158. beans: {
  37159. height: math.unit(1.85, "feet"),
  37160. name: "Beans",
  37161. image: {
  37162. source: "./media/characters/keegan/beans.svg"
  37163. }
  37164. },
  37165. },
  37166. [
  37167. {
  37168. name: "Normal",
  37169. height: math.unit(6 + 5/12, "feet"),
  37170. default: true
  37171. },
  37172. ]
  37173. ))
  37174. characterMakers.push(() => makeCharacter(
  37175. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37176. {
  37177. front: {
  37178. height: math.unit(9, "feet"),
  37179. name: "Front",
  37180. image: {
  37181. source: "./media/characters/colton/front.svg",
  37182. extra: 1589/1326,
  37183. bottom: 139/1728
  37184. }
  37185. },
  37186. },
  37187. [
  37188. {
  37189. name: "Normal",
  37190. height: math.unit(9, "feet"),
  37191. default: true
  37192. },
  37193. ]
  37194. ))
  37195. characterMakers.push(() => makeCharacter(
  37196. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37197. {
  37198. front: {
  37199. height: math.unit(2 + 9/12, "feet"),
  37200. name: "Front",
  37201. image: {
  37202. source: "./media/characters/bora/front.svg",
  37203. extra: 1265/1250,
  37204. bottom: 24/1289
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(2 + 9/12, "feet"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(8, "feet"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/myu-myu/front.svg",
  37224. extra: 1949/1857,
  37225. bottom: 90/2039
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(8, "feet"),
  37233. default: true
  37234. },
  37235. {
  37236. name: "Big",
  37237. height: math.unit(15, "feet")
  37238. },
  37239. {
  37240. name: "BIG",
  37241. height: math.unit(25, "feet")
  37242. },
  37243. ]
  37244. ))
  37245. characterMakers.push(() => makeCharacter(
  37246. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37247. {
  37248. side: {
  37249. height: math.unit(7 + 5/12, "feet"),
  37250. weight: math.unit(2800, "lb"),
  37251. name: "Side",
  37252. image: {
  37253. source: "./media/characters/haloren/side.svg",
  37254. extra: 1793/409,
  37255. bottom: 59/1852
  37256. }
  37257. },
  37258. frontPaw: {
  37259. height: math.unit(2.36, "feet"),
  37260. name: "Front paw",
  37261. image: {
  37262. source: "./media/characters/haloren/front-paw.svg"
  37263. }
  37264. },
  37265. hindPaw: {
  37266. height: math.unit(3.18, "feet"),
  37267. name: "Hind paw",
  37268. image: {
  37269. source: "./media/characters/haloren/hind-paw.svg"
  37270. }
  37271. },
  37272. maw: {
  37273. height: math.unit(5.05, "feet"),
  37274. name: "Maw",
  37275. image: {
  37276. source: "./media/characters/haloren/maw.svg"
  37277. }
  37278. },
  37279. dick: {
  37280. height: math.unit(2.90, "feet"),
  37281. name: "Dick",
  37282. image: {
  37283. source: "./media/characters/haloren/dick.svg"
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(7 + 5/12, "feet"),
  37291. default: true
  37292. },
  37293. {
  37294. name: "Enhanced",
  37295. height: math.unit(14 + 3/12, "feet")
  37296. },
  37297. ]
  37298. ))
  37299. characterMakers.push(() => makeCharacter(
  37300. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37301. {
  37302. front: {
  37303. height: math.unit(171, "cm"),
  37304. name: "Front",
  37305. image: {
  37306. source: "./media/characters/kimmy/front.svg",
  37307. extra: 1491/1435,
  37308. bottom: 53/1544
  37309. }
  37310. },
  37311. },
  37312. [
  37313. {
  37314. name: "Small",
  37315. height: math.unit(9, "cm")
  37316. },
  37317. {
  37318. name: "Normal",
  37319. height: math.unit(171, "cm"),
  37320. default: true
  37321. },
  37322. ]
  37323. ))
  37324. characterMakers.push(() => makeCharacter(
  37325. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37326. {
  37327. front: {
  37328. height: math.unit(8, "feet"),
  37329. weight: math.unit(300, "lb"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/galeboomer/front.svg",
  37333. extra: 4651/4415,
  37334. bottom: 162/4813
  37335. }
  37336. },
  37337. back: {
  37338. height: math.unit(8, "feet"),
  37339. weight: math.unit(300, "lb"),
  37340. name: "Back",
  37341. image: {
  37342. source: "./media/characters/galeboomer/back.svg",
  37343. extra: 4544/4314,
  37344. bottom: 16/4560
  37345. }
  37346. },
  37347. frontAlt: {
  37348. height: math.unit(8, "feet"),
  37349. weight: math.unit(300, "lb"),
  37350. name: "Front (Alt)",
  37351. image: {
  37352. source: "./media/characters/galeboomer/front-alt.svg",
  37353. extra: 4458/4228,
  37354. bottom: 68/4526
  37355. }
  37356. },
  37357. maw: {
  37358. height: math.unit(1.2, "feet"),
  37359. name: "Maw",
  37360. image: {
  37361. source: "./media/characters/galeboomer/maw.svg"
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Normal",
  37368. height: math.unit(8, "feet"),
  37369. default: true
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37375. {
  37376. front: {
  37377. height: math.unit(5 + 9/12, "feet"),
  37378. weight: math.unit(120, "lb"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/chyr/front.svg",
  37382. extra: 1323/1254,
  37383. bottom: 63/1386
  37384. }
  37385. },
  37386. back: {
  37387. height: math.unit(5 + 9/12, "feet"),
  37388. weight: math.unit(120, "lb"),
  37389. name: "Back",
  37390. image: {
  37391. source: "./media/characters/chyr/back.svg",
  37392. extra: 1323/1252,
  37393. bottom: 48/1371
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(5 + 9/12, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(7, "feet"),
  37410. weight: math.unit(310, "lb"),
  37411. name: "Front",
  37412. image: {
  37413. source: "./media/characters/solarus/front.svg",
  37414. extra: 2415/2021,
  37415. bottom: 103/2518
  37416. }
  37417. },
  37418. back: {
  37419. height: math.unit(7, "feet"),
  37420. weight: math.unit(310, "lb"),
  37421. name: "Back",
  37422. image: {
  37423. source: "./media/characters/solarus/back.svg",
  37424. extra: 2463/2089,
  37425. bottom: 79/2542
  37426. }
  37427. },
  37428. },
  37429. [
  37430. {
  37431. name: "Normal",
  37432. height: math.unit(7, "feet"),
  37433. default: true
  37434. },
  37435. ]
  37436. ))
  37437. characterMakers.push(() => makeCharacter(
  37438. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37439. {
  37440. front: {
  37441. height: math.unit(16, "feet"),
  37442. name: "Front",
  37443. image: {
  37444. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37445. extra: 1844/1780,
  37446. bottom: 58/1902
  37447. }
  37448. },
  37449. winterCoat: {
  37450. height: math.unit(16, "feet"),
  37451. name: "Winter Coat",
  37452. image: {
  37453. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37454. extra: 1807/1775,
  37455. bottom: 69/1876
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(16, "feet"),
  37463. default: true
  37464. },
  37465. {
  37466. name: "Chicago Size",
  37467. height: math.unit(560, "feet")
  37468. },
  37469. ]
  37470. ))
  37471. characterMakers.push(() => makeCharacter(
  37472. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37473. {
  37474. front: {
  37475. height: math.unit(11 + 6/12, "feet"),
  37476. weight: math.unit(1366, "lb"),
  37477. name: "Front",
  37478. image: {
  37479. source: "./media/characters/lexor/front.svg",
  37480. extra: 1560/1481,
  37481. bottom: 211/1771
  37482. }
  37483. },
  37484. back: {
  37485. height: math.unit(11 + 6/12, "feet"),
  37486. weight: math.unit(1366, "lb"),
  37487. name: "Back",
  37488. image: {
  37489. source: "./media/characters/lexor/back.svg",
  37490. extra: 1614/1533,
  37491. bottom: 76/1690
  37492. }
  37493. },
  37494. maw: {
  37495. height: math.unit(3, "feet"),
  37496. name: "Maw",
  37497. image: {
  37498. source: "./media/characters/lexor/maw.svg"
  37499. }
  37500. },
  37501. dick: {
  37502. height: math.unit(2.59, "feet"),
  37503. name: "Dick",
  37504. image: {
  37505. source: "./media/characters/lexor/dick.svg"
  37506. }
  37507. },
  37508. },
  37509. [
  37510. {
  37511. name: "Normal",
  37512. height: math.unit(11 + 6/12, "feet"),
  37513. default: true
  37514. },
  37515. ]
  37516. ))
  37517. characterMakers.push(() => makeCharacter(
  37518. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37519. {
  37520. front: {
  37521. height: math.unit(5 + 8/12, "feet"),
  37522. name: "Front",
  37523. image: {
  37524. source: "./media/characters/magnum/front.svg",
  37525. extra: 942/855,
  37526. bottom: 26/968
  37527. }
  37528. },
  37529. },
  37530. [
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(5 + 8/12, "feet"),
  37534. default: true
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(18 + 4/12, "feet"),
  37543. weight: math.unit(1500, "kg"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/solas-sharpsman/front.svg",
  37547. extra: 1698/1589,
  37548. bottom: 0/1698
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(18 + 4/12, "feet"),
  37556. default: true
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37562. {
  37563. front: {
  37564. height: math.unit(5 + 5/12, "feet"),
  37565. weight: math.unit(180, "lb"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/october/front.svg",
  37569. extra: 1800/1650,
  37570. bottom: 0/1800
  37571. }
  37572. },
  37573. frontNsfw: {
  37574. height: math.unit(5 + 5/12, "feet"),
  37575. weight: math.unit(180, "lb"),
  37576. name: "Front (NSFW)",
  37577. image: {
  37578. source: "./media/characters/october/front-nsfw.svg",
  37579. extra: 1392/1307,
  37580. bottom: 42/1434
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Normal",
  37587. height: math.unit(5 + 5/12, "feet"),
  37588. default: true
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37594. {
  37595. front: {
  37596. height: math.unit(8 + 6/12, "feet"),
  37597. name: "Front",
  37598. image: {
  37599. source: "./media/characters/essynkardi/front.svg",
  37600. extra: 1914/1846,
  37601. bottom: 22/1936
  37602. }
  37603. },
  37604. },
  37605. [
  37606. {
  37607. name: "Normal",
  37608. height: math.unit(8 + 6/12, "feet"),
  37609. default: true
  37610. },
  37611. ]
  37612. ))
  37613. characterMakers.push(() => makeCharacter(
  37614. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37615. {
  37616. front: {
  37617. height: math.unit(6 + 6/12, "feet"),
  37618. weight: math.unit(7, "lb"),
  37619. name: "Front",
  37620. image: {
  37621. source: "./media/characters/icky/front.svg",
  37622. extra: 813/782,
  37623. bottom: 66/879
  37624. }
  37625. },
  37626. back: {
  37627. height: math.unit(6 + 6/12, "feet"),
  37628. weight: math.unit(7, "lb"),
  37629. name: "Back",
  37630. image: {
  37631. source: "./media/characters/icky/back.svg",
  37632. extra: 754/735,
  37633. bottom: 56/810
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(6 + 6/12, "feet"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(15, "feet"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/rojas/front.svg",
  37653. extra: 1462/1408,
  37654. bottom: 95/1557
  37655. }
  37656. },
  37657. back: {
  37658. height: math.unit(15, "feet"),
  37659. name: "Back",
  37660. image: {
  37661. source: "./media/characters/rojas/back.svg",
  37662. extra: 1023/954,
  37663. bottom: 28/1051
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(15, "feet"),
  37671. default: true
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37677. {
  37678. frontHuman: {
  37679. height: math.unit(5 + 7/12, "feet"),
  37680. name: "Front (Human)",
  37681. image: {
  37682. source: "./media/characters/alek-dryagan/front-human.svg",
  37683. extra: 1687/1667,
  37684. bottom: 69/1756
  37685. }
  37686. },
  37687. backHuman: {
  37688. height: math.unit(5 + 7/12, "feet"),
  37689. name: "Back (Human)",
  37690. image: {
  37691. source: "./media/characters/alek-dryagan/back-human.svg",
  37692. extra: 1670/1649,
  37693. bottom: 65/1735
  37694. }
  37695. },
  37696. frontDemi: {
  37697. height: math.unit(65, "feet"),
  37698. name: "Front (Demi)",
  37699. image: {
  37700. source: "./media/characters/alek-dryagan/front-demi.svg",
  37701. extra: 1669/1642,
  37702. bottom: 49/1718
  37703. }
  37704. },
  37705. backDemi: {
  37706. height: math.unit(65, "feet"),
  37707. name: "Back (Demi)",
  37708. image: {
  37709. source: "./media/characters/alek-dryagan/back-demi.svg",
  37710. extra: 1658/1637,
  37711. bottom: 40/1698
  37712. }
  37713. },
  37714. mawHuman: {
  37715. height: math.unit(0.3, "feet"),
  37716. name: "Maw (Human)",
  37717. image: {
  37718. source: "./media/characters/alek-dryagan/maw-human.svg"
  37719. }
  37720. },
  37721. mawDemi: {
  37722. height: math.unit(3.8, "feet"),
  37723. name: "Maw (Demi)",
  37724. image: {
  37725. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37726. }
  37727. },
  37728. },
  37729. [
  37730. {
  37731. name: "Normal",
  37732. height: math.unit(5 + 7/12, "feet"),
  37733. default: true
  37734. },
  37735. ]
  37736. ))
  37737. characterMakers.push(() => makeCharacter(
  37738. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37739. {
  37740. frontHuman: {
  37741. height: math.unit(5 + 2/12, "feet"),
  37742. name: "Front (Human)",
  37743. image: {
  37744. source: "./media/characters/gen/front-human.svg",
  37745. extra: 1627/1538,
  37746. bottom: 71/1698
  37747. }
  37748. },
  37749. backHuman: {
  37750. height: math.unit(5 + 2/12, "feet"),
  37751. name: "Back (Human)",
  37752. image: {
  37753. source: "./media/characters/gen/back-human.svg",
  37754. extra: 1638/1548,
  37755. bottom: 69/1707
  37756. }
  37757. },
  37758. frontDemi: {
  37759. height: math.unit(5 + 2/12, "feet"),
  37760. name: "Front (Demi)",
  37761. image: {
  37762. source: "./media/characters/gen/front-demi.svg",
  37763. extra: 1627/1538,
  37764. bottom: 71/1698
  37765. }
  37766. },
  37767. backDemi: {
  37768. height: math.unit(5 + 2/12, "feet"),
  37769. name: "Back (Demi)",
  37770. image: {
  37771. source: "./media/characters/gen/back-demi.svg",
  37772. extra: 1638/1548,
  37773. bottom: 69/1707
  37774. }
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "Normal",
  37780. height: math.unit(5 + 2/12, "feet"),
  37781. default: true
  37782. },
  37783. ]
  37784. ))
  37785. characterMakers.push(() => makeCharacter(
  37786. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37787. {
  37788. frontImp: {
  37789. height: math.unit(1 + 11/12, "feet"),
  37790. name: "Front (Imp)",
  37791. image: {
  37792. source: "./media/characters/max-kobold/front-imp.svg",
  37793. extra: 1238/1134,
  37794. bottom: 81/1319
  37795. }
  37796. },
  37797. backImp: {
  37798. height: math.unit(1 + 11/12, "feet"),
  37799. name: "Back (Imp)",
  37800. image: {
  37801. source: "./media/characters/max-kobold/back-imp.svg",
  37802. extra: 1334/1175,
  37803. bottom: 34/1368
  37804. }
  37805. },
  37806. frontDemi: {
  37807. height: math.unit(5 + 9/12, "feet"),
  37808. name: "Front (Demi)",
  37809. image: {
  37810. source: "./media/characters/max-kobold/front-demi.svg",
  37811. extra: 1715/1685,
  37812. bottom: 54/1769
  37813. }
  37814. },
  37815. backDemi: {
  37816. height: math.unit(5 + 9/12, "feet"),
  37817. name: "Back (Demi)",
  37818. image: {
  37819. source: "./media/characters/max-kobold/back-demi.svg",
  37820. extra: 1752/1729,
  37821. bottom: 41/1793
  37822. }
  37823. },
  37824. handImp: {
  37825. height: math.unit(0.45, "feet"),
  37826. name: "Hand (Imp)",
  37827. image: {
  37828. source: "./media/characters/max-kobold/hand.svg"
  37829. }
  37830. },
  37831. pawImp: {
  37832. height: math.unit(0.46, "feet"),
  37833. name: "Paw (Imp)",
  37834. image: {
  37835. source: "./media/characters/max-kobold/paw.svg"
  37836. }
  37837. },
  37838. handDemi: {
  37839. height: math.unit(0.80, "feet"),
  37840. name: "Hand (Demi)",
  37841. image: {
  37842. source: "./media/characters/max-kobold/hand.svg"
  37843. }
  37844. },
  37845. pawDemi: {
  37846. height: math.unit(1.1, "feet"),
  37847. name: "Paw (Demi)",
  37848. image: {
  37849. source: "./media/characters/max-kobold/paw.svg"
  37850. }
  37851. },
  37852. headImp: {
  37853. height: math.unit(1.33, "feet"),
  37854. name: "Head (Imp)",
  37855. image: {
  37856. source: "./media/characters/max-kobold/head-imp.svg"
  37857. }
  37858. },
  37859. mawImp: {
  37860. height: math.unit(0.75, "feet"),
  37861. name: "Maw (Imp)",
  37862. image: {
  37863. source: "./media/characters/max-kobold/maw-imp.svg"
  37864. }
  37865. },
  37866. mawDemi: {
  37867. height: math.unit(0.42, "feet"),
  37868. name: "Maw (Demi)",
  37869. image: {
  37870. source: "./media/characters/max-kobold/maw-demi.svg"
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(1 + 11/12, "feet"),
  37878. default: true
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(7 + 5/12, "feet"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/carbon/front.svg",
  37890. extra: 1754/1689,
  37891. bottom: 65/1819
  37892. }
  37893. },
  37894. back: {
  37895. height: math.unit(7 + 5/12, "feet"),
  37896. name: "Back",
  37897. image: {
  37898. source: "./media/characters/carbon/back.svg",
  37899. extra: 1762/1695,
  37900. bottom: 24/1786
  37901. }
  37902. },
  37903. frontGigantamax: {
  37904. height: math.unit(150, "feet"),
  37905. name: "Front (Gigantamax)",
  37906. image: {
  37907. source: "./media/characters/carbon/front-gigantamax.svg",
  37908. extra: 1826/1669,
  37909. bottom: 59/1885
  37910. }
  37911. },
  37912. backGigantamax: {
  37913. height: math.unit(150, "feet"),
  37914. name: "Back (Gigantamax)",
  37915. image: {
  37916. source: "./media/characters/carbon/back-gigantamax.svg",
  37917. extra: 1796/1653,
  37918. bottom: 53/1849
  37919. }
  37920. },
  37921. maw: {
  37922. height: math.unit(0.48, "feet"),
  37923. name: "Maw",
  37924. image: {
  37925. source: "./media/characters/carbon/maw.svg"
  37926. }
  37927. },
  37928. mawGigantamax: {
  37929. height: math.unit(7.5, "feet"),
  37930. name: "Maw (Gigantamax)",
  37931. image: {
  37932. source: "./media/characters/carbon/maw-gigantamax.svg"
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Normal",
  37939. height: math.unit(7 + 5/12, "feet"),
  37940. default: true
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(6, "feet"),
  37949. name: "Front",
  37950. image: {
  37951. source: "./media/characters/maverick/front.svg",
  37952. extra: 1672/1661,
  37953. bottom: 85/1757
  37954. }
  37955. },
  37956. back: {
  37957. height: math.unit(6, "feet"),
  37958. name: "Back",
  37959. image: {
  37960. source: "./media/characters/maverick/back.svg",
  37961. extra: 1642/1631,
  37962. bottom: 38/1680
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Normal",
  37969. height: math.unit(6, "feet"),
  37970. default: true
  37971. },
  37972. ]
  37973. ))
  37974. characterMakers.push(() => makeCharacter(
  37975. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37976. {
  37977. front: {
  37978. height: math.unit(15, "feet"),
  37979. weight: math.unit(615, "lb"),
  37980. name: "Front",
  37981. image: {
  37982. source: "./media/characters/grockle/front.svg",
  37983. extra: 1535/1427,
  37984. bottom: 56/1591
  37985. }
  37986. },
  37987. },
  37988. [
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(15, "feet"),
  37992. default: true
  37993. },
  37994. {
  37995. name: "Large",
  37996. height: math.unit(150, "feet")
  37997. },
  37998. {
  37999. name: "Macro",
  38000. height: math.unit(1876, "feet")
  38001. },
  38002. {
  38003. name: "Mega Macro",
  38004. height: math.unit(121940, "feet")
  38005. },
  38006. {
  38007. name: "Giga Macro",
  38008. height: math.unit(750, "km")
  38009. },
  38010. {
  38011. name: "Tera Macro",
  38012. height: math.unit(750000, "km")
  38013. },
  38014. {
  38015. name: "Galactic",
  38016. height: math.unit(1.4e5, "km")
  38017. },
  38018. {
  38019. name: "Godlike",
  38020. height: math.unit(9.8e280, "galaxies")
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(11, "meters"),
  38029. weight: math.unit(20, "tonnes"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/alistair/front.svg",
  38033. extra: 1265/1009,
  38034. bottom: 93/1358
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(11, "meters"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(5 + 8/12, "feet"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/haruka/front.svg",
  38054. extra: 2012/1952,
  38055. bottom: 0/2012
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(5 + 8/12, "feet"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38069. {
  38070. back: {
  38071. height: math.unit(9, "feet"),
  38072. name: "Back",
  38073. image: {
  38074. source: "./media/characters/vivian-sylveon/back.svg",
  38075. extra: 1853/1714,
  38076. bottom: 0/1853
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Normal",
  38083. height: math.unit(9, "feet"),
  38084. default: true
  38085. },
  38086. {
  38087. name: "Macro",
  38088. height: math.unit(500, "feet")
  38089. },
  38090. {
  38091. name: "Megamacro",
  38092. height: math.unit(600, "miles")
  38093. },
  38094. {
  38095. name: "Gigamacro",
  38096. height: math.unit(30000, "miles")
  38097. },
  38098. ]
  38099. ))
  38100. characterMakers.push(() => makeCharacter(
  38101. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38102. {
  38103. anthro: {
  38104. height: math.unit(5 + 10/12, "feet"),
  38105. weight: math.unit(100, "lb"),
  38106. name: "Anthro",
  38107. image: {
  38108. source: "./media/characters/daiki/anthro.svg",
  38109. extra: 1115/1027,
  38110. bottom: 69/1184
  38111. }
  38112. },
  38113. feral: {
  38114. height: math.unit(200, "feet"),
  38115. name: "Feral",
  38116. image: {
  38117. source: "./media/characters/daiki/feral.svg",
  38118. extra: 1256/313,
  38119. bottom: 39/1295
  38120. }
  38121. },
  38122. feralHead: {
  38123. height: math.unit(171, "feet"),
  38124. name: "Feral Head",
  38125. image: {
  38126. source: "./media/characters/daiki/feral-head.svg"
  38127. }
  38128. },
  38129. manaDragon: {
  38130. height: math.unit(170, "meters"),
  38131. name: "Mana-dragon",
  38132. image: {
  38133. source: "./media/characters/daiki/mana-dragon.svg",
  38134. extra: 763/420,
  38135. bottom: 97/860
  38136. }
  38137. },
  38138. },
  38139. [
  38140. {
  38141. name: "Normal",
  38142. height: math.unit(5 + 10/12, "feet"),
  38143. default: true
  38144. },
  38145. ]
  38146. ))
  38147. characterMakers.push(() => makeCharacter(
  38148. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38149. {
  38150. fullyEquippedFront: {
  38151. height: math.unit(3 + 1/12, "feet"),
  38152. weight: math.unit(24, "lb"),
  38153. name: "Fully Equipped (Front)",
  38154. image: {
  38155. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38156. extra: 687/605,
  38157. bottom: 18/705
  38158. }
  38159. },
  38160. fullyEquippedBack: {
  38161. height: math.unit(3 + 1/12, "feet"),
  38162. weight: math.unit(24, "lb"),
  38163. name: "Fully Equipped (Back)",
  38164. image: {
  38165. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38166. extra: 689/590,
  38167. bottom: 18/707
  38168. }
  38169. },
  38170. dailyWear: {
  38171. height: math.unit(3 + 1/12, "feet"),
  38172. weight: math.unit(24, "lb"),
  38173. name: "Daily Wear",
  38174. image: {
  38175. source: "./media/characters/tea-spot/daily-wear.svg",
  38176. extra: 701/620,
  38177. bottom: 21/722
  38178. }
  38179. },
  38180. maidWork: {
  38181. height: math.unit(3 + 1/12, "feet"),
  38182. weight: math.unit(24, "lb"),
  38183. name: "Maid Work",
  38184. image: {
  38185. source: "./media/characters/tea-spot/maid-work.svg",
  38186. extra: 693/609,
  38187. bottom: 15/708
  38188. }
  38189. },
  38190. },
  38191. [
  38192. {
  38193. name: "Normal",
  38194. height: math.unit(3 + 1/12, "feet"),
  38195. default: true
  38196. },
  38197. ]
  38198. ))
  38199. characterMakers.push(() => makeCharacter(
  38200. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38201. {
  38202. front: {
  38203. height: math.unit(175, "cm"),
  38204. weight: math.unit(75, "kg"),
  38205. name: "Front",
  38206. image: {
  38207. source: "./media/characters/chee/front.svg",
  38208. extra: 1796/1740,
  38209. bottom: 40/1836
  38210. }
  38211. },
  38212. },
  38213. [
  38214. {
  38215. name: "Micro-Micro",
  38216. height: math.unit(1, "nm")
  38217. },
  38218. {
  38219. name: "Micro-erst",
  38220. height: math.unit(1, "micrometer")
  38221. },
  38222. {
  38223. name: "Micro-er",
  38224. height: math.unit(1, "cm")
  38225. },
  38226. {
  38227. name: "Normal",
  38228. height: math.unit(175, "cm"),
  38229. default: true
  38230. },
  38231. {
  38232. name: "Macro",
  38233. height: math.unit(100, "m")
  38234. },
  38235. {
  38236. name: "Macro-er",
  38237. height: math.unit(1, "km")
  38238. },
  38239. {
  38240. name: "Macro-erst",
  38241. height: math.unit(10, "km")
  38242. },
  38243. {
  38244. name: "Macro-Macro",
  38245. height: math.unit(100, "km")
  38246. },
  38247. ]
  38248. ))
  38249. characterMakers.push(() => makeCharacter(
  38250. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38251. {
  38252. front: {
  38253. height: math.unit(11 + 9/12, "feet"),
  38254. weight: math.unit(935, "lb"),
  38255. name: "Front",
  38256. image: {
  38257. source: "./media/characters/kingsley/front.svg",
  38258. extra: 1803/1674,
  38259. bottom: 127/1930
  38260. }
  38261. },
  38262. frontNude: {
  38263. height: math.unit(11 + 9/12, "feet"),
  38264. weight: math.unit(935, "lb"),
  38265. name: "Front (Nude)",
  38266. image: {
  38267. source: "./media/characters/kingsley/front-nude.svg",
  38268. extra: 1803/1674,
  38269. bottom: 127/1930
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(11 + 9/12, "feet"),
  38277. default: true
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38283. {
  38284. side: {
  38285. height: math.unit(9, "feet"),
  38286. name: "Side",
  38287. image: {
  38288. source: "./media/characters/rymel/side.svg",
  38289. extra: 792/469,
  38290. bottom: 121/913
  38291. }
  38292. },
  38293. maw: {
  38294. height: math.unit(2.4, "meters"),
  38295. name: "Maw",
  38296. image: {
  38297. source: "./media/characters/rymel/maw.svg"
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "House Drake",
  38304. height: math.unit(2, "feet")
  38305. },
  38306. {
  38307. name: "Reduced",
  38308. height: math.unit(4.5, "feet")
  38309. },
  38310. {
  38311. name: "Normal",
  38312. height: math.unit(9, "feet"),
  38313. default: true
  38314. },
  38315. ]
  38316. ))
  38317. characterMakers.push(() => makeCharacter(
  38318. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38319. {
  38320. front: {
  38321. height: math.unit(1.74, "meters"),
  38322. weight: math.unit(55, "kg"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/rubus/front.svg",
  38326. extra: 1894/1742,
  38327. bottom: 44/1938
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(1.74, "meters"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38341. {
  38342. front: {
  38343. height: math.unit(5 + 2/12, "feet"),
  38344. weight: math.unit(112, "lb"),
  38345. name: "Front",
  38346. image: {
  38347. source: "./media/characters/cassie-kingston/front.svg",
  38348. extra: 1438/1390,
  38349. bottom: 47/1485
  38350. }
  38351. },
  38352. },
  38353. [
  38354. {
  38355. name: "Normal",
  38356. height: math.unit(5 + 2/12, "feet"),
  38357. default: true
  38358. },
  38359. {
  38360. name: "Macro",
  38361. height: math.unit(128, "feet")
  38362. },
  38363. {
  38364. name: "Megamacro",
  38365. height: math.unit(2.56, "miles")
  38366. },
  38367. ]
  38368. ))
  38369. characterMakers.push(() => makeCharacter(
  38370. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38371. {
  38372. front: {
  38373. height: math.unit(7, "feet"),
  38374. name: "Front",
  38375. image: {
  38376. source: "./media/characters/fox/front.svg",
  38377. extra: 1798/1703,
  38378. bottom: 55/1853
  38379. }
  38380. },
  38381. back: {
  38382. height: math.unit(7, "feet"),
  38383. name: "Back",
  38384. image: {
  38385. source: "./media/characters/fox/back.svg",
  38386. extra: 1748/1649,
  38387. bottom: 32/1780
  38388. }
  38389. },
  38390. head: {
  38391. height: math.unit(1.95, "feet"),
  38392. name: "Head",
  38393. image: {
  38394. source: "./media/characters/fox/head.svg"
  38395. }
  38396. },
  38397. dick: {
  38398. height: math.unit(1.33, "feet"),
  38399. name: "Dick",
  38400. image: {
  38401. source: "./media/characters/fox/dick.svg"
  38402. }
  38403. },
  38404. foot: {
  38405. height: math.unit(1, "feet"),
  38406. name: "Foot",
  38407. image: {
  38408. source: "./media/characters/fox/foot.svg"
  38409. }
  38410. },
  38411. paw: {
  38412. height: math.unit(0.92, "feet"),
  38413. name: "Paw",
  38414. image: {
  38415. source: "./media/characters/fox/paw.svg"
  38416. }
  38417. },
  38418. },
  38419. [
  38420. {
  38421. name: "Small",
  38422. height: math.unit(3, "inches")
  38423. },
  38424. {
  38425. name: "\"Realistic\"",
  38426. height: math.unit(7, "feet")
  38427. },
  38428. {
  38429. name: "Normal",
  38430. height: math.unit(150, "feet"),
  38431. default: true
  38432. },
  38433. {
  38434. name: "BIG",
  38435. height: math.unit(1200, "feet")
  38436. },
  38437. {
  38438. name: "👀",
  38439. height: math.unit(5, "miles")
  38440. },
  38441. {
  38442. name: "👀👀👀",
  38443. height: math.unit(64, "miles")
  38444. },
  38445. ]
  38446. ))
  38447. characterMakers.push(() => makeCharacter(
  38448. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38449. {
  38450. front: {
  38451. height: math.unit(625, "feet"),
  38452. name: "Front",
  38453. image: {
  38454. source: "./media/characters/asonja-rossa/front.svg",
  38455. extra: 1833/1686,
  38456. bottom: 24/1857
  38457. }
  38458. },
  38459. back: {
  38460. height: math.unit(625, "feet"),
  38461. name: "Back",
  38462. image: {
  38463. source: "./media/characters/asonja-rossa/back.svg",
  38464. extra: 1852/1753,
  38465. bottom: 26/1878
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Macro",
  38472. height: math.unit(625, "feet"),
  38473. default: true
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38479. {
  38480. side: {
  38481. height: math.unit(8, "feet"),
  38482. name: "Side",
  38483. image: {
  38484. source: "./media/characters/rezukii/side.svg",
  38485. extra: 979/542,
  38486. bottom: 87/1066
  38487. }
  38488. },
  38489. sitting: {
  38490. height: math.unit(14.6, "feet"),
  38491. name: "Sitting",
  38492. image: {
  38493. source: "./media/characters/rezukii/sitting.svg",
  38494. extra: 1023/813,
  38495. bottom: 45/1068
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Tiny",
  38502. height: math.unit(2, "feet")
  38503. },
  38504. {
  38505. name: "Smol",
  38506. height: math.unit(4, "feet")
  38507. },
  38508. {
  38509. name: "Normal",
  38510. height: math.unit(8, "feet"),
  38511. default: true
  38512. },
  38513. {
  38514. name: "Big",
  38515. height: math.unit(12, "feet")
  38516. },
  38517. {
  38518. name: "Macro",
  38519. height: math.unit(30, "feet")
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(14, "feet"),
  38528. weight: math.unit(9.5, "tonnes"),
  38529. name: "Front",
  38530. image: {
  38531. source: "./media/characters/dawnheart/front.svg",
  38532. extra: 2792/2675,
  38533. bottom: 64/2856
  38534. }
  38535. },
  38536. },
  38537. [
  38538. {
  38539. name: "Normal",
  38540. height: math.unit(14, "feet"),
  38541. default: true
  38542. },
  38543. ]
  38544. ))
  38545. characterMakers.push(() => makeCharacter(
  38546. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38547. {
  38548. front: {
  38549. height: math.unit(1.7, "m"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/gladi/front.svg",
  38553. extra: 1460/1362,
  38554. bottom: 19/1479
  38555. }
  38556. },
  38557. back: {
  38558. height: math.unit(1.7, "m"),
  38559. name: "Back",
  38560. image: {
  38561. source: "./media/characters/gladi/back.svg",
  38562. extra: 1459/1357,
  38563. bottom: 12/1471
  38564. }
  38565. },
  38566. feral: {
  38567. height: math.unit(2.05, "m"),
  38568. name: "Feral",
  38569. image: {
  38570. source: "./media/characters/gladi/feral.svg",
  38571. extra: 821/557,
  38572. bottom: 91/912
  38573. }
  38574. },
  38575. },
  38576. [
  38577. {
  38578. name: "Shortest",
  38579. height: math.unit(70, "cm")
  38580. },
  38581. {
  38582. name: "Normal",
  38583. height: math.unit(1.7, "m")
  38584. },
  38585. {
  38586. name: "Macro",
  38587. height: math.unit(10, "m"),
  38588. default: true
  38589. },
  38590. {
  38591. name: "Tallest",
  38592. height: math.unit(200, "m")
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38598. {
  38599. front: {
  38600. height: math.unit(5 + 7/12, "feet"),
  38601. weight: math.unit(2, "tons"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/erdno/front.svg",
  38605. extra: 1234/1129,
  38606. bottom: 35/1269
  38607. }
  38608. },
  38609. angled: {
  38610. height: math.unit(5 + 7/12, "feet"),
  38611. weight: math.unit(2, "tons"),
  38612. name: "Angled",
  38613. image: {
  38614. source: "./media/characters/erdno/angled.svg",
  38615. extra: 1185/1139,
  38616. bottom: 36/1221
  38617. }
  38618. },
  38619. side: {
  38620. height: math.unit(5 + 7/12, "feet"),
  38621. weight: math.unit(2, "tons"),
  38622. name: "Side",
  38623. image: {
  38624. source: "./media/characters/erdno/side.svg",
  38625. extra: 1191/1144,
  38626. bottom: 40/1231
  38627. }
  38628. },
  38629. back: {
  38630. height: math.unit(5 + 7/12, "feet"),
  38631. weight: math.unit(2, "tons"),
  38632. name: "Back",
  38633. image: {
  38634. source: "./media/characters/erdno/back.svg",
  38635. extra: 1202/1146,
  38636. bottom: 17/1219
  38637. }
  38638. },
  38639. frontNsfw: {
  38640. height: math.unit(5 + 7/12, "feet"),
  38641. weight: math.unit(2, "tons"),
  38642. name: "Front (NSFW)",
  38643. image: {
  38644. source: "./media/characters/erdno/front-nsfw.svg",
  38645. extra: 1234/1129,
  38646. bottom: 35/1269
  38647. }
  38648. },
  38649. angledNsfw: {
  38650. height: math.unit(5 + 7/12, "feet"),
  38651. weight: math.unit(2, "tons"),
  38652. name: "Angled (NSFW)",
  38653. image: {
  38654. source: "./media/characters/erdno/angled-nsfw.svg",
  38655. extra: 1185/1139,
  38656. bottom: 36/1221
  38657. }
  38658. },
  38659. sideNsfw: {
  38660. height: math.unit(5 + 7/12, "feet"),
  38661. weight: math.unit(2, "tons"),
  38662. name: "Side (NSFW)",
  38663. image: {
  38664. source: "./media/characters/erdno/side-nsfw.svg",
  38665. extra: 1191/1144,
  38666. bottom: 40/1231
  38667. }
  38668. },
  38669. backNsfw: {
  38670. height: math.unit(5 + 7/12, "feet"),
  38671. weight: math.unit(2, "tons"),
  38672. name: "Back (NSFW)",
  38673. image: {
  38674. source: "./media/characters/erdno/back-nsfw.svg",
  38675. extra: 1202/1146,
  38676. bottom: 17/1219
  38677. }
  38678. },
  38679. frontHyper: {
  38680. height: math.unit(5 + 7/12, "feet"),
  38681. weight: math.unit(2, "tons"),
  38682. name: "Front (Hyper)",
  38683. image: {
  38684. source: "./media/characters/erdno/front-hyper.svg",
  38685. extra: 1298/1136,
  38686. bottom: 35/1333
  38687. }
  38688. },
  38689. },
  38690. [
  38691. {
  38692. name: "Normal",
  38693. height: math.unit(5 + 7/12, "feet"),
  38694. default: true
  38695. },
  38696. {
  38697. name: "Big",
  38698. height: math.unit(5.7, "meters")
  38699. },
  38700. {
  38701. name: "Macro",
  38702. height: math.unit(5.7, "kilometers")
  38703. },
  38704. {
  38705. name: "Megamacro",
  38706. height: math.unit(5.7, "earths")
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38712. {
  38713. front: {
  38714. height: math.unit(5 + 10/12, "feet"),
  38715. weight: math.unit(150, "lb"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/jamie/front.svg",
  38719. extra: 1908/1768,
  38720. bottom: 19/1927
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Minimum",
  38727. height: math.unit(2, "cm")
  38728. },
  38729. {
  38730. name: "Micro",
  38731. height: math.unit(3, "inches")
  38732. },
  38733. {
  38734. name: "Normal",
  38735. height: math.unit(5 + 10/12, "feet"),
  38736. default: true
  38737. },
  38738. {
  38739. name: "Macro",
  38740. height: math.unit(150, "feet")
  38741. },
  38742. {
  38743. name: "Megamacro",
  38744. height: math.unit(10000, "m")
  38745. },
  38746. ]
  38747. ))
  38748. characterMakers.push(() => makeCharacter(
  38749. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38750. {
  38751. front: {
  38752. height: math.unit(2, "meters"),
  38753. weight: math.unit(100, "kg"),
  38754. name: "Front",
  38755. image: {
  38756. source: "./media/characters/shiron/front.svg",
  38757. extra: 2103/1985,
  38758. bottom: 98/2201
  38759. }
  38760. },
  38761. back: {
  38762. height: math.unit(2, "meters"),
  38763. weight: math.unit(100, "kg"),
  38764. name: "Back",
  38765. image: {
  38766. source: "./media/characters/shiron/back.svg",
  38767. extra: 2110/2015,
  38768. bottom: 89/2199
  38769. }
  38770. },
  38771. hand: {
  38772. height: math.unit(0.96, "feet"),
  38773. name: "Hand",
  38774. image: {
  38775. source: "./media/characters/shiron/hand.svg"
  38776. }
  38777. },
  38778. foot: {
  38779. height: math.unit(1.464, "feet"),
  38780. name: "Foot",
  38781. image: {
  38782. source: "./media/characters/shiron/foot.svg"
  38783. }
  38784. },
  38785. },
  38786. [
  38787. {
  38788. name: "Normal",
  38789. height: math.unit(2, "meters")
  38790. },
  38791. {
  38792. name: "Macro",
  38793. height: math.unit(500, "meters"),
  38794. default: true
  38795. },
  38796. {
  38797. name: "Megamacro",
  38798. height: math.unit(20, "km")
  38799. },
  38800. ]
  38801. ))
  38802. characterMakers.push(() => makeCharacter(
  38803. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38804. {
  38805. front: {
  38806. height: math.unit(6, "feet"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/sam/front.svg",
  38810. extra: 849/826,
  38811. bottom: 19/868
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Normal",
  38818. height: math.unit(6, "feet"),
  38819. default: true
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38825. {
  38826. front: {
  38827. height: math.unit(8 + 4/12, "feet"),
  38828. weight: math.unit(122, "kg"),
  38829. name: "Front",
  38830. image: {
  38831. source: "./media/characters/namori-kurogawa/front.svg",
  38832. extra: 1894/1576,
  38833. bottom: 34/1928
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Normal",
  38840. height: math.unit(8 + 4/12, "feet"),
  38841. default: true
  38842. },
  38843. ]
  38844. ))
  38845. characterMakers.push(() => makeCharacter(
  38846. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38847. {
  38848. front: {
  38849. height: math.unit(9, "feet"),
  38850. weight: math.unit(621, "lb"),
  38851. name: "Front",
  38852. image: {
  38853. source: "./media/characters/unmru/front.svg",
  38854. extra: 1853/1747,
  38855. bottom: 73/1926
  38856. }
  38857. },
  38858. side: {
  38859. height: math.unit(9, "feet"),
  38860. weight: math.unit(621, "lb"),
  38861. name: "Side",
  38862. image: {
  38863. source: "./media/characters/unmru/side.svg",
  38864. extra: 1781/1671,
  38865. bottom: 127/1908
  38866. }
  38867. },
  38868. back: {
  38869. height: math.unit(9, "feet"),
  38870. weight: math.unit(621, "lb"),
  38871. name: "Back",
  38872. image: {
  38873. source: "./media/characters/unmru/back.svg",
  38874. extra: 1894/1765,
  38875. bottom: 75/1969
  38876. }
  38877. },
  38878. dick: {
  38879. height: math.unit(3, "feet"),
  38880. weight: math.unit(35, "lb"),
  38881. name: "Dick",
  38882. image: {
  38883. source: "./media/characters/unmru/dick.svg"
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(9, "feet")
  38891. },
  38892. {
  38893. name: "Natural",
  38894. height: math.unit(27, "feet"),
  38895. default: true
  38896. },
  38897. {
  38898. name: "Giant",
  38899. height: math.unit(90, "feet")
  38900. },
  38901. {
  38902. name: "Kaiju",
  38903. height: math.unit(270, "feet")
  38904. },
  38905. {
  38906. name: "Macro",
  38907. height: math.unit(900, "feet")
  38908. },
  38909. {
  38910. name: "Macro+",
  38911. height: math.unit(2700, "feet")
  38912. },
  38913. {
  38914. name: "Megamacro",
  38915. height: math.unit(9000, "feet")
  38916. },
  38917. {
  38918. name: "City-Crushing",
  38919. height: math.unit(27000, "feet")
  38920. },
  38921. {
  38922. name: "Mountain-Mashing",
  38923. height: math.unit(90000, "feet")
  38924. },
  38925. {
  38926. name: "Earth-Eclipsing",
  38927. height: math.unit(2.7e8, "feet")
  38928. },
  38929. {
  38930. name: "Sol-Swallowing",
  38931. height: math.unit(9e10, "feet")
  38932. },
  38933. {
  38934. name: "Majoris-Munching",
  38935. height: math.unit(2.7e13, "feet")
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38941. {
  38942. front: {
  38943. height: math.unit(1, "inch"),
  38944. name: "Front",
  38945. image: {
  38946. source: "./media/characters/squeaks-mouse/front.svg",
  38947. extra: 352/308,
  38948. bottom: 25/377
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Micro",
  38955. height: math.unit(1, "inch"),
  38956. default: true
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38962. {
  38963. side: {
  38964. height: math.unit(35, "feet"),
  38965. name: "Side",
  38966. image: {
  38967. source: "./media/characters/sayko/side.svg",
  38968. extra: 1697/1021,
  38969. bottom: 82/1779
  38970. }
  38971. },
  38972. head: {
  38973. height: math.unit(16, "feet"),
  38974. name: "Head",
  38975. image: {
  38976. source: "./media/characters/sayko/head.svg"
  38977. }
  38978. },
  38979. forepaw: {
  38980. height: math.unit(7.85, "feet"),
  38981. name: "Forepaw",
  38982. image: {
  38983. source: "./media/characters/sayko/forepaw.svg"
  38984. }
  38985. },
  38986. hindpaw: {
  38987. height: math.unit(8.8, "feet"),
  38988. name: "Hindpaw",
  38989. image: {
  38990. source: "./media/characters/sayko/hindpaw.svg"
  38991. }
  38992. },
  38993. },
  38994. [
  38995. {
  38996. name: "Normal",
  38997. height: math.unit(35, "feet"),
  38998. default: true
  38999. },
  39000. {
  39001. name: "Colossus",
  39002. height: math.unit(100, "meters")
  39003. },
  39004. {
  39005. name: "\"Small\" Deity",
  39006. height: math.unit(1, "km")
  39007. },
  39008. {
  39009. name: "\"Large\" Deity",
  39010. height: math.unit(15, "km")
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(6, "feet"),
  39019. weight: math.unit(250, "lb"),
  39020. name: "Front",
  39021. image: {
  39022. source: "./media/characters/mukiro/front.svg",
  39023. extra: 1368/1310,
  39024. bottom: 34/1402
  39025. }
  39026. },
  39027. },
  39028. [
  39029. {
  39030. name: "Normal",
  39031. height: math.unit(6, "feet"),
  39032. default: true
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39038. {
  39039. front: {
  39040. height: math.unit(12 + 4/12, "feet"),
  39041. name: "Front",
  39042. image: {
  39043. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39044. extra: 1346/1311,
  39045. bottom: 65/1411
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Base",
  39052. height: math.unit(12 + 4/12, "feet"),
  39053. default: true
  39054. },
  39055. {
  39056. name: "Macro",
  39057. height: math.unit(150, "feet")
  39058. },
  39059. {
  39060. name: "Mega",
  39061. height: math.unit(2, "miles")
  39062. },
  39063. {
  39064. name: "Demi God",
  39065. height: math.unit(4, "AU")
  39066. },
  39067. {
  39068. name: "God Size",
  39069. height: math.unit(1, "universe")
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(3 + 3/12, "feet"),
  39078. weight: math.unit(88, "lb"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/trey/front.svg",
  39082. extra: 1815/1509,
  39083. bottom: 60/1875
  39084. }
  39085. },
  39086. },
  39087. [
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(3 + 3/12, "feet"),
  39091. default: true
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39097. {
  39098. front: {
  39099. height: math.unit(4, "meters"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/adelonda/front.svg",
  39103. extra: 1077/982,
  39104. bottom: 39/1116
  39105. }
  39106. },
  39107. back: {
  39108. height: math.unit(4, "meters"),
  39109. name: "Back",
  39110. image: {
  39111. source: "./media/characters/adelonda/back.svg",
  39112. extra: 1105/1003,
  39113. bottom: 25/1130
  39114. }
  39115. },
  39116. feral: {
  39117. height: math.unit(40/1.5, "meters"),
  39118. name: "Feral",
  39119. image: {
  39120. source: "./media/characters/adelonda/feral.svg",
  39121. extra: 597/271,
  39122. bottom: 387/984
  39123. }
  39124. },
  39125. },
  39126. [
  39127. {
  39128. name: "Normal",
  39129. height: math.unit(4, "meters"),
  39130. default: true
  39131. },
  39132. ]
  39133. ))
  39134. characterMakers.push(() => makeCharacter(
  39135. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39136. {
  39137. front: {
  39138. height: math.unit(8 + 4/12, "feet"),
  39139. weight: math.unit(670, "lb"),
  39140. name: "Front",
  39141. image: {
  39142. source: "./media/characters/acadiel/front.svg",
  39143. extra: 1901/1595,
  39144. bottom: 142/2043
  39145. }
  39146. },
  39147. },
  39148. [
  39149. {
  39150. name: "Normal",
  39151. height: math.unit(8 + 4/12, "feet"),
  39152. default: true
  39153. },
  39154. {
  39155. name: "Macro",
  39156. height: math.unit(200, "feet")
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(6 + 2/12, "feet"),
  39165. weight: math.unit(185, "lb"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/kayne-ein/front.svg",
  39169. extra: 1780/1560,
  39170. bottom: 81/1861
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Normal",
  39177. height: math.unit(6 + 2/12, "feet"),
  39178. default: true
  39179. },
  39180. {
  39181. name: "Transformation Stage",
  39182. height: math.unit(15, "feet")
  39183. },
  39184. {
  39185. name: "Macro",
  39186. height: math.unit(150, "feet")
  39187. },
  39188. {
  39189. name: "Earth's Shadow",
  39190. height: math.unit(6200, "miles")
  39191. },
  39192. {
  39193. name: "Universal Demon",
  39194. height: math.unit(28e9, "parsecs")
  39195. },
  39196. {
  39197. name: "Multiverse God",
  39198. height: math.unit(3, "multiverses")
  39199. },
  39200. ]
  39201. ))
  39202. characterMakers.push(() => makeCharacter(
  39203. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39204. {
  39205. front: {
  39206. height: math.unit(5 + 5/12, "feet"),
  39207. name: "Front",
  39208. image: {
  39209. source: "./media/characters/fawn/front.svg",
  39210. extra: 1873/1731,
  39211. bottom: 95/1968
  39212. }
  39213. },
  39214. back: {
  39215. height: math.unit(5 + 5/12, "feet"),
  39216. name: "Back",
  39217. image: {
  39218. source: "./media/characters/fawn/back.svg",
  39219. extra: 1813/1700,
  39220. bottom: 14/1827
  39221. }
  39222. },
  39223. hoof: {
  39224. height: math.unit(1.45, "feet"),
  39225. name: "Hoof",
  39226. image: {
  39227. source: "./media/characters/fawn/hoof.svg"
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Normal",
  39234. height: math.unit(5 + 5/12, "feet"),
  39235. default: true
  39236. },
  39237. ]
  39238. ))
  39239. characterMakers.push(() => makeCharacter(
  39240. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39241. {
  39242. front: {
  39243. height: math.unit(2 + 5/12, "feet"),
  39244. name: "Front",
  39245. image: {
  39246. source: "./media/characters/orion/front.svg",
  39247. extra: 1366/1304,
  39248. bottom: 43/1409
  39249. }
  39250. },
  39251. paw: {
  39252. height: math.unit(0.52, "feet"),
  39253. name: "Paw",
  39254. image: {
  39255. source: "./media/characters/orion/paw.svg"
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Normal",
  39262. height: math.unit(2 + 5/12, "feet"),
  39263. default: true
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(5 + 10/12, "feet"),
  39272. name: "Front",
  39273. image: {
  39274. source: "./media/characters/vera/front.svg",
  39275. extra: 1680/1575,
  39276. bottom: 49/1729
  39277. }
  39278. },
  39279. back: {
  39280. height: math.unit(5 + 10/12, "feet"),
  39281. name: "Back",
  39282. image: {
  39283. source: "./media/characters/vera/back.svg",
  39284. extra: 1700/1588,
  39285. bottom: 18/1718
  39286. }
  39287. },
  39288. arcanine: {
  39289. height: math.unit(6 + 8/12, "feet"),
  39290. name: "Arcanine",
  39291. image: {
  39292. source: "./media/characters/vera/arcanine.svg",
  39293. extra: 1590/1511,
  39294. bottom: 71/1661
  39295. }
  39296. },
  39297. maw: {
  39298. height: math.unit(0.82, "feet"),
  39299. name: "Maw",
  39300. image: {
  39301. source: "./media/characters/vera/maw.svg"
  39302. }
  39303. },
  39304. mawArcanine: {
  39305. height: math.unit(0.97, "feet"),
  39306. name: "Maw (Arcanine)",
  39307. image: {
  39308. source: "./media/characters/vera/maw-arcanine.svg"
  39309. }
  39310. },
  39311. paw: {
  39312. height: math.unit(0.75, "feet"),
  39313. name: "Paw",
  39314. image: {
  39315. source: "./media/characters/vera/paw.svg"
  39316. }
  39317. },
  39318. pawprint: {
  39319. height: math.unit(0.52, "feet"),
  39320. name: "Pawprint",
  39321. image: {
  39322. source: "./media/characters/vera/pawprint.svg"
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Normal",
  39329. height: math.unit(5 + 10/12, "feet"),
  39330. default: true
  39331. },
  39332. {
  39333. name: "Macro",
  39334. height: math.unit(75, "feet")
  39335. },
  39336. ]
  39337. ))
  39338. characterMakers.push(() => makeCharacter(
  39339. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39340. {
  39341. front: {
  39342. height: math.unit(4, "feet"),
  39343. weight: math.unit(40, "lb"),
  39344. name: "Front",
  39345. image: {
  39346. source: "./media/characters/orvan-rabbit/front.svg",
  39347. extra: 1896/1642,
  39348. bottom: 29/1925
  39349. }
  39350. },
  39351. },
  39352. [
  39353. {
  39354. name: "Normal",
  39355. height: math.unit(4, "feet"),
  39356. default: true
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(6, "feet"),
  39365. weight: math.unit(168, "lb"),
  39366. name: "Front",
  39367. image: {
  39368. source: "./media/characters/lisa/front.svg",
  39369. extra: 2065/1867,
  39370. bottom: 46/2111
  39371. }
  39372. },
  39373. back: {
  39374. height: math.unit(6, "feet"),
  39375. weight: math.unit(168, "lb"),
  39376. name: "Back",
  39377. image: {
  39378. source: "./media/characters/lisa/back.svg",
  39379. extra: 1982/1838,
  39380. bottom: 29/2011
  39381. }
  39382. },
  39383. maw: {
  39384. height: math.unit(0.81, "feet"),
  39385. name: "Maw",
  39386. image: {
  39387. source: "./media/characters/lisa/maw.svg"
  39388. }
  39389. },
  39390. paw: {
  39391. height: math.unit(0.9, "feet"),
  39392. name: "Paw",
  39393. image: {
  39394. source: "./media/characters/lisa/paw.svg"
  39395. }
  39396. },
  39397. caribousune: {
  39398. height: math.unit(7 + 2/12, "feet"),
  39399. weight: math.unit(268, "lb"),
  39400. name: "Caribousune",
  39401. image: {
  39402. source: "./media/characters/lisa/caribousune.svg",
  39403. extra: 1843/1633,
  39404. bottom: 29/1872
  39405. }
  39406. },
  39407. frontCaribousune: {
  39408. height: math.unit(7 + 2/12, "feet"),
  39409. weight: math.unit(268, "lb"),
  39410. name: "Front (Caribousune)",
  39411. image: {
  39412. source: "./media/characters/lisa/front-caribousune.svg",
  39413. extra: 1818/1638,
  39414. bottom: 52/1870
  39415. }
  39416. },
  39417. sideCaribousune: {
  39418. height: math.unit(7 + 2/12, "feet"),
  39419. weight: math.unit(268, "lb"),
  39420. name: "Side (Caribousune)",
  39421. image: {
  39422. source: "./media/characters/lisa/side-caribousune.svg",
  39423. extra: 1851/1635,
  39424. bottom: 16/1867
  39425. }
  39426. },
  39427. backCaribousune: {
  39428. height: math.unit(7 + 2/12, "feet"),
  39429. weight: math.unit(268, "lb"),
  39430. name: "Back (Caribousune)",
  39431. image: {
  39432. source: "./media/characters/lisa/back-caribousune.svg",
  39433. extra: 1801/1604,
  39434. bottom: 44/1845
  39435. }
  39436. },
  39437. caribou: {
  39438. height: math.unit(7 + 2/12, "feet"),
  39439. weight: math.unit(268, "lb"),
  39440. name: "Caribou",
  39441. image: {
  39442. source: "./media/characters/lisa/caribou.svg",
  39443. extra: 1843/1633,
  39444. bottom: 29/1872
  39445. }
  39446. },
  39447. frontCaribou: {
  39448. height: math.unit(7 + 2/12, "feet"),
  39449. weight: math.unit(268, "lb"),
  39450. name: "Front (Caribou)",
  39451. image: {
  39452. source: "./media/characters/lisa/front-caribou.svg",
  39453. extra: 1818/1638,
  39454. bottom: 52/1870
  39455. }
  39456. },
  39457. sideCaribou: {
  39458. height: math.unit(7 + 2/12, "feet"),
  39459. weight: math.unit(268, "lb"),
  39460. name: "Side (Caribou)",
  39461. image: {
  39462. source: "./media/characters/lisa/side-caribou.svg",
  39463. extra: 1851/1635,
  39464. bottom: 16/1867
  39465. }
  39466. },
  39467. backCaribou: {
  39468. height: math.unit(7 + 2/12, "feet"),
  39469. weight: math.unit(268, "lb"),
  39470. name: "Back (Caribou)",
  39471. image: {
  39472. source: "./media/characters/lisa/back-caribou.svg",
  39473. extra: 1801/1604,
  39474. bottom: 44/1845
  39475. }
  39476. },
  39477. mawCaribou: {
  39478. height: math.unit(1.45, "feet"),
  39479. name: "Maw (Caribou)",
  39480. image: {
  39481. source: "./media/characters/lisa/maw-caribou.svg"
  39482. }
  39483. },
  39484. mawCaribousune: {
  39485. height: math.unit(1.45, "feet"),
  39486. name: "Maw (Caribousune)",
  39487. image: {
  39488. source: "./media/characters/lisa/maw-caribousune.svg"
  39489. }
  39490. },
  39491. pawCaribousune: {
  39492. height: math.unit(1.61, "feet"),
  39493. name: "Paw (Caribou)",
  39494. image: {
  39495. source: "./media/characters/lisa/paw-caribousune.svg"
  39496. }
  39497. },
  39498. },
  39499. [
  39500. {
  39501. name: "Normal",
  39502. height: math.unit(6, "feet")
  39503. },
  39504. {
  39505. name: "God Size",
  39506. height: math.unit(72, "feet"),
  39507. default: true
  39508. },
  39509. {
  39510. name: "Towering",
  39511. height: math.unit(288, "feet")
  39512. },
  39513. {
  39514. name: "City Size",
  39515. height: math.unit(48384, "feet")
  39516. },
  39517. {
  39518. name: "Continental",
  39519. height: math.unit(4200, "miles")
  39520. },
  39521. {
  39522. name: "Planet Eater",
  39523. height: math.unit(42, "earths")
  39524. },
  39525. {
  39526. name: "Star Swallower",
  39527. height: math.unit(42, "solarradii")
  39528. },
  39529. {
  39530. name: "System Swallower",
  39531. height: math.unit(84000, "AU")
  39532. },
  39533. {
  39534. name: "Galaxy Gobbler",
  39535. height: math.unit(42, "galaxies")
  39536. },
  39537. {
  39538. name: "Universe Devourer",
  39539. height: math.unit(42, "universes")
  39540. },
  39541. {
  39542. name: "Multiverse Muncher",
  39543. height: math.unit(42, "multiverses")
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39549. {
  39550. front: {
  39551. height: math.unit(36, "feet"),
  39552. name: "Front",
  39553. image: {
  39554. source: "./media/characters/shadow-rat/front.svg",
  39555. extra: 1845/1758,
  39556. bottom: 83/1928
  39557. }
  39558. },
  39559. },
  39560. [
  39561. {
  39562. name: "Macro",
  39563. height: math.unit(36, "feet"),
  39564. default: true
  39565. },
  39566. ]
  39567. ))
  39568. characterMakers.push(() => makeCharacter(
  39569. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39570. {
  39571. side: {
  39572. height: math.unit(8, "feet"),
  39573. weight: math.unit(2630, "lb"),
  39574. name: "Side",
  39575. image: {
  39576. source: "./media/characters/torallia/side.svg",
  39577. extra: 2164/2021,
  39578. bottom: 371/2535
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Mortal Interaction",
  39585. height: math.unit(8, "feet")
  39586. },
  39587. {
  39588. name: "Natural",
  39589. height: math.unit(24, "feet"),
  39590. default: true
  39591. },
  39592. {
  39593. name: "Giant",
  39594. height: math.unit(80, "feet")
  39595. },
  39596. {
  39597. name: "Kaiju",
  39598. height: math.unit(240, "feet")
  39599. },
  39600. {
  39601. name: "Macro",
  39602. height: math.unit(800, "feet")
  39603. },
  39604. {
  39605. name: "Macro+",
  39606. height: math.unit(2400, "feet")
  39607. },
  39608. {
  39609. name: "Macro++",
  39610. height: math.unit(8000, "feet")
  39611. },
  39612. {
  39613. name: "City-Crushing",
  39614. height: math.unit(24000, "feet")
  39615. },
  39616. {
  39617. name: "Mountain-Mashing",
  39618. height: math.unit(80000, "feet")
  39619. },
  39620. {
  39621. name: "District Demolisher",
  39622. height: math.unit(240000, "feet")
  39623. },
  39624. {
  39625. name: "Tri-County Terror",
  39626. height: math.unit(800000, "feet")
  39627. },
  39628. {
  39629. name: "State Smasher",
  39630. height: math.unit(2.4e6, "feet")
  39631. },
  39632. {
  39633. name: "Nation Nemesis",
  39634. height: math.unit(8e6, "feet")
  39635. },
  39636. {
  39637. name: "Continent Cracker",
  39638. height: math.unit(2.4e7, "feet")
  39639. },
  39640. {
  39641. name: "Planet-Pillaging",
  39642. height: math.unit(8e7, "feet")
  39643. },
  39644. {
  39645. name: "Earth-Eclipsing",
  39646. height: math.unit(2.4e8, "feet")
  39647. },
  39648. {
  39649. name: "Jovian-Jostling",
  39650. height: math.unit(8e8, "feet")
  39651. },
  39652. {
  39653. name: "Gas Giant Gulper",
  39654. height: math.unit(2.4e9, "feet")
  39655. },
  39656. {
  39657. name: "Astral Annihilator",
  39658. height: math.unit(8e9, "feet")
  39659. },
  39660. {
  39661. name: "Celestial Conqueror",
  39662. height: math.unit(2.4e10, "feet")
  39663. },
  39664. {
  39665. name: "Sol-Swallowing",
  39666. height: math.unit(8e10, "feet")
  39667. },
  39668. {
  39669. name: "Hunter of the Heavens",
  39670. height: math.unit(2.4e13, "feet")
  39671. },
  39672. ]
  39673. ))
  39674. characterMakers.push(() => makeCharacter(
  39675. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39676. {
  39677. front: {
  39678. height: math.unit(6 + 8/12, "feet"),
  39679. weight: math.unit(250, "kilograms"),
  39680. volume: math.unit(28, "liters"),
  39681. name: "Front",
  39682. image: {
  39683. source: "./media/characters/rebecca-pawlson/front.svg",
  39684. extra: 1737/1596,
  39685. bottom: 107/1844
  39686. }
  39687. },
  39688. back: {
  39689. height: math.unit(6 + 8/12, "feet"),
  39690. weight: math.unit(250, "kilograms"),
  39691. volume: math.unit(28, "liters"),
  39692. name: "Back",
  39693. image: {
  39694. source: "./media/characters/rebecca-pawlson/back.svg",
  39695. extra: 1702/1523,
  39696. bottom: 86/1788
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Normal",
  39703. height: math.unit(6 + 8/12, "feet")
  39704. },
  39705. {
  39706. name: "Mini Macro",
  39707. height: math.unit(10, "feet"),
  39708. default: true
  39709. },
  39710. {
  39711. name: "Macro",
  39712. height: math.unit(100, "feet")
  39713. },
  39714. {
  39715. name: "Mega Macro",
  39716. height: math.unit(2500, "feet")
  39717. },
  39718. {
  39719. name: "Giga Macro",
  39720. height: math.unit(50, "miles")
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39726. {
  39727. front: {
  39728. height: math.unit(7 + 6/12, "feet"),
  39729. weight: math.unit(600, "lb"),
  39730. name: "Front",
  39731. image: {
  39732. source: "./media/characters/moxie-nova/front.svg",
  39733. extra: 1734/1652,
  39734. bottom: 41/1775
  39735. }
  39736. },
  39737. },
  39738. [
  39739. {
  39740. name: "Normal",
  39741. height: math.unit(7 + 6/12, "feet"),
  39742. default: true
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39748. {
  39749. goat: {
  39750. height: math.unit(4, "feet"),
  39751. weight: math.unit(180, "lb"),
  39752. name: "Goat",
  39753. image: {
  39754. source: "./media/characters/tiffany/goat.svg",
  39755. extra: 1845/1595,
  39756. bottom: 106/1951
  39757. }
  39758. },
  39759. front: {
  39760. height: math.unit(5, "feet"),
  39761. weight: math.unit(150, "lb"),
  39762. name: "Foxcoon",
  39763. image: {
  39764. source: "./media/characters/tiffany/foxcoon.svg",
  39765. extra: 1941/1845,
  39766. bottom: 58/1999
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(5, "feet"),
  39774. default: true
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39780. {
  39781. front: {
  39782. height: math.unit(8, "feet"),
  39783. weight: math.unit(300, "lb"),
  39784. name: "Front",
  39785. image: {
  39786. source: "./media/characters/raxinath/front.svg",
  39787. extra: 1407/1309,
  39788. bottom: 39/1446
  39789. }
  39790. },
  39791. back: {
  39792. height: math.unit(8, "feet"),
  39793. weight: math.unit(300, "lb"),
  39794. name: "Back",
  39795. image: {
  39796. source: "./media/characters/raxinath/back.svg",
  39797. extra: 1405/1315,
  39798. bottom: 9/1414
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Speck",
  39805. height: math.unit(0.5, "nm")
  39806. },
  39807. {
  39808. name: "Micro",
  39809. height: math.unit(3, "inches")
  39810. },
  39811. {
  39812. name: "Kobold",
  39813. height: math.unit(3, "feet")
  39814. },
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(8, "feet"),
  39818. default: true
  39819. },
  39820. {
  39821. name: "Giant",
  39822. height: math.unit(50, "feet")
  39823. },
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(1000, "feet")
  39827. },
  39828. {
  39829. name: "Megamacro",
  39830. height: math.unit(1, "mile")
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(10, "feet"),
  39839. weight: math.unit(1442, "lb"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/mal-dragon/front.svg",
  39843. extra: 1515/1444,
  39844. bottom: 113/1628
  39845. }
  39846. },
  39847. back: {
  39848. height: math.unit(10, "feet"),
  39849. weight: math.unit(1442, "lb"),
  39850. name: "Back",
  39851. image: {
  39852. source: "./media/characters/mal-dragon/back.svg",
  39853. extra: 1527/1434,
  39854. bottom: 25/1552
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Mortal Interaction",
  39861. height: math.unit(10, "feet"),
  39862. default: true
  39863. },
  39864. {
  39865. name: "Large",
  39866. height: math.unit(30, "feet")
  39867. },
  39868. {
  39869. name: "Kaiju",
  39870. height: math.unit(300, "feet")
  39871. },
  39872. {
  39873. name: "Megamacro",
  39874. height: math.unit(10000, "feet")
  39875. },
  39876. {
  39877. name: "Continent Cracker",
  39878. height: math.unit(30000000, "feet")
  39879. },
  39880. {
  39881. name: "Sol-Swallowing",
  39882. height: math.unit(1e11, "feet")
  39883. },
  39884. {
  39885. name: "Light Universal",
  39886. height: math.unit(5, "universes")
  39887. },
  39888. {
  39889. name: "Universe Atoms",
  39890. height: math.unit(1.829e9, "universes")
  39891. },
  39892. {
  39893. name: "Light Multiversal",
  39894. height: math.unit(5, "multiverses")
  39895. },
  39896. {
  39897. name: "Multiverse Atoms",
  39898. height: math.unit(1.829e9, "multiverses")
  39899. },
  39900. {
  39901. name: "Fabric of Time",
  39902. height: math.unit(1e262, "multiverses")
  39903. },
  39904. ]
  39905. ))
  39906. characterMakers.push(() => makeCharacter(
  39907. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39908. {
  39909. front: {
  39910. height: math.unit(9, "feet"),
  39911. weight: math.unit(1050, "lb"),
  39912. name: "Front",
  39913. image: {
  39914. source: "./media/characters/tabitha/front.svg",
  39915. extra: 2083/1994,
  39916. bottom: 68/2151
  39917. }
  39918. },
  39919. },
  39920. [
  39921. {
  39922. name: "Baseline",
  39923. height: math.unit(9, "feet"),
  39924. default: true
  39925. },
  39926. {
  39927. name: "Giant",
  39928. height: math.unit(90, "feet")
  39929. },
  39930. {
  39931. name: "Macro",
  39932. height: math.unit(900, "feet")
  39933. },
  39934. {
  39935. name: "Megamacro",
  39936. height: math.unit(9000, "feet")
  39937. },
  39938. {
  39939. name: "City-Crushing",
  39940. height: math.unit(27000, "feet")
  39941. },
  39942. {
  39943. name: "Mountain-Mashing",
  39944. height: math.unit(90000, "feet")
  39945. },
  39946. {
  39947. name: "Nation Nemesis",
  39948. height: math.unit(9e6, "feet")
  39949. },
  39950. {
  39951. name: "Continent Cracker",
  39952. height: math.unit(27e6, "feet")
  39953. },
  39954. {
  39955. name: "Earth-Eclipsing",
  39956. height: math.unit(2.7e8, "feet")
  39957. },
  39958. {
  39959. name: "Gas Giant Gulper",
  39960. height: math.unit(2.7e9, "feet")
  39961. },
  39962. {
  39963. name: "Sol-Swallowing",
  39964. height: math.unit(9e10, "feet")
  39965. },
  39966. {
  39967. name: "Galaxy Gulper",
  39968. height: math.unit(9, "galaxies")
  39969. },
  39970. {
  39971. name: "Cosmos Churner",
  39972. height: math.unit(9, "universes")
  39973. },
  39974. ]
  39975. ))
  39976. characterMakers.push(() => makeCharacter(
  39977. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39978. {
  39979. front: {
  39980. height: math.unit(160, "cm"),
  39981. weight: math.unit(55, "kg"),
  39982. name: "Front",
  39983. image: {
  39984. source: "./media/characters/tow/front.svg",
  39985. extra: 1751/1722,
  39986. bottom: 74/1825
  39987. }
  39988. },
  39989. },
  39990. [
  39991. {
  39992. name: "Norm",
  39993. height: math.unit(160, "cm")
  39994. },
  39995. {
  39996. name: "Casual",
  39997. height: math.unit(3200, "m"),
  39998. default: true
  39999. },
  40000. {
  40001. name: "Show-Off",
  40002. height: math.unit(160, "km")
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40008. {
  40009. front: {
  40010. height: math.unit(7 + 11/12, "feet"),
  40011. weight: math.unit(342.8, "lb"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/vivian-orca-dragon/front.svg",
  40015. extra: 1890/1865,
  40016. bottom: 28/1918
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Micro",
  40023. height: math.unit(5, "inches")
  40024. },
  40025. {
  40026. name: "Normal",
  40027. height: math.unit(7 + 11/12, "feet"),
  40028. default: true
  40029. },
  40030. {
  40031. name: "Macro",
  40032. height: math.unit(395 + 7/12, "feet")
  40033. },
  40034. ]
  40035. ))
  40036. characterMakers.push(() => makeCharacter(
  40037. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40038. {
  40039. side: {
  40040. height: math.unit(10, "feet"),
  40041. weight: math.unit(1442, "lb"),
  40042. name: "Side",
  40043. image: {
  40044. source: "./media/characters/lotherakon/side.svg",
  40045. extra: 1604/1497,
  40046. bottom: 89/1693
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Mortal Interaction",
  40053. height: math.unit(10, "feet")
  40054. },
  40055. {
  40056. name: "Large",
  40057. height: math.unit(30, "feet"),
  40058. default: true
  40059. },
  40060. {
  40061. name: "Giant",
  40062. height: math.unit(100, "feet")
  40063. },
  40064. {
  40065. name: "Kaiju",
  40066. height: math.unit(300, "feet")
  40067. },
  40068. {
  40069. name: "Macro",
  40070. height: math.unit(1000, "feet")
  40071. },
  40072. {
  40073. name: "Macro+",
  40074. height: math.unit(3000, "feet")
  40075. },
  40076. {
  40077. name: "Megamacro",
  40078. height: math.unit(10000, "feet")
  40079. },
  40080. {
  40081. name: "City-Crushing",
  40082. height: math.unit(30000, "feet")
  40083. },
  40084. {
  40085. name: "Continent Cracker",
  40086. height: math.unit(30e6, "feet")
  40087. },
  40088. {
  40089. name: "Earth Eclipsing",
  40090. height: math.unit(3e8, "feet")
  40091. },
  40092. {
  40093. name: "Gas Giant Gulper",
  40094. height: math.unit(3e9, "feet")
  40095. },
  40096. {
  40097. name: "Sol-Swallowing",
  40098. height: math.unit(1e11, "feet")
  40099. },
  40100. {
  40101. name: "System Swallower",
  40102. height: math.unit(3e14, "feet")
  40103. },
  40104. {
  40105. name: "Galaxy Gulper",
  40106. height: math.unit(10, "galaxies")
  40107. },
  40108. {
  40109. name: "Light Universal",
  40110. height: math.unit(5, "universes")
  40111. },
  40112. {
  40113. name: "Universe Palm",
  40114. height: math.unit(20, "universes")
  40115. },
  40116. {
  40117. name: "Light Multiversal",
  40118. height: math.unit(5, "multiverses")
  40119. },
  40120. {
  40121. name: "Multiverse Palm",
  40122. height: math.unit(20, "multiverses")
  40123. },
  40124. {
  40125. name: "Inferno Incarnate",
  40126. height: math.unit(1e7, "multiverses")
  40127. },
  40128. ]
  40129. ))
  40130. characterMakers.push(() => makeCharacter(
  40131. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40132. {
  40133. front: {
  40134. height: math.unit(8, "feet"),
  40135. weight: math.unit(1200, "lb"),
  40136. name: "Front",
  40137. image: {
  40138. source: "./media/characters/malithee/front.svg",
  40139. extra: 1675/1640,
  40140. bottom: 162/1837
  40141. }
  40142. },
  40143. },
  40144. [
  40145. {
  40146. name: "Mortal Interaction",
  40147. height: math.unit(8, "feet"),
  40148. default: true
  40149. },
  40150. {
  40151. name: "Large",
  40152. height: math.unit(24, "feet")
  40153. },
  40154. {
  40155. name: "Kaiju",
  40156. height: math.unit(240, "feet")
  40157. },
  40158. {
  40159. name: "Megamacro",
  40160. height: math.unit(8000, "feet")
  40161. },
  40162. {
  40163. name: "Continent Cracker",
  40164. height: math.unit(24e6, "feet")
  40165. },
  40166. {
  40167. name: "Earth-Eclipsing",
  40168. height: math.unit(2.4e8, "feet")
  40169. },
  40170. {
  40171. name: "Sol-Swallowing",
  40172. height: math.unit(8e10, "feet")
  40173. },
  40174. {
  40175. name: "Galaxy Gulper",
  40176. height: math.unit(8, "galaxies")
  40177. },
  40178. {
  40179. name: "Light Universal",
  40180. height: math.unit(4, "universes")
  40181. },
  40182. {
  40183. name: "Universe Atoms",
  40184. height: math.unit(1.829e9, "universes")
  40185. },
  40186. {
  40187. name: "Light Multiversal",
  40188. height: math.unit(4, "multiverses")
  40189. },
  40190. {
  40191. name: "Multiverse Atoms",
  40192. height: math.unit(1.829e9, "multiverses")
  40193. },
  40194. {
  40195. name: "Nigh-Omnipresence",
  40196. height: math.unit(8e261, "multiverses")
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40202. {
  40203. front: {
  40204. height: math.unit(10, "feet"),
  40205. weight: math.unit(1500, "lb"),
  40206. name: "Front",
  40207. image: {
  40208. source: "./media/characters/miles-thestia/front.svg",
  40209. extra: 1812/1727,
  40210. bottom: 86/1898
  40211. }
  40212. },
  40213. back: {
  40214. height: math.unit(10, "feet"),
  40215. weight: math.unit(1500, "lb"),
  40216. name: "Back",
  40217. image: {
  40218. source: "./media/characters/miles-thestia/back.svg",
  40219. extra: 1799/1690,
  40220. bottom: 47/1846
  40221. }
  40222. },
  40223. frontNsfw: {
  40224. height: math.unit(10, "feet"),
  40225. weight: math.unit(1500, "lb"),
  40226. name: "Front (NSFW)",
  40227. image: {
  40228. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40229. extra: 1812/1727,
  40230. bottom: 86/1898
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Mini-Macro",
  40237. height: math.unit(10, "feet"),
  40238. default: true
  40239. },
  40240. ]
  40241. ))
  40242. characterMakers.push(() => makeCharacter(
  40243. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40244. {
  40245. front: {
  40246. height: math.unit(25, "feet"),
  40247. name: "Front",
  40248. image: {
  40249. source: "./media/characters/titan-s-wulf/front.svg",
  40250. extra: 1560/1484,
  40251. bottom: 76/1636
  40252. }
  40253. },
  40254. },
  40255. [
  40256. {
  40257. name: "Smallest",
  40258. height: math.unit(25, "feet"),
  40259. default: true
  40260. },
  40261. {
  40262. name: "Normal",
  40263. height: math.unit(200, "feet")
  40264. },
  40265. {
  40266. name: "Macro",
  40267. height: math.unit(200000, "feet")
  40268. },
  40269. {
  40270. name: "Multiversal Original",
  40271. height: math.unit(10000, "multiverses")
  40272. },
  40273. ]
  40274. ))
  40275. characterMakers.push(() => makeCharacter(
  40276. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40277. {
  40278. front: {
  40279. height: math.unit(8, "feet"),
  40280. weight: math.unit(553, "lb"),
  40281. name: "Front",
  40282. image: {
  40283. source: "./media/characters/tawendeh/front.svg",
  40284. extra: 2365/2268,
  40285. bottom: 83/2448
  40286. }
  40287. },
  40288. frontClothed: {
  40289. height: math.unit(8, "feet"),
  40290. weight: math.unit(553, "lb"),
  40291. name: "Front (Clothed)",
  40292. image: {
  40293. source: "./media/characters/tawendeh/front-clothed.svg",
  40294. extra: 2365/2268,
  40295. bottom: 83/2448
  40296. }
  40297. },
  40298. back: {
  40299. height: math.unit(8, "feet"),
  40300. weight: math.unit(553, "lb"),
  40301. name: "Back",
  40302. image: {
  40303. source: "./media/characters/tawendeh/back.svg",
  40304. extra: 2397/2294,
  40305. bottom: 42/2439
  40306. }
  40307. },
  40308. },
  40309. [
  40310. {
  40311. name: "Mortal Interaction",
  40312. height: math.unit(8, "feet"),
  40313. default: true
  40314. },
  40315. {
  40316. name: "Giant",
  40317. height: math.unit(80, "feet")
  40318. },
  40319. {
  40320. name: "Macro",
  40321. height: math.unit(800, "feet")
  40322. },
  40323. {
  40324. name: "Megamacro",
  40325. height: math.unit(8000, "feet")
  40326. },
  40327. {
  40328. name: "City-Crushing",
  40329. height: math.unit(24000, "feet")
  40330. },
  40331. {
  40332. name: "Mountain-Mashing",
  40333. height: math.unit(80000, "feet")
  40334. },
  40335. {
  40336. name: "Nation Nemesis",
  40337. height: math.unit(8e6, "feet")
  40338. },
  40339. {
  40340. name: "Continent Cracker",
  40341. height: math.unit(24e6, "feet")
  40342. },
  40343. {
  40344. name: "Earth-Eclipsing",
  40345. height: math.unit(2.4e8, "feet")
  40346. },
  40347. {
  40348. name: "Gas Giant Gulper",
  40349. height: math.unit(2.4e9, "feet")
  40350. },
  40351. {
  40352. name: "Sol-Swallowing",
  40353. height: math.unit(8e10, "feet")
  40354. },
  40355. {
  40356. name: "Galaxy Gulper",
  40357. height: math.unit(8, "galaxies")
  40358. },
  40359. {
  40360. name: "Cosmos Churner",
  40361. height: math.unit(8, "universes")
  40362. },
  40363. {
  40364. name: "Omnipotent Otter",
  40365. height: math.unit(80, "universes")
  40366. },
  40367. ]
  40368. ))
  40369. characterMakers.push(() => makeCharacter(
  40370. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40371. {
  40372. front: {
  40373. height: math.unit(2.6, "meters"),
  40374. weight: math.unit(900, "kg"),
  40375. name: "Front",
  40376. image: {
  40377. source: "./media/characters/neesha/front.svg",
  40378. extra: 1803/1653,
  40379. bottom: 128/1931
  40380. }
  40381. },
  40382. },
  40383. [
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(2.6, "meters"),
  40387. default: true
  40388. },
  40389. {
  40390. name: "Macro",
  40391. height: math.unit(50, "meters")
  40392. },
  40393. ]
  40394. ))
  40395. characterMakers.push(() => makeCharacter(
  40396. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40397. {
  40398. front: {
  40399. height: math.unit(5, "feet"),
  40400. weight: math.unit(185, "lb"),
  40401. name: "Front",
  40402. image: {
  40403. source: "./media/characters/kyera/front.svg",
  40404. extra: 1875/1790,
  40405. bottom: 96/1971
  40406. }
  40407. },
  40408. },
  40409. [
  40410. {
  40411. name: "Normal",
  40412. height: math.unit(5, "feet"),
  40413. default: true
  40414. },
  40415. ]
  40416. ))
  40417. characterMakers.push(() => makeCharacter(
  40418. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40419. {
  40420. front: {
  40421. height: math.unit(7 + 6/12, "feet"),
  40422. weight: math.unit(540, "lb"),
  40423. name: "Front",
  40424. image: {
  40425. source: "./media/characters/yuko/front.svg",
  40426. extra: 1282/1222,
  40427. bottom: 101/1383
  40428. }
  40429. },
  40430. frontClothed: {
  40431. height: math.unit(7 + 6/12, "feet"),
  40432. weight: math.unit(540, "lb"),
  40433. name: "Front (Clothed)",
  40434. image: {
  40435. source: "./media/characters/yuko/front-clothed.svg",
  40436. extra: 1282/1222,
  40437. bottom: 101/1383
  40438. }
  40439. },
  40440. },
  40441. [
  40442. {
  40443. name: "Normal",
  40444. height: math.unit(7 + 6/12, "feet"),
  40445. default: true
  40446. },
  40447. {
  40448. name: "Macro",
  40449. height: math.unit(26 + 9/12, "feet")
  40450. },
  40451. {
  40452. name: "Megamacro",
  40453. height: math.unit(300, "feet")
  40454. },
  40455. {
  40456. name: "Gigamacro",
  40457. height: math.unit(5000, "feet")
  40458. },
  40459. {
  40460. name: "Planetary",
  40461. height: math.unit(10000, "miles")
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40467. {
  40468. front: {
  40469. height: math.unit(8 + 2/12, "feet"),
  40470. weight: math.unit(600, "lb"),
  40471. name: "Front",
  40472. image: {
  40473. source: "./media/characters/deam-nitrel/front.svg",
  40474. extra: 1308/1234,
  40475. bottom: 125/1433
  40476. }
  40477. },
  40478. },
  40479. [
  40480. {
  40481. name: "Normal",
  40482. height: math.unit(8 + 2/12, "feet"),
  40483. default: true
  40484. },
  40485. ]
  40486. ))
  40487. characterMakers.push(() => makeCharacter(
  40488. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40489. {
  40490. front: {
  40491. height: math.unit(6.1, "feet"),
  40492. weight: math.unit(180, "lb"),
  40493. name: "Front",
  40494. image: {
  40495. source: "./media/characters/skyress/front.svg",
  40496. extra: 1045/915,
  40497. bottom: 28/1073
  40498. }
  40499. },
  40500. maw: {
  40501. height: math.unit(1, "feet"),
  40502. name: "Maw",
  40503. image: {
  40504. source: "./media/characters/skyress/maw.svg"
  40505. }
  40506. },
  40507. },
  40508. [
  40509. {
  40510. name: "Normal",
  40511. height: math.unit(6.1, "feet"),
  40512. default: true
  40513. },
  40514. {
  40515. name: "Macro",
  40516. height: math.unit(200, "feet")
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40522. {
  40523. front: {
  40524. height: math.unit(4 + 2/12, "feet"),
  40525. weight: math.unit(40, "kg"),
  40526. name: "Front",
  40527. image: {
  40528. source: "./media/characters/amethyst-jones/front.svg",
  40529. extra: 1220/1150,
  40530. bottom: 101/1321
  40531. }
  40532. },
  40533. },
  40534. [
  40535. {
  40536. name: "Normal",
  40537. height: math.unit(4 + 2/12, "feet"),
  40538. default: true
  40539. },
  40540. ]
  40541. ))
  40542. characterMakers.push(() => makeCharacter(
  40543. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40544. {
  40545. front: {
  40546. height: math.unit(1.7, "m"),
  40547. weight: math.unit(135, "lb"),
  40548. name: "Front",
  40549. image: {
  40550. source: "./media/characters/jade/front.svg",
  40551. extra: 1818/1767,
  40552. bottom: 32/1850
  40553. }
  40554. },
  40555. back: {
  40556. height: math.unit(1.7, "m"),
  40557. weight: math.unit(135, "lb"),
  40558. name: "Back",
  40559. image: {
  40560. source: "./media/characters/jade/back.svg",
  40561. extra: 1869/1809,
  40562. bottom: 35/1904
  40563. }
  40564. },
  40565. hand: {
  40566. height: math.unit(0.24, "m"),
  40567. name: "Hand",
  40568. image: {
  40569. source: "./media/characters/jade/hand.svg"
  40570. }
  40571. },
  40572. foot: {
  40573. height: math.unit(0.263, "m"),
  40574. name: "Foot",
  40575. image: {
  40576. source: "./media/characters/jade/foot.svg"
  40577. }
  40578. },
  40579. dick: {
  40580. height: math.unit(0.47, "m"),
  40581. name: "Dick",
  40582. image: {
  40583. source: "./media/characters/jade/dick.svg"
  40584. }
  40585. },
  40586. },
  40587. [
  40588. {
  40589. name: "Micro",
  40590. height: math.unit(22, "cm")
  40591. },
  40592. {
  40593. name: "Normal",
  40594. height: math.unit(1.7, "m"),
  40595. default: true
  40596. },
  40597. {
  40598. name: "Macro",
  40599. height: math.unit(152, "m")
  40600. },
  40601. ]
  40602. ))
  40603. characterMakers.push(() => makeCharacter(
  40604. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40605. {
  40606. front: {
  40607. height: math.unit(100, "miles"),
  40608. weight: math.unit(20000, "tons"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/cookie/front.svg",
  40612. extra: 1125/1070,
  40613. bottom: 30/1155
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "Big",
  40620. height: math.unit(50, "feet")
  40621. },
  40622. {
  40623. name: "Macro",
  40624. height: math.unit(100, "miles"),
  40625. default: true
  40626. },
  40627. {
  40628. name: "Megamacro",
  40629. height: math.unit(90000, "miles")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(6, "feet"),
  40638. weight: math.unit(145, "lb"),
  40639. name: "Front",
  40640. image: {
  40641. source: "./media/characters/farzian/front.svg",
  40642. extra: 1902/1693,
  40643. bottom: 108/2010
  40644. }
  40645. },
  40646. },
  40647. [
  40648. {
  40649. name: "Macro",
  40650. height: math.unit(500, "feet"),
  40651. default: true
  40652. },
  40653. ]
  40654. ))
  40655. characterMakers.push(() => makeCharacter(
  40656. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40657. {
  40658. front: {
  40659. height: math.unit(3 + 6/12, "feet"),
  40660. weight: math.unit(50, "lb"),
  40661. name: "Front",
  40662. image: {
  40663. source: "./media/characters/kimberly-tilson/front.svg",
  40664. extra: 1400/1322,
  40665. bottom: 36/1436
  40666. }
  40667. },
  40668. back: {
  40669. height: math.unit(3 + 6/12, "feet"),
  40670. weight: math.unit(50, "lb"),
  40671. name: "Back",
  40672. image: {
  40673. source: "./media/characters/kimberly-tilson/back.svg",
  40674. extra: 1370/1307,
  40675. bottom: 20/1390
  40676. }
  40677. },
  40678. },
  40679. [
  40680. {
  40681. name: "Normal",
  40682. height: math.unit(3 + 6/12, "feet"),
  40683. default: true
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(1148, "feet"),
  40692. weight: math.unit(34057, "lb"),
  40693. name: "Front",
  40694. image: {
  40695. source: "./media/characters/harthos/front.svg",
  40696. extra: 1391/1339,
  40697. bottom: 13/1404
  40698. }
  40699. },
  40700. },
  40701. [
  40702. {
  40703. name: "Macro",
  40704. height: math.unit(1148, "feet"),
  40705. default: true
  40706. },
  40707. ]
  40708. ))
  40709. characterMakers.push(() => makeCharacter(
  40710. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40711. {
  40712. front: {
  40713. height: math.unit(15, "feet"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/hypatia/front.svg",
  40717. extra: 1653/1591,
  40718. bottom: 79/1732
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Normal",
  40725. height: math.unit(15, "feet")
  40726. },
  40727. {
  40728. name: "Small",
  40729. height: math.unit(300, "feet")
  40730. },
  40731. {
  40732. name: "Macro",
  40733. height: math.unit(2500, "feet"),
  40734. default: true
  40735. },
  40736. {
  40737. name: "Mega Macro",
  40738. height: math.unit(1500, "miles")
  40739. },
  40740. {
  40741. name: "Giga Macro",
  40742. height: math.unit(1.5e6, "miles")
  40743. },
  40744. ]
  40745. ))
  40746. characterMakers.push(() => makeCharacter(
  40747. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40748. {
  40749. front: {
  40750. height: math.unit(6, "feet"),
  40751. weight: math.unit(200, "lb"),
  40752. name: "Front",
  40753. image: {
  40754. source: "./media/characters/wulver/front.svg",
  40755. extra: 1724/1632,
  40756. bottom: 130/1854
  40757. }
  40758. },
  40759. frontNsfw: {
  40760. height: math.unit(6, "feet"),
  40761. weight: math.unit(200, "lb"),
  40762. name: "Front (NSFW)",
  40763. image: {
  40764. source: "./media/characters/wulver/front-nsfw.svg",
  40765. extra: 1724/1632,
  40766. bottom: 130/1854
  40767. }
  40768. },
  40769. },
  40770. [
  40771. {
  40772. name: "Human-Sized",
  40773. height: math.unit(6, "feet")
  40774. },
  40775. {
  40776. name: "Normal",
  40777. height: math.unit(4, "meters"),
  40778. default: true
  40779. },
  40780. {
  40781. name: "Large",
  40782. height: math.unit(6, "m")
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40788. {
  40789. front: {
  40790. height: math.unit(7, "feet"),
  40791. name: "Front",
  40792. image: {
  40793. source: "./media/characters/maru/front.svg",
  40794. extra: 1595/1570,
  40795. bottom: 0/1595
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Normal",
  40802. height: math.unit(7, "feet"),
  40803. default: true
  40804. },
  40805. {
  40806. name: "Macro",
  40807. height: math.unit(700, "feet")
  40808. },
  40809. {
  40810. name: "Mega Macro",
  40811. height: math.unit(25, "miles")
  40812. },
  40813. ]
  40814. ))
  40815. characterMakers.push(() => makeCharacter(
  40816. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40817. {
  40818. front: {
  40819. height: math.unit(6, "feet"),
  40820. weight: math.unit(170, "lb"),
  40821. name: "Front",
  40822. image: {
  40823. source: "./media/characters/xenon/front.svg",
  40824. extra: 1376/1305,
  40825. bottom: 56/1432
  40826. }
  40827. },
  40828. back: {
  40829. height: math.unit(6, "feet"),
  40830. weight: math.unit(170, "lb"),
  40831. name: "Back",
  40832. image: {
  40833. source: "./media/characters/xenon/back.svg",
  40834. extra: 1328/1259,
  40835. bottom: 95/1423
  40836. }
  40837. },
  40838. maw: {
  40839. height: math.unit(0.52, "feet"),
  40840. name: "Maw",
  40841. image: {
  40842. source: "./media/characters/xenon/maw.svg"
  40843. }
  40844. },
  40845. hand: {
  40846. height: math.unit(0.82, "feet"),
  40847. name: "Hand",
  40848. image: {
  40849. source: "./media/characters/xenon/hand.svg"
  40850. }
  40851. },
  40852. foot: {
  40853. height: math.unit(1.13, "feet"),
  40854. name: "Foot",
  40855. image: {
  40856. source: "./media/characters/xenon/foot.svg"
  40857. }
  40858. },
  40859. },
  40860. [
  40861. {
  40862. name: "Micro",
  40863. height: math.unit(0.8, "inches")
  40864. },
  40865. {
  40866. name: "Normal",
  40867. height: math.unit(6, "feet")
  40868. },
  40869. {
  40870. name: "Macro",
  40871. height: math.unit(50, "feet"),
  40872. default: true
  40873. },
  40874. {
  40875. name: "Macro+",
  40876. height: math.unit(250, "feet")
  40877. },
  40878. {
  40879. name: "Megamacro",
  40880. height: math.unit(1500, "feet")
  40881. },
  40882. ]
  40883. ))
  40884. characterMakers.push(() => makeCharacter(
  40885. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40886. {
  40887. front: {
  40888. height: math.unit(7 + 5/12, "feet"),
  40889. name: "Front",
  40890. image: {
  40891. source: "./media/characters/zane/front.svg",
  40892. extra: 1260/1203,
  40893. bottom: 94/1354
  40894. }
  40895. },
  40896. back: {
  40897. height: math.unit(5.05, "feet"),
  40898. name: "Back",
  40899. image: {
  40900. source: "./media/characters/zane/back.svg",
  40901. extra: 893/829,
  40902. bottom: 30/923
  40903. }
  40904. },
  40905. werewolf: {
  40906. height: math.unit(11, "feet"),
  40907. name: "Werewolf",
  40908. image: {
  40909. source: "./media/characters/zane/werewolf.svg",
  40910. extra: 1383/1323,
  40911. bottom: 89/1472
  40912. }
  40913. },
  40914. foot: {
  40915. height: math.unit(1.46, "feet"),
  40916. name: "Foot",
  40917. image: {
  40918. source: "./media/characters/zane/foot.svg"
  40919. }
  40920. },
  40921. footFront: {
  40922. height: math.unit(0.784, "feet"),
  40923. name: "Foot (Front)",
  40924. image: {
  40925. source: "./media/characters/zane/foot-front.svg"
  40926. }
  40927. },
  40928. dick: {
  40929. height: math.unit(1.95, "feet"),
  40930. name: "Dick",
  40931. image: {
  40932. source: "./media/characters/zane/dick.svg"
  40933. }
  40934. },
  40935. dickWerewolf: {
  40936. height: math.unit(3.77, "feet"),
  40937. name: "Dick (Werewolf)",
  40938. image: {
  40939. source: "./media/characters/zane/dick.svg"
  40940. }
  40941. },
  40942. },
  40943. [
  40944. {
  40945. name: "Normal",
  40946. height: math.unit(7 + 5/12, "feet"),
  40947. default: true
  40948. },
  40949. ]
  40950. ))
  40951. characterMakers.push(() => makeCharacter(
  40952. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40953. {
  40954. front: {
  40955. height: math.unit(6 + 2/12, "feet"),
  40956. weight: math.unit(284, "lb"),
  40957. name: "Front",
  40958. image: {
  40959. source: "./media/characters/benni-desparque/front.svg",
  40960. extra: 1353/1126,
  40961. bottom: 69/1422
  40962. }
  40963. },
  40964. },
  40965. [
  40966. {
  40967. name: "Civilian",
  40968. height: math.unit(6 + 2/12, "feet")
  40969. },
  40970. {
  40971. name: "Normal",
  40972. height: math.unit(98, "feet"),
  40973. default: true
  40974. },
  40975. {
  40976. name: "Kaiju Fighter",
  40977. height: math.unit(268, "feet")
  40978. },
  40979. ]
  40980. ))
  40981. characterMakers.push(() => makeCharacter(
  40982. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40983. {
  40984. front: {
  40985. height: math.unit(5, "feet"),
  40986. weight: math.unit(105, "lb"),
  40987. name: "Front",
  40988. image: {
  40989. source: "./media/characters/maxine/front.svg",
  40990. extra: 1386/1250,
  40991. bottom: 71/1457
  40992. }
  40993. },
  40994. },
  40995. [
  40996. {
  40997. name: "Normal",
  40998. height: math.unit(5, "feet"),
  40999. default: true
  41000. },
  41001. ]
  41002. ))
  41003. characterMakers.push(() => makeCharacter(
  41004. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41005. {
  41006. front: {
  41007. height: math.unit(11 + 7/12, "feet"),
  41008. weight: math.unit(9576, "lb"),
  41009. name: "Front",
  41010. image: {
  41011. source: "./media/characters/scaly/front.svg",
  41012. extra: 888/867,
  41013. bottom: 36/924
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Normal",
  41020. height: math.unit(11 + 7/12, "feet"),
  41021. default: true
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41027. {
  41028. front: {
  41029. height: math.unit(6 + 3/12, "feet"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/saelria/front.svg",
  41033. extra: 1243/1138,
  41034. bottom: 46/1289
  41035. }
  41036. },
  41037. },
  41038. [
  41039. {
  41040. name: "Micro",
  41041. height: math.unit(6, "inches"),
  41042. },
  41043. {
  41044. name: "Normal",
  41045. height: math.unit(6 + 3/12, "feet"),
  41046. default: true
  41047. },
  41048. {
  41049. name: "Macro",
  41050. height: math.unit(25, "feet")
  41051. },
  41052. ]
  41053. ))
  41054. characterMakers.push(() => makeCharacter(
  41055. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41056. {
  41057. front: {
  41058. height: math.unit(80, "meters"),
  41059. weight: math.unit(7000, "tonnes"),
  41060. name: "Front",
  41061. image: {
  41062. source: "./media/characters/tef/front.svg",
  41063. extra: 2036/1991,
  41064. bottom: 54/2090
  41065. }
  41066. },
  41067. back: {
  41068. height: math.unit(80, "meters"),
  41069. weight: math.unit(7000, "tonnes"),
  41070. name: "Back",
  41071. image: {
  41072. source: "./media/characters/tef/back.svg",
  41073. extra: 2036/1991,
  41074. bottom: 54/2090
  41075. }
  41076. },
  41077. },
  41078. [
  41079. {
  41080. name: "Macro",
  41081. height: math.unit(80, "meters"),
  41082. default: true
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41088. {
  41089. front: {
  41090. height: math.unit(13, "feet"),
  41091. weight: math.unit(6, "tons"),
  41092. name: "Front",
  41093. image: {
  41094. source: "./media/characters/rover/front.svg",
  41095. extra: 1233/1156,
  41096. bottom: 50/1283
  41097. }
  41098. },
  41099. back: {
  41100. height: math.unit(13, "feet"),
  41101. weight: math.unit(6, "tons"),
  41102. name: "Back",
  41103. image: {
  41104. source: "./media/characters/rover/back.svg",
  41105. extra: 1327/1258,
  41106. bottom: 39/1366
  41107. }
  41108. },
  41109. },
  41110. [
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(13, "feet"),
  41114. default: true
  41115. },
  41116. {
  41117. name: "Macro",
  41118. height: math.unit(1300, "feet")
  41119. },
  41120. {
  41121. name: "Megamacro",
  41122. height: math.unit(1300, "miles")
  41123. },
  41124. {
  41125. name: "Gigamacro",
  41126. height: math.unit(1300000, "miles")
  41127. },
  41128. ]
  41129. ))
  41130. characterMakers.push(() => makeCharacter(
  41131. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41132. {
  41133. front: {
  41134. height: math.unit(6, "feet"),
  41135. weight: math.unit(150, "lb"),
  41136. name: "Front",
  41137. image: {
  41138. source: "./media/characters/ariz/front.svg",
  41139. extra: 1401/1346,
  41140. bottom: 5/1406
  41141. }
  41142. },
  41143. },
  41144. [
  41145. {
  41146. name: "Normal",
  41147. height: math.unit(10, "feet"),
  41148. default: true
  41149. },
  41150. ]
  41151. ))
  41152. characterMakers.push(() => makeCharacter(
  41153. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41154. {
  41155. front: {
  41156. height: math.unit(6, "feet"),
  41157. weight: math.unit(140, "lb"),
  41158. name: "Front",
  41159. image: {
  41160. source: "./media/characters/sigrun/front.svg",
  41161. extra: 1418/1359,
  41162. bottom: 27/1445
  41163. }
  41164. },
  41165. },
  41166. [
  41167. {
  41168. name: "Macro",
  41169. height: math.unit(35, "feet"),
  41170. default: true
  41171. },
  41172. ]
  41173. ))
  41174. characterMakers.push(() => makeCharacter(
  41175. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41176. {
  41177. front: {
  41178. height: math.unit(6, "feet"),
  41179. weight: math.unit(150, "lb"),
  41180. name: "Front",
  41181. image: {
  41182. source: "./media/characters/numin/front.svg",
  41183. extra: 1433/1388,
  41184. bottom: 12/1445
  41185. }
  41186. },
  41187. },
  41188. [
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(21.5, "km"),
  41192. default: true
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41198. {
  41199. front: {
  41200. height: math.unit(6, "feet"),
  41201. weight: math.unit(463, "lb"),
  41202. name: "Front",
  41203. image: {
  41204. source: "./media/characters/melwa/front.svg",
  41205. extra: 1307/1248,
  41206. bottom: 93/1400
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "Macro",
  41213. height: math.unit(50, "meters"),
  41214. default: true
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41220. {
  41221. front: {
  41222. height: math.unit(325, "feet"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/zorkaiju/front.svg",
  41226. extra: 1955/1814,
  41227. bottom: 40/1995
  41228. }
  41229. },
  41230. frontExtended: {
  41231. height: math.unit(325, "feet"),
  41232. name: "Front (Extended)",
  41233. image: {
  41234. source: "./media/characters/zorkaiju/front-extended.svg",
  41235. extra: 1955/1814,
  41236. bottom: 40/1995
  41237. }
  41238. },
  41239. side: {
  41240. height: math.unit(325, "feet"),
  41241. name: "Side",
  41242. image: {
  41243. source: "./media/characters/zorkaiju/side.svg",
  41244. extra: 1495/1396,
  41245. bottom: 17/1512
  41246. }
  41247. },
  41248. sideExtended: {
  41249. height: math.unit(325, "feet"),
  41250. name: "Side (Extended)",
  41251. image: {
  41252. source: "./media/characters/zorkaiju/side-extended.svg",
  41253. extra: 1495/1396,
  41254. bottom: 17/1512
  41255. }
  41256. },
  41257. back: {
  41258. height: math.unit(325, "feet"),
  41259. name: "Back",
  41260. image: {
  41261. source: "./media/characters/zorkaiju/back.svg",
  41262. extra: 1959/1821,
  41263. bottom: 31/1990
  41264. }
  41265. },
  41266. backExtended: {
  41267. height: math.unit(325, "feet"),
  41268. name: "Back (Extended)",
  41269. image: {
  41270. source: "./media/characters/zorkaiju/back-extended.svg",
  41271. extra: 1959/1821,
  41272. bottom: 31/1990
  41273. }
  41274. },
  41275. hand: {
  41276. height: math.unit(58.4, "feet"),
  41277. name: "Hand",
  41278. image: {
  41279. source: "./media/characters/zorkaiju/hand.svg"
  41280. }
  41281. },
  41282. handExtended: {
  41283. height: math.unit(61.4, "feet"),
  41284. name: "Hand (Extended)",
  41285. image: {
  41286. source: "./media/characters/zorkaiju/hand-extended.svg"
  41287. }
  41288. },
  41289. foot: {
  41290. height: math.unit(95, "feet"),
  41291. name: "Foot",
  41292. image: {
  41293. source: "./media/characters/zorkaiju/foot.svg"
  41294. }
  41295. },
  41296. leftArm: {
  41297. height: math.unit(59, "feet"),
  41298. name: "Left Arm",
  41299. image: {
  41300. source: "./media/characters/zorkaiju/left-arm.svg"
  41301. }
  41302. },
  41303. rightArm: {
  41304. height: math.unit(59, "feet"),
  41305. name: "Right Arm",
  41306. image: {
  41307. source: "./media/characters/zorkaiju/right-arm.svg"
  41308. }
  41309. },
  41310. tail: {
  41311. height: math.unit(104, "feet"),
  41312. name: "Tail",
  41313. image: {
  41314. source: "./media/characters/zorkaiju/tail.svg"
  41315. }
  41316. },
  41317. tailExtended: {
  41318. height: math.unit(104, "feet"),
  41319. name: "Tail (Extended)",
  41320. image: {
  41321. source: "./media/characters/zorkaiju/tail-extended.svg"
  41322. }
  41323. },
  41324. tailBottom: {
  41325. height: math.unit(104, "feet"),
  41326. name: "Tail Bottom",
  41327. image: {
  41328. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41329. }
  41330. },
  41331. crystal: {
  41332. height: math.unit(27.54, "feet"),
  41333. name: "Crystal",
  41334. image: {
  41335. source: "./media/characters/zorkaiju/crystal.svg"
  41336. }
  41337. },
  41338. },
  41339. [
  41340. {
  41341. name: "Kaiju",
  41342. height: math.unit(325, "feet"),
  41343. default: true
  41344. },
  41345. ]
  41346. ))
  41347. characterMakers.push(() => makeCharacter(
  41348. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41349. {
  41350. front: {
  41351. height: math.unit(6 + 1/12, "feet"),
  41352. weight: math.unit(115, "lb"),
  41353. name: "Front",
  41354. image: {
  41355. source: "./media/characters/bailey-belfry/front.svg",
  41356. extra: 1240/1121,
  41357. bottom: 101/1341
  41358. }
  41359. },
  41360. },
  41361. [
  41362. {
  41363. name: "Normal",
  41364. height: math.unit(6 + 1/12, "feet"),
  41365. default: true
  41366. },
  41367. ]
  41368. ))
  41369. characterMakers.push(() => makeCharacter(
  41370. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41371. {
  41372. side: {
  41373. height: math.unit(4, "meters"),
  41374. weight: math.unit(250, "kg"),
  41375. name: "Side",
  41376. image: {
  41377. source: "./media/characters/blacky/side.svg",
  41378. extra: 1027/919,
  41379. bottom: 43/1070
  41380. }
  41381. },
  41382. maw: {
  41383. height: math.unit(1, "meters"),
  41384. name: "Maw",
  41385. image: {
  41386. source: "./media/characters/blacky/maw.svg"
  41387. }
  41388. },
  41389. paw: {
  41390. height: math.unit(1, "meters"),
  41391. name: "Paw",
  41392. image: {
  41393. source: "./media/characters/blacky/paw.svg"
  41394. }
  41395. },
  41396. },
  41397. [
  41398. {
  41399. name: "Normal",
  41400. height: math.unit(4, "meters"),
  41401. default: true
  41402. },
  41403. ]
  41404. ))
  41405. characterMakers.push(() => makeCharacter(
  41406. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41407. {
  41408. front: {
  41409. height: math.unit(170, "cm"),
  41410. weight: math.unit(66, "kg"),
  41411. name: "Front",
  41412. image: {
  41413. source: "./media/characters/thux-ei/front.svg",
  41414. extra: 1109/1011,
  41415. bottom: 8/1117
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Normal",
  41422. height: math.unit(170, "cm"),
  41423. default: true
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41429. {
  41430. front: {
  41431. height: math.unit(5, "feet"),
  41432. weight: math.unit(120, "lb"),
  41433. name: "Front",
  41434. image: {
  41435. source: "./media/characters/roxanne-voltaire/front.svg",
  41436. extra: 1901/1779,
  41437. bottom: 53/1954
  41438. }
  41439. },
  41440. },
  41441. [
  41442. {
  41443. name: "Normal",
  41444. height: math.unit(5, "feet"),
  41445. default: true
  41446. },
  41447. {
  41448. name: "Giant",
  41449. height: math.unit(50, "feet")
  41450. },
  41451. {
  41452. name: "Titan",
  41453. height: math.unit(500, "feet")
  41454. },
  41455. {
  41456. name: "Macro",
  41457. height: math.unit(5000, "feet")
  41458. },
  41459. {
  41460. name: "Megamacro",
  41461. height: math.unit(50000, "feet")
  41462. },
  41463. {
  41464. name: "Gigamacro",
  41465. height: math.unit(500000, "feet")
  41466. },
  41467. {
  41468. name: "Teramacro",
  41469. height: math.unit(5e6, "feet")
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41475. {
  41476. front: {
  41477. height: math.unit(6 + 2/12, "feet"),
  41478. name: "Front",
  41479. image: {
  41480. source: "./media/characters/squeaks/front.svg",
  41481. extra: 1823/1768,
  41482. bottom: 138/1961
  41483. }
  41484. },
  41485. },
  41486. [
  41487. {
  41488. name: "Micro",
  41489. height: math.unit(0.5, "inches")
  41490. },
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(6 + 2/12, "feet"),
  41494. default: true
  41495. },
  41496. {
  41497. name: "Macro",
  41498. height: math.unit(600, "feet")
  41499. },
  41500. ]
  41501. ))
  41502. characterMakers.push(() => makeCharacter(
  41503. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41504. {
  41505. front: {
  41506. height: math.unit(1.72, "meters"),
  41507. name: "Front",
  41508. image: {
  41509. source: "./media/characters/archinger/front.svg",
  41510. extra: 1861/1675,
  41511. bottom: 125/1986
  41512. }
  41513. },
  41514. back: {
  41515. height: math.unit(1.72, "meters"),
  41516. name: "Back",
  41517. image: {
  41518. source: "./media/characters/archinger/back.svg",
  41519. extra: 1844/1701,
  41520. bottom: 104/1948
  41521. }
  41522. },
  41523. cock: {
  41524. height: math.unit(0.59, "feet"),
  41525. name: "Cock",
  41526. image: {
  41527. source: "./media/characters/archinger/cock.svg"
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Normal",
  41534. height: math.unit(1.72, "meters"),
  41535. default: true
  41536. },
  41537. {
  41538. name: "Macro",
  41539. height: math.unit(84, "meters")
  41540. },
  41541. {
  41542. name: "Macro+",
  41543. height: math.unit(112, "meters")
  41544. },
  41545. {
  41546. name: "Macro++",
  41547. height: math.unit(960, "meters")
  41548. },
  41549. {
  41550. name: "Macro+++",
  41551. height: math.unit(4, "km")
  41552. },
  41553. {
  41554. name: "Macro++++",
  41555. height: math.unit(48, "km")
  41556. },
  41557. {
  41558. name: "Macro+++++",
  41559. height: math.unit(4500, "km")
  41560. },
  41561. ]
  41562. ))
  41563. characterMakers.push(() => makeCharacter(
  41564. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41565. {
  41566. front: {
  41567. height: math.unit(5 + 5/12, "feet"),
  41568. name: "Front",
  41569. image: {
  41570. source: "./media/characters/alsnapz/front.svg",
  41571. extra: 1157/1065,
  41572. bottom: 42/1199
  41573. }
  41574. },
  41575. },
  41576. [
  41577. {
  41578. name: "Normal",
  41579. height: math.unit(5 + 5/12, "feet"),
  41580. default: true
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41586. {
  41587. side: {
  41588. height: math.unit(3.2, "earths"),
  41589. name: "Side",
  41590. image: {
  41591. source: "./media/characters/mag/side.svg",
  41592. extra: 1331/1008,
  41593. bottom: 52/1383
  41594. }
  41595. },
  41596. wing: {
  41597. height: math.unit(1.94, "earths"),
  41598. name: "Wing",
  41599. image: {
  41600. source: "./media/characters/mag/wing.svg"
  41601. }
  41602. },
  41603. dick: {
  41604. height: math.unit(1.8, "earths"),
  41605. name: "Dick",
  41606. image: {
  41607. source: "./media/characters/mag/dick.svg"
  41608. }
  41609. },
  41610. ass: {
  41611. height: math.unit(1.33, "earths"),
  41612. name: "Ass",
  41613. image: {
  41614. source: "./media/characters/mag/ass.svg"
  41615. }
  41616. },
  41617. head: {
  41618. height: math.unit(1.1, "earths"),
  41619. name: "Head",
  41620. image: {
  41621. source: "./media/characters/mag/head.svg"
  41622. }
  41623. },
  41624. maw: {
  41625. height: math.unit(1.62, "earths"),
  41626. name: "Maw",
  41627. image: {
  41628. source: "./media/characters/mag/maw.svg"
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Small",
  41635. height: math.unit(162, "feet")
  41636. },
  41637. {
  41638. name: "Normal",
  41639. height: math.unit(3.2, "earths"),
  41640. default: true
  41641. },
  41642. ]
  41643. ))
  41644. characterMakers.push(() => makeCharacter(
  41645. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41646. {
  41647. front: {
  41648. height: math.unit(512, "feet"),
  41649. weight: math.unit(63509, "tonnes"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/vorrel-harroc/front.svg",
  41653. extra: 1075/1063,
  41654. bottom: 62/1137
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Normal",
  41661. height: math.unit(10, "feet")
  41662. },
  41663. {
  41664. name: "Macro",
  41665. height: math.unit(512, "feet"),
  41666. default: true
  41667. },
  41668. {
  41669. name: "Megamacro",
  41670. height: math.unit(256, "miles")
  41671. },
  41672. {
  41673. name: "Gigamacro",
  41674. height: math.unit(4096, "miles")
  41675. },
  41676. ]
  41677. ))
  41678. characterMakers.push(() => makeCharacter(
  41679. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41680. {
  41681. side: {
  41682. height: math.unit(50, "feet"),
  41683. name: "Side",
  41684. image: {
  41685. source: "./media/characters/froimar/side.svg",
  41686. extra: 855/638,
  41687. bottom: 99/954
  41688. }
  41689. },
  41690. },
  41691. [
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(50, "feet"),
  41695. default: true
  41696. },
  41697. ]
  41698. ))
  41699. characterMakers.push(() => makeCharacter(
  41700. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41701. {
  41702. front: {
  41703. height: math.unit(210, "miles"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/timothy/front.svg",
  41707. extra: 1007/943,
  41708. bottom: 62/1069
  41709. }
  41710. },
  41711. frontSkirt: {
  41712. height: math.unit(210, "miles"),
  41713. name: "Front (Skirt)",
  41714. image: {
  41715. source: "./media/characters/timothy/front-skirt.svg",
  41716. extra: 1007/943,
  41717. bottom: 62/1069
  41718. }
  41719. },
  41720. frontCoat: {
  41721. height: math.unit(210, "miles"),
  41722. name: "Front (Coat)",
  41723. image: {
  41724. source: "./media/characters/timothy/front-coat.svg",
  41725. extra: 1007/943,
  41726. bottom: 62/1069
  41727. }
  41728. },
  41729. },
  41730. [
  41731. {
  41732. name: "Macro",
  41733. height: math.unit(210, "miles"),
  41734. default: true
  41735. },
  41736. {
  41737. name: "Megamacro",
  41738. height: math.unit(210000, "miles")
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41744. {
  41745. front: {
  41746. height: math.unit(188, "feet"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/pyotr/front.svg",
  41750. extra: 1912/1826,
  41751. bottom: 18/1930
  41752. }
  41753. },
  41754. },
  41755. [
  41756. {
  41757. name: "Macro",
  41758. height: math.unit(188, "feet"),
  41759. default: true
  41760. },
  41761. {
  41762. name: "Megamacro",
  41763. height: math.unit(8, "miles")
  41764. },
  41765. ]
  41766. ))
  41767. characterMakers.push(() => makeCharacter(
  41768. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41769. {
  41770. side: {
  41771. height: math.unit(10, "feet"),
  41772. weight: math.unit(4500, "lb"),
  41773. name: "Side",
  41774. image: {
  41775. source: "./media/characters/ackart/side.svg",
  41776. extra: 1776/1668,
  41777. bottom: 116/1892
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Normal",
  41784. height: math.unit(10, "feet"),
  41785. default: true
  41786. },
  41787. ]
  41788. ))
  41789. characterMakers.push(() => makeCharacter(
  41790. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41791. {
  41792. side: {
  41793. height: math.unit(21, "feet"),
  41794. name: "Side",
  41795. image: {
  41796. source: "./media/characters/nolow/side.svg",
  41797. extra: 1484/1434,
  41798. bottom: 85/1569
  41799. }
  41800. },
  41801. sideErect: {
  41802. height: math.unit(21, "feet"),
  41803. name: "Side-erect",
  41804. image: {
  41805. source: "./media/characters/nolow/side-erect.svg",
  41806. extra: 1484/1434,
  41807. bottom: 85/1569
  41808. }
  41809. },
  41810. },
  41811. [
  41812. {
  41813. name: "Regular",
  41814. height: math.unit(12, "feet")
  41815. },
  41816. {
  41817. name: "Big Chee",
  41818. height: math.unit(21, "feet"),
  41819. default: true
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41825. {
  41826. front: {
  41827. height: math.unit(7, "feet"),
  41828. weight: math.unit(250, "lb"),
  41829. name: "Front",
  41830. image: {
  41831. source: "./media/characters/nines/front.svg",
  41832. extra: 1741/1607,
  41833. bottom: 41/1782
  41834. }
  41835. },
  41836. side: {
  41837. height: math.unit(7, "feet"),
  41838. weight: math.unit(250, "lb"),
  41839. name: "Side",
  41840. image: {
  41841. source: "./media/characters/nines/side.svg",
  41842. extra: 1854/1735,
  41843. bottom: 93/1947
  41844. }
  41845. },
  41846. back: {
  41847. height: math.unit(7, "feet"),
  41848. weight: math.unit(250, "lb"),
  41849. name: "Back",
  41850. image: {
  41851. source: "./media/characters/nines/back.svg",
  41852. extra: 1748/1615,
  41853. bottom: 20/1768
  41854. }
  41855. },
  41856. },
  41857. [
  41858. {
  41859. name: "Megamacro",
  41860. height: math.unit(99, "km"),
  41861. default: true
  41862. },
  41863. ]
  41864. ))
  41865. characterMakers.push(() => makeCharacter(
  41866. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41867. {
  41868. front: {
  41869. height: math.unit(5 + 10/12, "feet"),
  41870. weight: math.unit(210, "lb"),
  41871. name: "Front",
  41872. image: {
  41873. source: "./media/characters/zenith/front.svg",
  41874. extra: 1531/1452,
  41875. bottom: 198/1729
  41876. }
  41877. },
  41878. back: {
  41879. height: math.unit(5 + 10/12, "feet"),
  41880. weight: math.unit(210, "lb"),
  41881. name: "Back",
  41882. image: {
  41883. source: "./media/characters/zenith/back.svg",
  41884. extra: 1571/1487,
  41885. bottom: 75/1646
  41886. }
  41887. },
  41888. },
  41889. [
  41890. {
  41891. name: "Normal",
  41892. height: math.unit(5 + 10/12, "feet"),
  41893. default: true
  41894. }
  41895. ]
  41896. ))
  41897. characterMakers.push(() => makeCharacter(
  41898. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41899. {
  41900. front: {
  41901. height: math.unit(4, "feet"),
  41902. weight: math.unit(60, "lb"),
  41903. name: "Front",
  41904. image: {
  41905. source: "./media/characters/jasper/front.svg",
  41906. extra: 1450/1379,
  41907. bottom: 19/1469
  41908. }
  41909. },
  41910. },
  41911. [
  41912. {
  41913. name: "Normal",
  41914. height: math.unit(4, "feet"),
  41915. default: true
  41916. },
  41917. ]
  41918. ))
  41919. characterMakers.push(() => makeCharacter(
  41920. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41921. {
  41922. front: {
  41923. height: math.unit(6 + 5/12, "feet"),
  41924. weight: math.unit(290, "lb"),
  41925. name: "Front",
  41926. image: {
  41927. source: "./media/characters/tiberius-thyben/front.svg",
  41928. extra: 757/739,
  41929. bottom: 39/796
  41930. }
  41931. },
  41932. },
  41933. [
  41934. {
  41935. name: "Micro",
  41936. height: math.unit(1.5, "inches")
  41937. },
  41938. {
  41939. name: "Normal",
  41940. height: math.unit(6 + 5/12, "feet"),
  41941. default: true
  41942. },
  41943. {
  41944. name: "Macro",
  41945. height: math.unit(300, "feet")
  41946. },
  41947. ]
  41948. ))
  41949. characterMakers.push(() => makeCharacter(
  41950. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41951. {
  41952. front: {
  41953. height: math.unit(5 + 6/12, "feet"),
  41954. weight: math.unit(60, "kg"),
  41955. name: "Front",
  41956. image: {
  41957. source: "./media/characters/sabre/front.svg",
  41958. extra: 738/671,
  41959. bottom: 27/765
  41960. }
  41961. },
  41962. },
  41963. [
  41964. {
  41965. name: "Teeny",
  41966. height: math.unit(2, "inches")
  41967. },
  41968. {
  41969. name: "Smol",
  41970. height: math.unit(8, "inches")
  41971. },
  41972. {
  41973. name: "Normal",
  41974. height: math.unit(5 + 6/12, "feet"),
  41975. default: true
  41976. },
  41977. {
  41978. name: "Mini-Macro",
  41979. height: math.unit(15, "feet")
  41980. },
  41981. {
  41982. name: "Macro",
  41983. height: math.unit(50, "feet")
  41984. },
  41985. ]
  41986. ))
  41987. characterMakers.push(() => makeCharacter(
  41988. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41989. {
  41990. front: {
  41991. height: math.unit(6 + 4/12, "feet"),
  41992. weight: math.unit(170, "lb"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/charlie/front.svg",
  41996. extra: 1348/1228,
  41997. bottom: 15/1363
  41998. }
  41999. },
  42000. },
  42001. [
  42002. {
  42003. name: "Macro",
  42004. height: math.unit(1700, "meters"),
  42005. default: true
  42006. },
  42007. {
  42008. name: "MegaMacro",
  42009. height: math.unit(20400, "meters")
  42010. },
  42011. ]
  42012. ))
  42013. characterMakers.push(() => makeCharacter(
  42014. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42015. {
  42016. front: {
  42017. height: math.unit(6 + 3/12, "feet"),
  42018. weight: math.unit(185, "lb"),
  42019. name: "Front",
  42020. image: {
  42021. source: "./media/characters/susan-grant/front.svg",
  42022. extra: 1351/1327,
  42023. bottom: 26/1377
  42024. }
  42025. },
  42026. },
  42027. [
  42028. {
  42029. name: "Normal",
  42030. height: math.unit(6 + 3/12, "feet"),
  42031. default: true
  42032. },
  42033. {
  42034. name: "Macro",
  42035. height: math.unit(225, "feet")
  42036. },
  42037. {
  42038. name: "Macro+",
  42039. height: math.unit(900, "feet")
  42040. },
  42041. {
  42042. name: "MegaMacro",
  42043. height: math.unit(14400, "feet")
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42049. {
  42050. front: {
  42051. height: math.unit(5 + 4/12, "feet"),
  42052. weight: math.unit(110, "lb"),
  42053. name: "Front",
  42054. image: {
  42055. source: "./media/characters/axel-isanov/front.svg",
  42056. extra: 1096/1065,
  42057. bottom: 13/1109
  42058. }
  42059. },
  42060. },
  42061. [
  42062. {
  42063. name: "Normal",
  42064. height: math.unit(5 + 4/12, "feet"),
  42065. default: true
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42071. {
  42072. front: {
  42073. height: math.unit(9, "feet"),
  42074. weight: math.unit(467, "lb"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/necahual/front.svg",
  42078. extra: 920/873,
  42079. bottom: 26/946
  42080. }
  42081. },
  42082. back: {
  42083. height: math.unit(9, "feet"),
  42084. weight: math.unit(467, "lb"),
  42085. name: "Back",
  42086. image: {
  42087. source: "./media/characters/necahual/back.svg",
  42088. extra: 930/884,
  42089. bottom: 16/946
  42090. }
  42091. },
  42092. frontUnderwear: {
  42093. height: math.unit(9, "feet"),
  42094. weight: math.unit(467, "lb"),
  42095. name: "Front (Underwear)",
  42096. image: {
  42097. source: "./media/characters/necahual/front-underwear.svg",
  42098. extra: 920/873,
  42099. bottom: 26/946
  42100. }
  42101. },
  42102. frontDressed: {
  42103. height: math.unit(9, "feet"),
  42104. weight: math.unit(467, "lb"),
  42105. name: "Front (Dressed)",
  42106. image: {
  42107. source: "./media/characters/necahual/front-dressed.svg",
  42108. extra: 920/873,
  42109. bottom: 26/946
  42110. }
  42111. },
  42112. },
  42113. [
  42114. {
  42115. name: "Comprsesed",
  42116. height: math.unit(9, "feet")
  42117. },
  42118. {
  42119. name: "Natural",
  42120. height: math.unit(15, "feet"),
  42121. default: true
  42122. },
  42123. {
  42124. name: "Boosted",
  42125. height: math.unit(50, "feet")
  42126. },
  42127. {
  42128. name: "Boosted+",
  42129. height: math.unit(150, "feet")
  42130. },
  42131. {
  42132. name: "Max",
  42133. height: math.unit(500, "feet")
  42134. },
  42135. ]
  42136. ))
  42137. characterMakers.push(() => makeCharacter(
  42138. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42139. {
  42140. front: {
  42141. height: math.unit(22 + 1/12, "feet"),
  42142. weight: math.unit(3200, "lb"),
  42143. name: "Front",
  42144. image: {
  42145. source: "./media/characters/theo-acacia/front.svg",
  42146. extra: 1796/1741,
  42147. bottom: 83/1879
  42148. }
  42149. },
  42150. frontUnderwear: {
  42151. height: math.unit(22 + 1/12, "feet"),
  42152. weight: math.unit(3200, "lb"),
  42153. name: "Front (Underwear)",
  42154. image: {
  42155. source: "./media/characters/theo-acacia/front-underwear.svg",
  42156. extra: 1796/1741,
  42157. bottom: 83/1879
  42158. }
  42159. },
  42160. frontNude: {
  42161. height: math.unit(22 + 1/12, "feet"),
  42162. weight: math.unit(3200, "lb"),
  42163. name: "Front (Nude)",
  42164. image: {
  42165. source: "./media/characters/theo-acacia/front-nude.svg",
  42166. extra: 1796/1741,
  42167. bottom: 83/1879
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Normal",
  42174. height: math.unit(22 + 1/12, "feet"),
  42175. default: true
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42181. {
  42182. front: {
  42183. height: math.unit(20, "feet"),
  42184. name: "Front",
  42185. image: {
  42186. source: "./media/characters/astra/front.svg",
  42187. extra: 1850/1714,
  42188. bottom: 106/1956
  42189. }
  42190. },
  42191. frontUndressed: {
  42192. height: math.unit(20, "feet"),
  42193. name: "Front (Undressed)",
  42194. image: {
  42195. source: "./media/characters/astra/front-undressed.svg",
  42196. extra: 1926/1749,
  42197. bottom: 0/1926
  42198. }
  42199. },
  42200. hand: {
  42201. height: math.unit(1.53, "feet"),
  42202. name: "Hand",
  42203. image: {
  42204. source: "./media/characters/astra/hand.svg"
  42205. }
  42206. },
  42207. paw: {
  42208. height: math.unit(1.53, "feet"),
  42209. name: "Paw",
  42210. image: {
  42211. source: "./media/characters/astra/paw.svg"
  42212. }
  42213. },
  42214. },
  42215. [
  42216. {
  42217. name: "Smallest",
  42218. height: math.unit(20, "feet")
  42219. },
  42220. {
  42221. name: "Normal",
  42222. height: math.unit(1e9, "miles"),
  42223. default: true
  42224. },
  42225. {
  42226. name: "Larger",
  42227. height: math.unit(5, "multiverses")
  42228. },
  42229. {
  42230. name: "Largest",
  42231. height: math.unit(1e9, "multiverses")
  42232. },
  42233. ]
  42234. ))
  42235. characterMakers.push(() => makeCharacter(
  42236. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42237. {
  42238. front: {
  42239. height: math.unit(8, "feet"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/breanna/front.svg",
  42243. extra: 1912/1632,
  42244. bottom: 33/1945
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Smallest",
  42251. height: math.unit(8, "feet")
  42252. },
  42253. {
  42254. name: "Normal",
  42255. height: math.unit(1, "mile"),
  42256. default: true
  42257. },
  42258. {
  42259. name: "Maximum",
  42260. height: math.unit(1500000000000, "lightyears")
  42261. },
  42262. ]
  42263. ))
  42264. characterMakers.push(() => makeCharacter(
  42265. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42266. {
  42267. front: {
  42268. height: math.unit(5 + 11/12, "feet"),
  42269. weight: math.unit(155, "lb"),
  42270. name: "Front",
  42271. image: {
  42272. source: "./media/characters/cai/front.svg",
  42273. extra: 1823/1702,
  42274. bottom: 32/1855
  42275. }
  42276. },
  42277. back: {
  42278. height: math.unit(5 + 11/12, "feet"),
  42279. weight: math.unit(155, "lb"),
  42280. name: "Back",
  42281. image: {
  42282. source: "./media/characters/cai/back.svg",
  42283. extra: 1809/1708,
  42284. bottom: 31/1840
  42285. }
  42286. },
  42287. },
  42288. [
  42289. {
  42290. name: "Normal",
  42291. height: math.unit(5 + 11/12, "feet"),
  42292. default: true
  42293. },
  42294. {
  42295. name: "Big",
  42296. height: math.unit(15, "feet")
  42297. },
  42298. {
  42299. name: "Macro",
  42300. height: math.unit(200, "feet")
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42306. {
  42307. front: {
  42308. height: math.unit(5 + 6/12, "feet"),
  42309. weight: math.unit(160, "lb"),
  42310. name: "Front",
  42311. image: {
  42312. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42313. extra: 1227/1174,
  42314. bottom: 37/1264
  42315. }
  42316. },
  42317. },
  42318. [
  42319. {
  42320. name: "Macro",
  42321. height: math.unit(444, "meters"),
  42322. default: true
  42323. },
  42324. ]
  42325. ))
  42326. characterMakers.push(() => makeCharacter(
  42327. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42328. {
  42329. front: {
  42330. height: math.unit(18 + 7/12, "feet"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/rex/front.svg",
  42334. extra: 1941/1807,
  42335. bottom: 66/2007
  42336. }
  42337. },
  42338. back: {
  42339. height: math.unit(18 + 7/12, "feet"),
  42340. name: "Back",
  42341. image: {
  42342. source: "./media/characters/rex/back.svg",
  42343. extra: 1937/1822,
  42344. bottom: 42/1979
  42345. }
  42346. },
  42347. boot: {
  42348. height: math.unit(3.45, "feet"),
  42349. name: "Boot",
  42350. image: {
  42351. source: "./media/characters/rex/boot.svg"
  42352. }
  42353. },
  42354. paw: {
  42355. height: math.unit(4.17, "feet"),
  42356. name: "Paw",
  42357. image: {
  42358. source: "./media/characters/rex/paw.svg"
  42359. }
  42360. },
  42361. head: {
  42362. height: math.unit(6.728, "feet"),
  42363. name: "Head",
  42364. image: {
  42365. source: "./media/characters/rex/head.svg"
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Nano",
  42372. height: math.unit(18 + 7/12, "feet")
  42373. },
  42374. {
  42375. name: "Micro",
  42376. height: math.unit(1.5, "megameters")
  42377. },
  42378. {
  42379. name: "Normal",
  42380. height: math.unit(440, "megameters"),
  42381. default: true
  42382. },
  42383. {
  42384. name: "Macro",
  42385. height: math.unit(2.5, "gigameters")
  42386. },
  42387. {
  42388. name: "Gigamacro",
  42389. height: math.unit(2, "galaxies")
  42390. },
  42391. ]
  42392. ))
  42393. characterMakers.push(() => makeCharacter(
  42394. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42395. {
  42396. side: {
  42397. height: math.unit(32, "feet"),
  42398. weight: math.unit(250000, "lb"),
  42399. name: "Side",
  42400. image: {
  42401. source: "./media/characters/silverwing/side.svg",
  42402. extra: 1100/1019,
  42403. bottom: 204/1304
  42404. }
  42405. },
  42406. },
  42407. [
  42408. {
  42409. name: "Normal",
  42410. height: math.unit(32, "feet"),
  42411. default: true
  42412. },
  42413. ]
  42414. ))
  42415. characterMakers.push(() => makeCharacter(
  42416. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42417. {
  42418. front: {
  42419. height: math.unit(6 + 6/12, "feet"),
  42420. weight: math.unit(350, "lb"),
  42421. name: "Front",
  42422. image: {
  42423. source: "./media/characters/tristan-hawthorne/front.svg",
  42424. extra: 1159/1124,
  42425. bottom: 37/1196
  42426. },
  42427. form: "labrador",
  42428. default: true
  42429. },
  42430. skunkFront: {
  42431. height: math.unit(4 + 6/12, "feet"),
  42432. weight: math.unit(120, "lb"),
  42433. name: "Front",
  42434. image: {
  42435. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42436. extra: 1609/1551,
  42437. bottom: 169/1778
  42438. },
  42439. form: "skunk",
  42440. default: true
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(6 + 6/12, "feet"),
  42447. form: "labrador",
  42448. default: true
  42449. },
  42450. {
  42451. name: "Normal",
  42452. height: math.unit(4 + 6/12, "feet"),
  42453. form: "skunk",
  42454. default: true
  42455. },
  42456. ],
  42457. {
  42458. "labrador": {
  42459. name: "Labrador",
  42460. default: true
  42461. },
  42462. "skunk": {
  42463. name: "Skunk"
  42464. }
  42465. }
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42469. {
  42470. front: {
  42471. height: math.unit(5 + 11/12, "feet"),
  42472. weight: math.unit(190, "lb"),
  42473. name: "Front",
  42474. image: {
  42475. source: "./media/characters/mizu/front.svg",
  42476. extra: 1988/1788,
  42477. bottom: 14/2002
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "Normal",
  42484. height: math.unit(5 + 11/12, "feet"),
  42485. default: true
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42491. {
  42492. front: {
  42493. height: math.unit(1.7, "feet"),
  42494. weight: math.unit(50, "lb"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/dechroma/front.svg",
  42498. extra: 1095/859,
  42499. bottom: 64/1159
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Normal",
  42506. height: math.unit(1.7, "feet"),
  42507. default: true
  42508. },
  42509. ]
  42510. ))
  42511. characterMakers.push(() => makeCharacter(
  42512. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42513. {
  42514. side: {
  42515. height: math.unit(30, "feet"),
  42516. name: "Side",
  42517. image: {
  42518. source: "./media/characters/veluren-thanazel/side.svg",
  42519. extra: 1611/633,
  42520. bottom: 118/1729
  42521. }
  42522. },
  42523. front: {
  42524. height: math.unit(30, "feet"),
  42525. name: "Front",
  42526. image: {
  42527. source: "./media/characters/veluren-thanazel/front.svg",
  42528. extra: 1486/636,
  42529. bottom: 238/1724
  42530. }
  42531. },
  42532. head: {
  42533. height: math.unit(21.4, "feet"),
  42534. name: "Head",
  42535. image: {
  42536. source: "./media/characters/veluren-thanazel/head.svg"
  42537. }
  42538. },
  42539. genitals: {
  42540. height: math.unit(19.4, "feet"),
  42541. name: "Genitals",
  42542. image: {
  42543. source: "./media/characters/veluren-thanazel/genitals.svg"
  42544. }
  42545. },
  42546. },
  42547. [
  42548. {
  42549. name: "Social",
  42550. height: math.unit(6, "feet")
  42551. },
  42552. {
  42553. name: "Play",
  42554. height: math.unit(12, "feet")
  42555. },
  42556. {
  42557. name: "True",
  42558. height: math.unit(30, "feet"),
  42559. default: true
  42560. },
  42561. ]
  42562. ))
  42563. characterMakers.push(() => makeCharacter(
  42564. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42565. {
  42566. front: {
  42567. height: math.unit(7 + 6/12, "feet"),
  42568. weight: math.unit(500, "kg"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/arcturas/front.svg",
  42572. extra: 1700/1500,
  42573. bottom: 145/1845
  42574. }
  42575. },
  42576. },
  42577. [
  42578. {
  42579. name: "Normal",
  42580. height: math.unit(7 + 6/12, "feet"),
  42581. default: true
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42587. {
  42588. side: {
  42589. height: math.unit(6, "feet"),
  42590. weight: math.unit(2, "tons"),
  42591. name: "Side",
  42592. image: {
  42593. source: "./media/characters/vitaen/side.svg",
  42594. extra: 1157/617,
  42595. bottom: 122/1279
  42596. }
  42597. },
  42598. },
  42599. [
  42600. {
  42601. name: "Normal",
  42602. height: math.unit(6, "feet"),
  42603. default: true
  42604. },
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42609. {
  42610. front: {
  42611. height: math.unit(19, "feet"),
  42612. name: "Front",
  42613. image: {
  42614. source: "./media/characters/fia-dreamweaver/front.svg",
  42615. extra: 1630/1504,
  42616. bottom: 25/1655
  42617. }
  42618. },
  42619. },
  42620. [
  42621. {
  42622. name: "Normal",
  42623. height: math.unit(19, "feet"),
  42624. default: true
  42625. },
  42626. ]
  42627. ))
  42628. characterMakers.push(() => makeCharacter(
  42629. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42630. {
  42631. front: {
  42632. height: math.unit(5 + 4/12, "feet"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/artan/front.svg",
  42636. extra: 1618/1535,
  42637. bottom: 46/1664
  42638. }
  42639. },
  42640. back: {
  42641. height: math.unit(5 + 4/12, "feet"),
  42642. name: "Back",
  42643. image: {
  42644. source: "./media/characters/artan/back.svg",
  42645. extra: 1618/1543,
  42646. bottom: 31/1649
  42647. }
  42648. },
  42649. },
  42650. [
  42651. {
  42652. name: "Normal",
  42653. height: math.unit(5 + 4/12, "feet"),
  42654. default: true
  42655. },
  42656. ]
  42657. ))
  42658. characterMakers.push(() => makeCharacter(
  42659. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42660. {
  42661. side: {
  42662. height: math.unit(182, "cm"),
  42663. weight: math.unit(1000, "lb"),
  42664. name: "Side",
  42665. image: {
  42666. source: "./media/characters/silver-dragon/side.svg",
  42667. extra: 710/287,
  42668. bottom: 88/798
  42669. }
  42670. },
  42671. },
  42672. [
  42673. {
  42674. name: "Normal",
  42675. height: math.unit(182, "cm"),
  42676. default: true
  42677. },
  42678. ]
  42679. ))
  42680. characterMakers.push(() => makeCharacter(
  42681. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42682. {
  42683. side: {
  42684. height: math.unit(6 + 6/12, "feet"),
  42685. weight: math.unit(1.5, "tons"),
  42686. name: "Side",
  42687. image: {
  42688. source: "./media/characters/zephyr/side.svg",
  42689. extra: 1433/586,
  42690. bottom: 109/1542
  42691. }
  42692. },
  42693. },
  42694. [
  42695. {
  42696. name: "Normal",
  42697. height: math.unit(6 + 6/12, "feet"),
  42698. default: true
  42699. },
  42700. ]
  42701. ))
  42702. characterMakers.push(() => makeCharacter(
  42703. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42704. {
  42705. side: {
  42706. height: math.unit(1, "feet"),
  42707. name: "Side",
  42708. image: {
  42709. source: "./media/characters/vixye/side.svg",
  42710. extra: 632/541,
  42711. bottom: 0/632
  42712. }
  42713. },
  42714. },
  42715. [
  42716. {
  42717. name: "Normal",
  42718. height: math.unit(1, "feet"),
  42719. default: true
  42720. },
  42721. {
  42722. name: "True",
  42723. height: math.unit(1e15, "multiverses")
  42724. },
  42725. ]
  42726. ))
  42727. characterMakers.push(() => makeCharacter(
  42728. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42729. {
  42730. front: {
  42731. height: math.unit(8 + 2/12, "feet"),
  42732. weight: math.unit(650, "lb"),
  42733. name: "Front",
  42734. image: {
  42735. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42736. extra: 1174/1137,
  42737. bottom: 82/1256
  42738. }
  42739. },
  42740. back: {
  42741. height: math.unit(8 + 2/12, "feet"),
  42742. weight: math.unit(650, "lb"),
  42743. name: "Back",
  42744. image: {
  42745. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42746. extra: 1204/1157,
  42747. bottom: 46/1250
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Wildform",
  42754. height: math.unit(8 + 2/12, "feet"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(18, "feet"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/cyphin/front.svg",
  42767. extra: 970/886,
  42768. bottom: 42/1012
  42769. }
  42770. },
  42771. back: {
  42772. height: math.unit(18, "feet"),
  42773. name: "Back",
  42774. image: {
  42775. source: "./media/characters/cyphin/back.svg",
  42776. extra: 1009/894,
  42777. bottom: 24/1033
  42778. }
  42779. },
  42780. head: {
  42781. height: math.unit(5.05, "feet"),
  42782. name: "Head",
  42783. image: {
  42784. source: "./media/characters/cyphin/head.svg"
  42785. }
  42786. },
  42787. tailbud: {
  42788. height: math.unit(5, "feet"),
  42789. name: "Tailbud",
  42790. image: {
  42791. source: "./media/characters/cyphin/tailbud.svg"
  42792. }
  42793. },
  42794. },
  42795. [
  42796. ]
  42797. ))
  42798. characterMakers.push(() => makeCharacter(
  42799. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42800. {
  42801. side: {
  42802. height: math.unit(10, "feet"),
  42803. weight: math.unit(6, "tons"),
  42804. name: "Side",
  42805. image: {
  42806. source: "./media/characters/raijin/side.svg",
  42807. extra: 1529/613,
  42808. bottom: 337/1866
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(10, "feet"),
  42816. default: true
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42822. {
  42823. side: {
  42824. height: math.unit(9, "feet"),
  42825. name: "Side",
  42826. image: {
  42827. source: "./media/characters/nilghais/side.svg",
  42828. extra: 1047/744,
  42829. bottom: 91/1138
  42830. }
  42831. },
  42832. head: {
  42833. height: math.unit(3.14, "feet"),
  42834. name: "Head",
  42835. image: {
  42836. source: "./media/characters/nilghais/head.svg"
  42837. }
  42838. },
  42839. mouth: {
  42840. height: math.unit(4.6, "feet"),
  42841. name: "Mouth",
  42842. image: {
  42843. source: "./media/characters/nilghais/mouth.svg"
  42844. }
  42845. },
  42846. wings: {
  42847. height: math.unit(24, "feet"),
  42848. name: "Wings",
  42849. image: {
  42850. source: "./media/characters/nilghais/wings.svg"
  42851. }
  42852. },
  42853. ass: {
  42854. height: math.unit(6.12, "feet"),
  42855. name: "Ass",
  42856. image: {
  42857. source: "./media/characters/nilghais/ass.svg"
  42858. }
  42859. },
  42860. },
  42861. [
  42862. {
  42863. name: "Normal",
  42864. height: math.unit(9, "feet"),
  42865. default: true
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42871. {
  42872. regular: {
  42873. height: math.unit(16 + 2/12, "feet"),
  42874. weight: math.unit(2300, "lb"),
  42875. name: "Regular",
  42876. image: {
  42877. source: "./media/characters/zolgar/regular.svg",
  42878. extra: 1246/1004,
  42879. bottom: 124/1370
  42880. }
  42881. },
  42882. boxers: {
  42883. height: math.unit(16 + 2/12, "feet"),
  42884. weight: math.unit(2300, "lb"),
  42885. name: "Boxers",
  42886. image: {
  42887. source: "./media/characters/zolgar/boxers.svg",
  42888. extra: 1246/1004,
  42889. bottom: 124/1370
  42890. }
  42891. },
  42892. armored: {
  42893. height: math.unit(16 + 2/12, "feet"),
  42894. weight: math.unit(2300, "lb"),
  42895. name: "Armored",
  42896. image: {
  42897. source: "./media/characters/zolgar/armored.svg",
  42898. extra: 1246/1004,
  42899. bottom: 124/1370
  42900. }
  42901. },
  42902. goth: {
  42903. height: math.unit(16 + 2/12, "feet"),
  42904. weight: math.unit(2300, "lb"),
  42905. name: "Goth",
  42906. image: {
  42907. source: "./media/characters/zolgar/goth.svg",
  42908. extra: 1246/1004,
  42909. bottom: 124/1370
  42910. }
  42911. },
  42912. },
  42913. [
  42914. {
  42915. name: "Shrunken Down",
  42916. height: math.unit(9 + 2/12, "feet")
  42917. },
  42918. {
  42919. name: "Normal",
  42920. height: math.unit(16 + 2/12, "feet"),
  42921. default: true
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42927. {
  42928. front: {
  42929. height: math.unit(6, "feet"),
  42930. weight: math.unit(168, "lb"),
  42931. name: "Front",
  42932. image: {
  42933. source: "./media/characters/luca/front.svg",
  42934. extra: 841/667,
  42935. bottom: 102/943
  42936. }
  42937. },
  42938. },
  42939. [
  42940. {
  42941. name: "Normal",
  42942. height: math.unit(6, "feet"),
  42943. default: true
  42944. },
  42945. ]
  42946. ))
  42947. characterMakers.push(() => makeCharacter(
  42948. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42949. {
  42950. side: {
  42951. height: math.unit(7 + 3/12, "feet"),
  42952. weight: math.unit(312, "lb"),
  42953. name: "Side",
  42954. image: {
  42955. source: "./media/characters/zezo/side.svg",
  42956. extra: 1192/1067,
  42957. bottom: 63/1255
  42958. }
  42959. },
  42960. },
  42961. [
  42962. {
  42963. name: "Normal",
  42964. height: math.unit(7 + 3/12, "feet"),
  42965. default: true
  42966. },
  42967. ]
  42968. ))
  42969. characterMakers.push(() => makeCharacter(
  42970. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42971. {
  42972. front: {
  42973. height: math.unit(5 + 5/12, "feet"),
  42974. weight: math.unit(170, "lb"),
  42975. name: "Front",
  42976. image: {
  42977. source: "./media/characters/mayso/front.svg",
  42978. extra: 1215/1108,
  42979. bottom: 16/1231
  42980. }
  42981. },
  42982. },
  42983. [
  42984. {
  42985. name: "Normal",
  42986. height: math.unit(5 + 5/12, "feet"),
  42987. default: true
  42988. },
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42993. {
  42994. front: {
  42995. height: math.unit(4 + 3/12, "feet"),
  42996. weight: math.unit(80, "lb"),
  42997. name: "Front",
  42998. image: {
  42999. source: "./media/characters/hess/front.svg",
  43000. extra: 1200/1123,
  43001. bottom: 16/1216
  43002. }
  43003. },
  43004. },
  43005. [
  43006. {
  43007. name: "Normal",
  43008. height: math.unit(4 + 3/12, "feet"),
  43009. default: true
  43010. },
  43011. ]
  43012. ))
  43013. characterMakers.push(() => makeCharacter(
  43014. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43015. {
  43016. front: {
  43017. height: math.unit(1.9, "meters"),
  43018. name: "Front",
  43019. image: {
  43020. source: "./media/characters/ashgar/front.svg",
  43021. extra: 1177/1146,
  43022. bottom: 99/1276
  43023. }
  43024. },
  43025. back: {
  43026. height: math.unit(1.9, "meters"),
  43027. name: "Back",
  43028. image: {
  43029. source: "./media/characters/ashgar/back.svg",
  43030. extra: 1201/1183,
  43031. bottom: 53/1254
  43032. }
  43033. },
  43034. feral: {
  43035. height: math.unit(1.4, "meters"),
  43036. name: "Feral",
  43037. image: {
  43038. source: "./media/characters/ashgar/feral.svg",
  43039. extra: 370/345,
  43040. bottom: 45/415
  43041. }
  43042. },
  43043. },
  43044. [
  43045. {
  43046. name: "Normal",
  43047. height: math.unit(1.9, "meters"),
  43048. default: true
  43049. },
  43050. ]
  43051. ))
  43052. characterMakers.push(() => makeCharacter(
  43053. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43054. {
  43055. regular: {
  43056. height: math.unit(6, "feet"),
  43057. weight: math.unit(220, "lb"),
  43058. name: "Regular",
  43059. image: {
  43060. source: "./media/characters/phillip/regular.svg",
  43061. extra: 1373/1277,
  43062. bottom: 75/1448
  43063. }
  43064. },
  43065. dressed: {
  43066. height: math.unit(6, "feet"),
  43067. weight: math.unit(220, "lb"),
  43068. name: "Dressed",
  43069. image: {
  43070. source: "./media/characters/phillip/dressed.svg",
  43071. extra: 1373/1277,
  43072. bottom: 75/1448
  43073. }
  43074. },
  43075. paw: {
  43076. height: math.unit(1.44, "feet"),
  43077. name: "Paw",
  43078. image: {
  43079. source: "./media/characters/phillip/paw.svg"
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Normal",
  43086. height: math.unit(6, "feet"),
  43087. default: true
  43088. },
  43089. ]
  43090. ))
  43091. characterMakers.push(() => makeCharacter(
  43092. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43093. {
  43094. side: {
  43095. height: math.unit(42, "feet"),
  43096. name: "Side",
  43097. image: {
  43098. source: "./media/characters/uvula/side.svg",
  43099. extra: 683/586,
  43100. bottom: 60/743
  43101. }
  43102. },
  43103. front: {
  43104. height: math.unit(42, "feet"),
  43105. name: "Front",
  43106. image: {
  43107. source: "./media/characters/uvula/front.svg",
  43108. extra: 705/613,
  43109. bottom: 54/759
  43110. }
  43111. },
  43112. maw: {
  43113. height: math.unit(23.5, "feet"),
  43114. name: "Maw",
  43115. image: {
  43116. source: "./media/characters/uvula/maw.svg"
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Original Size",
  43123. height: math.unit(14, "inches")
  43124. },
  43125. {
  43126. name: "Human Size",
  43127. height: math.unit(6, "feet")
  43128. },
  43129. {
  43130. name: "Big",
  43131. height: math.unit(42, "feet"),
  43132. default: true
  43133. },
  43134. {
  43135. name: "Bigger",
  43136. height: math.unit(100, "feet")
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43142. {
  43143. front: {
  43144. height: math.unit(5 + 11/12, "feet"),
  43145. name: "Front",
  43146. image: {
  43147. source: "./media/characters/lannah/front.svg",
  43148. extra: 1208/1113,
  43149. bottom: 97/1305
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Normal",
  43156. height: math.unit(5 + 11/12, "feet"),
  43157. default: true
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43163. {
  43164. front: {
  43165. height: math.unit(6 + 3/12, "feet"),
  43166. weight: math.unit(3.5, "tons"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/emberflame/front.svg",
  43170. extra: 1198/672,
  43171. bottom: 82/1280
  43172. }
  43173. },
  43174. side: {
  43175. height: math.unit(6 + 3/12, "feet"),
  43176. weight: math.unit(3.5, "tons"),
  43177. name: "Side",
  43178. image: {
  43179. source: "./media/characters/emberflame/side.svg",
  43180. extra: 938/527,
  43181. bottom: 56/994
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Normal",
  43188. height: math.unit(6 + 3/12, "feet"),
  43189. default: true
  43190. },
  43191. ]
  43192. ))
  43193. characterMakers.push(() => makeCharacter(
  43194. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43195. {
  43196. side: {
  43197. height: math.unit(17.5, "feet"),
  43198. weight: math.unit(35, "tons"),
  43199. name: "Side",
  43200. image: {
  43201. source: "./media/characters/sophie-ambrose/side.svg",
  43202. extra: 1573/1242,
  43203. bottom: 71/1644
  43204. }
  43205. },
  43206. maw: {
  43207. height: math.unit(7.4, "feet"),
  43208. name: "Maw",
  43209. image: {
  43210. source: "./media/characters/sophie-ambrose/maw.svg"
  43211. }
  43212. },
  43213. },
  43214. [
  43215. {
  43216. name: "Normal",
  43217. height: math.unit(17.5, "feet"),
  43218. default: true
  43219. },
  43220. ]
  43221. ))
  43222. characterMakers.push(() => makeCharacter(
  43223. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43224. {
  43225. front: {
  43226. height: math.unit(280, "feet"),
  43227. weight: math.unit(550, "tons"),
  43228. name: "Front",
  43229. image: {
  43230. source: "./media/characters/king-mugi/front.svg",
  43231. extra: 1102/947,
  43232. bottom: 104/1206
  43233. }
  43234. },
  43235. },
  43236. [
  43237. {
  43238. name: "King Mugi",
  43239. height: math.unit(280, "feet"),
  43240. default: true
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43246. {
  43247. front: {
  43248. height: math.unit(64, "meters"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/nova-fox/front.svg",
  43252. extra: 1310/1246,
  43253. bottom: 65/1375
  43254. }
  43255. },
  43256. },
  43257. [
  43258. {
  43259. name: "Macro",
  43260. height: math.unit(64, "meters"),
  43261. default: true
  43262. },
  43263. ]
  43264. ))
  43265. characterMakers.push(() => makeCharacter(
  43266. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43267. {
  43268. front: {
  43269. height: math.unit(6 + 3/12, "feet"),
  43270. weight: math.unit(170, "lb"),
  43271. name: "Front",
  43272. image: {
  43273. source: "./media/characters/sam-bat/front.svg",
  43274. extra: 1601/1411,
  43275. bottom: 125/1726
  43276. }
  43277. },
  43278. back: {
  43279. height: math.unit(6 + 3/12, "feet"),
  43280. weight: math.unit(170, "lb"),
  43281. name: "Back",
  43282. image: {
  43283. source: "./media/characters/sam-bat/back.svg",
  43284. extra: 1577/1405,
  43285. bottom: 58/1635
  43286. }
  43287. },
  43288. },
  43289. [
  43290. {
  43291. name: "Normal",
  43292. height: math.unit(6 + 3/12, "feet"),
  43293. default: true
  43294. },
  43295. ]
  43296. ))
  43297. characterMakers.push(() => makeCharacter(
  43298. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43299. {
  43300. front: {
  43301. height: math.unit(59, "feet"),
  43302. weight: math.unit(40000, "lb"),
  43303. name: "Front",
  43304. image: {
  43305. source: "./media/characters/inari/front.svg",
  43306. extra: 1884/1350,
  43307. bottom: 95/1979
  43308. }
  43309. },
  43310. },
  43311. [
  43312. {
  43313. name: "Gigantamax",
  43314. height: math.unit(59, "feet"),
  43315. default: true
  43316. },
  43317. ]
  43318. ))
  43319. characterMakers.push(() => makeCharacter(
  43320. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43321. {
  43322. front: {
  43323. height: math.unit(5 + 8/12, "feet"),
  43324. name: "Front",
  43325. image: {
  43326. source: "./media/characters/elizabeth/front.svg",
  43327. extra: 1395/1298,
  43328. bottom: 54/1449
  43329. }
  43330. },
  43331. mouth: {
  43332. height: math.unit(1.97, "feet"),
  43333. name: "Mouth",
  43334. image: {
  43335. source: "./media/characters/elizabeth/mouth.svg"
  43336. }
  43337. },
  43338. foot: {
  43339. height: math.unit(1.17, "feet"),
  43340. name: "Foot",
  43341. image: {
  43342. source: "./media/characters/elizabeth/foot.svg"
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(5 + 8/12, "feet"),
  43350. default: true
  43351. },
  43352. {
  43353. name: "Minimacro",
  43354. height: math.unit(18, "feet")
  43355. },
  43356. {
  43357. name: "Macro",
  43358. height: math.unit(180, "feet")
  43359. },
  43360. ]
  43361. ))
  43362. characterMakers.push(() => makeCharacter(
  43363. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43364. {
  43365. front: {
  43366. height: math.unit(5 + 2/12, "feet"),
  43367. name: "Front",
  43368. image: {
  43369. source: "./media/characters/october-gossamer/front.svg",
  43370. extra: 505/454,
  43371. bottom: 7/512
  43372. }
  43373. },
  43374. back: {
  43375. height: math.unit(5 + 2/12, "feet"),
  43376. name: "Back",
  43377. image: {
  43378. source: "./media/characters/october-gossamer/back.svg",
  43379. extra: 501/454,
  43380. bottom: 11/512
  43381. }
  43382. },
  43383. },
  43384. [
  43385. {
  43386. name: "Normal",
  43387. height: math.unit(5 + 2/12, "feet"),
  43388. default: true
  43389. },
  43390. ]
  43391. ))
  43392. characterMakers.push(() => makeCharacter(
  43393. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43394. {
  43395. front: {
  43396. height: math.unit(5, "feet"),
  43397. name: "Front",
  43398. image: {
  43399. source: "./media/characters/epiglottis/front.svg",
  43400. extra: 923/849,
  43401. bottom: 17/940
  43402. }
  43403. },
  43404. },
  43405. [
  43406. {
  43407. name: "Original Size",
  43408. height: math.unit(10, "inches")
  43409. },
  43410. {
  43411. name: "Human Size",
  43412. height: math.unit(5, "feet"),
  43413. default: true
  43414. },
  43415. {
  43416. name: "Big",
  43417. height: math.unit(25, "feet")
  43418. },
  43419. {
  43420. name: "Bigger",
  43421. height: math.unit(50, "feet")
  43422. },
  43423. {
  43424. name: "oh lawd",
  43425. height: math.unit(75, "feet")
  43426. },
  43427. ]
  43428. ))
  43429. characterMakers.push(() => makeCharacter(
  43430. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43431. {
  43432. front: {
  43433. height: math.unit(2 + 4/12, "feet"),
  43434. weight: math.unit(60, "lb"),
  43435. name: "Front",
  43436. image: {
  43437. source: "./media/characters/lerm/front.svg",
  43438. extra: 796/790,
  43439. bottom: 79/875
  43440. }
  43441. },
  43442. },
  43443. [
  43444. {
  43445. name: "Normal",
  43446. height: math.unit(2 + 4/12, "feet"),
  43447. default: true
  43448. },
  43449. ]
  43450. ))
  43451. characterMakers.push(() => makeCharacter(
  43452. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43453. {
  43454. front: {
  43455. height: math.unit(5.5, "feet"),
  43456. weight: math.unit(130, "lb"),
  43457. name: "Front",
  43458. image: {
  43459. source: "./media/characters/xena-nebadon/front.svg",
  43460. extra: 1828/1730,
  43461. bottom: 79/1907
  43462. }
  43463. },
  43464. },
  43465. [
  43466. {
  43467. name: "Tiny Puppy",
  43468. height: math.unit(3, "inches")
  43469. },
  43470. {
  43471. name: "Normal",
  43472. height: math.unit(5.5, "feet"),
  43473. default: true
  43474. },
  43475. {
  43476. name: "Lotta Lady",
  43477. height: math.unit(12, "feet")
  43478. },
  43479. {
  43480. name: "Pretty Big",
  43481. height: math.unit(100, "feet")
  43482. },
  43483. {
  43484. name: "Big",
  43485. height: math.unit(500, "feet")
  43486. },
  43487. {
  43488. name: "Skyscraper Toys",
  43489. height: math.unit(2500, "feet")
  43490. },
  43491. {
  43492. name: "Plane Catcher",
  43493. height: math.unit(8, "miles")
  43494. },
  43495. {
  43496. name: "Planet Toys",
  43497. height: math.unit(15, "earths")
  43498. },
  43499. {
  43500. name: "Stardust",
  43501. height: math.unit(0.25, "galaxies")
  43502. },
  43503. {
  43504. name: "Snacks",
  43505. height: math.unit(70, "universes")
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43511. {
  43512. front: {
  43513. height: math.unit(1.6, "meters"),
  43514. weight: math.unit(60, "kg"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/bounty/front.svg",
  43518. extra: 1426/1308,
  43519. bottom: 15/1441
  43520. }
  43521. },
  43522. back: {
  43523. height: math.unit(1.6, "meters"),
  43524. weight: math.unit(60, "kg"),
  43525. name: "Back",
  43526. image: {
  43527. source: "./media/characters/bounty/back.svg",
  43528. extra: 1417/1307,
  43529. bottom: 8/1425
  43530. }
  43531. },
  43532. },
  43533. [
  43534. {
  43535. name: "Normal",
  43536. height: math.unit(1.6, "meters"),
  43537. default: true
  43538. },
  43539. {
  43540. name: "Macro",
  43541. height: math.unit(300, "meters")
  43542. },
  43543. ]
  43544. ))
  43545. characterMakers.push(() => makeCharacter(
  43546. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43547. {
  43548. front: {
  43549. height: math.unit(2 + 8/12, "feet"),
  43550. weight: math.unit(15, "lb"),
  43551. name: "Front",
  43552. image: {
  43553. source: "./media/characters/mochi/front.svg",
  43554. extra: 1022/852,
  43555. bottom: 435/1457
  43556. }
  43557. },
  43558. back: {
  43559. height: math.unit(2 + 8/12, "feet"),
  43560. weight: math.unit(15, "lb"),
  43561. name: "Back",
  43562. image: {
  43563. source: "./media/characters/mochi/back.svg",
  43564. extra: 1335/1119,
  43565. bottom: 39/1374
  43566. }
  43567. },
  43568. bird: {
  43569. height: math.unit(2 + 8/12, "feet"),
  43570. weight: math.unit(15, "lb"),
  43571. name: "Bird",
  43572. image: {
  43573. source: "./media/characters/mochi/bird.svg",
  43574. extra: 1251/1113,
  43575. bottom: 178/1429
  43576. }
  43577. },
  43578. kaiju: {
  43579. height: math.unit(154, "feet"),
  43580. weight: math.unit(1e7, "lb"),
  43581. name: "Kaiju",
  43582. image: {
  43583. source: "./media/characters/mochi/kaiju.svg",
  43584. extra: 460/324,
  43585. bottom: 40/500
  43586. }
  43587. },
  43588. head: {
  43589. height: math.unit(1.21, "feet"),
  43590. name: "Head",
  43591. image: {
  43592. source: "./media/characters/mochi/head.svg"
  43593. }
  43594. },
  43595. alternateTail: {
  43596. height: math.unit(2 + 8/12, "feet"),
  43597. weight: math.unit(45, "lb"),
  43598. name: "Alternate Tail",
  43599. image: {
  43600. source: "./media/characters/mochi/alternate-tail.svg",
  43601. extra: 139/76,
  43602. bottom: 45/184
  43603. }
  43604. },
  43605. },
  43606. [
  43607. {
  43608. name: "Micro",
  43609. height: math.unit(2, "inches")
  43610. },
  43611. {
  43612. name: "Normal",
  43613. height: math.unit(2 + 8/12, "feet"),
  43614. default: true
  43615. },
  43616. {
  43617. name: "Macro",
  43618. height: math.unit(106, "feet")
  43619. },
  43620. ]
  43621. ))
  43622. characterMakers.push(() => makeCharacter(
  43623. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43624. {
  43625. front: {
  43626. height: math.unit(5.67, "feet"),
  43627. weight: math.unit(135, "lb"),
  43628. name: "Front",
  43629. image: {
  43630. source: "./media/characters/sarel/front.svg",
  43631. extra: 865/788,
  43632. bottom: 97/962
  43633. }
  43634. },
  43635. back: {
  43636. height: math.unit(5.67, "feet"),
  43637. weight: math.unit(135, "lb"),
  43638. name: "Back",
  43639. image: {
  43640. source: "./media/characters/sarel/back.svg",
  43641. extra: 857/777,
  43642. bottom: 32/889
  43643. }
  43644. },
  43645. chozoan: {
  43646. height: math.unit(5.67, "feet"),
  43647. weight: math.unit(135, "lb"),
  43648. name: "Chozoan",
  43649. image: {
  43650. source: "./media/characters/sarel/chozoan.svg",
  43651. extra: 865/788,
  43652. bottom: 97/962
  43653. }
  43654. },
  43655. current: {
  43656. height: math.unit(5.67, "feet"),
  43657. weight: math.unit(135, "lb"),
  43658. name: "Current",
  43659. image: {
  43660. source: "./media/characters/sarel/current.svg",
  43661. extra: 865/788,
  43662. bottom: 97/962
  43663. }
  43664. },
  43665. head: {
  43666. height: math.unit(1.77, "feet"),
  43667. name: "Head",
  43668. image: {
  43669. source: "./media/characters/sarel/head.svg"
  43670. }
  43671. },
  43672. claws: {
  43673. height: math.unit(1.8, "feet"),
  43674. name: "Claws",
  43675. image: {
  43676. source: "./media/characters/sarel/claws.svg"
  43677. }
  43678. },
  43679. clawsAlt: {
  43680. height: math.unit(1.8, "feet"),
  43681. name: "Claws-alt",
  43682. image: {
  43683. source: "./media/characters/sarel/claws-alt.svg"
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "Normal",
  43690. height: math.unit(5.67, "feet"),
  43691. default: true
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43697. {
  43698. front: {
  43699. height: math.unit(5500, "feet"),
  43700. name: "Front",
  43701. image: {
  43702. source: "./media/characters/alyonia/front.svg",
  43703. extra: 1200/1135,
  43704. bottom: 29/1229
  43705. }
  43706. },
  43707. back: {
  43708. height: math.unit(5500, "feet"),
  43709. name: "Back",
  43710. image: {
  43711. source: "./media/characters/alyonia/back.svg",
  43712. extra: 1205/1138,
  43713. bottom: 10/1215
  43714. }
  43715. },
  43716. },
  43717. [
  43718. {
  43719. name: "Small",
  43720. height: math.unit(10, "feet")
  43721. },
  43722. {
  43723. name: "Macro",
  43724. height: math.unit(500, "feet")
  43725. },
  43726. {
  43727. name: "Mega Macro",
  43728. height: math.unit(5500, "feet"),
  43729. default: true
  43730. },
  43731. {
  43732. name: "Mega Macro+",
  43733. height: math.unit(500000, "feet")
  43734. },
  43735. {
  43736. name: "Giga Macro",
  43737. height: math.unit(3000, "miles")
  43738. },
  43739. {
  43740. name: "Tera Macro",
  43741. height: math.unit(2.8e6, "miles")
  43742. },
  43743. {
  43744. name: "Galactic",
  43745. height: math.unit(120000, "lightyears")
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43751. {
  43752. werewolf: {
  43753. height: math.unit(8, "feet"),
  43754. weight: math.unit(425, "lb"),
  43755. name: "Werewolf",
  43756. image: {
  43757. source: "./media/characters/autumn/werewolf.svg",
  43758. extra: 2154/2031,
  43759. bottom: 160/2314
  43760. }
  43761. },
  43762. human: {
  43763. height: math.unit(5 + 8/12, "feet"),
  43764. weight: math.unit(150, "lb"),
  43765. name: "Human",
  43766. image: {
  43767. source: "./media/characters/autumn/human.svg",
  43768. extra: 1200/1149,
  43769. bottom: 30/1230
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Normal",
  43776. height: math.unit(8, "feet"),
  43777. default: true
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43783. {
  43784. front: {
  43785. height: math.unit(8 + 5/12, "feet"),
  43786. weight: math.unit(825, "lb"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/cobalt-charizard/front.svg",
  43790. extra: 1268/1155,
  43791. bottom: 122/1390
  43792. }
  43793. },
  43794. side: {
  43795. height: math.unit(8 + 5/12, "feet"),
  43796. weight: math.unit(825, "lb"),
  43797. name: "Side",
  43798. image: {
  43799. source: "./media/characters/cobalt-charizard/side.svg",
  43800. extra: 1348/1257,
  43801. bottom: 58/1406
  43802. }
  43803. },
  43804. gMax: {
  43805. height: math.unit(134 + 11/12, "feet"),
  43806. name: "G-Max",
  43807. image: {
  43808. source: "./media/characters/cobalt-charizard/g-max.svg",
  43809. extra: 1835/1541,
  43810. bottom: 151/1986
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(8 + 5/12, "feet"),
  43818. default: true
  43819. },
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43824. {
  43825. front: {
  43826. height: math.unit(6 + 3/12, "feet"),
  43827. weight: math.unit(210, "lb"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/stella/front.svg",
  43831. extra: 3549/3335,
  43832. bottom: 51/3600
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Normal",
  43839. height: math.unit(6 + 3/12, "feet"),
  43840. default: true
  43841. },
  43842. ]
  43843. ))
  43844. characterMakers.push(() => makeCharacter(
  43845. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43846. {
  43847. front: {
  43848. height: math.unit(5, "feet"),
  43849. weight: math.unit(90, "lb"),
  43850. name: "Front",
  43851. image: {
  43852. source: "./media/characters/riley-bishop/front.svg",
  43853. extra: 1450/1428,
  43854. bottom: 152/1602
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Normal",
  43861. height: math.unit(5, "feet"),
  43862. default: true
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43868. {
  43869. side: {
  43870. height: math.unit(8 + 2/12, "feet"),
  43871. weight: math.unit(500, "kg"),
  43872. name: "Side",
  43873. image: {
  43874. source: "./media/characters/theo-arcanine/side.svg",
  43875. extra: 1342/1074,
  43876. bottom: 111/1453
  43877. }
  43878. },
  43879. },
  43880. [
  43881. {
  43882. name: "Normal",
  43883. height: math.unit(8 + 2/12, "feet"),
  43884. default: true
  43885. },
  43886. ]
  43887. ))
  43888. characterMakers.push(() => makeCharacter(
  43889. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43890. {
  43891. front: {
  43892. height: math.unit(4, "feet"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/kali/front.svg",
  43896. extra: 1921/1357,
  43897. bottom: 70/1991
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Normal",
  43904. height: math.unit(4, "feet"),
  43905. default: true
  43906. },
  43907. {
  43908. name: "Macro",
  43909. height: math.unit(32, "meters")
  43910. },
  43911. {
  43912. name: "Macro+",
  43913. height: math.unit(150, "meters")
  43914. },
  43915. {
  43916. name: "Megamacro",
  43917. height: math.unit(7500, "meters")
  43918. },
  43919. {
  43920. name: "Megamacro+",
  43921. height: math.unit(80, "kilometers")
  43922. },
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43927. {
  43928. side: {
  43929. height: math.unit(5 + 11/12, "feet"),
  43930. weight: math.unit(236, "lb"),
  43931. name: "Side",
  43932. image: {
  43933. source: "./media/characters/gapp/side.svg",
  43934. extra: 775/340,
  43935. bottom: 58/833
  43936. }
  43937. },
  43938. mouth: {
  43939. height: math.unit(2.98, "feet"),
  43940. name: "Mouth",
  43941. image: {
  43942. source: "./media/characters/gapp/mouth.svg"
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(5 + 1/12, "feet"),
  43950. default: true
  43951. },
  43952. ]
  43953. ))
  43954. characterMakers.push(() => makeCharacter(
  43955. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43956. {
  43957. front: {
  43958. height: math.unit(6, "feet"),
  43959. name: "Front",
  43960. image: {
  43961. source: "./media/characters/persephone/front.svg",
  43962. extra: 1895/1717,
  43963. bottom: 96/1991
  43964. }
  43965. },
  43966. back: {
  43967. height: math.unit(6, "feet"),
  43968. name: "Back",
  43969. image: {
  43970. source: "./media/characters/persephone/back.svg",
  43971. extra: 1868/1679,
  43972. bottom: 26/1894
  43973. }
  43974. },
  43975. casual: {
  43976. height: math.unit(6, "feet"),
  43977. name: "Casual",
  43978. image: {
  43979. source: "./media/characters/persephone/casual.svg",
  43980. extra: 1713/1541,
  43981. bottom: 76/1789
  43982. }
  43983. },
  43984. },
  43985. [
  43986. {
  43987. name: "Human Size",
  43988. height: math.unit(6, "feet")
  43989. },
  43990. {
  43991. name: "Big Steppy",
  43992. height: math.unit(600, "meters"),
  43993. default: true
  43994. },
  43995. {
  43996. name: "Galaxy Brain",
  43997. height: math.unit(1, "zettameter")
  43998. },
  43999. ]
  44000. ))
  44001. characterMakers.push(() => makeCharacter(
  44002. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44003. {
  44004. front: {
  44005. height: math.unit(1.85, "meters"),
  44006. name: "Front",
  44007. image: {
  44008. source: "./media/characters/riley-foxthing/front.svg",
  44009. extra: 1495/1354,
  44010. bottom: 122/1617
  44011. }
  44012. },
  44013. frontAlt: {
  44014. height: math.unit(1.85, "meters"),
  44015. name: "Front (Alt)",
  44016. image: {
  44017. source: "./media/characters/riley-foxthing/front-alt.svg",
  44018. extra: 1572/1389,
  44019. bottom: 116/1688
  44020. }
  44021. },
  44022. },
  44023. [
  44024. {
  44025. name: "Normal Sized",
  44026. height: math.unit(1.85, "meters"),
  44027. default: true
  44028. },
  44029. {
  44030. name: "Quite Sizable",
  44031. height: math.unit(5, "meters")
  44032. },
  44033. {
  44034. name: "Rather Large",
  44035. height: math.unit(20, "meters")
  44036. },
  44037. {
  44038. name: "Macro",
  44039. height: math.unit(450, "meters")
  44040. },
  44041. {
  44042. name: "Giga",
  44043. height: math.unit(5, "km")
  44044. },
  44045. ]
  44046. ))
  44047. characterMakers.push(() => makeCharacter(
  44048. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44049. {
  44050. front: {
  44051. height: math.unit(6, "feet"),
  44052. weight: math.unit(200, "lb"),
  44053. name: "Front",
  44054. image: {
  44055. source: "./media/characters/blizzard/front.svg",
  44056. extra: 1136/990,
  44057. bottom: 136/1272
  44058. }
  44059. },
  44060. back: {
  44061. height: math.unit(6, "feet"),
  44062. weight: math.unit(200, "lb"),
  44063. name: "Back",
  44064. image: {
  44065. source: "./media/characters/blizzard/back.svg",
  44066. extra: 1175/1034,
  44067. bottom: 97/1272
  44068. }
  44069. },
  44070. sitting: {
  44071. height: math.unit(3.725, "feet"),
  44072. weight: math.unit(200, "lb"),
  44073. name: "Sitting",
  44074. image: {
  44075. source: "./media/characters/blizzard/sitting.svg",
  44076. extra: 581/485,
  44077. bottom: 90/671
  44078. }
  44079. },
  44080. frontWizard: {
  44081. height: math.unit(7.9, "feet"),
  44082. weight: math.unit(200, "lb"),
  44083. name: "Front (Wizard)",
  44084. image: {
  44085. source: "./media/characters/blizzard/front-wizard.svg"
  44086. }
  44087. },
  44088. backWizard: {
  44089. height: math.unit(7.9, "feet"),
  44090. weight: math.unit(200, "lb"),
  44091. name: "Back (Wizard)",
  44092. image: {
  44093. source: "./media/characters/blizzard/back-wizard.svg"
  44094. }
  44095. },
  44096. frontNsfw: {
  44097. height: math.unit(6, "feet"),
  44098. weight: math.unit(200, "lb"),
  44099. name: "Front (NSFW)",
  44100. image: {
  44101. source: "./media/characters/blizzard/front-nsfw.svg",
  44102. extra: 1136/990,
  44103. bottom: 136/1272
  44104. }
  44105. },
  44106. backNsfw: {
  44107. height: math.unit(6, "feet"),
  44108. weight: math.unit(200, "lb"),
  44109. name: "Back (NSFW)",
  44110. image: {
  44111. source: "./media/characters/blizzard/back-nsfw.svg",
  44112. extra: 1175/1034,
  44113. bottom: 97/1272
  44114. }
  44115. },
  44116. sittingNsfw: {
  44117. height: math.unit(3.725, "feet"),
  44118. weight: math.unit(200, "lb"),
  44119. name: "Sitting (NSFW)",
  44120. image: {
  44121. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44122. extra: 581/485,
  44123. bottom: 90/671
  44124. }
  44125. },
  44126. wizardFrontNsfw: {
  44127. height: math.unit(7.9, "feet"),
  44128. weight: math.unit(200, "lb"),
  44129. name: "Wizard (Front, NSFW)",
  44130. image: {
  44131. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44132. }
  44133. },
  44134. },
  44135. [
  44136. {
  44137. name: "Normal",
  44138. height: math.unit(6, "feet"),
  44139. default: true
  44140. },
  44141. ]
  44142. ))
  44143. characterMakers.push(() => makeCharacter(
  44144. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44145. {
  44146. front: {
  44147. height: math.unit(5 + 2/12, "feet"),
  44148. name: "Front",
  44149. image: {
  44150. source: "./media/characters/lumi/front.svg",
  44151. extra: 1328/1268,
  44152. bottom: 103/1431
  44153. }
  44154. },
  44155. back: {
  44156. height: math.unit(5 + 2/12, "feet"),
  44157. name: "Back",
  44158. image: {
  44159. source: "./media/characters/lumi/back.svg",
  44160. extra: 1381/1327,
  44161. bottom: 43/1424
  44162. }
  44163. },
  44164. },
  44165. [
  44166. {
  44167. name: "Normal",
  44168. height: math.unit(5 + 2/12, "feet"),
  44169. default: true
  44170. },
  44171. ]
  44172. ))
  44173. characterMakers.push(() => makeCharacter(
  44174. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44175. {
  44176. front: {
  44177. height: math.unit(5 + 9/12, "feet"),
  44178. name: "Front",
  44179. image: {
  44180. source: "./media/characters/aliya-cotton/front.svg",
  44181. extra: 577/564,
  44182. bottom: 29/606
  44183. }
  44184. },
  44185. },
  44186. [
  44187. {
  44188. name: "Normal",
  44189. height: math.unit(5 + 9/12, "feet"),
  44190. default: true
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44196. {
  44197. front: {
  44198. height: math.unit(2.7, "meters"),
  44199. weight: math.unit(25000, "lb"),
  44200. name: "Front",
  44201. image: {
  44202. source: "./media/characters/noah-luxray/front.svg",
  44203. extra: 1644/825,
  44204. bottom: 339/1983
  44205. }
  44206. },
  44207. side: {
  44208. height: math.unit(2.97, "meters"),
  44209. weight: math.unit(25000, "lb"),
  44210. name: "Side",
  44211. image: {
  44212. source: "./media/characters/noah-luxray/side.svg",
  44213. extra: 1319/650,
  44214. bottom: 163/1482
  44215. }
  44216. },
  44217. dick: {
  44218. height: math.unit(7.4, "feet"),
  44219. weight: math.unit(2500, "lb"),
  44220. name: "Dick",
  44221. image: {
  44222. source: "./media/characters/noah-luxray/dick.svg"
  44223. }
  44224. },
  44225. dickAlt: {
  44226. height: math.unit(10.83, "feet"),
  44227. weight: math.unit(2500, "lb"),
  44228. name: "Dick-alt",
  44229. image: {
  44230. source: "./media/characters/noah-luxray/dick-alt.svg"
  44231. }
  44232. },
  44233. },
  44234. [
  44235. {
  44236. name: "BIG",
  44237. height: math.unit(2.7, "meters"),
  44238. default: true
  44239. },
  44240. ]
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44244. {
  44245. standing: {
  44246. height: math.unit(183, "cm"),
  44247. weight: math.unit(68, "kg"),
  44248. name: "Standing",
  44249. image: {
  44250. source: "./media/characters/arion/standing.svg",
  44251. extra: 1869/1807,
  44252. bottom: 93/1962
  44253. }
  44254. },
  44255. reclining: {
  44256. height: math.unit(70.5, "cm"),
  44257. weight: math.unit(68, "lb"),
  44258. name: "Reclining",
  44259. image: {
  44260. source: "./media/characters/arion/reclining.svg",
  44261. extra: 937/870,
  44262. bottom: 63/1000
  44263. }
  44264. },
  44265. },
  44266. [
  44267. {
  44268. name: "Colossus Size, Low",
  44269. height: math.unit(33, "meters"),
  44270. default: true
  44271. },
  44272. {
  44273. name: "Colossus Size, Mid",
  44274. height: math.unit(52, "meters")
  44275. },
  44276. {
  44277. name: "Colossus Size, High",
  44278. height: math.unit(60, "meters")
  44279. },
  44280. {
  44281. name: "Titan Size, Low",
  44282. height: math.unit(91, "meters"),
  44283. },
  44284. {
  44285. name: "Titan Size, Mid",
  44286. height: math.unit(122, "meters")
  44287. },
  44288. {
  44289. name: "Titan Size, High",
  44290. height: math.unit(162, "meters")
  44291. },
  44292. ]
  44293. ))
  44294. characterMakers.push(() => makeCharacter(
  44295. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44296. {
  44297. front: {
  44298. height: math.unit(53, "meters"),
  44299. name: "Front",
  44300. image: {
  44301. source: "./media/characters/stellar-marbey/front.svg",
  44302. extra: 1913/1805,
  44303. bottom: 92/2005
  44304. }
  44305. },
  44306. back: {
  44307. height: math.unit(53, "meters"),
  44308. name: "Back",
  44309. image: {
  44310. source: "./media/characters/stellar-marbey/back.svg",
  44311. extra: 1960/1851,
  44312. bottom: 28/1988
  44313. }
  44314. },
  44315. mouth: {
  44316. height: math.unit(3.5, "meters"),
  44317. name: "Mouth",
  44318. image: {
  44319. source: "./media/characters/stellar-marbey/mouth.svg"
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Macro",
  44326. height: math.unit(53, "meters"),
  44327. default: true
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44333. {
  44334. front: {
  44335. height: math.unit(8 + 1/12, "feet"),
  44336. weight: math.unit(233, "lb"),
  44337. name: "Front",
  44338. image: {
  44339. source: "./media/characters/matsu/front.svg",
  44340. extra: 832/772,
  44341. bottom: 40/872
  44342. }
  44343. },
  44344. back: {
  44345. height: math.unit(8 + 1/12, "feet"),
  44346. weight: math.unit(233, "lb"),
  44347. name: "Back",
  44348. image: {
  44349. source: "./media/characters/matsu/back.svg",
  44350. extra: 839/780,
  44351. bottom: 47/886
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Normal",
  44358. height: math.unit(8 + 1/12, "feet"),
  44359. default: true
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(4, "feet"),
  44368. weight: math.unit(148, "lb"),
  44369. name: "Front",
  44370. image: {
  44371. source: "./media/characters/thiz/front.svg",
  44372. extra: 1913/1748,
  44373. bottom: 62/1975
  44374. }
  44375. },
  44376. },
  44377. [
  44378. {
  44379. name: "Normal",
  44380. height: math.unit(4, "feet"),
  44381. default: true
  44382. },
  44383. ]
  44384. ))
  44385. characterMakers.push(() => makeCharacter(
  44386. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44387. {
  44388. front: {
  44389. height: math.unit(7 + 6/12, "feet"),
  44390. weight: math.unit(267, "lb"),
  44391. name: "Front",
  44392. image: {
  44393. source: "./media/characters/marcel/front.svg",
  44394. extra: 1221/1096,
  44395. bottom: 76/1297
  44396. }
  44397. },
  44398. },
  44399. [
  44400. {
  44401. name: "Normal",
  44402. height: math.unit(7 + 6/12, "feet"),
  44403. default: true
  44404. },
  44405. ]
  44406. ))
  44407. characterMakers.push(() => makeCharacter(
  44408. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44409. {
  44410. side: {
  44411. height: math.unit(42, "meters"),
  44412. name: "Side",
  44413. image: {
  44414. source: "./media/characters/flake/side.svg",
  44415. extra: 1525/1306,
  44416. bottom: 209/1734
  44417. }
  44418. },
  44419. },
  44420. [
  44421. {
  44422. name: "Normal",
  44423. height: math.unit(42, "meters"),
  44424. default: true
  44425. },
  44426. ]
  44427. ))
  44428. characterMakers.push(() => makeCharacter(
  44429. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44430. {
  44431. dressed: {
  44432. height: math.unit(6 + 4/12, "feet"),
  44433. weight: math.unit(520, "lb"),
  44434. name: "Dressed",
  44435. image: {
  44436. source: "./media/characters/someonne/dressed.svg",
  44437. extra: 1020/1010,
  44438. bottom: 178/1198
  44439. }
  44440. },
  44441. undressed: {
  44442. height: math.unit(6 + 4/12, "feet"),
  44443. weight: math.unit(520, "lb"),
  44444. name: "Undressed",
  44445. image: {
  44446. source: "./media/characters/someonne/undressed.svg",
  44447. extra: 1019/1014,
  44448. bottom: 169/1188
  44449. }
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Normal",
  44455. height: math.unit(6 + 4/12, "feet"),
  44456. default: true
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44462. {
  44463. front: {
  44464. height: math.unit(3, "feet"),
  44465. weight: math.unit(30, "lb"),
  44466. name: "Front",
  44467. image: {
  44468. source: "./media/characters/till/front.svg",
  44469. extra: 892/823,
  44470. bottom: 55/947
  44471. }
  44472. },
  44473. },
  44474. [
  44475. {
  44476. name: "Normal",
  44477. height: math.unit(3, "feet"),
  44478. default: true
  44479. },
  44480. ]
  44481. ))
  44482. characterMakers.push(() => makeCharacter(
  44483. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44484. {
  44485. front: {
  44486. height: math.unit(9 + 8/12, "feet"),
  44487. weight: math.unit(800, "lb"),
  44488. name: "Front",
  44489. image: {
  44490. source: "./media/characters/sydney-heki/front.svg",
  44491. extra: 1360/1300,
  44492. bottom: 22/1382
  44493. }
  44494. },
  44495. back: {
  44496. height: math.unit(9 + 8/12, "feet"),
  44497. weight: math.unit(800, "lb"),
  44498. name: "Back",
  44499. image: {
  44500. source: "./media/characters/sydney-heki/back.svg",
  44501. extra: 1356/1293,
  44502. bottom: 12/1368
  44503. }
  44504. },
  44505. frontDressed: {
  44506. height: math.unit(9 + 8/12, "feet"),
  44507. weight: math.unit(800, "lb"),
  44508. name: "Front-dressed",
  44509. image: {
  44510. source: "./media/characters/sydney-heki/front-dressed.svg",
  44511. extra: 1360/1300,
  44512. bottom: 22/1382
  44513. }
  44514. },
  44515. },
  44516. [
  44517. {
  44518. name: "Normal",
  44519. height: math.unit(9 + 8/12, "feet"),
  44520. default: true
  44521. },
  44522. {
  44523. name: "Macro",
  44524. height: math.unit(500, "feet")
  44525. },
  44526. {
  44527. name: "Megamacro",
  44528. height: math.unit(3.6, "miles")
  44529. },
  44530. ]
  44531. ))
  44532. characterMakers.push(() => makeCharacter(
  44533. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44534. {
  44535. front: {
  44536. height: math.unit(200, "cm"),
  44537. weight: math.unit(250, "lb"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/fowler-karlsson/front.svg",
  44541. extra: 897/845,
  44542. bottom: 123/1020
  44543. }
  44544. },
  44545. back: {
  44546. height: math.unit(200, "cm"),
  44547. weight: math.unit(250, "lb"),
  44548. name: "Back",
  44549. image: {
  44550. source: "./media/characters/fowler-karlsson/back.svg",
  44551. extra: 999/944,
  44552. bottom: 26/1025
  44553. }
  44554. },
  44555. dick: {
  44556. height: math.unit(1.92, "feet"),
  44557. weight: math.unit(150, "lb"),
  44558. name: "Dick",
  44559. image: {
  44560. source: "./media/characters/fowler-karlsson/dick.svg"
  44561. }
  44562. },
  44563. },
  44564. [
  44565. {
  44566. name: "Normal",
  44567. height: math.unit(200, "cm"),
  44568. default: true
  44569. },
  44570. {
  44571. name: "Smaller Macro",
  44572. height: math.unit(90, "m")
  44573. },
  44574. {
  44575. name: "Macro",
  44576. height: math.unit(150, "m")
  44577. },
  44578. {
  44579. name: "Bigger Macro",
  44580. height: math.unit(300, "m")
  44581. },
  44582. ]
  44583. ))
  44584. characterMakers.push(() => makeCharacter(
  44585. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44586. {
  44587. side: {
  44588. height: math.unit(8 + 2/12, "feet"),
  44589. weight: math.unit(1, "tonne"),
  44590. name: "Side",
  44591. image: {
  44592. source: "./media/characters/rylide/side.svg",
  44593. extra: 1318/1034,
  44594. bottom: 106/1424
  44595. }
  44596. },
  44597. sitting: {
  44598. height: math.unit(303, "cm"),
  44599. weight: math.unit(1, "tonne"),
  44600. name: "Sitting",
  44601. image: {
  44602. source: "./media/characters/rylide/sitting.svg",
  44603. extra: 1303/1103,
  44604. bottom: 36/1339
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "Normal",
  44611. height: math.unit(8 + 2/12, "feet"),
  44612. default: true
  44613. },
  44614. ]
  44615. ))
  44616. characterMakers.push(() => makeCharacter(
  44617. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44618. {
  44619. front: {
  44620. height: math.unit(5 + 10/12, "feet"),
  44621. weight: math.unit(160, "lb"),
  44622. name: "Front",
  44623. image: {
  44624. source: "./media/characters/pudask/front.svg",
  44625. extra: 1616/1590,
  44626. bottom: 161/1777
  44627. }
  44628. },
  44629. },
  44630. [
  44631. {
  44632. name: "Ferret Height",
  44633. height: math.unit(2 + 5/12, "feet")
  44634. },
  44635. {
  44636. name: "Canon Height",
  44637. height: math.unit(5 + 10/12, "feet"),
  44638. default: true
  44639. },
  44640. ]
  44641. ))
  44642. characterMakers.push(() => makeCharacter(
  44643. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44644. {
  44645. front: {
  44646. height: math.unit(3 + 6/12, "feet"),
  44647. weight: math.unit(60, "lb"),
  44648. name: "Front",
  44649. image: {
  44650. source: "./media/characters/ramita/front.svg",
  44651. extra: 1402/1232,
  44652. bottom: 62/1464
  44653. }
  44654. },
  44655. dressed: {
  44656. height: math.unit(3 + 6/12, "feet"),
  44657. weight: math.unit(60, "lb"),
  44658. name: "Dressed",
  44659. image: {
  44660. source: "./media/characters/ramita/dressed.svg",
  44661. extra: 1534/1249,
  44662. bottom: 50/1584
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(3 + 6/12, "feet"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44676. {
  44677. front: {
  44678. height: math.unit(8, "feet"),
  44679. name: "Front",
  44680. image: {
  44681. source: "./media/characters/ark/front.svg",
  44682. extra: 772/693,
  44683. bottom: 45/817
  44684. }
  44685. },
  44686. },
  44687. [
  44688. {
  44689. name: "Normal",
  44690. height: math.unit(8, "feet"),
  44691. default: true
  44692. },
  44693. ]
  44694. ))
  44695. characterMakers.push(() => makeCharacter(
  44696. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44697. {
  44698. front: {
  44699. height: math.unit(6, "feet"),
  44700. weight: math.unit(250, "lb"),
  44701. volume: math.unit(5/8, "gallons"),
  44702. name: "Front",
  44703. image: {
  44704. source: "./media/characters/ludwig-horn/front.svg",
  44705. extra: 1782/1635,
  44706. bottom: 96/1878
  44707. }
  44708. },
  44709. back: {
  44710. height: math.unit(6, "feet"),
  44711. weight: math.unit(250, "lb"),
  44712. volume: math.unit(5/8, "gallons"),
  44713. name: "Back",
  44714. image: {
  44715. source: "./media/characters/ludwig-horn/back.svg",
  44716. extra: 1874/1729,
  44717. bottom: 27/1901
  44718. }
  44719. },
  44720. dick: {
  44721. height: math.unit(1.05, "feet"),
  44722. weight: math.unit(15, "lb"),
  44723. volume: math.unit(5/8, "gallons"),
  44724. name: "Dick",
  44725. image: {
  44726. source: "./media/characters/ludwig-horn/dick.svg"
  44727. }
  44728. },
  44729. },
  44730. [
  44731. {
  44732. name: "Small",
  44733. height: math.unit(6, "feet")
  44734. },
  44735. {
  44736. name: "Typical",
  44737. height: math.unit(12, "feet"),
  44738. default: true
  44739. },
  44740. {
  44741. name: "Building",
  44742. height: math.unit(80, "feet")
  44743. },
  44744. {
  44745. name: "Town",
  44746. height: math.unit(800, "feet")
  44747. },
  44748. {
  44749. name: "Kingdom",
  44750. height: math.unit(80000, "feet")
  44751. },
  44752. {
  44753. name: "Planet",
  44754. height: math.unit(8000000, "feet")
  44755. },
  44756. {
  44757. name: "Universe",
  44758. height: math.unit(8000000000, "feet")
  44759. },
  44760. {
  44761. name: "Transcended",
  44762. height: math.unit(8e27, "feet")
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44768. {
  44769. front: {
  44770. height: math.unit(5, "feet"),
  44771. weight: math.unit(50, "kg"),
  44772. name: "Front",
  44773. image: {
  44774. source: "./media/characters/biot-avery/front.svg",
  44775. extra: 1295/1232,
  44776. bottom: 86/1381
  44777. }
  44778. },
  44779. },
  44780. [
  44781. {
  44782. name: "Normal",
  44783. height: math.unit(5, "feet"),
  44784. default: true
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44790. {
  44791. front: {
  44792. height: math.unit(6, "feet"),
  44793. name: "Front",
  44794. image: {
  44795. source: "./media/characters/kitsune-kiro/front.svg",
  44796. extra: 1270/1158,
  44797. bottom: 42/1312
  44798. }
  44799. },
  44800. frontAlt: {
  44801. height: math.unit(6, "feet"),
  44802. name: "Front-alt",
  44803. image: {
  44804. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44805. extra: 1130/1081,
  44806. bottom: 36/1166
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Smol",
  44813. height: math.unit(3, "feet")
  44814. },
  44815. {
  44816. name: "Normal",
  44817. height: math.unit(6, "feet"),
  44818. default: true
  44819. },
  44820. ]
  44821. ))
  44822. characterMakers.push(() => makeCharacter(
  44823. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44824. {
  44825. front: {
  44826. height: math.unit(6, "feet"),
  44827. weight: math.unit(125, "lb"),
  44828. name: "Front",
  44829. image: {
  44830. source: "./media/characters/jack-thatcher/front.svg",
  44831. extra: 1474/1370,
  44832. bottom: 26/1500
  44833. }
  44834. },
  44835. back: {
  44836. height: math.unit(6, "feet"),
  44837. weight: math.unit(125, "lb"),
  44838. name: "Back",
  44839. image: {
  44840. source: "./media/characters/jack-thatcher/back.svg",
  44841. extra: 1489/1384,
  44842. bottom: 18/1507
  44843. }
  44844. },
  44845. },
  44846. [
  44847. {
  44848. name: "Normal",
  44849. height: math.unit(6, "feet"),
  44850. default: true
  44851. },
  44852. {
  44853. name: "Macro",
  44854. height: math.unit(75, "feet")
  44855. },
  44856. {
  44857. name: "Macro-er",
  44858. height: math.unit(250, "feet")
  44859. },
  44860. ]
  44861. ))
  44862. characterMakers.push(() => makeCharacter(
  44863. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44864. {
  44865. front: {
  44866. height: math.unit(7, "feet"),
  44867. weight: math.unit(110, "kg"),
  44868. name: "Front",
  44869. image: {
  44870. source: "./media/characters/max-hyper/front.svg",
  44871. extra: 1969/1881,
  44872. bottom: 49/2018
  44873. }
  44874. },
  44875. },
  44876. [
  44877. {
  44878. name: "Normal",
  44879. height: math.unit(7, "feet"),
  44880. default: true
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44886. {
  44887. front: {
  44888. height: math.unit(5 + 5/12, "feet"),
  44889. weight: math.unit(160, "lb"),
  44890. name: "Front",
  44891. image: {
  44892. source: "./media/characters/spook/front.svg",
  44893. extra: 794/791,
  44894. bottom: 54/848
  44895. }
  44896. },
  44897. back: {
  44898. height: math.unit(5 + 5/12, "feet"),
  44899. weight: math.unit(160, "lb"),
  44900. name: "Back",
  44901. image: {
  44902. source: "./media/characters/spook/back.svg",
  44903. extra: 812/798,
  44904. bottom: 32/844
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Normal",
  44911. height: math.unit(5 + 5/12, "feet"),
  44912. default: true
  44913. },
  44914. ]
  44915. ))
  44916. characterMakers.push(() => makeCharacter(
  44917. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44918. {
  44919. front: {
  44920. height: math.unit(18, "feet"),
  44921. name: "Front",
  44922. image: {
  44923. source: "./media/characters/xeaduulix/front.svg",
  44924. extra: 1380/1166,
  44925. bottom: 110/1490
  44926. }
  44927. },
  44928. back: {
  44929. height: math.unit(18, "feet"),
  44930. name: "Back",
  44931. image: {
  44932. source: "./media/characters/xeaduulix/back.svg",
  44933. extra: 1592/1170,
  44934. bottom: 128/1720
  44935. }
  44936. },
  44937. frontNsfw: {
  44938. height: math.unit(18, "feet"),
  44939. name: "Front (NSFW)",
  44940. image: {
  44941. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44942. extra: 1380/1166,
  44943. bottom: 110/1490
  44944. }
  44945. },
  44946. backNsfw: {
  44947. height: math.unit(18, "feet"),
  44948. name: "Back (NSFW)",
  44949. image: {
  44950. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44951. extra: 1592/1170,
  44952. bottom: 128/1720
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Normal",
  44959. height: math.unit(18, "feet"),
  44960. default: true
  44961. },
  44962. ]
  44963. ))
  44964. characterMakers.push(() => makeCharacter(
  44965. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44966. {
  44967. spreadWings: {
  44968. height: math.unit(20, "feet"),
  44969. name: "Spread Wings",
  44970. image: {
  44971. source: "./media/characters/fledge/spread-wings.svg",
  44972. extra: 693/635,
  44973. bottom: 26/719
  44974. }
  44975. },
  44976. front: {
  44977. height: math.unit(20, "feet"),
  44978. name: "Front",
  44979. image: {
  44980. source: "./media/characters/fledge/front.svg",
  44981. extra: 684/637,
  44982. bottom: 18/702
  44983. }
  44984. },
  44985. frontAlt: {
  44986. height: math.unit(20, "feet"),
  44987. name: "Front (Alt)",
  44988. image: {
  44989. source: "./media/characters/fledge/front-alt.svg",
  44990. extra: 708/664,
  44991. bottom: 13/721
  44992. }
  44993. },
  44994. back: {
  44995. height: math.unit(20, "feet"),
  44996. name: "Back",
  44997. image: {
  44998. source: "./media/characters/fledge/back.svg",
  44999. extra: 718/634,
  45000. bottom: 22/740
  45001. }
  45002. },
  45003. head: {
  45004. height: math.unit(5.55, "feet"),
  45005. name: "Head",
  45006. image: {
  45007. source: "./media/characters/fledge/head.svg"
  45008. }
  45009. },
  45010. headAlt: {
  45011. height: math.unit(5.1, "feet"),
  45012. name: "Head (Alt)",
  45013. image: {
  45014. source: "./media/characters/fledge/head-alt.svg"
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Small",
  45021. height: math.unit(6 + 2/12, "feet")
  45022. },
  45023. {
  45024. name: "Big",
  45025. height: math.unit(20, "feet"),
  45026. default: true
  45027. },
  45028. {
  45029. name: "Giant",
  45030. height: math.unit(100, "feet")
  45031. },
  45032. {
  45033. name: "Macro",
  45034. height: math.unit(200, "feet")
  45035. },
  45036. ]
  45037. ))
  45038. characterMakers.push(() => makeCharacter(
  45039. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45040. {
  45041. front: {
  45042. height: math.unit(1, "meter"),
  45043. name: "Front",
  45044. image: {
  45045. source: "./media/characters/atlas-morenai/front.svg",
  45046. extra: 1275/1043,
  45047. bottom: 19/1294
  45048. }
  45049. },
  45050. back: {
  45051. height: math.unit(1, "meter"),
  45052. name: "Back",
  45053. image: {
  45054. source: "./media/characters/atlas-morenai/back.svg",
  45055. extra: 1141/1001,
  45056. bottom: 25/1166
  45057. }
  45058. },
  45059. },
  45060. [
  45061. {
  45062. name: "Normal",
  45063. height: math.unit(1, "meter"),
  45064. default: true
  45065. },
  45066. {
  45067. name: "Magic-Infused",
  45068. height: math.unit(5, "meters")
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45074. {
  45075. front: {
  45076. height: math.unit(5, "meters"),
  45077. name: "Front",
  45078. image: {
  45079. source: "./media/characters/cintia/front.svg",
  45080. extra: 1312/1228,
  45081. bottom: 38/1350
  45082. }
  45083. },
  45084. back: {
  45085. height: math.unit(5, "meters"),
  45086. name: "Back",
  45087. image: {
  45088. source: "./media/characters/cintia/back.svg",
  45089. extra: 1260/1166,
  45090. bottom: 98/1358
  45091. }
  45092. },
  45093. frontDick: {
  45094. height: math.unit(5, "meters"),
  45095. name: "Front (Dick)",
  45096. image: {
  45097. source: "./media/characters/cintia/front-dick.svg",
  45098. extra: 1312/1228,
  45099. bottom: 38/1350
  45100. }
  45101. },
  45102. backDick: {
  45103. height: math.unit(5, "meters"),
  45104. name: "Back (Dick)",
  45105. image: {
  45106. source: "./media/characters/cintia/back-dick.svg",
  45107. extra: 1260/1166,
  45108. bottom: 98/1358
  45109. }
  45110. },
  45111. bust: {
  45112. height: math.unit(1.97, "meters"),
  45113. name: "Bust",
  45114. image: {
  45115. source: "./media/characters/cintia/bust.svg",
  45116. extra: 617/565,
  45117. bottom: 0/617
  45118. }
  45119. },
  45120. },
  45121. [
  45122. {
  45123. name: "Normal",
  45124. height: math.unit(5, "meters"),
  45125. default: true
  45126. },
  45127. ]
  45128. ))
  45129. characterMakers.push(() => makeCharacter(
  45130. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45131. {
  45132. side: {
  45133. height: math.unit(100, "feet"),
  45134. name: "Side",
  45135. image: {
  45136. source: "./media/characters/denora/side.svg",
  45137. extra: 875/803,
  45138. bottom: 9/884
  45139. }
  45140. },
  45141. },
  45142. [
  45143. {
  45144. name: "Standard",
  45145. height: math.unit(100, "feet"),
  45146. default: true
  45147. },
  45148. {
  45149. name: "Grand",
  45150. height: math.unit(1000, "feet")
  45151. },
  45152. {
  45153. name: "Conquering",
  45154. height: math.unit(10000, "feet")
  45155. },
  45156. ]
  45157. ))
  45158. characterMakers.push(() => makeCharacter(
  45159. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45160. {
  45161. dressed: {
  45162. height: math.unit(8 + 5/12, "feet"),
  45163. weight: math.unit(700, "lb"),
  45164. name: "Dressed",
  45165. image: {
  45166. source: "./media/characters/kiva/dressed.svg",
  45167. extra: 1102/1055,
  45168. bottom: 60/1162
  45169. }
  45170. },
  45171. nude: {
  45172. height: math.unit(8 + 5/12, "feet"),
  45173. weight: math.unit(700, "lb"),
  45174. name: "Nude",
  45175. image: {
  45176. source: "./media/characters/kiva/nude.svg",
  45177. extra: 1102/1055,
  45178. bottom: 60/1162
  45179. }
  45180. },
  45181. },
  45182. [
  45183. {
  45184. name: "Base Height",
  45185. height: math.unit(8 + 5/12, "feet"),
  45186. default: true
  45187. },
  45188. {
  45189. name: "Macro",
  45190. height: math.unit(100, "feet")
  45191. },
  45192. {
  45193. name: "Max",
  45194. height: math.unit(3280, "feet")
  45195. },
  45196. ]
  45197. ))
  45198. characterMakers.push(() => makeCharacter(
  45199. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45200. {
  45201. front: {
  45202. height: math.unit(6 + 8/12, "feet"),
  45203. weight: math.unit(250, "lb"),
  45204. name: "Front",
  45205. image: {
  45206. source: "./media/characters/ztragon/front.svg",
  45207. extra: 1825/1684,
  45208. bottom: 98/1923
  45209. }
  45210. },
  45211. },
  45212. [
  45213. {
  45214. name: "Normal",
  45215. height: math.unit(6 + 8/12, "feet"),
  45216. default: true
  45217. },
  45218. {
  45219. name: "Macro",
  45220. height: math.unit(80, "feet")
  45221. },
  45222. ]
  45223. ))
  45224. characterMakers.push(() => makeCharacter(
  45225. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45226. {
  45227. front: {
  45228. height: math.unit(10.4, "feet"),
  45229. weight: math.unit(2, "tons"),
  45230. name: "Front",
  45231. image: {
  45232. source: "./media/characters/yesenia/front.svg",
  45233. extra: 1479/1474,
  45234. bottom: 233/1712
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Normal",
  45241. height: math.unit(10.4, "feet"),
  45242. default: true
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45248. {
  45249. normal: {
  45250. height: math.unit(6 + 1/12, "feet"),
  45251. weight: math.unit(180, "lb"),
  45252. name: "Normal",
  45253. image: {
  45254. source: "./media/characters/leanne-lycheborne/normal.svg",
  45255. extra: 1748/1660,
  45256. bottom: 98/1846
  45257. }
  45258. },
  45259. were: {
  45260. height: math.unit(12, "feet"),
  45261. weight: math.unit(1600, "lb"),
  45262. name: "Were",
  45263. image: {
  45264. source: "./media/characters/leanne-lycheborne/were.svg",
  45265. extra: 1485/1432,
  45266. bottom: 66/1551
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(6 + 1/12, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45280. {
  45281. side: {
  45282. height: math.unit(13, "feet"),
  45283. name: "Side",
  45284. image: {
  45285. source: "./media/characters/kira-tyler/side.svg",
  45286. extra: 693/393,
  45287. bottom: 58/751
  45288. }
  45289. },
  45290. },
  45291. [
  45292. {
  45293. name: "Normal",
  45294. height: math.unit(13, "feet"),
  45295. default: true
  45296. },
  45297. ]
  45298. ))
  45299. characterMakers.push(() => makeCharacter(
  45300. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45301. {
  45302. front: {
  45303. height: math.unit(10.3, "feet"),
  45304. weight: math.unit(150, "lb"),
  45305. name: "Front",
  45306. image: {
  45307. source: "./media/characters/blaze/front.svg",
  45308. extra: 1378/1286,
  45309. bottom: 172/1550
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(10.3, "feet"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45323. {
  45324. side: {
  45325. height: math.unit(2, "meters"),
  45326. weight: math.unit(400, "kg"),
  45327. name: "Side",
  45328. image: {
  45329. source: "./media/characters/anu/side.svg",
  45330. extra: 506/394,
  45331. bottom: 18/524
  45332. }
  45333. },
  45334. },
  45335. [
  45336. {
  45337. name: "Humanoid",
  45338. height: math.unit(2, "meters")
  45339. },
  45340. {
  45341. name: "Normal",
  45342. height: math.unit(5, "meters"),
  45343. default: true
  45344. },
  45345. ]
  45346. ))
  45347. characterMakers.push(() => makeCharacter(
  45348. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45349. {
  45350. front: {
  45351. height: math.unit(5 + 5/12, "feet"),
  45352. weight: math.unit(170, "lb"),
  45353. name: "Front",
  45354. image: {
  45355. source: "./media/characters/synx-the-lynx/front.svg",
  45356. extra: 1893/1745,
  45357. bottom: 17/1910
  45358. }
  45359. },
  45360. side: {
  45361. height: math.unit(5 + 5/12, "feet"),
  45362. weight: math.unit(170, "lb"),
  45363. name: "Side",
  45364. image: {
  45365. source: "./media/characters/synx-the-lynx/side.svg",
  45366. extra: 1884/1740,
  45367. bottom: 39/1923
  45368. }
  45369. },
  45370. back: {
  45371. height: math.unit(5 + 5/12, "feet"),
  45372. weight: math.unit(170, "lb"),
  45373. name: "Back",
  45374. image: {
  45375. source: "./media/characters/synx-the-lynx/back.svg",
  45376. extra: 1903/1755,
  45377. bottom: 14/1917
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Normal",
  45384. height: math.unit(5 + 5/12, "feet"),
  45385. default: true
  45386. },
  45387. ]
  45388. ))
  45389. characterMakers.push(() => makeCharacter(
  45390. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45391. {
  45392. back: {
  45393. height: math.unit(15, "feet"),
  45394. name: "Back",
  45395. image: {
  45396. source: "./media/characters/nadezda-fex/back.svg",
  45397. extra: 1695/1481,
  45398. bottom: 25/1720
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "Normal",
  45405. height: math.unit(15, "feet"),
  45406. default: true
  45407. },
  45408. {
  45409. name: "Macro",
  45410. height: math.unit(2.5, "miles")
  45411. },
  45412. {
  45413. name: "Goddess",
  45414. height: math.unit(2, "multiverses")
  45415. },
  45416. ]
  45417. ))
  45418. characterMakers.push(() => makeCharacter(
  45419. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45420. {
  45421. front: {
  45422. height: math.unit(216, "cm"),
  45423. name: "Front",
  45424. image: {
  45425. source: "./media/characters/lev/front.svg",
  45426. extra: 1728/1670,
  45427. bottom: 82/1810
  45428. }
  45429. },
  45430. back: {
  45431. height: math.unit(216, "cm"),
  45432. name: "Back",
  45433. image: {
  45434. source: "./media/characters/lev/back.svg",
  45435. extra: 1738/1675,
  45436. bottom: 24/1762
  45437. }
  45438. },
  45439. dressed: {
  45440. height: math.unit(216, "cm"),
  45441. name: "Dressed",
  45442. image: {
  45443. source: "./media/characters/lev/dressed.svg",
  45444. extra: 1397/1351,
  45445. bottom: 73/1470
  45446. }
  45447. },
  45448. head: {
  45449. height: math.unit(0.51, "meter"),
  45450. name: "Head",
  45451. image: {
  45452. source: "./media/characters/lev/head.svg"
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(216, "cm"),
  45460. default: true
  45461. },
  45462. {
  45463. name: "Relatively Macro",
  45464. height: math.unit(80, "meters")
  45465. },
  45466. {
  45467. name: "Megamacro",
  45468. height: math.unit(21600, "meters")
  45469. },
  45470. {
  45471. name: "Megamacro+",
  45472. height: math.unit(64800, "meters")
  45473. },
  45474. ]
  45475. ))
  45476. characterMakers.push(() => makeCharacter(
  45477. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45478. {
  45479. front: {
  45480. height: math.unit(2, "meters"),
  45481. weight: math.unit(80, "kg"),
  45482. name: "Front",
  45483. image: {
  45484. source: "./media/characters/moka/front.svg",
  45485. extra: 1337/1255,
  45486. bottom: 58/1395
  45487. }
  45488. },
  45489. },
  45490. [
  45491. {
  45492. name: "Micro",
  45493. height: math.unit(15, "cm")
  45494. },
  45495. {
  45496. name: "Normal",
  45497. height: math.unit(2, "meters"),
  45498. default: true
  45499. },
  45500. {
  45501. name: "Macro",
  45502. height: math.unit(20, "meters"),
  45503. },
  45504. ]
  45505. ))
  45506. characterMakers.push(() => makeCharacter(
  45507. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45508. {
  45509. front: {
  45510. height: math.unit(9, "feet"),
  45511. weight: math.unit(240, "lb"),
  45512. name: "Front",
  45513. image: {
  45514. source: "./media/characters/kuzco/front.svg",
  45515. extra: 1593/1487,
  45516. bottom: 32/1625
  45517. }
  45518. },
  45519. side: {
  45520. height: math.unit(9, "feet"),
  45521. weight: math.unit(240, "lb"),
  45522. name: "Side",
  45523. image: {
  45524. source: "./media/characters/kuzco/side.svg",
  45525. extra: 1575/1485,
  45526. bottom: 30/1605
  45527. }
  45528. },
  45529. back: {
  45530. height: math.unit(9, "feet"),
  45531. weight: math.unit(240, "lb"),
  45532. name: "Back",
  45533. image: {
  45534. source: "./media/characters/kuzco/back.svg",
  45535. extra: 1603/1514,
  45536. bottom: 14/1617
  45537. }
  45538. },
  45539. },
  45540. [
  45541. {
  45542. name: "Normal",
  45543. height: math.unit(9, "feet"),
  45544. default: true
  45545. },
  45546. ]
  45547. ))
  45548. characterMakers.push(() => makeCharacter(
  45549. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45550. {
  45551. side: {
  45552. height: math.unit(2, "meters"),
  45553. weight: math.unit(300, "kg"),
  45554. name: "Side",
  45555. image: {
  45556. source: "./media/characters/ceruleus/side.svg",
  45557. extra: 1068/974,
  45558. bottom: 126/1194
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(16, "meters"),
  45566. default: true
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45572. {
  45573. front: {
  45574. height: math.unit(9, "feet"),
  45575. weight: math.unit(500, "kg"),
  45576. name: "Front",
  45577. image: {
  45578. source: "./media/characters/acouya/front.svg",
  45579. extra: 1660/1473,
  45580. bottom: 28/1688
  45581. }
  45582. },
  45583. },
  45584. [
  45585. {
  45586. name: "Normal",
  45587. height: math.unit(9, "feet"),
  45588. default: true
  45589. },
  45590. ]
  45591. ))
  45592. characterMakers.push(() => makeCharacter(
  45593. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45594. {
  45595. front: {
  45596. height: math.unit(5 + 6/12, "feet"),
  45597. weight: math.unit(195, "lb"),
  45598. name: "Front",
  45599. image: {
  45600. source: "./media/characters/vant/front.svg",
  45601. extra: 1396/1320,
  45602. bottom: 20/1416
  45603. }
  45604. },
  45605. back: {
  45606. height: math.unit(5 + 6/12, "feet"),
  45607. weight: math.unit(195, "lb"),
  45608. name: "Back",
  45609. image: {
  45610. source: "./media/characters/vant/back.svg",
  45611. extra: 1396/1320,
  45612. bottom: 20/1416
  45613. }
  45614. },
  45615. maw: {
  45616. height: math.unit(0.75, "feet"),
  45617. name: "Maw",
  45618. image: {
  45619. source: "./media/characters/vant/maw.svg"
  45620. }
  45621. },
  45622. paw: {
  45623. height: math.unit(1.07, "feet"),
  45624. name: "Paw",
  45625. image: {
  45626. source: "./media/characters/vant/paw.svg"
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Micro",
  45633. height: math.unit(0.25, "inches")
  45634. },
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(5 + 6/12, "feet"),
  45638. default: true
  45639. },
  45640. {
  45641. name: "Macro",
  45642. height: math.unit(75, "feet")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(30, "meters"),
  45651. weight: math.unit(363, "tons"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/ahra/front.svg",
  45655. extra: 1914/1814,
  45656. bottom: 46/1960
  45657. }
  45658. },
  45659. },
  45660. [
  45661. {
  45662. name: "Macro",
  45663. height: math.unit(30, "meters"),
  45664. default: true
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45670. {
  45671. undressed: {
  45672. height: math.unit(2, "m"),
  45673. weight: math.unit(250, "kg"),
  45674. name: "Undressed",
  45675. image: {
  45676. source: "./media/characters/coriander/undressed.svg",
  45677. extra: 1757/1606,
  45678. bottom: 107/1864
  45679. }
  45680. },
  45681. dressed: {
  45682. height: math.unit(2, "m"),
  45683. weight: math.unit(250, "kg"),
  45684. name: "Dressed",
  45685. image: {
  45686. source: "./media/characters/coriander/dressed.svg",
  45687. extra: 1757/1606,
  45688. bottom: 107/1864
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Normal",
  45695. height: math.unit(4, "meters"),
  45696. default: true
  45697. },
  45698. {
  45699. name: "XL",
  45700. height: math.unit(6, "meters")
  45701. },
  45702. {
  45703. name: "XXL",
  45704. height: math.unit(8, "meters")
  45705. },
  45706. ]
  45707. ))
  45708. characterMakers.push(() => makeCharacter(
  45709. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45710. {
  45711. front: {
  45712. height: math.unit(6, "feet"),
  45713. name: "Front",
  45714. image: {
  45715. source: "./media/characters/syrinx/front.svg",
  45716. extra: 1557/1259,
  45717. bottom: 171/1728
  45718. }
  45719. },
  45720. },
  45721. [
  45722. {
  45723. name: "Normal",
  45724. height: math.unit(6 + 3/12, "feet"),
  45725. default: true
  45726. },
  45727. ]
  45728. ))
  45729. characterMakers.push(() => makeCharacter(
  45730. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45731. {
  45732. front: {
  45733. height: math.unit(11 + 6/12, "feet"),
  45734. weight: math.unit(1.5, "tons"),
  45735. name: "Front",
  45736. image: {
  45737. source: "./media/characters/bor/front.svg",
  45738. extra: 1189/1109,
  45739. bottom: 170/1359
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Normal",
  45746. height: math.unit(11 + 6/12, "feet"),
  45747. default: true
  45748. },
  45749. {
  45750. name: "Macro",
  45751. height: math.unit(32 + 9/12, "feet")
  45752. },
  45753. ]
  45754. ))
  45755. characterMakers.push(() => makeCharacter(
  45756. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45757. {
  45758. anthro: {
  45759. height: math.unit(9, "feet"),
  45760. weight: math.unit(2076, "lb"),
  45761. name: "Anthro",
  45762. image: {
  45763. source: "./media/characters/abacus/anthro.svg",
  45764. extra: 1540/1494,
  45765. bottom: 233/1773
  45766. }
  45767. },
  45768. pigeon: {
  45769. height: math.unit(1, "feet"),
  45770. name: "Pigeon",
  45771. image: {
  45772. source: "./media/characters/abacus/pigeon.svg",
  45773. extra: 528/525,
  45774. bottom: 46/574
  45775. }
  45776. },
  45777. },
  45778. [
  45779. {
  45780. name: "Normal",
  45781. height: math.unit(9, "feet"),
  45782. default: true
  45783. },
  45784. ]
  45785. ))
  45786. characterMakers.push(() => makeCharacter(
  45787. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45788. {
  45789. side: {
  45790. height: math.unit(6, "feet"),
  45791. name: "Side",
  45792. image: {
  45793. source: "./media/characters/delkhan/side.svg",
  45794. extra: 1884/1786,
  45795. bottom: 308/2192
  45796. }
  45797. },
  45798. head: {
  45799. height: math.unit(3.38, "feet"),
  45800. name: "Head",
  45801. image: {
  45802. source: "./media/characters/delkhan/head.svg"
  45803. }
  45804. },
  45805. },
  45806. [
  45807. {
  45808. name: "Normal",
  45809. height: math.unit(72, "feet"),
  45810. default: true
  45811. },
  45812. {
  45813. name: "Giant",
  45814. height: math.unit(172, "feet")
  45815. },
  45816. ]
  45817. ))
  45818. characterMakers.push(() => makeCharacter(
  45819. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45820. {
  45821. standing: {
  45822. height: math.unit(6, "feet"),
  45823. name: "Standing",
  45824. image: {
  45825. source: "./media/characters/euchidat/standing.svg",
  45826. extra: 1612/1553,
  45827. bottom: 116/1728
  45828. }
  45829. },
  45830. leaning: {
  45831. height: math.unit(6, "feet"),
  45832. name: "Leaning",
  45833. image: {
  45834. source: "./media/characters/euchidat/leaning.svg",
  45835. extra: 1719/1674,
  45836. bottom: 27/1746
  45837. }
  45838. },
  45839. },
  45840. [
  45841. {
  45842. name: "Normal",
  45843. height: math.unit(175, "feet"),
  45844. default: true
  45845. },
  45846. {
  45847. name: "Megamacro",
  45848. height: math.unit(190, "miles")
  45849. },
  45850. {
  45851. name: "Gigamacro",
  45852. height: math.unit(190000, "miles")
  45853. },
  45854. ]
  45855. ))
  45856. characterMakers.push(() => makeCharacter(
  45857. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45858. {
  45859. front: {
  45860. height: math.unit(6, "feet"),
  45861. weight: math.unit(150, "lb"),
  45862. name: "Front",
  45863. image: {
  45864. source: "./media/characters/rebecca-stack/front.svg",
  45865. extra: 1256/1201,
  45866. bottom: 18/1274
  45867. }
  45868. },
  45869. },
  45870. [
  45871. {
  45872. name: "Normal",
  45873. height: math.unit(5 + 8/12, "feet"),
  45874. default: true
  45875. },
  45876. {
  45877. name: "Demolitionist",
  45878. height: math.unit(200, "feet")
  45879. },
  45880. {
  45881. name: "Out of Control",
  45882. height: math.unit(2, "miles")
  45883. },
  45884. {
  45885. name: "Giga",
  45886. height: math.unit(7200, "miles")
  45887. },
  45888. ]
  45889. ))
  45890. characterMakers.push(() => makeCharacter(
  45891. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45892. {
  45893. front: {
  45894. height: math.unit(6, "feet"),
  45895. weight: math.unit(150, "lb"),
  45896. name: "Front",
  45897. image: {
  45898. source: "./media/characters/jenny-cartwright/front.svg",
  45899. extra: 1384/1376,
  45900. bottom: 58/1442
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Normal",
  45907. height: math.unit(6 + 7/12, "feet"),
  45908. default: true
  45909. },
  45910. {
  45911. name: "Librarian",
  45912. height: math.unit(55, "feet")
  45913. },
  45914. {
  45915. name: "Sightseer",
  45916. height: math.unit(50, "miles")
  45917. },
  45918. {
  45919. name: "Giga",
  45920. height: math.unit(30000, "miles")
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45926. {
  45927. nude: {
  45928. height: math.unit(8, "feet"),
  45929. weight: math.unit(225, "lb"),
  45930. name: "Nude",
  45931. image: {
  45932. source: "./media/characters/marvy/nude.svg",
  45933. extra: 1900/1683,
  45934. bottom: 89/1989
  45935. }
  45936. },
  45937. dressed: {
  45938. height: math.unit(8, "feet"),
  45939. weight: math.unit(225, "lb"),
  45940. name: "Dressed",
  45941. image: {
  45942. source: "./media/characters/marvy/dressed.svg",
  45943. extra: 1900/1683,
  45944. bottom: 89/1989
  45945. }
  45946. },
  45947. head: {
  45948. height: math.unit(2.85, "feet"),
  45949. name: "Head",
  45950. image: {
  45951. source: "./media/characters/marvy/head.svg"
  45952. }
  45953. },
  45954. },
  45955. [
  45956. {
  45957. name: "Normal",
  45958. height: math.unit(8, "feet"),
  45959. default: true
  45960. },
  45961. ]
  45962. ))
  45963. characterMakers.push(() => makeCharacter(
  45964. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45965. {
  45966. front: {
  45967. height: math.unit(8, "feet"),
  45968. weight: math.unit(250, "lb"),
  45969. name: "Front",
  45970. image: {
  45971. source: "./media/characters/leah/front.svg",
  45972. extra: 1257/1149,
  45973. bottom: 109/1366
  45974. }
  45975. },
  45976. },
  45977. [
  45978. {
  45979. name: "Normal",
  45980. height: math.unit(8, "feet"),
  45981. default: true
  45982. },
  45983. {
  45984. name: "Minimacro",
  45985. height: math.unit(40, "feet")
  45986. },
  45987. {
  45988. name: "Macro",
  45989. height: math.unit(124, "feet")
  45990. },
  45991. {
  45992. name: "Megamacro",
  45993. height: math.unit(850, "feet")
  45994. },
  45995. ]
  45996. ))
  45997. characterMakers.push(() => makeCharacter(
  45998. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45999. {
  46000. side: {
  46001. height: math.unit(13 + 6/12, "feet"),
  46002. weight: math.unit(3200, "lb"),
  46003. name: "Side",
  46004. image: {
  46005. source: "./media/characters/alvir/side.svg",
  46006. extra: 896/589,
  46007. bottom: 26/922
  46008. }
  46009. },
  46010. },
  46011. [
  46012. {
  46013. name: "Normal",
  46014. height: math.unit(13 + 6/12, "feet"),
  46015. default: true
  46016. },
  46017. ]
  46018. ))
  46019. characterMakers.push(() => makeCharacter(
  46020. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46021. {
  46022. front: {
  46023. height: math.unit(5 + 4/12, "feet"),
  46024. weight: math.unit(236, "lb"),
  46025. name: "Front",
  46026. image: {
  46027. source: "./media/characters/zaina-khalil/front.svg",
  46028. extra: 1533/1485,
  46029. bottom: 94/1627
  46030. }
  46031. },
  46032. side: {
  46033. height: math.unit(5 + 4/12, "feet"),
  46034. weight: math.unit(236, "lb"),
  46035. name: "Side",
  46036. image: {
  46037. source: "./media/characters/zaina-khalil/side.svg",
  46038. extra: 1537/1498,
  46039. bottom: 66/1603
  46040. }
  46041. },
  46042. back: {
  46043. height: math.unit(5 + 4/12, "feet"),
  46044. weight: math.unit(236, "lb"),
  46045. name: "Back",
  46046. image: {
  46047. source: "./media/characters/zaina-khalil/back.svg",
  46048. extra: 1546/1494,
  46049. bottom: 89/1635
  46050. }
  46051. },
  46052. },
  46053. [
  46054. {
  46055. name: "Normal",
  46056. height: math.unit(5 + 4/12, "feet"),
  46057. default: true
  46058. },
  46059. ]
  46060. ))
  46061. characterMakers.push(() => makeCharacter(
  46062. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46063. {
  46064. side: {
  46065. height: math.unit(12, "feet"),
  46066. weight: math.unit(4000, "lb"),
  46067. name: "Side",
  46068. image: {
  46069. source: "./media/characters/terry/side.svg",
  46070. extra: 1518/1439,
  46071. bottom: 149/1667
  46072. }
  46073. },
  46074. },
  46075. [
  46076. {
  46077. name: "Normal",
  46078. height: math.unit(12, "feet"),
  46079. default: true
  46080. },
  46081. ]
  46082. ))
  46083. characterMakers.push(() => makeCharacter(
  46084. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46085. {
  46086. front: {
  46087. height: math.unit(12, "feet"),
  46088. weight: math.unit(1500, "lb"),
  46089. name: "Front",
  46090. image: {
  46091. source: "./media/characters/kahea/front.svg",
  46092. extra: 1722/1617,
  46093. bottom: 179/1901
  46094. }
  46095. },
  46096. },
  46097. [
  46098. {
  46099. name: "Normal",
  46100. height: math.unit(12, "feet"),
  46101. default: true
  46102. },
  46103. ]
  46104. ))
  46105. characterMakers.push(() => makeCharacter(
  46106. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46107. {
  46108. demonFront: {
  46109. height: math.unit(36, "feet"),
  46110. name: "Front",
  46111. image: {
  46112. source: "./media/characters/alex-xuria/demon-front.svg",
  46113. extra: 1705/1673,
  46114. bottom: 198/1903
  46115. },
  46116. form: "demon",
  46117. default: true
  46118. },
  46119. demonBack: {
  46120. height: math.unit(36, "feet"),
  46121. name: "Back",
  46122. image: {
  46123. source: "./media/characters/alex-xuria/demon-back.svg",
  46124. extra: 1725/1693,
  46125. bottom: 70/1795
  46126. },
  46127. form: "demon"
  46128. },
  46129. demonHead: {
  46130. height: math.unit(2.14, "meters"),
  46131. name: "Head",
  46132. image: {
  46133. source: "./media/characters/alex-xuria/demon-head.svg"
  46134. },
  46135. form: "demon"
  46136. },
  46137. demonHand: {
  46138. height: math.unit(1.61, "meters"),
  46139. name: "Hand",
  46140. image: {
  46141. source: "./media/characters/alex-xuria/demon-hand.svg"
  46142. },
  46143. form: "demon"
  46144. },
  46145. demonPaw: {
  46146. height: math.unit(1.35, "meters"),
  46147. name: "Paw",
  46148. image: {
  46149. source: "./media/characters/alex-xuria/demon-paw.svg"
  46150. },
  46151. form: "demon"
  46152. },
  46153. demonFoot: {
  46154. height: math.unit(2.2, "meters"),
  46155. name: "Foot",
  46156. image: {
  46157. source: "./media/characters/alex-xuria/demon-foot.svg"
  46158. },
  46159. form: "demon"
  46160. },
  46161. demonCock: {
  46162. height: math.unit(1.74, "meters"),
  46163. name: "Cock",
  46164. image: {
  46165. source: "./media/characters/alex-xuria/demon-cock.svg"
  46166. },
  46167. form: "demon"
  46168. },
  46169. demonTailClosed: {
  46170. height: math.unit(1.47, "meters"),
  46171. name: "Tail (Closed)",
  46172. image: {
  46173. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46174. },
  46175. form: "demon"
  46176. },
  46177. demonTailOpen: {
  46178. height: math.unit(2.85, "meters"),
  46179. name: "Tail (Open)",
  46180. image: {
  46181. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46182. },
  46183. form: "demon"
  46184. },
  46185. incubusFront: {
  46186. height: math.unit(12, "feet"),
  46187. name: "Front",
  46188. image: {
  46189. source: "./media/characters/alex-xuria/incubus-front.svg",
  46190. extra: 1754/1677,
  46191. bottom: 125/1879
  46192. },
  46193. form: "incubus",
  46194. default: true
  46195. },
  46196. incubusBack: {
  46197. height: math.unit(12, "feet"),
  46198. name: "Back",
  46199. image: {
  46200. source: "./media/characters/alex-xuria/incubus-back.svg",
  46201. extra: 1702/1647,
  46202. bottom: 30/1732
  46203. },
  46204. form: "incubus"
  46205. },
  46206. incubusHead: {
  46207. height: math.unit(3.45, "feet"),
  46208. name: "Head",
  46209. image: {
  46210. source: "./media/characters/alex-xuria/incubus-head.svg"
  46211. },
  46212. form: "incubus"
  46213. },
  46214. rabbitFront: {
  46215. height: math.unit(6, "feet"),
  46216. name: "Front",
  46217. image: {
  46218. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46219. extra: 1369/1349,
  46220. bottom: 45/1414
  46221. },
  46222. form: "rabbit",
  46223. default: true
  46224. },
  46225. rabbitSide: {
  46226. height: math.unit(6, "feet"),
  46227. name: "Side",
  46228. image: {
  46229. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46230. extra: 1370/1356,
  46231. bottom: 37/1407
  46232. },
  46233. form: "rabbit"
  46234. },
  46235. rabbitBack: {
  46236. height: math.unit(6, "feet"),
  46237. name: "Back",
  46238. image: {
  46239. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46240. extra: 1375/1358,
  46241. bottom: 43/1418
  46242. },
  46243. form: "rabbit"
  46244. },
  46245. },
  46246. [
  46247. {
  46248. name: "Normal",
  46249. height: math.unit(6, "feet"),
  46250. default: true,
  46251. form: "rabbit"
  46252. },
  46253. {
  46254. name: "Incubus",
  46255. height: math.unit(12, "feet"),
  46256. default: true,
  46257. form: "incubus"
  46258. },
  46259. {
  46260. name: "Demon",
  46261. height: math.unit(36, "feet"),
  46262. default: true,
  46263. form: "demon"
  46264. }
  46265. ],
  46266. {
  46267. "demon": {
  46268. name: "Demon",
  46269. default: true
  46270. },
  46271. "incubus": {
  46272. name: "Incubus",
  46273. },
  46274. "rabbit": {
  46275. name: "Rabbit"
  46276. }
  46277. }
  46278. ))
  46279. characterMakers.push(() => makeCharacter(
  46280. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46281. {
  46282. front: {
  46283. height: math.unit(7 + 5/12, "feet"),
  46284. weight: math.unit(510, "lb"),
  46285. name: "Front",
  46286. image: {
  46287. source: "./media/characters/syrup/front.svg",
  46288. extra: 932/916,
  46289. bottom: 26/958
  46290. }
  46291. },
  46292. },
  46293. [
  46294. {
  46295. name: "Normal",
  46296. height: math.unit(7 + 5/12, "feet"),
  46297. default: true
  46298. },
  46299. {
  46300. name: "Big",
  46301. height: math.unit(50, "feet")
  46302. },
  46303. {
  46304. name: "Macro",
  46305. height: math.unit(300, "feet")
  46306. },
  46307. {
  46308. name: "Megamacro",
  46309. height: math.unit(1, "mile")
  46310. },
  46311. ]
  46312. ))
  46313. characterMakers.push(() => makeCharacter(
  46314. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46315. {
  46316. front: {
  46317. height: math.unit(6 + 9/12, "feet"),
  46318. name: "Front",
  46319. image: {
  46320. source: "./media/characters/zeimne/front.svg",
  46321. extra: 1969/1806,
  46322. bottom: 53/2022
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "Normal",
  46329. height: math.unit(6 + 9/12, "feet"),
  46330. default: true
  46331. },
  46332. {
  46333. name: "Giant",
  46334. height: math.unit(550, "feet")
  46335. },
  46336. {
  46337. name: "Mega",
  46338. height: math.unit(3, "miles")
  46339. },
  46340. {
  46341. name: "Giga",
  46342. height: math.unit(250, "miles")
  46343. },
  46344. {
  46345. name: "Tera",
  46346. height: math.unit(1, "AU")
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(5 + 2/12, "feet"),
  46355. name: "Front",
  46356. image: {
  46357. source: "./media/characters/grar/front.svg",
  46358. extra: 1331/1119,
  46359. bottom: 60/1391
  46360. }
  46361. },
  46362. back: {
  46363. height: math.unit(5 + 2/12, "feet"),
  46364. name: "Back",
  46365. image: {
  46366. source: "./media/characters/grar/back.svg",
  46367. extra: 1385/1169,
  46368. bottom: 23/1408
  46369. }
  46370. },
  46371. },
  46372. [
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(5 + 2/12, "feet"),
  46376. default: true
  46377. },
  46378. ]
  46379. ))
  46380. characterMakers.push(() => makeCharacter(
  46381. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46382. {
  46383. front: {
  46384. height: math.unit(13 + 7/12, "feet"),
  46385. weight: math.unit(2200, "lb"),
  46386. name: "Front",
  46387. image: {
  46388. source: "./media/characters/endraya/front.svg",
  46389. extra: 1289/1215,
  46390. bottom: 50/1339
  46391. }
  46392. },
  46393. nude: {
  46394. height: math.unit(13 + 7/12, "feet"),
  46395. weight: math.unit(2200, "lb"),
  46396. name: "Nude",
  46397. image: {
  46398. source: "./media/characters/endraya/nude.svg",
  46399. extra: 1247/1171,
  46400. bottom: 40/1287
  46401. }
  46402. },
  46403. head: {
  46404. height: math.unit(2.6, "feet"),
  46405. name: "Head",
  46406. image: {
  46407. source: "./media/characters/endraya/head.svg"
  46408. }
  46409. },
  46410. slit: {
  46411. height: math.unit(3.4, "feet"),
  46412. name: "Slit",
  46413. image: {
  46414. source: "./media/characters/endraya/slit.svg"
  46415. }
  46416. },
  46417. },
  46418. [
  46419. {
  46420. name: "Normal",
  46421. height: math.unit(13 + 7/12, "feet"),
  46422. default: true
  46423. },
  46424. {
  46425. name: "Macro",
  46426. height: math.unit(200, "feet")
  46427. },
  46428. ]
  46429. ))
  46430. characterMakers.push(() => makeCharacter(
  46431. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46432. {
  46433. front: {
  46434. height: math.unit(1.81, "meters"),
  46435. weight: math.unit(69, "kg"),
  46436. name: "Front",
  46437. image: {
  46438. source: "./media/characters/rodryana/front.svg",
  46439. extra: 2002/1921,
  46440. bottom: 53/2055
  46441. }
  46442. },
  46443. back: {
  46444. height: math.unit(1.81, "meters"),
  46445. weight: math.unit(69, "kg"),
  46446. name: "Back",
  46447. image: {
  46448. source: "./media/characters/rodryana/back.svg",
  46449. extra: 1993/1926,
  46450. bottom: 48/2041
  46451. }
  46452. },
  46453. maw: {
  46454. height: math.unit(0.19769417475, "meters"),
  46455. name: "Maw",
  46456. image: {
  46457. source: "./media/characters/rodryana/maw.svg"
  46458. }
  46459. },
  46460. slit: {
  46461. height: math.unit(0.31631067961, "meters"),
  46462. name: "Slit",
  46463. image: {
  46464. source: "./media/characters/rodryana/slit.svg"
  46465. }
  46466. },
  46467. },
  46468. [
  46469. {
  46470. name: "Normal",
  46471. height: math.unit(1.81, "meters")
  46472. },
  46473. {
  46474. name: "Mini Macro",
  46475. height: math.unit(181, "meters")
  46476. },
  46477. {
  46478. name: "Macro",
  46479. height: math.unit(452, "meters"),
  46480. default: true
  46481. },
  46482. {
  46483. name: "Mega Macro",
  46484. height: math.unit(1.375, "km")
  46485. },
  46486. {
  46487. name: "Giga Macro",
  46488. height: math.unit(13.575, "km")
  46489. },
  46490. ]
  46491. ))
  46492. characterMakers.push(() => makeCharacter(
  46493. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46494. {
  46495. front: {
  46496. height: math.unit(6, "feet"),
  46497. weight: math.unit(1000, "lb"),
  46498. name: "Front",
  46499. image: {
  46500. source: "./media/characters/asaya/front.svg",
  46501. extra: 1460/1200,
  46502. bottom: 71/1531
  46503. }
  46504. },
  46505. },
  46506. [
  46507. {
  46508. name: "Normal",
  46509. height: math.unit(8, "km"),
  46510. default: true
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46516. {
  46517. front: {
  46518. height: math.unit(3.5, "meters"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/sarzu-and-israz/front.svg",
  46522. extra: 1570/1558,
  46523. bottom: 150/1720
  46524. },
  46525. },
  46526. back: {
  46527. height: math.unit(3.5, "meters"),
  46528. name: "Back",
  46529. image: {
  46530. source: "./media/characters/sarzu-and-israz/back.svg",
  46531. extra: 1523/1509,
  46532. bottom: 132/1655
  46533. },
  46534. },
  46535. frontFemale: {
  46536. height: math.unit(3.5, "meters"),
  46537. name: "Front (Female)",
  46538. image: {
  46539. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46540. extra: 1570/1558,
  46541. bottom: 150/1720
  46542. },
  46543. },
  46544. frontHerm: {
  46545. height: math.unit(3.5, "meters"),
  46546. name: "Front (Herm)",
  46547. image: {
  46548. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46549. extra: 1570/1558,
  46550. bottom: 150/1720
  46551. },
  46552. },
  46553. },
  46554. [
  46555. {
  46556. name: "Normal",
  46557. height: math.unit(3.5, "meters"),
  46558. default: true,
  46559. },
  46560. {
  46561. name: "Macro",
  46562. height: math.unit(65.5, "meters"),
  46563. },
  46564. ],
  46565. ))
  46566. characterMakers.push(() => makeCharacter(
  46567. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46568. {
  46569. front: {
  46570. height: math.unit(6, "feet"),
  46571. weight: math.unit(250, "lb"),
  46572. name: "Front",
  46573. image: {
  46574. source: "./media/characters/zenimma/front.svg",
  46575. extra: 1346/1320,
  46576. bottom: 58/1404
  46577. }
  46578. },
  46579. back: {
  46580. height: math.unit(6, "feet"),
  46581. weight: math.unit(250, "lb"),
  46582. name: "Back",
  46583. image: {
  46584. source: "./media/characters/zenimma/back.svg",
  46585. extra: 1324/1308,
  46586. bottom: 44/1368
  46587. }
  46588. },
  46589. dick: {
  46590. height: math.unit(1.44, "feet"),
  46591. name: "Dick",
  46592. image: {
  46593. source: "./media/characters/zenimma/dick.svg"
  46594. }
  46595. },
  46596. },
  46597. [
  46598. {
  46599. name: "Canon Height",
  46600. height: math.unit(66, "miles"),
  46601. default: true
  46602. },
  46603. ]
  46604. ))
  46605. characterMakers.push(() => makeCharacter(
  46606. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46607. {
  46608. nude: {
  46609. height: math.unit(6, "feet"),
  46610. weight: math.unit(150, "lb"),
  46611. name: "Nude",
  46612. image: {
  46613. source: "./media/characters/shavon/nude.svg",
  46614. extra: 1242/1096,
  46615. bottom: 98/1340
  46616. }
  46617. },
  46618. dressed: {
  46619. height: math.unit(6, "feet"),
  46620. weight: math.unit(150, "lb"),
  46621. name: "Dressed",
  46622. image: {
  46623. source: "./media/characters/shavon/dressed.svg",
  46624. extra: 1242/1096,
  46625. bottom: 98/1340
  46626. }
  46627. },
  46628. },
  46629. [
  46630. {
  46631. name: "Macro",
  46632. height: math.unit(255, "feet"),
  46633. default: true
  46634. },
  46635. ]
  46636. ))
  46637. characterMakers.push(() => makeCharacter(
  46638. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46639. {
  46640. front: {
  46641. height: math.unit(6, "feet"),
  46642. name: "Front",
  46643. image: {
  46644. source: "./media/characters/steph/front.svg",
  46645. extra: 1430/1330,
  46646. bottom: 54/1484
  46647. }
  46648. },
  46649. },
  46650. [
  46651. {
  46652. name: "Normal",
  46653. height: math.unit(6, "feet"),
  46654. default: true
  46655. },
  46656. ]
  46657. ))
  46658. characterMakers.push(() => makeCharacter(
  46659. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46660. {
  46661. front: {
  46662. height: math.unit(9, "feet"),
  46663. weight: math.unit(400, "lb"),
  46664. name: "Front",
  46665. image: {
  46666. source: "./media/characters/kil'aman/front.svg",
  46667. extra: 1210/1159,
  46668. bottom: 109/1319
  46669. }
  46670. },
  46671. head: {
  46672. height: math.unit(2.14, "feet"),
  46673. name: "Head",
  46674. image: {
  46675. source: "./media/characters/kil'aman/head.svg"
  46676. }
  46677. },
  46678. maw: {
  46679. height: math.unit(1.21, "feet"),
  46680. name: "Maw",
  46681. image: {
  46682. source: "./media/characters/kil'aman/maw.svg"
  46683. }
  46684. },
  46685. foot: {
  46686. height: math.unit(1.7, "feet"),
  46687. name: "Foot",
  46688. image: {
  46689. source: "./media/characters/kil'aman/foot.svg"
  46690. }
  46691. },
  46692. dick: {
  46693. height: math.unit(2.1, "feet"),
  46694. name: "Dick",
  46695. image: {
  46696. source: "./media/characters/kil'aman/dick.svg"
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(9, "feet")
  46704. },
  46705. {
  46706. name: "Canon Height",
  46707. height: math.unit(10, "miles"),
  46708. default: true
  46709. },
  46710. {
  46711. name: "Maximum",
  46712. height: math.unit(6e9, "miles")
  46713. },
  46714. ]
  46715. ))
  46716. characterMakers.push(() => makeCharacter(
  46717. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46718. {
  46719. front: {
  46720. height: math.unit(90, "feet"),
  46721. weight: math.unit(675000, "lb"),
  46722. name: "Front",
  46723. image: {
  46724. source: "./media/characters/qadan/front.svg",
  46725. extra: 1012/1004,
  46726. bottom: 78/1090
  46727. }
  46728. },
  46729. back: {
  46730. height: math.unit(90, "feet"),
  46731. weight: math.unit(675000, "lb"),
  46732. name: "Back",
  46733. image: {
  46734. source: "./media/characters/qadan/back.svg",
  46735. extra: 1042/1031,
  46736. bottom: 55/1097
  46737. }
  46738. },
  46739. armored: {
  46740. height: math.unit(90, "feet"),
  46741. weight: math.unit(675000, "lb"),
  46742. name: "Armored",
  46743. image: {
  46744. source: "./media/characters/qadan/armored.svg",
  46745. extra: 1047/1037,
  46746. bottom: 48/1095
  46747. }
  46748. },
  46749. },
  46750. [
  46751. {
  46752. name: "Normal",
  46753. height: math.unit(90, "feet"),
  46754. default: true
  46755. },
  46756. ]
  46757. ))
  46758. characterMakers.push(() => makeCharacter(
  46759. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46760. {
  46761. front: {
  46762. height: math.unit(6, "feet"),
  46763. weight: math.unit(225, "lb"),
  46764. name: "Front",
  46765. image: {
  46766. source: "./media/characters/brooke/front.svg",
  46767. extra: 1050/1010,
  46768. bottom: 66/1116
  46769. }
  46770. },
  46771. back: {
  46772. height: math.unit(6, "feet"),
  46773. weight: math.unit(225, "lb"),
  46774. name: "Back",
  46775. image: {
  46776. source: "./media/characters/brooke/back.svg",
  46777. extra: 1053/1013,
  46778. bottom: 41/1094
  46779. }
  46780. },
  46781. dressed: {
  46782. height: math.unit(6, "feet"),
  46783. weight: math.unit(225, "lb"),
  46784. name: "Dressed",
  46785. image: {
  46786. source: "./media/characters/brooke/dressed.svg",
  46787. extra: 1050/1010,
  46788. bottom: 66/1116
  46789. }
  46790. },
  46791. },
  46792. [
  46793. {
  46794. name: "Canon Height",
  46795. height: math.unit(500, "miles"),
  46796. default: true
  46797. },
  46798. ]
  46799. ))
  46800. characterMakers.push(() => makeCharacter(
  46801. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46802. {
  46803. front: {
  46804. height: math.unit(6 + 2/12, "feet"),
  46805. weight: math.unit(210, "lb"),
  46806. name: "Front",
  46807. image: {
  46808. source: "./media/characters/wubs/front.svg",
  46809. extra: 1345/1325,
  46810. bottom: 70/1415
  46811. }
  46812. },
  46813. back: {
  46814. height: math.unit(6 + 2/12, "feet"),
  46815. weight: math.unit(210, "lb"),
  46816. name: "Back",
  46817. image: {
  46818. source: "./media/characters/wubs/back.svg",
  46819. extra: 1296/1275,
  46820. bottom: 58/1354
  46821. }
  46822. },
  46823. },
  46824. [
  46825. {
  46826. name: "Normal",
  46827. height: math.unit(6 + 2/12, "feet"),
  46828. default: true
  46829. },
  46830. {
  46831. name: "Macro",
  46832. height: math.unit(1000, "feet")
  46833. },
  46834. {
  46835. name: "Megamacro",
  46836. height: math.unit(1, "mile")
  46837. },
  46838. ]
  46839. ))
  46840. characterMakers.push(() => makeCharacter(
  46841. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46842. {
  46843. front: {
  46844. height: math.unit(4, "feet"),
  46845. weight: math.unit(120, "lb"),
  46846. name: "Front",
  46847. image: {
  46848. source: "./media/characters/blue/front.svg",
  46849. extra: 1636/1525,
  46850. bottom: 43/1679
  46851. }
  46852. },
  46853. back: {
  46854. height: math.unit(4, "feet"),
  46855. weight: math.unit(120, "lb"),
  46856. name: "Back",
  46857. image: {
  46858. source: "./media/characters/blue/back.svg",
  46859. extra: 1660/1560,
  46860. bottom: 57/1717
  46861. }
  46862. },
  46863. paws: {
  46864. height: math.unit(0.826, "feet"),
  46865. name: "Paws",
  46866. image: {
  46867. source: "./media/characters/blue/paws.svg"
  46868. }
  46869. },
  46870. },
  46871. [
  46872. {
  46873. name: "Micro",
  46874. height: math.unit(3, "inches")
  46875. },
  46876. {
  46877. name: "Normal",
  46878. height: math.unit(4, "feet"),
  46879. default: true
  46880. },
  46881. {
  46882. name: "Femenine Form",
  46883. height: math.unit(14, "feet")
  46884. },
  46885. {
  46886. name: "Werebat Form",
  46887. height: math.unit(18, "feet")
  46888. },
  46889. ]
  46890. ))
  46891. characterMakers.push(() => makeCharacter(
  46892. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46893. {
  46894. female: {
  46895. height: math.unit(7 + 4/12, "feet"),
  46896. weight: math.unit(243, "lb"),
  46897. name: "Female",
  46898. image: {
  46899. source: "./media/characters/kaya/female.svg",
  46900. extra: 975/898,
  46901. bottom: 34/1009
  46902. }
  46903. },
  46904. herm: {
  46905. height: math.unit(7 + 4/12, "feet"),
  46906. weight: math.unit(243, "lb"),
  46907. name: "Herm",
  46908. image: {
  46909. source: "./media/characters/kaya/herm.svg",
  46910. extra: 975/898,
  46911. bottom: 34/1009
  46912. }
  46913. },
  46914. },
  46915. [
  46916. {
  46917. name: "Normal",
  46918. height: math.unit(7 + 4/12, "feet"),
  46919. default: true
  46920. },
  46921. ]
  46922. ))
  46923. characterMakers.push(() => makeCharacter(
  46924. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46925. {
  46926. female: {
  46927. height: math.unit(9 + 4/12, "feet"),
  46928. weight: math.unit(398, "lb"),
  46929. name: "Female",
  46930. image: {
  46931. source: "./media/characters/kassandra/female.svg",
  46932. extra: 908/839,
  46933. bottom: 61/969
  46934. }
  46935. },
  46936. intersex: {
  46937. height: math.unit(9 + 4/12, "feet"),
  46938. weight: math.unit(398, "lb"),
  46939. name: "Intersex",
  46940. image: {
  46941. source: "./media/characters/kassandra/intersex.svg",
  46942. extra: 908/839,
  46943. bottom: 61/969
  46944. }
  46945. },
  46946. },
  46947. [
  46948. {
  46949. name: "Normal",
  46950. height: math.unit(9 + 4/12, "feet"),
  46951. default: true
  46952. },
  46953. ]
  46954. ))
  46955. characterMakers.push(() => makeCharacter(
  46956. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46957. {
  46958. front: {
  46959. height: math.unit(3, "meters"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/amy/front.svg",
  46963. extra: 1380/1343,
  46964. bottom: 70/1450
  46965. }
  46966. },
  46967. back: {
  46968. height: math.unit(3, "meters"),
  46969. name: "Back",
  46970. image: {
  46971. source: "./media/characters/amy/back.svg",
  46972. extra: 1380/1347,
  46973. bottom: 66/1446
  46974. }
  46975. },
  46976. },
  46977. [
  46978. {
  46979. name: "Normal",
  46980. height: math.unit(3, "meters"),
  46981. default: true
  46982. },
  46983. ]
  46984. ))
  46985. characterMakers.push(() => makeCharacter(
  46986. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46987. {
  46988. side: {
  46989. height: math.unit(47, "cm"),
  46990. weight: math.unit(10.8, "kg"),
  46991. name: "Side",
  46992. image: {
  46993. source: "./media/characters/alphaschakal/side.svg",
  46994. extra: 1058/568,
  46995. bottom: 62/1120
  46996. }
  46997. },
  46998. back: {
  46999. height: math.unit(78, "cm"),
  47000. weight: math.unit(10.8, "kg"),
  47001. name: "Back",
  47002. image: {
  47003. source: "./media/characters/alphaschakal/back.svg",
  47004. extra: 1102/942,
  47005. bottom: 185/1287
  47006. }
  47007. },
  47008. head: {
  47009. height: math.unit(28, "cm"),
  47010. name: "Head",
  47011. image: {
  47012. source: "./media/characters/alphaschakal/head.svg",
  47013. extra: 696/508,
  47014. bottom: 0/696
  47015. }
  47016. },
  47017. paw: {
  47018. height: math.unit(16, "cm"),
  47019. name: "Paw",
  47020. image: {
  47021. source: "./media/characters/alphaschakal/paw.svg"
  47022. }
  47023. },
  47024. },
  47025. [
  47026. {
  47027. name: "Normal",
  47028. height: math.unit(47, "cm"),
  47029. default: true
  47030. },
  47031. {
  47032. name: "Macro",
  47033. height: math.unit(340, "cm")
  47034. },
  47035. ]
  47036. ))
  47037. characterMakers.push(() => makeCharacter(
  47038. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47039. {
  47040. front: {
  47041. height: math.unit(36, "earths"),
  47042. name: "Front",
  47043. image: {
  47044. source: "./media/characters/ecobyss/front.svg",
  47045. extra: 1282/1215,
  47046. bottom: 11/1293
  47047. }
  47048. },
  47049. back: {
  47050. height: math.unit(36, "earths"),
  47051. name: "Back",
  47052. image: {
  47053. source: "./media/characters/ecobyss/back.svg",
  47054. extra: 1291/1222,
  47055. bottom: 8/1299
  47056. }
  47057. },
  47058. },
  47059. [
  47060. {
  47061. name: "Normal",
  47062. height: math.unit(36, "earths"),
  47063. default: true
  47064. },
  47065. ]
  47066. ))
  47067. characterMakers.push(() => makeCharacter(
  47068. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47069. {
  47070. front: {
  47071. height: math.unit(12, "feet"),
  47072. name: "Front",
  47073. image: {
  47074. source: "./media/characters/vasuk/front.svg",
  47075. extra: 1326/1207,
  47076. bottom: 64/1390
  47077. }
  47078. },
  47079. },
  47080. [
  47081. {
  47082. name: "Normal",
  47083. height: math.unit(12, "feet"),
  47084. default: true
  47085. },
  47086. ]
  47087. ))
  47088. characterMakers.push(() => makeCharacter(
  47089. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47090. {
  47091. side: {
  47092. height: math.unit(100, "feet"),
  47093. name: "Side",
  47094. image: {
  47095. source: "./media/characters/linneaus/side.svg",
  47096. extra: 987/807,
  47097. bottom: 47/1034
  47098. }
  47099. },
  47100. },
  47101. [
  47102. {
  47103. name: "Macro",
  47104. height: math.unit(100, "feet"),
  47105. default: true
  47106. },
  47107. ]
  47108. ))
  47109. characterMakers.push(() => makeCharacter(
  47110. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47111. {
  47112. front: {
  47113. height: math.unit(8, "feet"),
  47114. weight: math.unit(1200, "lb"),
  47115. name: "Front",
  47116. image: {
  47117. source: "./media/characters/nyterious-daligdig/front.svg",
  47118. extra: 1284/1094,
  47119. bottom: 84/1368
  47120. }
  47121. },
  47122. back: {
  47123. height: math.unit(8, "feet"),
  47124. weight: math.unit(1200, "lb"),
  47125. name: "Back",
  47126. image: {
  47127. source: "./media/characters/nyterious-daligdig/back.svg",
  47128. extra: 1301/1121,
  47129. bottom: 129/1430
  47130. }
  47131. },
  47132. mouth: {
  47133. height: math.unit(1.464, "feet"),
  47134. name: "Mouth",
  47135. image: {
  47136. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Small",
  47143. height: math.unit(8, "feet"),
  47144. default: true
  47145. },
  47146. {
  47147. name: "Normal",
  47148. height: math.unit(15, "feet")
  47149. },
  47150. {
  47151. name: "Macro",
  47152. height: math.unit(90, "feet")
  47153. },
  47154. ]
  47155. ))
  47156. characterMakers.push(() => makeCharacter(
  47157. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47158. {
  47159. front: {
  47160. height: math.unit(7 + 4/12, "feet"),
  47161. weight: math.unit(252, "lb"),
  47162. name: "Front",
  47163. image: {
  47164. source: "./media/characters/bandel/front.svg",
  47165. extra: 1946/1775,
  47166. bottom: 26/1972
  47167. }
  47168. },
  47169. back: {
  47170. height: math.unit(7 + 4/12, "feet"),
  47171. weight: math.unit(252, "lb"),
  47172. name: "Back",
  47173. image: {
  47174. source: "./media/characters/bandel/back.svg",
  47175. extra: 1940/1770,
  47176. bottom: 25/1965
  47177. }
  47178. },
  47179. maw: {
  47180. height: math.unit(2.15, "feet"),
  47181. name: "Maw",
  47182. image: {
  47183. source: "./media/characters/bandel/maw.svg"
  47184. }
  47185. },
  47186. stomach: {
  47187. height: math.unit(1.95, "feet"),
  47188. name: "Stomach",
  47189. image: {
  47190. source: "./media/characters/bandel/stomach.svg"
  47191. }
  47192. },
  47193. },
  47194. [
  47195. {
  47196. name: "Normal",
  47197. height: math.unit(7 + 4/12, "feet"),
  47198. default: true
  47199. },
  47200. ]
  47201. ))
  47202. characterMakers.push(() => makeCharacter(
  47203. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47204. {
  47205. front: {
  47206. height: math.unit(10 + 5/12, "feet"),
  47207. weight: math.unit(773.5, "kg"),
  47208. name: "Front",
  47209. image: {
  47210. source: "./media/characters/zed/front.svg",
  47211. extra: 987/941,
  47212. bottom: 52/1039
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Short",
  47219. height: math.unit(5 + 4/12, "feet")
  47220. },
  47221. {
  47222. name: "Average",
  47223. height: math.unit(10 + 5/12, "feet"),
  47224. default: true
  47225. },
  47226. {
  47227. name: "Mini-Macro",
  47228. height: math.unit(24 + 9/12, "feet")
  47229. },
  47230. {
  47231. name: "Macro",
  47232. height: math.unit(249, "feet")
  47233. },
  47234. {
  47235. name: "Mega-Macro",
  47236. height: math.unit(12490, "feet")
  47237. },
  47238. {
  47239. name: "Giga-Macro",
  47240. height: math.unit(24.9, "miles")
  47241. },
  47242. {
  47243. name: "Tera-Macro",
  47244. height: math.unit(24900, "miles")
  47245. },
  47246. {
  47247. name: "Cosmic Scale",
  47248. height: math.unit(38.9, "lightyears")
  47249. },
  47250. {
  47251. name: "Universal Scale",
  47252. height: math.unit(138e12, "lightyears")
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(1561, "inches"),
  47261. name: "Front",
  47262. image: {
  47263. source: "./media/characters/ivan/front.svg",
  47264. extra: 1126/1071,
  47265. bottom: 26/1152
  47266. }
  47267. },
  47268. back: {
  47269. height: math.unit(1561, "inches"),
  47270. name: "Back",
  47271. image: {
  47272. source: "./media/characters/ivan/back.svg",
  47273. extra: 1134/1079,
  47274. bottom: 30/1164
  47275. }
  47276. },
  47277. },
  47278. [
  47279. {
  47280. name: "Normal",
  47281. height: math.unit(1561, "inches"),
  47282. default: true
  47283. },
  47284. ]
  47285. ))
  47286. characterMakers.push(() => makeCharacter(
  47287. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47288. {
  47289. front: {
  47290. height: math.unit(5 + 7/12, "feet"),
  47291. weight: math.unit(150, "lb"),
  47292. name: "Front",
  47293. image: {
  47294. source: "./media/characters/robin-arctic-hare/front.svg",
  47295. extra: 1148/974,
  47296. bottom: 20/1168
  47297. }
  47298. },
  47299. },
  47300. [
  47301. {
  47302. name: "Normal",
  47303. height: math.unit(5 + 7/12, "feet"),
  47304. default: true
  47305. },
  47306. ]
  47307. ))
  47308. characterMakers.push(() => makeCharacter(
  47309. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47310. {
  47311. side: {
  47312. height: math.unit(5, "feet"),
  47313. name: "Side",
  47314. image: {
  47315. source: "./media/characters/birch/side.svg",
  47316. extra: 985/796,
  47317. bottom: 111/1096
  47318. }
  47319. },
  47320. },
  47321. [
  47322. {
  47323. name: "Normal",
  47324. height: math.unit(5, "feet"),
  47325. default: true
  47326. },
  47327. ]
  47328. ))
  47329. characterMakers.push(() => makeCharacter(
  47330. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47331. {
  47332. front: {
  47333. height: math.unit(4, "feet"),
  47334. name: "Front",
  47335. image: {
  47336. source: "./media/characters/rasp/front.svg",
  47337. extra: 561/478,
  47338. bottom: 74/635
  47339. }
  47340. },
  47341. },
  47342. [
  47343. {
  47344. name: "Normal",
  47345. height: math.unit(4, "feet"),
  47346. default: true
  47347. },
  47348. ]
  47349. ))
  47350. characterMakers.push(() => makeCharacter(
  47351. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47352. {
  47353. front: {
  47354. height: math.unit(4 + 6/12, "feet"),
  47355. name: "Front",
  47356. image: {
  47357. source: "./media/characters/agatha/front.svg",
  47358. extra: 947/933,
  47359. bottom: 42/989
  47360. }
  47361. },
  47362. back: {
  47363. height: math.unit(4 + 6/12, "feet"),
  47364. name: "Back",
  47365. image: {
  47366. source: "./media/characters/agatha/back.svg",
  47367. extra: 935/922,
  47368. bottom: 48/983
  47369. }
  47370. },
  47371. },
  47372. [
  47373. {
  47374. name: "Normal",
  47375. height: math.unit(4 + 6 /12, "feet"),
  47376. default: true
  47377. },
  47378. {
  47379. name: "Max Size",
  47380. height: math.unit(500, "feet")
  47381. },
  47382. ]
  47383. ))
  47384. characterMakers.push(() => makeCharacter(
  47385. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47386. {
  47387. side: {
  47388. height: math.unit(30, "feet"),
  47389. name: "Side",
  47390. image: {
  47391. source: "./media/characters/roggy/side.svg",
  47392. extra: 909/643,
  47393. bottom: 63/972
  47394. }
  47395. },
  47396. lounging: {
  47397. height: math.unit(20, "feet"),
  47398. name: "Lounging",
  47399. image: {
  47400. source: "./media/characters/roggy/lounging.svg",
  47401. extra: 643/479,
  47402. bottom: 145/788
  47403. }
  47404. },
  47405. handpaw: {
  47406. height: math.unit(13.1, "feet"),
  47407. name: "Handpaw",
  47408. image: {
  47409. source: "./media/characters/roggy/handpaw.svg"
  47410. }
  47411. },
  47412. footpaw: {
  47413. height: math.unit(15.8, "feet"),
  47414. name: "Footpaw",
  47415. image: {
  47416. source: "./media/characters/roggy/footpaw.svg"
  47417. }
  47418. },
  47419. },
  47420. [
  47421. {
  47422. name: "Menacing",
  47423. height: math.unit(30, "feet"),
  47424. default: true
  47425. },
  47426. ]
  47427. ))
  47428. characterMakers.push(() => makeCharacter(
  47429. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47430. {
  47431. front: {
  47432. height: math.unit(5 + 7/12, "feet"),
  47433. weight: math.unit(135, "lb"),
  47434. name: "Front",
  47435. image: {
  47436. source: "./media/characters/naomi/front.svg",
  47437. extra: 1209/1154,
  47438. bottom: 129/1338
  47439. }
  47440. },
  47441. back: {
  47442. height: math.unit(5 + 7/12, "feet"),
  47443. weight: math.unit(135, "lb"),
  47444. name: "Back",
  47445. image: {
  47446. source: "./media/characters/naomi/back.svg",
  47447. extra: 1252/1190,
  47448. bottom: 23/1275
  47449. }
  47450. },
  47451. },
  47452. [
  47453. {
  47454. name: "Normal",
  47455. height: math.unit(5 + 7 /12, "feet"),
  47456. default: true
  47457. },
  47458. ]
  47459. ))
  47460. characterMakers.push(() => makeCharacter(
  47461. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47462. {
  47463. side: {
  47464. height: math.unit(35, "meters"),
  47465. name: "Side",
  47466. image: {
  47467. source: "./media/characters/kimpi/side.svg",
  47468. extra: 419/382,
  47469. bottom: 63/482
  47470. }
  47471. },
  47472. hand: {
  47473. height: math.unit(8.96, "meters"),
  47474. name: "Hand",
  47475. image: {
  47476. source: "./media/characters/kimpi/hand.svg"
  47477. }
  47478. },
  47479. },
  47480. [
  47481. {
  47482. name: "Normal",
  47483. height: math.unit(35, "meters"),
  47484. default: true
  47485. },
  47486. ]
  47487. ))
  47488. characterMakers.push(() => makeCharacter(
  47489. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47490. {
  47491. front: {
  47492. height: math.unit(4 + 4/12, "feet"),
  47493. name: "Front",
  47494. image: {
  47495. source: "./media/characters/pepper-purrloin/front.svg",
  47496. extra: 1141/1024,
  47497. bottom: 21/1162
  47498. }
  47499. },
  47500. },
  47501. [
  47502. {
  47503. name: "Normal",
  47504. height: math.unit(4 + 4/12, "feet"),
  47505. default: true
  47506. },
  47507. ]
  47508. ))
  47509. characterMakers.push(() => makeCharacter(
  47510. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47511. {
  47512. front: {
  47513. height: math.unit(6 + 2/12, "feet"),
  47514. name: "Front",
  47515. image: {
  47516. source: "./media/characters/raphael/front.svg",
  47517. extra: 1101/962,
  47518. bottom: 59/1160
  47519. }
  47520. },
  47521. },
  47522. [
  47523. {
  47524. name: "Normal",
  47525. height: math.unit(6 + 2/12, "feet"),
  47526. default: true
  47527. },
  47528. ]
  47529. ))
  47530. characterMakers.push(() => makeCharacter(
  47531. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47532. {
  47533. front: {
  47534. height: math.unit(6, "feet"),
  47535. weight: math.unit(150, "lb"),
  47536. name: "Front",
  47537. image: {
  47538. source: "./media/characters/victor-williams/front.svg",
  47539. extra: 1894/1825,
  47540. bottom: 67/1961
  47541. }
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Normal",
  47547. height: math.unit(6, "feet"),
  47548. default: true
  47549. },
  47550. ]
  47551. ))
  47552. characterMakers.push(() => makeCharacter(
  47553. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47554. {
  47555. front: {
  47556. height: math.unit(5 + 8/12, "feet"),
  47557. weight: math.unit(150, "lb"),
  47558. name: "Front",
  47559. image: {
  47560. source: "./media/characters/rachel/front.svg",
  47561. extra: 1902/1787,
  47562. bottom: 46/1948
  47563. }
  47564. },
  47565. },
  47566. [
  47567. {
  47568. name: "Base Height",
  47569. height: math.unit(5 + 8/12, "feet"),
  47570. default: true
  47571. },
  47572. {
  47573. name: "Macro",
  47574. height: math.unit(200, "feet")
  47575. },
  47576. {
  47577. name: "Mega Macro",
  47578. height: math.unit(1, "mile")
  47579. },
  47580. {
  47581. name: "Giga Macro",
  47582. height: math.unit(1500, "miles")
  47583. },
  47584. {
  47585. name: "Tera Macro",
  47586. height: math.unit(8000, "miles")
  47587. },
  47588. {
  47589. name: "Tera Macro+",
  47590. height: math.unit(2e5, "miles")
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47596. {
  47597. front: {
  47598. height: math.unit(6.5, "feet"),
  47599. name: "Front",
  47600. image: {
  47601. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47602. extra: 860/819,
  47603. bottom: 307/1167
  47604. }
  47605. },
  47606. back: {
  47607. height: math.unit(6.5, "feet"),
  47608. name: "Back",
  47609. image: {
  47610. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47611. extra: 880/837,
  47612. bottom: 395/1275
  47613. }
  47614. },
  47615. sleeping: {
  47616. height: math.unit(2.79, "feet"),
  47617. name: "Sleeping",
  47618. image: {
  47619. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47620. extra: 465/383,
  47621. bottom: 263/728
  47622. }
  47623. },
  47624. maw: {
  47625. height: math.unit(2.52, "feet"),
  47626. name: "Maw",
  47627. image: {
  47628. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47629. }
  47630. },
  47631. },
  47632. [
  47633. {
  47634. name: "Normal",
  47635. height: math.unit(6.5, "feet"),
  47636. default: true
  47637. },
  47638. ]
  47639. ))
  47640. characterMakers.push(() => makeCharacter(
  47641. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47642. {
  47643. front: {
  47644. height: math.unit(5, "feet"),
  47645. name: "Front",
  47646. image: {
  47647. source: "./media/characters/nova-nerium/front.svg",
  47648. extra: 1548/1392,
  47649. bottom: 374/1922
  47650. }
  47651. },
  47652. back: {
  47653. height: math.unit(5, "feet"),
  47654. name: "Back",
  47655. image: {
  47656. source: "./media/characters/nova-nerium/back.svg",
  47657. extra: 1658/1468,
  47658. bottom: 257/1915
  47659. }
  47660. },
  47661. },
  47662. [
  47663. {
  47664. name: "Normal",
  47665. height: math.unit(5, "feet"),
  47666. default: true
  47667. },
  47668. ]
  47669. ))
  47670. characterMakers.push(() => makeCharacter(
  47671. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47672. {
  47673. front: {
  47674. height: math.unit(5 + 4/12, "feet"),
  47675. name: "Front",
  47676. image: {
  47677. source: "./media/characters/ashe-pyriph/front.svg",
  47678. extra: 1935/1747,
  47679. bottom: 60/1995
  47680. }
  47681. },
  47682. },
  47683. [
  47684. {
  47685. name: "Normal",
  47686. height: math.unit(5 + 4/12, "feet"),
  47687. default: true
  47688. },
  47689. ]
  47690. ))
  47691. characterMakers.push(() => makeCharacter(
  47692. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47693. {
  47694. front: {
  47695. height: math.unit(8.7, "feet"),
  47696. name: "Front",
  47697. image: {
  47698. source: "./media/characters/flicker-wisp/front.svg",
  47699. extra: 1835/1613,
  47700. bottom: 449/2284
  47701. }
  47702. },
  47703. side: {
  47704. height: math.unit(8.7, "feet"),
  47705. name: "Side",
  47706. image: {
  47707. source: "./media/characters/flicker-wisp/side.svg",
  47708. extra: 1841/1642,
  47709. bottom: 336/2177
  47710. },
  47711. default: true
  47712. },
  47713. maw: {
  47714. height: math.unit(3.35, "feet"),
  47715. name: "Maw",
  47716. image: {
  47717. source: "./media/characters/flicker-wisp/maw.svg",
  47718. extra: 2338/1506,
  47719. bottom: 0/2338
  47720. }
  47721. },
  47722. ovipositor: {
  47723. height: math.unit(4.95, "feet"),
  47724. name: "Ovipositor",
  47725. image: {
  47726. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47727. }
  47728. },
  47729. egg: {
  47730. height: math.unit(0.385, "feet"),
  47731. weight: math.unit(2, "lb"),
  47732. name: "Egg",
  47733. image: {
  47734. source: "./media/characters/flicker-wisp/egg.svg"
  47735. }
  47736. },
  47737. },
  47738. [
  47739. {
  47740. name: "Normal",
  47741. height: math.unit(8.7, "feet"),
  47742. default: true
  47743. },
  47744. ]
  47745. ))
  47746. characterMakers.push(() => makeCharacter(
  47747. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47748. {
  47749. side: {
  47750. height: math.unit(11, "feet"),
  47751. name: "Side",
  47752. image: {
  47753. source: "./media/characters/faefnul/side.svg",
  47754. extra: 1100/1007,
  47755. bottom: 0/1100
  47756. }
  47757. },
  47758. },
  47759. [
  47760. {
  47761. name: "Normal",
  47762. height: math.unit(11, "feet"),
  47763. default: true
  47764. },
  47765. ]
  47766. ))
  47767. characterMakers.push(() => makeCharacter(
  47768. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47769. {
  47770. front: {
  47771. height: math.unit(6 + 2/12, "feet"),
  47772. name: "Front",
  47773. image: {
  47774. source: "./media/characters/shady/front.svg",
  47775. extra: 502/461,
  47776. bottom: 9/511
  47777. }
  47778. },
  47779. kneeling: {
  47780. height: math.unit(4.6, "feet"),
  47781. name: "Kneeling",
  47782. image: {
  47783. source: "./media/characters/shady/kneeling.svg",
  47784. extra: 1328/1219,
  47785. bottom: 117/1445
  47786. }
  47787. },
  47788. maw: {
  47789. height: math.unit(2, "feet"),
  47790. name: "Maw",
  47791. image: {
  47792. source: "./media/characters/shady/maw.svg"
  47793. }
  47794. },
  47795. },
  47796. [
  47797. {
  47798. name: "Nano",
  47799. height: math.unit(1, "mm")
  47800. },
  47801. {
  47802. name: "Micro",
  47803. height: math.unit(12, "mm")
  47804. },
  47805. {
  47806. name: "Tiny",
  47807. height: math.unit(3, "inches")
  47808. },
  47809. {
  47810. name: "Normal",
  47811. height: math.unit(6 + 2/12, "feet"),
  47812. default: true
  47813. },
  47814. {
  47815. name: "Big",
  47816. height: math.unit(15, "feet")
  47817. },
  47818. {
  47819. name: "Macro",
  47820. height: math.unit(150, "feet")
  47821. },
  47822. {
  47823. name: "Titanic",
  47824. height: math.unit(500, "feet")
  47825. },
  47826. ]
  47827. ))
  47828. characterMakers.push(() => makeCharacter(
  47829. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47830. {
  47831. front: {
  47832. height: math.unit(12, "feet"),
  47833. name: "Front",
  47834. image: {
  47835. source: "./media/characters/fenrir/front.svg",
  47836. extra: 968/875,
  47837. bottom: 22/990
  47838. }
  47839. },
  47840. },
  47841. [
  47842. {
  47843. name: "Big",
  47844. height: math.unit(12, "feet"),
  47845. default: true
  47846. },
  47847. ]
  47848. ))
  47849. characterMakers.push(() => makeCharacter(
  47850. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47851. {
  47852. front: {
  47853. height: math.unit(5 + 4/12, "feet"),
  47854. name: "Front",
  47855. image: {
  47856. source: "./media/characters/makar/front.svg",
  47857. extra: 1181/1112,
  47858. bottom: 78/1259
  47859. }
  47860. },
  47861. },
  47862. [
  47863. {
  47864. name: "Normal",
  47865. height: math.unit(5 + 4/12, "feet"),
  47866. default: true
  47867. },
  47868. ]
  47869. ))
  47870. characterMakers.push(() => makeCharacter(
  47871. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47872. {
  47873. front: {
  47874. height: math.unit(5 + 7/12, "feet"),
  47875. name: "Front",
  47876. image: {
  47877. source: "./media/characters/callow/front.svg",
  47878. extra: 1482/1304,
  47879. bottom: 23/1505
  47880. }
  47881. },
  47882. back: {
  47883. height: math.unit(5 + 7/12, "feet"),
  47884. name: "Back",
  47885. image: {
  47886. source: "./media/characters/callow/back.svg",
  47887. extra: 1484/1296,
  47888. bottom: 25/1509
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Micro",
  47895. height: math.unit(3, "inches"),
  47896. default: true
  47897. },
  47898. {
  47899. name: "Normal",
  47900. height: math.unit(5 + 7/12, "feet")
  47901. },
  47902. ]
  47903. ))
  47904. characterMakers.push(() => makeCharacter(
  47905. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47906. {
  47907. front: {
  47908. height: math.unit(6 + 2/12, "feet"),
  47909. name: "Front",
  47910. image: {
  47911. source: "./media/characters/natel/front.svg",
  47912. extra: 1833/1692,
  47913. bottom: 166/1999
  47914. }
  47915. },
  47916. },
  47917. [
  47918. {
  47919. name: "Normal",
  47920. height: math.unit(6 + 2/12, "feet"),
  47921. default: true
  47922. },
  47923. ]
  47924. ))
  47925. characterMakers.push(() => makeCharacter(
  47926. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47927. {
  47928. front: {
  47929. height: math.unit(1.75, "meters"),
  47930. name: "Front",
  47931. image: {
  47932. source: "./media/characters/misu/front.svg",
  47933. extra: 1690/1558,
  47934. bottom: 234/1924
  47935. }
  47936. },
  47937. back: {
  47938. height: math.unit(1.75, "meters"),
  47939. name: "Back",
  47940. image: {
  47941. source: "./media/characters/misu/back.svg",
  47942. extra: 1762/1618,
  47943. bottom: 146/1908
  47944. }
  47945. },
  47946. frontNude: {
  47947. height: math.unit(1.75, "meters"),
  47948. name: "Front (Nude)",
  47949. image: {
  47950. source: "./media/characters/misu/front-nude.svg",
  47951. extra: 1690/1558,
  47952. bottom: 234/1924
  47953. }
  47954. },
  47955. backNude: {
  47956. height: math.unit(1.75, "meters"),
  47957. name: "Back (Nude)",
  47958. image: {
  47959. source: "./media/characters/misu/back-nude.svg",
  47960. extra: 1762/1618,
  47961. bottom: 146/1908
  47962. }
  47963. },
  47964. frontErect: {
  47965. height: math.unit(1.75, "meters"),
  47966. name: "Front (Erect)",
  47967. image: {
  47968. source: "./media/characters/misu/front-erect.svg",
  47969. extra: 1690/1558,
  47970. bottom: 234/1924
  47971. }
  47972. },
  47973. maw: {
  47974. height: math.unit(0.47, "meters"),
  47975. name: "Maw",
  47976. image: {
  47977. source: "./media/characters/misu/maw.svg"
  47978. }
  47979. },
  47980. head: {
  47981. height: math.unit(0.35, "meters"),
  47982. name: "Head",
  47983. image: {
  47984. source: "./media/characters/misu/head.svg"
  47985. }
  47986. },
  47987. rear: {
  47988. height: math.unit(0.47, "meters"),
  47989. name: "Rear",
  47990. image: {
  47991. source: "./media/characters/misu/rear.svg"
  47992. }
  47993. },
  47994. },
  47995. [
  47996. {
  47997. name: "Normal",
  47998. height: math.unit(1.75, "meters")
  47999. },
  48000. {
  48001. name: "Not good for the people",
  48002. height: math.unit(42, "meters")
  48003. },
  48004. {
  48005. name: "Not good for the neighborhood",
  48006. height: math.unit(135, "meters")
  48007. },
  48008. {
  48009. name: "Bit bigger problem",
  48010. height: math.unit(380, "meters"),
  48011. default: true
  48012. },
  48013. {
  48014. name: "Not good for the city",
  48015. height: math.unit(1.5, "km")
  48016. },
  48017. {
  48018. name: "Not good for the county",
  48019. height: math.unit(5.5, "km")
  48020. },
  48021. {
  48022. name: "Not good for the state",
  48023. height: math.unit(25, "km")
  48024. },
  48025. {
  48026. name: "Not good for the country",
  48027. height: math.unit(125, "km")
  48028. },
  48029. {
  48030. name: "Not good for the continent",
  48031. height: math.unit(2100, "km")
  48032. },
  48033. {
  48034. name: "Not good for the planet",
  48035. height: math.unit(35000, "km")
  48036. },
  48037. {
  48038. name: "Just no",
  48039. height: math.unit(8.5e18, "km")
  48040. },
  48041. ]
  48042. ))
  48043. characterMakers.push(() => makeCharacter(
  48044. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48045. {
  48046. front: {
  48047. height: math.unit(6.5, "feet"),
  48048. name: "Front",
  48049. image: {
  48050. source: "./media/characters/poppy/front.svg",
  48051. extra: 1878/1812,
  48052. bottom: 43/1921
  48053. }
  48054. },
  48055. feet: {
  48056. height: math.unit(1.06, "feet"),
  48057. name: "Feet",
  48058. image: {
  48059. source: "./media/characters/poppy/feet.svg",
  48060. extra: 1083/1083,
  48061. bottom: 87/1170
  48062. }
  48063. },
  48064. },
  48065. [
  48066. {
  48067. name: "Human",
  48068. height: math.unit(6.5, "feet")
  48069. },
  48070. {
  48071. name: "Default",
  48072. height: math.unit(300, "feet"),
  48073. default: true
  48074. },
  48075. {
  48076. name: "Huge",
  48077. height: math.unit(850, "feet")
  48078. },
  48079. {
  48080. name: "Mega",
  48081. height: math.unit(8000, "feet")
  48082. },
  48083. {
  48084. name: "Giga",
  48085. height: math.unit(300, "miles")
  48086. },
  48087. ]
  48088. ))
  48089. characterMakers.push(() => makeCharacter(
  48090. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48091. {
  48092. bipedal: {
  48093. height: math.unit(7, "feet"),
  48094. name: "Bipedal",
  48095. image: {
  48096. source: "./media/characters/zener/bipedal.svg",
  48097. extra: 874/805,
  48098. bottom: 109/983
  48099. }
  48100. },
  48101. quadrupedal: {
  48102. height: math.unit(4.64, "feet"),
  48103. name: "Quadrupedal",
  48104. image: {
  48105. source: "./media/characters/zener/quadrupedal.svg",
  48106. extra: 638/507,
  48107. bottom: 190/828
  48108. }
  48109. },
  48110. cock: {
  48111. height: math.unit(18, "inches"),
  48112. name: "Cock",
  48113. image: {
  48114. source: "./media/characters/zener/cock.svg"
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Normal",
  48121. height: math.unit(7, "feet"),
  48122. default: true
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48128. {
  48129. nude: {
  48130. height: math.unit(5 + 6/12, "feet"),
  48131. name: "Nude",
  48132. image: {
  48133. source: "./media/characters/charlie-dog/nude.svg",
  48134. extra: 768/734,
  48135. bottom: 26/794
  48136. }
  48137. },
  48138. dressed: {
  48139. height: math.unit(5 + 6/12, "feet"),
  48140. name: "Dressed",
  48141. image: {
  48142. source: "./media/characters/charlie-dog/dressed.svg",
  48143. extra: 768/734,
  48144. bottom: 26/794
  48145. }
  48146. },
  48147. },
  48148. [
  48149. {
  48150. name: "Normal",
  48151. height: math.unit(5 + 6/12, "feet"),
  48152. default: true
  48153. },
  48154. ]
  48155. ))
  48156. characterMakers.push(() => makeCharacter(
  48157. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48158. {
  48159. front: {
  48160. height: math.unit(6 + 4/12, "feet"),
  48161. name: "Front",
  48162. image: {
  48163. source: "./media/characters/ir'istrasz/front.svg",
  48164. extra: 1014/977,
  48165. bottom: 65/1079
  48166. }
  48167. },
  48168. back: {
  48169. height: math.unit(6 + 4/12, "feet"),
  48170. name: "Back",
  48171. image: {
  48172. source: "./media/characters/ir'istrasz/back.svg",
  48173. extra: 1024/992,
  48174. bottom: 34/1058
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(6 + 4/12, "feet"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48188. {
  48189. front: {
  48190. height: math.unit(5 + 8/12, "feet"),
  48191. name: "Front",
  48192. image: {
  48193. source: "./media/characters/dee-ditto/front.svg",
  48194. extra: 1874/1785,
  48195. bottom: 68/1942
  48196. }
  48197. },
  48198. back: {
  48199. height: math.unit(5 + 8/12, "feet"),
  48200. name: "Back",
  48201. image: {
  48202. source: "./media/characters/dee-ditto/back.svg",
  48203. extra: 1870/1783,
  48204. bottom: 77/1947
  48205. }
  48206. },
  48207. },
  48208. [
  48209. {
  48210. name: "Normal",
  48211. height: math.unit(5 + 8/12, "feet"),
  48212. default: true
  48213. },
  48214. ]
  48215. ))
  48216. characterMakers.push(() => makeCharacter(
  48217. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48218. {
  48219. front: {
  48220. height: math.unit(7 + 6/12, "feet"),
  48221. name: "Front",
  48222. image: {
  48223. source: "./media/characters/fey/front.svg",
  48224. extra: 995/979,
  48225. bottom: 30/1025
  48226. }
  48227. },
  48228. back: {
  48229. height: math.unit(7 + 6/12, "feet"),
  48230. name: "Back",
  48231. image: {
  48232. source: "./media/characters/fey/back.svg",
  48233. extra: 1079/1008,
  48234. bottom: 5/1084
  48235. }
  48236. },
  48237. dressed: {
  48238. height: math.unit(7 + 6/12, "feet"),
  48239. name: "Dressed",
  48240. image: {
  48241. source: "./media/characters/fey/dressed.svg",
  48242. extra: 995/979,
  48243. bottom: 30/1025
  48244. }
  48245. },
  48246. },
  48247. [
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(7 + 6/12, "feet"),
  48251. default: true
  48252. },
  48253. ]
  48254. ))
  48255. characterMakers.push(() => makeCharacter(
  48256. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48257. {
  48258. standing: {
  48259. height: math.unit(17, "feet"),
  48260. name: "Standing",
  48261. image: {
  48262. source: "./media/characters/aster/standing.svg",
  48263. extra: 1798/1598,
  48264. bottom: 117/1915
  48265. }
  48266. },
  48267. },
  48268. [
  48269. {
  48270. name: "Normal",
  48271. height: math.unit(17, "feet"),
  48272. default: true
  48273. },
  48274. {
  48275. name: "Homewrecker",
  48276. height: math.unit(95, "feet")
  48277. },
  48278. {
  48279. name: "Planet Devourer",
  48280. height: math.unit(1008000, "miles")
  48281. },
  48282. ]
  48283. ))
  48284. characterMakers.push(() => makeCharacter(
  48285. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48286. {
  48287. front: {
  48288. height: math.unit(6 + 5/12, "feet"),
  48289. weight: math.unit(265, "lb"),
  48290. name: "Front",
  48291. image: {
  48292. source: "./media/characters/devon-childs/front.svg",
  48293. extra: 1795/1721,
  48294. bottom: 41/1836
  48295. }
  48296. },
  48297. side: {
  48298. height: math.unit(6 + 5/12, "feet"),
  48299. weight: math.unit(265, "lb"),
  48300. name: "Side",
  48301. image: {
  48302. source: "./media/characters/devon-childs/side.svg",
  48303. extra: 1812/1738,
  48304. bottom: 30/1842
  48305. }
  48306. },
  48307. back: {
  48308. height: math.unit(6 + 5/12, "feet"),
  48309. weight: math.unit(265, "lb"),
  48310. name: "Back",
  48311. image: {
  48312. source: "./media/characters/devon-childs/back.svg",
  48313. extra: 1808/1735,
  48314. bottom: 23/1831
  48315. }
  48316. },
  48317. hand: {
  48318. height: math.unit(1.464, "feet"),
  48319. name: "Hand",
  48320. image: {
  48321. source: "./media/characters/devon-childs/hand.svg"
  48322. }
  48323. },
  48324. foot: {
  48325. height: math.unit(1.6, "feet"),
  48326. name: "Foot",
  48327. image: {
  48328. source: "./media/characters/devon-childs/foot.svg"
  48329. }
  48330. },
  48331. },
  48332. [
  48333. {
  48334. name: "Micro",
  48335. height: math.unit(7, "cm")
  48336. },
  48337. {
  48338. name: "Normal",
  48339. height: math.unit(6 + 5/12, "feet"),
  48340. default: true
  48341. },
  48342. {
  48343. name: "Macro",
  48344. height: math.unit(154, "feet")
  48345. },
  48346. ]
  48347. ))
  48348. characterMakers.push(() => makeCharacter(
  48349. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48350. {
  48351. front: {
  48352. height: math.unit(6, "feet"),
  48353. weight: math.unit(180, "lb"),
  48354. name: "Front",
  48355. image: {
  48356. source: "./media/characters/lydemox-vir/front.svg",
  48357. extra: 1632/1435,
  48358. bottom: 58/1690
  48359. }
  48360. },
  48361. frontSFW: {
  48362. height: math.unit(6, "feet"),
  48363. weight: math.unit(180, "lb"),
  48364. name: "Front (SFW)",
  48365. image: {
  48366. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48367. extra: 1632/1435,
  48368. bottom: 58/1690
  48369. }
  48370. },
  48371. back: {
  48372. height: math.unit(6, "feet"),
  48373. weight: math.unit(180, "lb"),
  48374. name: "Back",
  48375. image: {
  48376. source: "./media/characters/lydemox-vir/back.svg",
  48377. extra: 1593/1408,
  48378. bottom: 31/1624
  48379. }
  48380. },
  48381. paw: {
  48382. height: math.unit(1.85, "feet"),
  48383. name: "Paw",
  48384. image: {
  48385. source: "./media/characters/lydemox-vir/paw.svg"
  48386. }
  48387. },
  48388. dick: {
  48389. height: math.unit(1.8, "feet"),
  48390. name: "Dick",
  48391. image: {
  48392. source: "./media/characters/lydemox-vir/dick.svg"
  48393. }
  48394. },
  48395. },
  48396. [
  48397. {
  48398. name: "Macro",
  48399. height: math.unit(100, "feet"),
  48400. default: true
  48401. },
  48402. {
  48403. name: "Teramacro",
  48404. height: math.unit(1, "earth")
  48405. },
  48406. {
  48407. name: "Planetary",
  48408. height: math.unit(20, "earths")
  48409. },
  48410. ]
  48411. ))
  48412. characterMakers.push(() => makeCharacter(
  48413. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48414. {
  48415. front: {
  48416. height: math.unit(15 + 8/12, "feet"),
  48417. weight: math.unit(1237, "kg"),
  48418. name: "Front",
  48419. image: {
  48420. source: "./media/characters/mia/front.svg",
  48421. extra: 1573/1446,
  48422. bottom: 58/1631
  48423. }
  48424. },
  48425. },
  48426. [
  48427. {
  48428. name: "Small",
  48429. height: math.unit(9 + 5/12, "feet")
  48430. },
  48431. {
  48432. name: "Normal",
  48433. height: math.unit(15 + 8/12, "feet"),
  48434. default: true
  48435. },
  48436. ]
  48437. ))
  48438. characterMakers.push(() => makeCharacter(
  48439. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48440. {
  48441. front: {
  48442. height: math.unit(10 + 6/12, "feet"),
  48443. weight: math.unit(1.3, "tons"),
  48444. name: "Front",
  48445. image: {
  48446. source: "./media/characters/mr-graves/front.svg",
  48447. extra: 1779/1695,
  48448. bottom: 198/1977
  48449. }
  48450. },
  48451. },
  48452. [
  48453. {
  48454. name: "Normal",
  48455. height: math.unit(10 + 6 /12, "feet"),
  48456. default: true
  48457. },
  48458. ]
  48459. ))
  48460. characterMakers.push(() => makeCharacter(
  48461. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48462. {
  48463. dressedFront: {
  48464. height: math.unit(5 + 8/12, "feet"),
  48465. weight: math.unit(125, "lb"),
  48466. name: "Dressed (Front)",
  48467. image: {
  48468. source: "./media/characters/jess/dressed-front.svg",
  48469. extra: 1176/1152,
  48470. bottom: 42/1218
  48471. }
  48472. },
  48473. dressedSide: {
  48474. height: math.unit(5 + 8/12, "feet"),
  48475. weight: math.unit(125, "lb"),
  48476. name: "Dressed (Side)",
  48477. image: {
  48478. source: "./media/characters/jess/dressed-side.svg",
  48479. extra: 1204/1190,
  48480. bottom: 6/1210
  48481. }
  48482. },
  48483. nudeFront: {
  48484. height: math.unit(5 + 8/12, "feet"),
  48485. weight: math.unit(125, "lb"),
  48486. name: "Nude (Front)",
  48487. image: {
  48488. source: "./media/characters/jess/nude-front.svg",
  48489. extra: 1176/1152,
  48490. bottom: 42/1218
  48491. }
  48492. },
  48493. nudeSide: {
  48494. height: math.unit(5 + 8/12, "feet"),
  48495. weight: math.unit(125, "lb"),
  48496. name: "Nude (Side)",
  48497. image: {
  48498. source: "./media/characters/jess/nude-side.svg",
  48499. extra: 1204/1190,
  48500. bottom: 6/1210
  48501. }
  48502. },
  48503. organsFront: {
  48504. height: math.unit(2.83799342105, "feet"),
  48505. name: "Organs (Front)",
  48506. image: {
  48507. source: "./media/characters/jess/organs-front.svg"
  48508. }
  48509. },
  48510. organsSide: {
  48511. height: math.unit(2.64225290474, "feet"),
  48512. name: "Organs (Side)",
  48513. image: {
  48514. source: "./media/characters/jess/organs-side.svg"
  48515. }
  48516. },
  48517. digestiveTractFront: {
  48518. height: math.unit(2.8106580871, "feet"),
  48519. name: "Digestive Tract (Front)",
  48520. image: {
  48521. source: "./media/characters/jess/digestive-tract-front.svg"
  48522. }
  48523. },
  48524. digestiveTractSide: {
  48525. height: math.unit(2.54365045014, "feet"),
  48526. name: "Digestive Tract (Side)",
  48527. image: {
  48528. source: "./media/characters/jess/digestive-tract-side.svg"
  48529. }
  48530. },
  48531. respiratorySystemFront: {
  48532. height: math.unit(1.11196233456, "feet"),
  48533. name: "Respiratory System (Front)",
  48534. image: {
  48535. source: "./media/characters/jess/respiratory-system-front.svg"
  48536. }
  48537. },
  48538. respiratorySystemSide: {
  48539. height: math.unit(0.89327966297, "feet"),
  48540. name: "Respiratory System (Side)",
  48541. image: {
  48542. source: "./media/characters/jess/respiratory-system-side.svg"
  48543. }
  48544. },
  48545. urinaryTractFront: {
  48546. height: math.unit(1.16126356186, "feet"),
  48547. name: "Urinary Tract (Front)",
  48548. image: {
  48549. source: "./media/characters/jess/urinary-tract-front.svg"
  48550. }
  48551. },
  48552. urinaryTractSide: {
  48553. height: math.unit(1.20910039627, "feet"),
  48554. name: "Urinary Tract (Side)",
  48555. image: {
  48556. source: "./media/characters/jess/urinary-tract-side.svg"
  48557. }
  48558. },
  48559. reproductiveOrgansFront: {
  48560. height: math.unit(0.48422591566, "feet"),
  48561. name: "Reproductive Organs (Front)",
  48562. image: {
  48563. source: "./media/characters/jess/reproductive-organs-front.svg"
  48564. }
  48565. },
  48566. reproductiveOrgansSide: {
  48567. height: math.unit(0.61553314481, "feet"),
  48568. name: "Reproductive Organs (Side)",
  48569. image: {
  48570. source: "./media/characters/jess/reproductive-organs-side.svg"
  48571. }
  48572. },
  48573. breastsFront: {
  48574. height: math.unit(0.47690395121, "feet"),
  48575. name: "Breasts (Front)",
  48576. image: {
  48577. source: "./media/characters/jess/breasts-front.svg"
  48578. }
  48579. },
  48580. breastsSide: {
  48581. height: math.unit(0.30556998307, "feet"),
  48582. name: "Breasts (Side)",
  48583. image: {
  48584. source: "./media/characters/jess/breasts-side.svg"
  48585. }
  48586. },
  48587. heartFront: {
  48588. height: math.unit(0.53011022622, "feet"),
  48589. name: "Heart (Front)",
  48590. image: {
  48591. source: "./media/characters/jess/heart-front.svg"
  48592. }
  48593. },
  48594. heartSide: {
  48595. height: math.unit(0.51790695213, "feet"),
  48596. name: "Heart (Side)",
  48597. image: {
  48598. source: "./media/characters/jess/heart-side.svg"
  48599. }
  48600. },
  48601. earsAndNoseFront: {
  48602. height: math.unit(0.29385483995, "feet"),
  48603. name: "Ears and Nose (Front)",
  48604. image: {
  48605. source: "./media/characters/jess/ears-and-nose-front.svg"
  48606. }
  48607. },
  48608. earsAndNoseSide: {
  48609. height: math.unit(0.18109658741, "feet"),
  48610. name: "Ears and Nose (Side)",
  48611. image: {
  48612. source: "./media/characters/jess/ears-and-nose-side.svg"
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(5 + 8/12, "feet"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48626. {
  48627. front: {
  48628. height: math.unit(6, "feet"),
  48629. weight: math.unit(6.64467e-7, "grams"),
  48630. name: "Front",
  48631. image: {
  48632. source: "./media/characters/wimpering/front.svg",
  48633. extra: 597/587,
  48634. bottom: 34/631
  48635. }
  48636. },
  48637. },
  48638. [
  48639. {
  48640. name: "Micro",
  48641. height: math.unit(0.4, "mm"),
  48642. default: true
  48643. },
  48644. ]
  48645. ))
  48646. characterMakers.push(() => makeCharacter(
  48647. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48648. {
  48649. front: {
  48650. height: math.unit(5 + 2/12, "feet"),
  48651. weight: math.unit(110, "lb"),
  48652. name: "Front",
  48653. image: {
  48654. source: "./media/characters/keltre/front.svg",
  48655. extra: 1099/1057,
  48656. bottom: 22/1121
  48657. }
  48658. },
  48659. back: {
  48660. height: math.unit(5 + 2/12, "feet"),
  48661. weight: math.unit(110, "lb"),
  48662. name: "Back",
  48663. image: {
  48664. source: "./media/characters/keltre/back.svg",
  48665. extra: 1095/1053,
  48666. bottom: 17/1112
  48667. }
  48668. },
  48669. dressed: {
  48670. height: math.unit(5 + 2/12, "feet"),
  48671. weight: math.unit(110, "lb"),
  48672. name: "Dressed",
  48673. image: {
  48674. source: "./media/characters/keltre/dressed.svg",
  48675. extra: 1099/1057,
  48676. bottom: 22/1121
  48677. }
  48678. },
  48679. winter: {
  48680. height: math.unit(5 + 2/12, "feet"),
  48681. weight: math.unit(110, "lb"),
  48682. name: "Winter",
  48683. image: {
  48684. source: "./media/characters/keltre/winter.svg",
  48685. extra: 1099/1057,
  48686. bottom: 22/1121
  48687. }
  48688. },
  48689. head: {
  48690. height: math.unit(1.61 * 0.86, "feet"),
  48691. name: "Head",
  48692. image: {
  48693. source: "./media/characters/keltre/head.svg",
  48694. extra: 534/421,
  48695. bottom: 0/534
  48696. }
  48697. },
  48698. hand: {
  48699. height: math.unit(1.3 * 0.86, "feet"),
  48700. name: "Hand",
  48701. image: {
  48702. source: "./media/characters/keltre/hand.svg"
  48703. }
  48704. },
  48705. foot: {
  48706. height: math.unit(1.8 * 0.86, "feet"),
  48707. name: "Foot",
  48708. image: {
  48709. source: "./media/characters/keltre/foot.svg"
  48710. }
  48711. },
  48712. },
  48713. [
  48714. {
  48715. name: "Fine",
  48716. height: math.unit(1, "inch")
  48717. },
  48718. {
  48719. name: "Dimnutive",
  48720. height: math.unit(4, "inches")
  48721. },
  48722. {
  48723. name: "Tiny",
  48724. height: math.unit(1, "foot")
  48725. },
  48726. {
  48727. name: "Small",
  48728. height: math.unit(3, "feet")
  48729. },
  48730. {
  48731. name: "Normal",
  48732. height: math.unit(5 + 2/12, "feet"),
  48733. default: true
  48734. },
  48735. ]
  48736. ))
  48737. characterMakers.push(() => makeCharacter(
  48738. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48739. {
  48740. front: {
  48741. height: math.unit(6 + 2/12, "feet"),
  48742. name: "Front",
  48743. image: {
  48744. source: "./media/characters/nox/front.svg",
  48745. extra: 1917/1830,
  48746. bottom: 74/1991
  48747. }
  48748. },
  48749. back: {
  48750. height: math.unit(6 + 2/12, "feet"),
  48751. name: "Back",
  48752. image: {
  48753. source: "./media/characters/nox/back.svg",
  48754. extra: 1896/1815,
  48755. bottom: 21/1917
  48756. }
  48757. },
  48758. head: {
  48759. height: math.unit(1.1, "feet"),
  48760. name: "Head",
  48761. image: {
  48762. source: "./media/characters/nox/head.svg",
  48763. extra: 874/704,
  48764. bottom: 0/874
  48765. }
  48766. },
  48767. tattoo: {
  48768. height: math.unit(0.729, "feet"),
  48769. name: "Tattoo",
  48770. image: {
  48771. source: "./media/characters/nox/tattoo.svg"
  48772. }
  48773. },
  48774. },
  48775. [
  48776. {
  48777. name: "Normal",
  48778. height: math.unit(6 + 2/12, "feet")
  48779. },
  48780. {
  48781. name: "Gigamacro",
  48782. height: math.unit(2, "earths"),
  48783. default: true
  48784. },
  48785. {
  48786. name: "Cosmic",
  48787. height: math.unit(867, "yottameters")
  48788. },
  48789. ]
  48790. ))
  48791. characterMakers.push(() => makeCharacter(
  48792. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48793. {
  48794. front: {
  48795. height: math.unit(6, "feet"),
  48796. weight: math.unit(150, "lb"),
  48797. name: "Front",
  48798. image: {
  48799. source: "./media/characters/caspian/front.svg",
  48800. extra: 1443/1359,
  48801. bottom: 0/1443
  48802. }
  48803. },
  48804. back: {
  48805. height: math.unit(6, "feet"),
  48806. weight: math.unit(150, "lb"),
  48807. name: "Back",
  48808. image: {
  48809. source: "./media/characters/caspian/back.svg",
  48810. extra: 1379/1309,
  48811. bottom: 0/1379
  48812. }
  48813. },
  48814. head: {
  48815. height: math.unit(0.9, "feet"),
  48816. name: "Head",
  48817. image: {
  48818. source: "./media/characters/caspian/head.svg",
  48819. extra: 692/492,
  48820. bottom: 0/692
  48821. }
  48822. },
  48823. headAlt: {
  48824. height: math.unit(0.95, "feet"),
  48825. name: "Head (Alt)",
  48826. image: {
  48827. source: "./media/characters/caspian/head-alt.svg",
  48828. extra: 668/508,
  48829. bottom: 0/668
  48830. }
  48831. },
  48832. hand: {
  48833. height: math.unit(0.8, "feet"),
  48834. name: "Hand",
  48835. image: {
  48836. source: "./media/characters/caspian/hand.svg"
  48837. }
  48838. },
  48839. paw: {
  48840. height: math.unit(0.95, "feet"),
  48841. name: "Paw",
  48842. image: {
  48843. source: "./media/characters/caspian/paw.svg"
  48844. }
  48845. },
  48846. },
  48847. [
  48848. {
  48849. name: "Normal",
  48850. height: math.unit(162, "feet"),
  48851. default: true
  48852. },
  48853. ]
  48854. ))
  48855. characterMakers.push(() => makeCharacter(
  48856. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48857. {
  48858. front: {
  48859. height: math.unit(6, "feet"),
  48860. name: "Front",
  48861. image: {
  48862. source: "./media/characters/myra-aisling/front.svg",
  48863. extra: 1268/1166,
  48864. bottom: 73/1341
  48865. }
  48866. },
  48867. back: {
  48868. height: math.unit(6, "feet"),
  48869. name: "Back",
  48870. image: {
  48871. source: "./media/characters/myra-aisling/back.svg",
  48872. extra: 1249/1149,
  48873. bottom: 79/1328
  48874. }
  48875. },
  48876. dressed: {
  48877. height: math.unit(6, "feet"),
  48878. name: "Dressed",
  48879. image: {
  48880. source: "./media/characters/myra-aisling/dressed.svg",
  48881. extra: 1290/1189,
  48882. bottom: 47/1337
  48883. }
  48884. },
  48885. hand: {
  48886. height: math.unit(1.1, "feet"),
  48887. name: "Hand",
  48888. image: {
  48889. source: "./media/characters/myra-aisling/hand.svg"
  48890. }
  48891. },
  48892. paw: {
  48893. height: math.unit(1.23, "feet"),
  48894. name: "Paw",
  48895. image: {
  48896. source: "./media/characters/myra-aisling/paw.svg"
  48897. }
  48898. },
  48899. },
  48900. [
  48901. {
  48902. name: "Normal",
  48903. height: math.unit(160, "feet"),
  48904. default: true
  48905. },
  48906. ]
  48907. ))
  48908. characterMakers.push(() => makeCharacter(
  48909. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48910. {
  48911. front: {
  48912. height: math.unit(6, "feet"),
  48913. name: "Front",
  48914. image: {
  48915. source: "./media/characters/tenley-sidero/front.svg",
  48916. extra: 1365/1276,
  48917. bottom: 47/1412
  48918. }
  48919. },
  48920. back: {
  48921. height: math.unit(6, "feet"),
  48922. name: "Back",
  48923. image: {
  48924. source: "./media/characters/tenley-sidero/back.svg",
  48925. extra: 1383/1283,
  48926. bottom: 35/1418
  48927. }
  48928. },
  48929. dressed: {
  48930. height: math.unit(6, "feet"),
  48931. name: "Dressed",
  48932. image: {
  48933. source: "./media/characters/tenley-sidero/dressed.svg",
  48934. extra: 1364/1275,
  48935. bottom: 42/1406
  48936. }
  48937. },
  48938. head: {
  48939. height: math.unit(1.47, "feet"),
  48940. name: "Head",
  48941. image: {
  48942. source: "./media/characters/tenley-sidero/head.svg",
  48943. extra: 610/490,
  48944. bottom: 0/610
  48945. }
  48946. },
  48947. },
  48948. [
  48949. {
  48950. name: "Normal",
  48951. height: math.unit(154, "feet"),
  48952. default: true
  48953. },
  48954. ]
  48955. ))
  48956. characterMakers.push(() => makeCharacter(
  48957. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48958. {
  48959. front: {
  48960. height: math.unit(5, "inches"),
  48961. name: "Front",
  48962. image: {
  48963. source: "./media/characters/mallory/front.svg",
  48964. extra: 1919/1678,
  48965. bottom: 29/1948
  48966. }
  48967. },
  48968. hand: {
  48969. height: math.unit(0.73, "inches"),
  48970. name: "Hand",
  48971. image: {
  48972. source: "./media/characters/mallory/hand.svg"
  48973. }
  48974. },
  48975. paw: {
  48976. height: math.unit(0.68, "inches"),
  48977. name: "Paw",
  48978. image: {
  48979. source: "./media/characters/mallory/paw.svg"
  48980. }
  48981. },
  48982. },
  48983. [
  48984. {
  48985. name: "Small",
  48986. height: math.unit(5, "inches"),
  48987. default: true
  48988. },
  48989. ]
  48990. ))
  48991. characterMakers.push(() => makeCharacter(
  48992. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  48993. {
  48994. naked: {
  48995. height: math.unit(6, "feet"),
  48996. name: "Naked",
  48997. image: {
  48998. source: "./media/characters/mab/naked.svg",
  48999. extra: 1855/1757,
  49000. bottom: 208/2063
  49001. }
  49002. },
  49003. outside: {
  49004. height: math.unit(6, "feet"),
  49005. name: "Outside",
  49006. image: {
  49007. source: "./media/characters/mab/outside.svg",
  49008. extra: 1855/1757,
  49009. bottom: 208/2063
  49010. }
  49011. },
  49012. party: {
  49013. height: math.unit(6, "feet"),
  49014. name: "Party",
  49015. image: {
  49016. source: "./media/characters/mab/party.svg",
  49017. extra: 1855/1757,
  49018. bottom: 208/2063
  49019. }
  49020. },
  49021. },
  49022. [
  49023. {
  49024. name: "Normal",
  49025. height: math.unit(165, "feet"),
  49026. default: true
  49027. },
  49028. ]
  49029. ))
  49030. characterMakers.push(() => makeCharacter(
  49031. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49032. {
  49033. front: {
  49034. height: math.unit(12, "feet"),
  49035. weight: math.unit(4000, "lb"),
  49036. name: "Front",
  49037. image: {
  49038. source: "./media/characters/winter/front.svg",
  49039. extra: 1286/943,
  49040. bottom: 112/1398
  49041. }
  49042. },
  49043. frontNsfw: {
  49044. height: math.unit(12, "feet"),
  49045. weight: math.unit(4000, "lb"),
  49046. name: "Front (NSFW)",
  49047. image: {
  49048. source: "./media/characters/winter/front-nsfw.svg",
  49049. extra: 1286/943,
  49050. bottom: 112/1398
  49051. }
  49052. },
  49053. dick: {
  49054. height: math.unit(3.79, "feet"),
  49055. name: "Dick",
  49056. image: {
  49057. source: "./media/characters/winter/dick.svg"
  49058. }
  49059. },
  49060. },
  49061. [
  49062. {
  49063. name: "Big",
  49064. height: math.unit(12, "feet"),
  49065. default: true
  49066. },
  49067. ]
  49068. ))
  49069. characterMakers.push(() => makeCharacter(
  49070. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49071. {
  49072. front: {
  49073. height: math.unit(4.1, "inches"),
  49074. name: "Front",
  49075. image: {
  49076. source: "./media/characters/alto/front.svg",
  49077. extra: 736/627,
  49078. bottom: 90/826
  49079. }
  49080. },
  49081. },
  49082. [
  49083. {
  49084. name: "Normal",
  49085. height: math.unit(4.1, "inches"),
  49086. default: true
  49087. },
  49088. ]
  49089. ))
  49090. characterMakers.push(() => makeCharacter(
  49091. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49092. {
  49093. sitting: {
  49094. height: math.unit(3, "feet"),
  49095. name: "Sitting",
  49096. image: {
  49097. source: "./media/characters/ratstrid-v/sitting.svg",
  49098. extra: 355/310,
  49099. bottom: 136/491
  49100. }
  49101. },
  49102. },
  49103. [
  49104. {
  49105. name: "Normal",
  49106. height: math.unit(3, "feet"),
  49107. default: true
  49108. },
  49109. ]
  49110. ))
  49111. characterMakers.push(() => makeCharacter(
  49112. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49113. {
  49114. back: {
  49115. height: math.unit(6, "feet"),
  49116. weight: math.unit(350, "lb"),
  49117. name: "Back",
  49118. image: {
  49119. source: "./media/characters/siz/back.svg",
  49120. extra: 1449/1274,
  49121. bottom: 13/1462
  49122. }
  49123. },
  49124. },
  49125. [
  49126. {
  49127. name: "Over-Overcompressed",
  49128. height: math.unit(8, "feet")
  49129. },
  49130. {
  49131. name: "Overcompressed",
  49132. height: math.unit(32, "feet")
  49133. },
  49134. {
  49135. name: "Compressed",
  49136. height: math.unit(128, "feet"),
  49137. default: true
  49138. },
  49139. {
  49140. name: "Half-Compressed",
  49141. height: math.unit(512, "feet")
  49142. },
  49143. {
  49144. name: "Quarter-Compressed",
  49145. height: math.unit(2048, "feet")
  49146. },
  49147. {
  49148. name: "Uncompressed?",
  49149. height: math.unit(8192, "feet")
  49150. },
  49151. ]
  49152. ))
  49153. characterMakers.push(() => makeCharacter(
  49154. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49155. {
  49156. front: {
  49157. height: math.unit(5 + 9/12, "feet"),
  49158. weight: math.unit(150, "lb"),
  49159. name: "Front",
  49160. image: {
  49161. source: "./media/characters/ven/front.svg",
  49162. extra: 1372/1320,
  49163. bottom: 73/1445
  49164. }
  49165. },
  49166. side: {
  49167. height: math.unit(5 + 9/12, "feet"),
  49168. weight: math.unit(1150, "lb"),
  49169. name: "Side",
  49170. image: {
  49171. source: "./media/characters/ven/side.svg",
  49172. extra: 1119/1070,
  49173. bottom: 42/1161
  49174. },
  49175. default: true
  49176. },
  49177. },
  49178. [
  49179. {
  49180. name: "Normal",
  49181. height: math.unit(5 + 9/12, "feet"),
  49182. default: true
  49183. },
  49184. ]
  49185. ))
  49186. //characters
  49187. function makeCharacters() {
  49188. const results = [];
  49189. characterMakers.forEach(character => {
  49190. results.push(character());
  49191. });
  49192. return results;
  49193. }