less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

52566 wiersze
1.3 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.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. }
  2007. //species
  2008. function getSpeciesInfo(speciesList) {
  2009. let result = new Set();
  2010. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2011. result.add(entry)
  2012. });
  2013. return Array.from(result);
  2014. };
  2015. function getSpeciesInfoHelper(species) {
  2016. if (!speciesData[species]) {
  2017. console.warn(species + " doesn't exist");
  2018. return [];
  2019. }
  2020. if (speciesData[species].parents) {
  2021. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2022. } else {
  2023. return [species];
  2024. }
  2025. }
  2026. characterMakers.push(() => makeCharacter(
  2027. {
  2028. name: "Fen",
  2029. species: ["crux"],
  2030. description: {
  2031. title: "Bio",
  2032. text: "Very furry. Sheds on everything."
  2033. },
  2034. tags: [
  2035. "anthro",
  2036. "goo"
  2037. ]
  2038. },
  2039. {
  2040. front: {
  2041. height: math.unit(12, "feet"),
  2042. weight: math.unit(2400, "lb"),
  2043. name: "Front",
  2044. image: {
  2045. source: "./media/characters/fen/front.svg",
  2046. extra: 1804/1562,
  2047. bottom: 205/2009
  2048. },
  2049. extraAttributes: {
  2050. pawSize: {
  2051. name: "Paw Size",
  2052. power: 2,
  2053. type: "area",
  2054. base: math.unit(0.35, "m^2")
  2055. }
  2056. }
  2057. },
  2058. diving: {
  2059. height: math.unit(4.9, "meters"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Diving",
  2062. image: {
  2063. source: "./media/characters/fen/diving.svg"
  2064. }
  2065. },
  2066. goo: {
  2067. height: math.unit(12, "feet"),
  2068. weight: math.unit(3600, "lb"),
  2069. volume: math.unit(1000, "liters"),
  2070. preyCapacity: math.unit(6, "people"),
  2071. name: "Goo",
  2072. image: {
  2073. source: "./media/characters/fen/goo.svg",
  2074. extra: 1307/1071,
  2075. bottom: 134/1441
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(5.03, "feet"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/fen/maw.svg"
  2083. }
  2084. },
  2085. gooCeiling: {
  2086. height: math.unit(6.6, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. volume: math.unit(1000, "liters"),
  2089. preyCapacity: math.unit(6, "people"),
  2090. name: "Goo (Ceiling)",
  2091. image: {
  2092. source: "./media/characters/fen/goo-ceiling.svg"
  2093. }
  2094. },
  2095. tail: {
  2096. height: math.unit(12.1, "feet"),
  2097. name: "Tail",
  2098. image: {
  2099. source: "./media/characters/fen/tail.svg"
  2100. }
  2101. },
  2102. tailFull: {
  2103. height: math.unit(12.1, "feet"),
  2104. name: "Full Tail",
  2105. image: {
  2106. source: "./media/characters/fen/tail-full.svg"
  2107. }
  2108. },
  2109. back: {
  2110. height: math.unit(12, "feet"),
  2111. weight: math.unit(2400, "lb"),
  2112. name: "Back",
  2113. image: {
  2114. source: "./media/characters/fen/back.svg",
  2115. },
  2116. info: {
  2117. description: {
  2118. mode: "append",
  2119. text: "\n\nHe is not currently looking at you."
  2120. }
  2121. }
  2122. },
  2123. full: {
  2124. height: math.unit(1.85, "meter"),
  2125. weight: math.unit(3200, "lb"),
  2126. name: "Full",
  2127. image: {
  2128. source: "./media/characters/fen/full.svg",
  2129. extra: 1133/859,
  2130. bottom: 145/1278
  2131. },
  2132. info: {
  2133. description: {
  2134. mode: "append",
  2135. text: "\n\nMunch."
  2136. }
  2137. }
  2138. },
  2139. gooLounging: {
  2140. height: math.unit(4.53, "feet"),
  2141. weight: math.unit(3000, "lb"),
  2142. preyCapacity: math.unit(6, "people"),
  2143. name: "Goo (Lounging)",
  2144. image: {
  2145. source: "./media/characters/fen/goo-lounging.svg",
  2146. bottom: 116 / 613
  2147. }
  2148. },
  2149. lounging: {
  2150. height: math.unit(10.52, "feet"),
  2151. weight: math.unit(2400, "lb"),
  2152. name: "Lounging",
  2153. image: {
  2154. source: "./media/characters/fen/lounging.svg"
  2155. }
  2156. },
  2157. },
  2158. [
  2159. {
  2160. name: "Small",
  2161. height: math.unit(2.2428, "meter")
  2162. },
  2163. {
  2164. name: "Normal",
  2165. height: math.unit(12, "feet"),
  2166. default: true,
  2167. },
  2168. {
  2169. name: "Big",
  2170. height: math.unit(20, "feet")
  2171. },
  2172. {
  2173. name: "Minimacro",
  2174. height: math.unit(40, "feet"),
  2175. info: {
  2176. description: {
  2177. mode: "append",
  2178. text: "\n\nTOO DAMN BIG"
  2179. }
  2180. }
  2181. },
  2182. {
  2183. name: "Macro",
  2184. height: math.unit(100, "feet"),
  2185. info: {
  2186. description: {
  2187. mode: "append",
  2188. text: "\n\nTOO DAMN BIG"
  2189. }
  2190. }
  2191. },
  2192. {
  2193. name: "Megamacro",
  2194. height: math.unit(2, "miles")
  2195. },
  2196. {
  2197. name: "Gigamacro",
  2198. height: math.unit(10, "earths")
  2199. },
  2200. ]
  2201. ))
  2202. characterMakers.push(() => makeCharacter(
  2203. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2204. {
  2205. front: {
  2206. height: math.unit(183, "cm"),
  2207. weight: math.unit(80, "kg"),
  2208. name: "Front",
  2209. image: {
  2210. source: "./media/characters/sofia-fluttertail/front.svg",
  2211. bottom: 0.01,
  2212. extra: 2154 / 2081
  2213. }
  2214. },
  2215. frontAlt: {
  2216. height: math.unit(183, "cm"),
  2217. weight: math.unit(80, "kg"),
  2218. name: "Front (alt)",
  2219. image: {
  2220. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2221. }
  2222. },
  2223. back: {
  2224. height: math.unit(183, "cm"),
  2225. weight: math.unit(80, "kg"),
  2226. name: "Back",
  2227. image: {
  2228. source: "./media/characters/sofia-fluttertail/back.svg"
  2229. }
  2230. },
  2231. kneeling: {
  2232. height: math.unit(125, "cm"),
  2233. weight: math.unit(80, "kg"),
  2234. name: "Kneeling",
  2235. image: {
  2236. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2237. extra: 1033 / 977,
  2238. bottom: 23.7 / 1057
  2239. }
  2240. },
  2241. maw: {
  2242. height: math.unit(183 / 5, "cm"),
  2243. name: "Maw",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/maw.svg"
  2246. }
  2247. },
  2248. mawcloseup: {
  2249. height: math.unit(183 / 5 * 0.41, "cm"),
  2250. name: "Maw (Closeup)",
  2251. image: {
  2252. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2253. }
  2254. },
  2255. paws: {
  2256. height: math.unit(1.17, "feet"),
  2257. name: "Paws",
  2258. image: {
  2259. source: "./media/characters/sofia-fluttertail/paws.svg",
  2260. extra: 851 / 851,
  2261. bottom: 17 / 868
  2262. }
  2263. },
  2264. },
  2265. [
  2266. {
  2267. name: "Normal",
  2268. height: math.unit(1.83, "meter")
  2269. },
  2270. {
  2271. name: "Size Thief",
  2272. height: math.unit(18, "feet")
  2273. },
  2274. {
  2275. name: "50 Foot Collie",
  2276. height: math.unit(50, "feet")
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(96, "feet"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Megamerger",
  2285. height: math.unit(650, "feet")
  2286. },
  2287. ]
  2288. ))
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(7, "feet"),
  2294. weight: math.unit(100, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/march/front.svg",
  2298. extra: 1992/1851,
  2299. bottom: 39/2031
  2300. }
  2301. },
  2302. foot: {
  2303. height: math.unit(0.9, "feet"),
  2304. name: "Foot",
  2305. image: {
  2306. source: "./media/characters/march/foot.svg"
  2307. }
  2308. },
  2309. },
  2310. [
  2311. {
  2312. name: "Normal",
  2313. height: math.unit(7.9, "feet")
  2314. },
  2315. {
  2316. name: "Macro",
  2317. height: math.unit(220, "meters")
  2318. },
  2319. {
  2320. name: "Megamacro",
  2321. height: math.unit(2.98, "km"),
  2322. default: true
  2323. },
  2324. {
  2325. name: "Gigamacro",
  2326. height: math.unit(15963, "km")
  2327. },
  2328. {
  2329. name: "Teramacro",
  2330. height: math.unit(2980000000, "km")
  2331. },
  2332. {
  2333. name: "Examacro",
  2334. height: math.unit(250, "parsecs")
  2335. },
  2336. ]
  2337. ))
  2338. characterMakers.push(() => makeCharacter(
  2339. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2340. {
  2341. front: {
  2342. height: math.unit(6, "feet"),
  2343. weight: math.unit(60, "kg"),
  2344. name: "Front",
  2345. image: {
  2346. source: "./media/characters/noir/front.svg",
  2347. extra: 1,
  2348. bottom: 0.032
  2349. }
  2350. },
  2351. },
  2352. [
  2353. {
  2354. name: "Normal",
  2355. height: math.unit(6.6, "feet")
  2356. },
  2357. {
  2358. name: "Macro",
  2359. height: math.unit(500, "feet")
  2360. },
  2361. {
  2362. name: "Megamacro",
  2363. height: math.unit(2.5, "km"),
  2364. default: true
  2365. },
  2366. {
  2367. name: "Gigamacro",
  2368. height: math.unit(22500, "km")
  2369. },
  2370. {
  2371. name: "Teramacro",
  2372. height: math.unit(2500000000, "km")
  2373. },
  2374. {
  2375. name: "Examacro",
  2376. height: math.unit(200, "parsecs")
  2377. },
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2382. {
  2383. front: {
  2384. height: math.unit(7, "feet"),
  2385. weight: math.unit(100, "kg"),
  2386. name: "Front",
  2387. image: {
  2388. source: "./media/characters/okuri/front.svg",
  2389. extra: 739/665,
  2390. bottom: 39/778
  2391. }
  2392. },
  2393. back: {
  2394. height: math.unit(7, "feet"),
  2395. weight: math.unit(100, "kg"),
  2396. name: "Back",
  2397. image: {
  2398. source: "./media/characters/okuri/back.svg",
  2399. extra: 734/653,
  2400. bottom: 13/747
  2401. }
  2402. },
  2403. sitting: {
  2404. height: math.unit(2.95, "feet"),
  2405. weight: math.unit(100, "kg"),
  2406. name: "Sitting",
  2407. image: {
  2408. source: "./media/characters/okuri/sitting.svg",
  2409. extra: 370/318,
  2410. bottom: 99/469
  2411. }
  2412. },
  2413. },
  2414. [
  2415. {
  2416. name: "Smallest",
  2417. height: math.unit(5 + 2/12, "feet")
  2418. },
  2419. {
  2420. name: "Smaller",
  2421. height: math.unit(300, "feet")
  2422. },
  2423. {
  2424. name: "Small",
  2425. height: math.unit(1000, "feet")
  2426. },
  2427. {
  2428. name: "Macro",
  2429. height: math.unit(1, "mile")
  2430. },
  2431. {
  2432. name: "Mega Macro (Small)",
  2433. height: math.unit(20, "km")
  2434. },
  2435. {
  2436. name: "Mega Macro (Large)",
  2437. height: math.unit(600, "km")
  2438. },
  2439. {
  2440. name: "Giga Macro",
  2441. height: math.unit(10000, "km")
  2442. },
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(577560, "km"),
  2446. default: true
  2447. },
  2448. {
  2449. name: "Large",
  2450. height: math.unit(4, "galaxies")
  2451. },
  2452. {
  2453. name: "Largest",
  2454. height: math.unit(15, "multiverses")
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2460. {
  2461. front: {
  2462. height: math.unit(7, "feet"),
  2463. weight: math.unit(100, "kg"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/manny/front.svg",
  2467. extra: 1,
  2468. bottom: 0.06
  2469. }
  2470. },
  2471. back: {
  2472. height: math.unit(7, "feet"),
  2473. weight: math.unit(100, "kg"),
  2474. name: "Back",
  2475. image: {
  2476. source: "./media/characters/manny/back.svg",
  2477. extra: 1,
  2478. bottom: 0.014
  2479. }
  2480. },
  2481. },
  2482. [
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(7, "feet"),
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(78, "feet"),
  2490. default: true
  2491. },
  2492. {
  2493. name: "Macro+",
  2494. height: math.unit(300, "meters")
  2495. },
  2496. {
  2497. name: "Macro++",
  2498. height: math.unit(2400, "meters")
  2499. },
  2500. {
  2501. name: "Megamacro",
  2502. height: math.unit(5167, "meters")
  2503. },
  2504. {
  2505. name: "Gigamacro",
  2506. height: math.unit(41769, "miles")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/adake/front-1.svg"
  2519. }
  2520. },
  2521. frontAlt: {
  2522. height: math.unit(7, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Front (Alt)",
  2525. image: {
  2526. source: "./media/characters/adake/front-2.svg",
  2527. extra: 1,
  2528. bottom: 0.01
  2529. }
  2530. },
  2531. back: {
  2532. height: math.unit(7, "feet"),
  2533. weight: math.unit(100, "kg"),
  2534. name: "Back",
  2535. image: {
  2536. source: "./media/characters/adake/back.svg",
  2537. }
  2538. },
  2539. kneel: {
  2540. height: math.unit(5.385, "feet"),
  2541. weight: math.unit(100, "kg"),
  2542. name: "Kneeling",
  2543. image: {
  2544. source: "./media/characters/adake/kneel.svg",
  2545. bottom: 0.052
  2546. }
  2547. },
  2548. },
  2549. [
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(7, "feet"),
  2553. },
  2554. {
  2555. name: "Macro",
  2556. height: math.unit(78, "feet"),
  2557. default: true
  2558. },
  2559. {
  2560. name: "Macro+",
  2561. height: math.unit(300, "meters")
  2562. },
  2563. {
  2564. name: "Macro++",
  2565. height: math.unit(2400, "meters")
  2566. },
  2567. {
  2568. name: "Megamacro",
  2569. height: math.unit(5167, "meters")
  2570. },
  2571. {
  2572. name: "Gigamacro",
  2573. height: math.unit(41769, "miles")
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(1.65, "meters"),
  2582. weight: math.unit(50, "kg"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/elijah/front.svg",
  2586. extra: 858 / 830,
  2587. bottom: 95.5 / 953.8559
  2588. }
  2589. },
  2590. back: {
  2591. height: math.unit(1.65, "meters"),
  2592. weight: math.unit(50, "kg"),
  2593. name: "Back",
  2594. image: {
  2595. source: "./media/characters/elijah/back.svg",
  2596. extra: 895 / 850,
  2597. bottom: 5.3 / 897.956
  2598. }
  2599. },
  2600. frontNsfw: {
  2601. height: math.unit(1.65, "meters"),
  2602. weight: math.unit(50, "kg"),
  2603. name: "Front (NSFW)",
  2604. image: {
  2605. source: "./media/characters/elijah/front-nsfw.svg",
  2606. extra: 858 / 830,
  2607. bottom: 95.5 / 953.8559
  2608. }
  2609. },
  2610. backNsfw: {
  2611. height: math.unit(1.65, "meters"),
  2612. weight: math.unit(50, "kg"),
  2613. name: "Back (NSFW)",
  2614. image: {
  2615. source: "./media/characters/elijah/back-nsfw.svg",
  2616. extra: 895 / 850,
  2617. bottom: 5.3 / 897.956
  2618. }
  2619. },
  2620. dick: {
  2621. height: math.unit(1, "feet"),
  2622. name: "Dick",
  2623. image: {
  2624. source: "./media/characters/elijah/dick.svg"
  2625. }
  2626. },
  2627. beakOpen: {
  2628. height: math.unit(1.25, "feet"),
  2629. name: "Beak (Open)",
  2630. image: {
  2631. source: "./media/characters/elijah/beak-open.svg"
  2632. }
  2633. },
  2634. beakShut: {
  2635. height: math.unit(1.25, "feet"),
  2636. name: "Beak (Shut)",
  2637. image: {
  2638. source: "./media/characters/elijah/beak-shut.svg"
  2639. }
  2640. },
  2641. footFlexing: {
  2642. height: math.unit(1.61, "feet"),
  2643. name: "Foot (Flexing)",
  2644. image: {
  2645. source: "./media/characters/elijah/foot-flexing.svg"
  2646. }
  2647. },
  2648. footStepping: {
  2649. height: math.unit(1.44, "feet"),
  2650. name: "Foot (Stepping)",
  2651. image: {
  2652. source: "./media/characters/elijah/foot-stepping.svg"
  2653. }
  2654. },
  2655. plantigradeLeg: {
  2656. height: math.unit(2.34, "feet"),
  2657. name: "Plantigrade Leg",
  2658. image: {
  2659. source: "./media/characters/elijah/plantigrade-leg.svg"
  2660. }
  2661. },
  2662. plantigradeFootLeft: {
  2663. height: math.unit(0.9, "feet"),
  2664. name: "Plantigrade Foot (Left)",
  2665. image: {
  2666. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2667. }
  2668. },
  2669. plantigradeFootRight: {
  2670. height: math.unit(0.9, "feet"),
  2671. name: "Plantigrade Foot (Right)",
  2672. image: {
  2673. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(1.65, "meters")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(55, "meters"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Macro+",
  2689. height: math.unit(105, "meters")
  2690. },
  2691. ]
  2692. ))
  2693. characterMakers.push(() => makeCharacter(
  2694. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2695. {
  2696. front: {
  2697. height: math.unit(7 + 2/12, "feet"),
  2698. weight: math.unit(320, "kg"),
  2699. name: "Front",
  2700. image: {
  2701. source: "./media/characters/rai/front.svg",
  2702. extra: 1802/1696,
  2703. bottom: 68/1870
  2704. }
  2705. },
  2706. frontDressed: {
  2707. height: math.unit(7 + 2/12, "feet"),
  2708. weight: math.unit(320, "kg"),
  2709. name: "Front (Dressed)",
  2710. image: {
  2711. source: "./media/characters/rai/front-dressed.svg",
  2712. extra: 1802/1696,
  2713. bottom: 68/1870
  2714. }
  2715. },
  2716. side: {
  2717. height: math.unit(7 + 2/12, "feet"),
  2718. weight: math.unit(320, "kg"),
  2719. name: "Side",
  2720. image: {
  2721. source: "./media/characters/rai/side.svg",
  2722. extra: 1789/1710,
  2723. bottom: 115/1904
  2724. }
  2725. },
  2726. back: {
  2727. height: math.unit(7 + 2/12, "feet"),
  2728. weight: math.unit(320, "kg"),
  2729. name: "Back",
  2730. image: {
  2731. source: "./media/characters/rai/back.svg",
  2732. extra: 1770/1707,
  2733. bottom: 28/1798
  2734. }
  2735. },
  2736. feral: {
  2737. height: math.unit(9.5, "feet"),
  2738. weight: math.unit(640, "kg"),
  2739. name: "Feral",
  2740. image: {
  2741. source: "./media/characters/rai/feral.svg",
  2742. extra: 945/553,
  2743. bottom: 176/1121
  2744. }
  2745. },
  2746. dragon: {
  2747. height: math.unit(23, "feet"),
  2748. weight: math.unit(50000, "lb"),
  2749. name: "Dragon",
  2750. image: {
  2751. source: "./media/characters/rai/dragon.svg",
  2752. extra: 2498 / 2030,
  2753. bottom: 85.2 / 2584
  2754. }
  2755. },
  2756. maw: {
  2757. height: math.unit(1.69, "feet"),
  2758. name: "Maw",
  2759. image: {
  2760. source: "./media/characters/rai/maw.svg"
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(7 + 2/12, "feet")
  2768. },
  2769. {
  2770. name: "Big",
  2771. height: math.unit(11, "feet")
  2772. },
  2773. {
  2774. name: "Macro",
  2775. height: math.unit(302, "feet"),
  2776. default: true
  2777. },
  2778. ]
  2779. ))
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2782. {
  2783. frontDressed: {
  2784. height: math.unit(216, "feet"),
  2785. weight: math.unit(7000000, "lb"),
  2786. name: "Front (Dressed)",
  2787. image: {
  2788. source: "./media/characters/jazzy/front-dressed.svg",
  2789. extra: 2738 / 2651,
  2790. bottom: 41.8 / 2786
  2791. }
  2792. },
  2793. backDressed: {
  2794. height: math.unit(216, "feet"),
  2795. weight: math.unit(7000000, "lb"),
  2796. name: "Back (Dressed)",
  2797. image: {
  2798. source: "./media/characters/jazzy/back-dressed.svg",
  2799. extra: 2775 / 2673,
  2800. bottom: 36.8 / 2817
  2801. }
  2802. },
  2803. front: {
  2804. height: math.unit(216, "feet"),
  2805. weight: math.unit(7000000, "lb"),
  2806. name: "Front",
  2807. image: {
  2808. source: "./media/characters/jazzy/front.svg",
  2809. extra: 2738 / 2651,
  2810. bottom: 41.8 / 2786
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(216, "feet"),
  2815. weight: math.unit(7000000, "lb"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/jazzy/back.svg",
  2819. extra: 2775 / 2673,
  2820. bottom: 36.8 / 2817
  2821. }
  2822. },
  2823. maw: {
  2824. height: math.unit(20, "feet"),
  2825. name: "Maw",
  2826. image: {
  2827. source: "./media/characters/jazzy/maw.svg"
  2828. }
  2829. },
  2830. paws: {
  2831. height: math.unit(27.5, "feet"),
  2832. name: "Paws",
  2833. image: {
  2834. source: "./media/characters/jazzy/paws.svg"
  2835. }
  2836. },
  2837. eye: {
  2838. height: math.unit(4.4, "feet"),
  2839. name: "Eye",
  2840. image: {
  2841. source: "./media/characters/jazzy/eye.svg"
  2842. }
  2843. },
  2844. droneOffense: {
  2845. height: math.unit(9.5, "inches"),
  2846. name: "Drone (Offense)",
  2847. image: {
  2848. source: "./media/characters/jazzy/drone-offense.svg"
  2849. }
  2850. },
  2851. droneRecon: {
  2852. height: math.unit(9.5, "inches"),
  2853. name: "Drone (Recon)",
  2854. image: {
  2855. source: "./media/characters/jazzy/drone-recon.svg"
  2856. }
  2857. },
  2858. droneDefense: {
  2859. height: math.unit(9.5, "inches"),
  2860. name: "Drone (Defense)",
  2861. image: {
  2862. source: "./media/characters/jazzy/drone-defense.svg"
  2863. }
  2864. },
  2865. },
  2866. [
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(216, "feet"),
  2870. default: true
  2871. },
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2876. {
  2877. front: {
  2878. height: math.unit(9 + 6/12, "feet"),
  2879. weight: math.unit(700, "lb"),
  2880. name: "Front",
  2881. image: {
  2882. source: "./media/characters/flamm/front.svg",
  2883. extra: 1751/1632,
  2884. bottom: 46/1797
  2885. }
  2886. },
  2887. buff: {
  2888. height: math.unit(9 + 6/12, "feet"),
  2889. weight: math.unit(950, "lb"),
  2890. name: "Buff",
  2891. image: {
  2892. source: "./media/characters/flamm/buff.svg",
  2893. extra: 3018/2874,
  2894. bottom: 221/3239
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(9.5, "feet")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(200, "feet"),
  2906. default: true
  2907. },
  2908. ]
  2909. ))
  2910. characterMakers.push(() => makeCharacter(
  2911. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2912. {
  2913. front: {
  2914. height: math.unit(5 + 3/12, "feet"),
  2915. weight: math.unit(60, "kg"),
  2916. name: "Front",
  2917. image: {
  2918. source: "./media/characters/zephiro/front.svg",
  2919. extra: 2309 / 2162,
  2920. bottom: 0.069
  2921. }
  2922. },
  2923. side: {
  2924. height: math.unit(5 + 3/12, "feet"),
  2925. weight: math.unit(60, "kg"),
  2926. name: "Side",
  2927. image: {
  2928. source: "./media/characters/zephiro/side.svg",
  2929. extra: 2403 / 2279,
  2930. bottom: 0.015
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(5 + 3/12, "feet"),
  2935. weight: math.unit(60, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/zephiro/back.svg",
  2939. extra: 2373 / 2244,
  2940. bottom: 0.013
  2941. }
  2942. },
  2943. hand: {
  2944. height: math.unit(0.68, "feet"),
  2945. name: "Hand",
  2946. image: {
  2947. source: "./media/characters/zephiro/hand.svg"
  2948. }
  2949. },
  2950. paw: {
  2951. height: math.unit(1, "feet"),
  2952. name: "Paw",
  2953. image: {
  2954. source: "./media/characters/zephiro/paw.svg"
  2955. }
  2956. },
  2957. beans: {
  2958. height: math.unit(0.93, "feet"),
  2959. name: "Beans",
  2960. image: {
  2961. source: "./media/characters/zephiro/beans.svg"
  2962. }
  2963. },
  2964. },
  2965. [
  2966. {
  2967. name: "Micro",
  2968. height: math.unit(3, "inches")
  2969. },
  2970. {
  2971. name: "Normal",
  2972. height: math.unit(5 + 3 / 12, "feet"),
  2973. default: true
  2974. },
  2975. {
  2976. name: "Macro",
  2977. height: math.unit(118, "feet")
  2978. },
  2979. ]
  2980. ))
  2981. characterMakers.push(() => makeCharacter(
  2982. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2983. {
  2984. front: {
  2985. height: math.unit(5, "feet"),
  2986. weight: math.unit(90, "kg"),
  2987. name: "Front",
  2988. image: {
  2989. source: "./media/characters/fory/front.svg",
  2990. extra: 2862 / 2674,
  2991. bottom: 180 / 3043.8
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(5, "feet"),
  2996. weight: math.unit(90, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/fory/back.svg",
  3000. extra: 2962 / 2791,
  3001. bottom: 106 / 3071.8
  3002. }
  3003. },
  3004. foot: {
  3005. height: math.unit(2.14, "feet"),
  3006. name: "Foot",
  3007. image: {
  3008. source: "./media/characters/fory/foot.svg"
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Normal",
  3015. height: math.unit(5, "feet")
  3016. },
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(50, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(10, "miles")
  3025. },
  3026. {
  3027. name: "Gigamacro",
  3028. height: math.unit(5, "earths")
  3029. },
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3034. {
  3035. front: {
  3036. height: math.unit(7, "feet"),
  3037. weight: math.unit(90, "kg"),
  3038. name: "Front",
  3039. image: {
  3040. source: "./media/characters/kurrikage/front.svg",
  3041. extra: 1845/1733,
  3042. bottom: 119/1964
  3043. }
  3044. },
  3045. back: {
  3046. height: math.unit(7, "feet"),
  3047. weight: math.unit(90, "kg"),
  3048. name: "Back",
  3049. image: {
  3050. source: "./media/characters/kurrikage/back.svg",
  3051. extra: 1790/1677,
  3052. bottom: 61/1851
  3053. }
  3054. },
  3055. dressed: {
  3056. height: math.unit(7, "feet"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Dressed",
  3059. image: {
  3060. source: "./media/characters/kurrikage/dressed.svg",
  3061. extra: 1845/1733,
  3062. bottom: 119/1964
  3063. }
  3064. },
  3065. foot: {
  3066. height: math.unit(1.5, "feet"),
  3067. name: "Foot",
  3068. image: {
  3069. source: "./media/characters/kurrikage/foot.svg"
  3070. }
  3071. },
  3072. staff: {
  3073. height: math.unit(6.7, "feet"),
  3074. name: "Staff",
  3075. image: {
  3076. source: "./media/characters/kurrikage/staff.svg"
  3077. }
  3078. },
  3079. peek: {
  3080. height: math.unit(1.05, "feet"),
  3081. name: "Peeking",
  3082. image: {
  3083. source: "./media/characters/kurrikage/peek.svg",
  3084. bottom: 0.08
  3085. }
  3086. },
  3087. },
  3088. [
  3089. {
  3090. name: "Normal",
  3091. height: math.unit(12, "feet"),
  3092. default: true
  3093. },
  3094. {
  3095. name: "Big",
  3096. height: math.unit(20, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(500, "feet")
  3101. },
  3102. {
  3103. name: "Megamacro",
  3104. height: math.unit(20, "miles")
  3105. },
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3110. {
  3111. front: {
  3112. height: math.unit(6, "feet"),
  3113. weight: math.unit(75, "kg"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/shingo/front.svg",
  3117. extra: 1900/1825,
  3118. bottom: 82/1982
  3119. }
  3120. },
  3121. side: {
  3122. height: math.unit(6, "feet"),
  3123. weight: math.unit(75, "kg"),
  3124. name: "Side",
  3125. image: {
  3126. source: "./media/characters/shingo/side.svg",
  3127. extra: 1930/1865,
  3128. bottom: 16/1946
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(6, "feet"),
  3133. weight: math.unit(75, "kg"),
  3134. name: "Back",
  3135. image: {
  3136. source: "./media/characters/shingo/back.svg",
  3137. extra: 1922/1852,
  3138. bottom: 16/1938
  3139. }
  3140. },
  3141. frontDressed: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(150, "lb"),
  3144. name: "Front-dressed",
  3145. image: {
  3146. source: "./media/characters/shingo/front-dressed.svg",
  3147. extra: 1900/1825,
  3148. bottom: 82/1982
  3149. }
  3150. },
  3151. paw: {
  3152. height: math.unit(1.29, "feet"),
  3153. name: "Paw",
  3154. image: {
  3155. source: "./media/characters/shingo/paw.svg"
  3156. }
  3157. },
  3158. hand: {
  3159. height: math.unit(1.07, "feet"),
  3160. name: "Hand",
  3161. image: {
  3162. source: "./media/characters/shingo/hand.svg"
  3163. }
  3164. },
  3165. frontAlt: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(75, "kg"),
  3168. name: "Front (Alt)",
  3169. image: {
  3170. source: "./media/characters/shingo/front-alt.svg",
  3171. extra: 3511 / 3338,
  3172. bottom: 0.005
  3173. }
  3174. },
  3175. frontAlt2: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Front (Alt 2)",
  3179. image: {
  3180. source: "./media/characters/shingo/front-alt-2.svg",
  3181. extra: 706/681,
  3182. bottom: 11/717
  3183. }
  3184. },
  3185. pawAlt: {
  3186. height: math.unit(1, "feet"),
  3187. name: "Paw (Alt)",
  3188. image: {
  3189. source: "./media/characters/shingo/paw-alt.svg"
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Micro",
  3196. height: math.unit(4, "inches")
  3197. },
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(6, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro",
  3205. height: math.unit(108, "feet")
  3206. },
  3207. {
  3208. name: "Macro+",
  3209. height: math.unit(1500, "feet")
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3215. {
  3216. side: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/aigey/side.svg"
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(200, "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Megamacro",
  3233. height: math.unit(100, "miles")
  3234. },
  3235. ]
  3236. )
  3237. )
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3240. {
  3241. front: {
  3242. height: math.unit(5 + 5 / 12, "feet"),
  3243. weight: math.unit(75, "kg"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/natasha/front.svg",
  3247. extra: 859 / 824,
  3248. bottom: 23 / 879.6
  3249. }
  3250. },
  3251. frontNsfw: {
  3252. height: math.unit(5 + 5 / 12, "feet"),
  3253. weight: math.unit(75, "kg"),
  3254. name: "Front (NSFW)",
  3255. image: {
  3256. source: "./media/characters/natasha/front-nsfw.svg",
  3257. extra: 859 / 824,
  3258. bottom: 23 / 879.6
  3259. }
  3260. },
  3261. frontErect: {
  3262. height: math.unit(5 + 5 / 12, "feet"),
  3263. weight: math.unit(75, "kg"),
  3264. name: "Front (Erect)",
  3265. image: {
  3266. source: "./media/characters/natasha/front-erect.svg",
  3267. extra: 859 / 824,
  3268. bottom: 23 / 879.6
  3269. }
  3270. },
  3271. back: {
  3272. height: math.unit(5 + 5 / 12, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Back",
  3275. image: {
  3276. source: "./media/characters/natasha/back.svg",
  3277. extra: 887.9 / 852.6,
  3278. bottom: 9.7 / 896.4
  3279. }
  3280. },
  3281. backAlt: {
  3282. height: math.unit(5 + 5 / 12, "feet"),
  3283. weight: math.unit(75, "kg"),
  3284. name: "Back (Alt)",
  3285. image: {
  3286. source: "./media/characters/natasha/back-alt.svg",
  3287. extra: 1236.7 / 1192,
  3288. bottom: 22.3 / 1258.2
  3289. }
  3290. },
  3291. dick: {
  3292. height: math.unit(1.772, "feet"),
  3293. name: "Dick",
  3294. image: {
  3295. source: "./media/characters/natasha/dick.svg"
  3296. }
  3297. },
  3298. paw: {
  3299. height: math.unit(0.250, "meters"),
  3300. name: "Paw",
  3301. image: {
  3302. source: "./media/characters/natasha/paw.svg"
  3303. },
  3304. extraAttributes: {
  3305. "toeSize": {
  3306. name: "Toe Size",
  3307. power: 2,
  3308. type: "area",
  3309. base: math.unit(0.0024, "m^2")
  3310. },
  3311. "padSize": {
  3312. name: "Pad Size",
  3313. power: 2,
  3314. type: "area",
  3315. base: math.unit(0.00889, "m^2")
  3316. },
  3317. "pawSize": {
  3318. name: "Paw Size",
  3319. power: 2,
  3320. type: "area",
  3321. base: math.unit(0.023667, "m^2")
  3322. },
  3323. }
  3324. },
  3325. },
  3326. [
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(5 + 5 / 12, "feet")
  3330. },
  3331. {
  3332. name: "Large",
  3333. height: math.unit(12, "feet")
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(100, "feet"),
  3338. default: true
  3339. },
  3340. {
  3341. name: "Macro+",
  3342. height: math.unit(260, "feet")
  3343. },
  3344. {
  3345. name: "Macro++",
  3346. height: math.unit(1, "mile")
  3347. },
  3348. ]
  3349. ))
  3350. characterMakers.push(() => makeCharacter(
  3351. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3352. {
  3353. front: {
  3354. height: math.unit(6, "feet"),
  3355. weight: math.unit(75, "kg"),
  3356. name: "Front",
  3357. image: {
  3358. source: "./media/characters/malik/front.svg",
  3359. extra: 1750/1561,
  3360. bottom: 80/1830
  3361. },
  3362. extraAttributes: {
  3363. "toeSize": {
  3364. name: "Toe Size",
  3365. power: 2,
  3366. type: "area",
  3367. base: math.unit(0.0159, "m^2")
  3368. },
  3369. "pawSize": {
  3370. name: "Paw Size",
  3371. power: 2,
  3372. type: "area",
  3373. base: math.unit(0.09834, "m^2")
  3374. },
  3375. }
  3376. },
  3377. side: {
  3378. height: math.unit(6, "feet"),
  3379. weight: math.unit(75, "kg"),
  3380. name: "Side",
  3381. image: {
  3382. source: "./media/characters/malik/side.svg",
  3383. extra: 1802/1685,
  3384. bottom: 42/1844
  3385. },
  3386. extraAttributes: {
  3387. "toeSize": {
  3388. name: "Toe Size",
  3389. power: 2,
  3390. type: "area",
  3391. base: math.unit(0.0159, "m^2")
  3392. },
  3393. "pawSize": {
  3394. name: "Paw Size",
  3395. power: 2,
  3396. type: "area",
  3397. base: math.unit(0.09834, "m^2")
  3398. },
  3399. }
  3400. },
  3401. back: {
  3402. height: math.unit(6, "feet"),
  3403. weight: math.unit(75, "kg"),
  3404. name: "Back",
  3405. image: {
  3406. source: "./media/characters/malik/back.svg",
  3407. extra: 1803/1607,
  3408. bottom: 33/1836
  3409. },
  3410. extraAttributes: {
  3411. "toeSize": {
  3412. name: "Toe Size",
  3413. power: 2,
  3414. type: "area",
  3415. base: math.unit(0.0159, "m^2")
  3416. },
  3417. "pawSize": {
  3418. name: "Paw Size",
  3419. power: 2,
  3420. type: "area",
  3421. base: math.unit(0.09834, "m^2")
  3422. },
  3423. }
  3424. },
  3425. },
  3426. [
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(156, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Macro+",
  3434. height: math.unit(1188, "feet")
  3435. },
  3436. ]
  3437. ))
  3438. characterMakers.push(() => makeCharacter(
  3439. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3440. {
  3441. front: {
  3442. height: math.unit(6, "feet"),
  3443. weight: math.unit(75, "kg"),
  3444. name: "Front",
  3445. image: {
  3446. source: "./media/characters/sefer/front.svg",
  3447. extra: 848 / 659,
  3448. bottom: 28.3 / 876.442
  3449. }
  3450. },
  3451. back: {
  3452. height: math.unit(6, "feet"),
  3453. weight: math.unit(75, "kg"),
  3454. name: "Back",
  3455. image: {
  3456. source: "./media/characters/sefer/back.svg",
  3457. extra: 864 / 695,
  3458. bottom: 10 / 871
  3459. }
  3460. },
  3461. frontDressed: {
  3462. height: math.unit(6, "feet"),
  3463. weight: math.unit(75, "kg"),
  3464. name: "Front (Dressed)",
  3465. image: {
  3466. source: "./media/characters/sefer/front-dressed.svg",
  3467. extra: 839 / 653,
  3468. bottom: 37.6 / 878
  3469. }
  3470. },
  3471. },
  3472. [
  3473. {
  3474. name: "Normal",
  3475. height: math.unit(6, "feet"),
  3476. default: true
  3477. },
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3482. {
  3483. body: {
  3484. height: math.unit(2.2428, "meter"),
  3485. weight: math.unit(124.738, "kg"),
  3486. name: "Body",
  3487. image: {
  3488. extra: 1225 / 1050,
  3489. source: "./media/characters/north/front.svg"
  3490. }
  3491. }
  3492. },
  3493. [
  3494. {
  3495. name: "Micro",
  3496. height: math.unit(4, "inches")
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(63, "meters")
  3501. },
  3502. {
  3503. name: "Megamacro",
  3504. height: math.unit(101, "miles"),
  3505. default: true
  3506. }
  3507. ]
  3508. ))
  3509. characterMakers.push(() => makeCharacter(
  3510. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3511. {
  3512. angled: {
  3513. height: math.unit(4, "meter"),
  3514. weight: math.unit(150, "kg"),
  3515. name: "Angled",
  3516. image: {
  3517. source: "./media/characters/talan/angled-sfw.svg",
  3518. bottom: 29 / 3734
  3519. }
  3520. },
  3521. angledNsfw: {
  3522. height: math.unit(4, "meter"),
  3523. weight: math.unit(150, "kg"),
  3524. name: "Angled (NSFW)",
  3525. image: {
  3526. source: "./media/characters/talan/angled-nsfw.svg",
  3527. bottom: 29 / 3734
  3528. }
  3529. },
  3530. frontNsfw: {
  3531. height: math.unit(4, "meter"),
  3532. weight: math.unit(150, "kg"),
  3533. name: "Front (NSFW)",
  3534. image: {
  3535. source: "./media/characters/talan/front-nsfw.svg",
  3536. bottom: 29 / 3734
  3537. }
  3538. },
  3539. sideNsfw: {
  3540. height: math.unit(4, "meter"),
  3541. weight: math.unit(150, "kg"),
  3542. name: "Side (NSFW)",
  3543. image: {
  3544. source: "./media/characters/talan/side-nsfw.svg",
  3545. bottom: 29 / 3734
  3546. }
  3547. },
  3548. back: {
  3549. height: math.unit(4, "meter"),
  3550. weight: math.unit(150, "kg"),
  3551. name: "Back",
  3552. image: {
  3553. source: "./media/characters/talan/back.svg"
  3554. }
  3555. },
  3556. dickBottom: {
  3557. height: math.unit(0.621, "meter"),
  3558. name: "Dick (Bottom)",
  3559. image: {
  3560. source: "./media/characters/talan/dick-bottom.svg"
  3561. }
  3562. },
  3563. dickTop: {
  3564. height: math.unit(0.621, "meter"),
  3565. name: "Dick (Top)",
  3566. image: {
  3567. source: "./media/characters/talan/dick-top.svg"
  3568. }
  3569. },
  3570. dickSide: {
  3571. height: math.unit(0.305, "meter"),
  3572. name: "Dick (Side)",
  3573. image: {
  3574. source: "./media/characters/talan/dick-side.svg"
  3575. }
  3576. },
  3577. dickFront: {
  3578. height: math.unit(0.305, "meter"),
  3579. name: "Dick (Front)",
  3580. image: {
  3581. source: "./media/characters/talan/dick-front.svg"
  3582. }
  3583. },
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(4, "meters")
  3589. },
  3590. {
  3591. name: "Macro",
  3592. height: math.unit(100, "meters")
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(2, "miles"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Gigamacro",
  3601. height: math.unit(5000, "miles")
  3602. },
  3603. {
  3604. name: "Teramacro",
  3605. height: math.unit(100, "parsecs")
  3606. }
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3611. {
  3612. front: {
  3613. height: math.unit(2, "meter"),
  3614. weight: math.unit(90, "kg"),
  3615. name: "Front",
  3616. image: {
  3617. source: "./media/characters/gael'rathus/front.svg"
  3618. }
  3619. },
  3620. frontAlt: {
  3621. height: math.unit(2, "meter"),
  3622. weight: math.unit(90, "kg"),
  3623. name: "Front (alt)",
  3624. image: {
  3625. source: "./media/characters/gael'rathus/front-alt.svg"
  3626. }
  3627. },
  3628. frontAlt2: {
  3629. height: math.unit(2, "meter"),
  3630. weight: math.unit(90, "kg"),
  3631. name: "Front (alt 2)",
  3632. image: {
  3633. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3634. }
  3635. }
  3636. },
  3637. [
  3638. {
  3639. name: "Normal",
  3640. height: math.unit(9, "feet"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Large",
  3645. height: math.unit(25, "feet")
  3646. },
  3647. {
  3648. name: "Macro",
  3649. height: math.unit(0.25, "miles")
  3650. },
  3651. {
  3652. name: "Megamacro",
  3653. height: math.unit(10, "miles")
  3654. }
  3655. ]
  3656. ))
  3657. characterMakers.push(() => makeCharacter(
  3658. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3659. {
  3660. side: {
  3661. height: math.unit(2, "meter"),
  3662. weight: math.unit(140, "kg"),
  3663. name: "Side",
  3664. image: {
  3665. source: "./media/characters/sosha/side.svg",
  3666. extra: 1170/1006,
  3667. bottom: 94/1264
  3668. }
  3669. },
  3670. maw: {
  3671. height: math.unit(2.87, "feet"),
  3672. name: "Maw",
  3673. image: {
  3674. source: "./media/characters/sosha/maw.svg",
  3675. extra: 966/865,
  3676. bottom: 0/966
  3677. }
  3678. },
  3679. cooch: {
  3680. height: math.unit(5.6, "feet"),
  3681. name: "Cooch",
  3682. image: {
  3683. source: "./media/characters/sosha/cooch.svg"
  3684. }
  3685. },
  3686. },
  3687. [
  3688. {
  3689. name: "Normal",
  3690. height: math.unit(12, "feet"),
  3691. default: true
  3692. }
  3693. ]
  3694. ))
  3695. characterMakers.push(() => makeCharacter(
  3696. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3697. {
  3698. side: {
  3699. height: math.unit(5 + 5 / 12, "feet"),
  3700. weight: math.unit(170, "kg"),
  3701. name: "Side",
  3702. image: {
  3703. source: "./media/characters/runnola/side.svg",
  3704. extra: 741 / 448,
  3705. bottom: 0.05
  3706. }
  3707. },
  3708. },
  3709. [
  3710. {
  3711. name: "Small",
  3712. height: math.unit(3, "feet")
  3713. },
  3714. {
  3715. name: "Normal",
  3716. height: math.unit(5 + 5 / 12, "feet"),
  3717. default: true
  3718. },
  3719. {
  3720. name: "Big",
  3721. height: math.unit(10, "feet")
  3722. },
  3723. ]
  3724. ))
  3725. characterMakers.push(() => makeCharacter(
  3726. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3727. {
  3728. front: {
  3729. height: math.unit(2, "meter"),
  3730. weight: math.unit(50, "kg"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/kurribird/front.svg",
  3734. bottom: 0.015
  3735. }
  3736. },
  3737. frontAlt: {
  3738. height: math.unit(1.5, "meter"),
  3739. weight: math.unit(50, "kg"),
  3740. name: "Front (Alt)",
  3741. image: {
  3742. source: "./media/characters/kurribird/front-alt.svg",
  3743. extra: 1.45
  3744. }
  3745. },
  3746. },
  3747. [
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(7, "feet")
  3751. },
  3752. {
  3753. name: "Big",
  3754. height: math.unit(12, "feet"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Macro",
  3759. height: math.unit(1500, "feet")
  3760. },
  3761. {
  3762. name: "Megamacro",
  3763. height: math.unit(2, "miles")
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3769. {
  3770. front: {
  3771. height: math.unit(2, "meter"),
  3772. weight: math.unit(80, "kg"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/elbial/front.svg",
  3776. extra: 1643 / 1556,
  3777. bottom: 60.2 / 1696
  3778. }
  3779. },
  3780. side: {
  3781. height: math.unit(2, "meter"),
  3782. weight: math.unit(80, "kg"),
  3783. name: "Side",
  3784. image: {
  3785. source: "./media/characters/elbial/side.svg",
  3786. extra: 1601/1528,
  3787. bottom: 97/1698
  3788. }
  3789. },
  3790. back: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(80, "kg"),
  3793. name: "Back",
  3794. image: {
  3795. source: "./media/characters/elbial/back.svg",
  3796. extra: 1653/1569,
  3797. bottom: 20/1673
  3798. }
  3799. },
  3800. frontDressed: {
  3801. height: math.unit(2, "meter"),
  3802. weight: math.unit(80, "kg"),
  3803. name: "Front (Dressed)",
  3804. image: {
  3805. source: "./media/characters/elbial/front-dressed.svg",
  3806. extra: 1638/1569,
  3807. bottom: 70/1708
  3808. }
  3809. },
  3810. genitals: {
  3811. height: math.unit(2 / 3.367, "meter"),
  3812. name: "Genitals",
  3813. image: {
  3814. source: "./media/characters/elbial/genitals.svg"
  3815. }
  3816. },
  3817. },
  3818. [
  3819. {
  3820. name: "Large",
  3821. height: math.unit(100, "feet")
  3822. },
  3823. {
  3824. name: "Macro",
  3825. height: math.unit(500, "feet"),
  3826. default: true
  3827. },
  3828. {
  3829. name: "Megamacro",
  3830. height: math.unit(10, "miles")
  3831. },
  3832. {
  3833. name: "Gigamacro",
  3834. height: math.unit(25000, "miles")
  3835. },
  3836. {
  3837. name: "Full-Size",
  3838. height: math.unit(8000000, "gigaparsecs")
  3839. }
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3844. {
  3845. front: {
  3846. height: math.unit(2, "meter"),
  3847. weight: math.unit(60, "kg"),
  3848. name: "Front",
  3849. image: {
  3850. source: "./media/characters/noah/front.svg"
  3851. }
  3852. },
  3853. talons: {
  3854. height: math.unit(0.315, "meter"),
  3855. name: "Talons",
  3856. image: {
  3857. source: "./media/characters/noah/talons.svg"
  3858. }
  3859. }
  3860. },
  3861. [
  3862. {
  3863. name: "Large",
  3864. height: math.unit(50, "feet")
  3865. },
  3866. {
  3867. name: "Macro",
  3868. height: math.unit(750, "feet"),
  3869. default: true
  3870. },
  3871. {
  3872. name: "Megamacro",
  3873. height: math.unit(50, "miles")
  3874. },
  3875. {
  3876. name: "Gigamacro",
  3877. height: math.unit(100000, "miles")
  3878. },
  3879. {
  3880. name: "Full-Size",
  3881. height: math.unit(3000000000, "miles")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(2, "meter"),
  3890. weight: math.unit(80, "kg"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/natalya/front.svg"
  3894. }
  3895. },
  3896. back: {
  3897. height: math.unit(2, "meter"),
  3898. weight: math.unit(80, "kg"),
  3899. name: "Back",
  3900. image: {
  3901. source: "./media/characters/natalya/back.svg"
  3902. }
  3903. }
  3904. },
  3905. [
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(150, "feet"),
  3909. default: true
  3910. },
  3911. {
  3912. name: "Megamacro",
  3913. height: math.unit(5, "miles")
  3914. },
  3915. {
  3916. name: "Full-Size",
  3917. height: math.unit(600, "kiloparsecs")
  3918. }
  3919. ]
  3920. ))
  3921. characterMakers.push(() => makeCharacter(
  3922. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3923. {
  3924. front: {
  3925. height: math.unit(2, "meter"),
  3926. weight: math.unit(50, "kg"),
  3927. name: "Front",
  3928. image: {
  3929. source: "./media/characters/erestrebah/front.svg",
  3930. extra: 1262/1162,
  3931. bottom: 96/1358
  3932. }
  3933. },
  3934. back: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(50, "kg"),
  3937. name: "Back",
  3938. image: {
  3939. source: "./media/characters/erestrebah/back.svg",
  3940. extra: 1257/1139,
  3941. bottom: 13/1270
  3942. }
  3943. },
  3944. wing: {
  3945. height: math.unit(2, "meter"),
  3946. weight: math.unit(50, "kg"),
  3947. name: "Wing",
  3948. image: {
  3949. source: "./media/characters/erestrebah/wing.svg",
  3950. extra: 1262/1162,
  3951. bottom: 96/1358
  3952. }
  3953. },
  3954. mouth: {
  3955. height: math.unit(0.39, "feet"),
  3956. name: "Mouth",
  3957. image: {
  3958. source: "./media/characters/erestrebah/mouth.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Normal",
  3965. height: math.unit(10, "feet")
  3966. },
  3967. {
  3968. name: "Large",
  3969. height: math.unit(50, "feet"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Macro",
  3974. height: math.unit(300, "feet")
  3975. },
  3976. {
  3977. name: "Macro+",
  3978. height: math.unit(750, "feet")
  3979. },
  3980. {
  3981. name: "Megamacro",
  3982. height: math.unit(3, "miles")
  3983. }
  3984. ]
  3985. ))
  3986. characterMakers.push(() => makeCharacter(
  3987. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3988. {
  3989. front: {
  3990. height: math.unit(2, "meter"),
  3991. weight: math.unit(80, "kg"),
  3992. name: "Front",
  3993. image: {
  3994. source: "./media/characters/jennifer/front.svg",
  3995. bottom: 0.11,
  3996. extra: 1.16
  3997. }
  3998. },
  3999. frontAlt: {
  4000. height: math.unit(2, "meter"),
  4001. weight: math.unit(80, "kg"),
  4002. name: "Front (Alt)",
  4003. image: {
  4004. source: "./media/characters/jennifer/front-alt.svg"
  4005. }
  4006. }
  4007. },
  4008. [
  4009. {
  4010. name: "Canon Height",
  4011. height: math.unit(120, "feet"),
  4012. default: true
  4013. },
  4014. {
  4015. name: "Macro+",
  4016. height: math.unit(300, "feet")
  4017. },
  4018. {
  4019. name: "Megamacro",
  4020. height: math.unit(20000, "feet")
  4021. }
  4022. ]
  4023. ))
  4024. characterMakers.push(() => makeCharacter(
  4025. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4026. {
  4027. front: {
  4028. height: math.unit(2, "meter"),
  4029. weight: math.unit(50, "kg"),
  4030. name: "Front",
  4031. image: {
  4032. source: "./media/characters/kalista/front.svg",
  4033. extra: 1314/1145,
  4034. bottom: 101/1415
  4035. }
  4036. },
  4037. back: {
  4038. height: math.unit(2, "meter"),
  4039. weight: math.unit(50, "kg"),
  4040. name: "Back",
  4041. image: {
  4042. source: "./media/characters/kalista/back.svg",
  4043. extra: 1366 / 1156,
  4044. bottom: 33.9 / 1362.78
  4045. }
  4046. }
  4047. },
  4048. [
  4049. {
  4050. name: "Uncomfortably Small",
  4051. height: math.unit(10, "feet")
  4052. },
  4053. {
  4054. name: "Small",
  4055. height: math.unit(30, "feet")
  4056. },
  4057. {
  4058. name: "Macro",
  4059. height: math.unit(100, "feet"),
  4060. default: true
  4061. },
  4062. {
  4063. name: "Macro+",
  4064. height: math.unit(2000, "feet")
  4065. },
  4066. {
  4067. name: "True Form",
  4068. height: math.unit(8924, "miles")
  4069. }
  4070. ]
  4071. ))
  4072. characterMakers.push(() => makeCharacter(
  4073. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4074. {
  4075. front: {
  4076. height: math.unit(2, "meter"),
  4077. weight: math.unit(120, "kg"),
  4078. name: "Front",
  4079. image: {
  4080. source: "./media/characters/ggv/front.svg"
  4081. }
  4082. },
  4083. side: {
  4084. height: math.unit(2, "meter"),
  4085. weight: math.unit(120, "kg"),
  4086. name: "Side",
  4087. image: {
  4088. source: "./media/characters/ggv/side.svg"
  4089. }
  4090. }
  4091. },
  4092. [
  4093. {
  4094. name: "Extremely Puny",
  4095. height: math.unit(9 + 5 / 12, "feet")
  4096. },
  4097. {
  4098. name: "Horribly Small",
  4099. height: math.unit(47.7, "miles"),
  4100. default: true
  4101. },
  4102. {
  4103. name: "Reasonably Sized",
  4104. height: math.unit(25000, "parsecs")
  4105. },
  4106. {
  4107. name: "Slightly Uncompressed",
  4108. height: math.unit(7.77e31, "parsecs")
  4109. },
  4110. {
  4111. name: "Omniversal",
  4112. height: math.unit(1e300, "meters")
  4113. },
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4118. {
  4119. front: {
  4120. height: math.unit(2, "meter"),
  4121. weight: math.unit(75, "lb"),
  4122. name: "Front",
  4123. image: {
  4124. source: "./media/characters/napalm/front.svg"
  4125. }
  4126. },
  4127. back: {
  4128. height: math.unit(2, "meter"),
  4129. weight: math.unit(75, "lb"),
  4130. name: "Back",
  4131. image: {
  4132. source: "./media/characters/napalm/back.svg"
  4133. }
  4134. }
  4135. },
  4136. [
  4137. {
  4138. name: "Standard",
  4139. height: math.unit(55, "feet"),
  4140. default: true
  4141. }
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4146. {
  4147. front: {
  4148. height: math.unit(7 + 5 / 6, "feet"),
  4149. weight: math.unit(325, "lb"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/asana/front.svg",
  4153. extra: 1133 / 1060,
  4154. bottom: 15.2 / 1148.6
  4155. }
  4156. },
  4157. back: {
  4158. height: math.unit(7 + 5 / 6, "feet"),
  4159. weight: math.unit(325, "lb"),
  4160. name: "Back",
  4161. image: {
  4162. source: "./media/characters/asana/back.svg",
  4163. extra: 1114 / 1043,
  4164. bottom: 5 / 1120
  4165. }
  4166. },
  4167. dressedDark: {
  4168. height: math.unit(7 + 5 / 6, "feet"),
  4169. weight: math.unit(325, "lb"),
  4170. name: "Dressed (Dark)",
  4171. image: {
  4172. source: "./media/characters/asana/dressed-dark.svg",
  4173. extra: 1133 / 1060,
  4174. bottom: 15.2 / 1148.6
  4175. }
  4176. },
  4177. dressedLight: {
  4178. height: math.unit(7 + 5 / 6, "feet"),
  4179. weight: math.unit(325, "lb"),
  4180. name: "Dressed (Light)",
  4181. image: {
  4182. source: "./media/characters/asana/dressed-light.svg",
  4183. extra: 1133 / 1060,
  4184. bottom: 15.2 / 1148.6
  4185. }
  4186. },
  4187. },
  4188. [
  4189. {
  4190. name: "Standard",
  4191. height: math.unit(7 + 5 / 6, "feet"),
  4192. default: true
  4193. },
  4194. {
  4195. name: "Large",
  4196. height: math.unit(10, "meters")
  4197. },
  4198. {
  4199. name: "Macro",
  4200. height: math.unit(2500, "meters")
  4201. },
  4202. {
  4203. name: "Megamacro",
  4204. height: math.unit(5e6, "meters")
  4205. },
  4206. {
  4207. name: "Examacro",
  4208. height: math.unit(5e12, "lightyears")
  4209. },
  4210. {
  4211. name: "Max Size",
  4212. height: math.unit(1e31, "lightyears")
  4213. }
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4218. {
  4219. front: {
  4220. height: math.unit(2, "meter"),
  4221. weight: math.unit(60, "kg"),
  4222. name: "Front",
  4223. image: {
  4224. source: "./media/characters/ebony/front.svg",
  4225. bottom: 0.03,
  4226. extra: 1045 / 810 + 0.03
  4227. }
  4228. },
  4229. side: {
  4230. height: math.unit(2, "meter"),
  4231. weight: math.unit(60, "kg"),
  4232. name: "Side",
  4233. image: {
  4234. source: "./media/characters/ebony/side.svg",
  4235. bottom: 0.03,
  4236. extra: 1045 / 810 + 0.03
  4237. }
  4238. },
  4239. back: {
  4240. height: math.unit(2, "meter"),
  4241. weight: math.unit(60, "kg"),
  4242. name: "Back",
  4243. image: {
  4244. source: "./media/characters/ebony/back.svg",
  4245. bottom: 0.01,
  4246. extra: 1045 / 810 + 0.01
  4247. }
  4248. },
  4249. },
  4250. [
  4251. // TODO check why I did this lol
  4252. {
  4253. name: "Standard",
  4254. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4255. default: true
  4256. },
  4257. {
  4258. name: "Macro",
  4259. height: math.unit(200, "feet")
  4260. },
  4261. {
  4262. name: "Gigamacro",
  4263. height: math.unit(13000, "km")
  4264. }
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(6, "feet"),
  4272. weight: math.unit(175, "lb"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/mountain/front.svg",
  4276. extra: 972 / 955,
  4277. bottom: 64 / 1036.6
  4278. }
  4279. },
  4280. back: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(175, "lb"),
  4283. name: "Back",
  4284. image: {
  4285. source: "./media/characters/mountain/back.svg",
  4286. extra: 970 / 950,
  4287. bottom: 28.25 / 999
  4288. }
  4289. },
  4290. },
  4291. [
  4292. {
  4293. name: "Large",
  4294. height: math.unit(20, "meters")
  4295. },
  4296. {
  4297. name: "Macro",
  4298. height: math.unit(300, "meters")
  4299. },
  4300. {
  4301. name: "Gigamacro",
  4302. height: math.unit(10000, "km"),
  4303. default: true
  4304. },
  4305. {
  4306. name: "Examacro",
  4307. height: math.unit(10e9, "lightyears")
  4308. }
  4309. ]
  4310. ))
  4311. characterMakers.push(() => makeCharacter(
  4312. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4313. {
  4314. front: {
  4315. height: math.unit(8, "feet"),
  4316. weight: math.unit(500, "lb"),
  4317. name: "Front",
  4318. image: {
  4319. source: "./media/characters/rick/front.svg"
  4320. }
  4321. }
  4322. },
  4323. [
  4324. {
  4325. name: "Normal",
  4326. height: math.unit(8, "feet"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Macro",
  4331. height: math.unit(5, "km")
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(8, "feet"),
  4340. weight: math.unit(120, "lb"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/ona/front.svg"
  4344. }
  4345. },
  4346. frontAlt: {
  4347. height: math.unit(8, "feet"),
  4348. weight: math.unit(120, "lb"),
  4349. name: "Front (Alt)",
  4350. image: {
  4351. source: "./media/characters/ona/front-alt.svg"
  4352. }
  4353. },
  4354. back: {
  4355. height: math.unit(8, "feet"),
  4356. weight: math.unit(120, "lb"),
  4357. name: "Back",
  4358. image: {
  4359. source: "./media/characters/ona/back.svg"
  4360. }
  4361. },
  4362. foot: {
  4363. height: math.unit(1.1, "feet"),
  4364. name: "Foot",
  4365. image: {
  4366. source: "./media/characters/ona/foot.svg"
  4367. }
  4368. }
  4369. },
  4370. [
  4371. {
  4372. name: "Megamacro",
  4373. height: math.unit(70, "km"),
  4374. default: true
  4375. },
  4376. {
  4377. name: "Gigamacro",
  4378. height: math.unit(681818, "miles")
  4379. },
  4380. {
  4381. name: "Examacro",
  4382. height: math.unit(3800000, "lightyears")
  4383. },
  4384. ]
  4385. ))
  4386. characterMakers.push(() => makeCharacter(
  4387. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4388. {
  4389. front: {
  4390. height: math.unit(12, "feet"),
  4391. weight: math.unit(3000, "lb"),
  4392. name: "Front",
  4393. image: {
  4394. source: "./media/characters/mech/front.svg",
  4395. extra: 2900 / 2770,
  4396. bottom: 110 / 3010
  4397. }
  4398. },
  4399. back: {
  4400. height: math.unit(12, "feet"),
  4401. weight: math.unit(3000, "lb"),
  4402. name: "Back",
  4403. image: {
  4404. source: "./media/characters/mech/back.svg",
  4405. extra: 3011 / 2890,
  4406. bottom: 94 / 3105
  4407. }
  4408. },
  4409. maw: {
  4410. height: math.unit(3.07, "feet"),
  4411. name: "Maw",
  4412. image: {
  4413. source: "./media/characters/mech/maw.svg"
  4414. }
  4415. },
  4416. head: {
  4417. height: math.unit(2.82, "feet"),
  4418. name: "Head",
  4419. image: {
  4420. source: "./media/characters/mech/head.svg"
  4421. }
  4422. },
  4423. dick: {
  4424. height: math.unit(1.43, "feet"),
  4425. name: "Dick",
  4426. image: {
  4427. source: "./media/characters/mech/dick.svg"
  4428. }
  4429. },
  4430. },
  4431. [
  4432. {
  4433. name: "Normal",
  4434. height: math.unit(12, "feet")
  4435. },
  4436. {
  4437. name: "Macro",
  4438. height: math.unit(300, "feet"),
  4439. default: true
  4440. },
  4441. {
  4442. name: "Macro+",
  4443. height: math.unit(1500, "feet")
  4444. },
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(1.3, "meter"),
  4452. weight: math.unit(30, "kg"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/gregory/front.svg",
  4456. }
  4457. }
  4458. },
  4459. [
  4460. {
  4461. name: "Normal",
  4462. height: math.unit(1.3, "meter"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Macro",
  4467. height: math.unit(20, "meter")
  4468. }
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(2.8, "meter"),
  4476. weight: math.unit(200, "kg"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/elory/front.svg",
  4480. }
  4481. }
  4482. },
  4483. [
  4484. {
  4485. name: "Normal",
  4486. height: math.unit(2.8, "meter"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Macro",
  4491. height: math.unit(38, "meter")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(470, "feet"),
  4500. weight: math.unit(924, "tons"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/angelpatamon/front.svg",
  4504. }
  4505. }
  4506. },
  4507. [
  4508. {
  4509. name: "Normal",
  4510. height: math.unit(470, "feet"),
  4511. default: true
  4512. },
  4513. {
  4514. name: "Deity Size I",
  4515. height: math.unit(28651.2, "km")
  4516. },
  4517. {
  4518. name: "Deity Size II",
  4519. height: math.unit(171907.2, "km")
  4520. }
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4525. {
  4526. side: {
  4527. height: math.unit(7.2, "meter"),
  4528. weight: math.unit(8.2, "tons"),
  4529. name: "Side",
  4530. image: {
  4531. source: "./media/characters/cryae/side.svg",
  4532. extra: 3500 / 1500
  4533. }
  4534. }
  4535. },
  4536. [
  4537. {
  4538. name: "Normal",
  4539. height: math.unit(7.2, "meter"),
  4540. default: true
  4541. }
  4542. ]
  4543. ))
  4544. characterMakers.push(() => makeCharacter(
  4545. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4546. {
  4547. front: {
  4548. height: math.unit(6, "feet"),
  4549. weight: math.unit(175, "lb"),
  4550. name: "Front",
  4551. image: {
  4552. source: "./media/characters/xera/front.svg",
  4553. extra: 2377 / 1972,
  4554. bottom: 75.5 / 2452
  4555. }
  4556. },
  4557. side: {
  4558. height: math.unit(6, "feet"),
  4559. weight: math.unit(175, "lb"),
  4560. name: "Side",
  4561. image: {
  4562. source: "./media/characters/xera/side.svg",
  4563. extra: 2345 / 2019,
  4564. bottom: 39.7 / 2384
  4565. }
  4566. },
  4567. back: {
  4568. height: math.unit(6, "feet"),
  4569. weight: math.unit(175, "lb"),
  4570. name: "Back",
  4571. image: {
  4572. source: "./media/characters/xera/back.svg",
  4573. extra: 2095 / 1984,
  4574. bottom: 67 / 2166
  4575. }
  4576. },
  4577. },
  4578. [
  4579. {
  4580. name: "Small",
  4581. height: math.unit(10, "feet")
  4582. },
  4583. {
  4584. name: "Macro",
  4585. height: math.unit(500, "meters"),
  4586. default: true
  4587. },
  4588. {
  4589. name: "Macro+",
  4590. height: math.unit(10, "km")
  4591. },
  4592. {
  4593. name: "Gigamacro",
  4594. height: math.unit(25000, "km")
  4595. },
  4596. {
  4597. name: "Teramacro",
  4598. height: math.unit(3e6, "km")
  4599. }
  4600. ]
  4601. ))
  4602. characterMakers.push(() => makeCharacter(
  4603. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4604. {
  4605. front: {
  4606. height: math.unit(6, "feet"),
  4607. weight: math.unit(175, "lb"),
  4608. name: "Front",
  4609. image: {
  4610. source: "./media/characters/nebula/front.svg",
  4611. extra: 2566 / 2362,
  4612. bottom: 81 / 2644
  4613. }
  4614. }
  4615. },
  4616. [
  4617. {
  4618. name: "Small",
  4619. height: math.unit(4.5, "meters")
  4620. },
  4621. {
  4622. name: "Macro",
  4623. height: math.unit(1500, "meters"),
  4624. default: true
  4625. },
  4626. {
  4627. name: "Megamacro",
  4628. height: math.unit(150, "km")
  4629. },
  4630. {
  4631. name: "Gigamacro",
  4632. height: math.unit(27000, "km")
  4633. }
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(6, "feet"),
  4641. weight: math.unit(225, "lb"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/abysgar/front.svg",
  4645. extra: 1739/1614,
  4646. bottom: 71/1810
  4647. }
  4648. },
  4649. frontNsfw: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(225, "lb"),
  4652. name: "Front (NSFW)",
  4653. image: {
  4654. source: "./media/characters/abysgar/front-nsfw.svg",
  4655. extra: 1739/1614,
  4656. bottom: 71/1810
  4657. }
  4658. },
  4659. back: {
  4660. height: math.unit(4.6, "feet"),
  4661. weight: math.unit(225, "lb"),
  4662. name: "Back",
  4663. image: {
  4664. source: "./media/characters/abysgar/back.svg",
  4665. extra: 1384/1327,
  4666. bottom: 0/1384
  4667. }
  4668. },
  4669. head: {
  4670. height: math.unit(1.25, "feet"),
  4671. name: "Head",
  4672. image: {
  4673. source: "./media/characters/abysgar/head.svg",
  4674. extra: 669/569,
  4675. bottom: 0/669
  4676. }
  4677. },
  4678. },
  4679. [
  4680. {
  4681. name: "Small",
  4682. height: math.unit(4.5, "meters")
  4683. },
  4684. {
  4685. name: "Macro",
  4686. height: math.unit(1250, "meters"),
  4687. default: true
  4688. },
  4689. {
  4690. name: "Megamacro",
  4691. height: math.unit(125, "km")
  4692. },
  4693. {
  4694. name: "Gigamacro",
  4695. height: math.unit(26000, "km")
  4696. }
  4697. ]
  4698. ))
  4699. characterMakers.push(() => makeCharacter(
  4700. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4701. {
  4702. front: {
  4703. height: math.unit(6, "feet"),
  4704. weight: math.unit(180, "lb"),
  4705. name: "Front",
  4706. image: {
  4707. source: "./media/characters/yakuz/front.svg"
  4708. }
  4709. }
  4710. },
  4711. [
  4712. {
  4713. name: "Small",
  4714. height: math.unit(5, "meters")
  4715. },
  4716. {
  4717. name: "Macro",
  4718. height: math.unit(1500, "meters"),
  4719. default: true
  4720. },
  4721. {
  4722. name: "Megamacro",
  4723. height: math.unit(200, "km")
  4724. },
  4725. {
  4726. name: "Gigamacro",
  4727. height: math.unit(100000, "km")
  4728. }
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4733. {
  4734. front: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(175, "lb"),
  4737. name: "Front",
  4738. image: {
  4739. source: "./media/characters/mirova/front.svg",
  4740. extra: 3334 / 3071,
  4741. bottom: 42 / 3375.6
  4742. }
  4743. }
  4744. },
  4745. [
  4746. {
  4747. name: "Small",
  4748. height: math.unit(5, "meters")
  4749. },
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(900, "meters"),
  4753. default: true
  4754. },
  4755. {
  4756. name: "Megamacro",
  4757. height: math.unit(135, "km")
  4758. },
  4759. {
  4760. name: "Gigamacro",
  4761. height: math.unit(20000, "km")
  4762. }
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4767. {
  4768. side: {
  4769. height: math.unit(28.35, "feet"),
  4770. weight: math.unit(99.75, "tons"),
  4771. name: "Side",
  4772. image: {
  4773. source: "./media/characters/asana-mech/side.svg",
  4774. extra: 923 / 699,
  4775. bottom: 50 / 975
  4776. }
  4777. },
  4778. chaingun: {
  4779. height: math.unit(7, "feet"),
  4780. weight: math.unit(2400, "lb"),
  4781. name: "Chaingun",
  4782. image: {
  4783. source: "./media/characters/asana-mech/chaingun.svg"
  4784. }
  4785. },
  4786. laser: {
  4787. height: math.unit(7.12, "feet"),
  4788. weight: math.unit(2000, "lb"),
  4789. name: "Laser",
  4790. image: {
  4791. source: "./media/characters/asana-mech/laser.svg"
  4792. }
  4793. },
  4794. },
  4795. [
  4796. {
  4797. name: "Normal",
  4798. height: math.unit(28.35, "feet"),
  4799. default: true
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(2500, "feet")
  4804. },
  4805. {
  4806. name: "Megamacro",
  4807. height: math.unit(25, "miles")
  4808. },
  4809. {
  4810. name: "Examacro",
  4811. height: math.unit(6e8, "lightyears")
  4812. },
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4817. {
  4818. front: {
  4819. height: math.unit(5, "meters"),
  4820. weight: math.unit(1000, "kg"),
  4821. name: "Front",
  4822. image: {
  4823. source: "./media/characters/asche/front.svg",
  4824. extra: 1258 / 1190,
  4825. bottom: 47 / 1305
  4826. }
  4827. },
  4828. frontUnderwear: {
  4829. height: math.unit(5, "meters"),
  4830. weight: math.unit(1000, "kg"),
  4831. name: "Front (Underwear)",
  4832. image: {
  4833. source: "./media/characters/asche/front-underwear.svg",
  4834. extra: 1258 / 1190,
  4835. bottom: 47 / 1305
  4836. }
  4837. },
  4838. frontDressed: {
  4839. height: math.unit(5, "meters"),
  4840. weight: math.unit(1000, "kg"),
  4841. name: "Front (Dressed)",
  4842. image: {
  4843. source: "./media/characters/asche/front-dressed.svg",
  4844. extra: 1258 / 1190,
  4845. bottom: 47 / 1305
  4846. }
  4847. },
  4848. frontArmor: {
  4849. height: math.unit(5, "meters"),
  4850. weight: math.unit(1000, "kg"),
  4851. name: "Front (Armored)",
  4852. image: {
  4853. source: "./media/characters/asche/front-armored.svg",
  4854. extra: 1374 / 1308,
  4855. bottom: 23 / 1397
  4856. }
  4857. },
  4858. mp724: {
  4859. height: math.unit(0.96, "meters"),
  4860. weight: math.unit(38, "kg"),
  4861. name: "H&K MP724",
  4862. image: {
  4863. source: "./media/characters/asche/h&k-mp724.svg"
  4864. }
  4865. },
  4866. side: {
  4867. height: math.unit(5, "meters"),
  4868. weight: math.unit(1000, "kg"),
  4869. name: "Side",
  4870. image: {
  4871. source: "./media/characters/asche/side.svg",
  4872. extra: 1717 / 1609,
  4873. bottom: 0.005
  4874. }
  4875. },
  4876. back: {
  4877. height: math.unit(5, "meters"),
  4878. weight: math.unit(1000, "kg"),
  4879. name: "Back",
  4880. image: {
  4881. source: "./media/characters/asche/back.svg",
  4882. extra: 1570 / 1501
  4883. }
  4884. },
  4885. },
  4886. [
  4887. {
  4888. name: "DEFCON 5",
  4889. height: math.unit(5, "meters")
  4890. },
  4891. {
  4892. name: "DEFCON 4",
  4893. height: math.unit(500, "meters"),
  4894. default: true
  4895. },
  4896. {
  4897. name: "DEFCON 3",
  4898. height: math.unit(5, "km")
  4899. },
  4900. {
  4901. name: "DEFCON 2",
  4902. height: math.unit(500, "km")
  4903. },
  4904. {
  4905. name: "DEFCON 1",
  4906. height: math.unit(500000, "km")
  4907. },
  4908. {
  4909. name: "DEFCON 0",
  4910. height: math.unit(3, "gigaparsecs")
  4911. },
  4912. ]
  4913. ))
  4914. characterMakers.push(() => makeCharacter(
  4915. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4916. {
  4917. front: {
  4918. height: math.unit(2, "meters"),
  4919. weight: math.unit(76, "kg"),
  4920. name: "Front",
  4921. image: {
  4922. source: "./media/characters/gale/front.svg"
  4923. }
  4924. },
  4925. frontAlt1: {
  4926. height: math.unit(2, "meters"),
  4927. weight: math.unit(76, "kg"),
  4928. name: "Front (Alt 1)",
  4929. image: {
  4930. source: "./media/characters/gale/front-alt-1.svg"
  4931. }
  4932. },
  4933. frontAlt2: {
  4934. height: math.unit(2, "meters"),
  4935. weight: math.unit(76, "kg"),
  4936. name: "Front (Alt 2)",
  4937. image: {
  4938. source: "./media/characters/gale/front-alt-2.svg"
  4939. }
  4940. },
  4941. },
  4942. [
  4943. {
  4944. name: "Normal",
  4945. height: math.unit(7, "feet")
  4946. },
  4947. {
  4948. name: "Macro",
  4949. height: math.unit(150, "feet"),
  4950. default: true
  4951. },
  4952. {
  4953. name: "Macro+",
  4954. height: math.unit(300, "feet")
  4955. },
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4960. {
  4961. front: {
  4962. height: math.unit(5 + 10/12, "feet"),
  4963. weight: math.unit(67, "kg"),
  4964. name: "Front",
  4965. image: {
  4966. source: "./media/characters/draylen/front.svg",
  4967. extra: 832/777,
  4968. bottom: 85/917
  4969. }
  4970. }
  4971. },
  4972. [
  4973. {
  4974. name: "Normal",
  4975. height: math.unit(5 + 10/12, "feet")
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(150, "feet"),
  4980. default: true
  4981. }
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4986. {
  4987. front: {
  4988. height: math.unit(7 + 9 / 12, "feet"),
  4989. weight: math.unit(379, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/chez/front.svg"
  4993. }
  4994. },
  4995. side: {
  4996. height: math.unit(7 + 9 / 12, "feet"),
  4997. weight: math.unit(379, "lbs"),
  4998. name: "Side",
  4999. image: {
  5000. source: "./media/characters/chez/side.svg"
  5001. }
  5002. }
  5003. },
  5004. [
  5005. {
  5006. name: "Normal",
  5007. height: math.unit(7 + 9 / 12, "feet"),
  5008. default: true
  5009. },
  5010. {
  5011. name: "God King",
  5012. height: math.unit(9750000, "meters")
  5013. }
  5014. ]
  5015. ))
  5016. characterMakers.push(() => makeCharacter(
  5017. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5018. {
  5019. front: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(275, "lbs"),
  5022. name: "Front",
  5023. image: {
  5024. source: "./media/characters/kaylum/front.svg",
  5025. bottom: 0.01,
  5026. extra: 1166 / 1031
  5027. }
  5028. },
  5029. frontWingless: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(275, "lbs"),
  5032. name: "Front (Wingless)",
  5033. image: {
  5034. source: "./media/characters/kaylum/front-wingless.svg",
  5035. bottom: 0.01,
  5036. extra: 1117 / 1031
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(3.05, "meters")
  5044. },
  5045. {
  5046. name: "Master",
  5047. height: math.unit(5.5, "meters")
  5048. },
  5049. {
  5050. name: "Rampage",
  5051. height: math.unit(19, "meters")
  5052. },
  5053. {
  5054. name: "Macro Lite",
  5055. height: math.unit(37, "meters")
  5056. },
  5057. {
  5058. name: "Hyper Predator",
  5059. height: math.unit(61, "meters")
  5060. },
  5061. {
  5062. name: "Macro",
  5063. height: math.unit(138, "meters"),
  5064. default: true
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(5 + 5 / 12, "feet"),
  5073. weight: math.unit(120, "lbs"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/geta/front.svg",
  5077. extra: 1003/933,
  5078. bottom: 21/1024
  5079. }
  5080. },
  5081. paw: {
  5082. height: math.unit(0.35, "feet"),
  5083. name: "Paw",
  5084. image: {
  5085. source: "./media/characters/geta/paw.svg"
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Micro",
  5092. height: math.unit(3, "inches"),
  5093. default: true
  5094. },
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(5 + 5 / 12, "feet")
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(300, "lbs"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/tyrnn/front.svg"
  5110. }
  5111. }
  5112. },
  5113. [
  5114. {
  5115. name: "Main Height",
  5116. height: math.unit(355, "feet"),
  5117. default: true
  5118. },
  5119. {
  5120. name: "Fave. Height",
  5121. height: math.unit(2400, "feet")
  5122. }
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5127. {
  5128. front: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(300, "lbs"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/appledectomy/front.svg"
  5134. }
  5135. }
  5136. },
  5137. [
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(2500, "feet")
  5141. },
  5142. {
  5143. name: "Megamacro",
  5144. height: math.unit(50, "miles"),
  5145. default: true
  5146. },
  5147. {
  5148. name: "Gigamacro",
  5149. height: math.unit(5000, "miles")
  5150. },
  5151. {
  5152. name: "Teramacro",
  5153. height: math.unit(250000, "miles")
  5154. },
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5159. {
  5160. front: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(200, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/vulpes/front.svg",
  5166. extra: 573 / 543,
  5167. bottom: 0.033
  5168. }
  5169. },
  5170. side: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(200, "lbs"),
  5173. name: "Side",
  5174. image: {
  5175. source: "./media/characters/vulpes/side.svg",
  5176. extra: 577 / 549,
  5177. bottom: 11 / 588
  5178. }
  5179. },
  5180. back: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(200, "lbs"),
  5183. name: "Back",
  5184. image: {
  5185. source: "./media/characters/vulpes/back.svg",
  5186. extra: 573 / 549,
  5187. bottom: 20 / 593
  5188. }
  5189. },
  5190. feet: {
  5191. height: math.unit(1.276, "feet"),
  5192. name: "Feet",
  5193. image: {
  5194. source: "./media/characters/vulpes/feet.svg"
  5195. }
  5196. },
  5197. maw: {
  5198. height: math.unit(1.18, "feet"),
  5199. name: "Maw",
  5200. image: {
  5201. source: "./media/characters/vulpes/maw.svg"
  5202. }
  5203. },
  5204. },
  5205. [
  5206. {
  5207. name: "Micro",
  5208. height: math.unit(2, "inches")
  5209. },
  5210. {
  5211. name: "Normal",
  5212. height: math.unit(6.3, "feet")
  5213. },
  5214. {
  5215. name: "Macro",
  5216. height: math.unit(850, "feet")
  5217. },
  5218. {
  5219. name: "Megamacro",
  5220. height: math.unit(7500, "feet"),
  5221. default: true
  5222. },
  5223. {
  5224. name: "Gigamacro",
  5225. height: math.unit(570000, "miles")
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(210, "lbs"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/rain-fallen/front.svg"
  5238. }
  5239. },
  5240. side: {
  5241. height: math.unit(6, "feet"),
  5242. weight: math.unit(210, "lbs"),
  5243. name: "Side",
  5244. image: {
  5245. source: "./media/characters/rain-fallen/side.svg"
  5246. }
  5247. },
  5248. back: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(210, "lbs"),
  5251. name: "Back",
  5252. image: {
  5253. source: "./media/characters/rain-fallen/back.svg"
  5254. }
  5255. },
  5256. feral: {
  5257. height: math.unit(9, "feet"),
  5258. weight: math.unit(700, "lbs"),
  5259. name: "Feral",
  5260. image: {
  5261. source: "./media/characters/rain-fallen/feral.svg"
  5262. }
  5263. },
  5264. },
  5265. [
  5266. {
  5267. name: "Meddling with Mortals",
  5268. height: math.unit(8 + 8/12, "feet")
  5269. },
  5270. {
  5271. name: "Normal",
  5272. height: math.unit(5, "meter")
  5273. },
  5274. {
  5275. name: "Macro",
  5276. height: math.unit(150, "meter"),
  5277. default: true
  5278. },
  5279. {
  5280. name: "Megamacro",
  5281. height: math.unit(278e6, "meter")
  5282. },
  5283. {
  5284. name: "Gigamacro",
  5285. height: math.unit(2e9, "meter")
  5286. },
  5287. {
  5288. name: "Teramacro",
  5289. height: math.unit(8e12, "meter")
  5290. },
  5291. {
  5292. name: "Devourer",
  5293. height: math.unit(14, "zettameters")
  5294. },
  5295. {
  5296. name: "Scarlet King",
  5297. height: math.unit(18, "yottameters")
  5298. },
  5299. {
  5300. name: "Void",
  5301. height: math.unit(1e88, "yottameters")
  5302. }
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5307. {
  5308. standing: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(180, "lbs"),
  5311. name: "Standing",
  5312. image: {
  5313. source: "./media/characters/zaakira/standing.svg",
  5314. extra: 1599/1504,
  5315. bottom: 39/1638
  5316. }
  5317. },
  5318. laying: {
  5319. height: math.unit(3.3, "feet"),
  5320. weight: math.unit(180, "lbs"),
  5321. name: "Laying",
  5322. image: {
  5323. source: "./media/characters/zaakira/laying.svg"
  5324. }
  5325. },
  5326. },
  5327. [
  5328. {
  5329. name: "Normal",
  5330. height: math.unit(12, "feet")
  5331. },
  5332. {
  5333. name: "Macro",
  5334. height: math.unit(279, "feet"),
  5335. default: true
  5336. }
  5337. ]
  5338. ))
  5339. characterMakers.push(() => makeCharacter(
  5340. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5341. {
  5342. femSfw: {
  5343. height: math.unit(8, "feet"),
  5344. weight: math.unit(350, "lb"),
  5345. name: "Fem",
  5346. image: {
  5347. source: "./media/characters/sigvald/fem-sfw.svg",
  5348. extra: 182 / 164,
  5349. bottom: 8.7 / 190.5
  5350. }
  5351. },
  5352. femNsfw: {
  5353. height: math.unit(8, "feet"),
  5354. weight: math.unit(350, "lb"),
  5355. name: "Fem (NSFW)",
  5356. image: {
  5357. source: "./media/characters/sigvald/fem-nsfw.svg",
  5358. extra: 182 / 164,
  5359. bottom: 8.7 / 190.5
  5360. }
  5361. },
  5362. maleNsfw: {
  5363. height: math.unit(8, "feet"),
  5364. weight: math.unit(350, "lb"),
  5365. name: "Male (NSFW)",
  5366. image: {
  5367. source: "./media/characters/sigvald/male-nsfw.svg",
  5368. extra: 182 / 164,
  5369. bottom: 8.7 / 190.5
  5370. }
  5371. },
  5372. hermNsfw: {
  5373. height: math.unit(8, "feet"),
  5374. weight: math.unit(350, "lb"),
  5375. name: "Herm (NSFW)",
  5376. image: {
  5377. source: "./media/characters/sigvald/herm-nsfw.svg",
  5378. extra: 182 / 164,
  5379. bottom: 8.7 / 190.5
  5380. }
  5381. },
  5382. dick: {
  5383. height: math.unit(2.36, "feet"),
  5384. name: "Dick",
  5385. image: {
  5386. source: "./media/characters/sigvald/dick.svg"
  5387. }
  5388. },
  5389. eye: {
  5390. height: math.unit(0.31, "feet"),
  5391. name: "Eye",
  5392. image: {
  5393. source: "./media/characters/sigvald/eye.svg"
  5394. }
  5395. },
  5396. mouth: {
  5397. height: math.unit(0.92, "feet"),
  5398. name: "Mouth",
  5399. image: {
  5400. source: "./media/characters/sigvald/mouth.svg"
  5401. }
  5402. },
  5403. paws: {
  5404. height: math.unit(2.2, "feet"),
  5405. name: "Paws",
  5406. image: {
  5407. source: "./media/characters/sigvald/paws.svg"
  5408. }
  5409. }
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(8, "feet")
  5415. },
  5416. {
  5417. name: "Large",
  5418. height: math.unit(12, "feet")
  5419. },
  5420. {
  5421. name: "Larger",
  5422. height: math.unit(20, "feet")
  5423. },
  5424. {
  5425. name: "Macro",
  5426. height: math.unit(150, "feet")
  5427. },
  5428. {
  5429. name: "Macro+",
  5430. height: math.unit(200, "feet"),
  5431. default: true
  5432. },
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5437. {
  5438. side: {
  5439. height: math.unit(12, "feet"),
  5440. weight: math.unit(2000, "kg"),
  5441. name: "Side",
  5442. image: {
  5443. source: "./media/characters/scott/side.svg",
  5444. extra: 754 / 724,
  5445. bottom: 0.069
  5446. }
  5447. },
  5448. upright: {
  5449. height: math.unit(12, "feet"),
  5450. weight: math.unit(2000, "kg"),
  5451. name: "Upright",
  5452. image: {
  5453. source: "./media/characters/scott/upright.svg",
  5454. extra: 3881 / 3722,
  5455. bottom: 0.05
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(12, "feet"),
  5463. default: true
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5469. {
  5470. side: {
  5471. height: math.unit(8, "meters"),
  5472. weight: math.unit(84755, "lbs"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/tobias/side.svg",
  5476. extra: 1474 / 1096,
  5477. bottom: 38.9 / 1513.1235
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(8, "meters"),
  5485. default: true
  5486. },
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5491. {
  5492. front: {
  5493. height: math.unit(5.5, "feet"),
  5494. weight: math.unit(400, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/kieran/front.svg",
  5498. extra: 2694 / 2364,
  5499. bottom: 217 / 2908
  5500. }
  5501. },
  5502. side: {
  5503. height: math.unit(5.5, "feet"),
  5504. weight: math.unit(400, "lbs"),
  5505. name: "Side",
  5506. image: {
  5507. source: "./media/characters/kieran/side.svg",
  5508. extra: 875 / 777,
  5509. bottom: 84.6 / 959
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(5.5, "feet"),
  5517. default: true
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5523. {
  5524. side: {
  5525. height: math.unit(2, "meters"),
  5526. weight: math.unit(70, "kg"),
  5527. name: "Side",
  5528. image: {
  5529. source: "./media/characters/sanya/side.svg",
  5530. bottom: 0.02,
  5531. extra: 1.02
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Small",
  5538. height: math.unit(2, "meters")
  5539. },
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(3, "meters")
  5543. },
  5544. {
  5545. name: "Macro",
  5546. height: math.unit(16, "meters"),
  5547. default: true
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(2, "meters"),
  5556. weight: math.unit(120, "kg"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/miranda/front.svg",
  5560. extra: 195 / 185,
  5561. bottom: 10.9 / 206.5
  5562. }
  5563. },
  5564. back: {
  5565. height: math.unit(2, "meters"),
  5566. weight: math.unit(120, "kg"),
  5567. name: "Back",
  5568. image: {
  5569. source: "./media/characters/miranda/back.svg",
  5570. extra: 201 / 193,
  5571. bottom: 2.3 / 203.7
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(10, "feet"),
  5579. default: true
  5580. }
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "James", species: ["deer"], tags: ["anthro"] },
  5585. {
  5586. side: {
  5587. height: math.unit(2, "meters"),
  5588. weight: math.unit(100, "kg"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/james/front.svg",
  5592. extra: 10 / 8.5
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(8.5, "feet"),
  5600. default: true
  5601. }
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5606. {
  5607. side: {
  5608. height: math.unit(9.5, "feet"),
  5609. weight: math.unit(2500, "lbs"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/heather/side.svg"
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(9.5, "feet"),
  5620. default: true
  5621. }
  5622. ]
  5623. ))
  5624. characterMakers.push(() => makeCharacter(
  5625. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5626. {
  5627. side: {
  5628. height: math.unit(6.5, "feet"),
  5629. weight: math.unit(400, "lbs"),
  5630. name: "Side",
  5631. image: {
  5632. source: "./media/characters/lukas/side.svg",
  5633. extra: 7.25 / 6.5
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(6.5, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5647. {
  5648. side: {
  5649. height: math.unit(5, "feet"),
  5650. weight: math.unit(3000, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/louise/side.svg"
  5654. }
  5655. },
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(5, "feet"),
  5661. default: true
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5667. {
  5668. side: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(150, "lbs"),
  5671. name: "Side",
  5672. image: {
  5673. source: "./media/characters/ramona/side.svg",
  5674. extra: 871/854,
  5675. bottom: 41/912
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(5.3, "meters"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(20, "stories")
  5688. },
  5689. {
  5690. name: "Macro+",
  5691. height: math.unit(50, "stories")
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5697. {
  5698. standing: {
  5699. height: math.unit(5.75, "feet"),
  5700. weight: math.unit(160, "lbs"),
  5701. name: "Standing",
  5702. image: {
  5703. source: "./media/characters/deerpuff/standing.svg",
  5704. extra: 682 / 624
  5705. }
  5706. },
  5707. sitting: {
  5708. height: math.unit(5.75 / 1.79, "feet"),
  5709. weight: math.unit(160, "lbs"),
  5710. name: "Sitting",
  5711. image: {
  5712. source: "./media/characters/deerpuff/sitting.svg",
  5713. bottom: 44 / 400,
  5714. extra: 1
  5715. }
  5716. },
  5717. taurLaying: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(400, "lbs"),
  5720. name: "Taur (Laying)",
  5721. image: {
  5722. source: "./media/characters/deerpuff/taur-laying.svg"
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Puffball",
  5729. height: math.unit(6, "inches")
  5730. },
  5731. {
  5732. name: "Normalpuff",
  5733. height: math.unit(5.75, "feet")
  5734. },
  5735. {
  5736. name: "Macropuff",
  5737. height: math.unit(1500, "feet"),
  5738. default: true
  5739. },
  5740. {
  5741. name: "Megapuff",
  5742. height: math.unit(500, "miles")
  5743. },
  5744. {
  5745. name: "Gigapuff",
  5746. height: math.unit(250000, "miles")
  5747. },
  5748. {
  5749. name: "Omegapuff",
  5750. height: math.unit(1000, "lightyears")
  5751. },
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5756. {
  5757. stomping: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(170, "lbs"),
  5760. name: "Stomping",
  5761. image: {
  5762. source: "./media/characters/vivian/stomping.svg"
  5763. }
  5764. },
  5765. sitting: {
  5766. height: math.unit(6 / 1.75, "feet"),
  5767. weight: math.unit(170, "lbs"),
  5768. name: "Sitting",
  5769. image: {
  5770. source: "./media/characters/vivian/sitting.svg",
  5771. bottom: 1 / 6.4,
  5772. extra: 1,
  5773. }
  5774. },
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(7, "feet"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Macro",
  5784. height: math.unit(10, "stories")
  5785. },
  5786. {
  5787. name: "Macro+",
  5788. height: math.unit(30, "stories")
  5789. },
  5790. {
  5791. name: "Megamacro",
  5792. height: math.unit(10, "miles")
  5793. },
  5794. {
  5795. name: "Megamacro+",
  5796. height: math.unit(2750000, "meters")
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(160, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/prince/front.svg",
  5809. extra: 3400 / 3000
  5810. }
  5811. },
  5812. jumping: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(160, "lbs"),
  5815. name: "Jumping",
  5816. image: {
  5817. source: "./media/characters/prince/jump.svg",
  5818. extra: 2555 / 2134
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(7.75, "feet"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Not cute",
  5830. height: math.unit(17, "feet")
  5831. },
  5832. {
  5833. name: "I said NOT",
  5834. height: math.unit(91, "feet")
  5835. },
  5836. {
  5837. name: "Please stop",
  5838. height: math.unit(560, "feet")
  5839. },
  5840. {
  5841. name: "What have you done",
  5842. height: math.unit(2200, "feet")
  5843. },
  5844. {
  5845. name: "Deer God",
  5846. height: math.unit(3.6, "miles")
  5847. },
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5852. {
  5853. standing: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(300, "lbs"),
  5856. name: "Standing",
  5857. image: {
  5858. source: "./media/characters/psymon/standing.svg",
  5859. extra: 1888 / 1810,
  5860. bottom: 0.05
  5861. }
  5862. },
  5863. slithering: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(300, "lbs"),
  5866. name: "Slithering",
  5867. image: {
  5868. source: "./media/characters/psymon/slithering.svg",
  5869. extra: 1330 / 1224
  5870. }
  5871. },
  5872. slitheringAlt: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(300, "lbs"),
  5875. name: "Slithering (Alt)",
  5876. image: {
  5877. source: "./media/characters/psymon/slithering-alt.svg",
  5878. extra: 1330 / 1224
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(11.25, "feet"),
  5886. default: true
  5887. },
  5888. {
  5889. name: "Large",
  5890. height: math.unit(27, "feet")
  5891. },
  5892. {
  5893. name: "Giant",
  5894. height: math.unit(87, "feet")
  5895. },
  5896. {
  5897. name: "Macro",
  5898. height: math.unit(365, "feet")
  5899. },
  5900. {
  5901. name: "Megamacro",
  5902. height: math.unit(3, "miles")
  5903. },
  5904. {
  5905. name: "World Serpent",
  5906. height: math.unit(8000, "miles")
  5907. },
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5912. {
  5913. front: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(180, "lbs"),
  5916. name: "Front",
  5917. image: {
  5918. source: "./media/characters/daimos/front.svg",
  5919. extra: 4160 / 3897,
  5920. bottom: 0.021
  5921. }
  5922. }
  5923. },
  5924. [
  5925. {
  5926. name: "Normal",
  5927. height: math.unit(8, "feet"),
  5928. default: true
  5929. },
  5930. {
  5931. name: "Big Dog",
  5932. height: math.unit(22, "feet")
  5933. },
  5934. {
  5935. name: "Macro",
  5936. height: math.unit(127, "feet")
  5937. },
  5938. {
  5939. name: "Megamacro",
  5940. height: math.unit(3600, "feet")
  5941. },
  5942. ]
  5943. ))
  5944. characterMakers.push(() => makeCharacter(
  5945. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5946. {
  5947. side: {
  5948. height: math.unit(6, "feet"),
  5949. weight: math.unit(180, "lbs"),
  5950. name: "Side",
  5951. image: {
  5952. source: "./media/characters/blake/side.svg",
  5953. extra: 1212 / 1120,
  5954. bottom: 0.05
  5955. }
  5956. },
  5957. crouched: {
  5958. height: math.unit(6 * 0.57, "feet"),
  5959. weight: math.unit(180, "lbs"),
  5960. name: "Crouched",
  5961. image: {
  5962. source: "./media/characters/blake/crouched.svg",
  5963. extra: 840 / 587,
  5964. bottom: 0.04
  5965. }
  5966. },
  5967. bent: {
  5968. height: math.unit(6 * 0.75, "feet"),
  5969. weight: math.unit(180, "lbs"),
  5970. name: "Bent",
  5971. image: {
  5972. source: "./media/characters/blake/bent.svg",
  5973. extra: 592 / 544,
  5974. bottom: 0.035
  5975. }
  5976. },
  5977. },
  5978. [
  5979. {
  5980. name: "Normal",
  5981. height: math.unit(8 + 1 / 6, "feet"),
  5982. default: true
  5983. },
  5984. {
  5985. name: "Big Backside",
  5986. height: math.unit(37, "feet")
  5987. },
  5988. {
  5989. name: "Subway Shredder",
  5990. height: math.unit(72, "feet")
  5991. },
  5992. {
  5993. name: "City Carver",
  5994. height: math.unit(1675, "feet")
  5995. },
  5996. {
  5997. name: "Tectonic Tweaker",
  5998. height: math.unit(2300, "miles")
  5999. },
  6000. ]
  6001. ))
  6002. characterMakers.push(() => makeCharacter(
  6003. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6004. {
  6005. front: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(180, "lbs"),
  6008. name: "Front",
  6009. image: {
  6010. source: "./media/characters/guisetto/front.svg",
  6011. extra: 856 / 817,
  6012. bottom: 0.06
  6013. }
  6014. },
  6015. airborne: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(180, "lbs"),
  6018. name: "Airborne",
  6019. image: {
  6020. source: "./media/characters/guisetto/airborne.svg",
  6021. extra: 584 / 525
  6022. }
  6023. },
  6024. },
  6025. [
  6026. {
  6027. name: "Normal",
  6028. height: math.unit(10 + 11 / 12, "feet"),
  6029. default: true
  6030. },
  6031. {
  6032. name: "Large",
  6033. height: math.unit(35, "feet")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(475, "feet")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(180, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/luxor/front.svg",
  6050. extra: 2940 / 2152
  6051. }
  6052. },
  6053. back: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(180, "lbs"),
  6056. name: "Back",
  6057. image: {
  6058. source: "./media/characters/luxor/back.svg",
  6059. extra: 1083 / 960
  6060. }
  6061. },
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(5 + 5 / 6, "feet"),
  6067. default: true
  6068. },
  6069. {
  6070. name: "Lamp",
  6071. height: math.unit(50, "feet")
  6072. },
  6073. {
  6074. name: "Lämp",
  6075. height: math.unit(300, "feet")
  6076. },
  6077. {
  6078. name: "The sun is a lamp",
  6079. height: math.unit(250000, "miles")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6085. {
  6086. front: {
  6087. height: math.unit(6, "feet"),
  6088. weight: math.unit(50, "lbs"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/huoyan/front.svg"
  6092. }
  6093. },
  6094. side: {
  6095. height: math.unit(6, "feet"),
  6096. weight: math.unit(180, "lbs"),
  6097. name: "Side",
  6098. image: {
  6099. source: "./media/characters/huoyan/side.svg"
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Chef",
  6106. height: math.unit(9, "feet")
  6107. },
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(65, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(780, "feet")
  6116. },
  6117. {
  6118. name: "Flaming Mountain",
  6119. height: math.unit(4.8, "miles")
  6120. },
  6121. {
  6122. name: "Celestial",
  6123. height: math.unit(765000, "miles")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(5 + 3 / 4, "feet"),
  6132. weight: math.unit(120, "lbs"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/tails/front.svg"
  6136. }
  6137. }
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(5 + 3 / 4, "feet"),
  6143. default: true
  6144. }
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6149. {
  6150. front: {
  6151. height: math.unit(4, "feet"),
  6152. weight: math.unit(50, "lbs"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/rainy/front.svg"
  6156. }
  6157. }
  6158. },
  6159. [
  6160. {
  6161. name: "Macro",
  6162. height: math.unit(800, "feet"),
  6163. default: true
  6164. }
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6169. {
  6170. front: {
  6171. height: math.unit(6, "feet"),
  6172. weight: math.unit(150, "lbs"),
  6173. name: "Front",
  6174. image: {
  6175. source: "./media/characters/rainier/front.svg"
  6176. }
  6177. }
  6178. },
  6179. [
  6180. {
  6181. name: "Micro",
  6182. height: math.unit(2, "mm"),
  6183. default: true
  6184. }
  6185. ]
  6186. ))
  6187. characterMakers.push(() => makeCharacter(
  6188. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6189. {
  6190. front: {
  6191. height: math.unit(8 + 4/12, "feet"),
  6192. weight: math.unit(450, "kilograms"),
  6193. volume: math.unit(5, "cups"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/andy-renard/front.svg",
  6197. extra: 1839/1726,
  6198. bottom: 134/1973
  6199. }
  6200. },
  6201. back: {
  6202. height: math.unit(8 + 4/12, "feet"),
  6203. weight: math.unit(450, "kilograms"),
  6204. volume: math.unit(5, "cups"),
  6205. name: "Back",
  6206. image: {
  6207. source: "./media/characters/andy-renard/back.svg",
  6208. extra: 1838/1710,
  6209. bottom: 105/1943
  6210. }
  6211. },
  6212. },
  6213. [
  6214. {
  6215. name: "Tall",
  6216. height: math.unit(8 + 4/12, "feet")
  6217. },
  6218. {
  6219. name: "Mini Macro",
  6220. height: math.unit(15, "feet"),
  6221. default: true
  6222. },
  6223. {
  6224. name: "Macro",
  6225. height: math.unit(100, "feet")
  6226. },
  6227. {
  6228. name: "Mega Macro",
  6229. height: math.unit(1000, "feet")
  6230. },
  6231. {
  6232. name: "Giga Macro",
  6233. height: math.unit(10, "miles")
  6234. },
  6235. {
  6236. name: "God Macro",
  6237. height: math.unit(1, "multiverse")
  6238. },
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6243. {
  6244. front: {
  6245. height: math.unit(6, "feet"),
  6246. weight: math.unit(210, "lbs"),
  6247. name: "Front",
  6248. image: {
  6249. source: "./media/characters/cimmaron/front-sfw.svg",
  6250. extra: 701 / 676,
  6251. bottom: 0.046
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(210, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/cimmaron/back-sfw.svg",
  6260. extra: 701 / 676,
  6261. bottom: 0.046
  6262. }
  6263. },
  6264. frontNsfw: {
  6265. height: math.unit(6, "feet"),
  6266. weight: math.unit(210, "lbs"),
  6267. name: "Front (NSFW)",
  6268. image: {
  6269. source: "./media/characters/cimmaron/front-nsfw.svg",
  6270. extra: 701 / 676,
  6271. bottom: 0.046
  6272. }
  6273. },
  6274. backNsfw: {
  6275. height: math.unit(6, "feet"),
  6276. weight: math.unit(210, "lbs"),
  6277. name: "Back (NSFW)",
  6278. image: {
  6279. source: "./media/characters/cimmaron/back-nsfw.svg",
  6280. extra: 701 / 676,
  6281. bottom: 0.046
  6282. }
  6283. },
  6284. dick: {
  6285. height: math.unit(1.714, "feet"),
  6286. name: "Dick",
  6287. image: {
  6288. source: "./media/characters/cimmaron/dick.svg"
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Normal",
  6295. height: math.unit(6, "feet"),
  6296. default: true
  6297. },
  6298. {
  6299. name: "Macro Mayor",
  6300. height: math.unit(350, "meters")
  6301. },
  6302. ]
  6303. ))
  6304. characterMakers.push(() => makeCharacter(
  6305. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6306. {
  6307. front: {
  6308. height: math.unit(6, "feet"),
  6309. weight: math.unit(200, "lbs"),
  6310. name: "Front",
  6311. image: {
  6312. source: "./media/characters/akari/front.svg",
  6313. extra: 962 / 901,
  6314. bottom: 0.04
  6315. }
  6316. }
  6317. },
  6318. [
  6319. {
  6320. name: "Micro",
  6321. height: math.unit(5, "inches"),
  6322. default: true
  6323. },
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(7, "feet")
  6327. },
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6332. {
  6333. front: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(140, "lbs"),
  6336. name: "Front",
  6337. image: {
  6338. source: "./media/characters/cynosura/front.svg",
  6339. extra: 896 / 847
  6340. }
  6341. },
  6342. back: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(140, "lbs"),
  6345. name: "Back",
  6346. image: {
  6347. source: "./media/characters/cynosura/back.svg",
  6348. extra: 1365 / 1250
  6349. }
  6350. },
  6351. },
  6352. [
  6353. {
  6354. name: "Micro",
  6355. height: math.unit(4, "inches")
  6356. },
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(5.75, "feet"),
  6360. default: true
  6361. },
  6362. {
  6363. name: "Tall",
  6364. height: math.unit(10, "feet")
  6365. },
  6366. {
  6367. name: "Big",
  6368. height: math.unit(20, "feet")
  6369. },
  6370. {
  6371. name: "Macro",
  6372. height: math.unit(50, "feet")
  6373. },
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(13 + 2/12, "feet"),
  6381. weight: math.unit(800, "kg"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/gin/front.svg",
  6385. extra: 1312/1191,
  6386. bottom: 45/1357
  6387. }
  6388. },
  6389. mouth: {
  6390. height: math.unit(2.39 * 1.8, "feet"),
  6391. name: "Mouth",
  6392. image: {
  6393. source: "./media/characters/gin/mouth.svg"
  6394. }
  6395. },
  6396. hand: {
  6397. height: math.unit(1.57 * 2.19, "feet"),
  6398. name: "Hand",
  6399. image: {
  6400. source: "./media/characters/gin/hand.svg"
  6401. }
  6402. },
  6403. foot: {
  6404. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6405. name: "Foot",
  6406. image: {
  6407. source: "./media/characters/gin/foot.svg"
  6408. }
  6409. },
  6410. sole: {
  6411. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6412. name: "Sole",
  6413. image: {
  6414. source: "./media/characters/gin/sole.svg"
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Very Small",
  6421. height: math.unit(13 + 2 / 12, "feet")
  6422. },
  6423. {
  6424. name: "Micro",
  6425. height: math.unit(600, "miles")
  6426. },
  6427. {
  6428. name: "Regular",
  6429. height: math.unit(20, "earths"),
  6430. default: true
  6431. },
  6432. {
  6433. name: "Macro",
  6434. height: math.unit(2.2, "solarradii")
  6435. },
  6436. {
  6437. name: "Teramacro",
  6438. height: math.unit(1.2, "galaxies")
  6439. },
  6440. {
  6441. name: "Omegamacro",
  6442. height: math.unit(200, "universes")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(6 + 1 / 6, "feet"),
  6451. weight: math.unit(178, "lbs"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/guy/front.svg"
  6455. }
  6456. }
  6457. },
  6458. [
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(6 + 1 / 6, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Large",
  6466. height: math.unit(25 + 7 / 12, "feet")
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(60 + 9 / 12, "feet")
  6471. },
  6472. {
  6473. name: "Macro+",
  6474. height: math.unit(246, "feet")
  6475. },
  6476. {
  6477. name: "Macro++",
  6478. height: math.unit(878, "feet")
  6479. }
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(9, "feet"),
  6487. weight: math.unit(800, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/tiberius/front.svg",
  6491. extra: 2295 / 2071
  6492. }
  6493. },
  6494. back: {
  6495. height: math.unit(9, "feet"),
  6496. weight: math.unit(800, "lbs"),
  6497. name: "Back",
  6498. image: {
  6499. source: "./media/characters/tiberius/back.svg",
  6500. extra: 2373 / 2160
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Normal",
  6507. height: math.unit(9, "feet"),
  6508. default: true
  6509. }
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6514. {
  6515. front: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(600, "lbs"),
  6518. name: "Front",
  6519. image: {
  6520. source: "./media/characters/surgo/front.svg",
  6521. extra: 3591 / 2227
  6522. }
  6523. },
  6524. back: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(600, "lbs"),
  6527. name: "Back",
  6528. image: {
  6529. source: "./media/characters/surgo/back.svg",
  6530. extra: 3557 / 2228
  6531. }
  6532. },
  6533. laying: {
  6534. height: math.unit(6 * 0.85, "feet"),
  6535. weight: math.unit(600, "lbs"),
  6536. name: "Laying",
  6537. image: {
  6538. source: "./media/characters/surgo/laying.svg"
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(6, "feet"),
  6546. default: true
  6547. }
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6552. {
  6553. side: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(150, "lbs"),
  6556. name: "Side",
  6557. image: {
  6558. source: "./media/characters/cibus/side.svg",
  6559. extra: 800 / 400
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(6, "feet"),
  6567. default: true
  6568. }
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(240, "lbs"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/nibbles/front.svg"
  6580. }
  6581. },
  6582. side: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(240, "lbs"),
  6585. name: "Side",
  6586. image: {
  6587. source: "./media/characters/nibbles/side.svg"
  6588. }
  6589. },
  6590. },
  6591. [
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(9, "feet"),
  6595. default: true
  6596. }
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6601. {
  6602. side: {
  6603. height: math.unit(5 + 1 / 6, "feet"),
  6604. weight: math.unit(130, "lbs"),
  6605. name: "Side",
  6606. image: {
  6607. source: "./media/characters/rikky/side.svg",
  6608. extra: 851 / 801
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(5 + 1 / 6, "feet")
  6616. },
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(152, "feet"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Megamacro",
  6624. height: math.unit(7, "miles")
  6625. }
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6630. {
  6631. side: {
  6632. height: math.unit(370, "cm"),
  6633. weight: math.unit(350, "lbs"),
  6634. name: "Side",
  6635. image: {
  6636. source: "./media/characters/malfressa/side.svg"
  6637. }
  6638. },
  6639. walking: {
  6640. height: math.unit(370, "cm"),
  6641. weight: math.unit(350, "lbs"),
  6642. name: "Walking",
  6643. image: {
  6644. source: "./media/characters/malfressa/walking.svg"
  6645. }
  6646. },
  6647. feral: {
  6648. height: math.unit(2500, "cm"),
  6649. weight: math.unit(100000, "lbs"),
  6650. name: "Feral",
  6651. image: {
  6652. source: "./media/characters/malfressa/feral.svg",
  6653. extra: 2108 / 837,
  6654. bottom: 0.02
  6655. }
  6656. },
  6657. },
  6658. [
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(370, "cm")
  6662. },
  6663. {
  6664. name: "Macro",
  6665. height: math.unit(300, "meters"),
  6666. default: true
  6667. }
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6672. {
  6673. front: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(60, "kg"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/jaro/front.svg",
  6679. extra: 845/817,
  6680. bottom: 45/890
  6681. }
  6682. },
  6683. back: {
  6684. height: math.unit(6, "feet"),
  6685. weight: math.unit(60, "kg"),
  6686. name: "Back",
  6687. image: {
  6688. source: "./media/characters/jaro/back.svg",
  6689. extra: 847/817,
  6690. bottom: 34/881
  6691. }
  6692. },
  6693. },
  6694. [
  6695. {
  6696. name: "Micro",
  6697. height: math.unit(7, "inches")
  6698. },
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(5.5, "feet"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Minimacro",
  6706. height: math.unit(20, "feet")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(200, "meters")
  6711. }
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(195, "lb"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/rogue/front.svg"
  6723. }
  6724. },
  6725. },
  6726. [
  6727. {
  6728. name: "Macro",
  6729. height: math.unit(90, "feet"),
  6730. default: true
  6731. },
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6736. {
  6737. standing: {
  6738. height: math.unit(5 + 8 / 12, "feet"),
  6739. weight: math.unit(140, "lb"),
  6740. name: "Standing",
  6741. image: {
  6742. source: "./media/characters/piper/standing.svg",
  6743. extra: 1440/1284,
  6744. bottom: 66/1506
  6745. }
  6746. },
  6747. running: {
  6748. height: math.unit(5 + 8 / 12, "feet"),
  6749. weight: math.unit(140, "lb"),
  6750. name: "Running",
  6751. image: {
  6752. source: "./media/characters/piper/running.svg",
  6753. extra: 3948/3655,
  6754. bottom: 0/3948
  6755. }
  6756. },
  6757. sole: {
  6758. height: math.unit(0.81, "feet"),
  6759. weight: math.unit(2, "kg"),
  6760. name: "Sole",
  6761. image: {
  6762. source: "./media/characters/piper/sole.svg"
  6763. }
  6764. },
  6765. nipple: {
  6766. height: math.unit(0.25, "feet"),
  6767. weight: math.unit(1.5, "lb"),
  6768. name: "Nipple",
  6769. image: {
  6770. source: "./media/characters/piper/nipple.svg"
  6771. }
  6772. },
  6773. head: {
  6774. height: math.unit(1.1, "feet"),
  6775. name: "Head",
  6776. image: {
  6777. source: "./media/characters/piper/head.svg"
  6778. }
  6779. },
  6780. },
  6781. [
  6782. {
  6783. name: "Micro",
  6784. height: math.unit(2, "inches")
  6785. },
  6786. {
  6787. name: "Normal",
  6788. height: math.unit(5 + 8 / 12, "feet")
  6789. },
  6790. {
  6791. name: "Macro",
  6792. height: math.unit(250, "feet"),
  6793. default: true
  6794. },
  6795. {
  6796. name: "Megamacro",
  6797. height: math.unit(7, "miles")
  6798. },
  6799. ]
  6800. ))
  6801. characterMakers.push(() => makeCharacter(
  6802. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6803. {
  6804. front: {
  6805. height: math.unit(6, "feet"),
  6806. weight: math.unit(220, "lb"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/gemini/front.svg"
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(220, "lb"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/gemini/back.svg"
  6818. }
  6819. },
  6820. kneeling: {
  6821. height: math.unit(6 / 1.5, "feet"),
  6822. weight: math.unit(220, "lb"),
  6823. name: "Kneeling",
  6824. image: {
  6825. source: "./media/characters/gemini/kneeling.svg",
  6826. bottom: 0.02
  6827. }
  6828. },
  6829. },
  6830. [
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(300, "meters"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Megamacro",
  6838. height: math.unit(6900, "meters")
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6844. {
  6845. anthro: {
  6846. height: math.unit(2.35, "meters"),
  6847. weight: math.unit(73, "kg"),
  6848. name: "Anthro",
  6849. image: {
  6850. source: "./media/characters/alicia/anthro.svg",
  6851. extra: 2571 / 2385,
  6852. bottom: 75 / 2648
  6853. }
  6854. },
  6855. paw: {
  6856. height: math.unit(1.32, "feet"),
  6857. name: "Paw",
  6858. image: {
  6859. source: "./media/characters/alicia/paw.svg"
  6860. }
  6861. },
  6862. feral: {
  6863. height: math.unit(1.69, "meters"),
  6864. weight: math.unit(73, "kg"),
  6865. name: "Feral",
  6866. image: {
  6867. source: "./media/characters/alicia/feral.svg",
  6868. extra: 2123 / 1715,
  6869. bottom: 222 / 2349
  6870. }
  6871. },
  6872. },
  6873. [
  6874. {
  6875. name: "Normal",
  6876. height: math.unit(2.35, "meters")
  6877. },
  6878. {
  6879. name: "Macro",
  6880. height: math.unit(60, "meters"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Megamacro",
  6885. height: math.unit(10000, "kilometers")
  6886. },
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(7, "feet"),
  6894. weight: math.unit(250, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/archy/front.svg"
  6898. }
  6899. }
  6900. },
  6901. [
  6902. {
  6903. name: "Micro",
  6904. height: math.unit(1, "inch")
  6905. },
  6906. {
  6907. name: "Shorty",
  6908. height: math.unit(5, "feet")
  6909. },
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(7, "feet")
  6913. },
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(600, "meters"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Megamacro",
  6921. height: math.unit(1, "mile")
  6922. },
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6927. {
  6928. front: {
  6929. height: math.unit(1.65, "meters"),
  6930. weight: math.unit(74, "kg"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/berri/front.svg",
  6934. extra: 857 / 837,
  6935. bottom: 18 / 877
  6936. }
  6937. },
  6938. bum: {
  6939. height: math.unit(1.46, "feet"),
  6940. name: "Bum",
  6941. image: {
  6942. source: "./media/characters/berri/bum.svg"
  6943. }
  6944. },
  6945. mouth: {
  6946. height: math.unit(0.44, "feet"),
  6947. name: "Mouth",
  6948. image: {
  6949. source: "./media/characters/berri/mouth.svg"
  6950. }
  6951. },
  6952. paw: {
  6953. height: math.unit(0.826, "feet"),
  6954. name: "Paw",
  6955. image: {
  6956. source: "./media/characters/berri/paw.svg"
  6957. }
  6958. },
  6959. },
  6960. [
  6961. {
  6962. name: "Normal",
  6963. height: math.unit(1.65, "meters")
  6964. },
  6965. {
  6966. name: "Macro",
  6967. height: math.unit(60, "m"),
  6968. default: true
  6969. },
  6970. {
  6971. name: "Megamacro",
  6972. height: math.unit(9.213, "km")
  6973. },
  6974. {
  6975. name: "Planet Eater",
  6976. height: math.unit(489, "megameters")
  6977. },
  6978. {
  6979. name: "Teramacro",
  6980. height: math.unit(2471635000000, "meters")
  6981. },
  6982. {
  6983. name: "Examacro",
  6984. height: math.unit(8.0624e+26, "meters")
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(1.72, "meters"),
  6993. weight: math.unit(68, "kg"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/lexi/front.svg"
  6997. }
  6998. }
  6999. },
  7000. [
  7001. {
  7002. name: "Very Smol",
  7003. height: math.unit(10, "mm")
  7004. },
  7005. {
  7006. name: "Micro",
  7007. height: math.unit(6.8, "cm"),
  7008. default: true
  7009. },
  7010. {
  7011. name: "Normal",
  7012. height: math.unit(1.72, "m")
  7013. }
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7018. {
  7019. front: {
  7020. height: math.unit(1.69, "meters"),
  7021. weight: math.unit(68, "kg"),
  7022. name: "Front",
  7023. image: {
  7024. source: "./media/characters/martin/front.svg",
  7025. extra: 596 / 581
  7026. }
  7027. }
  7028. },
  7029. [
  7030. {
  7031. name: "Micro",
  7032. height: math.unit(6.85, "cm"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Normal",
  7037. height: math.unit(1.69, "m")
  7038. }
  7039. ]
  7040. ))
  7041. characterMakers.push(() => makeCharacter(
  7042. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7043. {
  7044. front: {
  7045. height: math.unit(1.69, "meters"),
  7046. weight: math.unit(68, "kg"),
  7047. name: "Front",
  7048. image: {
  7049. source: "./media/characters/juno/front.svg"
  7050. }
  7051. }
  7052. },
  7053. [
  7054. {
  7055. name: "Micro",
  7056. height: math.unit(7, "cm")
  7057. },
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(1.89, "m")
  7061. },
  7062. {
  7063. name: "Macro",
  7064. height: math.unit(353, "meters"),
  7065. default: true
  7066. }
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(1.93, "meters"),
  7074. weight: math.unit(83, "kg"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/samantha/front.svg"
  7078. }
  7079. },
  7080. frontClothed: {
  7081. height: math.unit(1.93, "meters"),
  7082. weight: math.unit(83, "kg"),
  7083. name: "Front (Clothed)",
  7084. image: {
  7085. source: "./media/characters/samantha/front-clothed.svg"
  7086. }
  7087. },
  7088. back: {
  7089. height: math.unit(1.93, "meters"),
  7090. weight: math.unit(83, "kg"),
  7091. name: "Back",
  7092. image: {
  7093. source: "./media/characters/samantha/back.svg"
  7094. }
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(1.93, "m")
  7101. },
  7102. {
  7103. name: "Macro",
  7104. height: math.unit(74, "meters"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Macro+",
  7109. height: math.unit(223, "meters"),
  7110. },
  7111. {
  7112. name: "Megamacro",
  7113. height: math.unit(8381, "meters"),
  7114. },
  7115. {
  7116. name: "Megamacro+",
  7117. height: math.unit(12000, "kilometers")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(1.92, "meters"),
  7126. weight: math.unit(80, "kg"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/dr-clay/front.svg"
  7130. }
  7131. },
  7132. frontClothed: {
  7133. height: math.unit(1.92, "meters"),
  7134. weight: math.unit(80, "kg"),
  7135. name: "Front (Clothed)",
  7136. image: {
  7137. source: "./media/characters/dr-clay/front-clothed.svg"
  7138. }
  7139. }
  7140. },
  7141. [
  7142. {
  7143. name: "Normal",
  7144. height: math.unit(1.92, "m")
  7145. },
  7146. {
  7147. name: "Macro",
  7148. height: math.unit(214, "meters"),
  7149. default: true
  7150. },
  7151. {
  7152. name: "Macro+",
  7153. height: math.unit(12.237, "meters"),
  7154. },
  7155. {
  7156. name: "Megamacro",
  7157. height: math.unit(557, "megameters"),
  7158. },
  7159. {
  7160. name: "Unimaginable",
  7161. height: math.unit(120e9, "lightyears")
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7167. {
  7168. front: {
  7169. height: math.unit(2, "meters"),
  7170. weight: math.unit(80, "kg"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7174. }
  7175. }
  7176. },
  7177. [
  7178. {
  7179. name: "Teramacro",
  7180. height: math.unit(500000, "lightyears"),
  7181. default: true
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7187. {
  7188. crux: {
  7189. height: math.unit(2, "meters"),
  7190. weight: math.unit(150, "kg"),
  7191. name: "Crux",
  7192. image: {
  7193. source: "./media/characters/vemus/crux.svg",
  7194. extra: 1074/936,
  7195. bottom: 23/1097
  7196. }
  7197. },
  7198. skunkTanuki: {
  7199. height: math.unit(2, "meters"),
  7200. weight: math.unit(150, "kg"),
  7201. name: "Skunk-Tanuki",
  7202. image: {
  7203. source: "./media/characters/vemus/skunk-tanuki.svg",
  7204. extra: 926/893,
  7205. bottom: 20/946
  7206. }
  7207. },
  7208. },
  7209. [
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(4, "meters"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Big",
  7217. height: math.unit(8, "meters")
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(100, "meters")
  7222. },
  7223. {
  7224. name: "Macro+",
  7225. height: math.unit(1500, "meters")
  7226. },
  7227. {
  7228. name: "Stellar",
  7229. height: math.unit(14e8, "meters")
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(2, "meters"),
  7238. weight: math.unit(70, "kg"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/beherit/front.svg",
  7242. extra: 1234/1109,
  7243. bottom: 55/1289
  7244. }
  7245. }
  7246. },
  7247. [
  7248. {
  7249. name: "Normal",
  7250. height: math.unit(6, "feet")
  7251. },
  7252. {
  7253. name: "Lorg",
  7254. height: math.unit(25, "feet"),
  7255. default: true
  7256. },
  7257. {
  7258. name: "Lorger",
  7259. height: math.unit(75, "feet")
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(200, "meters")
  7264. },
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(2, "meters"),
  7272. weight: math.unit(150, "kg"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/everett/front.svg",
  7276. extra: 1017/866,
  7277. bottom: 86/1103
  7278. }
  7279. },
  7280. paw: {
  7281. height: math.unit(2 / 3.6, "meters"),
  7282. name: "Paw",
  7283. image: {
  7284. source: "./media/characters/everett/paw.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(15, "feet"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Lorg",
  7296. height: math.unit(70, "feet"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Lorger",
  7301. height: math.unit(250, "feet")
  7302. },
  7303. {
  7304. name: "Macro",
  7305. height: math.unit(500, "meters")
  7306. },
  7307. ]
  7308. ))
  7309. characterMakers.push(() => makeCharacter(
  7310. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7311. {
  7312. front: {
  7313. height: math.unit(2, "meters"),
  7314. weight: math.unit(86, "kg"),
  7315. name: "Front",
  7316. image: {
  7317. source: "./media/characters/rose/front.svg",
  7318. extra: 1785/1636,
  7319. bottom: 30/1815
  7320. },
  7321. form: "liom",
  7322. default: true
  7323. },
  7324. frontSporty: {
  7325. height: math.unit(2, "meters"),
  7326. weight: math.unit(86, "kg"),
  7327. name: "Front (Sporty)",
  7328. image: {
  7329. source: "./media/characters/rose/front-sporty.svg",
  7330. extra: 350/335,
  7331. bottom: 10/360
  7332. },
  7333. form: "liom"
  7334. },
  7335. frontAlt: {
  7336. height: math.unit(1.6, "meters"),
  7337. weight: math.unit(86, "kg"),
  7338. name: "Front (Alt)",
  7339. image: {
  7340. source: "./media/characters/rose/front-alt.svg",
  7341. extra: 299/283,
  7342. bottom: 3/302
  7343. },
  7344. form: "liom"
  7345. },
  7346. plush: {
  7347. height: math.unit(2, "meters"),
  7348. weight: math.unit(86/3, "kg"),
  7349. name: "Plush",
  7350. image: {
  7351. source: "./media/characters/rose/plush.svg",
  7352. extra: 361/337,
  7353. bottom: 11/372
  7354. },
  7355. form: "plush",
  7356. default: true
  7357. },
  7358. faeStanding: {
  7359. height: math.unit(10, "cm"),
  7360. weight: math.unit(10, "grams"),
  7361. name: "Standing",
  7362. image: {
  7363. source: "./media/characters/rose/fae-standing.svg",
  7364. extra: 1189/1060,
  7365. bottom: 27/1216
  7366. },
  7367. form: "fae",
  7368. default: true
  7369. },
  7370. faeSitting: {
  7371. height: math.unit(5, "cm"),
  7372. weight: math.unit(10, "grams"),
  7373. name: "Sitting",
  7374. image: {
  7375. source: "./media/characters/rose/fae-sitting.svg",
  7376. extra: 737/577,
  7377. bottom: 356/1093
  7378. },
  7379. form: "fae"
  7380. },
  7381. faePaw: {
  7382. height: math.unit(1.35, "cm"),
  7383. name: "Paw",
  7384. image: {
  7385. source: "./media/characters/rose/fae-paw.svg"
  7386. },
  7387. form: "fae"
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "True Micro",
  7393. height: math.unit(9, "cm"),
  7394. form: "liom"
  7395. },
  7396. {
  7397. name: "Micro",
  7398. height: math.unit(16, "cm"),
  7399. form: "liom"
  7400. },
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(1.85, "meters"),
  7404. default: true,
  7405. form: "liom"
  7406. },
  7407. {
  7408. name: "Mini-Macro",
  7409. height: math.unit(5, "meters"),
  7410. form: "liom"
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(15, "meters"),
  7415. form: "liom"
  7416. },
  7417. {
  7418. name: "True Macro",
  7419. height: math.unit(40, "meters"),
  7420. form: "liom"
  7421. },
  7422. {
  7423. name: "City Scale",
  7424. height: math.unit(1, "km"),
  7425. form: "liom"
  7426. },
  7427. {
  7428. name: "Plushie",
  7429. height: math.unit(9, "cm"),
  7430. form: "plush",
  7431. default: true
  7432. },
  7433. {
  7434. name: "Fae",
  7435. height: math.unit(10, "cm"),
  7436. form: "fae",
  7437. default: true
  7438. },
  7439. ],
  7440. {
  7441. "liom": {
  7442. name: "Liom"
  7443. },
  7444. "plush": {
  7445. name: "Plush"
  7446. },
  7447. "fae": {
  7448. name: "Fae Fox",
  7449. default: true
  7450. }
  7451. }
  7452. ))
  7453. characterMakers.push(() => makeCharacter(
  7454. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7455. {
  7456. front: {
  7457. height: math.unit(2, "meters"),
  7458. weight: math.unit(350, "lbs"),
  7459. name: "Front",
  7460. image: {
  7461. source: "./media/characters/regal/front.svg"
  7462. }
  7463. },
  7464. back: {
  7465. height: math.unit(2, "meters"),
  7466. weight: math.unit(350, "lbs"),
  7467. name: "Back",
  7468. image: {
  7469. source: "./media/characters/regal/back.svg"
  7470. }
  7471. },
  7472. },
  7473. [
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(350, "feet"),
  7477. default: true
  7478. }
  7479. ]
  7480. ))
  7481. characterMakers.push(() => makeCharacter(
  7482. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7483. {
  7484. front: {
  7485. height: math.unit(4 + 11 / 12, "feet"),
  7486. weight: math.unit(100, "lbs"),
  7487. name: "Front",
  7488. image: {
  7489. source: "./media/characters/opal/front.svg"
  7490. }
  7491. },
  7492. frontAlt: {
  7493. height: math.unit(4 + 11 / 12, "feet"),
  7494. weight: math.unit(100, "lbs"),
  7495. name: "Front (Alt)",
  7496. image: {
  7497. source: "./media/characters/opal/front-alt.svg"
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Small",
  7504. height: math.unit(4 + 11 / 12, "feet")
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(20, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(120, "feet")
  7514. },
  7515. {
  7516. name: "Megamacro",
  7517. height: math.unit(80, "miles")
  7518. },
  7519. {
  7520. name: "True Size",
  7521. height: math.unit(100000, "lightyears")
  7522. },
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(6, "feet"),
  7530. weight: math.unit(200, "lbs"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/vector-wuff/front.svg"
  7534. }
  7535. }
  7536. },
  7537. [
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(2.8, "meters")
  7541. },
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(450, "meters"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Megamacro",
  7549. height: math.unit(15, "kilometers")
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(256, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/dannik/front.svg"
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(69.57, "meters"),
  7569. default: true
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(120, "lbs"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/azura-saharah/front.svg"
  7582. }
  7583. },
  7584. back: {
  7585. height: math.unit(6, "feet"),
  7586. weight: math.unit(120, "lbs"),
  7587. name: "Back",
  7588. image: {
  7589. source: "./media/characters/azura-saharah/back.svg"
  7590. }
  7591. },
  7592. },
  7593. [
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(100, "feet"),
  7597. default: true
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7603. {
  7604. side: {
  7605. height: math.unit(5 + 4 / 12, "feet"),
  7606. weight: math.unit(163, "lbs"),
  7607. name: "Side",
  7608. image: {
  7609. source: "./media/characters/kennedy/side.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Standard Doggo",
  7616. height: math.unit(5 + 4 / 12, "feet")
  7617. },
  7618. {
  7619. name: "Big Doggo",
  7620. height: math.unit(25 + 3 / 12, "feet"),
  7621. default: true
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(5 + 5/12, "feet"),
  7630. weight: math.unit(100, "lbs"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/odios-de-lunar/front.svg",
  7634. extra: 1468/1323,
  7635. bottom: 22/1490
  7636. }
  7637. }
  7638. },
  7639. [
  7640. {
  7641. name: "Micro",
  7642. height: math.unit(3, "inches")
  7643. },
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(5.5, "feet"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Macro",
  7651. height: math.unit(100, "feet")
  7652. },
  7653. ]
  7654. ))
  7655. characterMakers.push(() => makeCharacter(
  7656. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7657. {
  7658. back: {
  7659. height: math.unit(6, "feet"),
  7660. weight: math.unit(220, "lbs"),
  7661. name: "Back",
  7662. image: {
  7663. source: "./media/characters/mandake/back.svg"
  7664. }
  7665. }
  7666. },
  7667. [
  7668. {
  7669. name: "Normal",
  7670. height: math.unit(7, "feet"),
  7671. default: true
  7672. },
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(78, "feet")
  7676. },
  7677. {
  7678. name: "Macro+",
  7679. height: math.unit(300, "meters")
  7680. },
  7681. {
  7682. name: "Macro++",
  7683. height: math.unit(2400, "feet")
  7684. },
  7685. {
  7686. name: "Megamacro",
  7687. height: math.unit(5167, "meters")
  7688. },
  7689. {
  7690. name: "Gigamacro",
  7691. height: math.unit(41769, "miles")
  7692. },
  7693. ]
  7694. ))
  7695. characterMakers.push(() => makeCharacter(
  7696. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7697. {
  7698. front: {
  7699. height: math.unit(6, "feet"),
  7700. weight: math.unit(120, "lbs"),
  7701. name: "Front",
  7702. image: {
  7703. source: "./media/characters/yozey/front.svg"
  7704. }
  7705. },
  7706. frontAlt: {
  7707. height: math.unit(6, "feet"),
  7708. weight: math.unit(120, "lbs"),
  7709. name: "Front (Alt)",
  7710. image: {
  7711. source: "./media/characters/yozey/front-alt.svg"
  7712. }
  7713. },
  7714. side: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(120, "lbs"),
  7717. name: "Side",
  7718. image: {
  7719. source: "./media/characters/yozey/side.svg"
  7720. }
  7721. },
  7722. },
  7723. [
  7724. {
  7725. name: "Micro",
  7726. height: math.unit(3, "inches"),
  7727. default: true
  7728. },
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(6, "feet")
  7732. }
  7733. ]
  7734. ))
  7735. characterMakers.push(() => makeCharacter(
  7736. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7737. {
  7738. front: {
  7739. height: math.unit(6, "feet"),
  7740. weight: math.unit(103, "lbs"),
  7741. name: "Front",
  7742. image: {
  7743. source: "./media/characters/valeska-voss/front.svg"
  7744. }
  7745. }
  7746. },
  7747. [
  7748. {
  7749. name: "Mini-Sized Sub",
  7750. height: math.unit(3.1, "inches")
  7751. },
  7752. {
  7753. name: "Mid-Sized Sub",
  7754. height: math.unit(6.2, "inches")
  7755. },
  7756. {
  7757. name: "Full-Sized Sub",
  7758. height: math.unit(9.3, "inches")
  7759. },
  7760. {
  7761. name: "Normal",
  7762. height: math.unit(5 + 2 / 12, "foot"),
  7763. default: true
  7764. },
  7765. ]
  7766. ))
  7767. characterMakers.push(() => makeCharacter(
  7768. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7769. {
  7770. front: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(160, "lbs"),
  7773. name: "Front",
  7774. image: {
  7775. source: "./media/characters/gene-zeta/front.svg",
  7776. extra: 3006 / 2826,
  7777. bottom: 182 / 3188
  7778. }
  7779. }
  7780. },
  7781. [
  7782. {
  7783. name: "Micro",
  7784. height: math.unit(6, "inches")
  7785. },
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(5 + 11 / 12, "foot"),
  7789. default: true
  7790. },
  7791. {
  7792. name: "Macro",
  7793. height: math.unit(140, "feet")
  7794. },
  7795. {
  7796. name: "Supercharged",
  7797. height: math.unit(2500, "feet")
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(6, "feet"),
  7806. weight: math.unit(350, "lbs"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/razinox/front.svg",
  7810. extra: 1686 / 1548,
  7811. bottom: 28.2 / 1868
  7812. }
  7813. },
  7814. back: {
  7815. height: math.unit(6, "feet"),
  7816. weight: math.unit(350, "lbs"),
  7817. name: "Back",
  7818. image: {
  7819. source: "./media/characters/razinox/back.svg",
  7820. extra: 1660 / 1590,
  7821. bottom: 15 / 1665
  7822. }
  7823. },
  7824. },
  7825. [
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(10 + 8 / 12, "foot")
  7829. },
  7830. {
  7831. name: "Minimacro",
  7832. height: math.unit(15, "foot")
  7833. },
  7834. {
  7835. name: "Macro",
  7836. height: math.unit(60, "foot"),
  7837. default: true
  7838. },
  7839. {
  7840. name: "Megamacro",
  7841. height: math.unit(5, "miles")
  7842. },
  7843. {
  7844. name: "Gigamacro",
  7845. height: math.unit(6000, "miles")
  7846. },
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(6, "feet"),
  7854. weight: math.unit(150, "lbs"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/cobalt/front.svg"
  7858. }
  7859. }
  7860. },
  7861. [
  7862. {
  7863. name: "Normal",
  7864. height: math.unit(8 + 1 / 12, "foot")
  7865. },
  7866. {
  7867. name: "Macro",
  7868. height: math.unit(111, "foot"),
  7869. default: true
  7870. },
  7871. {
  7872. name: "Supracosmic",
  7873. height: math.unit(1e42, "feet")
  7874. },
  7875. ]
  7876. ))
  7877. characterMakers.push(() => makeCharacter(
  7878. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7879. {
  7880. front: {
  7881. height: math.unit(5, "inches"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/amanda/front.svg",
  7885. extra: 926/791,
  7886. bottom: 38/964
  7887. }
  7888. },
  7889. back: {
  7890. height: math.unit(5, "inches"),
  7891. name: "Back",
  7892. image: {
  7893. source: "./media/characters/amanda/back.svg",
  7894. extra: 909/805,
  7895. bottom: 43/952
  7896. }
  7897. },
  7898. },
  7899. [
  7900. {
  7901. name: "Micro",
  7902. height: math.unit(5, "inches"),
  7903. default: true
  7904. },
  7905. ]
  7906. ))
  7907. characterMakers.push(() => makeCharacter(
  7908. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7909. {
  7910. front: {
  7911. height: math.unit(2.75, "meters"),
  7912. weight: math.unit(1200, "lb"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/teal/front.svg",
  7916. extra: 2463 / 2320,
  7917. bottom: 166 / 2629
  7918. }
  7919. },
  7920. back: {
  7921. height: math.unit(2.75, "meters"),
  7922. weight: math.unit(1200, "lb"),
  7923. name: "Back",
  7924. image: {
  7925. source: "./media/characters/teal/back.svg",
  7926. extra: 2580 / 2489,
  7927. bottom: 151 / 2731
  7928. }
  7929. },
  7930. sitting: {
  7931. height: math.unit(1.9, "meters"),
  7932. weight: math.unit(1200, "lb"),
  7933. name: "Sitting",
  7934. image: {
  7935. source: "./media/characters/teal/sitting.svg",
  7936. extra: 623 / 590,
  7937. bottom: 121 / 744
  7938. }
  7939. },
  7940. standing: {
  7941. height: math.unit(2.75, "meters"),
  7942. weight: math.unit(1200, "lb"),
  7943. name: "Standing",
  7944. image: {
  7945. source: "./media/characters/teal/standing.svg",
  7946. extra: 923 / 893,
  7947. bottom: 60 / 983
  7948. }
  7949. },
  7950. stretching: {
  7951. height: math.unit(3.65, "meters"),
  7952. weight: math.unit(1200, "lb"),
  7953. name: "Stretching",
  7954. image: {
  7955. source: "./media/characters/teal/stretching.svg",
  7956. extra: 1276 / 1244,
  7957. bottom: 0 / 1276
  7958. }
  7959. },
  7960. legged: {
  7961. height: math.unit(1.3, "meters"),
  7962. weight: math.unit(100, "lb"),
  7963. name: "Legged",
  7964. image: {
  7965. source: "./media/characters/teal/legged.svg",
  7966. extra: 462 / 437,
  7967. bottom: 24 / 486
  7968. }
  7969. },
  7970. naga: {
  7971. height: math.unit(5.4, "meters"),
  7972. weight: math.unit(4000, "lb"),
  7973. name: "Naga",
  7974. image: {
  7975. source: "./media/characters/teal/naga.svg",
  7976. extra: 1902 / 1858,
  7977. bottom: 0 / 1902
  7978. }
  7979. },
  7980. hand: {
  7981. height: math.unit(0.52, "meters"),
  7982. name: "Hand",
  7983. image: {
  7984. source: "./media/characters/teal/hand.svg"
  7985. }
  7986. },
  7987. maw: {
  7988. height: math.unit(0.43, "meters"),
  7989. name: "Maw",
  7990. image: {
  7991. source: "./media/characters/teal/maw.svg"
  7992. }
  7993. },
  7994. slit: {
  7995. height: math.unit(0.25, "meters"),
  7996. name: "Slit",
  7997. image: {
  7998. source: "./media/characters/teal/slit.svg"
  7999. }
  8000. },
  8001. },
  8002. [
  8003. {
  8004. name: "Normal",
  8005. height: math.unit(2.75, "meters"),
  8006. default: true
  8007. },
  8008. {
  8009. name: "Macro",
  8010. height: math.unit(300, "feet")
  8011. },
  8012. {
  8013. name: "Macro+",
  8014. height: math.unit(2000, "feet")
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8020. {
  8021. frontCat: {
  8022. height: math.unit(6, "feet"),
  8023. weight: math.unit(180, "lbs"),
  8024. name: "Front (Cat)",
  8025. image: {
  8026. source: "./media/characters/ravin-amulet/front-cat.svg"
  8027. }
  8028. },
  8029. frontCatAlt: {
  8030. height: math.unit(6, "feet"),
  8031. weight: math.unit(180, "lbs"),
  8032. name: "Front (Alt, Cat)",
  8033. image: {
  8034. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8035. }
  8036. },
  8037. frontWerewolf: {
  8038. height: math.unit(6 * 1.2, "feet"),
  8039. weight: math.unit(225, "lbs"),
  8040. name: "Front (Werewolf)",
  8041. image: {
  8042. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8043. }
  8044. },
  8045. backWerewolf: {
  8046. height: math.unit(6 * 1.2, "feet"),
  8047. weight: math.unit(225, "lbs"),
  8048. name: "Back (Werewolf)",
  8049. image: {
  8050. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8051. }
  8052. },
  8053. },
  8054. [
  8055. {
  8056. name: "Nano",
  8057. height: math.unit(1, "micrometer")
  8058. },
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(1, "inch")
  8062. },
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(6, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Macro",
  8070. height: math.unit(60, "feet")
  8071. }
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(6, "feet"),
  8079. weight: math.unit(165, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/fluoresce/front.svg"
  8083. }
  8084. }
  8085. },
  8086. [
  8087. {
  8088. name: "Micro",
  8089. height: math.unit(6, "cm")
  8090. },
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(5 + 7 / 12, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(56, "feet")
  8099. },
  8100. {
  8101. name: "Megamacro",
  8102. height: math.unit(1.9, "miles")
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(9 + 6 / 12, "feet"),
  8111. weight: math.unit(523, "lbs"),
  8112. name: "Side",
  8113. image: {
  8114. source: "./media/characters/aurora/side.svg"
  8115. }
  8116. }
  8117. },
  8118. [
  8119. {
  8120. name: "Normal",
  8121. height: math.unit(9 + 6 / 12, "feet")
  8122. },
  8123. {
  8124. name: "Macro",
  8125. height: math.unit(96, "feet"),
  8126. default: true
  8127. },
  8128. {
  8129. name: "Macro+",
  8130. height: math.unit(243, "feet")
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(194, "cm"),
  8139. weight: math.unit(90, "kg"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/ranek/front.svg",
  8143. extra: 1862/1791,
  8144. bottom: 80/1942
  8145. }
  8146. },
  8147. back: {
  8148. height: math.unit(194, "cm"),
  8149. weight: math.unit(90, "kg"),
  8150. name: "Back",
  8151. image: {
  8152. source: "./media/characters/ranek/back.svg",
  8153. extra: 1853/1787,
  8154. bottom: 74/1927
  8155. }
  8156. },
  8157. feral: {
  8158. height: math.unit(30, "cm"),
  8159. weight: math.unit(1.6, "lbs"),
  8160. name: "Feral",
  8161. image: {
  8162. source: "./media/characters/ranek/feral.svg",
  8163. extra: 990/631,
  8164. bottom: 29/1019
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(194, "cm"),
  8172. default: true
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(100, "meters")
  8177. },
  8178. ]
  8179. ))
  8180. characterMakers.push(() => makeCharacter(
  8181. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8182. {
  8183. front: {
  8184. height: math.unit(5 + 6 / 12, "feet"),
  8185. weight: math.unit(153, "lbs"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/andrew-cooper/front.svg"
  8189. }
  8190. },
  8191. },
  8192. [
  8193. {
  8194. name: "Nano",
  8195. height: math.unit(1, "mm")
  8196. },
  8197. {
  8198. name: "Micro",
  8199. height: math.unit(2, "inches")
  8200. },
  8201. {
  8202. name: "Normal",
  8203. height: math.unit(5 + 6 / 12, "feet"),
  8204. default: true
  8205. }
  8206. ]
  8207. ))
  8208. characterMakers.push(() => makeCharacter(
  8209. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8210. {
  8211. front: {
  8212. height: math.unit(6, "feet"),
  8213. weight: math.unit(180, "lbs"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/akane-sato/front.svg",
  8217. extra: 1219 / 1140
  8218. }
  8219. },
  8220. back: {
  8221. height: math.unit(6, "feet"),
  8222. weight: math.unit(180, "lbs"),
  8223. name: "Back",
  8224. image: {
  8225. source: "./media/characters/akane-sato/back.svg",
  8226. extra: 1219 / 1170
  8227. }
  8228. },
  8229. },
  8230. [
  8231. {
  8232. name: "Normal",
  8233. height: math.unit(2.5, "meters")
  8234. },
  8235. {
  8236. name: "Macro",
  8237. height: math.unit(250, "meters"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Megamacro",
  8242. height: math.unit(25, "km")
  8243. },
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(6, "feet"),
  8251. weight: math.unit(65, "kg"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/rook/front.svg",
  8255. extra: 960 / 950
  8256. }
  8257. }
  8258. },
  8259. [
  8260. {
  8261. name: "Normal",
  8262. height: math.unit(8.8, "feet")
  8263. },
  8264. {
  8265. name: "Macro",
  8266. height: math.unit(88, "feet"),
  8267. default: true
  8268. },
  8269. {
  8270. name: "Megamacro",
  8271. height: math.unit(8, "miles")
  8272. },
  8273. ]
  8274. ))
  8275. characterMakers.push(() => makeCharacter(
  8276. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8277. {
  8278. front: {
  8279. height: math.unit(12 + 2 / 12, "feet"),
  8280. weight: math.unit(808, "lbs"),
  8281. name: "Front",
  8282. image: {
  8283. source: "./media/characters/prodigy/front.svg"
  8284. }
  8285. }
  8286. },
  8287. [
  8288. {
  8289. name: "Normal",
  8290. height: math.unit(12 + 2 / 12, "feet"),
  8291. default: true
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(143, "feet")
  8296. },
  8297. {
  8298. name: "Macro+",
  8299. height: math.unit(400, "feet")
  8300. },
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8305. {
  8306. front: {
  8307. height: math.unit(6, "feet"),
  8308. weight: math.unit(225, "lbs"),
  8309. name: "Front",
  8310. image: {
  8311. source: "./media/characters/daniel/front.svg"
  8312. }
  8313. },
  8314. leaning: {
  8315. height: math.unit(6, "feet"),
  8316. weight: math.unit(225, "lbs"),
  8317. name: "Leaning",
  8318. image: {
  8319. source: "./media/characters/daniel/leaning.svg"
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Macro",
  8326. height: math.unit(1000, "feet"),
  8327. default: true
  8328. },
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8333. {
  8334. front: {
  8335. height: math.unit(6, "feet"),
  8336. weight: math.unit(88, "lbs"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/chiros/front.svg",
  8340. extra: 306 / 226
  8341. }
  8342. },
  8343. side: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(88, "lbs"),
  8346. name: "Side",
  8347. image: {
  8348. source: "./media/characters/chiros/side.svg",
  8349. extra: 306 / 226
  8350. }
  8351. },
  8352. },
  8353. [
  8354. {
  8355. name: "Normal",
  8356. height: math.unit(6, "cm"),
  8357. default: true
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8363. {
  8364. front: {
  8365. height: math.unit(6, "feet"),
  8366. weight: math.unit(100, "lbs"),
  8367. name: "Front",
  8368. image: {
  8369. source: "./media/characters/selka/front.svg",
  8370. extra: 947 / 887
  8371. }
  8372. }
  8373. },
  8374. [
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(5, "cm"),
  8378. default: true
  8379. },
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8384. {
  8385. front: {
  8386. height: math.unit(8 + 3 / 12, "feet"),
  8387. weight: math.unit(424, "lbs"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/verin/front.svg",
  8391. extra: 1845 / 1550
  8392. }
  8393. },
  8394. frontArmored: {
  8395. height: math.unit(8 + 3 / 12, "feet"),
  8396. weight: math.unit(424, "lbs"),
  8397. name: "Front (Armored)",
  8398. image: {
  8399. source: "./media/characters/verin/front-armor.svg",
  8400. extra: 1845 / 1550,
  8401. bottom: 0.01
  8402. }
  8403. },
  8404. back: {
  8405. height: math.unit(8 + 3 / 12, "feet"),
  8406. weight: math.unit(424, "lbs"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/verin/back.svg",
  8410. bottom: 0.1,
  8411. extra: 1
  8412. }
  8413. },
  8414. foot: {
  8415. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8416. name: "Foot",
  8417. image: {
  8418. source: "./media/characters/verin/foot.svg"
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Normal",
  8425. height: math.unit(8 + 3 / 12, "feet")
  8426. },
  8427. {
  8428. name: "Minimacro",
  8429. height: math.unit(21, "feet"),
  8430. default: true
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(626, "feet")
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(2.718, "meters"),
  8443. weight: math.unit(150, "lbs"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/sovrim-terraquian/front.svg",
  8447. extra: 1752/1689,
  8448. bottom: 36/1788
  8449. }
  8450. },
  8451. back: {
  8452. height: math.unit(2.718, "meters"),
  8453. weight: math.unit(150, "lbs"),
  8454. name: "Back",
  8455. image: {
  8456. source: "./media/characters/sovrim-terraquian/back.svg",
  8457. extra: 1698/1657,
  8458. bottom: 58/1756
  8459. }
  8460. },
  8461. tongue: {
  8462. height: math.unit(2.865, "feet"),
  8463. name: "Tongue",
  8464. image: {
  8465. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8466. }
  8467. },
  8468. hand: {
  8469. height: math.unit(1.61, "feet"),
  8470. name: "Hand",
  8471. image: {
  8472. source: "./media/characters/sovrim-terraquian/hand.svg"
  8473. }
  8474. },
  8475. foot: {
  8476. height: math.unit(1.05, "feet"),
  8477. name: "Foot",
  8478. image: {
  8479. source: "./media/characters/sovrim-terraquian/foot.svg"
  8480. }
  8481. },
  8482. footAlt: {
  8483. height: math.unit(0.88, "feet"),
  8484. name: "Foot (Alt)",
  8485. image: {
  8486. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8487. }
  8488. },
  8489. },
  8490. [
  8491. {
  8492. name: "Micro",
  8493. height: math.unit(2, "inches")
  8494. },
  8495. {
  8496. name: "Small",
  8497. height: math.unit(1, "meter")
  8498. },
  8499. {
  8500. name: "Normal",
  8501. height: math.unit(Math.E, "meters"),
  8502. default: true
  8503. },
  8504. {
  8505. name: "Macro",
  8506. height: math.unit(20, "meters")
  8507. },
  8508. {
  8509. name: "Macro+",
  8510. height: math.unit(400, "meters")
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(7, "feet"),
  8519. weight: math.unit(489, "lbs"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/reece-silvermane/front.svg",
  8523. bottom: 0.02,
  8524. extra: 1
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(1.5, "miles"),
  8532. default: true
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(78, "kg"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/kane/front.svg",
  8545. extra: 978 / 899
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(2.1, "m"),
  8553. },
  8554. {
  8555. name: "Macro",
  8556. height: math.unit(1, "km"),
  8557. default: true
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(200, "kg"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/tegon/front.svg",
  8570. bottom: 0.01,
  8571. extra: 1
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Micro",
  8578. height: math.unit(1, "inch")
  8579. },
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(6 + 3 / 12, "feet"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(300, "feet")
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(69, "miles")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8597. {
  8598. side: {
  8599. height: math.unit(6, "feet"),
  8600. weight: math.unit(2304, "lbs"),
  8601. name: "Side",
  8602. image: {
  8603. source: "./media/characters/arcturax/side.svg",
  8604. extra: 790 / 376,
  8605. bottom: 0.01
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Micro",
  8612. height: math.unit(2, "inch")
  8613. },
  8614. {
  8615. name: "Normal",
  8616. height: math.unit(6, "feet")
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(39, "feet"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Megamacro",
  8625. height: math.unit(7, "miles")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(50, "lbs"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/sentri/front.svg",
  8638. extra: 1750 / 1570,
  8639. bottom: 0.025
  8640. }
  8641. },
  8642. frontAlt: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(50, "lbs"),
  8645. name: "Front (Alt)",
  8646. image: {
  8647. source: "./media/characters/sentri/front-alt.svg",
  8648. extra: 1750 / 1570,
  8649. bottom: 0.025
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(15, "feet"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Macro",
  8661. height: math.unit(2500, "feet")
  8662. }
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(5 + 8 / 12, "feet"),
  8670. weight: math.unit(130, "lbs"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/corvin/front.svg",
  8674. extra: 1803 / 1629
  8675. }
  8676. },
  8677. frontShirt: {
  8678. height: math.unit(5 + 8 / 12, "feet"),
  8679. weight: math.unit(130, "lbs"),
  8680. name: "Front (Shirt)",
  8681. image: {
  8682. source: "./media/characters/corvin/front-shirt.svg",
  8683. extra: 1803 / 1629
  8684. }
  8685. },
  8686. frontPoncho: {
  8687. height: math.unit(5 + 8 / 12, "feet"),
  8688. weight: math.unit(130, "lbs"),
  8689. name: "Front (Poncho)",
  8690. image: {
  8691. source: "./media/characters/corvin/front-poncho.svg",
  8692. extra: 1803 / 1629
  8693. }
  8694. },
  8695. side: {
  8696. height: math.unit(5 + 8 / 12, "feet"),
  8697. weight: math.unit(130, "lbs"),
  8698. name: "Side",
  8699. image: {
  8700. source: "./media/characters/corvin/side.svg",
  8701. extra: 1012 / 945
  8702. }
  8703. },
  8704. back: {
  8705. height: math.unit(5 + 8 / 12, "feet"),
  8706. weight: math.unit(130, "lbs"),
  8707. name: "Back",
  8708. image: {
  8709. source: "./media/characters/corvin/back.svg",
  8710. extra: 1803 / 1629
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(3, "inches")
  8718. },
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(5 + 8 / 12, "feet")
  8722. },
  8723. {
  8724. name: "Macro",
  8725. height: math.unit(300, "feet"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Megamacro",
  8730. height: math.unit(500, "miles")
  8731. }
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(6, "feet"),
  8739. weight: math.unit(135, "lbs"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/q/front.svg",
  8743. extra: 854 / 752,
  8744. bottom: 0.005
  8745. }
  8746. },
  8747. back: {
  8748. height: math.unit(6, "feet"),
  8749. weight: math.unit(130, "lbs"),
  8750. name: "Back",
  8751. image: {
  8752. source: "./media/characters/q/back.svg",
  8753. extra: 854 / 752
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(90, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Extra Macro",
  8765. height: math.unit(300, "feet"),
  8766. },
  8767. {
  8768. name: "BIG WALF",
  8769. height: math.unit(750, "feet"),
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(150, "lbs"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/carley/front.svg",
  8782. extra: 3927 / 3540,
  8783. bottom: 29.2 / 735
  8784. }
  8785. }
  8786. },
  8787. [
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(6 + 3 / 12, "feet")
  8791. },
  8792. {
  8793. name: "Macro",
  8794. height: math.unit(185, "feet"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Megamacro",
  8799. height: math.unit(8, "miles"),
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(3, "feet"),
  8808. weight: math.unit(28, "lbs"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/citrine/front.svg"
  8812. }
  8813. }
  8814. },
  8815. [
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(3, "feet"),
  8819. default: true
  8820. }
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8825. {
  8826. front: {
  8827. height: math.unit(14, "feet"),
  8828. weight: math.unit(1450, "kg"),
  8829. preyCapacity: math.unit(15, "people"),
  8830. name: "Front",
  8831. image: {
  8832. source: "./media/characters/aura-starwind/front.svg",
  8833. extra: 1440/1327,
  8834. bottom: 11/1451
  8835. }
  8836. },
  8837. side: {
  8838. height: math.unit(14, "feet"),
  8839. weight: math.unit(1450, "kg"),
  8840. preyCapacity: math.unit(15, "people"),
  8841. name: "Side",
  8842. image: {
  8843. source: "./media/characters/aura-starwind/side.svg",
  8844. extra: 1654 / 1497
  8845. }
  8846. },
  8847. taur: {
  8848. height: math.unit(18, "feet"),
  8849. weight: math.unit(5500, "kg"),
  8850. preyCapacity: math.unit(50, "people"),
  8851. name: "Taur",
  8852. image: {
  8853. source: "./media/characters/aura-starwind/taur.svg",
  8854. extra: 1760 / 1650
  8855. }
  8856. },
  8857. feral: {
  8858. height: math.unit(46, "feet"),
  8859. weight: math.unit(25000, "kg"),
  8860. preyCapacity: math.unit(120, "people"),
  8861. name: "Feral",
  8862. image: {
  8863. source: "./media/characters/aura-starwind/feral.svg"
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(14, "feet"),
  8871. default: true
  8872. },
  8873. {
  8874. name: "Macro",
  8875. height: math.unit(50, "meters")
  8876. },
  8877. {
  8878. name: "Megamacro",
  8879. height: math.unit(5000, "meters")
  8880. },
  8881. {
  8882. name: "Gigamacro",
  8883. height: math.unit(100000, "kilometers")
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(2 + 7 / 12, "feet"),
  8892. weight: math.unit(32, "lbs"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/rivet/front.svg",
  8896. extra: 1716 / 1658,
  8897. bottom: 0.03
  8898. }
  8899. },
  8900. foot: {
  8901. height: math.unit(0.551, "feet"),
  8902. name: "Rivet's Foot",
  8903. image: {
  8904. source: "./media/characters/rivet/foot.svg"
  8905. },
  8906. rename: true
  8907. }
  8908. },
  8909. [
  8910. {
  8911. name: "Micro",
  8912. height: math.unit(1.5, "inches"),
  8913. },
  8914. {
  8915. name: "Normal",
  8916. height: math.unit(2 + 7 / 12, "feet"),
  8917. default: true
  8918. },
  8919. {
  8920. name: "Macro",
  8921. height: math.unit(85, "feet")
  8922. },
  8923. {
  8924. name: "Megamacro",
  8925. height: math.unit(2.2, "km")
  8926. }
  8927. ]
  8928. ))
  8929. characterMakers.push(() => makeCharacter(
  8930. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8931. {
  8932. front: {
  8933. height: math.unit(5 + 9 / 12, "feet"),
  8934. weight: math.unit(150, "lbs"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/coffee/front.svg",
  8938. extra: 3666 / 3032,
  8939. bottom: 0.04
  8940. }
  8941. },
  8942. foot: {
  8943. height: math.unit(1.29, "feet"),
  8944. name: "Foot",
  8945. image: {
  8946. source: "./media/characters/coffee/foot.svg"
  8947. }
  8948. },
  8949. },
  8950. [
  8951. {
  8952. name: "Micro",
  8953. height: math.unit(2, "inches"),
  8954. },
  8955. {
  8956. name: "Normal",
  8957. height: math.unit(5 + 9 / 12, "feet"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Macro",
  8962. height: math.unit(800, "feet")
  8963. },
  8964. {
  8965. name: "Megamacro",
  8966. height: math.unit(25, "miles")
  8967. }
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(200, "lbs"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/chari-gal/front.svg",
  8979. extra: 1568 / 1385,
  8980. bottom: 0.047
  8981. }
  8982. },
  8983. gigantamax: {
  8984. height: math.unit(6 * 16, "feet"),
  8985. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8986. name: "Gigantamax",
  8987. image: {
  8988. source: "./media/characters/chari-gal/gigantamax.svg",
  8989. extra: 1124 / 888,
  8990. bottom: 0.03
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(5 + 7 / 12, "feet")
  8998. },
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(200, "feet"),
  9002. default: true
  9003. }
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(150, "lbs"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/nova/front.svg",
  9015. extra: 5000 / 4722,
  9016. bottom: 0.02
  9017. }
  9018. }
  9019. },
  9020. [
  9021. {
  9022. name: "Micro-",
  9023. height: math.unit(0.8, "inches")
  9024. },
  9025. {
  9026. name: "Micro",
  9027. height: math.unit(2, "inches"),
  9028. default: true
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(3 + 1 / 12, "feet"),
  9037. weight: math.unit(21.7, "lbs"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/argent/front.svg",
  9041. extra: 1471 / 1331,
  9042. bottom: 100.8 / 1575.5
  9043. }
  9044. }
  9045. },
  9046. [
  9047. {
  9048. name: "Micro",
  9049. height: math.unit(2, "inches")
  9050. },
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(3 + 1 / 12, "feet"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "Macro",
  9058. height: math.unit(120, "feet")
  9059. },
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9064. {
  9065. lamp: {
  9066. height: math.unit(7 * 1559 / 989, "feet"),
  9067. name: "Magic Lamp",
  9068. image: {
  9069. source: "./media/characters/mira-al-cul/lamp.svg",
  9070. extra: 1617 / 1559
  9071. }
  9072. },
  9073. front: {
  9074. height: math.unit(7, "feet"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/mira-al-cul/front.svg",
  9078. extra: 1044 / 990
  9079. }
  9080. },
  9081. },
  9082. [
  9083. {
  9084. name: "Heavily Restricted",
  9085. height: math.unit(7 * 1559 / 989, "feet")
  9086. },
  9087. {
  9088. name: "Freshly Freed",
  9089. height: math.unit(50 * 1559 / 989, "feet")
  9090. },
  9091. {
  9092. name: "World Encompassing",
  9093. height: math.unit(10000 * 1559 / 989, "miles")
  9094. },
  9095. {
  9096. name: "Galactic",
  9097. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9098. },
  9099. {
  9100. name: "Palmed Universe",
  9101. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9102. default: true
  9103. },
  9104. {
  9105. name: "Multiversal Matriarch",
  9106. height: math.unit(8.87e10, "yottameters")
  9107. },
  9108. {
  9109. name: "Void Mother",
  9110. height: math.unit(3.14e110, "yottaparsecs")
  9111. },
  9112. {
  9113. name: "Toying with Transcendence",
  9114. height: math.unit(1e307, "meters")
  9115. },
  9116. ]
  9117. ))
  9118. characterMakers.push(() => makeCharacter(
  9119. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9120. {
  9121. front: {
  9122. height: math.unit(17 + 1 / 12, "feet"),
  9123. weight: math.unit(476.2 * 5, "lbs"),
  9124. name: "Front",
  9125. image: {
  9126. source: "./media/characters/kuro-shi-uchū/front.svg",
  9127. extra: 2329 / 1835,
  9128. bottom: 0.02
  9129. }
  9130. },
  9131. },
  9132. [
  9133. {
  9134. name: "Micro",
  9135. height: math.unit(2, "inches")
  9136. },
  9137. {
  9138. name: "Normal",
  9139. height: math.unit(12, "meters")
  9140. },
  9141. {
  9142. name: "Planetary",
  9143. height: math.unit(0.00929, "AU"),
  9144. default: true
  9145. },
  9146. {
  9147. name: "Universal",
  9148. height: math.unit(20, "gigaparsecs")
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(5 + 2 / 12, "feet"),
  9157. weight: math.unit(120, "lbs"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/katherine/front.svg",
  9161. extra: 2075 / 1969
  9162. }
  9163. },
  9164. dress: {
  9165. height: math.unit(5 + 2 / 12, "feet"),
  9166. weight: math.unit(120, "lbs"),
  9167. name: "Dress",
  9168. image: {
  9169. source: "./media/characters/katherine/dress.svg",
  9170. extra: 2258 / 2064
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Micro",
  9177. height: math.unit(1, "inches"),
  9178. default: true
  9179. },
  9180. {
  9181. name: "Normal",
  9182. height: math.unit(5 + 2 / 12, "feet")
  9183. },
  9184. {
  9185. name: "Macro",
  9186. height: math.unit(100, "meters")
  9187. },
  9188. {
  9189. name: "Megamacro",
  9190. height: math.unit(80, "miles")
  9191. },
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9196. {
  9197. front: {
  9198. height: math.unit(7 + 8 / 12, "feet"),
  9199. weight: math.unit(250, "lbs"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/yevis/front.svg",
  9203. extra: 1938 / 1755
  9204. }
  9205. }
  9206. },
  9207. [
  9208. {
  9209. name: "Mortal",
  9210. height: math.unit(7 + 8 / 12, "feet")
  9211. },
  9212. {
  9213. name: "Battle",
  9214. height: math.unit(25 + 11 / 12, "feet")
  9215. },
  9216. {
  9217. name: "Wrath",
  9218. height: math.unit(1654 + 11 / 12, "feet")
  9219. },
  9220. {
  9221. name: "Planet Destroyer",
  9222. height: math.unit(12000, "miles")
  9223. },
  9224. {
  9225. name: "Galaxy Conqueror",
  9226. height: math.unit(1.45, "zettameters"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Universal War",
  9231. height: math.unit(184, "gigaparsecs")
  9232. },
  9233. {
  9234. name: "Eternity War",
  9235. height: math.unit(1.98e55, "yottaparsecs")
  9236. },
  9237. ]
  9238. ))
  9239. characterMakers.push(() => makeCharacter(
  9240. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9241. {
  9242. front: {
  9243. height: math.unit(5 + 8 / 12, "feet"),
  9244. weight: math.unit(63, "kg"),
  9245. name: "Front",
  9246. image: {
  9247. source: "./media/characters/xavier/front.svg",
  9248. extra: 944 / 883
  9249. }
  9250. },
  9251. frontStretch: {
  9252. height: math.unit(5 + 8 / 12, "feet"),
  9253. weight: math.unit(63, "kg"),
  9254. name: "Stretching",
  9255. image: {
  9256. source: "./media/characters/xavier/front-stretch.svg",
  9257. extra: 962 / 820
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(5 + 8 / 12, "feet")
  9265. },
  9266. {
  9267. name: "Macro",
  9268. height: math.unit(100, "meters"),
  9269. default: true
  9270. },
  9271. {
  9272. name: "McLargeHuge",
  9273. height: math.unit(10, "miles")
  9274. },
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9279. {
  9280. front: {
  9281. height: math.unit(5 + 5 / 12, "feet"),
  9282. weight: math.unit(150, "lb"),
  9283. name: "Front",
  9284. image: {
  9285. source: "./media/characters/joshii/front.svg",
  9286. extra: 765 / 653,
  9287. bottom: 51 / 816
  9288. }
  9289. },
  9290. foot: {
  9291. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9292. name: "Foot",
  9293. image: {
  9294. source: "./media/characters/joshii/foot.svg"
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(2, "inches"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(5 + 5 / 12, "feet")
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(785, "feet")
  9311. },
  9312. {
  9313. name: "Megamacro",
  9314. height: math.unit(24.5, "miles")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(6, "feet"),
  9323. weight: math.unit(150, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/goddess-elizabeth/front.svg",
  9327. extra: 1800 / 1525,
  9328. bottom: 0.005
  9329. }
  9330. },
  9331. foot: {
  9332. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9333. name: "Foot",
  9334. image: {
  9335. source: "./media/characters/goddess-elizabeth/foot.svg"
  9336. }
  9337. },
  9338. mouth: {
  9339. height: math.unit(6, "feet"),
  9340. name: "Mouth",
  9341. image: {
  9342. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Micro",
  9349. height: math.unit(12, "feet")
  9350. },
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(80, "miles"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Macro",
  9358. height: math.unit(15000, "parsecs")
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9364. {
  9365. front: {
  9366. height: math.unit(5 + 9 / 12, "feet"),
  9367. weight: math.unit(144, "lb"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/kara/front.svg"
  9371. }
  9372. },
  9373. feet: {
  9374. height: math.unit(6 / 6.765, "feet"),
  9375. name: "Kara's Feet",
  9376. rename: true,
  9377. image: {
  9378. source: "./media/characters/kara/feet.svg"
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(5 + 9 / 12, "feet")
  9386. },
  9387. {
  9388. name: "Macro",
  9389. height: math.unit(174, "feet"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(18, "feet"),
  9399. weight: math.unit(4050, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/tyrone/front.svg",
  9403. extra: 2405 / 2270,
  9404. bottom: 182 / 2587
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(18, "feet"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Macro",
  9416. height: math.unit(300, "feet")
  9417. },
  9418. {
  9419. name: "Megamacro",
  9420. height: math.unit(15, "km")
  9421. },
  9422. {
  9423. name: "Gigamacro",
  9424. height: math.unit(500, "km")
  9425. },
  9426. {
  9427. name: "Teramacro",
  9428. height: math.unit(0.5, "gigameters")
  9429. },
  9430. {
  9431. name: "Omnimacro",
  9432. height: math.unit(1e252, "yottauniverse")
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9438. {
  9439. front: {
  9440. height: math.unit(7 + 8 / 12, "feet"),
  9441. weight: math.unit(120, "lb"),
  9442. name: "Front",
  9443. image: {
  9444. source: "./media/characters/danny/front.svg",
  9445. extra: 1490 / 1350
  9446. }
  9447. },
  9448. back: {
  9449. height: math.unit(7 + 8 / 12, "feet"),
  9450. weight: math.unit(120, "lb"),
  9451. name: "Back",
  9452. image: {
  9453. source: "./media/characters/danny/back.svg",
  9454. extra: 1490 / 1350
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(7 + 8 / 12, "feet"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(3.5, "inches"),
  9471. weight: math.unit(19, "grams"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/mallow/front.svg",
  9475. extra: 471 / 431
  9476. }
  9477. },
  9478. back: {
  9479. height: math.unit(3.5, "inches"),
  9480. weight: math.unit(19, "grams"),
  9481. name: "Back",
  9482. image: {
  9483. source: "./media/characters/mallow/back.svg",
  9484. extra: 471 / 431
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(3.5, "inches"),
  9492. default: true
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9498. {
  9499. front: {
  9500. height: math.unit(9, "feet"),
  9501. weight: math.unit(230, "kg"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/starry-aqua/front.svg"
  9505. }
  9506. },
  9507. back: {
  9508. height: math.unit(9, "feet"),
  9509. weight: math.unit(230, "kg"),
  9510. name: "Back",
  9511. image: {
  9512. source: "./media/characters/starry-aqua/back.svg"
  9513. }
  9514. },
  9515. hand: {
  9516. height: math.unit(9 * 0.1168, "feet"),
  9517. name: "Hand",
  9518. image: {
  9519. source: "./media/characters/starry-aqua/hand.svg"
  9520. }
  9521. },
  9522. foot: {
  9523. height: math.unit(9 * 0.18, "feet"),
  9524. name: "Foot",
  9525. image: {
  9526. source: "./media/characters/starry-aqua/foot.svg"
  9527. }
  9528. }
  9529. },
  9530. [
  9531. {
  9532. name: "Micro",
  9533. height: math.unit(3, "inches")
  9534. },
  9535. {
  9536. name: "Normal",
  9537. height: math.unit(9, "feet")
  9538. },
  9539. {
  9540. name: "Macro",
  9541. height: math.unit(300, "feet"),
  9542. default: true
  9543. },
  9544. {
  9545. name: "Megamacro",
  9546. height: math.unit(3200, "feet")
  9547. }
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(15, "feet"),
  9555. weight: math.unit(5026, "lb"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/luka-towers/front.svg",
  9559. extra: 1269/1133,
  9560. bottom: 51/1320
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(15, "feet"),
  9568. default: true
  9569. },
  9570. {
  9571. name: "Minimacro",
  9572. height: math.unit(25, "feet")
  9573. },
  9574. {
  9575. name: "Macro",
  9576. height: math.unit(320, "feet")
  9577. },
  9578. {
  9579. name: "Megamacro",
  9580. height: math.unit(35000, "feet")
  9581. },
  9582. {
  9583. name: "Gigamacro",
  9584. height: math.unit(4000, "miles")
  9585. },
  9586. {
  9587. name: "Teramacro",
  9588. height: math.unit(15000, "miles")
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9594. {
  9595. front: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(150, "lb"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/natalie-nightring/front.svg",
  9601. extra: 1,
  9602. bottom: 0.06
  9603. }
  9604. },
  9605. },
  9606. [
  9607. {
  9608. name: "Uh Oh",
  9609. height: math.unit(0.1, "mm")
  9610. },
  9611. {
  9612. name: "Small",
  9613. height: math.unit(3, "inches")
  9614. },
  9615. {
  9616. name: "Human Scale",
  9617. height: math.unit(6, "feet")
  9618. },
  9619. {
  9620. name: "Librarian",
  9621. height: math.unit(50, "feet"),
  9622. default: true
  9623. },
  9624. {
  9625. name: "Immense",
  9626. height: math.unit(200, "miles")
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9632. {
  9633. front: {
  9634. height: math.unit(6, "feet"),
  9635. weight: math.unit(180, "lbs"),
  9636. name: "Front",
  9637. image: {
  9638. source: "./media/characters/danni-rosie/front.svg",
  9639. extra: 1260 / 1128,
  9640. bottom: 0.022
  9641. }
  9642. },
  9643. },
  9644. [
  9645. {
  9646. name: "Micro",
  9647. height: math.unit(2, "inches"),
  9648. default: true
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(5 + 9 / 12, "feet"),
  9657. weight: math.unit(220, "lb"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/samantha-kruse/front.svg",
  9661. extra: (985 / 935),
  9662. bottom: 0.03
  9663. }
  9664. },
  9665. frontUndressed: {
  9666. height: math.unit(5 + 9 / 12, "feet"),
  9667. weight: math.unit(220, "lb"),
  9668. name: "Front (Undressed)",
  9669. image: {
  9670. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9671. extra: (973 / 923),
  9672. bottom: 0.025
  9673. }
  9674. },
  9675. fat: {
  9676. height: math.unit(5 + 9 / 12, "feet"),
  9677. weight: math.unit(900, "lb"),
  9678. name: "Front (Fat)",
  9679. image: {
  9680. source: "./media/characters/samantha-kruse/fat.svg",
  9681. extra: 2688 / 2561
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(5 + 9 / 12, "feet"),
  9689. default: true
  9690. }
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9695. {
  9696. back: {
  9697. height: math.unit(5 + 4 / 12, "feet"),
  9698. weight: math.unit(4963, "lb"),
  9699. name: "Back",
  9700. image: {
  9701. source: "./media/characters/amelia-rosie/back.svg",
  9702. extra: 1113 / 963,
  9703. bottom: 0.01
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Level 0",
  9710. height: math.unit(5 + 4 / 12, "feet")
  9711. },
  9712. {
  9713. name: "Level 1",
  9714. height: math.unit(164597, "feet"),
  9715. default: true
  9716. },
  9717. {
  9718. name: "Level 2",
  9719. height: math.unit(956243, "miles")
  9720. },
  9721. {
  9722. name: "Level 3",
  9723. height: math.unit(29421709423, "miles")
  9724. },
  9725. {
  9726. name: "Level 4",
  9727. height: math.unit(154, "lightyears")
  9728. },
  9729. {
  9730. name: "Level 5",
  9731. height: math.unit(4738272, "lightyears")
  9732. },
  9733. {
  9734. name: "Level 6",
  9735. height: math.unit(145787152896, "lightyears")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(5 + 11 / 12, "feet"),
  9744. weight: math.unit(65, "kg"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/rook-kitara/front.svg",
  9748. extra: 1347 / 1274,
  9749. bottom: 0.005
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Totally Unfair",
  9756. height: math.unit(1.8, "mm")
  9757. },
  9758. {
  9759. name: "Lap Rookie",
  9760. height: math.unit(1.4, "feet")
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(5 + 11 / 12, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "How Did This Happen",
  9769. height: math.unit(80, "miles")
  9770. }
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9775. {
  9776. front: {
  9777. height: math.unit(7, "feet"),
  9778. weight: math.unit(300, "lb"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/pisces/front.svg",
  9782. extra: 2255 / 2115,
  9783. bottom: 0.03
  9784. }
  9785. },
  9786. back: {
  9787. height: math.unit(7, "feet"),
  9788. weight: math.unit(300, "lb"),
  9789. name: "Back",
  9790. image: {
  9791. source: "./media/characters/pisces/back.svg",
  9792. extra: 2146 / 2055,
  9793. bottom: 0.04
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Normal",
  9800. height: math.unit(7, "feet"),
  9801. default: true
  9802. },
  9803. {
  9804. name: "Swimming Pool",
  9805. height: math.unit(12.2, "meters")
  9806. },
  9807. {
  9808. name: "Olympic Swimming Pool",
  9809. height: math.unit(56.3, "meters")
  9810. },
  9811. {
  9812. name: "Lake Superior",
  9813. height: math.unit(93900, "meters")
  9814. },
  9815. {
  9816. name: "Mediterranean Sea",
  9817. height: math.unit(644457, "meters")
  9818. },
  9819. {
  9820. name: "World's Oceans",
  9821. height: math.unit(4567491, "meters")
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9827. {
  9828. front: {
  9829. height: math.unit(2.3, "meters"),
  9830. weight: math.unit(120, "kg"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/zelas/front.svg"
  9834. }
  9835. },
  9836. side: {
  9837. height: math.unit(2.3, "meters"),
  9838. weight: math.unit(120, "kg"),
  9839. name: "Side",
  9840. image: {
  9841. source: "./media/characters/zelas/side.svg"
  9842. }
  9843. },
  9844. back: {
  9845. height: math.unit(2.3, "meters"),
  9846. weight: math.unit(120, "kg"),
  9847. name: "Back",
  9848. image: {
  9849. source: "./media/characters/zelas/back.svg"
  9850. }
  9851. },
  9852. foot: {
  9853. height: math.unit(1.116, "feet"),
  9854. name: "Foot",
  9855. image: {
  9856. source: "./media/characters/zelas/foot.svg"
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Normal",
  9863. height: math.unit(2.3, "meters")
  9864. },
  9865. {
  9866. name: "Macro",
  9867. height: math.unit(30, "meters"),
  9868. default: true
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9874. {
  9875. front: {
  9876. height: math.unit(1, "inch"),
  9877. weight: math.unit(0.21, "grams"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/talbot/front.svg",
  9881. extra: 594 / 544
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Micro",
  9888. height: math.unit(1, "inch"),
  9889. default: true
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9895. {
  9896. front: {
  9897. height: math.unit(3 + 3 / 12, "feet"),
  9898. weight: math.unit(51.8, "lb"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/fliss/front.svg",
  9902. extra: 840 / 640
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Teeny Tiny",
  9909. height: math.unit(1, "mm")
  9910. },
  9911. {
  9912. name: "Small",
  9913. height: math.unit(1, "inch"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Standard Sylveon",
  9918. height: math.unit(3 + 3 / 12, "feet")
  9919. },
  9920. {
  9921. name: "Large Nuisance",
  9922. height: math.unit(33, "feet")
  9923. },
  9924. {
  9925. name: "City Filler",
  9926. height: math.unit(3000, "feet")
  9927. },
  9928. {
  9929. name: "New Horizon",
  9930. height: math.unit(6000, "miles")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(5, "cm"),
  9939. weight: math.unit(1.94, "g"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/fleta/front.svg",
  9943. extra: 835 / 803
  9944. }
  9945. },
  9946. back: {
  9947. height: math.unit(5, "cm"),
  9948. weight: math.unit(1.94, "g"),
  9949. name: "Back",
  9950. image: {
  9951. source: "./media/characters/fleta/back.svg",
  9952. extra: 835 / 803
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Micro",
  9959. height: math.unit(5, "cm"),
  9960. default: true
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(6, "feet"),
  9969. weight: math.unit(225, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/dominic/front.svg",
  9973. extra: 1770 / 1620,
  9974. bottom: 0.025
  9975. }
  9976. },
  9977. back: {
  9978. height: math.unit(6, "feet"),
  9979. weight: math.unit(225, "lb"),
  9980. name: "Back",
  9981. image: {
  9982. source: "./media/characters/dominic/back.svg",
  9983. extra: 1745 / 1620,
  9984. bottom: 0.065
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Nano",
  9991. height: math.unit(0.1, "mm")
  9992. },
  9993. {
  9994. name: "Micro-",
  9995. height: math.unit(1, "mm")
  9996. },
  9997. {
  9998. name: "Micro",
  9999. height: math.unit(4, "inches")
  10000. },
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(6 + 4 / 12, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(115, "feet")
  10009. },
  10010. {
  10011. name: "Macro+",
  10012. height: math.unit(955, "feet")
  10013. },
  10014. {
  10015. name: "Megamacro",
  10016. height: math.unit(8990, "feet")
  10017. },
  10018. {
  10019. name: "Gigmacro",
  10020. height: math.unit(9310, "miles")
  10021. },
  10022. {
  10023. name: "Teramacro",
  10024. height: math.unit(1567005010, "miles")
  10025. },
  10026. {
  10027. name: "Examacro",
  10028. height: math.unit(1425, "parsecs")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(400, "feet"),
  10037. weight: math.unit(44444444, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/major-colonel/front.svg"
  10041. }
  10042. },
  10043. back: {
  10044. height: math.unit(400, "feet"),
  10045. weight: math.unit(44444444, "lb"),
  10046. name: "Back",
  10047. image: {
  10048. source: "./media/characters/major-colonel/back.svg"
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Macro",
  10055. height: math.unit(400, "feet"),
  10056. default: true
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10062. {
  10063. catFront: {
  10064. height: math.unit(6, "feet"),
  10065. weight: math.unit(120, "lb"),
  10066. name: "Front (Cat Side)",
  10067. image: {
  10068. source: "./media/characters/axel-lycan/cat-front.svg",
  10069. extra: 430 / 402,
  10070. bottom: 43 / 472.35
  10071. }
  10072. },
  10073. catBack: {
  10074. height: math.unit(6, "feet"),
  10075. weight: math.unit(120, "lb"),
  10076. name: "Back (Cat Side)",
  10077. image: {
  10078. source: "./media/characters/axel-lycan/cat-back.svg",
  10079. extra: 447 / 419,
  10080. bottom: 23.3 / 469
  10081. }
  10082. },
  10083. wolfFront: {
  10084. height: math.unit(6, "feet"),
  10085. weight: math.unit(120, "lb"),
  10086. name: "Front (Wolf Side)",
  10087. image: {
  10088. source: "./media/characters/axel-lycan/wolf-front.svg",
  10089. extra: 485 / 456,
  10090. bottom: 19 / 504
  10091. }
  10092. },
  10093. wolfBack: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(120, "lb"),
  10096. name: "Back (Wolf Side)",
  10097. image: {
  10098. source: "./media/characters/axel-lycan/wolf-back.svg",
  10099. extra: 475 / 438,
  10100. bottom: 39.2 / 514
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Macro",
  10107. height: math.unit(1, "km"),
  10108. default: true
  10109. },
  10110. ]
  10111. ))
  10112. characterMakers.push(() => makeCharacter(
  10113. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10114. {
  10115. front: {
  10116. height: math.unit(5 + 9 / 12, "feet"),
  10117. weight: math.unit(175, "lb"),
  10118. name: "Front",
  10119. image: {
  10120. source: "./media/characters/vanrel-hyena/front.svg",
  10121. extra: 1086 / 1010,
  10122. bottom: 0.04
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(5 + 9 / 12, "feet"),
  10130. default: true
  10131. },
  10132. ]
  10133. ))
  10134. characterMakers.push(() => makeCharacter(
  10135. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10136. {
  10137. front: {
  10138. height: math.unit(6, "feet"),
  10139. weight: math.unit(103, "lb"),
  10140. name: "Front",
  10141. image: {
  10142. source: "./media/characters/abbott-absol/front.svg",
  10143. extra: 2010 / 1842
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Megamicro",
  10150. height: math.unit(0.1, "mm")
  10151. },
  10152. {
  10153. name: "Micro",
  10154. height: math.unit(1, "inch")
  10155. },
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(6, "feet"),
  10159. default: true
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10165. {
  10166. front: {
  10167. height: math.unit(6, "feet"),
  10168. weight: math.unit(264, "lb"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/hector/front.svg",
  10172. extra: 2280 / 2130,
  10173. bottom: 0.07
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(12.25, "foot"),
  10181. default: true
  10182. },
  10183. {
  10184. name: "Macro",
  10185. height: math.unit(160, "feet")
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(150, "lb"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/sal/front.svg",
  10198. extra: 1846 / 1699,
  10199. bottom: 0.04
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Megamacro",
  10206. height: math.unit(10, "miles"),
  10207. default: true
  10208. },
  10209. ]
  10210. ))
  10211. characterMakers.push(() => makeCharacter(
  10212. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10213. {
  10214. front: {
  10215. height: math.unit(3, "meters"),
  10216. weight: math.unit(450, "kg"),
  10217. name: "front",
  10218. image: {
  10219. source: "./media/characters/ranger/front.svg",
  10220. extra: 2401 / 2243,
  10221. bottom: 0.05
  10222. }
  10223. },
  10224. },
  10225. [
  10226. {
  10227. name: "Normal",
  10228. height: math.unit(3, "meters"),
  10229. default: true
  10230. },
  10231. ]
  10232. ))
  10233. characterMakers.push(() => makeCharacter(
  10234. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10235. {
  10236. front: {
  10237. height: math.unit(14, "feet"),
  10238. weight: math.unit(800, "kg"),
  10239. name: "Front",
  10240. image: {
  10241. source: "./media/characters/theresa/front.svg",
  10242. extra: 3575 / 3346,
  10243. bottom: 0.03
  10244. }
  10245. },
  10246. },
  10247. [
  10248. {
  10249. name: "Normal",
  10250. height: math.unit(14, "feet"),
  10251. default: true
  10252. },
  10253. ]
  10254. ))
  10255. characterMakers.push(() => makeCharacter(
  10256. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10257. {
  10258. front: {
  10259. height: math.unit(6, "feet"),
  10260. weight: math.unit(3, "kg"),
  10261. name: "Front",
  10262. image: {
  10263. source: "./media/characters/ine/front.svg",
  10264. extra: 678 / 539,
  10265. bottom: 0.023
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Normal",
  10272. height: math.unit(2.265, "feet"),
  10273. default: true
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10279. {
  10280. front: {
  10281. height: math.unit(5, "feet"),
  10282. weight: math.unit(30, "kg"),
  10283. name: "Front",
  10284. image: {
  10285. source: "./media/characters/vial/front.svg",
  10286. extra: 1365 / 1277,
  10287. bottom: 0.04
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(5, "feet"),
  10295. default: true
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10301. {
  10302. side: {
  10303. height: math.unit(3.4, "meters"),
  10304. weight: math.unit(1000, "lb"),
  10305. name: "Side",
  10306. image: {
  10307. source: "./media/characters/rovoska/side.svg",
  10308. extra: 4403 / 1515
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(3.4, "meters"),
  10316. default: true
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(8, "feet"),
  10325. weight: math.unit(315, "lb"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/gunner-rotthbauer/front.svg"
  10329. }
  10330. },
  10331. back: {
  10332. height: math.unit(8, "feet"),
  10333. weight: math.unit(315, "lb"),
  10334. name: "Back",
  10335. image: {
  10336. source: "./media/characters/gunner-rotthbauer/back.svg"
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Micro",
  10343. height: math.unit(3.5, "inches")
  10344. },
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(8, "feet"),
  10348. default: true
  10349. },
  10350. {
  10351. name: "Macro",
  10352. height: math.unit(250, "feet")
  10353. },
  10354. {
  10355. name: "Megamacro",
  10356. height: math.unit(1, "AU")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(5 + 5 / 12, "feet"),
  10365. weight: math.unit(140, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/allatia/front.svg",
  10369. extra: 1227 / 1180,
  10370. bottom: 0.027
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(5 + 5 / 12, "feet")
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(250, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(8, "miles")
  10387. }
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(120, "lb"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/tene/front.svg",
  10399. extra: 814/750,
  10400. bottom: 36/850
  10401. }
  10402. },
  10403. stomping: {
  10404. height: math.unit(2.025, "meters"),
  10405. weight: math.unit(120, "lb"),
  10406. name: "Stomping",
  10407. image: {
  10408. source: "./media/characters/tene/stomping.svg",
  10409. extra: 885/821,
  10410. bottom: 15/900
  10411. }
  10412. },
  10413. sitting: {
  10414. height: math.unit(1, "meter"),
  10415. weight: math.unit(120, "lb"),
  10416. name: "Sitting",
  10417. image: {
  10418. source: "./media/characters/tene/sitting.svg",
  10419. extra: 396/366,
  10420. bottom: 79/475
  10421. }
  10422. },
  10423. smiling: {
  10424. height: math.unit(1.2, "feet"),
  10425. name: "Smiling",
  10426. image: {
  10427. source: "./media/characters/tene/smiling.svg",
  10428. extra: 1364/1071,
  10429. bottom: 0/1364
  10430. }
  10431. },
  10432. smug: {
  10433. height: math.unit(1.3, "feet"),
  10434. name: "Smug",
  10435. image: {
  10436. source: "./media/characters/tene/smug.svg",
  10437. extra: 1323/1082,
  10438. bottom: 0/1323
  10439. }
  10440. },
  10441. feral: {
  10442. height: math.unit(3.9, "feet"),
  10443. weight: math.unit(250, "lb"),
  10444. name: "Feral",
  10445. image: {
  10446. source: "./media/characters/tene/feral.svg",
  10447. extra: 717 / 458,
  10448. bottom: 0.179
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Normal",
  10455. height: math.unit(6, "feet")
  10456. },
  10457. {
  10458. name: "Macro",
  10459. height: math.unit(300, "feet"),
  10460. default: true
  10461. },
  10462. {
  10463. name: "Megamacro",
  10464. height: math.unit(5, "miles")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10470. {
  10471. side: {
  10472. height: math.unit(6, "feet"),
  10473. name: "Side",
  10474. image: {
  10475. source: "./media/characters/evander/side.svg",
  10476. extra: 877 / 477
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(0.83, "meters"),
  10484. default: true
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(12, "feet"),
  10493. weight: math.unit(1000, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10497. extra: 1762 / 1611
  10498. }
  10499. },
  10500. back: {
  10501. height: math.unit(12, "feet"),
  10502. weight: math.unit(1000, "lb"),
  10503. name: "Back",
  10504. image: {
  10505. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10506. extra: 1762 / 1611
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Normal",
  10513. height: math.unit(12, "feet"),
  10514. default: true
  10515. },
  10516. {
  10517. name: "Kaiju",
  10518. height: math.unit(150, "feet")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(150, "lb"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/zero-alurus/front.svg"
  10531. }
  10532. },
  10533. back: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(150, "lb"),
  10536. name: "Back",
  10537. image: {
  10538. source: "./media/characters/zero-alurus/back.svg"
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Normal",
  10545. height: math.unit(5 + 10 / 12, "feet")
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(60, "feet"),
  10550. default: true
  10551. },
  10552. {
  10553. name: "Macro+",
  10554. height: math.unit(450, "feet")
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(200, "lb"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/mega-shi/front.svg",
  10567. extra: 1279 / 1250,
  10568. bottom: 0.02
  10569. }
  10570. },
  10571. back: {
  10572. height: math.unit(6, "feet"),
  10573. weight: math.unit(200, "lb"),
  10574. name: "Back",
  10575. image: {
  10576. source: "./media/characters/mega-shi/back.svg",
  10577. extra: 1279 / 1250,
  10578. bottom: 0.02
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Micro",
  10585. height: math.unit(16 + 6 / 12, "feet")
  10586. },
  10587. {
  10588. name: "Third Dimension",
  10589. height: math.unit(40, "meters")
  10590. },
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(660, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(10, "miles")
  10599. },
  10600. {
  10601. name: "Planetary Launch",
  10602. height: math.unit(500, "miles")
  10603. },
  10604. {
  10605. name: "Interstellar",
  10606. height: math.unit(1e9, "miles")
  10607. },
  10608. {
  10609. name: "Leaving the Universe",
  10610. height: math.unit(1, "gigaparsec")
  10611. },
  10612. {
  10613. name: "Travelling Universes",
  10614. height: math.unit(30e15, "parsecs")
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10620. {
  10621. front: {
  10622. height: math.unit(5 + 4/12, "feet"),
  10623. weight: math.unit(120, "lb"),
  10624. name: "Front",
  10625. image: {
  10626. source: "./media/characters/odyssey/front.svg",
  10627. extra: 1747/1571,
  10628. bottom: 47/1794
  10629. }
  10630. },
  10631. side: {
  10632. height: math.unit(5.1, "feet"),
  10633. weight: math.unit(120, "lb"),
  10634. name: "Side",
  10635. image: {
  10636. source: "./media/characters/odyssey/side.svg",
  10637. extra: 1847/1619,
  10638. bottom: 47/1894
  10639. }
  10640. },
  10641. lounging: {
  10642. height: math.unit(1.464, "feet"),
  10643. weight: math.unit(120, "lb"),
  10644. name: "Lounging",
  10645. image: {
  10646. source: "./media/characters/odyssey/lounging.svg",
  10647. extra: 1235/837,
  10648. bottom: 551/1786
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(5 + 4 / 12, "feet")
  10656. },
  10657. {
  10658. name: "Macro",
  10659. height: math.unit(1, "km")
  10660. },
  10661. {
  10662. name: "Megamacro",
  10663. height: math.unit(3000, "km")
  10664. },
  10665. {
  10666. name: "Gigamacro",
  10667. height: math.unit(1, "AU"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Omniversal",
  10672. height: math.unit(100e14, "lightyears")
  10673. },
  10674. ]
  10675. ))
  10676. characterMakers.push(() => makeCharacter(
  10677. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10678. {
  10679. front: {
  10680. height: math.unit(6, "feet"),
  10681. weight: math.unit(300, "lb"),
  10682. name: "Front",
  10683. image: {
  10684. source: "./media/characters/mekuto/front.svg",
  10685. extra: 921 / 832,
  10686. bottom: 0.03
  10687. }
  10688. },
  10689. hand: {
  10690. height: math.unit(6 / 10.24, "feet"),
  10691. name: "Hand",
  10692. image: {
  10693. source: "./media/characters/mekuto/hand.svg"
  10694. }
  10695. },
  10696. foot: {
  10697. height: math.unit(6 / 5.05, "feet"),
  10698. name: "Foot",
  10699. image: {
  10700. source: "./media/characters/mekuto/foot.svg"
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Minimicro",
  10707. height: math.unit(0.2, "inches")
  10708. },
  10709. {
  10710. name: "Micro",
  10711. height: math.unit(1.5, "inches")
  10712. },
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(5 + 11 / 12, "feet"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Minimacro",
  10720. height: math.unit(17 + 9 / 12, "feet")
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(177.5, "feet")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(152, "miles")
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(6.5, "inches"),
  10737. weight: math.unit(13, "oz"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/dafydd-tomos/front.svg",
  10741. extra: 2990 / 2603,
  10742. bottom: 0.03
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Micro",
  10749. height: math.unit(6.5, "inches"),
  10750. default: true
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(6, "feet"),
  10759. weight: math.unit(150, "lb"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/splinter/front.svg",
  10763. extra: 2990 / 2882,
  10764. bottom: 0.04
  10765. }
  10766. },
  10767. back: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(150, "lb"),
  10770. name: "Back",
  10771. image: {
  10772. source: "./media/characters/splinter/back.svg",
  10773. extra: 2990 / 2882,
  10774. bottom: 0.04
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(6, "feet")
  10782. },
  10783. {
  10784. name: "Macro",
  10785. height: math.unit(230, "meters"),
  10786. default: true
  10787. },
  10788. ]
  10789. ))
  10790. characterMakers.push(() => makeCharacter(
  10791. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10792. {
  10793. front: {
  10794. height: math.unit(4 + 10 / 12, "feet"),
  10795. weight: math.unit(480, "lb"),
  10796. name: "Front",
  10797. image: {
  10798. source: "./media/characters/snow-gabumon/front.svg",
  10799. extra: 1140 / 963,
  10800. bottom: 0.058
  10801. }
  10802. },
  10803. back: {
  10804. height: math.unit(4 + 10 / 12, "feet"),
  10805. weight: math.unit(480, "lb"),
  10806. name: "Back",
  10807. image: {
  10808. source: "./media/characters/snow-gabumon/back.svg",
  10809. extra: 1115 / 962,
  10810. bottom: 0.041
  10811. }
  10812. },
  10813. frontUndresed: {
  10814. height: math.unit(4 + 10 / 12, "feet"),
  10815. weight: math.unit(480, "lb"),
  10816. name: "Front (Undressed)",
  10817. image: {
  10818. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10819. extra: 1061 / 960,
  10820. bottom: 0.045
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Micro",
  10827. height: math.unit(1, "inch")
  10828. },
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(4 + 10 / 12, "feet"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(200, "feet")
  10837. },
  10838. {
  10839. name: "Megamacro",
  10840. height: math.unit(120, "miles")
  10841. },
  10842. {
  10843. name: "Gigamacro",
  10844. height: math.unit(9800, "miles")
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(1.7, "meters"),
  10853. weight: math.unit(140, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/moody/front.svg",
  10857. extra: 3226 / 3007,
  10858. bottom: 0.087
  10859. }
  10860. },
  10861. },
  10862. [
  10863. {
  10864. name: "Micro",
  10865. height: math.unit(1, "mm")
  10866. },
  10867. {
  10868. name: "Normal",
  10869. height: math.unit(1.7, "meters"),
  10870. default: true
  10871. },
  10872. {
  10873. name: "Macro",
  10874. height: math.unit(80, "meters")
  10875. },
  10876. {
  10877. name: "Macro+",
  10878. height: math.unit(500, "meters")
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10884. {
  10885. front: {
  10886. height: math.unit(6, "feet"),
  10887. weight: math.unit(150, "lb"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/zyas/front.svg",
  10891. extra: 1180 / 1120,
  10892. bottom: 0.045
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Normal",
  10899. height: math.unit(10, "feet"),
  10900. default: true
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(500, "feet")
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(5, "miles")
  10909. },
  10910. {
  10911. name: "Teramacro",
  10912. height: math.unit(150000, "miles")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(150, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/cuon/front.svg",
  10925. extra: 1390 / 1320,
  10926. bottom: 0.008
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(3, "inches")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(18 + 9 / 12, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(360, "feet")
  10943. },
  10944. {
  10945. name: "Megamacro",
  10946. height: math.unit(360, "miles")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(2.4, "meters"),
  10955. weight: math.unit(70, "kg"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/nyanuxk/front.svg",
  10959. extra: 1172 / 1084,
  10960. bottom: 0.065
  10961. }
  10962. },
  10963. side: {
  10964. height: math.unit(2.4, "meters"),
  10965. weight: math.unit(70, "kg"),
  10966. name: "Side",
  10967. image: {
  10968. source: "./media/characters/nyanuxk/side.svg",
  10969. extra: 1190 / 1132,
  10970. bottom: 0.007
  10971. }
  10972. },
  10973. back: {
  10974. height: math.unit(2.4, "meters"),
  10975. weight: math.unit(70, "kg"),
  10976. name: "Back",
  10977. image: {
  10978. source: "./media/characters/nyanuxk/back.svg",
  10979. extra: 1200 / 1141,
  10980. bottom: 0.015
  10981. }
  10982. },
  10983. foot: {
  10984. height: math.unit(0.52, "meters"),
  10985. name: "Foot",
  10986. image: {
  10987. source: "./media/characters/nyanuxk/foot.svg"
  10988. }
  10989. },
  10990. },
  10991. [
  10992. {
  10993. name: "Micro",
  10994. height: math.unit(2, "cm")
  10995. },
  10996. {
  10997. name: "Normal",
  10998. height: math.unit(2.4, "meters"),
  10999. default: true
  11000. },
  11001. {
  11002. name: "Smaller Macro",
  11003. height: math.unit(120, "meters")
  11004. },
  11005. {
  11006. name: "Bigger Macro",
  11007. height: math.unit(1.2, "km")
  11008. },
  11009. {
  11010. name: "Megamacro",
  11011. height: math.unit(15, "kilometers")
  11012. },
  11013. {
  11014. name: "Gigamacro",
  11015. height: math.unit(2000, "km")
  11016. },
  11017. {
  11018. name: "Teramacro",
  11019. height: math.unit(500000, "km")
  11020. },
  11021. ]
  11022. ))
  11023. characterMakers.push(() => makeCharacter(
  11024. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11025. {
  11026. side: {
  11027. height: math.unit(6, "feet"),
  11028. name: "Side",
  11029. image: {
  11030. source: "./media/characters/ailbhe/side.svg",
  11031. extra: 757 / 464,
  11032. bottom: 0.041
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Normal",
  11039. height: math.unit(1.07, "meters"),
  11040. default: true
  11041. },
  11042. ]
  11043. ))
  11044. characterMakers.push(() => makeCharacter(
  11045. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11046. {
  11047. front: {
  11048. height: math.unit(6, "feet"),
  11049. weight: math.unit(120, "kg"),
  11050. name: "Front",
  11051. image: {
  11052. source: "./media/characters/zevulfius/front.svg",
  11053. extra: 965 / 903
  11054. }
  11055. },
  11056. side: {
  11057. height: math.unit(6, "feet"),
  11058. weight: math.unit(120, "kg"),
  11059. name: "Side",
  11060. image: {
  11061. source: "./media/characters/zevulfius/side.svg",
  11062. extra: 939 / 900
  11063. }
  11064. },
  11065. back: {
  11066. height: math.unit(6, "feet"),
  11067. weight: math.unit(120, "kg"),
  11068. name: "Back",
  11069. image: {
  11070. source: "./media/characters/zevulfius/back.svg",
  11071. extra: 918 / 854,
  11072. bottom: 0.005
  11073. }
  11074. },
  11075. foot: {
  11076. height: math.unit(6 / 3.72, "feet"),
  11077. name: "Foot",
  11078. image: {
  11079. source: "./media/characters/zevulfius/foot.svg"
  11080. }
  11081. },
  11082. },
  11083. [
  11084. {
  11085. name: "Macro",
  11086. height: math.unit(750, "meters")
  11087. },
  11088. {
  11089. name: "Megamacro",
  11090. height: math.unit(20, "km"),
  11091. default: true
  11092. },
  11093. {
  11094. name: "Gigamacro",
  11095. height: math.unit(2000, "km")
  11096. },
  11097. {
  11098. name: "Teramacro",
  11099. height: math.unit(250000, "km")
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(100, "feet"),
  11108. weight: math.unit(350, "kg"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/rikes/front.svg",
  11112. extra: 1565 / 1483,
  11113. bottom: 0.017
  11114. }
  11115. },
  11116. },
  11117. [
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(100, "feet"),
  11121. default: true
  11122. },
  11123. ]
  11124. ))
  11125. characterMakers.push(() => makeCharacter(
  11126. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11127. {
  11128. front: {
  11129. height: math.unit(8, "feet"),
  11130. weight: math.unit(356, "lb"),
  11131. name: "Front",
  11132. image: {
  11133. source: "./media/characters/adam-silver-mane/front.svg",
  11134. extra: 1036/937,
  11135. bottom: 63/1099
  11136. }
  11137. },
  11138. side: {
  11139. height: math.unit(8, "feet"),
  11140. weight: math.unit(356, "lb"),
  11141. name: "Side",
  11142. image: {
  11143. source: "./media/characters/adam-silver-mane/side.svg",
  11144. extra: 997/901,
  11145. bottom: 59/1056
  11146. }
  11147. },
  11148. frontNsfw: {
  11149. height: math.unit(8, "feet"),
  11150. weight: math.unit(356, "lb"),
  11151. name: "Front (NSFW)",
  11152. image: {
  11153. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11154. extra: 1036/937,
  11155. bottom: 63/1099
  11156. }
  11157. },
  11158. sideNsfw: {
  11159. height: math.unit(8, "feet"),
  11160. weight: math.unit(356, "lb"),
  11161. name: "Side (NSFW)",
  11162. image: {
  11163. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11164. extra: 997/901,
  11165. bottom: 59/1056
  11166. }
  11167. },
  11168. dick: {
  11169. height: math.unit(2.1, "feet"),
  11170. name: "Dick",
  11171. image: {
  11172. source: "./media/characters/adam-silver-mane/dick.svg"
  11173. }
  11174. },
  11175. taur: {
  11176. height: math.unit(16, "feet"),
  11177. weight: math.unit(1500, "kg"),
  11178. name: "Taur",
  11179. image: {
  11180. source: "./media/characters/adam-silver-mane/taur.svg",
  11181. extra: 1713 / 1571,
  11182. bottom: 0.01
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(8, "feet")
  11190. },
  11191. {
  11192. name: "Minimacro",
  11193. height: math.unit(80, "feet")
  11194. },
  11195. {
  11196. name: "MDA",
  11197. height: math.unit(80, "meters")
  11198. },
  11199. {
  11200. name: "Macro",
  11201. height: math.unit(800, "feet"),
  11202. default: true
  11203. },
  11204. {
  11205. name: "Megamacro",
  11206. height: math.unit(8000, "feet")
  11207. },
  11208. {
  11209. name: "Gigamacro",
  11210. height: math.unit(800, "miles")
  11211. },
  11212. {
  11213. name: "Teramacro",
  11214. height: math.unit(80000, "miles")
  11215. },
  11216. {
  11217. name: "Celestial",
  11218. height: math.unit(8e6, "miles")
  11219. },
  11220. {
  11221. name: "Star Dragon",
  11222. height: math.unit(800000, "parsecs")
  11223. },
  11224. {
  11225. name: "Godly",
  11226. height: math.unit(800, "teraparsecs")
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/ky'owin/front.svg",
  11239. extra: 3888 / 3068,
  11240. bottom: 0.015
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(6 + 8 / 12, "feet")
  11248. },
  11249. {
  11250. name: "Large",
  11251. height: math.unit(68, "feet")
  11252. },
  11253. {
  11254. name: "Macro",
  11255. height: math.unit(132, "feet")
  11256. },
  11257. {
  11258. name: "Macro+",
  11259. height: math.unit(340, "feet")
  11260. },
  11261. {
  11262. name: "Macro++",
  11263. height: math.unit(680, "feet"),
  11264. default: true
  11265. },
  11266. {
  11267. name: "Megamacro",
  11268. height: math.unit(1, "mile")
  11269. },
  11270. {
  11271. name: "Megamacro+",
  11272. height: math.unit(10, "miles")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(4, "feet"),
  11281. weight: math.unit(50, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/mal/front.svg",
  11285. extra: 785 / 724,
  11286. bottom: 0.07
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Micro",
  11293. height: math.unit(4, "inches")
  11294. },
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(4, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(200, "feet")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11308. {
  11309. front: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/jordan-deware/front.svg",
  11315. extra: 1191 / 1012
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Nano",
  11322. height: math.unit(0.01, "mm")
  11323. },
  11324. {
  11325. name: "Minimicro",
  11326. height: math.unit(1, "mm")
  11327. },
  11328. {
  11329. name: "Micro",
  11330. height: math.unit(0.5, "inches")
  11331. },
  11332. {
  11333. name: "Normal",
  11334. height: math.unit(4, "feet"),
  11335. default: true
  11336. },
  11337. {
  11338. name: "Minimacro",
  11339. height: math.unit(40, "meters")
  11340. },
  11341. {
  11342. name: "Small Macro",
  11343. height: math.unit(400, "meters")
  11344. },
  11345. {
  11346. name: "Macro",
  11347. height: math.unit(4, "miles")
  11348. },
  11349. {
  11350. name: "Megamacro",
  11351. height: math.unit(40, "miles")
  11352. },
  11353. {
  11354. name: "Megamacro+",
  11355. height: math.unit(400, "miles")
  11356. },
  11357. {
  11358. name: "Gigamacro",
  11359. height: math.unit(400000, "miles")
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11365. {
  11366. side: {
  11367. height: math.unit(6, "feet"),
  11368. weight: math.unit(150, "lb"),
  11369. name: "Side",
  11370. image: {
  11371. source: "./media/characters/kimiko/side.svg",
  11372. extra: 600 / 358
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(15, "feet"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(220, "feet")
  11385. },
  11386. {
  11387. name: "Macro+",
  11388. height: math.unit(1450, "feet")
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(11500, "feet")
  11393. },
  11394. {
  11395. name: "Gigamacro",
  11396. height: math.unit(9500, "miles")
  11397. },
  11398. {
  11399. name: "Teramacro",
  11400. height: math.unit(2208005005, "miles")
  11401. },
  11402. {
  11403. name: "Examacro",
  11404. height: math.unit(2750, "parsecs")
  11405. },
  11406. {
  11407. name: "Zettamacro",
  11408. height: math.unit(101500, "parsecs")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(70, "kg"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/andrew-sleepy/front.svg"
  11421. }
  11422. },
  11423. side: {
  11424. height: math.unit(6, "feet"),
  11425. weight: math.unit(70, "kg"),
  11426. name: "Side",
  11427. image: {
  11428. source: "./media/characters/andrew-sleepy/side.svg"
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Micro",
  11435. height: math.unit(1, "mm"),
  11436. default: true
  11437. },
  11438. ]
  11439. ))
  11440. characterMakers.push(() => makeCharacter(
  11441. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11442. {
  11443. front: {
  11444. height: math.unit(6, "feet"),
  11445. weight: math.unit(150, "lb"),
  11446. name: "Front",
  11447. image: {
  11448. source: "./media/characters/judio/front.svg",
  11449. extra: 1258 / 1110
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(5 + 6 / 12, "feet")
  11457. },
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(1000, "feet"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Megamacro",
  11465. height: math.unit(10, "miles")
  11466. },
  11467. ]
  11468. ))
  11469. characterMakers.push(() => makeCharacter(
  11470. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11471. {
  11472. frontDressed: {
  11473. height: math.unit(6, "feet"),
  11474. weight: math.unit(68, "kg"),
  11475. name: "Front (Dressed)",
  11476. image: {
  11477. source: "./media/characters/nomaxice/front-dressed.svg",
  11478. extra: 1137/824,
  11479. bottom: 74/1211
  11480. }
  11481. },
  11482. frontShorts: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(68, "kg"),
  11485. name: "Front (Shorts)",
  11486. image: {
  11487. source: "./media/characters/nomaxice/front-shorts.svg",
  11488. extra: 1137/824,
  11489. bottom: 74/1211
  11490. }
  11491. },
  11492. back: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(68, "kg"),
  11495. name: "Back",
  11496. image: {
  11497. source: "./media/characters/nomaxice/back.svg",
  11498. extra: 822/786,
  11499. bottom: 39/861
  11500. }
  11501. },
  11502. hand: {
  11503. height: math.unit(0.565, "feet"),
  11504. name: "Hand",
  11505. image: {
  11506. source: "./media/characters/nomaxice/hand.svg"
  11507. }
  11508. },
  11509. foot: {
  11510. height: math.unit(1, "feet"),
  11511. name: "Foot",
  11512. image: {
  11513. source: "./media/characters/nomaxice/foot.svg"
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Micro",
  11520. height: math.unit(8, "cm")
  11521. },
  11522. {
  11523. name: "Norm",
  11524. height: math.unit(1.82, "m")
  11525. },
  11526. {
  11527. name: "Norm+",
  11528. height: math.unit(8.8, "feet"),
  11529. default: true
  11530. },
  11531. {
  11532. name: "Big",
  11533. height: math.unit(8, "meters")
  11534. },
  11535. {
  11536. name: "Macro",
  11537. height: math.unit(18, "meters")
  11538. },
  11539. {
  11540. name: "Macro+",
  11541. height: math.unit(88, "meters")
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11547. {
  11548. front: {
  11549. height: math.unit(12, "feet"),
  11550. weight: math.unit(1.5, "tons"),
  11551. name: "Front",
  11552. image: {
  11553. source: "./media/characters/dydros/front.svg",
  11554. extra: 863 / 800,
  11555. bottom: 0.015
  11556. }
  11557. },
  11558. back: {
  11559. height: math.unit(12, "feet"),
  11560. weight: math.unit(1.5, "tons"),
  11561. name: "Back",
  11562. image: {
  11563. source: "./media/characters/dydros/back.svg",
  11564. extra: 900 / 843,
  11565. bottom: 0.005
  11566. }
  11567. },
  11568. },
  11569. [
  11570. {
  11571. name: "Normal",
  11572. height: math.unit(12, "feet"),
  11573. default: true
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(6, "feet"),
  11582. weight: math.unit(100, "kg"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/riggi/front.svg",
  11586. extra: 5787 / 5303
  11587. }
  11588. },
  11589. hyper: {
  11590. height: math.unit(6 * 5 / 3, "feet"),
  11591. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11592. name: "Hyper",
  11593. image: {
  11594. source: "./media/characters/riggi/hyper.svg",
  11595. extra: 3595 / 3485
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Small Macro",
  11602. height: math.unit(50, "feet")
  11603. },
  11604. {
  11605. name: "Default",
  11606. height: math.unit(200, "feet"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Loom",
  11611. height: math.unit(10000, "feet")
  11612. },
  11613. {
  11614. name: "Cruising Altitude",
  11615. height: math.unit(30000, "feet")
  11616. },
  11617. {
  11618. name: "Megamacro",
  11619. height: math.unit(100, "miles")
  11620. },
  11621. {
  11622. name: "Continent Sized",
  11623. height: math.unit(2800, "miles")
  11624. },
  11625. {
  11626. name: "Earth Sized",
  11627. height: math.unit(8000, "miles")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(6, "feet"),
  11636. weight: math.unit(250, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/alexi/front.svg",
  11640. extra: 3483 / 3291,
  11641. bottom: 0.04
  11642. }
  11643. },
  11644. back: {
  11645. height: math.unit(6, "feet"),
  11646. weight: math.unit(250, "lb"),
  11647. name: "Back",
  11648. image: {
  11649. source: "./media/characters/alexi/back.svg",
  11650. extra: 3533 / 3356,
  11651. bottom: 0.021
  11652. }
  11653. },
  11654. frontTransforming: {
  11655. height: math.unit(8.58, "feet"),
  11656. weight: math.unit(1300, "lb"),
  11657. name: "Transforming",
  11658. image: {
  11659. source: "./media/characters/alexi/front-transforming.svg",
  11660. extra: 437 / 409,
  11661. bottom: 19 / 458.66
  11662. }
  11663. },
  11664. frontTransformed: {
  11665. height: math.unit(12.5, "feet"),
  11666. weight: math.unit(4000, "lb"),
  11667. name: "Transformed",
  11668. image: {
  11669. source: "./media/characters/alexi/front-transformed.svg",
  11670. extra: 639 / 614,
  11671. bottom: 30.55 / 671
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Normal",
  11678. height: math.unit(14, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Minimacro",
  11683. height: math.unit(30, "meters")
  11684. },
  11685. {
  11686. name: "Macro",
  11687. height: math.unit(500, "meters")
  11688. },
  11689. {
  11690. name: "Megamacro",
  11691. height: math.unit(9000, "km")
  11692. },
  11693. {
  11694. name: "Teramacro",
  11695. height: math.unit(384000, "km")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11701. {
  11702. front: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(150, "lb"),
  11705. name: "Front",
  11706. image: {
  11707. source: "./media/characters/kayroo/front.svg",
  11708. extra: 1153 / 1038,
  11709. bottom: 0.06
  11710. }
  11711. },
  11712. foot: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(150, "lb"),
  11715. name: "Foot",
  11716. image: {
  11717. source: "./media/characters/kayroo/foot.svg"
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(8, "feet"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Minimacro",
  11729. height: math.unit(250, "feet")
  11730. },
  11731. {
  11732. name: "Macro",
  11733. height: math.unit(2800, "feet")
  11734. },
  11735. {
  11736. name: "Megamacro",
  11737. height: math.unit(5200, "feet")
  11738. },
  11739. {
  11740. name: "Gigamacro",
  11741. height: math.unit(27000, "feet")
  11742. },
  11743. {
  11744. name: "Omega",
  11745. height: math.unit(45000, "feet")
  11746. },
  11747. ]
  11748. ))
  11749. characterMakers.push(() => makeCharacter(
  11750. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11751. {
  11752. front: {
  11753. height: math.unit(18, "feet"),
  11754. weight: math.unit(5800, "lb"),
  11755. name: "Front",
  11756. image: {
  11757. source: "./media/characters/rhys/front.svg",
  11758. extra: 3386 / 3090,
  11759. bottom: 0.07
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(18, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Working Size",
  11771. height: math.unit(200, "feet")
  11772. },
  11773. {
  11774. name: "Demolition Size",
  11775. height: math.unit(2000, "feet")
  11776. },
  11777. {
  11778. name: "Maximum Licensed Size",
  11779. height: math.unit(5, "miles")
  11780. },
  11781. {
  11782. name: "Maximum Observed Size",
  11783. height: math.unit(10, "yottameters")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(250, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/toto/front.svg",
  11796. extra: 527 / 479,
  11797. bottom: 0.05
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Micro",
  11804. height: math.unit(3, "feet")
  11805. },
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(10, "feet")
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(150, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Megamacro",
  11817. height: math.unit(1200, "feet")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "King", species: ["lion"], tags: ["anthro"] },
  11823. {
  11824. back: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(150, "lb"),
  11827. name: "Back",
  11828. image: {
  11829. source: "./media/characters/king/back.svg"
  11830. }
  11831. },
  11832. },
  11833. [
  11834. {
  11835. name: "Micro",
  11836. height: math.unit(2, "inches")
  11837. },
  11838. {
  11839. name: "Normal",
  11840. height: math.unit(8, "feet")
  11841. },
  11842. {
  11843. name: "Macro",
  11844. height: math.unit(200, "feet"),
  11845. default: true
  11846. },
  11847. {
  11848. name: "Megamacro",
  11849. height: math.unit(50, "miles")
  11850. },
  11851. ]
  11852. ))
  11853. characterMakers.push(() => makeCharacter(
  11854. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11855. {
  11856. front: {
  11857. height: math.unit(11, "feet"),
  11858. weight: math.unit(1400, "lb"),
  11859. name: "Front",
  11860. image: {
  11861. source: "./media/characters/cordite/front.svg",
  11862. extra: 1919/1827,
  11863. bottom: 40/1959
  11864. }
  11865. },
  11866. side: {
  11867. height: math.unit(11, "feet"),
  11868. weight: math.unit(1400, "lb"),
  11869. name: "Side",
  11870. image: {
  11871. source: "./media/characters/cordite/side.svg",
  11872. extra: 1908/1793,
  11873. bottom: 38/1946
  11874. }
  11875. },
  11876. back: {
  11877. height: math.unit(11, "feet"),
  11878. weight: math.unit(1400, "lb"),
  11879. name: "Back",
  11880. image: {
  11881. source: "./media/characters/cordite/back.svg",
  11882. extra: 1938/1837,
  11883. bottom: 10/1948
  11884. }
  11885. },
  11886. feral: {
  11887. height: math.unit(2, "feet"),
  11888. weight: math.unit(90, "lb"),
  11889. name: "Feral",
  11890. image: {
  11891. source: "./media/characters/cordite/feral.svg",
  11892. extra: 1260 / 755,
  11893. bottom: 0.05
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Normal",
  11900. height: math.unit(11, "feet"),
  11901. default: true
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(150, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/pianostrong/front.svg",
  11914. extra: 6577 / 6254,
  11915. bottom: 0.02
  11916. }
  11917. },
  11918. side: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(150, "lb"),
  11921. name: "Side",
  11922. image: {
  11923. source: "./media/characters/pianostrong/side.svg",
  11924. extra: 6106 / 5730
  11925. }
  11926. },
  11927. back: {
  11928. height: math.unit(6, "feet"),
  11929. weight: math.unit(150, "lb"),
  11930. name: "Back",
  11931. image: {
  11932. source: "./media/characters/pianostrong/back.svg",
  11933. extra: 6085 / 5733,
  11934. bottom: 0.01
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Macro",
  11941. height: math.unit(100, "feet")
  11942. },
  11943. {
  11944. name: "Macro+",
  11945. height: math.unit(300, "feet"),
  11946. default: true
  11947. },
  11948. {
  11949. name: "Macro++",
  11950. height: math.unit(1000, "feet")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11956. {
  11957. front: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/kona/front.svg",
  11963. extra: 2960 / 2629,
  11964. bottom: 0.005
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Normal",
  11971. height: math.unit(11 + 8 / 12, "feet")
  11972. },
  11973. {
  11974. name: "Macro",
  11975. height: math.unit(850, "feet"),
  11976. default: true
  11977. },
  11978. {
  11979. name: "Macro+",
  11980. height: math.unit(1.5, "km"),
  11981. default: true
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(80, "miles")
  11986. },
  11987. {
  11988. name: "Gigamacro",
  11989. height: math.unit(3500, "miles")
  11990. },
  11991. ]
  11992. ))
  11993. characterMakers.push(() => makeCharacter(
  11994. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11995. {
  11996. side: {
  11997. height: math.unit(1.9, "meters"),
  11998. weight: math.unit(326, "kg"),
  11999. name: "Side",
  12000. image: {
  12001. source: "./media/characters/levi/side.svg",
  12002. extra: 1704 / 1334,
  12003. bottom: 0.02
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(1.9, "meters"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(20, "meters")
  12016. },
  12017. {
  12018. name: "Macro+",
  12019. height: math.unit(200, "meters")
  12020. },
  12021. {
  12022. name: "Megamacro",
  12023. height: math.unit(2, "km")
  12024. },
  12025. {
  12026. name: "Megamacro+",
  12027. height: math.unit(20, "km")
  12028. },
  12029. {
  12030. name: "Gigamacro",
  12031. height: math.unit(2500, "km")
  12032. },
  12033. {
  12034. name: "Gigamacro+",
  12035. height: math.unit(120000, "km")
  12036. },
  12037. {
  12038. name: "Teramacro",
  12039. height: math.unit(7.77e6, "km")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6 + 4/12, "feet"),
  12048. weight: math.unit(190, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/bmc/front.svg",
  12052. extra: 1626/1472,
  12053. bottom: 79/1705
  12054. }
  12055. },
  12056. back: {
  12057. height: math.unit(6 + 4/12, "feet"),
  12058. weight: math.unit(190, "lb"),
  12059. name: "Back",
  12060. image: {
  12061. source: "./media/characters/bmc/back.svg",
  12062. extra: 1640/1479,
  12063. bottom: 45/1685
  12064. }
  12065. },
  12066. frontArmor: {
  12067. height: math.unit(6 + 4/12, "feet"),
  12068. weight: math.unit(190, "lb"),
  12069. name: "Front-armor",
  12070. image: {
  12071. source: "./media/characters/bmc/front-armor.svg",
  12072. extra: 1538/1468,
  12073. bottom: 79/1617
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Human-sized",
  12080. height: math.unit(6 + 4 / 12, "feet")
  12081. },
  12082. {
  12083. name: "Interactive Size",
  12084. height: math.unit(25, "feet")
  12085. },
  12086. {
  12087. name: "Small",
  12088. height: math.unit(250, "feet")
  12089. },
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(1250, "feet"),
  12093. default: true
  12094. },
  12095. {
  12096. name: "Good Day",
  12097. height: math.unit(88, "miles")
  12098. },
  12099. {
  12100. name: "Largest Measured Size",
  12101. height: math.unit(105.960, "galaxies")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12107. {
  12108. front: {
  12109. height: math.unit(20, "feet"),
  12110. weight: math.unit(2016, "kg"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/sven-the-kaiju/front.svg",
  12114. extra: 1277/1250,
  12115. bottom: 35/1312
  12116. }
  12117. },
  12118. mouth: {
  12119. height: math.unit(1.85, "feet"),
  12120. name: "Mouth",
  12121. image: {
  12122. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Fairy",
  12129. height: math.unit(6, "inches")
  12130. },
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(20, "feet"),
  12134. default: true
  12135. },
  12136. {
  12137. name: "Rampage",
  12138. height: math.unit(200, "feet")
  12139. },
  12140. {
  12141. name: "Archfey Forest Guardian",
  12142. height: math.unit(1, "mile")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(4, "meters"),
  12151. weight: math.unit(2, "tons"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/marik/front.svg",
  12155. extra: 1057 / 1003,
  12156. bottom: 0.08
  12157. }
  12158. },
  12159. },
  12160. [
  12161. {
  12162. name: "Normal",
  12163. height: math.unit(4, "meters"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Macro",
  12168. height: math.unit(20, "meters")
  12169. },
  12170. {
  12171. name: "Megamacro",
  12172. height: math.unit(50, "km")
  12173. },
  12174. {
  12175. name: "Gigamacro",
  12176. height: math.unit(100, "km")
  12177. },
  12178. {
  12179. name: "Alpha Macro",
  12180. height: math.unit(7.88e7, "yottameters")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12186. {
  12187. front: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(110, "lb"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/mel/front.svg",
  12193. extra: 736 / 617,
  12194. bottom: 0.017
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Pico",
  12201. height: math.unit(3, "pm")
  12202. },
  12203. {
  12204. name: "Nano",
  12205. height: math.unit(3, "nm")
  12206. },
  12207. {
  12208. name: "Micro",
  12209. height: math.unit(0.3, "mm"),
  12210. default: true
  12211. },
  12212. {
  12213. name: "Micro+",
  12214. height: math.unit(3, "mm")
  12215. },
  12216. {
  12217. name: "Normal",
  12218. height: math.unit(5 + 10.5 / 12, "feet")
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12224. {
  12225. kaiju: {
  12226. height: math.unit(1.75, "meters"),
  12227. weight: math.unit(55, "kg"),
  12228. name: "Kaiju",
  12229. image: {
  12230. source: "./media/characters/lykonous/kaiju.svg",
  12231. extra: 1055 / 946,
  12232. bottom: 0.135
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Normal",
  12239. height: math.unit(2.5, "meters"),
  12240. default: true
  12241. },
  12242. {
  12243. name: "Kaiju Dragon",
  12244. height: math.unit(60, "meters")
  12245. },
  12246. {
  12247. name: "Mega Kaiju",
  12248. height: math.unit(120, "km")
  12249. },
  12250. {
  12251. name: "Giga Kaiju",
  12252. height: math.unit(200, "megameters")
  12253. },
  12254. {
  12255. name: "Terra Kaiju",
  12256. height: math.unit(400, "gigameters")
  12257. },
  12258. {
  12259. name: "Kaiju Dragon God",
  12260. height: math.unit(13000, "exaparsecs")
  12261. },
  12262. ]
  12263. ))
  12264. characterMakers.push(() => makeCharacter(
  12265. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12266. {
  12267. front: {
  12268. height: math.unit(6, "feet"),
  12269. weight: math.unit(150, "lb"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/blü/front.svg",
  12273. extra: 1883 / 1564,
  12274. bottom: 0.031
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(13, "feet"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Big Boi",
  12286. height: math.unit(150, "meters")
  12287. },
  12288. {
  12289. name: "Mini Stomper",
  12290. height: math.unit(300, "meters")
  12291. },
  12292. {
  12293. name: "Macro",
  12294. height: math.unit(1000, "meters")
  12295. },
  12296. {
  12297. name: "Megamacro",
  12298. height: math.unit(11000, "meters")
  12299. },
  12300. {
  12301. name: "Gigamacro",
  12302. height: math.unit(11000, "km")
  12303. },
  12304. {
  12305. name: "Teramacro",
  12306. height: math.unit(420000, "km")
  12307. },
  12308. {
  12309. name: "Examacro",
  12310. height: math.unit(120, "parsecs")
  12311. },
  12312. {
  12313. name: "God Tho",
  12314. height: math.unit(98000000000, "parsecs")
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12320. {
  12321. taurFront: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(200, "lb"),
  12324. name: "Taur (Front)",
  12325. image: {
  12326. source: "./media/characters/scales/taur-front.svg",
  12327. extra: 1,
  12328. bottom: 0.05
  12329. }
  12330. },
  12331. taurBack: {
  12332. height: math.unit(6, "feet"),
  12333. weight: math.unit(200, "lb"),
  12334. name: "Taur (Back)",
  12335. image: {
  12336. source: "./media/characters/scales/taur-back.svg",
  12337. extra: 1,
  12338. bottom: 0.08
  12339. }
  12340. },
  12341. anthro: {
  12342. height: math.unit(6 * 7 / 12, "feet"),
  12343. weight: math.unit(100, "lb"),
  12344. name: "Anthro",
  12345. image: {
  12346. source: "./media/characters/scales/anthro.svg",
  12347. extra: 1,
  12348. bottom: 0.06
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Normal",
  12355. height: math.unit(12, "feet"),
  12356. default: true
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(150, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/koragos/front.svg",
  12369. extra: 841 / 794,
  12370. bottom: 0.035
  12371. }
  12372. },
  12373. back: {
  12374. height: math.unit(6, "feet"),
  12375. weight: math.unit(150, "lb"),
  12376. name: "Back",
  12377. image: {
  12378. source: "./media/characters/koragos/back.svg",
  12379. extra: 841 / 810,
  12380. bottom: 0.022
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(6 + 11 / 12, "feet"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Macro",
  12392. height: math.unit(490, "feet")
  12393. },
  12394. {
  12395. name: "Megamacro",
  12396. height: math.unit(10, "miles")
  12397. },
  12398. {
  12399. name: "Gigamacro",
  12400. height: math.unit(50, "miles")
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12406. {
  12407. front: {
  12408. height: math.unit(6, "feet"),
  12409. weight: math.unit(250, "lb"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/xylrem/front.svg",
  12413. extra: 3323 / 3050,
  12414. bottom: 0.065
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Micro",
  12421. height: math.unit(4, "feet")
  12422. },
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(16, "feet"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(2720, "feet")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(25000, "miles")
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12440. {
  12441. front: {
  12442. height: math.unit(8, "feet"),
  12443. weight: math.unit(250, "kg"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/ikideru/front.svg",
  12447. extra: 930 / 870,
  12448. bottom: 0.087
  12449. }
  12450. },
  12451. back: {
  12452. height: math.unit(8, "feet"),
  12453. weight: math.unit(250, "kg"),
  12454. name: "Back",
  12455. image: {
  12456. source: "./media/characters/ikideru/back.svg",
  12457. extra: 919 / 852,
  12458. bottom: 0.055
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Rare",
  12465. height: math.unit(8, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Playful Loom",
  12470. height: math.unit(80, "feet")
  12471. },
  12472. {
  12473. name: "City Leaner",
  12474. height: math.unit(230, "feet")
  12475. },
  12476. {
  12477. name: "Megamacro",
  12478. height: math.unit(2500, "feet")
  12479. },
  12480. {
  12481. name: "Gigamacro",
  12482. height: math.unit(26400, "feet")
  12483. },
  12484. {
  12485. name: "Tectonic Shifter",
  12486. height: math.unit(1.7, "megameters")
  12487. },
  12488. {
  12489. name: "Planet Carer",
  12490. height: math.unit(21, "megameters")
  12491. },
  12492. {
  12493. name: "God",
  12494. height: math.unit(11157.22, "parsecs")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(120, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/neo/front.svg"
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Micro",
  12513. height: math.unit(2, "inches"),
  12514. default: true
  12515. },
  12516. {
  12517. name: "Human Size",
  12518. height: math.unit(5 + 8 / 12, "feet")
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12524. {
  12525. front: {
  12526. height: math.unit(13 + 10 / 12, "feet"),
  12527. weight: math.unit(5320, "lb"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/chauncey-chantz/front.svg",
  12531. extra: 1587 / 1435,
  12532. bottom: 0.02
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Normal",
  12539. height: math.unit(13 + 10 / 12, "feet"),
  12540. default: true
  12541. },
  12542. {
  12543. name: "Macro",
  12544. height: math.unit(45, "feet")
  12545. },
  12546. {
  12547. name: "Megamacro",
  12548. height: math.unit(250, "miles")
  12549. },
  12550. {
  12551. name: "Planetary",
  12552. height: math.unit(10000, "miles")
  12553. },
  12554. {
  12555. name: "Galactic",
  12556. height: math.unit(40000, "parsecs")
  12557. },
  12558. {
  12559. name: "Universal",
  12560. height: math.unit(1, "yottameter")
  12561. },
  12562. ]
  12563. ))
  12564. characterMakers.push(() => makeCharacter(
  12565. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12566. {
  12567. front: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(150, "lb"),
  12570. name: "Front",
  12571. image: {
  12572. source: "./media/characters/epifox/front.svg",
  12573. extra: 1,
  12574. bottom: 0.075
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Micro",
  12581. height: math.unit(6, "inches")
  12582. },
  12583. {
  12584. name: "Normal",
  12585. height: math.unit(12, "feet"),
  12586. default: true
  12587. },
  12588. {
  12589. name: "Macro",
  12590. height: math.unit(3810, "feet")
  12591. },
  12592. {
  12593. name: "Megamacro",
  12594. height: math.unit(500, "miles")
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12600. {
  12601. front: {
  12602. height: math.unit(1.8796, "m"),
  12603. weight: math.unit(230, "lb"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/colin-t/front.svg",
  12607. extra: 1272 / 1193,
  12608. bottom: 0.07
  12609. }
  12610. },
  12611. },
  12612. [
  12613. {
  12614. name: "Micro",
  12615. height: math.unit(0.571, "meters")
  12616. },
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(1.8796, "meters"),
  12620. default: true
  12621. },
  12622. {
  12623. name: "Tall",
  12624. height: math.unit(4, "meters")
  12625. },
  12626. {
  12627. name: "Macro",
  12628. height: math.unit(67.241, "meters")
  12629. },
  12630. {
  12631. name: "Megamacro",
  12632. height: math.unit(371.856, "meters")
  12633. },
  12634. {
  12635. name: "Planetary",
  12636. height: math.unit(12631.5689, "km")
  12637. },
  12638. ]
  12639. ))
  12640. characterMakers.push(() => makeCharacter(
  12641. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12642. {
  12643. front: {
  12644. height: math.unit(1.85, "meters"),
  12645. weight: math.unit(80, "kg"),
  12646. name: "Front",
  12647. image: {
  12648. source: "./media/characters/matvei/front.svg",
  12649. extra: 614 / 594,
  12650. bottom: 0.01
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Normal",
  12657. height: math.unit(1.85, "meters"),
  12658. default: true
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12664. {
  12665. front: {
  12666. height: math.unit(5 + 9 / 12, "feet"),
  12667. weight: math.unit(70, "lb"),
  12668. name: "Front",
  12669. image: {
  12670. source: "./media/characters/quincy/front.svg",
  12671. extra: 3041 / 2751
  12672. }
  12673. },
  12674. back: {
  12675. height: math.unit(5 + 9 / 12, "feet"),
  12676. weight: math.unit(70, "lb"),
  12677. name: "Back",
  12678. image: {
  12679. source: "./media/characters/quincy/back.svg",
  12680. extra: 3041 / 2751
  12681. }
  12682. },
  12683. flying: {
  12684. height: math.unit(5 + 4 / 12, "feet"),
  12685. weight: math.unit(70, "lb"),
  12686. name: "Flying",
  12687. image: {
  12688. source: "./media/characters/quincy/flying.svg",
  12689. extra: 1044 / 930
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Micro",
  12696. height: math.unit(3, "cm")
  12697. },
  12698. {
  12699. name: "Normal",
  12700. height: math.unit(5 + 9 / 12, "feet")
  12701. },
  12702. {
  12703. name: "Macro",
  12704. height: math.unit(200, "meters"),
  12705. default: true
  12706. },
  12707. {
  12708. name: "Megamacro",
  12709. height: math.unit(1000, "meters")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12715. {
  12716. front: {
  12717. height: math.unit(3 + 11/12, "feet"),
  12718. weight: math.unit(50, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/vanrel/front.svg",
  12722. extra: 1104/949,
  12723. bottom: 52/1156
  12724. }
  12725. },
  12726. back: {
  12727. height: math.unit(3 + 11/12, "feet"),
  12728. weight: math.unit(50, "lb"),
  12729. name: "Back",
  12730. image: {
  12731. source: "./media/characters/vanrel/back.svg",
  12732. extra: 1119/976,
  12733. bottom: 37/1156
  12734. }
  12735. },
  12736. tome: {
  12737. height: math.unit(1.35, "feet"),
  12738. weight: math.unit(10, "lb"),
  12739. name: "Vanrel's Tome",
  12740. rename: true,
  12741. image: {
  12742. source: "./media/characters/vanrel/tome.svg"
  12743. }
  12744. },
  12745. beans: {
  12746. height: math.unit(0.89, "feet"),
  12747. name: "Beans",
  12748. image: {
  12749. source: "./media/characters/vanrel/beans.svg"
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(3 + 11/12, "feet"),
  12757. default: true
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12763. {
  12764. front: {
  12765. height: math.unit(7 + 5 / 12, "feet"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/kuiper-vanrel/front.svg",
  12769. extra: 1219/1169,
  12770. bottom: 69/1288
  12771. }
  12772. },
  12773. back: {
  12774. height: math.unit(7 + 5 / 12, "feet"),
  12775. name: "Back",
  12776. image: {
  12777. source: "./media/characters/kuiper-vanrel/back.svg",
  12778. extra: 1236/1193,
  12779. bottom: 27/1263
  12780. }
  12781. },
  12782. foot: {
  12783. height: math.unit(0.55, "meters"),
  12784. name: "Foot",
  12785. image: {
  12786. source: "./media/characters/kuiper-vanrel/foot.svg",
  12787. }
  12788. },
  12789. battle: {
  12790. height: math.unit(6.824, "feet"),
  12791. name: "Battle",
  12792. image: {
  12793. source: "./media/characters/kuiper-vanrel/battle.svg",
  12794. extra: 1466 / 1327,
  12795. bottom: 29 / 1492.5
  12796. }
  12797. },
  12798. meerkui: {
  12799. height: math.unit(18, "inches"),
  12800. name: "Meerkui",
  12801. image: {
  12802. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12803. extra: 1354/1289,
  12804. bottom: 69/1423
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(7 + 5 / 12, "feet"),
  12812. default: true
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(8 + 5 / 12, "feet"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/keset-vanrel/front.svg",
  12824. extra: 1231/1148,
  12825. bottom: 82/1313
  12826. }
  12827. },
  12828. back: {
  12829. height: math.unit(8 + 5 / 12, "feet"),
  12830. name: "Back",
  12831. image: {
  12832. source: "./media/characters/keset-vanrel/back.svg",
  12833. extra: 1240/1174,
  12834. bottom: 33/1273
  12835. }
  12836. },
  12837. hand: {
  12838. height: math.unit(0.6, "meters"),
  12839. name: "Hand",
  12840. image: {
  12841. source: "./media/characters/keset-vanrel/hand.svg"
  12842. }
  12843. },
  12844. foot: {
  12845. height: math.unit(0.94978, "meters"),
  12846. name: "Foot",
  12847. image: {
  12848. source: "./media/characters/keset-vanrel/foot.svg"
  12849. }
  12850. },
  12851. battle: {
  12852. height: math.unit(7.408, "feet"),
  12853. name: "Battle",
  12854. image: {
  12855. source: "./media/characters/keset-vanrel/battle.svg",
  12856. extra: 1890 / 1386,
  12857. bottom: 73.28 / 1970
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Normal",
  12864. height: math.unit(8 + 5 / 12, "feet"),
  12865. default: true
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6, "feet"),
  12874. weight: math.unit(150, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/neos/front.svg",
  12878. extra: 1696 / 992,
  12879. bottom: 0.14
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Normal",
  12886. height: math.unit(54, "cm"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Macro",
  12891. height: math.unit(100, "m")
  12892. },
  12893. {
  12894. name: "Megamacro",
  12895. height: math.unit(10, "km")
  12896. },
  12897. {
  12898. name: "Megamacro+",
  12899. height: math.unit(100, "km")
  12900. },
  12901. {
  12902. name: "Gigamacro",
  12903. height: math.unit(100, "Mm")
  12904. },
  12905. {
  12906. name: "Teramacro",
  12907. height: math.unit(100, "Gm")
  12908. },
  12909. {
  12910. name: "Examacro",
  12911. height: math.unit(100, "Em")
  12912. },
  12913. {
  12914. name: "Godly",
  12915. height: math.unit(10000, "Ym")
  12916. },
  12917. {
  12918. name: "Beyond Godly",
  12919. height: math.unit(25, "multiverses")
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12925. {
  12926. feminine: {
  12927. height: math.unit(5, "feet"),
  12928. weight: math.unit(100, "lb"),
  12929. name: "Feminine",
  12930. image: {
  12931. source: "./media/characters/sammy-mouse/feminine.svg",
  12932. extra: 2526 / 2425,
  12933. bottom: 0.123
  12934. }
  12935. },
  12936. masculine: {
  12937. height: math.unit(5, "feet"),
  12938. weight: math.unit(100, "lb"),
  12939. name: "Masculine",
  12940. image: {
  12941. source: "./media/characters/sammy-mouse/masculine.svg",
  12942. extra: 2526 / 2425,
  12943. bottom: 0.123
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Micro",
  12950. height: math.unit(5, "inches")
  12951. },
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(5, "feet"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Macro",
  12959. height: math.unit(60, "feet")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(4, "feet"),
  12968. weight: math.unit(50, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/kole/front.svg",
  12972. extra: 1423 / 1303,
  12973. bottom: 0.025
  12974. }
  12975. },
  12976. back: {
  12977. height: math.unit(4, "feet"),
  12978. weight: math.unit(50, "lb"),
  12979. name: "Back",
  12980. image: {
  12981. source: "./media/characters/kole/back.svg",
  12982. extra: 1426 / 1280,
  12983. bottom: 0.02
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(4, "feet"),
  12991. default: true
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(2.5, "feet"),
  13000. weight: math.unit(32, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/rufran/front.svg",
  13004. extra: 1313/885,
  13005. bottom: 94/1407
  13006. }
  13007. },
  13008. side: {
  13009. height: math.unit(2.5, "feet"),
  13010. weight: math.unit(32, "lb"),
  13011. name: "Side",
  13012. image: {
  13013. source: "./media/characters/rufran/side.svg",
  13014. extra: 1109/852,
  13015. bottom: 118/1227
  13016. }
  13017. },
  13018. back: {
  13019. height: math.unit(2.5, "feet"),
  13020. weight: math.unit(32, "lb"),
  13021. name: "Back",
  13022. image: {
  13023. source: "./media/characters/rufran/back.svg",
  13024. extra: 1280/878,
  13025. bottom: 131/1411
  13026. }
  13027. },
  13028. mouth: {
  13029. height: math.unit(1.13, "feet"),
  13030. name: "Mouth",
  13031. image: {
  13032. source: "./media/characters/rufran/mouth.svg"
  13033. }
  13034. },
  13035. foot: {
  13036. height: math.unit(1.33, "feet"),
  13037. name: "Foot",
  13038. image: {
  13039. source: "./media/characters/rufran/foot.svg"
  13040. }
  13041. },
  13042. koboldFront: {
  13043. height: math.unit(2 + 6 / 12, "feet"),
  13044. weight: math.unit(20, "lb"),
  13045. name: "Front (Kobold)",
  13046. image: {
  13047. source: "./media/characters/rufran/kobold-front.svg",
  13048. extra: 2041 / 1839,
  13049. bottom: 0.055
  13050. }
  13051. },
  13052. koboldBack: {
  13053. height: math.unit(2 + 6 / 12, "feet"),
  13054. weight: math.unit(20, "lb"),
  13055. name: "Back (Kobold)",
  13056. image: {
  13057. source: "./media/characters/rufran/kobold-back.svg",
  13058. extra: 2054 / 1839,
  13059. bottom: 0.01
  13060. }
  13061. },
  13062. koboldHand: {
  13063. height: math.unit(0.2166, "meters"),
  13064. name: "Hand (Kobold)",
  13065. image: {
  13066. source: "./media/characters/rufran/kobold-hand.svg"
  13067. }
  13068. },
  13069. koboldFoot: {
  13070. height: math.unit(0.185, "meters"),
  13071. name: "Foot (Kobold)",
  13072. image: {
  13073. source: "./media/characters/rufran/kobold-foot.svg"
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Micro",
  13080. height: math.unit(1, "inch")
  13081. },
  13082. {
  13083. name: "Normal",
  13084. height: math.unit(2 + 6 / 12, "feet"),
  13085. default: true
  13086. },
  13087. {
  13088. name: "Big",
  13089. height: math.unit(60, "feet")
  13090. },
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(325, "feet")
  13094. },
  13095. ]
  13096. ))
  13097. characterMakers.push(() => makeCharacter(
  13098. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13099. {
  13100. front: {
  13101. height: math.unit(0.3, "meters"),
  13102. weight: math.unit(3.5, "kg"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/chip/front.svg",
  13106. extra: 748 / 674
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Micro",
  13113. height: math.unit(1, "inch"),
  13114. default: true
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13120. {
  13121. side: {
  13122. height: math.unit(2.3, "meters"),
  13123. weight: math.unit(3500, "lb"),
  13124. name: "Side",
  13125. image: {
  13126. source: "./media/characters/torvid/side.svg",
  13127. extra: 1972 / 722,
  13128. bottom: 0.035
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(2.3, "meters"),
  13136. default: true
  13137. },
  13138. ]
  13139. ))
  13140. characterMakers.push(() => makeCharacter(
  13141. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13142. {
  13143. front: {
  13144. height: math.unit(2, "meters"),
  13145. weight: math.unit(150.5, "kg"),
  13146. name: "Front",
  13147. image: {
  13148. source: "./media/characters/susan/front.svg",
  13149. extra: 693 / 635,
  13150. bottom: 0.05
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Megamacro",
  13157. height: math.unit(505, "miles"),
  13158. default: true
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13164. {
  13165. front: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(150, "lb"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/raindrops/front.svg",
  13171. extra: 2655 / 2461,
  13172. bottom: 49 / 2705
  13173. }
  13174. },
  13175. back: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(150, "lb"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/raindrops/back.svg",
  13181. extra: 2574 / 2400,
  13182. bottom: 65 / 2634
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Micro",
  13189. height: math.unit(6, "inches")
  13190. },
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(6 + 2 / 12, "feet")
  13194. },
  13195. {
  13196. name: "Macro",
  13197. height: math.unit(131, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(15, "miles")
  13203. },
  13204. {
  13205. name: "Gigamacro",
  13206. height: math.unit(4000, "miles")
  13207. },
  13208. {
  13209. name: "Teramacro",
  13210. height: math.unit(315000, "miles")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(2.794, "meters"),
  13219. weight: math.unit(325, "kg"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/tezwa/front.svg",
  13223. extra: 2083 / 1906,
  13224. bottom: 0.031
  13225. }
  13226. },
  13227. foot: {
  13228. height: math.unit(0.687, "meters"),
  13229. name: "Foot",
  13230. image: {
  13231. source: "./media/characters/tezwa/foot.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(9 + 2 / 12, "feet"),
  13239. default: true
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(58, "feet"),
  13248. weight: math.unit(89000, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/typhus/front.svg",
  13252. extra: 816 / 800,
  13253. bottom: 0.065
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(58, "feet"),
  13261. default: true
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13267. {
  13268. front: {
  13269. height: math.unit(12, "feet"),
  13270. weight: math.unit(6, "tonnes"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/lyra-von-wulf/front.svg",
  13274. extra: 1,
  13275. bottom: 0.10
  13276. }
  13277. },
  13278. frontMecha: {
  13279. height: math.unit(12, "feet"),
  13280. weight: math.unit(12, "tonnes"),
  13281. name: "Front (Mecha)",
  13282. image: {
  13283. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13284. extra: 1,
  13285. bottom: 0.042
  13286. }
  13287. },
  13288. maw: {
  13289. height: math.unit(2.2, "feet"),
  13290. name: "Maw",
  13291. image: {
  13292. source: "./media/characters/lyra-von-wulf/maw.svg"
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Normal",
  13299. height: math.unit(12, "feet"),
  13300. default: true
  13301. },
  13302. {
  13303. name: "Classic",
  13304. height: math.unit(50, "feet")
  13305. },
  13306. {
  13307. name: "Macro",
  13308. height: math.unit(500, "feet")
  13309. },
  13310. {
  13311. name: "Megamacro",
  13312. height: math.unit(1, "mile")
  13313. },
  13314. {
  13315. name: "Gigamacro",
  13316. height: math.unit(400, "miles")
  13317. },
  13318. {
  13319. name: "Teramacro",
  13320. height: math.unit(22000, "miles")
  13321. },
  13322. {
  13323. name: "Solarmacro",
  13324. height: math.unit(8600000, "miles")
  13325. },
  13326. {
  13327. name: "Galactic",
  13328. height: math.unit(1057000, "lightyears")
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6 + 10 / 12, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/dixon/front.svg",
  13341. extra: 3361 / 3209,
  13342. bottom: 0.01
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Normal",
  13349. height: math.unit(6 + 10 / 12, "feet"),
  13350. default: true
  13351. },
  13352. {
  13353. name: "Big",
  13354. height: math.unit(12, "meters")
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(500, "meters")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(2, "km")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(185, "cm"),
  13371. weight: math.unit(68, "kg"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/kauko/front.svg",
  13375. extra: 1455 / 1421,
  13376. bottom: 0.03
  13377. }
  13378. },
  13379. back: {
  13380. height: math.unit(185, "cm"),
  13381. weight: math.unit(68, "kg"),
  13382. name: "Back",
  13383. image: {
  13384. source: "./media/characters/kauko/back.svg",
  13385. extra: 1455 / 1421,
  13386. bottom: 0.004
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Normal",
  13393. height: math.unit(185, "cm"),
  13394. default: true
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(150, "kg"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/varg/front.svg",
  13407. extra: 1108 / 1018,
  13408. bottom: 0.0375
  13409. }
  13410. },
  13411. },
  13412. [
  13413. {
  13414. name: "Normal",
  13415. height: math.unit(5, "meters")
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(200, "meters")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(20, "kilometers")
  13424. },
  13425. {
  13426. name: "True Size",
  13427. height: math.unit(211, "km"),
  13428. default: true
  13429. },
  13430. {
  13431. name: "Gigamacro",
  13432. height: math.unit(1000, "km")
  13433. },
  13434. {
  13435. name: "Gigamacro+",
  13436. height: math.unit(8000, "km")
  13437. },
  13438. {
  13439. name: "Teramacro",
  13440. height: math.unit(1000000, "km")
  13441. },
  13442. ]
  13443. ))
  13444. characterMakers.push(() => makeCharacter(
  13445. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13446. {
  13447. front: {
  13448. height: math.unit(7 + 7 / 12, "feet"),
  13449. weight: math.unit(267, "lb"),
  13450. name: "Front",
  13451. image: {
  13452. source: "./media/characters/dayza/front.svg",
  13453. extra: 1262 / 1200,
  13454. bottom: 0.035
  13455. }
  13456. },
  13457. side: {
  13458. height: math.unit(7 + 7 / 12, "feet"),
  13459. weight: math.unit(267, "lb"),
  13460. name: "Side",
  13461. image: {
  13462. source: "./media/characters/dayza/side.svg",
  13463. extra: 1295 / 1245,
  13464. bottom: 0.05
  13465. }
  13466. },
  13467. back: {
  13468. height: math.unit(7 + 7 / 12, "feet"),
  13469. weight: math.unit(267, "lb"),
  13470. name: "Back",
  13471. image: {
  13472. source: "./media/characters/dayza/back.svg",
  13473. extra: 1241 / 1170
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Normal",
  13480. height: math.unit(7 + 7 / 12, "feet"),
  13481. default: true
  13482. },
  13483. {
  13484. name: "Macro",
  13485. height: math.unit(155, "feet")
  13486. },
  13487. ]
  13488. ))
  13489. characterMakers.push(() => makeCharacter(
  13490. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13491. {
  13492. front: {
  13493. height: math.unit(6 + 5 / 12, "feet"),
  13494. weight: math.unit(160, "lb"),
  13495. name: "Front",
  13496. image: {
  13497. source: "./media/characters/xanthos/front.svg",
  13498. extra: 1,
  13499. bottom: 0.04
  13500. }
  13501. },
  13502. back: {
  13503. height: math.unit(6 + 5 / 12, "feet"),
  13504. weight: math.unit(160, "lb"),
  13505. name: "Back",
  13506. image: {
  13507. source: "./media/characters/xanthos/back.svg",
  13508. extra: 1,
  13509. bottom: 0.03
  13510. }
  13511. },
  13512. hand: {
  13513. height: math.unit(0.928, "feet"),
  13514. name: "Hand",
  13515. image: {
  13516. source: "./media/characters/xanthos/hand.svg"
  13517. }
  13518. },
  13519. foot: {
  13520. height: math.unit(1.286, "feet"),
  13521. name: "Foot",
  13522. image: {
  13523. source: "./media/characters/xanthos/foot.svg"
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Normal",
  13530. height: math.unit(6 + 5 / 12, "feet"),
  13531. default: true
  13532. },
  13533. {
  13534. name: "Normal+",
  13535. height: math.unit(6, "meters")
  13536. },
  13537. {
  13538. name: "Macro",
  13539. height: math.unit(40, "feet")
  13540. },
  13541. {
  13542. name: "Macro+",
  13543. height: math.unit(200, "meters")
  13544. },
  13545. {
  13546. name: "Megamacro",
  13547. height: math.unit(20, "km")
  13548. },
  13549. {
  13550. name: "Megamacro+",
  13551. height: math.unit(100, "km")
  13552. },
  13553. {
  13554. name: "Gigamacro",
  13555. height: math.unit(200, "megameters")
  13556. },
  13557. {
  13558. name: "Gigamacro+",
  13559. height: math.unit(1.5, "gigameters")
  13560. },
  13561. ]
  13562. ))
  13563. characterMakers.push(() => makeCharacter(
  13564. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13565. {
  13566. front: {
  13567. height: math.unit(6 + 3 / 12, "feet"),
  13568. weight: math.unit(215, "lb"),
  13569. name: "Front",
  13570. image: {
  13571. source: "./media/characters/grynn/front.svg",
  13572. extra: 4627 / 4209,
  13573. bottom: 0.047
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Micro",
  13580. height: math.unit(6, "inches")
  13581. },
  13582. {
  13583. name: "Normal",
  13584. height: math.unit(6 + 3 / 12, "feet"),
  13585. default: true
  13586. },
  13587. {
  13588. name: "Big",
  13589. height: math.unit(104, "feet")
  13590. },
  13591. {
  13592. name: "Macro",
  13593. height: math.unit(944, "feet")
  13594. },
  13595. {
  13596. name: "Macro+",
  13597. height: math.unit(9480, "feet")
  13598. },
  13599. {
  13600. name: "Megamacro",
  13601. height: math.unit(78752, "feet")
  13602. },
  13603. {
  13604. name: "Megamacro+",
  13605. height: math.unit(630128, "feet")
  13606. },
  13607. {
  13608. name: "Megamacro++",
  13609. height: math.unit(3150695, "feet")
  13610. },
  13611. ]
  13612. ))
  13613. characterMakers.push(() => makeCharacter(
  13614. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13615. {
  13616. front: {
  13617. height: math.unit(7 + 5 / 12, "feet"),
  13618. weight: math.unit(450, "lb"),
  13619. name: "Front",
  13620. image: {
  13621. source: "./media/characters/mocha-aura/front.svg",
  13622. extra: 1907 / 1817,
  13623. bottom: 0.04
  13624. }
  13625. },
  13626. back: {
  13627. height: math.unit(7 + 5 / 12, "feet"),
  13628. weight: math.unit(450, "lb"),
  13629. name: "Back",
  13630. image: {
  13631. source: "./media/characters/mocha-aura/back.svg",
  13632. extra: 1900 / 1825,
  13633. bottom: 0.045
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Nano",
  13640. height: math.unit(1, "nm")
  13641. },
  13642. {
  13643. name: "Megamicro",
  13644. height: math.unit(1, "mm")
  13645. },
  13646. {
  13647. name: "Micro",
  13648. height: math.unit(3, "inches")
  13649. },
  13650. {
  13651. name: "Normal",
  13652. height: math.unit(7 + 5 / 12, "feet"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(30, "feet")
  13658. },
  13659. {
  13660. name: "Megamacro",
  13661. height: math.unit(3500, "feet")
  13662. },
  13663. {
  13664. name: "Teramacro",
  13665. height: math.unit(500000, "miles")
  13666. },
  13667. {
  13668. name: "Petamacro",
  13669. height: math.unit(50000000000000000, "parsecs")
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13675. {
  13676. front: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/ilisha-devya/front.svg",
  13682. extra: 1053/1049,
  13683. bottom: 270/1323
  13684. }
  13685. },
  13686. back: {
  13687. height: math.unit(6, "feet"),
  13688. weight: math.unit(150, "lb"),
  13689. name: "Back",
  13690. image: {
  13691. source: "./media/characters/ilisha-devya/back.svg",
  13692. extra: 1131/1128,
  13693. bottom: 39/1170
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(500, "feet"),
  13701. default: true
  13702. },
  13703. {
  13704. name: "Megamacro",
  13705. height: math.unit(10, "miles")
  13706. },
  13707. {
  13708. name: "Gigamacro",
  13709. height: math.unit(100000, "miles")
  13710. },
  13711. {
  13712. name: "Examacro",
  13713. height: math.unit(1e9, "lightyears")
  13714. },
  13715. {
  13716. name: "Omniversal",
  13717. height: math.unit(1e33, "lightyears")
  13718. },
  13719. {
  13720. name: "Beyond Infinite",
  13721. height: math.unit(1e100, "lightyears")
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13727. {
  13728. Side: {
  13729. height: math.unit(6, "feet"),
  13730. weight: math.unit(150, "lb"),
  13731. name: "Side",
  13732. image: {
  13733. source: "./media/characters/mira/side.svg",
  13734. extra: 900 / 799,
  13735. bottom: 0.02
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Human Size",
  13742. height: math.unit(6, "feet")
  13743. },
  13744. {
  13745. name: "Macro",
  13746. height: math.unit(100, "feet"),
  13747. default: true
  13748. },
  13749. {
  13750. name: "Megamacro",
  13751. height: math.unit(10, "miles")
  13752. },
  13753. {
  13754. name: "Gigamacro",
  13755. height: math.unit(25000, "miles")
  13756. },
  13757. {
  13758. name: "Teramacro",
  13759. height: math.unit(300, "AU")
  13760. },
  13761. {
  13762. name: "Full Size",
  13763. height: math.unit(4.5e10, "lightyears")
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(150, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/holly/front.svg",
  13776. extra: 639 / 606
  13777. }
  13778. },
  13779. back: {
  13780. height: math.unit(6, "feet"),
  13781. weight: math.unit(150, "lb"),
  13782. name: "Back",
  13783. image: {
  13784. source: "./media/characters/holly/back.svg",
  13785. extra: 623 / 598
  13786. }
  13787. },
  13788. frontWorking: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(150, "lb"),
  13791. name: "Front (Working)",
  13792. image: {
  13793. source: "./media/characters/holly/front-working.svg",
  13794. extra: 607 / 577,
  13795. bottom: 0.048
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(12 + 3 / 12, "feet"),
  13803. default: true
  13804. },
  13805. ]
  13806. ))
  13807. characterMakers.push(() => makeCharacter(
  13808. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13809. {
  13810. front: {
  13811. height: math.unit(6, "feet"),
  13812. weight: math.unit(150, "lb"),
  13813. name: "Front",
  13814. image: {
  13815. source: "./media/characters/porter/front.svg",
  13816. extra: 1,
  13817. bottom: 0.01
  13818. }
  13819. },
  13820. frontRobes: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(150, "lb"),
  13823. name: "Front (Robes)",
  13824. image: {
  13825. source: "./media/characters/porter/front-robes.svg",
  13826. extra: 1.01,
  13827. bottom: 0.01
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(11 + 9 / 12, "feet"),
  13835. default: true
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13841. {
  13842. legendary: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Legendary",
  13846. image: {
  13847. source: "./media/characters/lucy/legendary.svg",
  13848. extra: 1355 / 1100,
  13849. bottom: 0.045
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Legendary",
  13856. height: math.unit(86882 * 2, "miles"),
  13857. default: true
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(6, "feet"),
  13866. weight: math.unit(150, "lb"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/drusilla/front.svg",
  13870. extra: 678 / 635,
  13871. bottom: 0.03
  13872. }
  13873. },
  13874. back: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(150, "lb"),
  13877. name: "Back",
  13878. image: {
  13879. source: "./media/characters/drusilla/back.svg",
  13880. extra: 678 / 635,
  13881. bottom: 0.005
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Macro",
  13888. height: math.unit(100, "feet")
  13889. },
  13890. {
  13891. name: "Canon Height",
  13892. height: math.unit(2000, "feet"),
  13893. default: true
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(6, "feet"),
  13902. weight: math.unit(180, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/renard-thatch/front.svg",
  13906. extra: 2411 / 2275,
  13907. bottom: 0.01
  13908. }
  13909. },
  13910. frontPosing: {
  13911. height: math.unit(6, "feet"),
  13912. weight: math.unit(180, "lb"),
  13913. name: "Front (Posing)",
  13914. image: {
  13915. source: "./media/characters/renard-thatch/front-posing.svg",
  13916. extra: 2381 / 2261,
  13917. bottom: 0.01
  13918. }
  13919. },
  13920. back: {
  13921. height: math.unit(6, "feet"),
  13922. weight: math.unit(180, "lb"),
  13923. name: "Back",
  13924. image: {
  13925. source: "./media/characters/renard-thatch/back.svg",
  13926. extra: 2428 / 2288
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Micro",
  13933. height: math.unit(3, "inches")
  13934. },
  13935. {
  13936. name: "Default",
  13937. height: math.unit(6, "feet"),
  13938. default: true
  13939. },
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(75, "feet")
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(1450, "feet"),
  13951. weight: math.unit(1.21e6, "tons"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/sekvra/front.svg",
  13955. extra: 1193/1190,
  13956. bottom: 78/1271
  13957. }
  13958. },
  13959. side: {
  13960. height: math.unit(1450, "feet"),
  13961. weight: math.unit(1.21e6, "tons"),
  13962. name: "Side",
  13963. image: {
  13964. source: "./media/characters/sekvra/side.svg",
  13965. extra: 1193/1190,
  13966. bottom: 52/1245
  13967. }
  13968. },
  13969. back: {
  13970. height: math.unit(1450, "feet"),
  13971. weight: math.unit(1.21e6, "tons"),
  13972. name: "Back",
  13973. image: {
  13974. source: "./media/characters/sekvra/back.svg",
  13975. extra: 1219/1216,
  13976. bottom: 21/1240
  13977. }
  13978. },
  13979. frontClothed: {
  13980. height: math.unit(1450, "feet"),
  13981. weight: math.unit(1.21e6, "tons"),
  13982. name: "Front (Clothed)",
  13983. image: {
  13984. source: "./media/characters/sekvra/front-clothed.svg",
  13985. extra: 1192/1189,
  13986. bottom: 79/1271
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Macro",
  13993. height: math.unit(1450, "feet"),
  13994. default: true
  13995. },
  13996. {
  13997. name: "Megamacro",
  13998. height: math.unit(15000, "feet")
  13999. },
  14000. ]
  14001. ))
  14002. characterMakers.push(() => makeCharacter(
  14003. { name: "Carmine", species: ["otter"], 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/carmine/front.svg",
  14011. extra: 1,
  14012. bottom: 0.035
  14013. }
  14014. },
  14015. frontArmor: {
  14016. height: math.unit(6, "feet"),
  14017. weight: math.unit(150, "lb"),
  14018. name: "Front (Armor)",
  14019. image: {
  14020. source: "./media/characters/carmine/front-armor.svg",
  14021. extra: 1,
  14022. bottom: 0.035
  14023. }
  14024. },
  14025. },
  14026. [
  14027. {
  14028. name: "Large",
  14029. height: math.unit(1, "mile")
  14030. },
  14031. {
  14032. name: "Huge",
  14033. height: math.unit(40, "miles"),
  14034. default: true
  14035. },
  14036. {
  14037. name: "Colossal",
  14038. height: math.unit(2500, "miles")
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14044. {
  14045. front: {
  14046. height: math.unit(6, "feet"),
  14047. weight: math.unit(150, "lb"),
  14048. name: "Front",
  14049. image: {
  14050. source: "./media/characters/elyssia/front.svg",
  14051. extra: 2201 / 2035,
  14052. bottom: 0.05
  14053. }
  14054. },
  14055. frontClothed: {
  14056. height: math.unit(6, "feet"),
  14057. weight: math.unit(150, "lb"),
  14058. name: "Front (Clothed)",
  14059. image: {
  14060. source: "./media/characters/elyssia/front-clothed.svg",
  14061. extra: 2201 / 2035,
  14062. bottom: 0.05
  14063. }
  14064. },
  14065. back: {
  14066. height: math.unit(6, "feet"),
  14067. weight: math.unit(150, "lb"),
  14068. name: "Back",
  14069. image: {
  14070. source: "./media/characters/elyssia/back.svg",
  14071. extra: 2201 / 2035,
  14072. bottom: 0.013
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Smaller",
  14079. height: math.unit(150, "feet")
  14080. },
  14081. {
  14082. name: "Standard",
  14083. height: math.unit(1400, "feet"),
  14084. default: true
  14085. },
  14086. {
  14087. name: "Distracted",
  14088. height: math.unit(15000, "feet")
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(7 + 4/12, "feet"),
  14097. weight: math.unit(690, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/geno-maxwell/front.svg",
  14101. extra: 984/856,
  14102. bottom: 87/1071
  14103. }
  14104. },
  14105. back: {
  14106. height: math.unit(7 + 4/12, "feet"),
  14107. weight: math.unit(690, "lb"),
  14108. name: "Back",
  14109. image: {
  14110. source: "./media/characters/geno-maxwell/back.svg",
  14111. extra: 981/854,
  14112. bottom: 57/1038
  14113. }
  14114. },
  14115. frontCostume: {
  14116. height: math.unit(7 + 4/12, "feet"),
  14117. weight: math.unit(690, "lb"),
  14118. name: "Front (Costume)",
  14119. image: {
  14120. source: "./media/characters/geno-maxwell/front-costume.svg",
  14121. extra: 984/856,
  14122. bottom: 87/1071
  14123. }
  14124. },
  14125. backcostume: {
  14126. height: math.unit(7 + 4/12, "feet"),
  14127. weight: math.unit(690, "lb"),
  14128. name: "Back (Costume)",
  14129. image: {
  14130. source: "./media/characters/geno-maxwell/back-costume.svg",
  14131. extra: 981/854,
  14132. bottom: 57/1038
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Micro",
  14139. height: math.unit(3, "inches")
  14140. },
  14141. {
  14142. name: "Normal",
  14143. height: math.unit(7 + 4 / 12, "feet"),
  14144. default: true
  14145. },
  14146. {
  14147. name: "Macro",
  14148. height: math.unit(220, "feet")
  14149. },
  14150. {
  14151. name: "Megamacro",
  14152. height: math.unit(11, "miles")
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(7 + 4/12, "feet"),
  14161. weight: math.unit(750, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/regena-maxwell/front.svg",
  14165. extra: 984/856,
  14166. bottom: 87/1071
  14167. }
  14168. },
  14169. back: {
  14170. height: math.unit(7 + 4/12, "feet"),
  14171. weight: math.unit(750, "lb"),
  14172. name: "Back",
  14173. image: {
  14174. source: "./media/characters/regena-maxwell/back.svg",
  14175. extra: 981/854,
  14176. bottom: 57/1038
  14177. }
  14178. },
  14179. frontCostume: {
  14180. height: math.unit(7 + 4/12, "feet"),
  14181. weight: math.unit(750, "lb"),
  14182. name: "Front (Costume)",
  14183. image: {
  14184. source: "./media/characters/regena-maxwell/front-costume.svg",
  14185. extra: 984/856,
  14186. bottom: 87/1071
  14187. }
  14188. },
  14189. backcostume: {
  14190. height: math.unit(7 + 4/12, "feet"),
  14191. weight: math.unit(750, "lb"),
  14192. name: "Back (Costume)",
  14193. image: {
  14194. source: "./media/characters/regena-maxwell/back-costume.svg",
  14195. extra: 981/854,
  14196. bottom: 57/1038
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(7 + 4 / 12, "feet"),
  14204. default: true
  14205. },
  14206. {
  14207. name: "Macro",
  14208. height: math.unit(220, "feet")
  14209. },
  14210. {
  14211. name: "Megamacro",
  14212. height: math.unit(11, "miles")
  14213. },
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14218. {
  14219. front: {
  14220. height: math.unit(6, "feet"),
  14221. weight: math.unit(150, "lb"),
  14222. name: "Front",
  14223. image: {
  14224. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14225. extra: 860 / 690,
  14226. bottom: 0.03
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(1.7, "meters"),
  14234. default: true
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(6, "feet"),
  14243. weight: math.unit(150, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/quilly/front.svg",
  14247. extra: 890 / 776
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Gigamacro",
  14254. height: math.unit(404090, "miles"),
  14255. default: true
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14261. {
  14262. front: {
  14263. height: math.unit(7 + 8 / 12, "feet"),
  14264. weight: math.unit(350, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/tempest/front.svg",
  14268. extra: 1175 / 1086,
  14269. bottom: 0.02
  14270. }
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(7 + 8 / 12, "feet"),
  14277. default: true
  14278. },
  14279. ]
  14280. ))
  14281. characterMakers.push(() => makeCharacter(
  14282. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14283. {
  14284. side: {
  14285. height: math.unit(4 + 5 / 12, "feet"),
  14286. weight: math.unit(80, "lb"),
  14287. name: "Side",
  14288. image: {
  14289. source: "./media/characters/rodger/side.svg",
  14290. extra: 1235 / 1118
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Micro",
  14297. height: math.unit(1, "inch")
  14298. },
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(4 + 5 / 12, "feet"),
  14302. default: true
  14303. },
  14304. {
  14305. name: "Macro",
  14306. height: math.unit(120, "feet")
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(150, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/danyel/front.svg",
  14319. extra: 1185 / 1123,
  14320. bottom: 0.05
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Shrunken",
  14327. height: math.unit(0.5, "mm")
  14328. },
  14329. {
  14330. name: "Micro",
  14331. height: math.unit(1, "mm"),
  14332. default: true
  14333. },
  14334. {
  14335. name: "Upsized",
  14336. height: math.unit(5 + 5 / 12, "feet")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(5 + 6 / 12, "feet"),
  14345. weight: math.unit(200, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/vivian-bijoux/front.svg",
  14349. extra: 1217/1209,
  14350. bottom: 76/1293
  14351. }
  14352. },
  14353. back: {
  14354. height: math.unit(5 + 6 / 12, "feet"),
  14355. weight: math.unit(200, "lb"),
  14356. name: "Back",
  14357. image: {
  14358. source: "./media/characters/vivian-bijoux/back.svg",
  14359. extra: 1214/1208,
  14360. bottom: 51/1265
  14361. }
  14362. },
  14363. dressed: {
  14364. height: math.unit(5 + 6 / 12, "feet"),
  14365. weight: math.unit(200, "lb"),
  14366. name: "Dressed",
  14367. image: {
  14368. source: "./media/characters/vivian-bijoux/dressed.svg",
  14369. extra: 1217/1209,
  14370. bottom: 76/1293
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Normal",
  14377. height: math.unit(5 + 6 / 12, "feet"),
  14378. default: true
  14379. },
  14380. {
  14381. name: "Bad Dream",
  14382. height: math.unit(500, "feet")
  14383. },
  14384. {
  14385. name: "Nightmare",
  14386. height: math.unit(500, "miles")
  14387. },
  14388. ]
  14389. ))
  14390. characterMakers.push(() => makeCharacter(
  14391. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14392. {
  14393. front: {
  14394. height: math.unit(6 + 1 / 12, "feet"),
  14395. weight: math.unit(260, "lb"),
  14396. name: "Front",
  14397. image: {
  14398. source: "./media/characters/zeta/front.svg",
  14399. extra: 1968 / 1889,
  14400. bottom: 0.06
  14401. }
  14402. },
  14403. back: {
  14404. height: math.unit(6 + 1 / 12, "feet"),
  14405. weight: math.unit(260, "lb"),
  14406. name: "Back",
  14407. image: {
  14408. source: "./media/characters/zeta/back.svg",
  14409. extra: 1944 / 1858,
  14410. bottom: 0.03
  14411. }
  14412. },
  14413. hand: {
  14414. height: math.unit(1.112, "feet"),
  14415. name: "Hand",
  14416. image: {
  14417. source: "./media/characters/zeta/hand.svg"
  14418. }
  14419. },
  14420. foot: {
  14421. height: math.unit(1.48, "feet"),
  14422. name: "Foot",
  14423. image: {
  14424. source: "./media/characters/zeta/foot.svg"
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Micro",
  14431. height: math.unit(6, "inches")
  14432. },
  14433. {
  14434. name: "Normal",
  14435. height: math.unit(6 + 1 / 12, "feet"),
  14436. default: true
  14437. },
  14438. {
  14439. name: "Macro",
  14440. height: math.unit(20, "feet")
  14441. },
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(6, "feet"),
  14449. weight: math.unit(150, "lb"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/jamie-larsen/front.svg",
  14453. extra: 962 / 933,
  14454. bottom: 0.02
  14455. }
  14456. },
  14457. back: {
  14458. height: math.unit(6, "feet"),
  14459. weight: math.unit(150, "lb"),
  14460. name: "Back",
  14461. image: {
  14462. source: "./media/characters/jamie-larsen/back.svg",
  14463. extra: 997 / 946
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Macro",
  14470. height: math.unit(28 + 7 / 12, "feet"),
  14471. default: true
  14472. },
  14473. {
  14474. name: "Macro+",
  14475. height: math.unit(180, "feet")
  14476. },
  14477. {
  14478. name: "Megamacro",
  14479. height: math.unit(10, "miles")
  14480. },
  14481. {
  14482. name: "Gigamacro",
  14483. height: math.unit(200000, "miles")
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14489. {
  14490. front: {
  14491. height: math.unit(6, "feet"),
  14492. weight: math.unit(120, "lb"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/vance/front.svg",
  14496. extra: 1980 / 1890,
  14497. bottom: 0.09
  14498. }
  14499. },
  14500. back: {
  14501. height: math.unit(6, "feet"),
  14502. weight: math.unit(120, "lb"),
  14503. name: "Back",
  14504. image: {
  14505. source: "./media/characters/vance/back.svg",
  14506. extra: 2081 / 1994,
  14507. bottom: 0.014
  14508. }
  14509. },
  14510. hand: {
  14511. height: math.unit(0.88, "feet"),
  14512. name: "Hand",
  14513. image: {
  14514. source: "./media/characters/vance/hand.svg"
  14515. }
  14516. },
  14517. foot: {
  14518. height: math.unit(0.64, "feet"),
  14519. name: "Foot",
  14520. image: {
  14521. source: "./media/characters/vance/foot.svg"
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Small",
  14528. height: math.unit(90, "feet"),
  14529. default: true
  14530. },
  14531. {
  14532. name: "Macro",
  14533. height: math.unit(100, "meters")
  14534. },
  14535. {
  14536. name: "Megamacro",
  14537. height: math.unit(15, "miles")
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14543. {
  14544. front: {
  14545. height: math.unit(6, "feet"),
  14546. weight: math.unit(180, "lb"),
  14547. name: "Front",
  14548. image: {
  14549. source: "./media/characters/xochitl/front.svg",
  14550. extra: 2297 / 2261,
  14551. bottom: 0.065
  14552. }
  14553. },
  14554. back: {
  14555. height: math.unit(6, "feet"),
  14556. weight: math.unit(180, "lb"),
  14557. name: "Back",
  14558. image: {
  14559. source: "./media/characters/xochitl/back.svg",
  14560. extra: 2386 / 2354,
  14561. bottom: 0.01
  14562. }
  14563. },
  14564. foot: {
  14565. height: math.unit(6 / 5 * 1.15, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Foot",
  14568. image: {
  14569. source: "./media/characters/xochitl/foot.svg"
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Macro",
  14576. height: math.unit(80, "feet")
  14577. },
  14578. {
  14579. name: "Macro+",
  14580. height: math.unit(400, "feet"),
  14581. default: true
  14582. },
  14583. {
  14584. name: "Gigamacro",
  14585. height: math.unit(80000, "miles")
  14586. },
  14587. {
  14588. name: "Gigamacro+",
  14589. height: math.unit(400000, "miles")
  14590. },
  14591. {
  14592. name: "Teramacro",
  14593. height: math.unit(300, "AU")
  14594. },
  14595. ]
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14599. {
  14600. front: {
  14601. height: math.unit(6, "feet"),
  14602. weight: math.unit(150, "lb"),
  14603. name: "Front",
  14604. image: {
  14605. source: "./media/characters/vincent/front.svg",
  14606. extra: 1130 / 1080,
  14607. bottom: 0.055
  14608. }
  14609. },
  14610. beak: {
  14611. height: math.unit(6 * 0.1, "feet"),
  14612. name: "Beak",
  14613. image: {
  14614. source: "./media/characters/vincent/beak.svg"
  14615. }
  14616. },
  14617. hand: {
  14618. height: math.unit(6 * 0.85, "feet"),
  14619. weight: math.unit(150, "lb"),
  14620. name: "Hand",
  14621. image: {
  14622. source: "./media/characters/vincent/hand.svg"
  14623. }
  14624. },
  14625. foot: {
  14626. height: math.unit(6 * 0.19, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Foot",
  14629. image: {
  14630. source: "./media/characters/vincent/foot.svg"
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Base",
  14637. height: math.unit(6 + 5 / 12, "feet"),
  14638. default: true
  14639. },
  14640. {
  14641. name: "Macro",
  14642. height: math.unit(300, "feet")
  14643. },
  14644. {
  14645. name: "Megamacro",
  14646. height: math.unit(2, "miles")
  14647. },
  14648. {
  14649. name: "Gigamacro",
  14650. height: math.unit(1000, "miles")
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(2, "meters"),
  14659. weight: math.unit(500, "kg"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/coatl/front.svg",
  14663. extra: 3948 / 3500,
  14664. bottom: 0.082
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(4, "meters")
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(100, "meters"),
  14676. default: true
  14677. },
  14678. {
  14679. name: "Macro+",
  14680. height: math.unit(300, "meters")
  14681. },
  14682. {
  14683. name: "Megamacro",
  14684. height: math.unit(3, "gigameters")
  14685. },
  14686. {
  14687. name: "Megamacro+",
  14688. height: math.unit(300, "terameters")
  14689. },
  14690. {
  14691. name: "Megamacro++",
  14692. height: math.unit(3, "lightyears")
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14698. {
  14699. front: {
  14700. height: math.unit(6, "feet"),
  14701. weight: math.unit(50, "kg"),
  14702. name: "front",
  14703. image: {
  14704. source: "./media/characters/shiroryu/front.svg",
  14705. extra: 1990 / 1935
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Mortal Mingling",
  14712. height: math.unit(3, "meters")
  14713. },
  14714. {
  14715. name: "Kaiju-ish",
  14716. height: math.unit(250, "meters")
  14717. },
  14718. {
  14719. name: "Somewhat Godly",
  14720. height: math.unit(400, "km"),
  14721. default: true
  14722. },
  14723. {
  14724. name: "Planetary",
  14725. height: math.unit(300, "megameters")
  14726. },
  14727. {
  14728. name: "Galaxy-dwarfing",
  14729. height: math.unit(450, "kiloparsecs")
  14730. },
  14731. {
  14732. name: "Universe Eater",
  14733. height: math.unit(150, "gigaparsecs")
  14734. },
  14735. {
  14736. name: "Almost Immeasurable",
  14737. height: math.unit(1.3e266, "yottaparsecs")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(6, "feet"),
  14746. weight: math.unit(150, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/umeko/front.svg",
  14750. extra: 1,
  14751. bottom: 0.019
  14752. }
  14753. },
  14754. frontArmored: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(150, "lb"),
  14757. name: "Front (Armored)",
  14758. image: {
  14759. source: "./media/characters/umeko/front-armored.svg",
  14760. extra: 1,
  14761. bottom: 0.021
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(220, "feet"),
  14769. default: true
  14770. },
  14771. {
  14772. name: "Guardian Dragon",
  14773. height: math.unit(50, "miles")
  14774. },
  14775. {
  14776. name: "Cosmic",
  14777. height: math.unit(800000, "miles")
  14778. },
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14783. {
  14784. front: {
  14785. height: math.unit(6, "feet"),
  14786. weight: math.unit(150, "lb"),
  14787. name: "Front",
  14788. image: {
  14789. source: "./media/characters/cassidy/front.svg",
  14790. extra: 810/808,
  14791. bottom: 41/851
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Canon Height",
  14798. height: math.unit(120, "feet"),
  14799. default: true
  14800. },
  14801. {
  14802. name: "Macro+",
  14803. height: math.unit(400, "feet")
  14804. },
  14805. {
  14806. name: "Macro++",
  14807. height: math.unit(4000, "feet")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(3, "miles")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6, "feet"),
  14820. weight: math.unit(150, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/isaac/front.svg",
  14824. extra: 896 / 815,
  14825. bottom: 0.11
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Human Size",
  14832. height: math.unit(8, "feet"),
  14833. default: true
  14834. },
  14835. {
  14836. name: "Macro",
  14837. height: math.unit(400, "feet")
  14838. },
  14839. {
  14840. name: "Megamacro",
  14841. height: math.unit(50, "miles")
  14842. },
  14843. {
  14844. name: "Canon Height",
  14845. height: math.unit(200, "AU")
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14851. {
  14852. front: {
  14853. height: math.unit(6, "feet"),
  14854. weight: math.unit(72, "kg"),
  14855. name: "Front",
  14856. image: {
  14857. source: "./media/characters/sleekit/front.svg",
  14858. extra: 4693 / 4487,
  14859. bottom: 0.012
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Minimum Height",
  14866. height: math.unit(10, "meters")
  14867. },
  14868. {
  14869. name: "Smaller",
  14870. height: math.unit(25, "meters")
  14871. },
  14872. {
  14873. name: "Larger",
  14874. height: math.unit(38, "meters"),
  14875. default: true
  14876. },
  14877. {
  14878. name: "Maximum height",
  14879. height: math.unit(100, "meters")
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14885. {
  14886. front: {
  14887. height: math.unit(6, "feet"),
  14888. weight: math.unit(150, "lb"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/nillia/front.svg",
  14892. extra: 2195 / 2037,
  14893. bottom: 0.005
  14894. }
  14895. },
  14896. back: {
  14897. height: math.unit(6, "feet"),
  14898. weight: math.unit(150, "lb"),
  14899. name: "Back",
  14900. image: {
  14901. source: "./media/characters/nillia/back.svg",
  14902. extra: 2195 / 2037,
  14903. bottom: 0.005
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Canon Height",
  14910. height: math.unit(489, "feet"),
  14911. default: true
  14912. }
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/mesmyriza/front.svg",
  14924. extra: 2067 / 1784,
  14925. bottom: 0.035
  14926. }
  14927. },
  14928. foot: {
  14929. height: math.unit(6 / (250 / 35), "feet"),
  14930. name: "Foot",
  14931. image: {
  14932. source: "./media/characters/mesmyriza/foot.svg"
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Macro",
  14939. height: math.unit(457, "meters"),
  14940. default: true
  14941. },
  14942. {
  14943. name: "Megamacro",
  14944. height: math.unit(8, "megameters")
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14950. {
  14951. front: {
  14952. height: math.unit(6, "feet"),
  14953. weight: math.unit(250, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/saudade/front.svg",
  14957. extra: 1172 / 1139,
  14958. bottom: 0.035
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Micro",
  14965. height: math.unit(3, "inches")
  14966. },
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(6, "feet"),
  14970. default: true
  14971. },
  14972. {
  14973. name: "Macro",
  14974. height: math.unit(50, "feet")
  14975. },
  14976. {
  14977. name: "Megamacro",
  14978. height: math.unit(2800, "feet")
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14984. {
  14985. front: {
  14986. height: math.unit(5 + 4 / 12, "feet"),
  14987. weight: math.unit(100, "lb"),
  14988. name: "Front",
  14989. image: {
  14990. source: "./media/characters/keireer/front.svg",
  14991. extra: 716 / 666,
  14992. bottom: 0.05
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(5 + 4 / 12, "feet"),
  15000. default: true
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15006. {
  15007. front: {
  15008. height: math.unit(6, "feet"),
  15009. weight: math.unit(90, "kg"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/mirja/front.svg",
  15013. extra: 1789 / 1683,
  15014. bottom: 0.05
  15015. }
  15016. },
  15017. frontDressed: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(90, "lb"),
  15020. name: "Front (Dressed)",
  15021. image: {
  15022. source: "./media/characters/mirja/front-dressed.svg",
  15023. extra: 1789 / 1683,
  15024. bottom: 0.05
  15025. }
  15026. },
  15027. back: {
  15028. height: math.unit(6, "feet"),
  15029. weight: math.unit(90, "lb"),
  15030. name: "Back",
  15031. image: {
  15032. source: "./media/characters/mirja/back.svg",
  15033. extra: 953 / 917,
  15034. bottom: 0.017
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "\"Incognito\"",
  15041. height: math.unit(3, "meters")
  15042. },
  15043. {
  15044. name: "Strolling Size",
  15045. height: math.unit(15, "km")
  15046. },
  15047. {
  15048. name: "Larger Strolling Size",
  15049. height: math.unit(400, "km")
  15050. },
  15051. {
  15052. name: "Preferred Size",
  15053. height: math.unit(5000, "km")
  15054. },
  15055. {
  15056. name: "True Size",
  15057. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(15, "feet"),
  15067. weight: math.unit(880, "kg"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/nightraver/front.svg",
  15071. extra: 2444 / 2160,
  15072. bottom: 0.027
  15073. }
  15074. },
  15075. back: {
  15076. height: math.unit(15, "feet"),
  15077. weight: math.unit(880, "kg"),
  15078. name: "Back",
  15079. image: {
  15080. source: "./media/characters/nightraver/back.svg",
  15081. extra: 2309 / 2180,
  15082. bottom: 0.005
  15083. }
  15084. },
  15085. sole: {
  15086. height: math.unit(2.878, "feet"),
  15087. name: "Sole",
  15088. image: {
  15089. source: "./media/characters/nightraver/sole.svg"
  15090. }
  15091. },
  15092. foot: {
  15093. height: math.unit(2.285, "feet"),
  15094. name: "Foot",
  15095. image: {
  15096. source: "./media/characters/nightraver/foot.svg"
  15097. }
  15098. },
  15099. maw: {
  15100. height: math.unit(2.67, "feet"),
  15101. name: "Maw",
  15102. image: {
  15103. source: "./media/characters/nightraver/maw.svg"
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Micro",
  15110. height: math.unit(1, "cm")
  15111. },
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(15, "feet"),
  15115. default: true
  15116. },
  15117. {
  15118. name: "Macro",
  15119. height: math.unit(300, "feet")
  15120. },
  15121. {
  15122. name: "Megamacro",
  15123. height: math.unit(300, "miles")
  15124. },
  15125. {
  15126. name: "Gigamacro",
  15127. height: math.unit(10000, "miles")
  15128. },
  15129. ]
  15130. ))
  15131. characterMakers.push(() => makeCharacter(
  15132. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15133. {
  15134. side: {
  15135. height: math.unit(2, "inches"),
  15136. weight: math.unit(5, "grams"),
  15137. name: "Side",
  15138. image: {
  15139. source: "./media/characters/arc/side.svg"
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Micro",
  15146. height: math.unit(2, "inches"),
  15147. default: true
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15153. {
  15154. front: {
  15155. height: math.unit(1.1938, "meters"),
  15156. weight: math.unit(54, "kg"),
  15157. name: "Front",
  15158. image: {
  15159. source: "./media/characters/nebula-shahar/front.svg",
  15160. extra: 1642 / 1436,
  15161. bottom: 0.06
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Megamicro",
  15168. height: math.unit(0.3, "mm")
  15169. },
  15170. {
  15171. name: "Micro",
  15172. height: math.unit(3, "cm")
  15173. },
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(138, "cm"),
  15177. default: true
  15178. },
  15179. {
  15180. name: "Macro",
  15181. height: math.unit(30, "m")
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(5.24, "feet"),
  15190. weight: math.unit(150, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/shayla/front.svg",
  15194. extra: 1512 / 1414,
  15195. bottom: 0.01
  15196. }
  15197. },
  15198. back: {
  15199. height: math.unit(5.24, "feet"),
  15200. weight: math.unit(150, "lb"),
  15201. name: "Back",
  15202. image: {
  15203. source: "./media/characters/shayla/back.svg",
  15204. extra: 1512 / 1414
  15205. }
  15206. },
  15207. hand: {
  15208. height: math.unit(0.7781496062992126, "feet"),
  15209. name: "Hand",
  15210. image: {
  15211. source: "./media/characters/shayla/hand.svg"
  15212. }
  15213. },
  15214. foot: {
  15215. height: math.unit(1.4206036745406823, "feet"),
  15216. name: "Foot",
  15217. image: {
  15218. source: "./media/characters/shayla/foot.svg"
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Micro",
  15225. height: math.unit(0.32, "feet")
  15226. },
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(5.24, "feet"),
  15230. default: true
  15231. },
  15232. {
  15233. name: "Macro",
  15234. height: math.unit(492.12, "feet")
  15235. },
  15236. {
  15237. name: "Megamacro",
  15238. height: math.unit(186.41, "miles")
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15244. {
  15245. front: {
  15246. height: math.unit(2.2, "m"),
  15247. weight: math.unit(120, "kg"),
  15248. name: "Front",
  15249. image: {
  15250. source: "./media/characters/pia-jr/front.svg",
  15251. extra: 1000 / 970,
  15252. bottom: 0.035
  15253. }
  15254. },
  15255. hand: {
  15256. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15257. name: "Hand",
  15258. image: {
  15259. source: "./media/characters/pia-jr/hand.svg"
  15260. }
  15261. },
  15262. paw: {
  15263. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15264. name: "Paw",
  15265. image: {
  15266. source: "./media/characters/pia-jr/paw.svg"
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Micro",
  15273. height: math.unit(1.2, "cm")
  15274. },
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(2.2, "m"),
  15278. default: true
  15279. },
  15280. {
  15281. name: "Macro",
  15282. height: math.unit(180, "m")
  15283. },
  15284. {
  15285. name: "Megamacro",
  15286. height: math.unit(420, "km")
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15292. {
  15293. front: {
  15294. height: math.unit(2, "m"),
  15295. weight: math.unit(115, "kg"),
  15296. name: "Front",
  15297. image: {
  15298. source: "./media/characters/pia-sr/front.svg",
  15299. extra: 760 / 730,
  15300. bottom: 0.015
  15301. }
  15302. },
  15303. back: {
  15304. height: math.unit(2, "m"),
  15305. weight: math.unit(115, "kg"),
  15306. name: "Back",
  15307. image: {
  15308. source: "./media/characters/pia-sr/back.svg",
  15309. extra: 760 / 730,
  15310. bottom: 0.01
  15311. }
  15312. },
  15313. hand: {
  15314. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15315. name: "Hand",
  15316. image: {
  15317. source: "./media/characters/pia-sr/hand.svg"
  15318. }
  15319. },
  15320. foot: {
  15321. height: math.unit(1.83, "feet"),
  15322. name: "Foot",
  15323. image: {
  15324. source: "./media/characters/pia-sr/foot.svg"
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Micro",
  15331. height: math.unit(88, "mm")
  15332. },
  15333. {
  15334. name: "Normal",
  15335. height: math.unit(2, "m"),
  15336. default: true
  15337. },
  15338. {
  15339. name: "Macro",
  15340. height: math.unit(200, "m")
  15341. },
  15342. {
  15343. name: "Megamacro",
  15344. height: math.unit(420, "km")
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(8 + 2 / 12, "feet"),
  15353. weight: math.unit(300, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/kibibyte/front.svg",
  15357. extra: 2221 / 2098,
  15358. bottom: 0.04
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(8 + 2 / 12, "feet"),
  15366. default: true
  15367. },
  15368. {
  15369. name: "Socialable Macro",
  15370. height: math.unit(50, "feet")
  15371. },
  15372. {
  15373. name: "Macro",
  15374. height: math.unit(300, "feet")
  15375. },
  15376. {
  15377. name: "Megamacro",
  15378. height: math.unit(500, "miles")
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(6, "feet"),
  15387. weight: math.unit(150, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/felix/front.svg",
  15391. extra: 762 / 722,
  15392. bottom: 0.02
  15393. }
  15394. },
  15395. frontClothed: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Front (Clothed)",
  15399. image: {
  15400. source: "./media/characters/felix/front-clothed.svg",
  15401. extra: 762 / 722,
  15402. bottom: 0.02
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(6 + 8 / 12, "feet"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Macro",
  15414. height: math.unit(2600, "feet")
  15415. },
  15416. {
  15417. name: "Megamacro",
  15418. height: math.unit(450, "miles")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6 + 1 / 12, "feet"),
  15427. weight: math.unit(250, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/tobo/front.svg",
  15431. extra: 608 / 586,
  15432. bottom: 0.023
  15433. }
  15434. },
  15435. back: {
  15436. height: math.unit(6 + 1 / 12, "feet"),
  15437. weight: math.unit(250, "lb"),
  15438. name: "Back",
  15439. image: {
  15440. source: "./media/characters/tobo/back.svg",
  15441. extra: 608 / 586
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Nano",
  15448. height: math.unit(2, "nm")
  15449. },
  15450. {
  15451. name: "Megamicro",
  15452. height: math.unit(0.1, "mm")
  15453. },
  15454. {
  15455. name: "Micro",
  15456. height: math.unit(1, "inch"),
  15457. default: true
  15458. },
  15459. {
  15460. name: "Human-sized",
  15461. height: math.unit(6 + 1 / 12, "feet")
  15462. },
  15463. {
  15464. name: "Macro",
  15465. height: math.unit(250, "feet")
  15466. },
  15467. {
  15468. name: "Megamacro",
  15469. height: math.unit(75, "miles")
  15470. },
  15471. {
  15472. name: "Texas-sized",
  15473. height: math.unit(750, "miles")
  15474. },
  15475. {
  15476. name: "Teramacro",
  15477. height: math.unit(50000, "miles")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(6, "feet"),
  15486. weight: math.unit(269, "lb"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/danny-kapowsky/front.svg",
  15490. extra: 766 / 736,
  15491. bottom: 0.044
  15492. }
  15493. },
  15494. back: {
  15495. height: math.unit(6, "feet"),
  15496. weight: math.unit(269, "lb"),
  15497. name: "Back",
  15498. image: {
  15499. source: "./media/characters/danny-kapowsky/back.svg",
  15500. extra: 797 / 760,
  15501. bottom: 0.025
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(150, "feet"),
  15509. default: true
  15510. },
  15511. {
  15512. name: "Macro+",
  15513. height: math.unit(200, "feet")
  15514. },
  15515. {
  15516. name: "Macro++",
  15517. height: math.unit(300, "feet")
  15518. },
  15519. {
  15520. name: "Macro+++",
  15521. height: math.unit(400, "feet")
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15527. {
  15528. side: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(170, "lb"),
  15531. name: "Side",
  15532. image: {
  15533. source: "./media/characters/finn/side.svg",
  15534. extra: 1953 / 1807,
  15535. bottom: 0.057
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Megamacro",
  15542. height: math.unit(14445, "feet"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(5 + 6 / 12, "feet"),
  15552. weight: math.unit(125, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/roy/front.svg",
  15556. extra: 1,
  15557. bottom: 0.11
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Micro",
  15564. height: math.unit(3, "inches"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(5 + 6 / 12, "feet")
  15570. },
  15571. {
  15572. name: "Lesser Macro",
  15573. height: math.unit(60, "feet")
  15574. },
  15575. {
  15576. name: "Greater Macro",
  15577. height: math.unit(120, "feet")
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15583. {
  15584. front: {
  15585. height: math.unit(6, "feet"),
  15586. weight: math.unit(100, "lb"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/aevsivs/front.svg",
  15590. extra: 1,
  15591. bottom: 0.03
  15592. }
  15593. },
  15594. back: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(100, "lb"),
  15597. name: "Back",
  15598. image: {
  15599. source: "./media/characters/aevsivs/back.svg"
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Micro",
  15606. height: math.unit(2, "inches"),
  15607. default: true
  15608. },
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(5, "feet")
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15617. {
  15618. front: {
  15619. height: math.unit(5 + 7 / 12, "feet"),
  15620. weight: math.unit(159, "lb"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/hildegard/front.svg",
  15624. extra: 289 / 269,
  15625. bottom: 7.63 / 297.8
  15626. }
  15627. },
  15628. back: {
  15629. height: math.unit(5 + 7 / 12, "feet"),
  15630. weight: math.unit(159, "lb"),
  15631. name: "Back",
  15632. image: {
  15633. source: "./media/characters/hildegard/back.svg",
  15634. extra: 280 / 260,
  15635. bottom: 2.3 / 282
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(5 + 7 / 12, "feet"),
  15643. default: true
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15649. {
  15650. bernard: {
  15651. height: math.unit(2 + 7 / 12, "feet"),
  15652. weight: math.unit(66, "lb"),
  15653. name: "Bernard",
  15654. rename: true,
  15655. image: {
  15656. source: "./media/characters/bernard-wilder/bernard.svg",
  15657. extra: 192 / 128,
  15658. bottom: 0.05
  15659. }
  15660. },
  15661. wilder: {
  15662. height: math.unit(5 + 8 / 12, "feet"),
  15663. weight: math.unit(143, "lb"),
  15664. name: "Wilder",
  15665. rename: true,
  15666. image: {
  15667. source: "./media/characters/bernard-wilder/wilder.svg",
  15668. extra: 361 / 312,
  15669. bottom: 0.02
  15670. }
  15671. },
  15672. },
  15673. [
  15674. {
  15675. name: "Normal",
  15676. height: math.unit(2 + 7 / 12, "feet"),
  15677. default: true
  15678. },
  15679. ]
  15680. ))
  15681. characterMakers.push(() => makeCharacter(
  15682. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15683. {
  15684. anthro: {
  15685. height: math.unit(6 + 1 / 12, "feet"),
  15686. weight: math.unit(155, "lb"),
  15687. name: "Anthro",
  15688. image: {
  15689. source: "./media/characters/hearth/anthro.svg",
  15690. extra: 1178/1136,
  15691. bottom: 28/1206
  15692. }
  15693. },
  15694. feral: {
  15695. height: math.unit(3.78, "feet"),
  15696. weight: math.unit(35, "kg"),
  15697. name: "Feral",
  15698. image: {
  15699. source: "./media/characters/hearth/feral.svg",
  15700. extra: 153 / 135,
  15701. bottom: 0.03
  15702. }
  15703. },
  15704. },
  15705. [
  15706. {
  15707. name: "Normal",
  15708. height: math.unit(6 + 1 / 12, "feet"),
  15709. default: true
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15715. {
  15716. front: {
  15717. height: math.unit(6, "feet"),
  15718. weight: math.unit(182, "lb"),
  15719. name: "Front",
  15720. image: {
  15721. source: "./media/characters/ingrid/front.svg",
  15722. extra: 294 / 268,
  15723. bottom: 0.027
  15724. }
  15725. },
  15726. },
  15727. [
  15728. {
  15729. name: "Normal",
  15730. height: math.unit(6, "feet"),
  15731. default: true
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15737. {
  15738. eevee: {
  15739. height: math.unit(2 + 10 / 12, "feet"),
  15740. weight: math.unit(86, "lb"),
  15741. name: "Malgam",
  15742. image: {
  15743. source: "./media/characters/malgam/eevee.svg",
  15744. extra: 952/784,
  15745. bottom: 38/990
  15746. }
  15747. },
  15748. sylveon: {
  15749. height: math.unit(4, "feet"),
  15750. weight: math.unit(101, "lb"),
  15751. name: "Future Malgam",
  15752. rename: true,
  15753. image: {
  15754. source: "./media/characters/malgam/sylveon.svg",
  15755. extra: 371 / 325,
  15756. bottom: 0.015
  15757. }
  15758. },
  15759. gigantamax: {
  15760. height: math.unit(50, "feet"),
  15761. name: "Gigantamax Malgam",
  15762. rename: true,
  15763. image: {
  15764. source: "./media/characters/malgam/gigantamax.svg"
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(2 + 10 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(5 + 11 / 12, "feet"),
  15781. weight: math.unit(188, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/fleur/front.svg",
  15785. extra: 309 / 283,
  15786. bottom: 0.007
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(5 + 11 / 12, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(5 + 4 / 12, "feet"),
  15803. weight: math.unit(122, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/jude/front.svg",
  15807. extra: 288 / 273,
  15808. bottom: 0.03
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(5 + 4 / 12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(5 + 11 / 12, "feet"),
  15825. weight: math.unit(190, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/seara/front.svg",
  15829. extra: 1,
  15830. bottom: 0.05
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(5 + 11 / 12, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(16 + 5 / 12, "feet"),
  15847. weight: math.unit(524, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/caspian-lugia/front.svg",
  15851. extra: 1,
  15852. bottom: 0.04
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(16 + 5 / 12, "feet"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(5 + 7 / 12, "feet"),
  15869. weight: math.unit(170, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/mika/front.svg",
  15873. extra: 1,
  15874. bottom: 0.016
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(5 + 7 / 12, "feet"),
  15882. default: true
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(6 + 2 / 12, "feet"),
  15891. weight: math.unit(268, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/sol/front.svg",
  15895. extra: 247 / 231,
  15896. bottom: 0.05
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(6 + 2 / 12, "feet"),
  15904. default: true
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15910. {
  15911. buizel: {
  15912. height: math.unit(2 + 5 / 12, "feet"),
  15913. weight: math.unit(87, "lb"),
  15914. name: "Front",
  15915. image: {
  15916. source: "./media/characters/umiko/buizel.svg",
  15917. extra: 172 / 157,
  15918. bottom: 0.01
  15919. },
  15920. form: "buizel",
  15921. default: true
  15922. },
  15923. floatzel: {
  15924. height: math.unit(5 + 9 / 12, "feet"),
  15925. weight: math.unit(250, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/umiko/floatzel.svg",
  15929. extra: 1076/1006,
  15930. bottom: 15/1091
  15931. },
  15932. form: "floatzel",
  15933. default: true
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(2 + 5 / 12, "feet"),
  15940. form: "buizel",
  15941. default: true
  15942. },
  15943. {
  15944. name: "Normal",
  15945. height: math.unit(5 + 9 / 12, "feet"),
  15946. form: "floatzel",
  15947. default: true
  15948. },
  15949. ],
  15950. {
  15951. "buizel": {
  15952. name: "Buizel"
  15953. },
  15954. "floatzel": {
  15955. name: "Floatzel",
  15956. default: true
  15957. }
  15958. }
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(6 + 2 / 12, "feet"),
  15965. weight: math.unit(146, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/iliac/front.svg",
  15969. extra: 389 / 365,
  15970. bottom: 0.035
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(6 + 2 / 12, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(6, "feet"),
  15987. weight: math.unit(170, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/topaz/front.svg",
  15991. extra: 317 / 303,
  15992. bottom: 0.055
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(6, "feet"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(5 + 11 / 12, "feet"),
  16009. weight: math.unit(144, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/gabriel/front.svg",
  16013. extra: 285 / 262,
  16014. bottom: 0.004
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(5 + 11 / 12, "feet"),
  16022. default: true
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16028. {
  16029. side: {
  16030. height: math.unit(6 + 5 / 12, "feet"),
  16031. weight: math.unit(300, "lb"),
  16032. name: "Side",
  16033. image: {
  16034. source: "./media/characters/tempest-suicune/side.svg",
  16035. extra: 195 / 154,
  16036. bottom: 0.04
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(6 + 5 / 12, "feet"),
  16044. default: true
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(7 + 2 / 12, "feet"),
  16053. weight: math.unit(322, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/vulcan/front.svg",
  16057. extra: 154 / 147,
  16058. bottom: 0.04
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Normal",
  16065. height: math.unit(7 + 2 / 12, "feet"),
  16066. default: true
  16067. },
  16068. ]
  16069. ))
  16070. characterMakers.push(() => makeCharacter(
  16071. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16072. {
  16073. front: {
  16074. height: math.unit(5 + 10 / 12, "feet"),
  16075. weight: math.unit(264, "lb"),
  16076. name: "Front",
  16077. image: {
  16078. source: "./media/characters/gault/front.svg",
  16079. extra: 161 / 140,
  16080. bottom: 0.028
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(5 + 10 / 12, "feet"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(6, "feet"),
  16097. weight: math.unit(150, "lb"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/shard/front.svg",
  16101. extra: 273 / 238,
  16102. bottom: 0.02
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Normal",
  16109. height: math.unit(3 + 6 / 12, "feet"),
  16110. default: true
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(5 + 11 / 12, "feet"),
  16119. weight: math.unit(146, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/ashe/front.svg",
  16123. extra: 400 / 373,
  16124. bottom: 0.01
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(5 + 11 / 12, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(5 + 5 / 12, "feet"),
  16141. weight: math.unit(135, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/beatrix/front.svg",
  16145. extra: 392 / 379,
  16146. bottom: 0.01
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(6, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(6 + 2/12, "feet"),
  16163. weight: math.unit(135, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/ignatius/front.svg",
  16167. extra: 1380/1259,
  16168. bottom: 27/1407
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(6 + 2/12, "feet"),
  16176. default: true
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(6 + 2 / 12, "feet"),
  16185. weight: math.unit(138, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/mei-li/front.svg",
  16189. extra: 237 / 229,
  16190. bottom: 0.03
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(6 + 2 / 12, "feet"),
  16198. default: true
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(2 + 4 / 12, "feet"),
  16207. weight: math.unit(62, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/puru/front.svg",
  16211. extra: 206 / 149,
  16212. bottom: 0.06
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(2 + 4 / 12, "feet"),
  16220. default: true
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16226. {
  16227. anthro: {
  16228. height: math.unit(5 + 8/12, "feet"),
  16229. weight: math.unit(200, "lb"),
  16230. energyNeed: math.unit(2000, "kcal"),
  16231. name: "Anthro",
  16232. image: {
  16233. source: "./media/characters/kee/anthro.svg",
  16234. extra: 3251/3184,
  16235. bottom: 250/3501
  16236. }
  16237. },
  16238. taur: {
  16239. height: math.unit(11, "feet"),
  16240. weight: math.unit(500, "lb"),
  16241. energyNeed: math.unit(5000, "kcal"),
  16242. name: "Taur",
  16243. image: {
  16244. source: "./media/characters/kee/taur.svg",
  16245. extra: 1362/1320,
  16246. bottom: 83/1445
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(5 + 8/12, "feet"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Macro",
  16258. height: math.unit(35, "feet")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16264. {
  16265. anthro: {
  16266. height: math.unit(7, "feet"),
  16267. weight: math.unit(190, "lb"),
  16268. name: "Anthro",
  16269. image: {
  16270. source: "./media/characters/cobalt-dracha/anthro.svg",
  16271. extra: 231 / 225,
  16272. bottom: 0.04
  16273. }
  16274. },
  16275. feral: {
  16276. height: math.unit(9 + 7 / 12, "feet"),
  16277. weight: math.unit(294, "lb"),
  16278. name: "Feral",
  16279. image: {
  16280. source: "./media/characters/cobalt-dracha/feral.svg",
  16281. extra: 692 / 633,
  16282. bottom: 0.05
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(7, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16296. {
  16297. fallen: {
  16298. height: math.unit(11 + 8 / 12, "feet"),
  16299. weight: math.unit(485, "lb"),
  16300. name: "Java (Fallen)",
  16301. rename: true,
  16302. image: {
  16303. source: "./media/characters/java/fallen.svg",
  16304. extra: 226 / 208,
  16305. bottom: 0.005
  16306. }
  16307. },
  16308. godkin: {
  16309. height: math.unit(10 + 6 / 12, "feet"),
  16310. weight: math.unit(328, "lb"),
  16311. name: "Java (Godkin)",
  16312. rename: true,
  16313. image: {
  16314. source: "./media/characters/java/godkin.svg",
  16315. extra: 1104/1068,
  16316. bottom: 36/1140
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(11 + 8 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(5 + 9 / 12, "feet"),
  16333. weight: math.unit(170, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/purna/front.svg",
  16337. extra: 239 / 229,
  16338. bottom: 0.01
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(5 + 9 / 12, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(5 + 9 / 12, "feet"),
  16355. weight: math.unit(142, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/kuva/front.svg",
  16359. extra: 281 / 271,
  16360. bottom: 0.006
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(5 + 9 / 12, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16374. {
  16375. anthro: {
  16376. height: math.unit(9 + 2 / 12, "feet"),
  16377. weight: math.unit(270, "lb"),
  16378. name: "Anthro",
  16379. image: {
  16380. source: "./media/characters/embra/anthro.svg",
  16381. extra: 200 / 187,
  16382. bottom: 0.02
  16383. }
  16384. },
  16385. feral: {
  16386. height: math.unit(18 + 8 / 12, "feet"),
  16387. weight: math.unit(576, "lb"),
  16388. name: "Feral",
  16389. image: {
  16390. source: "./media/characters/embra/feral.svg",
  16391. extra: 152 / 137,
  16392. bottom: 0.037
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(9 + 2 / 12, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16406. {
  16407. anthro: {
  16408. height: math.unit(10 + 9 / 12, "feet"),
  16409. weight: math.unit(224, "lb"),
  16410. name: "Anthro",
  16411. image: {
  16412. source: "./media/characters/grottos/anthro.svg",
  16413. extra: 350 / 332,
  16414. bottom: 0.045
  16415. }
  16416. },
  16417. feral: {
  16418. height: math.unit(20 + 7 / 12, "feet"),
  16419. weight: math.unit(629, "lb"),
  16420. name: "Feral",
  16421. image: {
  16422. source: "./media/characters/grottos/feral.svg",
  16423. extra: 207 / 190,
  16424. bottom: 0.05
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(10 + 9 / 12, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16438. {
  16439. anthro: {
  16440. height: math.unit(9 + 6 / 12, "feet"),
  16441. weight: math.unit(298, "lb"),
  16442. name: "Anthro",
  16443. image: {
  16444. source: "./media/characters/frifna/anthro.svg",
  16445. extra: 282 / 269,
  16446. bottom: 0.015
  16447. }
  16448. },
  16449. feral: {
  16450. height: math.unit(16 + 2 / 12, "feet"),
  16451. weight: math.unit(624, "lb"),
  16452. name: "Feral",
  16453. image: {
  16454. source: "./media/characters/frifna/feral.svg"
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(9 + 6 / 12, "feet"),
  16462. default: true
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(6 + 2 / 12, "feet"),
  16471. weight: math.unit(168, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/elise/front.svg",
  16475. extra: 276 / 271
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(6 + 2 / 12, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(5 + 10 / 12, "feet"),
  16492. weight: math.unit(210, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/glade/front.svg",
  16496. extra: 258 / 247,
  16497. bottom: 0.008
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Normal",
  16504. height: math.unit(5 + 10 / 12, "feet"),
  16505. default: true
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(5 + 10 / 12, "feet"),
  16514. weight: math.unit(129, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/rina/front.svg",
  16518. extra: 266 / 255,
  16519. bottom: 0.005
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(5 + 10 / 12, "feet"),
  16527. default: true
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(6 + 1 / 12, "feet"),
  16536. weight: math.unit(192, "lb"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/veronica/front.svg",
  16540. extra: 319 / 309,
  16541. bottom: 0.005
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(6 + 1 / 12, "feet"),
  16549. default: true
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(9 + 3 / 12, "feet"),
  16558. weight: math.unit(1100, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/braxton/front.svg",
  16562. extra: 1057 / 984,
  16563. bottom: 0.05
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(9 + 3 / 12, "feet")
  16571. },
  16572. {
  16573. name: "Giant",
  16574. height: math.unit(300, "feet"),
  16575. default: true
  16576. },
  16577. {
  16578. name: "Macro",
  16579. height: math.unit(700, "feet")
  16580. },
  16581. {
  16582. name: "Megamacro",
  16583. height: math.unit(6000, "feet")
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(6 + 7 / 12, "feet"),
  16592. weight: math.unit(150, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/blue-feyonics/front.svg",
  16596. extra: 1403 / 1306,
  16597. bottom: 0.047
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Normal",
  16604. height: math.unit(6 + 7 / 12, "feet"),
  16605. default: true
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16611. {
  16612. front: {
  16613. height: math.unit(1.8, "meters"),
  16614. weight: math.unit(60, "kg"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/maxwell/front.svg",
  16618. extra: 2060 / 1873
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Micro",
  16625. height: math.unit(1, "mm")
  16626. },
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(1.8, "meter"),
  16630. default: true
  16631. },
  16632. {
  16633. name: "Macro",
  16634. height: math.unit(30, "meters")
  16635. },
  16636. {
  16637. name: "Megamacro",
  16638. height: math.unit(10, "km")
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16644. {
  16645. front: {
  16646. height: math.unit(6, "feet"),
  16647. weight: math.unit(150, "lb"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/jack/front.svg",
  16651. extra: 1754 / 1640,
  16652. bottom: 0.01
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Normal",
  16659. height: math.unit(80000, "feet"),
  16660. default: true
  16661. },
  16662. {
  16663. name: "Max size",
  16664. height: math.unit(10, "lightyears")
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16670. {
  16671. urban: {
  16672. height: math.unit(5, "feet"),
  16673. weight: math.unit(240, "lb"),
  16674. name: "Urban",
  16675. image: {
  16676. source: "./media/characters/cafat/urban.svg",
  16677. extra: 1223/1126,
  16678. bottom: 205/1428
  16679. }
  16680. },
  16681. summer: {
  16682. height: math.unit(5, "feet"),
  16683. weight: math.unit(240, "lb"),
  16684. name: "Summer",
  16685. image: {
  16686. source: "./media/characters/cafat/summer.svg",
  16687. extra: 1223/1126,
  16688. bottom: 205/1428
  16689. }
  16690. },
  16691. winter: {
  16692. height: math.unit(5, "feet"),
  16693. weight: math.unit(240, "lb"),
  16694. name: "Winter",
  16695. image: {
  16696. source: "./media/characters/cafat/winter.svg",
  16697. extra: 1223/1126,
  16698. bottom: 205/1428
  16699. }
  16700. },
  16701. lingerie: {
  16702. height: math.unit(5, "feet"),
  16703. weight: math.unit(240, "lb"),
  16704. name: "Lingerie",
  16705. image: {
  16706. source: "./media/characters/cafat/lingerie.svg",
  16707. extra: 1223/1126,
  16708. bottom: 205/1428
  16709. }
  16710. },
  16711. upright: {
  16712. height: math.unit(6.3, "feet"),
  16713. weight: math.unit(240, "lb"),
  16714. name: "Upright",
  16715. image: {
  16716. source: "./media/characters/cafat/upright.svg",
  16717. bottom: 0.01
  16718. }
  16719. },
  16720. uprightFull: {
  16721. height: math.unit(6.3, "feet"),
  16722. weight: math.unit(240, "lb"),
  16723. name: "Upright (Full)",
  16724. image: {
  16725. source: "./media/characters/cafat/upright-full.svg",
  16726. bottom: 0.01
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Small",
  16733. height: math.unit(5, "feet"),
  16734. default: true
  16735. },
  16736. {
  16737. name: "Large",
  16738. height: math.unit(13, "feet")
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(6, "feet"),
  16747. weight: math.unit(150, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/verin-raharra/front.svg",
  16751. extra: 5019 / 4835,
  16752. bottom: 0.023
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(7 + 5 / 12, "feet"),
  16760. default: true
  16761. },
  16762. {
  16763. name: "Upsized",
  16764. height: math.unit(20, "feet")
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(7, "feet"),
  16773. weight: math.unit(230, "lb"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/nakata/front.svg",
  16777. extra: 1.005,
  16778. bottom: 0.01
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Normal",
  16785. height: math.unit(7, "feet"),
  16786. default: true
  16787. },
  16788. {
  16789. name: "Big",
  16790. height: math.unit(14, "feet")
  16791. },
  16792. {
  16793. name: "Macro",
  16794. height: math.unit(400, "feet")
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(4.91, "feet"),
  16803. weight: math.unit(100, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/lily/front.svg",
  16807. extra: 1585 / 1415,
  16808. bottom: 0.02
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(4.91, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16822. {
  16823. laying: {
  16824. height: math.unit(4 + 4 / 12, "feet"),
  16825. weight: math.unit(600, "lb"),
  16826. name: "Laying",
  16827. image: {
  16828. source: "./media/characters/sheila/laying.svg",
  16829. extra: 1333 / 1265,
  16830. bottom: 0.16
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(4 + 4 / 12, "feet"),
  16838. default: true
  16839. },
  16840. ]
  16841. ))
  16842. characterMakers.push(() => makeCharacter(
  16843. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16844. {
  16845. front: {
  16846. height: math.unit(6, "feet"),
  16847. weight: math.unit(190, "lb"),
  16848. name: "Front",
  16849. image: {
  16850. source: "./media/characters/sax/front.svg",
  16851. extra: 1187 / 973,
  16852. bottom: 0.042
  16853. }
  16854. },
  16855. },
  16856. [
  16857. {
  16858. name: "Micro",
  16859. height: math.unit(4, "inches"),
  16860. default: true
  16861. },
  16862. ]
  16863. ))
  16864. characterMakers.push(() => makeCharacter(
  16865. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16866. {
  16867. front: {
  16868. height: math.unit(6, "feet"),
  16869. weight: math.unit(150, "lb"),
  16870. name: "Front",
  16871. image: {
  16872. source: "./media/characters/pandora/front.svg",
  16873. extra: 2720 / 2556,
  16874. bottom: 0.015
  16875. }
  16876. },
  16877. back: {
  16878. height: math.unit(6, "feet"),
  16879. weight: math.unit(150, "lb"),
  16880. name: "Back",
  16881. image: {
  16882. source: "./media/characters/pandora/back.svg",
  16883. extra: 2720 / 2556,
  16884. bottom: 0.01
  16885. }
  16886. },
  16887. beans: {
  16888. height: math.unit(6 / 8, "feet"),
  16889. name: "Beans",
  16890. image: {
  16891. source: "./media/characters/pandora/beans.svg"
  16892. }
  16893. },
  16894. collar: {
  16895. height: math.unit(0.31, "feet"),
  16896. name: "Collar",
  16897. image: {
  16898. source: "./media/characters/pandora/collar.svg"
  16899. }
  16900. },
  16901. skirt: {
  16902. height: math.unit(6, "feet"),
  16903. weight: math.unit(150, "lb"),
  16904. name: "Skirt",
  16905. image: {
  16906. source: "./media/characters/pandora/skirt.svg",
  16907. extra: 1622 / 1525,
  16908. bottom: 0.015
  16909. }
  16910. },
  16911. hoodie: {
  16912. height: math.unit(6, "feet"),
  16913. weight: math.unit(150, "lb"),
  16914. name: "Hoodie",
  16915. image: {
  16916. source: "./media/characters/pandora/hoodie.svg",
  16917. extra: 1622 / 1525,
  16918. bottom: 0.015
  16919. }
  16920. },
  16921. casual: {
  16922. height: math.unit(6, "feet"),
  16923. weight: math.unit(150, "lb"),
  16924. name: "Casual",
  16925. image: {
  16926. source: "./media/characters/pandora/casual.svg",
  16927. extra: 1622 / 1525,
  16928. bottom: 0.015
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(6, "feet")
  16936. },
  16937. {
  16938. name: "Big Steppy",
  16939. height: math.unit(1, "km"),
  16940. default: true
  16941. },
  16942. {
  16943. name: "Galactic Steppy",
  16944. height: math.unit(2, "gigameters")
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16950. {
  16951. side: {
  16952. height: math.unit(10, "feet"),
  16953. weight: math.unit(800, "kg"),
  16954. name: "Side",
  16955. image: {
  16956. source: "./media/characters/venio-darcony/side.svg",
  16957. extra: 1373 / 1003,
  16958. bottom: 0.037
  16959. }
  16960. },
  16961. front: {
  16962. height: math.unit(19, "feet"),
  16963. weight: math.unit(800, "kg"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/venio-darcony/front.svg"
  16967. }
  16968. },
  16969. back: {
  16970. height: math.unit(19, "feet"),
  16971. weight: math.unit(800, "kg"),
  16972. name: "Back",
  16973. image: {
  16974. source: "./media/characters/venio-darcony/back.svg"
  16975. }
  16976. },
  16977. sideNsfw: {
  16978. height: math.unit(10, "feet"),
  16979. weight: math.unit(800, "kg"),
  16980. name: "Side (NSFW)",
  16981. image: {
  16982. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16983. extra: 1373 / 1003,
  16984. bottom: 0.037
  16985. }
  16986. },
  16987. frontNsfw: {
  16988. height: math.unit(19, "feet"),
  16989. weight: math.unit(800, "kg"),
  16990. name: "Front (NSFW)",
  16991. image: {
  16992. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16993. }
  16994. },
  16995. backNsfw: {
  16996. height: math.unit(19, "feet"),
  16997. weight: math.unit(800, "kg"),
  16998. name: "Back (NSFW)",
  16999. image: {
  17000. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17001. }
  17002. },
  17003. sideArmored: {
  17004. height: math.unit(10, "feet"),
  17005. weight: math.unit(800, "kg"),
  17006. name: "Side (Armored)",
  17007. image: {
  17008. source: "./media/characters/venio-darcony/side-armored.svg",
  17009. extra: 1373 / 1003,
  17010. bottom: 0.037
  17011. }
  17012. },
  17013. frontArmored: {
  17014. height: math.unit(19, "feet"),
  17015. weight: math.unit(900, "kg"),
  17016. name: "Front (Armored)",
  17017. image: {
  17018. source: "./media/characters/venio-darcony/front-armored.svg"
  17019. }
  17020. },
  17021. backArmored: {
  17022. height: math.unit(19, "feet"),
  17023. weight: math.unit(900, "kg"),
  17024. name: "Back (Armored)",
  17025. image: {
  17026. source: "./media/characters/venio-darcony/back-armored.svg"
  17027. }
  17028. },
  17029. sword: {
  17030. height: math.unit(10, "feet"),
  17031. weight: math.unit(50, "lb"),
  17032. name: "Sword",
  17033. image: {
  17034. source: "./media/characters/venio-darcony/sword.svg"
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(10, "feet")
  17042. },
  17043. {
  17044. name: "Macro",
  17045. height: math.unit(130, "feet"),
  17046. default: true
  17047. },
  17048. {
  17049. name: "Macro+",
  17050. height: math.unit(240, "feet")
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(6, "feet"),
  17059. weight: math.unit(150, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/veski/front.svg",
  17063. extra: 1299 / 1225,
  17064. bottom: 0.04
  17065. }
  17066. },
  17067. back: {
  17068. height: math.unit(6, "feet"),
  17069. weight: math.unit(150, "lb"),
  17070. name: "Back",
  17071. image: {
  17072. source: "./media/characters/veski/back.svg",
  17073. extra: 1299 / 1225,
  17074. bottom: 0.008
  17075. }
  17076. },
  17077. maw: {
  17078. height: math.unit(1.5 * 1.21, "feet"),
  17079. name: "Maw",
  17080. image: {
  17081. source: "./media/characters/veski/maw.svg"
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Macro",
  17088. height: math.unit(2, "km"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(5 + 7 / 12, "feet"),
  17098. name: "Front",
  17099. image: {
  17100. source: "./media/characters/isabelle/front.svg",
  17101. extra: 2130 / 1976,
  17102. bottom: 0.05
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Supermicro",
  17109. height: math.unit(10, "micrometers")
  17110. },
  17111. {
  17112. name: "Micro",
  17113. height: math.unit(1, "inch")
  17114. },
  17115. {
  17116. name: "Tiny",
  17117. height: math.unit(5, "inches")
  17118. },
  17119. {
  17120. name: "Standard",
  17121. height: math.unit(5 + 7 / 12, "inches")
  17122. },
  17123. {
  17124. name: "Macro",
  17125. height: math.unit(80, "meters"),
  17126. default: true
  17127. },
  17128. {
  17129. name: "Megamacro",
  17130. height: math.unit(250, "meters")
  17131. },
  17132. {
  17133. name: "Gigamacro",
  17134. height: math.unit(5, "km")
  17135. },
  17136. {
  17137. name: "Cosmic",
  17138. height: math.unit(2.5e6, "miles")
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(6, "feet"),
  17147. weight: math.unit(150, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/hanzo/front.svg",
  17151. extra: 374 / 344,
  17152. bottom: 0.02
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(8, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(7, "feet"),
  17169. weight: math.unit(130, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/anna/front.svg",
  17173. extra: 169 / 145,
  17174. bottom: 0.06
  17175. }
  17176. },
  17177. full: {
  17178. height: math.unit(4.96, "feet"),
  17179. weight: math.unit(220, "lb"),
  17180. name: "Full",
  17181. image: {
  17182. source: "./media/characters/anna/full.svg",
  17183. extra: 138 / 114,
  17184. bottom: 0.15
  17185. }
  17186. },
  17187. tongue: {
  17188. height: math.unit(2.53, "feet"),
  17189. name: "Tongue",
  17190. image: {
  17191. source: "./media/characters/anna/tongue.svg"
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(7, "feet"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(7, "feet"),
  17208. weight: math.unit(150, "lb"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/ian-corvid/front.svg",
  17212. extra: 150 / 142,
  17213. bottom: 0.02
  17214. }
  17215. },
  17216. back: {
  17217. height: math.unit(7, "feet"),
  17218. weight: math.unit(150, "lb"),
  17219. name: "Back",
  17220. image: {
  17221. source: "./media/characters/ian-corvid/back.svg",
  17222. extra: 150 / 143,
  17223. bottom: 0.01
  17224. }
  17225. },
  17226. stomping: {
  17227. height: math.unit(7, "feet"),
  17228. weight: math.unit(150, "lb"),
  17229. name: "Stomping",
  17230. image: {
  17231. source: "./media/characters/ian-corvid/stomping.svg",
  17232. extra: 76 / 72
  17233. }
  17234. },
  17235. sitting: {
  17236. height: math.unit(7 / 1.8, "feet"),
  17237. weight: math.unit(150, "lb"),
  17238. name: "Sitting",
  17239. image: {
  17240. source: "./media/characters/ian-corvid/sitting.svg",
  17241. extra: 1400 / 1269,
  17242. bottom: 0.15
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Tiny Microw",
  17249. height: math.unit(1, "inch")
  17250. },
  17251. {
  17252. name: "Microw",
  17253. height: math.unit(6, "inches")
  17254. },
  17255. {
  17256. name: "Crow",
  17257. height: math.unit(7 + 1 / 12, "feet"),
  17258. default: true
  17259. },
  17260. {
  17261. name: "Macrow",
  17262. height: math.unit(176, "feet")
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(5 + 7 / 12, "feet"),
  17271. weight: math.unit(147, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/natalie-kellon/front.svg",
  17275. extra: 1214 / 1141,
  17276. bottom: 0.02
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Micro",
  17283. height: math.unit(1 / 16, "inch")
  17284. },
  17285. {
  17286. name: "Tiny",
  17287. height: math.unit(4, "inches")
  17288. },
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(5 + 7 / 12, "feet"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "Amazon",
  17296. height: math.unit(12, "feet")
  17297. },
  17298. {
  17299. name: "Giantess",
  17300. height: math.unit(160, "meters")
  17301. },
  17302. {
  17303. name: "Titaness",
  17304. height: math.unit(800, "meters")
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17310. {
  17311. front: {
  17312. height: math.unit(6, "feet"),
  17313. weight: math.unit(150, "lb"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/alluria/front.svg",
  17317. extra: 806 / 738,
  17318. bottom: 0.01
  17319. }
  17320. },
  17321. side: {
  17322. height: math.unit(6, "feet"),
  17323. weight: math.unit(150, "lb"),
  17324. name: "Side",
  17325. image: {
  17326. source: "./media/characters/alluria/side.svg",
  17327. extra: 800 / 750,
  17328. }
  17329. },
  17330. back: {
  17331. height: math.unit(6, "feet"),
  17332. weight: math.unit(150, "lb"),
  17333. name: "Back",
  17334. image: {
  17335. source: "./media/characters/alluria/back.svg",
  17336. extra: 806 / 738,
  17337. }
  17338. },
  17339. frontMaid: {
  17340. height: math.unit(6, "feet"),
  17341. weight: math.unit(150, "lb"),
  17342. name: "Front (Maid)",
  17343. image: {
  17344. source: "./media/characters/alluria/front-maid.svg",
  17345. extra: 806 / 738,
  17346. bottom: 0.01
  17347. }
  17348. },
  17349. sideMaid: {
  17350. height: math.unit(6, "feet"),
  17351. weight: math.unit(150, "lb"),
  17352. name: "Side (Maid)",
  17353. image: {
  17354. source: "./media/characters/alluria/side-maid.svg",
  17355. extra: 800 / 750,
  17356. bottom: 0.005
  17357. }
  17358. },
  17359. backMaid: {
  17360. height: math.unit(6, "feet"),
  17361. weight: math.unit(150, "lb"),
  17362. name: "Back (Maid)",
  17363. image: {
  17364. source: "./media/characters/alluria/back-maid.svg",
  17365. extra: 806 / 738,
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Micro",
  17372. height: math.unit(6, "inches"),
  17373. default: true
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(6, "feet"),
  17382. weight: math.unit(150, "lb"),
  17383. name: "Front",
  17384. image: {
  17385. source: "./media/characters/kyle/front.svg",
  17386. extra: 1069 / 962,
  17387. bottom: 77.228 / 1727.45
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Macro",
  17394. height: math.unit(150, "feet"),
  17395. default: true
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(6, "feet"),
  17404. weight: math.unit(300, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/duncan/front.svg",
  17408. extra: 1650 / 1482,
  17409. bottom: 0.05
  17410. }
  17411. },
  17412. },
  17413. [
  17414. {
  17415. name: "Macro",
  17416. height: math.unit(100, "feet"),
  17417. default: true
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17423. {
  17424. front: {
  17425. height: math.unit(5 + 4 / 12, "feet"),
  17426. weight: math.unit(220, "lb"),
  17427. name: "Front",
  17428. image: {
  17429. source: "./media/characters/memory/front.svg",
  17430. extra: 3641 / 3545,
  17431. bottom: 0.03
  17432. }
  17433. },
  17434. back: {
  17435. height: math.unit(5 + 4 / 12, "feet"),
  17436. weight: math.unit(220, "lb"),
  17437. name: "Back",
  17438. image: {
  17439. source: "./media/characters/memory/back.svg",
  17440. extra: 3641 / 3545,
  17441. bottom: 0.025
  17442. }
  17443. },
  17444. frontSkirt: {
  17445. height: math.unit(5 + 4 / 12, "feet"),
  17446. weight: math.unit(220, "lb"),
  17447. name: "Front (Skirt)",
  17448. image: {
  17449. source: "./media/characters/memory/front-skirt.svg",
  17450. extra: 3641 / 3545,
  17451. bottom: 0.03
  17452. }
  17453. },
  17454. frontDress: {
  17455. height: math.unit(5 + 4 / 12, "feet"),
  17456. weight: math.unit(220, "lb"),
  17457. name: "Front (Dress)",
  17458. image: {
  17459. source: "./media/characters/memory/front-dress.svg",
  17460. extra: 3641 / 3545,
  17461. bottom: 0.03
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Micro",
  17468. height: math.unit(6, "inches"),
  17469. default: true
  17470. },
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(5 + 4 / 12, "feet")
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(4 + 11 / 12, "feet"),
  17482. weight: math.unit(100, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/luno/front.svg",
  17486. extra: 1535 / 1487,
  17487. bottom: 0.03
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Micro",
  17494. height: math.unit(3, "inches")
  17495. },
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(4 + 11 / 12, "feet"),
  17499. default: true
  17500. },
  17501. {
  17502. name: "Macro",
  17503. height: math.unit(300, "feet")
  17504. },
  17505. {
  17506. name: "Megamacro",
  17507. height: math.unit(700, "miles")
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(6 + 2 / 12, "feet"),
  17516. weight: math.unit(170, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/jamesy/front.svg",
  17520. extra: 440 / 382,
  17521. bottom: 0.005
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Micro",
  17528. height: math.unit(3, "inches")
  17529. },
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(6 + 2 / 12, "feet"),
  17533. default: true
  17534. },
  17535. {
  17536. name: "Macro",
  17537. height: math.unit(300, "feet")
  17538. },
  17539. {
  17540. name: "Megamacro",
  17541. height: math.unit(700, "miles")
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(6, "feet"),
  17550. weight: math.unit(160, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/mark/front.svg",
  17554. extra: 3300 / 3100,
  17555. bottom: 136.42 / 3440.47
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Macro",
  17562. height: math.unit(120, "meters")
  17563. },
  17564. {
  17565. name: "Bigger Macro",
  17566. height: math.unit(350, "meters")
  17567. },
  17568. {
  17569. name: "Megamacro",
  17570. height: math.unit(8, "km"),
  17571. default: true
  17572. },
  17573. {
  17574. name: "Continental",
  17575. height: math.unit(4550, "km")
  17576. },
  17577. {
  17578. name: "Planetary",
  17579. height: math.unit(65000, "km")
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(6, "feet"),
  17588. weight: math.unit(400, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/mac/front.svg",
  17592. extra: 1048 / 987.7,
  17593. bottom: 60 / 1107.6,
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Macro",
  17600. height: math.unit(500, "feet"),
  17601. default: true
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17607. {
  17608. front: {
  17609. height: math.unit(5 + 2 / 12, "feet"),
  17610. weight: math.unit(190, "lb"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/bari/front.svg",
  17614. extra: 3156 / 2880,
  17615. bottom: 0.03
  17616. }
  17617. },
  17618. back: {
  17619. height: math.unit(5 + 2 / 12, "feet"),
  17620. weight: math.unit(190, "lb"),
  17621. name: "Back",
  17622. image: {
  17623. source: "./media/characters/bari/back.svg",
  17624. extra: 3260 / 2834,
  17625. bottom: 0.025
  17626. }
  17627. },
  17628. frontPlush: {
  17629. height: math.unit(5 + 2 / 12, "feet"),
  17630. weight: math.unit(190, "lb"),
  17631. name: "Front (Plush)",
  17632. image: {
  17633. source: "./media/characters/bari/front-plush.svg",
  17634. extra: 1112 / 1061,
  17635. bottom: 0.002
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Micro",
  17642. height: math.unit(3, "inches")
  17643. },
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(5 + 2 / 12, "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(20, "feet")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(6 + 1 / 12, "feet"),
  17660. weight: math.unit(275, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/hunter-misha-raven/front.svg"
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Mortal",
  17670. height: math.unit(6 + 1 / 12, "feet")
  17671. },
  17672. {
  17673. name: "Divine",
  17674. height: math.unit(1.12134e34, "parsecs"),
  17675. default: true
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(6 + 3 / 12, "feet"),
  17684. weight: math.unit(220, "lb"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/max-calore/front.svg",
  17688. extra: 1700 / 1648,
  17689. bottom: 0.01
  17690. }
  17691. },
  17692. back: {
  17693. height: math.unit(6 + 3 / 12, "feet"),
  17694. weight: math.unit(220, "lb"),
  17695. name: "Back",
  17696. image: {
  17697. source: "./media/characters/max-calore/back.svg",
  17698. extra: 1700 / 1648,
  17699. bottom: 0.01
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(6 + 3 / 12, "feet"),
  17707. default: true
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17713. {
  17714. side: {
  17715. height: math.unit(2 + 8 / 12, "feet"),
  17716. weight: math.unit(99, "lb"),
  17717. name: "Side",
  17718. image: {
  17719. source: "./media/characters/aspen/side.svg",
  17720. extra: 152 / 138,
  17721. bottom: 0.032
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(2 + 8 / 12, "feet"),
  17729. default: true
  17730. },
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17735. {
  17736. side: {
  17737. height: math.unit(3 + 2 / 12, "feet"),
  17738. weight: math.unit(224, "lb"),
  17739. name: "Side",
  17740. image: {
  17741. source: "./media/characters/sheila-feral-wolf/side.svg",
  17742. extra: 179 / 166,
  17743. bottom: 0.03
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(3 + 2 / 12, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17757. {
  17758. side: {
  17759. height: math.unit(1 + 9 / 12, "feet"),
  17760. weight: math.unit(38, "lb"),
  17761. name: "Side",
  17762. image: {
  17763. source: "./media/characters/michelle/side.svg",
  17764. extra: 147 / 136.7,
  17765. bottom: 0.03
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(1 + 9 / 12, "feet"),
  17773. default: true
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(1.54, "feet"),
  17782. weight: math.unit(50, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/nino/front.svg"
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(1.54, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(1.49, "feet"),
  17802. weight: math.unit(45, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/viola/front.svg"
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(1.49, "feet"),
  17813. default: true
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17819. {
  17820. front: {
  17821. height: math.unit(6 + 5 / 12, "feet"),
  17822. weight: math.unit(580, "lb"),
  17823. name: "Front",
  17824. image: {
  17825. source: "./media/characters/atlas/front.svg",
  17826. extra: 298.5 / 290,
  17827. bottom: 0.015
  17828. }
  17829. },
  17830. },
  17831. [
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(6 + 5 / 12, "feet"),
  17835. default: true
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17841. {
  17842. side: {
  17843. height: math.unit(15.6, "inches"),
  17844. weight: math.unit(10, "lb"),
  17845. name: "Side",
  17846. image: {
  17847. source: "./media/characters/davy/side.svg",
  17848. extra: 200 / 170,
  17849. bottom: 0.01
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(15.6, "inches"),
  17857. default: true
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17863. {
  17864. side: {
  17865. height: math.unit(4 + 8 / 12, "feet"),
  17866. weight: math.unit(166, "lb"),
  17867. name: "Side",
  17868. image: {
  17869. source: "./media/characters/fiona/side.svg",
  17870. extra: 232 / 220,
  17871. bottom: 0.03
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(4 + 8 / 12, "feet"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17885. {
  17886. front: {
  17887. height: math.unit(26, "inches"),
  17888. weight: math.unit(35, "lb"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/lyla/front.svg",
  17892. bottom: 0.1
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(3, "feet"),
  17900. default: true
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17906. {
  17907. side: {
  17908. height: math.unit(1.8, "feet"),
  17909. weight: math.unit(44, "lb"),
  17910. name: "Side",
  17911. image: {
  17912. source: "./media/characters/perseus/side.svg",
  17913. bottom: 0.21
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(1.8, "feet"),
  17921. default: true
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17927. {
  17928. side: {
  17929. height: math.unit(4 + 2 / 12, "feet"),
  17930. weight: math.unit(20, "lb"),
  17931. name: "Side",
  17932. image: {
  17933. source: "./media/characters/remus/side.svg"
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(4 + 2 / 12, "feet"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(4 + 11 / 12, "feet"),
  17950. weight: math.unit(114, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/raf/front.svg",
  17954. extra: 1504/1339,
  17955. bottom: 26/1530
  17956. }
  17957. },
  17958. side: {
  17959. height: math.unit(4 + 11 / 12, "feet"),
  17960. weight: math.unit(114, "lb"),
  17961. name: "Side",
  17962. image: {
  17963. source: "./media/characters/raf/side.svg",
  17964. extra: 1466/1316,
  17965. bottom: 29/1495
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Micro",
  17972. height: math.unit(2, "inches")
  17973. },
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(4 + 11 / 12, "feet"),
  17977. default: true
  17978. },
  17979. {
  17980. name: "Macro",
  17981. height: math.unit(70, "feet")
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(1.5, "meters"),
  17990. weight: math.unit(68, "kg"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/liam-einarr/front.svg",
  17994. extra: 2822 / 2666
  17995. }
  17996. },
  17997. back: {
  17998. height: math.unit(1.5, "meters"),
  17999. weight: math.unit(68, "kg"),
  18000. name: "Back",
  18001. image: {
  18002. source: "./media/characters/liam-einarr/back.svg",
  18003. extra: 2822 / 2666,
  18004. bottom: 0.015
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Normal",
  18011. height: math.unit(1.5, "meters"),
  18012. default: true
  18013. },
  18014. {
  18015. name: "Macro",
  18016. height: math.unit(150, "meters")
  18017. },
  18018. {
  18019. name: "Megamacro",
  18020. height: math.unit(35, "km")
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18026. {
  18027. front: {
  18028. height: math.unit(6, "feet"),
  18029. weight: math.unit(75, "kg"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/linda/front.svg",
  18033. extra: 930 / 874,
  18034. bottom: 0.004
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Normal",
  18041. height: math.unit(6, "feet"),
  18042. default: true
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(6 + 8 / 12, "feet"),
  18051. weight: math.unit(220, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/caylex/front.svg",
  18055. extra: 821 / 772,
  18056. bottom: 0.07
  18057. }
  18058. },
  18059. back: {
  18060. height: math.unit(6 + 8 / 12, "feet"),
  18061. weight: math.unit(220, "lb"),
  18062. name: "Back",
  18063. image: {
  18064. source: "./media/characters/caylex/back.svg",
  18065. extra: 821 / 772,
  18066. bottom: 0.022
  18067. }
  18068. },
  18069. hand: {
  18070. height: math.unit(1.25, "feet"),
  18071. name: "Hand",
  18072. image: {
  18073. source: "./media/characters/caylex/hand.svg"
  18074. }
  18075. },
  18076. foot: {
  18077. height: math.unit(1.6, "feet"),
  18078. name: "Foot",
  18079. image: {
  18080. source: "./media/characters/caylex/foot.svg"
  18081. }
  18082. },
  18083. armored: {
  18084. height: math.unit(6 + 8 / 12, "feet"),
  18085. weight: math.unit(250, "lb"),
  18086. name: "Armored",
  18087. image: {
  18088. source: "./media/characters/caylex/armored.svg",
  18089. extra: 1420 / 1310,
  18090. bottom: 0.045
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(6 + 8 / 12, "feet"),
  18098. default: true
  18099. },
  18100. {
  18101. name: "Normal+",
  18102. height: math.unit(12, "feet")
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(7 + 6 / 12, "feet"),
  18111. weight: math.unit(288, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/alana/front.svg",
  18115. extra: 679 / 653,
  18116. bottom: 22.5 / 701
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(7 + 6 / 12, "feet")
  18124. },
  18125. {
  18126. name: "Large",
  18127. height: math.unit(50, "feet")
  18128. },
  18129. {
  18130. name: "Macro",
  18131. height: math.unit(100, "feet"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Macro+",
  18136. height: math.unit(200, "feet")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(6 + 1 / 12, "feet"),
  18145. weight: math.unit(210, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/hasani/front.svg",
  18149. extra: 244 / 232,
  18150. bottom: 0.01
  18151. }
  18152. },
  18153. back: {
  18154. height: math.unit(6 + 1 / 12, "feet"),
  18155. weight: math.unit(210, "lb"),
  18156. name: "Back",
  18157. image: {
  18158. source: "./media/characters/hasani/back.svg",
  18159. extra: 244 / 232,
  18160. bottom: 0.01
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(6 + 1 / 12, "feet")
  18168. },
  18169. {
  18170. name: "Macro",
  18171. height: math.unit(175, "feet"),
  18172. default: true
  18173. },
  18174. ]
  18175. ))
  18176. characterMakers.push(() => makeCharacter(
  18177. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18178. {
  18179. front: {
  18180. height: math.unit(1.82, "meters"),
  18181. weight: math.unit(140, "lb"),
  18182. name: "Front",
  18183. image: {
  18184. source: "./media/characters/nita/front.svg",
  18185. extra: 2473 / 2363,
  18186. bottom: 0.01
  18187. }
  18188. },
  18189. },
  18190. [
  18191. {
  18192. name: "Normal",
  18193. height: math.unit(1.82, "m")
  18194. },
  18195. {
  18196. name: "Macro",
  18197. height: math.unit(300, "m")
  18198. },
  18199. {
  18200. name: "Mistake Canon",
  18201. height: math.unit(0.5, "miles"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Big Mistake",
  18206. height: math.unit(13, "miles")
  18207. },
  18208. {
  18209. name: "Playing God",
  18210. height: math.unit(2450, "miles")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(4, "feet"),
  18219. weight: math.unit(120, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/shiriko/front.svg",
  18223. extra: 970/934,
  18224. bottom: 5/975
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(4, "feet"),
  18232. default: true
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18238. {
  18239. front: {
  18240. height: math.unit(6, "feet"),
  18241. name: "front",
  18242. image: {
  18243. source: "./media/characters/deja/front.svg",
  18244. extra: 926 / 840,
  18245. bottom: 0.07
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Planck Length",
  18252. height: math.unit(1.6e-35, "meters")
  18253. },
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(30.48, "meters"),
  18257. default: true
  18258. },
  18259. {
  18260. name: "Universal",
  18261. height: math.unit(8.8e26, "meters")
  18262. },
  18263. ]
  18264. ))
  18265. characterMakers.push(() => makeCharacter(
  18266. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18267. {
  18268. side: {
  18269. height: math.unit(8, "feet"),
  18270. weight: math.unit(6300, "lb"),
  18271. name: "Side",
  18272. image: {
  18273. source: "./media/characters/anima/side.svg",
  18274. bottom: 0.035
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(8, "feet"),
  18282. default: true
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(8, "feet"),
  18291. weight: math.unit(350, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/bianca/front.svg",
  18295. extra: 234 / 225,
  18296. bottom: 0.03
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(8, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(11 + 5/12, "feet"),
  18313. weight: math.unit(1200, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/adinia/front.svg",
  18317. extra: 1767/1641,
  18318. bottom: 44/1811
  18319. },
  18320. extraAttributes: {
  18321. "energyIntake": {
  18322. name: "Energy Intake",
  18323. power: 3,
  18324. type: "energy",
  18325. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18326. },
  18327. }
  18328. },
  18329. back: {
  18330. height: math.unit(11 + 5/12, "feet"),
  18331. weight: math.unit(1200, "lb"),
  18332. name: "Back",
  18333. image: {
  18334. source: "./media/characters/adinia/back.svg",
  18335. extra: 1834/1684,
  18336. bottom: 14/1848
  18337. },
  18338. extraAttributes: {
  18339. "energyIntake": {
  18340. name: "Energy Intake",
  18341. power: 3,
  18342. type: "energy",
  18343. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18344. },
  18345. }
  18346. },
  18347. maw: {
  18348. height: math.unit(3.79, "feet"),
  18349. name: "Maw",
  18350. image: {
  18351. source: "./media/characters/adinia/maw.svg"
  18352. }
  18353. },
  18354. rump: {
  18355. height: math.unit(4.6, "feet"),
  18356. name: "Rump",
  18357. image: {
  18358. source: "./media/characters/adinia/rump.svg"
  18359. }
  18360. },
  18361. },
  18362. [
  18363. {
  18364. name: "Normal",
  18365. height: math.unit(11 + 5 / 12, "feet"),
  18366. default: true
  18367. },
  18368. ]
  18369. ))
  18370. characterMakers.push(() => makeCharacter(
  18371. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18372. {
  18373. front: {
  18374. height: math.unit(3, "meters"),
  18375. weight: math.unit(200, "kg"),
  18376. name: "Front",
  18377. image: {
  18378. source: "./media/characters/lykasa/front.svg",
  18379. extra: 1076 / 976,
  18380. bottom: 0.06
  18381. }
  18382. },
  18383. },
  18384. [
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(3, "meters")
  18388. },
  18389. {
  18390. name: "Kaiju",
  18391. height: math.unit(120, "meters"),
  18392. default: true
  18393. },
  18394. {
  18395. name: "Mega Kaiju",
  18396. height: math.unit(240, "km")
  18397. },
  18398. {
  18399. name: "Giga Kaiju",
  18400. height: math.unit(400, "megameters")
  18401. },
  18402. {
  18403. name: "Tera Kaiju",
  18404. height: math.unit(800, "gigameters")
  18405. },
  18406. {
  18407. name: "Kaiju Dragon Goddess",
  18408. height: math.unit(26, "zettaparsecs")
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18414. {
  18415. side: {
  18416. height: math.unit(283 / 124 * 6, "feet"),
  18417. weight: math.unit(35000, "lb"),
  18418. name: "Side",
  18419. image: {
  18420. source: "./media/characters/malfaren/side.svg",
  18421. extra: 1310/529,
  18422. bottom: 24/1334
  18423. }
  18424. },
  18425. front: {
  18426. height: math.unit(22.36, "feet"),
  18427. weight: math.unit(35000, "lb"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/malfaren/front.svg",
  18431. extra: 1237/1115,
  18432. bottom: 32/1269
  18433. }
  18434. },
  18435. maw: {
  18436. height: math.unit(6.9, "feet"),
  18437. name: "Maw",
  18438. image: {
  18439. source: "./media/characters/malfaren/maw.svg"
  18440. }
  18441. },
  18442. dick: {
  18443. height: math.unit(6.19, "feet"),
  18444. name: "Dick",
  18445. image: {
  18446. source: "./media/characters/malfaren/dick.svg"
  18447. }
  18448. },
  18449. eye: {
  18450. height: math.unit(0.69, "feet"),
  18451. name: "Eye",
  18452. image: {
  18453. source: "./media/characters/malfaren/eye.svg"
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Big",
  18460. height: math.unit(283 / 162 * 6, "feet"),
  18461. },
  18462. {
  18463. name: "Bigger",
  18464. height: math.unit(283 / 124 * 6, "feet")
  18465. },
  18466. {
  18467. name: "Massive",
  18468. height: math.unit(283 / 92 * 6, "feet"),
  18469. default: true
  18470. },
  18471. {
  18472. name: "👀💦",
  18473. height: math.unit(283 / 73 * 6, "feet"),
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18479. {
  18480. front: {
  18481. height: math.unit(1.7, "m"),
  18482. weight: math.unit(70, "kg"),
  18483. name: "Front",
  18484. image: {
  18485. source: "./media/characters/kernel/front.svg",
  18486. extra: 222 / 210,
  18487. bottom: 0.007
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Nano",
  18494. height: math.unit(17, "micrometers")
  18495. },
  18496. {
  18497. name: "Micro",
  18498. height: math.unit(1.7, "mm")
  18499. },
  18500. {
  18501. name: "Small",
  18502. height: math.unit(1.7, "cm")
  18503. },
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(1.7, "m"),
  18507. default: true
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18513. {
  18514. front: {
  18515. height: math.unit(1.75, "meters"),
  18516. weight: math.unit(65, "kg"),
  18517. name: "Front",
  18518. image: {
  18519. source: "./media/characters/jayne-folest/front.svg",
  18520. extra: 2115 / 2007,
  18521. bottom: 0.02
  18522. }
  18523. },
  18524. back: {
  18525. height: math.unit(1.75, "meters"),
  18526. weight: math.unit(65, "kg"),
  18527. name: "Back",
  18528. image: {
  18529. source: "./media/characters/jayne-folest/back.svg",
  18530. extra: 2115 / 2007,
  18531. bottom: 0.005
  18532. }
  18533. },
  18534. frontClothed: {
  18535. height: math.unit(1.75, "meters"),
  18536. weight: math.unit(65, "kg"),
  18537. name: "Front (Clothed)",
  18538. image: {
  18539. source: "./media/characters/jayne-folest/front-clothed.svg",
  18540. extra: 2115 / 2007,
  18541. bottom: 0.035
  18542. }
  18543. },
  18544. hand: {
  18545. height: math.unit(1 / 1.260, "feet"),
  18546. name: "Hand",
  18547. image: {
  18548. source: "./media/characters/jayne-folest/hand.svg"
  18549. }
  18550. },
  18551. foot: {
  18552. height: math.unit(1 / 0.918, "feet"),
  18553. name: "Foot",
  18554. image: {
  18555. source: "./media/characters/jayne-folest/foot.svg"
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Micro",
  18562. height: math.unit(4, "cm")
  18563. },
  18564. {
  18565. name: "Normal",
  18566. height: math.unit(1.75, "meters")
  18567. },
  18568. {
  18569. name: "Macro",
  18570. height: math.unit(47.5, "meters"),
  18571. default: true
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18577. {
  18578. front: {
  18579. height: math.unit(180, "cm"),
  18580. weight: math.unit(70, "kg"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/algier/front.svg",
  18584. extra: 596 / 572,
  18585. bottom: 0.04
  18586. }
  18587. },
  18588. back: {
  18589. height: math.unit(180, "cm"),
  18590. weight: math.unit(70, "kg"),
  18591. name: "Back",
  18592. image: {
  18593. source: "./media/characters/algier/back.svg",
  18594. extra: 596 / 572,
  18595. bottom: 0.025
  18596. }
  18597. },
  18598. frontdressed: {
  18599. height: math.unit(180, "cm"),
  18600. weight: math.unit(150, "kg"),
  18601. name: "Front-dressed",
  18602. image: {
  18603. source: "./media/characters/algier/front-dressed.svg",
  18604. extra: 596 / 572,
  18605. bottom: 0.038
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Micro",
  18612. height: math.unit(5, "cm")
  18613. },
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(180, "cm"),
  18617. default: true
  18618. },
  18619. {
  18620. name: "Macro",
  18621. height: math.unit(64, "m")
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18627. {
  18628. upright: {
  18629. height: math.unit(7, "feet"),
  18630. weight: math.unit(300, "lb"),
  18631. name: "Upright",
  18632. image: {
  18633. source: "./media/characters/pretzel/upright.svg",
  18634. extra: 534 / 522,
  18635. bottom: 0.065
  18636. }
  18637. },
  18638. sprawling: {
  18639. height: math.unit(3.75, "feet"),
  18640. weight: math.unit(300, "lb"),
  18641. name: "Sprawling",
  18642. image: {
  18643. source: "./media/characters/pretzel/sprawling.svg",
  18644. extra: 314 / 281,
  18645. bottom: 0.1
  18646. }
  18647. },
  18648. tongue: {
  18649. height: math.unit(2, "feet"),
  18650. name: "Tongue",
  18651. image: {
  18652. source: "./media/characters/pretzel/tongue.svg"
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(7, "feet"),
  18660. default: true
  18661. },
  18662. {
  18663. name: "Oversized",
  18664. height: math.unit(15, "feet")
  18665. },
  18666. {
  18667. name: "Huge",
  18668. height: math.unit(30, "feet")
  18669. },
  18670. {
  18671. name: "Macro",
  18672. height: math.unit(250, "feet")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18678. {
  18679. sideFront: {
  18680. height: math.unit(5 + 2 / 12, "feet"),
  18681. weight: math.unit(120, "lb"),
  18682. name: "Front Side",
  18683. image: {
  18684. source: "./media/characters/roxi/side-front.svg",
  18685. extra: 2924 / 2717,
  18686. bottom: 0.08
  18687. }
  18688. },
  18689. sideBack: {
  18690. height: math.unit(5 + 2 / 12, "feet"),
  18691. weight: math.unit(120, "lb"),
  18692. name: "Back Side",
  18693. image: {
  18694. source: "./media/characters/roxi/side-back.svg",
  18695. extra: 2904 / 2693,
  18696. bottom: 0.06
  18697. }
  18698. },
  18699. front: {
  18700. height: math.unit(5 + 2 / 12, "feet"),
  18701. weight: math.unit(120, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/roxi/front.svg",
  18705. extra: 2028 / 1907,
  18706. bottom: 0.01
  18707. }
  18708. },
  18709. frontAlt: {
  18710. height: math.unit(5 + 2 / 12, "feet"),
  18711. weight: math.unit(120, "lb"),
  18712. name: "Front (Alt)",
  18713. image: {
  18714. source: "./media/characters/roxi/front-alt.svg",
  18715. extra: 1828 / 1798,
  18716. bottom: 0.01
  18717. }
  18718. },
  18719. sitting: {
  18720. height: math.unit(2.8, "feet"),
  18721. weight: math.unit(120, "lb"),
  18722. name: "Sitting",
  18723. image: {
  18724. source: "./media/characters/roxi/sitting.svg",
  18725. extra: 2660 / 2462,
  18726. bottom: 0.1
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Normal",
  18733. height: math.unit(5 + 2 / 12, "feet"),
  18734. default: true
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18740. {
  18741. side: {
  18742. height: math.unit(55, "feet"),
  18743. weight: math.unit(153, "tons"),
  18744. name: "Side",
  18745. image: {
  18746. source: "./media/characters/shadow/side.svg",
  18747. extra: 701 / 628,
  18748. bottom: 0.02
  18749. }
  18750. },
  18751. flying: {
  18752. height: math.unit(145, "feet"),
  18753. weight: math.unit(153, "tons"),
  18754. name: "Flying",
  18755. image: {
  18756. source: "./media/characters/shadow/flying.svg"
  18757. }
  18758. },
  18759. },
  18760. [
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(55, "feet"),
  18764. default: true
  18765. },
  18766. ]
  18767. ))
  18768. characterMakers.push(() => makeCharacter(
  18769. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18770. {
  18771. front: {
  18772. height: math.unit(6, "feet"),
  18773. weight: math.unit(200, "lb"),
  18774. name: "Front",
  18775. image: {
  18776. source: "./media/characters/marcie/front.svg",
  18777. extra: 960 / 876,
  18778. bottom: 58 / 1017.87
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Macro",
  18785. height: math.unit(1, "mile"),
  18786. default: true
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18792. {
  18793. front: {
  18794. height: math.unit(7, "feet"),
  18795. weight: math.unit(200, "lb"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/kachina/front.svg",
  18799. extra: 1290.68 / 1119,
  18800. bottom: 36.5 / 1327.18
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(7, "feet"),
  18808. default: true
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18814. {
  18815. looking: {
  18816. height: math.unit(2, "meters"),
  18817. weight: math.unit(300, "kg"),
  18818. name: "Looking",
  18819. image: {
  18820. source: "./media/characters/kash/looking.svg",
  18821. extra: 474 / 344,
  18822. bottom: 0.03
  18823. }
  18824. },
  18825. side: {
  18826. height: math.unit(2, "meters"),
  18827. weight: math.unit(300, "kg"),
  18828. name: "Side",
  18829. image: {
  18830. source: "./media/characters/kash/side.svg",
  18831. extra: 302 / 251,
  18832. bottom: 0.03
  18833. }
  18834. },
  18835. front: {
  18836. height: math.unit(2, "meters"),
  18837. weight: math.unit(300, "kg"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/kash/front.svg",
  18841. extra: 495 / 360,
  18842. bottom: 0.015
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(2, "meters"),
  18850. default: true
  18851. },
  18852. {
  18853. name: "Big",
  18854. height: math.unit(3, "meters")
  18855. },
  18856. {
  18857. name: "Large",
  18858. height: math.unit(5, "meters")
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18864. {
  18865. feeding: {
  18866. height: math.unit(6.7, "feet"),
  18867. weight: math.unit(350, "lb"),
  18868. name: "Feeding",
  18869. image: {
  18870. source: "./media/characters/lalim/feeding.svg",
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(6.7, "feet"),
  18878. default: true
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18884. {
  18885. front: {
  18886. height: math.unit(9.5, "feet"),
  18887. weight: math.unit(600, "lb"),
  18888. name: "Front",
  18889. image: {
  18890. source: "./media/characters/de'vout/front.svg",
  18891. extra: 1443 / 1328,
  18892. bottom: 0.025
  18893. }
  18894. },
  18895. back: {
  18896. height: math.unit(9.5, "feet"),
  18897. weight: math.unit(600, "lb"),
  18898. name: "Back",
  18899. image: {
  18900. source: "./media/characters/de'vout/back.svg",
  18901. extra: 1443 / 1328
  18902. }
  18903. },
  18904. frontDressed: {
  18905. height: math.unit(9.5, "feet"),
  18906. weight: math.unit(600, "lb"),
  18907. name: "Front (Dressed",
  18908. image: {
  18909. source: "./media/characters/de'vout/front-dressed.svg",
  18910. extra: 1443 / 1328,
  18911. bottom: 0.025
  18912. }
  18913. },
  18914. backDressed: {
  18915. height: math.unit(9.5, "feet"),
  18916. weight: math.unit(600, "lb"),
  18917. name: "Back (Dressed",
  18918. image: {
  18919. source: "./media/characters/de'vout/back-dressed.svg",
  18920. extra: 1443 / 1328
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(9.5, "feet"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(8, "feet"),
  18937. weight: math.unit(225, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/talana/front.svg",
  18941. extra: 1410 / 1300,
  18942. bottom: 0.015
  18943. }
  18944. },
  18945. frontDressed: {
  18946. height: math.unit(8, "feet"),
  18947. weight: math.unit(225, "lb"),
  18948. name: "Front (Dressed",
  18949. image: {
  18950. source: "./media/characters/talana/front-dressed.svg",
  18951. extra: 1410 / 1300,
  18952. bottom: 0.015
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(8, "feet"),
  18960. default: true
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18966. {
  18967. side: {
  18968. height: math.unit(7.2, "feet"),
  18969. weight: math.unit(150, "lb"),
  18970. name: "Side",
  18971. image: {
  18972. source: "./media/characters/xeauvok/side.svg",
  18973. extra: 1975 / 1523,
  18974. bottom: 0.07
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(7.2, "feet"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18988. {
  18989. side: {
  18990. height: math.unit(4, "meters"),
  18991. weight: math.unit(2200, "kg"),
  18992. name: "Side",
  18993. image: {
  18994. source: "./media/characters/zara/side.svg",
  18995. extra: 765/744,
  18996. bottom: 156/921
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(4, "meters"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19010. {
  19011. side: {
  19012. height: math.unit(6, "feet"),
  19013. weight: math.unit(150, "lb"),
  19014. name: "Side",
  19015. image: {
  19016. source: "./media/characters/richard-dragon/side.svg",
  19017. extra: 845 / 340,
  19018. bottom: 0.017
  19019. }
  19020. },
  19021. maw: {
  19022. height: math.unit(2.97, "feet"),
  19023. name: "Maw",
  19024. image: {
  19025. source: "./media/characters/richard-dragon/maw.svg"
  19026. }
  19027. },
  19028. },
  19029. [
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19034. {
  19035. front: {
  19036. height: math.unit(4, "feet"),
  19037. weight: math.unit(100, "lb"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/richard-smeargle/front.svg",
  19041. extra: 2952 / 2820,
  19042. bottom: 0.028
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(4, "feet"),
  19050. default: true
  19051. },
  19052. {
  19053. name: "Dynamax",
  19054. height: math.unit(20, "meters")
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(6, "feet"),
  19063. weight: math.unit(110, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/klay/front.svg",
  19067. extra: 962 / 883,
  19068. bottom: 0.04
  19069. }
  19070. },
  19071. back: {
  19072. height: math.unit(6, "feet"),
  19073. weight: math.unit(110, "lb"),
  19074. name: "Back",
  19075. image: {
  19076. source: "./media/characters/klay/back.svg",
  19077. extra: 962 / 883
  19078. }
  19079. },
  19080. beans: {
  19081. height: math.unit(1.15, "feet"),
  19082. name: "Beans",
  19083. image: {
  19084. source: "./media/characters/klay/beans.svg"
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Micro",
  19091. height: math.unit(6, "inches")
  19092. },
  19093. {
  19094. name: "Mini",
  19095. height: math.unit(3, "feet")
  19096. },
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(6, "feet"),
  19100. default: true
  19101. },
  19102. {
  19103. name: "Big",
  19104. height: math.unit(25, "feet")
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(100, "feet")
  19109. },
  19110. {
  19111. name: "Megamacro",
  19112. height: math.unit(400, "feet")
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(6, "feet"),
  19121. weight: math.unit(160, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/marcus/front.svg",
  19125. extra: 734 / 676,
  19126. bottom: 0.03
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Little",
  19133. height: math.unit(6, "feet")
  19134. },
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(110, "feet"),
  19138. default: true
  19139. },
  19140. {
  19141. name: "Macro",
  19142. height: math.unit(250, "feet")
  19143. },
  19144. {
  19145. name: "Megamacro",
  19146. height: math.unit(1000, "feet")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(7, "feet"),
  19155. weight: math.unit(275, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/claude-delroute/front.svg",
  19159. extra: 902/827,
  19160. bottom: 26/928
  19161. }
  19162. },
  19163. side: {
  19164. height: math.unit(7, "feet"),
  19165. weight: math.unit(275, "lb"),
  19166. name: "Side",
  19167. image: {
  19168. source: "./media/characters/claude-delroute/side.svg",
  19169. extra: 908/853,
  19170. bottom: 16/924
  19171. }
  19172. },
  19173. back: {
  19174. height: math.unit(7, "feet"),
  19175. weight: math.unit(275, "lb"),
  19176. name: "Back",
  19177. image: {
  19178. source: "./media/characters/claude-delroute/back.svg",
  19179. extra: 911/829,
  19180. bottom: 18/929
  19181. }
  19182. },
  19183. maw: {
  19184. height: math.unit(0.6407, "meters"),
  19185. name: "Maw",
  19186. image: {
  19187. source: "./media/characters/claude-delroute/maw.svg"
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Normal",
  19194. height: math.unit(7, "feet"),
  19195. default: true
  19196. },
  19197. {
  19198. name: "Lorge",
  19199. height: math.unit(20, "feet")
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(8 + 4 / 12, "feet"),
  19208. weight: math.unit(600, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/dragonien/front.svg",
  19212. extra: 100 / 94,
  19213. bottom: 3.3 / 103.3445
  19214. }
  19215. },
  19216. back: {
  19217. height: math.unit(8 + 4 / 12, "feet"),
  19218. weight: math.unit(600, "lb"),
  19219. name: "Back",
  19220. image: {
  19221. source: "./media/characters/dragonien/back.svg",
  19222. extra: 776 / 746,
  19223. bottom: 6.4 / 782.0616
  19224. }
  19225. },
  19226. foot: {
  19227. height: math.unit(1.54, "feet"),
  19228. name: "Foot",
  19229. image: {
  19230. source: "./media/characters/dragonien/foot.svg",
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(8 + 4 / 12, "feet"),
  19238. default: true
  19239. },
  19240. {
  19241. name: "Macro",
  19242. height: math.unit(200, "feet")
  19243. },
  19244. {
  19245. name: "Megamacro",
  19246. height: math.unit(1, "mile")
  19247. },
  19248. {
  19249. name: "Gigamacro",
  19250. height: math.unit(1000, "miles")
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19256. {
  19257. front: {
  19258. height: math.unit(5 + 2 / 12, "feet"),
  19259. weight: math.unit(110, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/desta/front.svg",
  19263. extra: 767 / 726,
  19264. bottom: 11.7 / 779
  19265. }
  19266. },
  19267. back: {
  19268. height: math.unit(5 + 2 / 12, "feet"),
  19269. weight: math.unit(110, "lb"),
  19270. name: "Back",
  19271. image: {
  19272. source: "./media/characters/desta/back.svg",
  19273. extra: 777 / 728,
  19274. bottom: 6 / 784
  19275. }
  19276. },
  19277. frontAlt: {
  19278. height: math.unit(5 + 2 / 12, "feet"),
  19279. weight: math.unit(110, "lb"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/desta/front-alt.svg",
  19283. extra: 1482 / 1417
  19284. }
  19285. },
  19286. side: {
  19287. height: math.unit(5 + 2 / 12, "feet"),
  19288. weight: math.unit(110, "lb"),
  19289. name: "Side",
  19290. image: {
  19291. source: "./media/characters/desta/side.svg",
  19292. extra: 2579 / 2491,
  19293. bottom: 0.053
  19294. }
  19295. },
  19296. },
  19297. [
  19298. {
  19299. name: "Micro",
  19300. height: math.unit(6, "inches")
  19301. },
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(5 + 2 / 12, "feet"),
  19305. default: true
  19306. },
  19307. {
  19308. name: "Macro",
  19309. height: math.unit(62, "feet")
  19310. },
  19311. {
  19312. name: "Megamacro",
  19313. height: math.unit(1800, "feet")
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19319. {
  19320. front: {
  19321. height: math.unit(10, "feet"),
  19322. weight: math.unit(700, "lb"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/storm-alystar/front.svg",
  19326. extra: 2112 / 1898,
  19327. bottom: 0.034
  19328. }
  19329. },
  19330. },
  19331. [
  19332. {
  19333. name: "Micro",
  19334. height: math.unit(3.5, "inches")
  19335. },
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(10, "feet"),
  19339. default: true
  19340. },
  19341. {
  19342. name: "Macro",
  19343. height: math.unit(400, "feet")
  19344. },
  19345. {
  19346. name: "Deific",
  19347. height: math.unit(60, "miles")
  19348. },
  19349. ]
  19350. ))
  19351. characterMakers.push(() => makeCharacter(
  19352. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19353. {
  19354. front: {
  19355. height: math.unit(2.35, "meters"),
  19356. weight: math.unit(119, "kg"),
  19357. name: "Front",
  19358. image: {
  19359. source: "./media/characters/ilia/front.svg",
  19360. extra: 1285 / 1255,
  19361. bottom: 0.06
  19362. }
  19363. },
  19364. },
  19365. [
  19366. {
  19367. name: "Normal",
  19368. height: math.unit(2.35, "meters")
  19369. },
  19370. {
  19371. name: "Macro",
  19372. height: math.unit(140, "meters"),
  19373. default: true
  19374. },
  19375. {
  19376. name: "Megamacro",
  19377. height: math.unit(100, "miles")
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(6 + 5 / 12, "feet"),
  19386. weight: math.unit(190, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/kingdead/front.svg",
  19390. extra: 1228 / 1177
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Micro",
  19397. height: math.unit(7, "inches")
  19398. },
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(6 + 5 / 12, "feet")
  19402. },
  19403. {
  19404. name: "Macro",
  19405. height: math.unit(150, "feet"),
  19406. default: true
  19407. },
  19408. {
  19409. name: "Megamacro",
  19410. height: math.unit(200, "miles")
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(8, "feet"),
  19419. weight: math.unit(600, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/kyrehx/front.svg",
  19423. extra: 1195 / 1095,
  19424. bottom: 0.034
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Micro",
  19431. height: math.unit(2, "inches")
  19432. },
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(8, "feet"),
  19436. default: true
  19437. },
  19438. {
  19439. name: "Macro",
  19440. height: math.unit(255, "feet")
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19446. {
  19447. front: {
  19448. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19449. weight: math.unit(184, "lb"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/xang/front.svg",
  19453. extra: 845 / 755
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19461. default: true
  19462. },
  19463. {
  19464. name: "Macro",
  19465. height: math.unit(0.935 * 146, "feet")
  19466. },
  19467. {
  19468. name: "Megamacro",
  19469. height: math.unit(0.935 * 3, "miles")
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19475. {
  19476. frontDressed: {
  19477. height: math.unit(5 + 7 / 12, "feet"),
  19478. weight: math.unit(140, "lb"),
  19479. name: "Front (Dressed)",
  19480. image: {
  19481. source: "./media/characters/doc-weardno/front-dressed.svg",
  19482. extra: 263 / 234
  19483. }
  19484. },
  19485. backDressed: {
  19486. height: math.unit(5 + 7 / 12, "feet"),
  19487. weight: math.unit(140, "lb"),
  19488. name: "Back (Dressed)",
  19489. image: {
  19490. source: "./media/characters/doc-weardno/back-dressed.svg",
  19491. extra: 266 / 238
  19492. }
  19493. },
  19494. front: {
  19495. height: math.unit(5 + 7 / 12, "feet"),
  19496. weight: math.unit(140, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/doc-weardno/front.svg",
  19500. extra: 254 / 233
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Micro",
  19507. height: math.unit(3, "inches")
  19508. },
  19509. {
  19510. name: "Normal",
  19511. height: math.unit(5 + 7 / 12, "feet"),
  19512. default: true
  19513. },
  19514. {
  19515. name: "Macro",
  19516. height: math.unit(25, "feet")
  19517. },
  19518. {
  19519. name: "Megamacro",
  19520. height: math.unit(2, "miles")
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19526. {
  19527. front: {
  19528. height: math.unit(6 + 2 / 12, "feet"),
  19529. weight: math.unit(153, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/seth-whilst/front.svg",
  19533. bottom: 0.07
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Micro",
  19540. height: math.unit(5, "inches")
  19541. },
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(6 + 2 / 12, "feet"),
  19545. default: true
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19551. {
  19552. front: {
  19553. height: math.unit(3, "inches"),
  19554. weight: math.unit(8, "grams"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/pocket-jabari/front.svg",
  19558. extra: 1024 / 974,
  19559. bottom: 0.039
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Minimicro",
  19566. height: math.unit(8, "mm")
  19567. },
  19568. {
  19569. name: "Micro",
  19570. height: math.unit(3, "inches"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(3, "feet")
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19581. {
  19582. frontDressed: {
  19583. height: math.unit(15, "feet"),
  19584. weight: math.unit(3280, "lb"),
  19585. name: "Front (Dressed)",
  19586. image: {
  19587. source: "./media/characters/sapphy/front-dressed.svg",
  19588. extra: 1951/1654,
  19589. bottom: 194/2145
  19590. },
  19591. form: "anthro",
  19592. default: true
  19593. },
  19594. backDressed: {
  19595. height: math.unit(15, "feet"),
  19596. weight: math.unit(3280, "lb"),
  19597. name: "Back (Dressed)",
  19598. image: {
  19599. source: "./media/characters/sapphy/back-dressed.svg",
  19600. extra: 2058/1918,
  19601. bottom: 125/2183
  19602. },
  19603. form: "anthro"
  19604. },
  19605. frontNude: {
  19606. height: math.unit(15, "feet"),
  19607. weight: math.unit(3280, "lb"),
  19608. name: "Front (Nude)",
  19609. image: {
  19610. source: "./media/characters/sapphy/front-nude.svg",
  19611. extra: 1951/1654,
  19612. bottom: 194/2145
  19613. },
  19614. form: "anthro"
  19615. },
  19616. backNude: {
  19617. height: math.unit(15, "feet"),
  19618. weight: math.unit(3280, "lb"),
  19619. name: "Back (Nude)",
  19620. image: {
  19621. source: "./media/characters/sapphy/back-nude.svg",
  19622. extra: 2058/1918,
  19623. bottom: 125/2183
  19624. },
  19625. form: "anthro"
  19626. },
  19627. full: {
  19628. height: math.unit(15, "feet"),
  19629. weight: math.unit(3280, "lb"),
  19630. name: "Full",
  19631. image: {
  19632. source: "./media/characters/sapphy/full.svg",
  19633. extra: 1396/1317,
  19634. bottom: 44/1440
  19635. },
  19636. form: "anthro"
  19637. },
  19638. dick: {
  19639. height: math.unit(3.8, "feet"),
  19640. name: "Dick",
  19641. image: {
  19642. source: "./media/characters/sapphy/dick.svg"
  19643. },
  19644. form: "anthro"
  19645. },
  19646. feral: {
  19647. height: math.unit(35, "feet"),
  19648. weight: math.unit(160, "tons"),
  19649. name: "Feral",
  19650. image: {
  19651. source: "./media/characters/sapphy/feral.svg",
  19652. extra: 1050/573,
  19653. bottom: 60/1110
  19654. },
  19655. form: "feral",
  19656. default: true
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(15, "feet"),
  19663. form: "anthro"
  19664. },
  19665. {
  19666. name: "Casual Macro",
  19667. height: math.unit(120, "feet"),
  19668. form: "anthro"
  19669. },
  19670. {
  19671. name: "Macro",
  19672. height: math.unit(2150, "feet"),
  19673. default: true,
  19674. form: "anthro"
  19675. },
  19676. {
  19677. name: "Megamacro",
  19678. height: math.unit(8, "miles"),
  19679. form: "anthro"
  19680. },
  19681. {
  19682. name: "Galaxy Mom",
  19683. height: math.unit(6, "megalightyears"),
  19684. form: "anthro"
  19685. },
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(35, "feet"),
  19689. form: "feral",
  19690. default: true
  19691. },
  19692. {
  19693. name: "Macro",
  19694. height: math.unit(300, "feet"),
  19695. form: "feral"
  19696. },
  19697. {
  19698. name: "Galaxy Mom",
  19699. height: math.unit(10, "megalightyears"),
  19700. form: "feral"
  19701. },
  19702. ],
  19703. {
  19704. "anthro": {
  19705. name: "Anthro",
  19706. default: true
  19707. },
  19708. "feral": {
  19709. name: "Feral"
  19710. }
  19711. }
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19715. {
  19716. front: {
  19717. height: math.unit(6, "feet"),
  19718. weight: math.unit(170, "lb"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/kiro/front.svg",
  19722. extra: 1064 / 1012,
  19723. bottom: 0.052
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Micro",
  19730. height: math.unit(6, "inches")
  19731. },
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(6, "feet"),
  19735. default: true
  19736. },
  19737. {
  19738. name: "Macro",
  19739. height: math.unit(72, "feet")
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(5 + 9 / 12, "feet"),
  19748. weight: math.unit(175, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/irishfox/front.svg",
  19752. extra: 1912 / 1680,
  19753. bottom: 0.02
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Nano",
  19760. height: math.unit(1, "mm")
  19761. },
  19762. {
  19763. name: "Micro",
  19764. height: math.unit(2, "inches")
  19765. },
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(5 + 9 / 12, "feet"),
  19769. default: true
  19770. },
  19771. {
  19772. name: "Macro",
  19773. height: math.unit(45, "feet")
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(6 + 1 / 12, "feet"),
  19782. weight: math.unit(75, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/aronai-sieyes/front.svg",
  19786. extra: 1532/1450,
  19787. bottom: 42/1574
  19788. }
  19789. },
  19790. side: {
  19791. height: math.unit(6 + 1 / 12, "feet"),
  19792. weight: math.unit(75, "lb"),
  19793. name: "Side",
  19794. image: {
  19795. source: "./media/characters/aronai-sieyes/side.svg",
  19796. extra: 1422/1365,
  19797. bottom: 148/1570
  19798. }
  19799. },
  19800. back: {
  19801. height: math.unit(6 + 1 / 12, "feet"),
  19802. weight: math.unit(75, "lb"),
  19803. name: "Back",
  19804. image: {
  19805. source: "./media/characters/aronai-sieyes/back.svg",
  19806. extra: 1526/1464,
  19807. bottom: 51/1577
  19808. }
  19809. },
  19810. dressed: {
  19811. height: math.unit(6 + 1 / 12, "feet"),
  19812. weight: math.unit(75, "lb"),
  19813. name: "Dressed",
  19814. image: {
  19815. source: "./media/characters/aronai-sieyes/dressed.svg",
  19816. extra: 1559/1483,
  19817. bottom: 39/1598
  19818. }
  19819. },
  19820. slit: {
  19821. height: math.unit(1.3, "feet"),
  19822. name: "Slit",
  19823. image: {
  19824. source: "./media/characters/aronai-sieyes/slit.svg"
  19825. }
  19826. },
  19827. slitSpread: {
  19828. height: math.unit(0.9, "feet"),
  19829. name: "Slit (Spread)",
  19830. image: {
  19831. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19832. }
  19833. },
  19834. rump: {
  19835. height: math.unit(1.3, "feet"),
  19836. name: "Rump",
  19837. image: {
  19838. source: "./media/characters/aronai-sieyes/rump.svg"
  19839. }
  19840. },
  19841. maw: {
  19842. height: math.unit(1.25, "feet"),
  19843. name: "Maw",
  19844. image: {
  19845. source: "./media/characters/aronai-sieyes/maw.svg"
  19846. }
  19847. },
  19848. feral: {
  19849. height: math.unit(18, "feet"),
  19850. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19851. name: "Feral",
  19852. image: {
  19853. source: "./media/characters/aronai-sieyes/feral.svg",
  19854. extra: 1530 / 1240,
  19855. bottom: 0.035
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Micro",
  19862. height: math.unit(2, "inches")
  19863. },
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(6 + 1 / 12, "feet"),
  19867. default: true
  19868. }
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19873. {
  19874. front: {
  19875. height: math.unit(12, "feet"),
  19876. weight: math.unit(410, "kg"),
  19877. name: "Front",
  19878. image: {
  19879. source: "./media/characters/xuna/front.svg",
  19880. extra: 2184 / 1980
  19881. }
  19882. },
  19883. side: {
  19884. height: math.unit(12, "feet"),
  19885. weight: math.unit(410, "kg"),
  19886. name: "Side",
  19887. image: {
  19888. source: "./media/characters/xuna/side.svg",
  19889. extra: 2184 / 1980
  19890. }
  19891. },
  19892. back: {
  19893. height: math.unit(12, "feet"),
  19894. weight: math.unit(410, "kg"),
  19895. name: "Back",
  19896. image: {
  19897. source: "./media/characters/xuna/back.svg",
  19898. extra: 2184 / 1980
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Nano glow",
  19905. height: math.unit(10, "nm")
  19906. },
  19907. {
  19908. name: "Micro floof",
  19909. height: math.unit(0.3, "m")
  19910. },
  19911. {
  19912. name: "Huggable softy boi",
  19913. height: math.unit(3.6576, "m"),
  19914. default: true
  19915. },
  19916. {
  19917. name: "Admirable floof",
  19918. height: math.unit(80, "meters")
  19919. },
  19920. {
  19921. name: "Gentle macro",
  19922. height: math.unit(300, "meters")
  19923. },
  19924. {
  19925. name: "Very careful floof",
  19926. height: math.unit(3200, "meters")
  19927. },
  19928. {
  19929. name: "The mega floof",
  19930. height: math.unit(36000, "meters")
  19931. },
  19932. {
  19933. name: "Giga-fur-Wicker",
  19934. height: math.unit(4800000, "meters")
  19935. },
  19936. {
  19937. name: "Licky world",
  19938. height: math.unit(20000000, "meters")
  19939. },
  19940. {
  19941. name: "Floofy cyan sun",
  19942. height: math.unit(1500000000, "meters")
  19943. },
  19944. {
  19945. name: "Milky Wicker",
  19946. height: math.unit(1000000000000000000000, "meters")
  19947. },
  19948. {
  19949. name: "The observing Wicker",
  19950. height: math.unit(999999999999999999999999999, "meters")
  19951. },
  19952. ]
  19953. ))
  19954. characterMakers.push(() => makeCharacter(
  19955. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19956. {
  19957. front: {
  19958. height: math.unit(5 + 9 / 12, "feet"),
  19959. weight: math.unit(150, "lb"),
  19960. name: "Front",
  19961. image: {
  19962. source: "./media/characters/arokha-sieyes/front.svg",
  19963. extra: 1425 / 1284,
  19964. bottom: 0.05
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(5 + 9 / 12, "feet")
  19972. },
  19973. {
  19974. name: "Macro",
  19975. height: math.unit(30, "meters"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(6, "feet"),
  19985. weight: math.unit(180, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/arokh-sieyes/front.svg",
  19989. extra: 1830 / 1769,
  19990. bottom: 0.01
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(6, "feet")
  19998. },
  19999. {
  20000. name: "Macro",
  20001. height: math.unit(30, "meters"),
  20002. default: true
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20008. {
  20009. side: {
  20010. height: math.unit(13 + 1 / 12, "feet"),
  20011. weight: math.unit(8.5, "tonnes"),
  20012. name: "Side",
  20013. image: {
  20014. source: "./media/characters/goldeneye/side.svg",
  20015. extra: 1182 / 778,
  20016. bottom: 0.067
  20017. }
  20018. },
  20019. paw: {
  20020. height: math.unit(3.4, "feet"),
  20021. name: "Paw",
  20022. image: {
  20023. source: "./media/characters/goldeneye/paw.svg"
  20024. }
  20025. },
  20026. },
  20027. [
  20028. {
  20029. name: "Normal",
  20030. height: math.unit(13 + 1 / 12, "feet"),
  20031. default: true
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20037. {
  20038. front: {
  20039. height: math.unit(6 + 1 / 12, "feet"),
  20040. weight: math.unit(210, "lb"),
  20041. name: "Front",
  20042. image: {
  20043. source: "./media/characters/leonardo-lycheborne/front.svg",
  20044. extra: 776/723,
  20045. bottom: 34/810
  20046. }
  20047. },
  20048. side: {
  20049. height: math.unit(6 + 1 / 12, "feet"),
  20050. weight: math.unit(210, "lb"),
  20051. name: "Side",
  20052. image: {
  20053. source: "./media/characters/leonardo-lycheborne/side.svg",
  20054. extra: 780/728,
  20055. bottom: 12/792
  20056. }
  20057. },
  20058. back: {
  20059. height: math.unit(6 + 1 / 12, "feet"),
  20060. weight: math.unit(210, "lb"),
  20061. name: "Back",
  20062. image: {
  20063. source: "./media/characters/leonardo-lycheborne/back.svg",
  20064. extra: 775/721,
  20065. bottom: 17/792
  20066. }
  20067. },
  20068. hand: {
  20069. height: math.unit(1.08, "feet"),
  20070. name: "Hand",
  20071. image: {
  20072. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20073. }
  20074. },
  20075. foot: {
  20076. height: math.unit(1.32, "feet"),
  20077. name: "Foot",
  20078. image: {
  20079. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20080. }
  20081. },
  20082. maw: {
  20083. height: math.unit(1, "feet"),
  20084. name: "Maw",
  20085. image: {
  20086. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20087. }
  20088. },
  20089. were: {
  20090. height: math.unit(20, "feet"),
  20091. weight: math.unit(7800, "lb"),
  20092. name: "Were",
  20093. image: {
  20094. source: "./media/characters/leonardo-lycheborne/were.svg",
  20095. extra: 1224/1165,
  20096. bottom: 72/1296
  20097. }
  20098. },
  20099. feral: {
  20100. height: math.unit(7.5, "feet"),
  20101. weight: math.unit(600, "lb"),
  20102. name: "Feral",
  20103. image: {
  20104. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20105. extra: 797/702,
  20106. bottom: 139/936
  20107. }
  20108. },
  20109. taur: {
  20110. height: math.unit(11, "feet"),
  20111. weight: math.unit(3300, "lb"),
  20112. name: "Taur",
  20113. image: {
  20114. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20115. extra: 1271/1197,
  20116. bottom: 47/1318
  20117. }
  20118. },
  20119. barghest: {
  20120. height: math.unit(11, "feet"),
  20121. weight: math.unit(1300, "lb"),
  20122. name: "Barghest",
  20123. image: {
  20124. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20125. extra: 1291/1204,
  20126. bottom: 37/1328
  20127. }
  20128. },
  20129. dick: {
  20130. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20131. name: "Dick",
  20132. image: {
  20133. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20134. }
  20135. },
  20136. dickWere: {
  20137. height: math.unit((20) / 3.8, "feet"),
  20138. name: "Dick (Were)",
  20139. image: {
  20140. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(6 + 1 / 12, "feet"),
  20148. default: true
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20154. {
  20155. front: {
  20156. height: math.unit(10, "feet"),
  20157. weight: math.unit(350, "lb"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/jet/front.svg",
  20161. extra: 2050 / 1980,
  20162. bottom: 0.013
  20163. }
  20164. },
  20165. back: {
  20166. height: math.unit(10, "feet"),
  20167. weight: math.unit(350, "lb"),
  20168. name: "Back",
  20169. image: {
  20170. source: "./media/characters/jet/back.svg",
  20171. extra: 2050 / 1980,
  20172. bottom: 0.013
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Micro",
  20179. height: math.unit(6, "inches")
  20180. },
  20181. {
  20182. name: "Normal",
  20183. height: math.unit(10, "feet"),
  20184. default: true
  20185. },
  20186. {
  20187. name: "Macro",
  20188. height: math.unit(100, "feet")
  20189. },
  20190. ]
  20191. ))
  20192. characterMakers.push(() => makeCharacter(
  20193. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20194. {
  20195. front: {
  20196. height: math.unit(15, "feet"),
  20197. weight: math.unit(2800, "lb"),
  20198. name: "Front",
  20199. image: {
  20200. source: "./media/characters/tanarath/front.svg",
  20201. extra: 2392 / 2220,
  20202. bottom: 0.03
  20203. }
  20204. },
  20205. back: {
  20206. height: math.unit(15, "feet"),
  20207. weight: math.unit(2800, "lb"),
  20208. name: "Back",
  20209. image: {
  20210. source: "./media/characters/tanarath/back.svg",
  20211. extra: 2392 / 2220,
  20212. bottom: 0.03
  20213. }
  20214. },
  20215. },
  20216. [
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(15, "feet"),
  20220. default: true
  20221. },
  20222. ]
  20223. ))
  20224. characterMakers.push(() => makeCharacter(
  20225. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20226. {
  20227. front: {
  20228. height: math.unit(7 + 1 / 12, "feet"),
  20229. weight: math.unit(175, "lb"),
  20230. name: "Front",
  20231. image: {
  20232. source: "./media/characters/patty-cattybatty/front.svg",
  20233. extra: 908 / 874,
  20234. bottom: 0.025
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Micro",
  20241. height: math.unit(1, "inch")
  20242. },
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(7 + 1 / 12, "feet")
  20246. },
  20247. {
  20248. name: "Mini Macro",
  20249. height: math.unit(155, "feet")
  20250. },
  20251. {
  20252. name: "Macro",
  20253. height: math.unit(1077, "feet")
  20254. },
  20255. {
  20256. name: "Mega Macro",
  20257. height: math.unit(47650, "feet"),
  20258. default: true
  20259. },
  20260. {
  20261. name: "Giga Macro",
  20262. height: math.unit(440, "miles")
  20263. },
  20264. {
  20265. name: "Tera Macro",
  20266. height: math.unit(8700, "miles")
  20267. },
  20268. {
  20269. name: "Planetary Macro",
  20270. height: math.unit(32700, "miles")
  20271. },
  20272. {
  20273. name: "Solar Macro",
  20274. height: math.unit(550000, "miles")
  20275. },
  20276. {
  20277. name: "Celestial Macro",
  20278. height: math.unit(2.5, "AU")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(4 + 5 / 12, "feet"),
  20287. weight: math.unit(90, "lb"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/cappu/front.svg",
  20291. extra: 1247 / 1152,
  20292. bottom: 0.012
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(4 + 5 / 12, "feet"),
  20300. default: true
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20306. {
  20307. frontDressed: {
  20308. height: math.unit(70, "cm"),
  20309. weight: math.unit(6, "kg"),
  20310. name: "Front (Dressed)",
  20311. image: {
  20312. source: "./media/characters/sebi/front-dressed.svg",
  20313. extra: 713.5 / 686.5,
  20314. bottom: 0.003
  20315. }
  20316. },
  20317. front: {
  20318. height: math.unit(70, "cm"),
  20319. weight: math.unit(5, "kg"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/sebi/front.svg",
  20323. extra: 713.5 / 686.5,
  20324. bottom: 0.003
  20325. }
  20326. }
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(70, "cm"),
  20332. default: true
  20333. },
  20334. {
  20335. name: "Macro",
  20336. height: math.unit(8, "meters")
  20337. },
  20338. ]
  20339. ))
  20340. characterMakers.push(() => makeCharacter(
  20341. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20342. {
  20343. front: {
  20344. height: math.unit(6, "feet"),
  20345. weight: math.unit(150, "lb"),
  20346. name: "Front",
  20347. image: {
  20348. source: "./media/characters/typhek/front.svg",
  20349. extra: 1948 / 1929,
  20350. bottom: 0.025
  20351. }
  20352. },
  20353. side: {
  20354. height: math.unit(6, "feet"),
  20355. weight: math.unit(150, "lb"),
  20356. name: "Side",
  20357. image: {
  20358. source: "./media/characters/typhek/side.svg",
  20359. extra: 2034 / 2010,
  20360. bottom: 0.003
  20361. }
  20362. },
  20363. back: {
  20364. height: math.unit(6, "feet"),
  20365. weight: math.unit(150, "lb"),
  20366. name: "Back",
  20367. image: {
  20368. source: "./media/characters/typhek/back.svg",
  20369. extra: 2005 / 1978,
  20370. bottom: 0.004
  20371. }
  20372. },
  20373. palm: {
  20374. height: math.unit(1.2, "feet"),
  20375. name: "Palm",
  20376. image: {
  20377. source: "./media/characters/typhek/palm.svg"
  20378. }
  20379. },
  20380. fist: {
  20381. height: math.unit(1.1, "feet"),
  20382. name: "Fist",
  20383. image: {
  20384. source: "./media/characters/typhek/fist.svg"
  20385. }
  20386. },
  20387. foot: {
  20388. height: math.unit(1.57, "feet"),
  20389. name: "Foot",
  20390. image: {
  20391. source: "./media/characters/typhek/foot.svg"
  20392. }
  20393. },
  20394. sole: {
  20395. height: math.unit(2.05, "feet"),
  20396. name: "Sole",
  20397. image: {
  20398. source: "./media/characters/typhek/sole.svg"
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Macro",
  20405. height: math.unit(40, "stories"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Megamacro",
  20410. height: math.unit(1, "mile")
  20411. },
  20412. {
  20413. name: "Gigamacro",
  20414. height: math.unit(4000, "solarradii")
  20415. },
  20416. {
  20417. name: "Universal",
  20418. height: math.unit(1.1, "universes")
  20419. }
  20420. ]
  20421. ))
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20424. {
  20425. side: {
  20426. height: math.unit(5 + 7 / 12, "feet"),
  20427. weight: math.unit(150, "lb"),
  20428. name: "Side",
  20429. image: {
  20430. source: "./media/characters/kassy/side.svg",
  20431. extra: 1280 / 1225,
  20432. bottom: 0.002
  20433. }
  20434. },
  20435. front: {
  20436. height: math.unit(5 + 7 / 12, "feet"),
  20437. weight: math.unit(150, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/kassy/front.svg",
  20441. extra: 1280 / 1225,
  20442. bottom: 0.025
  20443. }
  20444. },
  20445. back: {
  20446. height: math.unit(5 + 7 / 12, "feet"),
  20447. weight: math.unit(150, "lb"),
  20448. name: "Back",
  20449. image: {
  20450. source: "./media/characters/kassy/back.svg",
  20451. extra: 1280 / 1225,
  20452. bottom: 0.002
  20453. }
  20454. },
  20455. foot: {
  20456. height: math.unit(1.266, "feet"),
  20457. name: "Foot",
  20458. image: {
  20459. source: "./media/characters/kassy/foot.svg"
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(5 + 7 / 12, "feet")
  20467. },
  20468. {
  20469. name: "Macro",
  20470. height: math.unit(137, "feet"),
  20471. default: true
  20472. },
  20473. {
  20474. name: "Megamacro",
  20475. height: math.unit(1, "mile")
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(6 + 1 / 12, "feet"),
  20484. weight: math.unit(200, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/neil/front.svg",
  20488. extra: 1326 / 1250,
  20489. bottom: 0.023
  20490. }
  20491. },
  20492. },
  20493. [
  20494. {
  20495. name: "Normal",
  20496. height: math.unit(6 + 1 / 12, "feet"),
  20497. default: true
  20498. },
  20499. {
  20500. name: "Macro",
  20501. height: math.unit(200, "feet")
  20502. },
  20503. ]
  20504. ))
  20505. characterMakers.push(() => makeCharacter(
  20506. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20507. {
  20508. front: {
  20509. height: math.unit(5 + 9 / 12, "feet"),
  20510. weight: math.unit(190, "lb"),
  20511. name: "Front",
  20512. image: {
  20513. source: "./media/characters/atticus/front.svg",
  20514. extra: 2934 / 2785,
  20515. bottom: 0.025
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(5 + 9 / 12, "feet"),
  20523. default: true
  20524. },
  20525. {
  20526. name: "Macro",
  20527. height: math.unit(180, "feet")
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20533. {
  20534. side: {
  20535. height: math.unit(9, "feet"),
  20536. weight: math.unit(650, "lb"),
  20537. name: "Side",
  20538. image: {
  20539. source: "./media/characters/milo/side.svg",
  20540. extra: 2644 / 2310,
  20541. bottom: 0.032
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(9, "feet"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Macro",
  20553. height: math.unit(300, "feet")
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20559. {
  20560. side: {
  20561. height: math.unit(8, "meters"),
  20562. weight: math.unit(90000, "kg"),
  20563. name: "Side",
  20564. image: {
  20565. source: "./media/characters/ijzer/side.svg",
  20566. extra: 2756 / 1600,
  20567. bottom: 0.01
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Small",
  20574. height: math.unit(3, "meters")
  20575. },
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(8, "meters"),
  20579. default: true
  20580. },
  20581. {
  20582. name: "Normal+",
  20583. height: math.unit(10, "meters")
  20584. },
  20585. {
  20586. name: "Bigger",
  20587. height: math.unit(24, "meters")
  20588. },
  20589. {
  20590. name: "Huge",
  20591. height: math.unit(80, "meters")
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(6 + 2 / 12, "feet"),
  20600. weight: math.unit(153, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/luca-cervicum/front.svg",
  20604. extra: 370 / 327,
  20605. bottom: 0.015
  20606. }
  20607. },
  20608. back: {
  20609. height: math.unit(6 + 2 / 12, "feet"),
  20610. weight: math.unit(153, "lb"),
  20611. name: "Back",
  20612. image: {
  20613. source: "./media/characters/luca-cervicum/back.svg",
  20614. extra: 367 / 333,
  20615. bottom: 0.005
  20616. }
  20617. },
  20618. frontGear: {
  20619. height: math.unit(6 + 2 / 12, "feet"),
  20620. weight: math.unit(173, "lb"),
  20621. name: "Front (Gear)",
  20622. image: {
  20623. source: "./media/characters/luca-cervicum/front-gear.svg",
  20624. extra: 377 / 333,
  20625. bottom: 0.006
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(6 + 2 / 12, "feet"),
  20633. default: true
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(6 + 1 / 12, "feet"),
  20642. weight: math.unit(304, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/oliver/front.svg",
  20646. extra: 157 / 143,
  20647. bottom: 0.08
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(6 + 1 / 12, "feet"),
  20655. default: true
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(5 + 7 / 12, "feet"),
  20664. weight: math.unit(140, "lb"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/shane/front.svg",
  20668. extra: 304 / 289,
  20669. bottom: 0.005
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(5 + 7 / 12, "feet"),
  20677. default: true
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(5 + 9 / 12, "feet"),
  20686. weight: math.unit(178, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/shin/front.svg",
  20690. extra: 159 / 151,
  20691. bottom: 0.015
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(5 + 9 / 12, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20705. {
  20706. front: {
  20707. height: math.unit(5 + 10 / 12, "feet"),
  20708. weight: math.unit(168, "lb"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/xerxes/front.svg",
  20712. extra: 282 / 260,
  20713. bottom: 0.045
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(5 + 10 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(6 + 7 / 12, "feet"),
  20730. weight: math.unit(208, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/chaska/front.svg",
  20734. extra: 332 / 319,
  20735. bottom: 0.015
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(6 + 7 / 12, "feet"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(5 + 8 / 12, "feet"),
  20752. weight: math.unit(208, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/enuk/front.svg",
  20756. extra: 437 / 406,
  20757. bottom: 0.02
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(5 + 8 / 12, "feet"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20771. {
  20772. front: {
  20773. height: math.unit(5 + 10 / 12, "feet"),
  20774. weight: math.unit(252, "lb"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/bruun/front.svg",
  20778. extra: 197 / 187,
  20779. bottom: 0.012
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(5 + 10 / 12, "feet"),
  20787. default: true
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20793. {
  20794. front: {
  20795. height: math.unit(6 + 10 / 12, "feet"),
  20796. weight: math.unit(255, "lb"),
  20797. name: "Front",
  20798. image: {
  20799. source: "./media/characters/alexeev/front.svg",
  20800. extra: 213 / 200,
  20801. bottom: 0.05
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(6 + 10 / 12, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(2 + 8 / 12, "feet"),
  20818. weight: math.unit(22, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/evelyn/front.svg",
  20822. extra: 208 / 180
  20823. }
  20824. },
  20825. },
  20826. [
  20827. {
  20828. name: "Normal",
  20829. height: math.unit(2 + 8 / 12, "feet"),
  20830. default: true
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(5 + 9 / 12, "feet"),
  20839. weight: math.unit(139, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/inca/front.svg",
  20843. extra: 294 / 291,
  20844. bottom: 0.03
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(5 + 9 / 12, "feet"),
  20852. default: true
  20853. },
  20854. ]
  20855. ))
  20856. characterMakers.push(() => makeCharacter(
  20857. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20858. {
  20859. front: {
  20860. height: math.unit(6 + 3 / 12, "feet"),
  20861. weight: math.unit(185, "lb"),
  20862. name: "Front",
  20863. image: {
  20864. source: "./media/characters/mera/front.svg",
  20865. extra: 291 / 277,
  20866. bottom: 0.03
  20867. }
  20868. },
  20869. },
  20870. [
  20871. {
  20872. name: "Normal",
  20873. height: math.unit(6 + 3 / 12, "feet"),
  20874. default: true
  20875. },
  20876. ]
  20877. ))
  20878. characterMakers.push(() => makeCharacter(
  20879. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20880. {
  20881. front: {
  20882. height: math.unit(6 + 7 / 12, "feet"),
  20883. weight: math.unit(160, "lb"),
  20884. name: "Front",
  20885. image: {
  20886. source: "./media/characters/ceres/front.svg",
  20887. extra: 1023 / 950,
  20888. bottom: 0.027
  20889. }
  20890. },
  20891. back: {
  20892. height: math.unit(6 + 7 / 12, "feet"),
  20893. weight: math.unit(160, "lb"),
  20894. name: "Back",
  20895. image: {
  20896. source: "./media/characters/ceres/back.svg",
  20897. extra: 1023 / 950
  20898. }
  20899. },
  20900. },
  20901. [
  20902. {
  20903. name: "Normal",
  20904. height: math.unit(6 + 7 / 12, "feet"),
  20905. default: true
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20911. {
  20912. front: {
  20913. height: math.unit(5 + 10 / 12, "feet"),
  20914. weight: math.unit(150, "lb"),
  20915. name: "Front",
  20916. image: {
  20917. source: "./media/characters/kris/front.svg",
  20918. extra: 885 / 803,
  20919. bottom: 0.03
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Normal",
  20926. height: math.unit(5 + 10 / 12, "feet"),
  20927. default: true
  20928. },
  20929. ]
  20930. ))
  20931. characterMakers.push(() => makeCharacter(
  20932. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20933. {
  20934. front: {
  20935. height: math.unit(7, "feet"),
  20936. weight: math.unit(120, "kg"),
  20937. name: "Front",
  20938. image: {
  20939. source: "./media/characters/taluthus/front.svg",
  20940. extra: 903 / 833,
  20941. bottom: 0.015
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Normal",
  20948. height: math.unit(7, "feet"),
  20949. default: true
  20950. },
  20951. {
  20952. name: "Macro",
  20953. height: math.unit(300, "feet")
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(5 + 9 / 12, "feet"),
  20962. weight: math.unit(145, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/dawn/front.svg",
  20966. extra: 2094 / 2016,
  20967. bottom: 0.025
  20968. }
  20969. },
  20970. back: {
  20971. height: math.unit(5 + 9 / 12, "feet"),
  20972. weight: math.unit(160, "lb"),
  20973. name: "Back",
  20974. image: {
  20975. source: "./media/characters/dawn/back.svg",
  20976. extra: 2112 / 2080,
  20977. bottom: 0.005
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(6 + 7 / 12, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20991. {
  20992. anthro: {
  20993. height: math.unit(8 + 3 / 12, "feet"),
  20994. weight: math.unit(450, "lb"),
  20995. name: "Anthro",
  20996. image: {
  20997. source: "./media/characters/arador/anthro.svg",
  20998. extra: 1835 / 1718,
  20999. bottom: 0.025
  21000. }
  21001. },
  21002. feral: {
  21003. height: math.unit(4, "feet"),
  21004. weight: math.unit(200, "lb"),
  21005. name: "Feral",
  21006. image: {
  21007. source: "./media/characters/arador/feral.svg",
  21008. extra: 1683 / 1514,
  21009. bottom: 0.07
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(8 + 3 / 12, "feet")
  21017. },
  21018. {
  21019. name: "Macro",
  21020. height: math.unit(82.5, "feet"),
  21021. default: true
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(5 + 10 / 12, "feet"),
  21030. weight: math.unit(125, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/dharsi/front.svg",
  21034. extra: 716 / 630,
  21035. bottom: 0.035
  21036. }
  21037. },
  21038. },
  21039. [
  21040. {
  21041. name: "Nano",
  21042. height: math.unit(100, "nm")
  21043. },
  21044. {
  21045. name: "Micro",
  21046. height: math.unit(2, "inches")
  21047. },
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(5 + 10 / 12, "feet"),
  21051. default: true
  21052. },
  21053. {
  21054. name: "Macro",
  21055. height: math.unit(1000, "feet")
  21056. },
  21057. {
  21058. name: "Megamacro",
  21059. height: math.unit(10, "miles")
  21060. },
  21061. {
  21062. name: "Gigamacro",
  21063. height: math.unit(3000, "miles")
  21064. },
  21065. {
  21066. name: "Teramacro",
  21067. height: math.unit(500000, "miles")
  21068. },
  21069. {
  21070. name: "Teramacro+",
  21071. height: math.unit(30, "galaxies")
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21077. {
  21078. front: {
  21079. height: math.unit(6, "feet"),
  21080. weight: math.unit(150, "lb"),
  21081. name: "Front",
  21082. image: {
  21083. source: "./media/characters/deathy/front.svg",
  21084. extra: 1552 / 1463,
  21085. bottom: 0.025
  21086. }
  21087. },
  21088. side: {
  21089. height: math.unit(6, "feet"),
  21090. weight: math.unit(150, "lb"),
  21091. name: "Side",
  21092. image: {
  21093. source: "./media/characters/deathy/side.svg",
  21094. extra: 1604 / 1455,
  21095. bottom: 0.025
  21096. }
  21097. },
  21098. back: {
  21099. height: math.unit(6, "feet"),
  21100. weight: math.unit(150, "lb"),
  21101. name: "Back",
  21102. image: {
  21103. source: "./media/characters/deathy/back.svg",
  21104. extra: 1580 / 1463,
  21105. bottom: 0.005
  21106. }
  21107. },
  21108. },
  21109. [
  21110. {
  21111. name: "Micro",
  21112. height: math.unit(5, "millimeters")
  21113. },
  21114. {
  21115. name: "Normal",
  21116. height: math.unit(6 + 5 / 12, "feet"),
  21117. default: true
  21118. },
  21119. ]
  21120. ))
  21121. characterMakers.push(() => makeCharacter(
  21122. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21123. {
  21124. front: {
  21125. height: math.unit(16, "feet"),
  21126. weight: math.unit(4000, "lb"),
  21127. name: "Front",
  21128. image: {
  21129. source: "./media/characters/juniper/front.svg",
  21130. bottom: 0.04
  21131. }
  21132. },
  21133. },
  21134. [
  21135. {
  21136. name: "Normal",
  21137. height: math.unit(16, "feet"),
  21138. default: true
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(6, "feet"),
  21147. weight: math.unit(150, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/hipster/front.svg",
  21151. extra: 1312 / 1209,
  21152. bottom: 0.025
  21153. }
  21154. },
  21155. back: {
  21156. height: math.unit(6, "feet"),
  21157. weight: math.unit(150, "lb"),
  21158. name: "Back",
  21159. image: {
  21160. source: "./media/characters/hipster/back.svg",
  21161. extra: 1281 / 1196,
  21162. bottom: 0.01
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Micro",
  21169. height: math.unit(1, "mm")
  21170. },
  21171. {
  21172. name: "Normal",
  21173. height: math.unit(4, "inches"),
  21174. default: true
  21175. },
  21176. {
  21177. name: "Macro",
  21178. height: math.unit(500, "feet")
  21179. },
  21180. {
  21181. name: "Megamacro",
  21182. height: math.unit(1000, "miles")
  21183. },
  21184. ]
  21185. ))
  21186. characterMakers.push(() => makeCharacter(
  21187. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21188. {
  21189. front: {
  21190. height: math.unit(6, "feet"),
  21191. weight: math.unit(150, "lb"),
  21192. name: "Front",
  21193. image: {
  21194. source: "./media/characters/tendirmuldr/front.svg",
  21195. extra: 1878 / 1772,
  21196. bottom: 0.015
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Megamacro",
  21203. height: math.unit(1500, "miles"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21210. {
  21211. front: {
  21212. height: math.unit(14, "feet"),
  21213. weight: math.unit(12000, "lb"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/mort/front.svg",
  21217. extra: 365 / 318,
  21218. bottom: 0.01
  21219. }
  21220. },
  21221. side: {
  21222. height: math.unit(14, "feet"),
  21223. weight: math.unit(12000, "lb"),
  21224. name: "Side",
  21225. image: {
  21226. source: "./media/characters/mort/side.svg",
  21227. extra: 365 / 318,
  21228. bottom: 0.052
  21229. },
  21230. default: true
  21231. },
  21232. back: {
  21233. height: math.unit(14, "feet"),
  21234. weight: math.unit(12000, "lb"),
  21235. name: "Back",
  21236. image: {
  21237. source: "./media/characters/mort/back.svg",
  21238. extra: 371 / 332,
  21239. bottom: 0.18
  21240. }
  21241. },
  21242. },
  21243. [
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(14, "feet"),
  21247. default: true
  21248. },
  21249. ]
  21250. ))
  21251. characterMakers.push(() => makeCharacter(
  21252. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21253. {
  21254. front: {
  21255. height: math.unit(8, "feet"),
  21256. weight: math.unit(1, "ton"),
  21257. name: "Front",
  21258. image: {
  21259. source: "./media/characters/lycoa/front.svg",
  21260. extra: 1836/1728,
  21261. bottom: 81/1917
  21262. }
  21263. },
  21264. back: {
  21265. height: math.unit(8, "feet"),
  21266. weight: math.unit(1, "ton"),
  21267. name: "Back",
  21268. image: {
  21269. source: "./media/characters/lycoa/back.svg",
  21270. extra: 1785/1720,
  21271. bottom: 91/1876
  21272. }
  21273. },
  21274. head: {
  21275. height: math.unit(1.6243, "feet"),
  21276. name: "Head",
  21277. image: {
  21278. source: "./media/characters/lycoa/head.svg",
  21279. extra: 1011/782,
  21280. bottom: 0/1011
  21281. }
  21282. },
  21283. tailmaw: {
  21284. height: math.unit(1.9, "feet"),
  21285. name: "Tailmaw",
  21286. image: {
  21287. source: "./media/characters/lycoa/tailmaw.svg"
  21288. }
  21289. },
  21290. tentacles: {
  21291. height: math.unit(2.1, "feet"),
  21292. name: "Tentacles",
  21293. image: {
  21294. source: "./media/characters/lycoa/tentacles.svg"
  21295. }
  21296. },
  21297. dick: {
  21298. height: math.unit(1.73, "feet"),
  21299. name: "Dick",
  21300. image: {
  21301. source: "./media/characters/lycoa/dick.svg"
  21302. }
  21303. },
  21304. },
  21305. [
  21306. {
  21307. name: "Normal",
  21308. height: math.unit(8, "feet"),
  21309. default: true
  21310. },
  21311. {
  21312. name: "Macro",
  21313. height: math.unit(30, "feet")
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21319. {
  21320. front: {
  21321. height: math.unit(4 + 2 / 12, "feet"),
  21322. weight: math.unit(70, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/naldara/front.svg",
  21326. extra: 1664/1387,
  21327. bottom: 81/1745
  21328. },
  21329. form: "anthro",
  21330. default: true
  21331. },
  21332. naga: {
  21333. height: math.unit(20, "feet"),
  21334. weight: math.unit(15000, "kg"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/naldara/naga.svg",
  21338. extra: 1590/1396,
  21339. bottom: 285/1875
  21340. },
  21341. form: "naga",
  21342. default: true
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(4 + 2 / 12, "feet"),
  21349. form: "anthro",
  21350. default: true
  21351. },
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(20, "feet"),
  21355. form: "naga",
  21356. default: true
  21357. },
  21358. ],
  21359. {
  21360. "anthro": {
  21361. name: "Anthro",
  21362. default: true
  21363. },
  21364. "naga": {
  21365. name: "Naga"
  21366. }
  21367. }
  21368. ))
  21369. characterMakers.push(() => makeCharacter(
  21370. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21371. {
  21372. front: {
  21373. height: math.unit(13 + 7 / 12, "feet"),
  21374. weight: math.unit(1500, "lb"),
  21375. name: "Front",
  21376. image: {
  21377. source: "./media/characters/briar/front.svg",
  21378. extra: 1223/1157,
  21379. bottom: 123/1346
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(13 + 7 / 12, "feet"),
  21387. default: true
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21393. {
  21394. side: {
  21395. height: math.unit(16, "feet"),
  21396. weight: math.unit(500, "lb"),
  21397. name: "Side",
  21398. image: {
  21399. source: "./media/characters/vanguard/side.svg",
  21400. extra: 1022/914,
  21401. bottom: 30/1052
  21402. }
  21403. },
  21404. sideAlt: {
  21405. height: math.unit(10, "feet"),
  21406. weight: math.unit(500, "lb"),
  21407. name: "Side (Alt)",
  21408. image: {
  21409. source: "./media/characters/vanguard/side-alt.svg",
  21410. extra: 502 / 425,
  21411. bottom: 0.087
  21412. }
  21413. },
  21414. },
  21415. [
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(17.71, "feet"),
  21419. default: true
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(7.5, "feet"),
  21428. weight: math.unit(2, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/artemis/work-safe-front.svg",
  21432. extra: 1192 / 1075,
  21433. bottom: 0.07
  21434. },
  21435. form: "work-safe",
  21436. default: true
  21437. },
  21438. frontNsfw: {
  21439. height: math.unit(7.5, "feet"),
  21440. weight: math.unit(2, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/artemis/calibrating-front.svg",
  21444. extra: 1192 / 1075,
  21445. bottom: 0.07
  21446. },
  21447. form: "calibrating",
  21448. default: true
  21449. },
  21450. frontNsfwer: {
  21451. height: math.unit(7.5, "feet"),
  21452. weight: math.unit(2, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/artemis/oversize-load-front.svg",
  21456. extra: 1192 / 1075,
  21457. bottom: 0.07
  21458. },
  21459. form: "oversize-load",
  21460. default: true
  21461. },
  21462. side: {
  21463. height: math.unit(7.5, "feet"),
  21464. weight: math.unit(2, "lb"),
  21465. name: "Side",
  21466. image: {
  21467. source: "./media/characters/artemis/work-safe-side.svg",
  21468. extra: 1192 / 1075,
  21469. bottom: 0.07
  21470. },
  21471. form: "work-safe"
  21472. },
  21473. sideNsfw: {
  21474. height: math.unit(7.5, "feet"),
  21475. weight: math.unit(2, "lb"),
  21476. name: "Side",
  21477. image: {
  21478. source: "./media/characters/artemis/calibrating-side.svg",
  21479. extra: 1192 / 1075,
  21480. bottom: 0.07
  21481. },
  21482. form: "calibrating"
  21483. },
  21484. sideNsfwer: {
  21485. height: math.unit(7.5, "feet"),
  21486. weight: math.unit(2, "lb"),
  21487. name: "Side",
  21488. image: {
  21489. source: "./media/characters/artemis/oversize-load-side.svg",
  21490. extra: 1192 / 1075,
  21491. bottom: 0.07
  21492. },
  21493. form: "oversize-load"
  21494. },
  21495. maw: {
  21496. height: math.unit(1.1, "feet"),
  21497. name: "Maw",
  21498. image: {
  21499. source: "./media/characters/artemis/maw.svg"
  21500. },
  21501. form: "work-safe"
  21502. },
  21503. stomach: {
  21504. height: math.unit(0.95, "feet"),
  21505. name: "Stomach",
  21506. image: {
  21507. source: "./media/characters/artemis/stomach.svg"
  21508. },
  21509. form: "work-safe"
  21510. },
  21511. dickCanine: {
  21512. height: math.unit(1, "feet"),
  21513. name: "Dick (Canine)",
  21514. image: {
  21515. source: "./media/characters/artemis/dick-canine.svg"
  21516. },
  21517. form: "calibrating"
  21518. },
  21519. dickEquine: {
  21520. height: math.unit(0.85, "feet"),
  21521. name: "Dick (Equine)",
  21522. image: {
  21523. source: "./media/characters/artemis/dick-equine.svg"
  21524. },
  21525. form: "calibrating"
  21526. },
  21527. dickExotic: {
  21528. height: math.unit(0.85, "feet"),
  21529. name: "Dick (Exotic)",
  21530. image: {
  21531. source: "./media/characters/artemis/dick-exotic.svg"
  21532. },
  21533. form: "calibrating"
  21534. },
  21535. dickCanineBigger: {
  21536. height: math.unit(1 * 1.33, "feet"),
  21537. name: "Dick (Canine)",
  21538. image: {
  21539. source: "./media/characters/artemis/dick-canine.svg"
  21540. },
  21541. form: "oversize-load"
  21542. },
  21543. dickEquineBigger: {
  21544. height: math.unit(0.85 * 1.33, "feet"),
  21545. name: "Dick (Equine)",
  21546. image: {
  21547. source: "./media/characters/artemis/dick-equine.svg"
  21548. },
  21549. form: "oversize-load"
  21550. },
  21551. dickExoticBigger: {
  21552. height: math.unit(0.85 * 1.33, "feet"),
  21553. name: "Dick (Exotic)",
  21554. image: {
  21555. source: "./media/characters/artemis/dick-exotic.svg"
  21556. },
  21557. form: "oversize-load"
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(7.5, "feet"),
  21564. form: "work-safe",
  21565. default: true
  21566. },
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(7.5, "feet"),
  21570. form: "calibrating",
  21571. default: true
  21572. },
  21573. {
  21574. name: "Normal",
  21575. height: math.unit(7.5, "feet"),
  21576. form: "oversize-load",
  21577. default: true
  21578. },
  21579. {
  21580. name: "Enlarged",
  21581. height: math.unit(12, "feet"),
  21582. form: "work-safe",
  21583. },
  21584. {
  21585. name: "Enlarged",
  21586. height: math.unit(12, "feet"),
  21587. form: "calibrating",
  21588. },
  21589. {
  21590. name: "Enlarged",
  21591. height: math.unit(12, "feet"),
  21592. form: "oversize-load",
  21593. },
  21594. ],
  21595. {
  21596. "work-safe": {
  21597. name: "Work-Safe",
  21598. default: true
  21599. },
  21600. "calibrating": {
  21601. name: "Calibrating"
  21602. },
  21603. "oversize-load": {
  21604. name: "Oversize Load"
  21605. }
  21606. }
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21610. {
  21611. front: {
  21612. height: math.unit(5 + 3 / 12, "feet"),
  21613. weight: math.unit(160, "lb"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/kira/front.svg",
  21617. extra: 906 / 786,
  21618. bottom: 0.01
  21619. }
  21620. },
  21621. back: {
  21622. height: math.unit(5 + 3 / 12, "feet"),
  21623. weight: math.unit(160, "lb"),
  21624. name: "Back",
  21625. image: {
  21626. source: "./media/characters/kira/back.svg",
  21627. extra: 882 / 757,
  21628. bottom: 0.005
  21629. }
  21630. },
  21631. frontDressed: {
  21632. height: math.unit(5 + 3 / 12, "feet"),
  21633. weight: math.unit(160, "lb"),
  21634. name: "Front (Dressed)",
  21635. image: {
  21636. source: "./media/characters/kira/front-dressed.svg",
  21637. extra: 906 / 786,
  21638. bottom: 0.01
  21639. }
  21640. },
  21641. beans: {
  21642. height: math.unit(0.92, "feet"),
  21643. name: "Beans",
  21644. image: {
  21645. source: "./media/characters/kira/beans.svg"
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(5 + 3 / 12, "feet"),
  21653. default: true
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21659. {
  21660. front: {
  21661. height: math.unit(5 + 4 / 12, "feet"),
  21662. weight: math.unit(145, "lb"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/scramble/front.svg",
  21666. extra: 763 / 727,
  21667. bottom: 0.05
  21668. }
  21669. },
  21670. back: {
  21671. height: math.unit(5 + 4 / 12, "feet"),
  21672. weight: math.unit(145, "lb"),
  21673. name: "Back",
  21674. image: {
  21675. source: "./media/characters/scramble/back.svg",
  21676. extra: 826 / 737,
  21677. bottom: 0.002
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(5 + 4 / 12, "feet"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21691. {
  21692. side: {
  21693. height: math.unit(6 + 2 / 12, "feet"),
  21694. weight: math.unit(190, "lb"),
  21695. name: "Side",
  21696. image: {
  21697. source: "./media/characters/biscuit/side.svg",
  21698. extra: 858 / 791,
  21699. bottom: 0.044
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Normal",
  21706. height: math.unit(6 + 2 / 12, "feet"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21713. {
  21714. front: {
  21715. height: math.unit(5 + 2 / 12, "feet"),
  21716. weight: math.unit(120, "lb"),
  21717. name: "Front",
  21718. image: {
  21719. source: "./media/characters/poffin/front.svg",
  21720. extra: 786 / 680,
  21721. bottom: 0.005
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(5 + 2 / 12, "feet"),
  21729. default: true
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(6 + 3 / 12, "feet"),
  21738. weight: math.unit(519, "lb"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/dhari/front.svg",
  21742. extra: 1048 / 946,
  21743. bottom: 0.015
  21744. }
  21745. },
  21746. back: {
  21747. height: math.unit(6 + 3 / 12, "feet"),
  21748. weight: math.unit(519, "lb"),
  21749. name: "Back",
  21750. image: {
  21751. source: "./media/characters/dhari/back.svg",
  21752. extra: 1048 / 931,
  21753. bottom: 0.005
  21754. }
  21755. },
  21756. frontDressed: {
  21757. height: math.unit(6 + 3 / 12, "feet"),
  21758. weight: math.unit(519, "lb"),
  21759. name: "Front (Dressed)",
  21760. image: {
  21761. source: "./media/characters/dhari/front-dressed.svg",
  21762. extra: 1713 / 1546,
  21763. bottom: 0.02
  21764. }
  21765. },
  21766. backDressed: {
  21767. height: math.unit(6 + 3 / 12, "feet"),
  21768. weight: math.unit(519, "lb"),
  21769. name: "Back (Dressed)",
  21770. image: {
  21771. source: "./media/characters/dhari/back-dressed.svg",
  21772. extra: 1699 / 1537,
  21773. bottom: 0.01
  21774. }
  21775. },
  21776. maw: {
  21777. height: math.unit(0.95, "feet"),
  21778. name: "Maw",
  21779. image: {
  21780. source: "./media/characters/dhari/maw.svg"
  21781. }
  21782. },
  21783. wereFront: {
  21784. height: math.unit(12 + 8 / 12, "feet"),
  21785. weight: math.unit(4000, "lb"),
  21786. name: "Front (Were)",
  21787. image: {
  21788. source: "./media/characters/dhari/were-front.svg",
  21789. extra: 1065 / 969,
  21790. bottom: 0.015
  21791. }
  21792. },
  21793. wereBack: {
  21794. height: math.unit(12 + 8 / 12, "feet"),
  21795. weight: math.unit(4000, "lb"),
  21796. name: "Back (Were)",
  21797. image: {
  21798. source: "./media/characters/dhari/were-back.svg",
  21799. extra: 1065 / 969,
  21800. bottom: 0.012
  21801. }
  21802. },
  21803. wereMaw: {
  21804. height: math.unit(0.625, "meters"),
  21805. name: "Maw (Were)",
  21806. image: {
  21807. source: "./media/characters/dhari/were-maw.svg"
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(6 + 3 / 12, "feet"),
  21815. default: true
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21821. {
  21822. anthro: {
  21823. height: math.unit(5 + 7 / 12, "feet"),
  21824. weight: math.unit(175, "lb"),
  21825. name: "Anthro",
  21826. image: {
  21827. source: "./media/characters/rena-dyne/anthro.svg",
  21828. extra: 1849 / 1785,
  21829. bottom: 0.005
  21830. }
  21831. },
  21832. taur: {
  21833. height: math.unit(15 + 6 / 12, "feet"),
  21834. weight: math.unit(8000, "lb"),
  21835. name: "Taur",
  21836. image: {
  21837. source: "./media/characters/rena-dyne/taur.svg",
  21838. extra: 2315 / 2234,
  21839. bottom: 0.033
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Normal",
  21846. height: math.unit(5 + 7 / 12, "feet"),
  21847. default: true
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21853. {
  21854. front: {
  21855. height: math.unit(8, "feet"),
  21856. weight: math.unit(600, "lb"),
  21857. name: "Front",
  21858. image: {
  21859. source: "./media/characters/weremeep/front.svg",
  21860. extra: 967 / 862,
  21861. bottom: 0.01
  21862. }
  21863. },
  21864. },
  21865. [
  21866. {
  21867. name: "Normal",
  21868. height: math.unit(8, "feet"),
  21869. default: true
  21870. },
  21871. {
  21872. name: "Lorg",
  21873. height: math.unit(12, "feet")
  21874. },
  21875. {
  21876. name: "Oh Lawd She Comin'",
  21877. height: math.unit(20, "feet")
  21878. },
  21879. ]
  21880. ))
  21881. characterMakers.push(() => makeCharacter(
  21882. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21883. {
  21884. front: {
  21885. height: math.unit(4, "feet"),
  21886. weight: math.unit(90, "lb"),
  21887. name: "Front",
  21888. image: {
  21889. source: "./media/characters/reza/front.svg",
  21890. extra: 1183 / 1111,
  21891. bottom: 0.017
  21892. }
  21893. },
  21894. back: {
  21895. height: math.unit(4, "feet"),
  21896. weight: math.unit(90, "lb"),
  21897. name: "Back",
  21898. image: {
  21899. source: "./media/characters/reza/back.svg",
  21900. extra: 1183 / 1111,
  21901. bottom: 0.01
  21902. }
  21903. },
  21904. drake: {
  21905. height: math.unit(30, "feet"),
  21906. weight: math.unit(246960, "lb"),
  21907. name: "Drake",
  21908. image: {
  21909. source: "./media/characters/reza/drake.svg",
  21910. extra: 2350 / 2024,
  21911. bottom: 60.7 / 2403
  21912. }
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(4, "feet"),
  21919. default: true
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21925. {
  21926. side: {
  21927. height: math.unit(15, "feet"),
  21928. weight: math.unit(14, "tons"),
  21929. name: "Side",
  21930. image: {
  21931. source: "./media/characters/athea/side.svg",
  21932. extra: 960 / 540,
  21933. bottom: 0.003
  21934. }
  21935. },
  21936. sitting: {
  21937. height: math.unit(6 * 2.85, "feet"),
  21938. weight: math.unit(14, "tons"),
  21939. name: "Sitting",
  21940. image: {
  21941. source: "./media/characters/athea/sitting.svg",
  21942. extra: 621 / 581,
  21943. bottom: 0.075
  21944. }
  21945. },
  21946. maw: {
  21947. height: math.unit(7.59498031496063, "feet"),
  21948. name: "Maw",
  21949. image: {
  21950. source: "./media/characters/athea/maw.svg"
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Lap Cat",
  21957. height: math.unit(2.5, "feet")
  21958. },
  21959. {
  21960. name: "Minimacro",
  21961. height: math.unit(15, "feet"),
  21962. default: true
  21963. },
  21964. {
  21965. name: "Macro",
  21966. height: math.unit(120, "feet")
  21967. },
  21968. {
  21969. name: "Macro+",
  21970. height: math.unit(640, "feet")
  21971. },
  21972. {
  21973. name: "Colossus",
  21974. height: math.unit(2.2, "miles")
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(8 + 8 / 12, "feet"),
  21983. weight: math.unit(130, "kg"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/seroko/front.svg",
  21987. extra: 1385 / 1280,
  21988. bottom: 0.025
  21989. }
  21990. },
  21991. back: {
  21992. height: math.unit(8 + 8 / 12, "feet"),
  21993. weight: math.unit(130, "kg"),
  21994. name: "Back",
  21995. image: {
  21996. source: "./media/characters/seroko/back.svg",
  21997. extra: 1369 / 1238,
  21998. bottom: 0.018
  21999. }
  22000. },
  22001. frontDressed: {
  22002. height: math.unit(8 + 8 / 12, "feet"),
  22003. weight: math.unit(130, "kg"),
  22004. name: "Front (Dressed)",
  22005. image: {
  22006. source: "./media/characters/seroko/front-dressed.svg",
  22007. extra: 1366 / 1275,
  22008. bottom: 0.03
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Normal",
  22015. height: math.unit(8 + 8 / 12, "feet"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22022. {
  22023. front: {
  22024. height: math.unit(5.5, "feet"),
  22025. weight: math.unit(160, "lb"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/quatzi/front.svg",
  22029. extra: 2346 / 2242,
  22030. bottom: 0.015
  22031. }
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Normal",
  22037. height: math.unit(5.5, "feet"),
  22038. default: true
  22039. },
  22040. {
  22041. name: "Big",
  22042. height: math.unit(7.7, "feet")
  22043. },
  22044. ]
  22045. ))
  22046. characterMakers.push(() => makeCharacter(
  22047. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22048. {
  22049. front: {
  22050. height: math.unit(5 + 11 / 12, "feet"),
  22051. weight: math.unit(180, "lb"),
  22052. name: "Front",
  22053. image: {
  22054. source: "./media/characters/sen/front.svg",
  22055. extra: 1321 / 1254,
  22056. bottom: 0.015
  22057. }
  22058. },
  22059. side: {
  22060. height: math.unit(5 + 11 / 12, "feet"),
  22061. weight: math.unit(180, "lb"),
  22062. name: "Side",
  22063. image: {
  22064. source: "./media/characters/sen/side.svg",
  22065. extra: 1321 / 1254,
  22066. bottom: 0.007
  22067. }
  22068. },
  22069. back: {
  22070. height: math.unit(5 + 11 / 12, "feet"),
  22071. weight: math.unit(180, "lb"),
  22072. name: "Back",
  22073. image: {
  22074. source: "./media/characters/sen/back.svg",
  22075. extra: 1321 / 1254
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Normal",
  22082. height: math.unit(5 + 11 / 12, "feet"),
  22083. default: true
  22084. },
  22085. ]
  22086. ))
  22087. characterMakers.push(() => makeCharacter(
  22088. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22089. {
  22090. front: {
  22091. height: math.unit(166.6, "cm"),
  22092. weight: math.unit(66.6, "kg"),
  22093. name: "Front",
  22094. image: {
  22095. source: "./media/characters/fruity/front.svg",
  22096. extra: 1510 / 1386,
  22097. bottom: 0.04
  22098. }
  22099. },
  22100. back: {
  22101. height: math.unit(166.6, "cm"),
  22102. weight: math.unit(66.6, "lb"),
  22103. name: "Back",
  22104. image: {
  22105. source: "./media/characters/fruity/back.svg",
  22106. extra: 1563 / 1435,
  22107. bottom: 0.005
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(166.6, "cm"),
  22115. default: true
  22116. },
  22117. {
  22118. name: "Demonic",
  22119. height: math.unit(166.6, "feet")
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22125. {
  22126. side: {
  22127. height: math.unit(10, "feet"),
  22128. weight: math.unit(500, "lb"),
  22129. name: "Side",
  22130. image: {
  22131. source: "./media/characters/zost/side.svg",
  22132. extra: 2870/2533,
  22133. bottom: 252/3122
  22134. }
  22135. },
  22136. mawFront: {
  22137. height: math.unit(1.08, "meters"),
  22138. name: "Maw (Front)",
  22139. image: {
  22140. source: "./media/characters/zost/maw-front.svg"
  22141. }
  22142. },
  22143. mawSide: {
  22144. height: math.unit(2.66, "feet"),
  22145. name: "Maw (Side)",
  22146. image: {
  22147. source: "./media/characters/zost/maw-side.svg"
  22148. }
  22149. },
  22150. wingspan: {
  22151. height: math.unit(7.4, "feet"),
  22152. name: "Wingspan",
  22153. image: {
  22154. source: "./media/characters/zost/wingspan.svg"
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(10, "feet"),
  22162. default: true
  22163. },
  22164. ]
  22165. ))
  22166. characterMakers.push(() => makeCharacter(
  22167. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22168. {
  22169. front: {
  22170. height: math.unit(5 + 4 / 12, "feet"),
  22171. weight: math.unit(120, "lb"),
  22172. name: "Front",
  22173. image: {
  22174. source: "./media/characters/luci/front.svg",
  22175. extra: 1985 / 1884,
  22176. bottom: 0.04
  22177. }
  22178. },
  22179. back: {
  22180. height: math.unit(5 + 4 / 12, "feet"),
  22181. weight: math.unit(120, "lb"),
  22182. name: "Back",
  22183. image: {
  22184. source: "./media/characters/luci/back.svg",
  22185. extra: 1892 / 1791,
  22186. bottom: 0.002
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(5 + 4 / 12, "feet"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22200. {
  22201. front: {
  22202. height: math.unit(1500, "feet"),
  22203. weight: math.unit(3.8e6, "tons"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/2th/front.svg",
  22207. extra: 3489 / 3350,
  22208. bottom: 0.1
  22209. }
  22210. },
  22211. foot: {
  22212. height: math.unit(461, "feet"),
  22213. name: "Foot",
  22214. image: {
  22215. source: "./media/characters/2th/foot.svg"
  22216. }
  22217. },
  22218. },
  22219. [
  22220. {
  22221. name: "\"Micro\"",
  22222. height: math.unit(15 + 7 / 12, "feet")
  22223. },
  22224. {
  22225. name: "Normal",
  22226. height: math.unit(1500, "feet"),
  22227. default: true
  22228. },
  22229. {
  22230. name: "Macro",
  22231. height: math.unit(5000, "feet")
  22232. },
  22233. {
  22234. name: "Megamacro",
  22235. height: math.unit(15, "miles")
  22236. },
  22237. {
  22238. name: "Gigamacro",
  22239. height: math.unit(4000, "miles")
  22240. },
  22241. {
  22242. name: "Galactic",
  22243. height: math.unit(50, "AU")
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22249. {
  22250. front: {
  22251. height: math.unit(5 + 6 / 12, "feet"),
  22252. weight: math.unit(220, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/amethyst/front.svg",
  22256. extra: 2078 / 2040,
  22257. bottom: 0.045
  22258. }
  22259. },
  22260. back: {
  22261. height: math.unit(5 + 6 / 12, "feet"),
  22262. weight: math.unit(220, "lb"),
  22263. name: "Back",
  22264. image: {
  22265. source: "./media/characters/amethyst/back.svg",
  22266. extra: 2021 / 1989,
  22267. bottom: 0.02
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(5 + 6 / 12, "feet"),
  22275. default: true
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22281. {
  22282. front: {
  22283. height: math.unit(4 + 11 / 12, "feet"),
  22284. weight: math.unit(120, "lb"),
  22285. name: "Front",
  22286. image: {
  22287. source: "./media/characters/yumi-akiyama/front.svg",
  22288. extra: 1327 / 1235,
  22289. bottom: 0.02
  22290. }
  22291. },
  22292. back: {
  22293. height: math.unit(4 + 11 / 12, "feet"),
  22294. weight: math.unit(120, "lb"),
  22295. name: "Back",
  22296. image: {
  22297. source: "./media/characters/yumi-akiyama/back.svg",
  22298. extra: 1287 / 1245,
  22299. bottom: 0.002
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Galactic",
  22306. height: math.unit(50, "galaxies"),
  22307. default: true
  22308. },
  22309. {
  22310. name: "Universal",
  22311. height: math.unit(100, "universes")
  22312. },
  22313. ]
  22314. ))
  22315. characterMakers.push(() => makeCharacter(
  22316. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22317. {
  22318. front: {
  22319. height: math.unit(8, "feet"),
  22320. weight: math.unit(500, "lb"),
  22321. name: "Front",
  22322. image: {
  22323. source: "./media/characters/rifter-yrmori/front.svg",
  22324. extra: 1180 / 1125,
  22325. bottom: 0.02
  22326. }
  22327. },
  22328. back: {
  22329. height: math.unit(8, "feet"),
  22330. weight: math.unit(500, "lb"),
  22331. name: "Back",
  22332. image: {
  22333. source: "./media/characters/rifter-yrmori/back.svg",
  22334. extra: 1190 / 1145,
  22335. bottom: 0.001
  22336. }
  22337. },
  22338. wings: {
  22339. height: math.unit(7.75, "feet"),
  22340. weight: math.unit(500, "lb"),
  22341. name: "Wings",
  22342. image: {
  22343. source: "./media/characters/rifter-yrmori/wings.svg",
  22344. extra: 1357 / 1285
  22345. }
  22346. },
  22347. maw: {
  22348. height: math.unit(0.8, "feet"),
  22349. name: "Maw",
  22350. image: {
  22351. source: "./media/characters/rifter-yrmori/maw.svg"
  22352. }
  22353. },
  22354. mawfront: {
  22355. height: math.unit(1.45, "feet"),
  22356. name: "Maw (Front)",
  22357. image: {
  22358. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22359. }
  22360. },
  22361. },
  22362. [
  22363. {
  22364. name: "Normal",
  22365. height: math.unit(8, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Macro",
  22370. height: math.unit(42, "meters")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22376. {
  22377. were: {
  22378. height: math.unit(25 + 6 / 12, "feet"),
  22379. weight: math.unit(10000, "lb"),
  22380. name: "Were",
  22381. image: {
  22382. source: "./media/characters/tahajin/were.svg",
  22383. extra: 801 / 770,
  22384. bottom: 0.042
  22385. }
  22386. },
  22387. aquatic: {
  22388. height: math.unit(6 + 4 / 12, "feet"),
  22389. weight: math.unit(160, "lb"),
  22390. name: "Aquatic",
  22391. image: {
  22392. source: "./media/characters/tahajin/aquatic.svg",
  22393. extra: 572 / 542,
  22394. bottom: 0.04
  22395. }
  22396. },
  22397. chow: {
  22398. height: math.unit(8 + 11 / 12, "feet"),
  22399. weight: math.unit(450, "lb"),
  22400. name: "Chow",
  22401. image: {
  22402. source: "./media/characters/tahajin/chow.svg",
  22403. extra: 660 / 640,
  22404. bottom: 0.015
  22405. }
  22406. },
  22407. demiNaga: {
  22408. height: math.unit(6 + 8 / 12, "feet"),
  22409. weight: math.unit(300, "lb"),
  22410. name: "Demi Naga",
  22411. image: {
  22412. source: "./media/characters/tahajin/demi-naga.svg",
  22413. extra: 643 / 615,
  22414. bottom: 0.1
  22415. }
  22416. },
  22417. data: {
  22418. height: math.unit(5, "inches"),
  22419. weight: math.unit(0.1, "lb"),
  22420. name: "Data",
  22421. image: {
  22422. source: "./media/characters/tahajin/data.svg"
  22423. }
  22424. },
  22425. fluu: {
  22426. height: math.unit(5 + 7 / 12, "feet"),
  22427. weight: math.unit(140, "lb"),
  22428. name: "Fluu",
  22429. image: {
  22430. source: "./media/characters/tahajin/fluu.svg",
  22431. extra: 628 / 592,
  22432. bottom: 0.02
  22433. }
  22434. },
  22435. starWarrior: {
  22436. height: math.unit(4 + 5 / 12, "feet"),
  22437. weight: math.unit(50, "lb"),
  22438. name: "Star Warrior",
  22439. image: {
  22440. source: "./media/characters/tahajin/star-warrior.svg"
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(25 + 6 / 12, "feet"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22454. {
  22455. front: {
  22456. height: math.unit(8, "feet"),
  22457. weight: math.unit(350, "lb"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/gabira/front.svg",
  22461. extra: 608 / 580,
  22462. bottom: 0.03
  22463. }
  22464. },
  22465. back: {
  22466. height: math.unit(8, "feet"),
  22467. weight: math.unit(350, "lb"),
  22468. name: "Back",
  22469. image: {
  22470. source: "./media/characters/gabira/back.svg",
  22471. extra: 608 / 580,
  22472. bottom: 0.03
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Normal",
  22479. height: math.unit(8, "feet"),
  22480. default: true
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(5 + 3 / 12, "feet"),
  22489. weight: math.unit(137, "lb"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/sasha-katraine/front.svg",
  22493. extra: 1745/1694,
  22494. bottom: 37/1782
  22495. }
  22496. },
  22497. back: {
  22498. height: math.unit(5 + 3 / 12, "feet"),
  22499. weight: math.unit(137, "lb"),
  22500. name: "Back",
  22501. image: {
  22502. source: "./media/characters/sasha-katraine/back.svg",
  22503. extra: 1776/1699,
  22504. bottom: 26/1802
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Micro",
  22511. height: math.unit(5, "inches")
  22512. },
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(5 + 3 / 12, "feet"),
  22516. default: true
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22522. {
  22523. side: {
  22524. height: math.unit(4, "inches"),
  22525. weight: math.unit(200, "grams"),
  22526. name: "Side",
  22527. image: {
  22528. source: "./media/characters/der/side.svg",
  22529. extra: 719 / 400,
  22530. bottom: 30.6 / 749.9187
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Micro",
  22537. height: math.unit(4, "inches"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22544. {
  22545. side: {
  22546. height: math.unit(30, "meters"),
  22547. weight: math.unit(700, "tonnes"),
  22548. name: "Side",
  22549. image: {
  22550. source: "./media/characters/fixerdragon/side.svg",
  22551. extra: (1293.0514 - 116.03) / 1106.86,
  22552. bottom: 116.03 / 1293.0514
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Planck",
  22559. height: math.unit(1.6e-35, "meters")
  22560. },
  22561. {
  22562. name: "Micro",
  22563. height: math.unit(0.4, "meters")
  22564. },
  22565. {
  22566. name: "Normal",
  22567. height: math.unit(30, "meters"),
  22568. default: true
  22569. },
  22570. {
  22571. name: "Megamacro",
  22572. height: math.unit(1.2, "megameters")
  22573. },
  22574. {
  22575. name: "Teramacro",
  22576. height: math.unit(130, "terameters")
  22577. },
  22578. {
  22579. name: "Yottamacro",
  22580. height: math.unit(6200, "yottameters")
  22581. },
  22582. ]
  22583. ));
  22584. characterMakers.push(() => makeCharacter(
  22585. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22586. {
  22587. front: {
  22588. height: math.unit(8, "feet"),
  22589. weight: math.unit(250, "lb"),
  22590. name: "Front",
  22591. image: {
  22592. source: "./media/characters/kite/front.svg",
  22593. extra: 2796 / 2659,
  22594. bottom: 0.002
  22595. }
  22596. },
  22597. },
  22598. [
  22599. {
  22600. name: "Normal",
  22601. height: math.unit(8, "feet"),
  22602. default: true
  22603. },
  22604. {
  22605. name: "Macro",
  22606. height: math.unit(360, "feet")
  22607. },
  22608. {
  22609. name: "Megamacro",
  22610. height: math.unit(1500, "feet")
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(5 + 11/12, "feet"),
  22619. weight: math.unit(170, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/poojawa-vynar/front.svg",
  22623. extra: 1735/1585,
  22624. bottom: 96/1831
  22625. }
  22626. },
  22627. back: {
  22628. height: math.unit(5 + 11/12, "feet"),
  22629. weight: math.unit(170, "lb"),
  22630. name: "Back",
  22631. image: {
  22632. source: "./media/characters/poojawa-vynar/back.svg",
  22633. extra: 1749/1607,
  22634. bottom: 28/1777
  22635. }
  22636. },
  22637. male: {
  22638. height: math.unit(5 + 11/12, "feet"),
  22639. weight: math.unit(170, "lb"),
  22640. name: "Male",
  22641. image: {
  22642. source: "./media/characters/poojawa-vynar/male.svg",
  22643. extra: 1855/1713,
  22644. bottom: 63/1918
  22645. }
  22646. },
  22647. taur: {
  22648. height: math.unit(5 + 11/12, "feet"),
  22649. weight: math.unit(170, "lb"),
  22650. name: "Taur",
  22651. image: {
  22652. source: "./media/characters/poojawa-vynar/taur.svg",
  22653. extra: 1151/1059,
  22654. bottom: 356/1507
  22655. }
  22656. },
  22657. frontDressed: {
  22658. height: math.unit(5 + 11/12, "feet"),
  22659. weight: math.unit(170, "lb"),
  22660. name: "Front (Dressed)",
  22661. image: {
  22662. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22663. extra: 1735/1585,
  22664. bottom: 96/1831
  22665. }
  22666. },
  22667. backDressed: {
  22668. height: math.unit(5 + 11/12, "feet"),
  22669. weight: math.unit(170, "lb"),
  22670. name: "Back (Dressed)",
  22671. image: {
  22672. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22673. extra: 1749/1607,
  22674. bottom: 28/1777
  22675. }
  22676. },
  22677. maleDressed: {
  22678. height: math.unit(5 + 11/12, "feet"),
  22679. weight: math.unit(170, "lb"),
  22680. name: "Male (Dressed)",
  22681. image: {
  22682. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22683. extra: 1855/1713,
  22684. bottom: 63/1918
  22685. }
  22686. },
  22687. taurDressed: {
  22688. height: math.unit(5 + 11/12, "feet"),
  22689. weight: math.unit(170, "lb"),
  22690. name: "Taur (Dressed)",
  22691. image: {
  22692. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22693. extra: 1151/1059,
  22694. bottom: 356/1507
  22695. }
  22696. },
  22697. maw: {
  22698. height: math.unit(1.46, "feet"),
  22699. name: "Maw",
  22700. image: {
  22701. source: "./media/characters/poojawa-vynar/maw.svg"
  22702. }
  22703. },
  22704. head: {
  22705. height: math.unit(2.34, "feet"),
  22706. name: "Head",
  22707. image: {
  22708. source: "./media/characters/poojawa-vynar/head.svg"
  22709. }
  22710. },
  22711. paw: {
  22712. height: math.unit(1.61, "feet"),
  22713. name: "Paw",
  22714. image: {
  22715. source: "./media/characters/poojawa-vynar/paw.svg"
  22716. }
  22717. },
  22718. pawToering: {
  22719. height: math.unit(1.72, "feet"),
  22720. name: "Paw (Toering)",
  22721. image: {
  22722. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22723. }
  22724. },
  22725. toering: {
  22726. height: math.unit(2.9, "inches"),
  22727. name: "Toering",
  22728. image: {
  22729. source: "./media/characters/poojawa-vynar/toering.svg"
  22730. }
  22731. },
  22732. shaft: {
  22733. height: math.unit(0.625, "feet"),
  22734. name: "Shaft",
  22735. image: {
  22736. source: "./media/characters/poojawa-vynar/shaft.svg"
  22737. }
  22738. },
  22739. spade: {
  22740. height: math.unit(0.42, "feet"),
  22741. name: "Spade",
  22742. image: {
  22743. source: "./media/characters/poojawa-vynar/spade.svg"
  22744. }
  22745. },
  22746. },
  22747. [
  22748. {
  22749. name: "Shortstack",
  22750. height: math.unit(4, "feet")
  22751. },
  22752. {
  22753. name: "Normal",
  22754. height: math.unit(5 + 11 / 12, "feet"),
  22755. default: true
  22756. },
  22757. {
  22758. name: "Tauric",
  22759. height: math.unit(4, "meters")
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(293, "meters"),
  22768. weight: math.unit(70400, "tons"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/violette/front.svg",
  22772. extra: 1227 / 1180,
  22773. bottom: 0.005
  22774. }
  22775. },
  22776. back: {
  22777. height: math.unit(293, "meters"),
  22778. weight: math.unit(70400, "tons"),
  22779. name: "Back",
  22780. image: {
  22781. source: "./media/characters/violette/back.svg",
  22782. extra: 1227 / 1180,
  22783. bottom: 0.005
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Macro",
  22790. height: math.unit(293, "meters"),
  22791. default: true
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22797. {
  22798. front: {
  22799. height: math.unit(1050, "feet"),
  22800. weight: math.unit(200000, "tons"),
  22801. name: "Front",
  22802. image: {
  22803. source: "./media/characters/alessandra/front.svg",
  22804. extra: 960 / 912,
  22805. bottom: 0.06
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Macro",
  22812. height: math.unit(1050, "feet")
  22813. },
  22814. {
  22815. name: "Macro+",
  22816. height: math.unit(900, "meters"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22823. {
  22824. front: {
  22825. height: math.unit(5, "feet"),
  22826. weight: math.unit(187, "lb"),
  22827. name: "Front",
  22828. image: {
  22829. source: "./media/characters/person/front.svg",
  22830. extra: 3087 / 2945,
  22831. bottom: 91 / 3181
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Micro",
  22838. height: math.unit(3, "inches")
  22839. },
  22840. {
  22841. name: "Normal",
  22842. height: math.unit(5, "feet"),
  22843. default: true
  22844. },
  22845. {
  22846. name: "Macro",
  22847. height: math.unit(90, "feet")
  22848. },
  22849. {
  22850. name: "Max Size",
  22851. height: math.unit(280, "feet")
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22857. {
  22858. front: {
  22859. height: math.unit(4.5, "meters"),
  22860. weight: math.unit(3200, "lb"),
  22861. name: "Front",
  22862. image: {
  22863. source: "./media/characters/ty/front.svg",
  22864. extra: 1038 / 960,
  22865. bottom: 31.156 / 1068
  22866. }
  22867. },
  22868. back: {
  22869. height: math.unit(4.5, "meters"),
  22870. weight: math.unit(3200, "lb"),
  22871. name: "Back",
  22872. image: {
  22873. source: "./media/characters/ty/back.svg",
  22874. extra: 1044 / 966,
  22875. bottom: 7.48 / 1049
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(4.5, "meters"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(5 + 4 / 12, "feet"),
  22892. weight: math.unit(115, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/rocky/front.svg",
  22896. extra: 1012 / 975,
  22897. bottom: 54 / 1066
  22898. }
  22899. },
  22900. },
  22901. [
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(5 + 4 / 12, "feet"),
  22905. default: true
  22906. },
  22907. ]
  22908. ))
  22909. characterMakers.push(() => makeCharacter(
  22910. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22911. {
  22912. upright: {
  22913. height: math.unit(6, "meters"),
  22914. weight: math.unit(4000, "kg"),
  22915. name: "Upright",
  22916. image: {
  22917. source: "./media/characters/ruin/upright.svg",
  22918. extra: 668 / 661,
  22919. bottom: 42 / 799.8396
  22920. }
  22921. },
  22922. },
  22923. [
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(6, "meters"),
  22927. default: true
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22933. {
  22934. front: {
  22935. height: math.unit(5, "feet"),
  22936. weight: math.unit(106, "lb"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/robin/front.svg",
  22940. extra: 862 / 799,
  22941. bottom: 42.4 / 914.8856
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(5, "feet"),
  22949. default: true
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22955. {
  22956. side: {
  22957. height: math.unit(3, "feet"),
  22958. weight: math.unit(225, "lb"),
  22959. name: "Side",
  22960. image: {
  22961. source: "./media/characters/saian/side.svg",
  22962. extra: 566 / 356,
  22963. bottom: 79.7 / 643
  22964. }
  22965. },
  22966. maw: {
  22967. height: math.unit(2.85, "feet"),
  22968. name: "Maw",
  22969. image: {
  22970. source: "./media/characters/saian/maw.svg"
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(3, "feet"),
  22978. default: true
  22979. },
  22980. ]
  22981. ))
  22982. characterMakers.push(() => makeCharacter(
  22983. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22984. {
  22985. side: {
  22986. height: math.unit(8, "feet"),
  22987. weight: math.unit(300, "lb"),
  22988. name: "Side",
  22989. image: {
  22990. source: "./media/characters/equus-silvermane/side.svg",
  22991. extra: 2176 / 2050,
  22992. bottom: 65.7 / 2245
  22993. }
  22994. },
  22995. front: {
  22996. height: math.unit(8, "feet"),
  22997. weight: math.unit(300, "lb"),
  22998. name: "Front",
  22999. image: {
  23000. source: "./media/characters/equus-silvermane/front.svg",
  23001. extra: 4633 / 4400,
  23002. bottom: 71.3 / 4706.915
  23003. }
  23004. },
  23005. sideStepping: {
  23006. height: math.unit(8, "feet"),
  23007. weight: math.unit(300, "lb"),
  23008. name: "Side (Stepping)",
  23009. image: {
  23010. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23011. extra: 1968 / 1860,
  23012. bottom: 16.4 / 1989
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(8, "feet")
  23020. },
  23021. {
  23022. name: "Minimacro",
  23023. height: math.unit(75, "feet"),
  23024. default: true
  23025. },
  23026. {
  23027. name: "Macro",
  23028. height: math.unit(150, "feet")
  23029. },
  23030. {
  23031. name: "Macro+",
  23032. height: math.unit(1000, "feet")
  23033. },
  23034. {
  23035. name: "Megamacro",
  23036. height: math.unit(1, "mile")
  23037. },
  23038. ]
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23042. {
  23043. side: {
  23044. height: math.unit(20, "feet"),
  23045. weight: math.unit(30000, "kg"),
  23046. name: "Side",
  23047. image: {
  23048. source: "./media/characters/windar/side.svg",
  23049. extra: 1491 / 1248,
  23050. bottom: 82.56 / 1568
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Normal",
  23057. height: math.unit(20, "feet"),
  23058. default: true
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23064. {
  23065. side: {
  23066. height: math.unit(15.66, "feet"),
  23067. weight: math.unit(150, "lb"),
  23068. name: "Side",
  23069. image: {
  23070. source: "./media/characters/melody/side.svg",
  23071. extra: 1097 / 944,
  23072. bottom: 11.8 / 1109
  23073. }
  23074. },
  23075. sideOutfit: {
  23076. height: math.unit(15.66, "feet"),
  23077. weight: math.unit(150, "lb"),
  23078. name: "Side (Outfit)",
  23079. image: {
  23080. source: "./media/characters/melody/side-outfit.svg",
  23081. extra: 1097 / 944,
  23082. bottom: 11.8 / 1109
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(15.66, "feet"),
  23090. default: true
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23096. {
  23097. armoredFront: {
  23098. height: math.unit(8, "feet"),
  23099. weight: math.unit(325, "lb"),
  23100. name: "Front",
  23101. image: {
  23102. source: "./media/characters/windera/armored-front.svg",
  23103. extra: 1830/1598,
  23104. bottom: 151/1981
  23105. },
  23106. form: "armored",
  23107. default: true
  23108. },
  23109. macroFront: {
  23110. height: math.unit(70, "feet"),
  23111. weight: math.unit(315453, "lb"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/windera/macro-front.svg",
  23115. extra: 963/883,
  23116. bottom: 23/986
  23117. },
  23118. form: "macro",
  23119. default: true
  23120. },
  23121. },
  23122. [
  23123. {
  23124. name: "Normal",
  23125. height: math.unit(8, "feet"),
  23126. default: true,
  23127. form: "armored"
  23128. },
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(70, "feet"),
  23132. default: true,
  23133. form: "macro"
  23134. },
  23135. ],
  23136. {
  23137. "armored": {
  23138. name: "Armored",
  23139. default: true
  23140. },
  23141. "macro": {
  23142. name: "Macro",
  23143. },
  23144. }
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23148. {
  23149. front: {
  23150. height: math.unit(28.75, "feet"),
  23151. weight: math.unit(2000, "kg"),
  23152. name: "Front",
  23153. image: {
  23154. source: "./media/characters/sonear/front.svg",
  23155. extra: 1041.1 / 964.9,
  23156. bottom: 53.7 / 1096.6
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(28.75, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23170. {
  23171. side: {
  23172. height: math.unit(25.5, "feet"),
  23173. weight: math.unit(23000, "kg"),
  23174. name: "Side",
  23175. image: {
  23176. source: "./media/characters/kanara/side.svg"
  23177. }
  23178. },
  23179. },
  23180. [
  23181. {
  23182. name: "Normal",
  23183. height: math.unit(25.5, "feet"),
  23184. default: true
  23185. },
  23186. ]
  23187. ))
  23188. characterMakers.push(() => makeCharacter(
  23189. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23190. {
  23191. side: {
  23192. height: math.unit(10, "feet"),
  23193. weight: math.unit(1000, "kg"),
  23194. name: "Side",
  23195. image: {
  23196. source: "./media/characters/ereus/side.svg",
  23197. extra: 1157 / 959,
  23198. bottom: 153 / 1312.5
  23199. }
  23200. },
  23201. },
  23202. [
  23203. {
  23204. name: "Normal",
  23205. height: math.unit(10, "feet"),
  23206. default: true
  23207. },
  23208. ]
  23209. ))
  23210. characterMakers.push(() => makeCharacter(
  23211. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23212. {
  23213. side: {
  23214. height: math.unit(4.5, "feet"),
  23215. weight: math.unit(500, "lb"),
  23216. name: "Side",
  23217. image: {
  23218. source: "./media/characters/e-ter/side.svg",
  23219. extra: 1550 / 1248,
  23220. bottom: 146 / 1694
  23221. }
  23222. },
  23223. },
  23224. [
  23225. {
  23226. name: "Normal",
  23227. height: math.unit(4.5, "feet"),
  23228. default: true
  23229. },
  23230. ]
  23231. ))
  23232. characterMakers.push(() => makeCharacter(
  23233. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23234. {
  23235. side: {
  23236. height: math.unit(9.7, "feet"),
  23237. weight: math.unit(4000, "kg"),
  23238. name: "Side",
  23239. image: {
  23240. source: "./media/characters/yamie/side.svg"
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(9.7, "feet"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(50, "feet"),
  23257. weight: math.unit(50000, "kg"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/anders/front.svg",
  23261. extra: 570 / 539,
  23262. bottom: 14.7 / 586.7
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Large",
  23269. height: math.unit(50, "feet")
  23270. },
  23271. {
  23272. name: "Macro",
  23273. height: math.unit(2000, "feet"),
  23274. default: true
  23275. },
  23276. {
  23277. name: "Megamacro",
  23278. height: math.unit(12, "miles")
  23279. },
  23280. ]
  23281. ))
  23282. characterMakers.push(() => makeCharacter(
  23283. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23284. {
  23285. front: {
  23286. height: math.unit(7 + 2 / 12, "feet"),
  23287. weight: math.unit(300, "lb"),
  23288. name: "Front",
  23289. image: {
  23290. source: "./media/characters/reban/front.svg",
  23291. extra: 1287/1212,
  23292. bottom: 148/1435
  23293. }
  23294. },
  23295. head: {
  23296. height: math.unit(1.95, "feet"),
  23297. name: "Head",
  23298. image: {
  23299. source: "./media/characters/reban/head.svg"
  23300. }
  23301. },
  23302. maw: {
  23303. height: math.unit(0.95, "feet"),
  23304. name: "Maw",
  23305. image: {
  23306. source: "./media/characters/reban/maw.svg"
  23307. }
  23308. },
  23309. foot: {
  23310. height: math.unit(1.65, "feet"),
  23311. name: "Foot",
  23312. image: {
  23313. source: "./media/characters/reban/foot.svg"
  23314. }
  23315. },
  23316. dick: {
  23317. height: math.unit(7 / 5, "feet"),
  23318. name: "Dick",
  23319. image: {
  23320. source: "./media/characters/reban/dick.svg"
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Natural Height",
  23327. height: math.unit(7 + 2 / 12, "feet")
  23328. },
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(500, "feet"),
  23332. default: true
  23333. },
  23334. {
  23335. name: "Canon Height",
  23336. height: math.unit(50, "AU")
  23337. },
  23338. ]
  23339. ))
  23340. characterMakers.push(() => makeCharacter(
  23341. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23342. {
  23343. front: {
  23344. height: math.unit(6, "feet"),
  23345. weight: math.unit(150, "lb"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/terrance-keayes/front.svg",
  23349. extra: 1.005,
  23350. bottom: 151 / 1615
  23351. }
  23352. },
  23353. side: {
  23354. height: math.unit(6, "feet"),
  23355. weight: math.unit(150, "lb"),
  23356. name: "Side",
  23357. image: {
  23358. source: "./media/characters/terrance-keayes/side.svg",
  23359. extra: 1.005,
  23360. bottom: 129.4 / 1544
  23361. }
  23362. },
  23363. back: {
  23364. height: math.unit(6, "feet"),
  23365. weight: math.unit(150, "lb"),
  23366. name: "Back",
  23367. image: {
  23368. source: "./media/characters/terrance-keayes/back.svg",
  23369. extra: 1.005,
  23370. bottom: 58.4 / 1557.3
  23371. }
  23372. },
  23373. dick: {
  23374. height: math.unit(6 * 0.208, "feet"),
  23375. name: "Dick",
  23376. image: {
  23377. source: "./media/characters/terrance-keayes/dick.svg"
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "Canon Height",
  23384. height: math.unit(35, "miles"),
  23385. default: true
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23391. {
  23392. front: {
  23393. height: math.unit(6, "feet"),
  23394. weight: math.unit(150, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/ofelia/front.svg",
  23398. extra: 1130/1117,
  23399. bottom: 91/1221
  23400. }
  23401. },
  23402. back: {
  23403. height: math.unit(6, "feet"),
  23404. weight: math.unit(150, "lb"),
  23405. name: "Back",
  23406. image: {
  23407. source: "./media/characters/ofelia/back.svg",
  23408. extra: 1172/1159,
  23409. bottom: 28/1200
  23410. }
  23411. },
  23412. maw: {
  23413. height: math.unit(1, "feet"),
  23414. name: "Maw",
  23415. image: {
  23416. source: "./media/characters/ofelia/maw.svg"
  23417. }
  23418. },
  23419. foot: {
  23420. height: math.unit(1.949, "feet"),
  23421. name: "Foot",
  23422. image: {
  23423. source: "./media/characters/ofelia/foot.svg"
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Canon Height",
  23430. height: math.unit(2000, "miles"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(6, "feet"),
  23440. weight: math.unit(150, "lb"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/samuel/front.svg",
  23444. extra: 265 / 258,
  23445. bottom: 2 / 266.1566
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Macro",
  23452. height: math.unit(100, "feet"),
  23453. default: true
  23454. },
  23455. {
  23456. name: "Full Size",
  23457. height: math.unit(1000, "miles")
  23458. },
  23459. ]
  23460. ))
  23461. characterMakers.push(() => makeCharacter(
  23462. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23463. {
  23464. front: {
  23465. height: math.unit(6, "feet"),
  23466. weight: math.unit(300, "lb"),
  23467. name: "Front",
  23468. image: {
  23469. source: "./media/characters/beishir-kiel/front.svg",
  23470. extra: 569 / 547,
  23471. bottom: 41.9 / 609
  23472. }
  23473. },
  23474. maw: {
  23475. height: math.unit(6 * 0.202, "feet"),
  23476. name: "Maw",
  23477. image: {
  23478. source: "./media/characters/beishir-kiel/maw.svg"
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Macro",
  23485. height: math.unit(300, "feet"),
  23486. default: true
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23492. {
  23493. front: {
  23494. height: math.unit(5 + 7/12, "feet"),
  23495. weight: math.unit(120, "lb"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/logan-grey/front.svg",
  23499. extra: 1836/1738,
  23500. bottom: 108/1944
  23501. }
  23502. },
  23503. back: {
  23504. height: math.unit(5 + 7/12, "feet"),
  23505. weight: math.unit(120, "lb"),
  23506. name: "Back",
  23507. image: {
  23508. source: "./media/characters/logan-grey/back.svg",
  23509. extra: 1880/1794,
  23510. bottom: 24/1904
  23511. }
  23512. },
  23513. frontSfw: {
  23514. height: math.unit(5 + 7/12, "feet"),
  23515. weight: math.unit(120, "lb"),
  23516. name: "Front (SFW)",
  23517. image: {
  23518. source: "./media/characters/logan-grey/front-sfw.svg",
  23519. extra: 1836/1738,
  23520. bottom: 108/1944
  23521. }
  23522. },
  23523. backSfw: {
  23524. height: math.unit(5 + 7/12, "feet"),
  23525. weight: math.unit(120, "lb"),
  23526. name: "Back (SFW)",
  23527. image: {
  23528. source: "./media/characters/logan-grey/back-sfw.svg",
  23529. extra: 1880/1794,
  23530. bottom: 24/1904
  23531. }
  23532. },
  23533. hands: {
  23534. height: math.unit(0.84, "feet"),
  23535. name: "Hands",
  23536. image: {
  23537. source: "./media/characters/logan-grey/hands.svg"
  23538. }
  23539. },
  23540. paws: {
  23541. height: math.unit(0.72, "feet"),
  23542. name: "Paws",
  23543. image: {
  23544. source: "./media/characters/logan-grey/paws.svg"
  23545. }
  23546. },
  23547. cock: {
  23548. height: math.unit(1.45, "feet"),
  23549. name: "Cock",
  23550. image: {
  23551. source: "./media/characters/logan-grey/cock.svg"
  23552. }
  23553. },
  23554. cockAlt: {
  23555. height: math.unit(1.437, "feet"),
  23556. name: "Cock (alt)",
  23557. image: {
  23558. source: "./media/characters/logan-grey/cock-alt.svg"
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(5 + 8 / 12, "feet")
  23566. },
  23567. {
  23568. name: "The 500 Foot Femboy",
  23569. height: math.unit(500, "feet"),
  23570. default: true
  23571. },
  23572. {
  23573. name: "Megmacro",
  23574. height: math.unit(20, "miles")
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23580. {
  23581. front: {
  23582. height: math.unit(8 + 2 / 12, "feet"),
  23583. weight: math.unit(275, "lb"),
  23584. name: "Front",
  23585. image: {
  23586. source: "./media/characters/draganta/front.svg",
  23587. extra: 1177 / 1135,
  23588. bottom: 33.46 / 1212.1
  23589. }
  23590. },
  23591. },
  23592. [
  23593. {
  23594. name: "Normal",
  23595. height: math.unit(8 + 6 / 12, "feet"),
  23596. default: true
  23597. },
  23598. {
  23599. name: "Macro",
  23600. height: math.unit(150, "feet")
  23601. },
  23602. {
  23603. name: "Megamacro",
  23604. height: math.unit(1000, "miles")
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23610. {
  23611. front: {
  23612. height: math.unit(1.72, "m"),
  23613. weight: math.unit(80, "lb"),
  23614. name: "Front",
  23615. image: {
  23616. source: "./media/characters/voski/front.svg",
  23617. extra: 2076.22 / 2022.4,
  23618. bottom: 102.7 / 2177.3866
  23619. }
  23620. },
  23621. frontFlaccid: {
  23622. height: math.unit(1.72, "m"),
  23623. weight: math.unit(80, "lb"),
  23624. name: "Front (Flaccid)",
  23625. image: {
  23626. source: "./media/characters/voski/front-flaccid.svg",
  23627. extra: 2076.22 / 2022.4,
  23628. bottom: 102.7 / 2177.3866
  23629. }
  23630. },
  23631. frontErect: {
  23632. height: math.unit(1.72, "m"),
  23633. weight: math.unit(80, "lb"),
  23634. name: "Front (Erect)",
  23635. image: {
  23636. source: "./media/characters/voski/front-erect.svg",
  23637. extra: 2076.22 / 2022.4,
  23638. bottom: 102.7 / 2177.3866
  23639. }
  23640. },
  23641. back: {
  23642. height: math.unit(1.72, "m"),
  23643. weight: math.unit(80, "lb"),
  23644. name: "Back",
  23645. image: {
  23646. source: "./media/characters/voski/back.svg",
  23647. extra: 2104 / 2051,
  23648. bottom: 10.45 / 2113.63
  23649. }
  23650. },
  23651. },
  23652. [
  23653. {
  23654. name: "Normal",
  23655. height: math.unit(1.72, "m")
  23656. },
  23657. {
  23658. name: "Macro",
  23659. height: math.unit(55, "m"),
  23660. default: true
  23661. },
  23662. {
  23663. name: "Macro+",
  23664. height: math.unit(300, "m")
  23665. },
  23666. {
  23667. name: "Macro++",
  23668. height: math.unit(700, "m")
  23669. },
  23670. {
  23671. name: "Macro+++",
  23672. height: math.unit(4500, "m")
  23673. },
  23674. {
  23675. name: "Macro++++",
  23676. height: math.unit(45, "km")
  23677. },
  23678. {
  23679. name: "Macro+++++",
  23680. height: math.unit(1220, "km")
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(2.3, "m"),
  23689. weight: math.unit(304, "kg"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/icowom-lee/front.svg",
  23693. extra: 985 / 955,
  23694. bottom: 25.4 / 1012
  23695. }
  23696. },
  23697. fronttentacles: {
  23698. height: math.unit(2.3, "m"),
  23699. weight: math.unit(304, "kg"),
  23700. name: "Front-tentacles",
  23701. image: {
  23702. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23703. extra: 985 / 955,
  23704. bottom: 25.4 / 1012
  23705. }
  23706. },
  23707. back: {
  23708. height: math.unit(2.3, "m"),
  23709. weight: math.unit(304, "kg"),
  23710. name: "Back",
  23711. image: {
  23712. source: "./media/characters/icowom-lee/back.svg",
  23713. extra: 975 / 954,
  23714. bottom: 9.5 / 985
  23715. }
  23716. },
  23717. backtentacles: {
  23718. height: math.unit(2.3, "m"),
  23719. weight: math.unit(304, "kg"),
  23720. name: "Back-tentacles",
  23721. image: {
  23722. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23723. extra: 975 / 954,
  23724. bottom: 9.5 / 985
  23725. }
  23726. },
  23727. frontDressed: {
  23728. height: math.unit(2.3, "m"),
  23729. weight: math.unit(304, "kg"),
  23730. name: "Front (Dressed)",
  23731. image: {
  23732. source: "./media/characters/icowom-lee/front-dressed.svg",
  23733. extra: 3076 / 2933,
  23734. bottom: 51.4 / 3125.1889
  23735. }
  23736. },
  23737. rump: {
  23738. height: math.unit(0.776, "meters"),
  23739. name: "Rump",
  23740. image: {
  23741. source: "./media/characters/icowom-lee/rump.svg"
  23742. }
  23743. },
  23744. genitals: {
  23745. height: math.unit(0.78, "meters"),
  23746. name: "Genitals",
  23747. image: {
  23748. source: "./media/characters/icowom-lee/genitals.svg"
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(2.3, "meters"),
  23756. default: true
  23757. },
  23758. {
  23759. name: "Macro",
  23760. height: math.unit(94, "meters"),
  23761. default: true
  23762. },
  23763. ]
  23764. ))
  23765. characterMakers.push(() => makeCharacter(
  23766. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23767. {
  23768. front: {
  23769. height: math.unit(22, "meters"),
  23770. weight: math.unit(21000, "kg"),
  23771. name: "Front",
  23772. image: {
  23773. source: "./media/characters/shock-diamond/front.svg",
  23774. extra: 2204 / 2053,
  23775. bottom: 65 / 2239.47
  23776. }
  23777. },
  23778. frontNude: {
  23779. height: math.unit(22, "meters"),
  23780. weight: math.unit(21000, "kg"),
  23781. name: "Front (Nude)",
  23782. image: {
  23783. source: "./media/characters/shock-diamond/front-nude.svg",
  23784. extra: 2514 / 2285,
  23785. bottom: 13 / 2527.56
  23786. }
  23787. },
  23788. },
  23789. [
  23790. {
  23791. name: "Normal",
  23792. height: math.unit(3, "meters")
  23793. },
  23794. {
  23795. name: "Macro",
  23796. height: math.unit(22, "meters"),
  23797. default: true
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23803. {
  23804. front: {
  23805. height: math.unit(5 + 4 / 12, "feet"),
  23806. weight: math.unit(120, "lb"),
  23807. name: "Front",
  23808. image: {
  23809. source: "./media/characters/rory/front.svg",
  23810. extra: 1318/1241,
  23811. bottom: 42/1360
  23812. }
  23813. },
  23814. back: {
  23815. height: math.unit(5 + 4 / 12, "feet"),
  23816. weight: math.unit(120, "lb"),
  23817. name: "Back",
  23818. image: {
  23819. source: "./media/characters/rory/back.svg",
  23820. extra: 1318/1241,
  23821. bottom: 42/1360
  23822. }
  23823. },
  23824. butt: {
  23825. height: math.unit(1.74, "feet"),
  23826. name: "Butt",
  23827. image: {
  23828. source: "./media/characters/rory/butt.svg"
  23829. }
  23830. },
  23831. dick: {
  23832. height: math.unit(1.02, "feet"),
  23833. name: "Dick",
  23834. image: {
  23835. source: "./media/characters/rory/dick.svg"
  23836. }
  23837. },
  23838. paws: {
  23839. height: math.unit(1, "feet"),
  23840. name: "Paws",
  23841. image: {
  23842. source: "./media/characters/rory/paws.svg"
  23843. }
  23844. },
  23845. frontAlt: {
  23846. height: math.unit(5 + 4 / 12, "feet"),
  23847. weight: math.unit(120, "lb"),
  23848. name: "Front (Alt)",
  23849. image: {
  23850. source: "./media/characters/rory/front-alt.svg",
  23851. extra: 589 / 556,
  23852. bottom: 45.7 / 635.76
  23853. }
  23854. },
  23855. frontAltNude: {
  23856. height: math.unit(5 + 4 / 12, "feet"),
  23857. weight: math.unit(120, "lb"),
  23858. name: "Front (Alt, Nude)",
  23859. image: {
  23860. source: "./media/characters/rory/front-alt-nude.svg",
  23861. extra: 589 / 556,
  23862. bottom: 45.7 / 635.76
  23863. }
  23864. },
  23865. side: {
  23866. height: math.unit(5 + 4 / 12, "feet"),
  23867. weight: math.unit(120, "lb"),
  23868. name: "Side",
  23869. image: {
  23870. source: "./media/characters/rory/side.svg",
  23871. extra: 597 / 564,
  23872. bottom: 55 / 653
  23873. }
  23874. },
  23875. backAlt: {
  23876. height: math.unit(5 + 4 / 12, "feet"),
  23877. weight: math.unit(120, "lb"),
  23878. name: "Back (Alt)",
  23879. image: {
  23880. source: "./media/characters/rory/back-alt.svg",
  23881. extra: 620 / 585,
  23882. bottom: 8.86 / 630.43
  23883. }
  23884. },
  23885. dickAlt: {
  23886. height: math.unit(0.86, "feet"),
  23887. name: "Dick (Alt)",
  23888. image: {
  23889. source: "./media/characters/rory/dick-alt.svg"
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Normal",
  23896. height: math.unit(5 + 4 / 12, "feet"),
  23897. default: true
  23898. },
  23899. {
  23900. name: "Macro",
  23901. height: math.unit(100, "feet")
  23902. },
  23903. {
  23904. name: "Macro+",
  23905. height: math.unit(140, "feet")
  23906. },
  23907. {
  23908. name: "Macro++",
  23909. height: math.unit(300, "feet")
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23915. {
  23916. front: {
  23917. height: math.unit(5 + 9 / 12, "feet"),
  23918. weight: math.unit(190, "lb"),
  23919. name: "Front",
  23920. image: {
  23921. source: "./media/characters/sprisk/front.svg",
  23922. extra: 1225 / 1180,
  23923. bottom: 42.7 / 1266.4
  23924. }
  23925. },
  23926. frontNsfw: {
  23927. height: math.unit(5 + 9 / 12, "feet"),
  23928. weight: math.unit(190, "lb"),
  23929. name: "Front (NSFW)",
  23930. image: {
  23931. source: "./media/characters/sprisk/front-nsfw.svg",
  23932. extra: 1225 / 1180,
  23933. bottom: 42.7 / 1266.4
  23934. }
  23935. },
  23936. back: {
  23937. height: math.unit(5 + 9 / 12, "feet"),
  23938. weight: math.unit(190, "lb"),
  23939. name: "Back",
  23940. image: {
  23941. source: "./media/characters/sprisk/back.svg",
  23942. extra: 1247 / 1200,
  23943. bottom: 5.6 / 1253.04
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Tiny",
  23950. height: math.unit(2, "inches")
  23951. },
  23952. {
  23953. name: "Normal",
  23954. height: math.unit(5 + 9 / 12, "feet"),
  23955. default: true
  23956. },
  23957. {
  23958. name: "Mini Macro",
  23959. height: math.unit(18, "feet")
  23960. },
  23961. {
  23962. name: "Macro",
  23963. height: math.unit(100, "feet")
  23964. },
  23965. {
  23966. name: "MACRO",
  23967. height: math.unit(50, "miles")
  23968. },
  23969. {
  23970. name: "M A C R O",
  23971. height: math.unit(300, "miles")
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23977. {
  23978. side: {
  23979. height: math.unit(15.6, "meters"),
  23980. weight: math.unit(700000, "kg"),
  23981. name: "Side",
  23982. image: {
  23983. source: "./media/characters/bunsen/side.svg",
  23984. extra: 1644 / 358
  23985. }
  23986. },
  23987. foot: {
  23988. height: math.unit(1.611 * 1644 / 358, "meter"),
  23989. name: "Foot",
  23990. image: {
  23991. source: "./media/characters/bunsen/foot.svg"
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Small",
  23998. height: math.unit(10, "feet")
  23999. },
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(15.6, "meters"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24009. {
  24010. front: {
  24011. height: math.unit(4 + 11 / 12, "feet"),
  24012. weight: math.unit(140, "lb"),
  24013. name: "Front",
  24014. image: {
  24015. source: "./media/characters/sesh/front.svg",
  24016. extra: 3420 / 3231,
  24017. bottom: 72 / 3949.5
  24018. }
  24019. },
  24020. },
  24021. [
  24022. {
  24023. name: "Normal",
  24024. height: math.unit(4 + 11 / 12, "feet")
  24025. },
  24026. {
  24027. name: "Grown",
  24028. height: math.unit(15, "feet"),
  24029. default: true
  24030. },
  24031. {
  24032. name: "Macro",
  24033. height: math.unit(1500, "feet")
  24034. },
  24035. {
  24036. name: "Megamacro",
  24037. height: math.unit(30, "miles")
  24038. },
  24039. {
  24040. name: "Continental",
  24041. height: math.unit(3000, "miles")
  24042. },
  24043. {
  24044. name: "Gravity Mass",
  24045. height: math.unit(300000, "miles")
  24046. },
  24047. {
  24048. name: "Planet Buster",
  24049. height: math.unit(30000000, "miles")
  24050. },
  24051. {
  24052. name: "Big",
  24053. height: math.unit(3000000000, "miles")
  24054. },
  24055. ]
  24056. ))
  24057. characterMakers.push(() => makeCharacter(
  24058. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24059. {
  24060. front: {
  24061. height: math.unit(9, "feet"),
  24062. weight: math.unit(350, "lb"),
  24063. name: "Front",
  24064. image: {
  24065. source: "./media/characters/pepper/front.svg",
  24066. extra: 1448 / 1312,
  24067. bottom: 9.4 / 1457.88
  24068. }
  24069. },
  24070. back: {
  24071. height: math.unit(9, "feet"),
  24072. weight: math.unit(350, "lb"),
  24073. name: "Back",
  24074. image: {
  24075. source: "./media/characters/pepper/back.svg",
  24076. extra: 1423 / 1300,
  24077. bottom: 4.6 / 1429
  24078. }
  24079. },
  24080. maw: {
  24081. height: math.unit(0.932, "feet"),
  24082. name: "Maw",
  24083. image: {
  24084. source: "./media/characters/pepper/maw.svg"
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Normal",
  24091. height: math.unit(9, "feet"),
  24092. default: true
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24098. {
  24099. front: {
  24100. height: math.unit(6, "feet"),
  24101. weight: math.unit(150, "lb"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/maelstrom/front.svg",
  24105. extra: 2100 / 1883,
  24106. bottom: 94 / 2196.7
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Less Kaiju",
  24113. height: math.unit(200, "feet")
  24114. },
  24115. {
  24116. name: "Kaiju",
  24117. height: math.unit(400, "feet"),
  24118. default: true
  24119. },
  24120. {
  24121. name: "Kaiju-er",
  24122. height: math.unit(600, "feet")
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(6 + 5 / 12, "feet"),
  24131. weight: math.unit(180, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/lexir/front.svg",
  24135. extra: 180 / 172,
  24136. bottom: 12 / 192
  24137. }
  24138. },
  24139. back: {
  24140. height: math.unit(6 + 5 / 12, "feet"),
  24141. weight: math.unit(180, "lb"),
  24142. name: "Back",
  24143. image: {
  24144. source: "./media/characters/lexir/back.svg",
  24145. extra: 1273/1201,
  24146. bottom: 39/1312
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Very Smal",
  24153. height: math.unit(1, "nm")
  24154. },
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(6 + 5 / 12, "feet"),
  24158. default: true
  24159. },
  24160. {
  24161. name: "Macro",
  24162. height: math.unit(1, "mile")
  24163. },
  24164. {
  24165. name: "Megamacro",
  24166. height: math.unit(50, "miles")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24172. {
  24173. front: {
  24174. height: math.unit(1.5, "meters"),
  24175. weight: math.unit(100, "lb"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/maksio/front.svg",
  24179. extra: 1549 / 1531,
  24180. bottom: 123.7 / 1674.5429
  24181. }
  24182. },
  24183. back: {
  24184. height: math.unit(1.5, "meters"),
  24185. weight: math.unit(100, "lb"),
  24186. name: "Back",
  24187. image: {
  24188. source: "./media/characters/maksio/back.svg",
  24189. extra: 1541 / 1509,
  24190. bottom: 97 / 1639
  24191. }
  24192. },
  24193. hand: {
  24194. height: math.unit(0.621, "feet"),
  24195. name: "Hand",
  24196. image: {
  24197. source: "./media/characters/maksio/hand.svg"
  24198. }
  24199. },
  24200. foot: {
  24201. height: math.unit(1.611, "feet"),
  24202. name: "Foot",
  24203. image: {
  24204. source: "./media/characters/maksio/foot.svg"
  24205. }
  24206. },
  24207. },
  24208. [
  24209. {
  24210. name: "Shrunken",
  24211. height: math.unit(10, "cm")
  24212. },
  24213. {
  24214. name: "Normal",
  24215. height: math.unit(150, "cm"),
  24216. default: true
  24217. },
  24218. ]
  24219. ))
  24220. characterMakers.push(() => makeCharacter(
  24221. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24222. {
  24223. front: {
  24224. height: math.unit(100, "feet"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/erza-bear/front.svg",
  24228. extra: 2449 / 2390,
  24229. bottom: 46 / 2494
  24230. }
  24231. },
  24232. back: {
  24233. height: math.unit(100, "feet"),
  24234. name: "Back",
  24235. image: {
  24236. source: "./media/characters/erza-bear/back.svg",
  24237. extra: 2489 / 2430,
  24238. bottom: 85.4 / 2480
  24239. }
  24240. },
  24241. tail: {
  24242. height: math.unit(42, "feet"),
  24243. name: "Tail",
  24244. image: {
  24245. source: "./media/characters/erza-bear/tail.svg"
  24246. }
  24247. },
  24248. tongue: {
  24249. height: math.unit(8, "feet"),
  24250. name: "Tongue",
  24251. image: {
  24252. source: "./media/characters/erza-bear/tongue.svg"
  24253. }
  24254. },
  24255. dick: {
  24256. height: math.unit(10.5, "feet"),
  24257. name: "Dick",
  24258. image: {
  24259. source: "./media/characters/erza-bear/dick.svg"
  24260. }
  24261. },
  24262. dickVertical: {
  24263. height: math.unit(16.9, "feet"),
  24264. name: "Dick (Vertical)",
  24265. image: {
  24266. source: "./media/characters/erza-bear/dick-vertical.svg"
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Macro",
  24273. height: math.unit(100, "feet"),
  24274. default: true
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24280. {
  24281. front: {
  24282. height: math.unit(172, "cm"),
  24283. weight: math.unit(73, "kg"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/violet-flor/front.svg",
  24287. extra: 1530 / 1442,
  24288. bottom: 61.9 / 1588.8
  24289. }
  24290. },
  24291. back: {
  24292. height: math.unit(180, "cm"),
  24293. weight: math.unit(73, "kg"),
  24294. name: "Back",
  24295. image: {
  24296. source: "./media/characters/violet-flor/back.svg",
  24297. extra: 1692 / 1630,
  24298. bottom: 20 / 1712
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Normal",
  24305. height: math.unit(172, "cm"),
  24306. default: true
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24312. {
  24313. front: {
  24314. height: math.unit(6, "feet"),
  24315. weight: math.unit(220, "lb"),
  24316. name: "Front",
  24317. image: {
  24318. source: "./media/characters/lynn-rhea/front.svg",
  24319. extra: 310 / 273
  24320. }
  24321. },
  24322. back: {
  24323. height: math.unit(6, "feet"),
  24324. weight: math.unit(220, "lb"),
  24325. name: "Back",
  24326. image: {
  24327. source: "./media/characters/lynn-rhea/back.svg",
  24328. extra: 310 / 273
  24329. }
  24330. },
  24331. dicks: {
  24332. height: math.unit(0.9, "feet"),
  24333. name: "Dicks",
  24334. image: {
  24335. source: "./media/characters/lynn-rhea/dicks.svg"
  24336. }
  24337. },
  24338. slit: {
  24339. height: math.unit(0.4, "feet"),
  24340. name: "Slit",
  24341. image: {
  24342. source: "./media/characters/lynn-rhea/slit.svg"
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Micro",
  24349. height: math.unit(1, "inch")
  24350. },
  24351. {
  24352. name: "Macro",
  24353. height: math.unit(60, "feet"),
  24354. default: true
  24355. },
  24356. {
  24357. name: "Megamacro",
  24358. height: math.unit(2, "miles")
  24359. },
  24360. {
  24361. name: "Gigamacro",
  24362. height: math.unit(3, "earths")
  24363. },
  24364. {
  24365. name: "Galactic",
  24366. height: math.unit(0.8, "galaxies")
  24367. },
  24368. ]
  24369. ))
  24370. characterMakers.push(() => makeCharacter(
  24371. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24372. {
  24373. front: {
  24374. height: math.unit(1600, "feet"),
  24375. weight: math.unit(85758785169, "kg"),
  24376. name: "Front",
  24377. image: {
  24378. source: "./media/characters/valathos/front.svg",
  24379. extra: 1451 / 1339
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Macro",
  24386. height: math.unit(1600, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(7 + 5 / 12, "feet"),
  24396. weight: math.unit(300, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/azula/front.svg",
  24400. extra: 3208 / 2880,
  24401. bottom: 80.2 / 3277
  24402. }
  24403. },
  24404. back: {
  24405. height: math.unit(7 + 5 / 12, "feet"),
  24406. weight: math.unit(300, "lb"),
  24407. name: "Back",
  24408. image: {
  24409. source: "./media/characters/azula/back.svg",
  24410. extra: 3169 / 2822,
  24411. bottom: 150.6 / 3321
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(7 + 5 / 12, "feet"),
  24419. default: true
  24420. },
  24421. {
  24422. name: "Big",
  24423. height: math.unit(20, "feet")
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(5 + 1 / 12, "feet"),
  24432. weight: math.unit(110, "lb"),
  24433. name: "Front",
  24434. image: {
  24435. source: "./media/characters/rupert/front.svg",
  24436. extra: 1549 / 1495,
  24437. bottom: 54.2 / 1604.4
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Normal",
  24444. height: math.unit(5 + 1 / 12, "feet"),
  24445. default: true
  24446. },
  24447. ]
  24448. ))
  24449. characterMakers.push(() => makeCharacter(
  24450. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24451. {
  24452. front: {
  24453. height: math.unit(8 + 4 / 12, "feet"),
  24454. weight: math.unit(350, "lb"),
  24455. name: "Front",
  24456. image: {
  24457. source: "./media/characters/sheera-castellar/front.svg",
  24458. extra: 1957 / 1894,
  24459. bottom: 26.97 / 1975.017
  24460. }
  24461. },
  24462. side: {
  24463. height: math.unit(8 + 4 / 12, "feet"),
  24464. weight: math.unit(350, "lb"),
  24465. name: "Side",
  24466. image: {
  24467. source: "./media/characters/sheera-castellar/side.svg",
  24468. extra: 1957 / 1894
  24469. }
  24470. },
  24471. back: {
  24472. height: math.unit(8 + 4 / 12, "feet"),
  24473. weight: math.unit(350, "lb"),
  24474. name: "Back",
  24475. image: {
  24476. source: "./media/characters/sheera-castellar/back.svg",
  24477. extra: 1957 / 1894
  24478. }
  24479. },
  24480. angled: {
  24481. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24482. weight: math.unit(350, "lb"),
  24483. name: "Angled",
  24484. image: {
  24485. source: "./media/characters/sheera-castellar/angled.svg",
  24486. extra: 1807 / 1707,
  24487. bottom: 68 / 1875
  24488. }
  24489. },
  24490. genitals: {
  24491. height: math.unit(2.2, "feet"),
  24492. name: "Genitals",
  24493. image: {
  24494. source: "./media/characters/sheera-castellar/genitals.svg"
  24495. }
  24496. },
  24497. taur: {
  24498. height: math.unit(10 + 6/12, "feet"),
  24499. name: "Taur",
  24500. image: {
  24501. source: "./media/characters/sheera-castellar/taur.svg",
  24502. extra: 2017/1909,
  24503. bottom: 185/2202
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(8 + 4 / 12, "feet")
  24511. },
  24512. {
  24513. name: "Macro",
  24514. height: math.unit(150, "feet"),
  24515. default: true
  24516. },
  24517. {
  24518. name: "Macro+",
  24519. height: math.unit(800, "feet")
  24520. },
  24521. ]
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24525. {
  24526. front: {
  24527. height: math.unit(6, "feet"),
  24528. weight: math.unit(150, "lb"),
  24529. name: "Front",
  24530. image: {
  24531. source: "./media/characters/jaipur/front.svg",
  24532. extra: 3860 / 3731,
  24533. bottom: 287 / 4140
  24534. }
  24535. },
  24536. back: {
  24537. height: math.unit(6, "feet"),
  24538. weight: math.unit(150, "lb"),
  24539. name: "Back",
  24540. image: {
  24541. source: "./media/characters/jaipur/back.svg",
  24542. extra: 1637/1561,
  24543. bottom: 154/1791
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(1.85, "meters"),
  24551. default: true
  24552. },
  24553. {
  24554. name: "Macro",
  24555. height: math.unit(150, "meters")
  24556. },
  24557. {
  24558. name: "Macro+",
  24559. height: math.unit(0.5, "miles")
  24560. },
  24561. {
  24562. name: "Macro++",
  24563. height: math.unit(2.5, "miles")
  24564. },
  24565. {
  24566. name: "Macro+++",
  24567. height: math.unit(12, "miles")
  24568. },
  24569. {
  24570. name: "Macro++++",
  24571. height: math.unit(120, "miles")
  24572. },
  24573. {
  24574. name: "Macro+++++",
  24575. height: math.unit(1200, "miles")
  24576. },
  24577. ]
  24578. ))
  24579. characterMakers.push(() => makeCharacter(
  24580. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24581. {
  24582. front: {
  24583. height: math.unit(6, "feet"),
  24584. weight: math.unit(150, "lb"),
  24585. name: "Front",
  24586. image: {
  24587. source: "./media/characters/sheila-wolf/front.svg",
  24588. extra: 1931 / 1808,
  24589. bottom: 29.5 / 1960
  24590. }
  24591. },
  24592. dick: {
  24593. height: math.unit(1.464, "feet"),
  24594. name: "Dick",
  24595. image: {
  24596. source: "./media/characters/sheila-wolf/dick.svg"
  24597. }
  24598. },
  24599. muzzle: {
  24600. height: math.unit(0.513, "feet"),
  24601. name: "Muzzle",
  24602. image: {
  24603. source: "./media/characters/sheila-wolf/muzzle.svg"
  24604. }
  24605. },
  24606. },
  24607. [
  24608. {
  24609. name: "Macro",
  24610. height: math.unit(70, "feet"),
  24611. default: true
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24617. {
  24618. front: {
  24619. height: math.unit(32, "meters"),
  24620. weight: math.unit(300000, "kg"),
  24621. name: "Front",
  24622. image: {
  24623. source: "./media/characters/almor/front.svg",
  24624. extra: 1408 / 1322,
  24625. bottom: 94.6 / 1506.5
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Macro",
  24632. height: math.unit(32, "meters"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(7, "feet"),
  24642. weight: math.unit(200, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/silver/front.svg",
  24646. extra: 472.1 / 450.5,
  24647. bottom: 26.5 / 499.424
  24648. }
  24649. },
  24650. },
  24651. [
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(7, "feet"),
  24655. default: true
  24656. },
  24657. {
  24658. name: "Macro",
  24659. height: math.unit(800, "feet")
  24660. },
  24661. {
  24662. name: "Megamacro",
  24663. height: math.unit(250, "miles")
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24669. {
  24670. front: {
  24671. height: math.unit(6, "feet"),
  24672. weight: math.unit(150, "lb"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/pliskin/front.svg",
  24676. extra: 1469 / 1359,
  24677. bottom: 70 / 1540
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Micro",
  24684. height: math.unit(3, "inches")
  24685. },
  24686. {
  24687. name: "Normal",
  24688. height: math.unit(5 + 11 / 12, "feet"),
  24689. default: true
  24690. },
  24691. {
  24692. name: "Macro",
  24693. height: math.unit(120, "feet")
  24694. },
  24695. ]
  24696. ))
  24697. characterMakers.push(() => makeCharacter(
  24698. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24699. {
  24700. front: {
  24701. height: math.unit(6, "feet"),
  24702. weight: math.unit(150, "lb"),
  24703. name: "Front",
  24704. image: {
  24705. source: "./media/characters/sammy/front.svg",
  24706. extra: 1193 / 1089,
  24707. bottom: 30.5 / 1226
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Macro",
  24714. height: math.unit(1700, "feet"),
  24715. default: true
  24716. },
  24717. {
  24718. name: "Examacro",
  24719. height: math.unit(2.5e9, "lightyears")
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24725. {
  24726. front: {
  24727. height: math.unit(21, "meters"),
  24728. weight: math.unit(12, "tonnes"),
  24729. name: "Front",
  24730. image: {
  24731. source: "./media/characters/kuru/front.svg",
  24732. extra: 4301 / 3785,
  24733. bottom: 371.3 / 4691
  24734. }
  24735. },
  24736. },
  24737. [
  24738. {
  24739. name: "Macro",
  24740. height: math.unit(21, "meters"),
  24741. default: true
  24742. },
  24743. ]
  24744. ))
  24745. characterMakers.push(() => makeCharacter(
  24746. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24747. {
  24748. front: {
  24749. height: math.unit(23, "meters"),
  24750. weight: math.unit(12.2, "tonnes"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/rakka/front.svg",
  24754. extra: 4670 / 4169,
  24755. bottom: 301 / 4968.7
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Macro",
  24762. height: math.unit(23, "meters"),
  24763. default: true
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24769. {
  24770. front: {
  24771. height: math.unit(6, "feet"),
  24772. weight: math.unit(150, "lb"),
  24773. name: "Front",
  24774. image: {
  24775. source: "./media/characters/rhys-feline/front.svg",
  24776. extra: 2488 / 2308,
  24777. bottom: 35.67 / 2519.19
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Really Small",
  24784. height: math.unit(1, "nm")
  24785. },
  24786. {
  24787. name: "Micro",
  24788. height: math.unit(4, "inches")
  24789. },
  24790. {
  24791. name: "Normal",
  24792. height: math.unit(4 + 10 / 12, "feet"),
  24793. default: true
  24794. },
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(100, "feet")
  24798. },
  24799. {
  24800. name: "Megamacto",
  24801. height: math.unit(50, "miles")
  24802. },
  24803. ]
  24804. ))
  24805. characterMakers.push(() => makeCharacter(
  24806. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24807. {
  24808. side: {
  24809. height: math.unit(30, "feet"),
  24810. weight: math.unit(35000, "kg"),
  24811. name: "Side",
  24812. image: {
  24813. source: "./media/characters/alydar/side.svg",
  24814. extra: 234 / 222,
  24815. bottom: 6.5 / 241
  24816. }
  24817. },
  24818. front: {
  24819. height: math.unit(30, "feet"),
  24820. weight: math.unit(35000, "kg"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/alydar/front.svg",
  24824. extra: 223.37 / 210.2,
  24825. bottom: 22.3 / 246.76
  24826. }
  24827. },
  24828. top: {
  24829. height: math.unit(64.54, "feet"),
  24830. weight: math.unit(35000, "kg"),
  24831. name: "Top",
  24832. image: {
  24833. source: "./media/characters/alydar/top.svg"
  24834. }
  24835. },
  24836. anthro: {
  24837. height: math.unit(30, "feet"),
  24838. weight: math.unit(9000, "kg"),
  24839. name: "Anthro",
  24840. image: {
  24841. source: "./media/characters/alydar/anthro.svg",
  24842. extra: 432 / 421,
  24843. bottom: 7.18 / 440
  24844. }
  24845. },
  24846. maw: {
  24847. height: math.unit(11.693, "feet"),
  24848. name: "Maw",
  24849. image: {
  24850. source: "./media/characters/alydar/maw.svg"
  24851. }
  24852. },
  24853. head: {
  24854. height: math.unit(11.693, "feet"),
  24855. name: "Head",
  24856. image: {
  24857. source: "./media/characters/alydar/head.svg"
  24858. }
  24859. },
  24860. headAlt: {
  24861. height: math.unit(12.861, "feet"),
  24862. name: "Head (Alt)",
  24863. image: {
  24864. source: "./media/characters/alydar/head-alt.svg"
  24865. }
  24866. },
  24867. wing: {
  24868. height: math.unit(20.712, "feet"),
  24869. name: "Wing",
  24870. image: {
  24871. source: "./media/characters/alydar/wing.svg"
  24872. }
  24873. },
  24874. wingFeather: {
  24875. height: math.unit(9.662, "feet"),
  24876. name: "Wing Feather",
  24877. image: {
  24878. source: "./media/characters/alydar/wing-feather.svg"
  24879. }
  24880. },
  24881. countourFeather: {
  24882. height: math.unit(4.154, "feet"),
  24883. name: "Contour Feather",
  24884. image: {
  24885. source: "./media/characters/alydar/contour-feather.svg"
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Diplomatic",
  24892. height: math.unit(13, "feet"),
  24893. default: true
  24894. },
  24895. {
  24896. name: "Small",
  24897. height: math.unit(30, "feet")
  24898. },
  24899. {
  24900. name: "Normal",
  24901. height: math.unit(95, "feet"),
  24902. default: true
  24903. },
  24904. {
  24905. name: "Large",
  24906. height: math.unit(285, "feet")
  24907. },
  24908. {
  24909. name: "Incomprehensible",
  24910. height: math.unit(450, "megameters")
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24916. {
  24917. side: {
  24918. height: math.unit(11, "feet"),
  24919. weight: math.unit(1750, "kg"),
  24920. name: "Side",
  24921. image: {
  24922. source: "./media/characters/selicia/side.svg",
  24923. extra: 440 / 396,
  24924. bottom: 24.8 / 465.979
  24925. }
  24926. },
  24927. maw: {
  24928. height: math.unit(4.665, "feet"),
  24929. name: "Maw",
  24930. image: {
  24931. source: "./media/characters/selicia/maw.svg"
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(11, "feet"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24945. {
  24946. side: {
  24947. height: math.unit(2 + 6 / 12, "feet"),
  24948. weight: math.unit(30, "lb"),
  24949. name: "Side",
  24950. image: {
  24951. source: "./media/characters/layla/side.svg",
  24952. extra: 244 / 188,
  24953. bottom: 18.2 / 262.1
  24954. }
  24955. },
  24956. back: {
  24957. height: math.unit(2 + 6 / 12, "feet"),
  24958. weight: math.unit(30, "lb"),
  24959. name: "Back",
  24960. image: {
  24961. source: "./media/characters/layla/back.svg",
  24962. extra: 308 / 241.5,
  24963. bottom: 8.9 / 316.8
  24964. }
  24965. },
  24966. cumming: {
  24967. height: math.unit(2 + 6 / 12, "feet"),
  24968. weight: math.unit(30, "lb"),
  24969. name: "Cumming",
  24970. image: {
  24971. source: "./media/characters/layla/cumming.svg",
  24972. extra: 342 / 279,
  24973. bottom: 595 / 938
  24974. }
  24975. },
  24976. dickFlaccid: {
  24977. height: math.unit(2.595, "feet"),
  24978. name: "Flaccid Genitals",
  24979. image: {
  24980. source: "./media/characters/layla/dick-flaccid.svg"
  24981. }
  24982. },
  24983. dickErect: {
  24984. height: math.unit(2.359, "feet"),
  24985. name: "Erect Genitals",
  24986. image: {
  24987. source: "./media/characters/layla/dick-erect.svg"
  24988. }
  24989. },
  24990. dragon: {
  24991. height: math.unit(40, "feet"),
  24992. name: "Dragon",
  24993. image: {
  24994. source: "./media/characters/layla/dragon.svg",
  24995. extra: 610/535,
  24996. bottom: 367/977
  24997. }
  24998. },
  24999. taur: {
  25000. height: math.unit(30, "feet"),
  25001. name: "Taur",
  25002. image: {
  25003. source: "./media/characters/layla/taur.svg",
  25004. extra: 1268/1199,
  25005. bottom: 112/1380
  25006. }
  25007. },
  25008. },
  25009. [
  25010. {
  25011. name: "Micro",
  25012. height: math.unit(1, "inch")
  25013. },
  25014. {
  25015. name: "Small",
  25016. height: math.unit(1, "foot")
  25017. },
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(2 + 6 / 12, "feet"),
  25021. default: true
  25022. },
  25023. {
  25024. name: "Macro",
  25025. height: math.unit(200, "feet")
  25026. },
  25027. {
  25028. name: "Megamacro",
  25029. height: math.unit(1000, "miles")
  25030. },
  25031. {
  25032. name: "Planetary",
  25033. height: math.unit(8000, "miles")
  25034. },
  25035. {
  25036. name: "True Layla",
  25037. height: math.unit(200000 * 7, "multiverses")
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25043. {
  25044. back: {
  25045. height: math.unit(10.5, "feet"),
  25046. weight: math.unit(800, "lb"),
  25047. name: "Back",
  25048. image: {
  25049. source: "./media/characters/knox/back.svg",
  25050. extra: 1486 / 1089,
  25051. bottom: 107 / 1601.4
  25052. }
  25053. },
  25054. side: {
  25055. height: math.unit(10.5, "feet"),
  25056. weight: math.unit(800, "lb"),
  25057. name: "Side",
  25058. image: {
  25059. source: "./media/characters/knox/side.svg",
  25060. extra: 244 / 218,
  25061. bottom: 14 / 260
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Compact",
  25068. height: math.unit(10.5, "feet"),
  25069. default: true
  25070. },
  25071. {
  25072. name: "Dynamax",
  25073. height: math.unit(210, "feet")
  25074. },
  25075. {
  25076. name: "Full Macro",
  25077. height: math.unit(850, "feet")
  25078. },
  25079. ]
  25080. ))
  25081. characterMakers.push(() => makeCharacter(
  25082. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25083. {
  25084. front: {
  25085. height: math.unit(28, "feet"),
  25086. weight: math.unit(10500, "lb"),
  25087. name: "Front",
  25088. image: {
  25089. source: "./media/characters/kayda/front.svg",
  25090. extra: 1536 / 1428,
  25091. bottom: 68.7 / 1603
  25092. }
  25093. },
  25094. back: {
  25095. height: math.unit(28, "feet"),
  25096. weight: math.unit(10500, "lb"),
  25097. name: "Back",
  25098. image: {
  25099. source: "./media/characters/kayda/back.svg",
  25100. extra: 1557 / 1464,
  25101. bottom: 39.5 / 1597.49
  25102. }
  25103. },
  25104. dick: {
  25105. height: math.unit(3.858, "feet"),
  25106. name: "Dick",
  25107. image: {
  25108. source: "./media/characters/kayda/dick.svg"
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Macro",
  25115. height: math.unit(28, "feet"),
  25116. default: true
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25122. {
  25123. front: {
  25124. height: math.unit(10 + 11 / 12, "feet"),
  25125. weight: math.unit(1400, "lb"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/brian/front.svg",
  25129. extra: 737 / 692,
  25130. bottom: 55.4 / 785
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Normal",
  25137. height: math.unit(10 + 11 / 12, "feet"),
  25138. default: true
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25144. {
  25145. front: {
  25146. height: math.unit(5 + 8 / 12, "feet"),
  25147. weight: math.unit(140, "lb"),
  25148. name: "Front",
  25149. image: {
  25150. source: "./media/characters/khemri/front.svg",
  25151. extra: 4780 / 4059,
  25152. bottom: 80.1 / 4859.25
  25153. }
  25154. },
  25155. },
  25156. [
  25157. {
  25158. name: "Micro",
  25159. height: math.unit(6, "inches")
  25160. },
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(5 + 8 / 12, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25170. {
  25171. front: {
  25172. height: math.unit(13, "feet"),
  25173. weight: math.unit(1700, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/felix-braveheart/front.svg",
  25177. extra: 1222 / 1157,
  25178. bottom: 53.2 / 1280
  25179. }
  25180. },
  25181. back: {
  25182. height: math.unit(13, "feet"),
  25183. weight: math.unit(1700, "lb"),
  25184. name: "Back",
  25185. image: {
  25186. source: "./media/characters/felix-braveheart/back.svg",
  25187. extra: 1277 / 1203,
  25188. bottom: 50.2 / 1327
  25189. }
  25190. },
  25191. feral: {
  25192. height: math.unit(6, "feet"),
  25193. weight: math.unit(400, "lb"),
  25194. name: "Feral",
  25195. image: {
  25196. source: "./media/characters/felix-braveheart/feral.svg",
  25197. extra: 682 / 625,
  25198. bottom: 6.9 / 688
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(13, "feet"),
  25206. default: true
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25212. {
  25213. side: {
  25214. height: math.unit(5 + 11 / 12, "feet"),
  25215. weight: math.unit(1400, "lb"),
  25216. name: "Side",
  25217. image: {
  25218. source: "./media/characters/shadow-blade/side.svg",
  25219. extra: 1726 / 1267,
  25220. bottom: 58.4 / 1785
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(5 + 11 / 12, "feet"),
  25228. default: true
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25234. {
  25235. front: {
  25236. height: math.unit(1 + 6 / 12, "feet"),
  25237. weight: math.unit(25, "lb"),
  25238. name: "Front",
  25239. image: {
  25240. source: "./media/characters/karla-halldor/front.svg",
  25241. extra: 1459 / 1383,
  25242. bottom: 12 / 1472
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(1 + 6 / 12, "feet"),
  25250. default: true
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25256. {
  25257. front: {
  25258. height: math.unit(6 + 2 / 12, "feet"),
  25259. weight: math.unit(160, "lb"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/ariam/front.svg",
  25263. extra: 1073/976,
  25264. bottom: 52/1125
  25265. }
  25266. },
  25267. back: {
  25268. height: math.unit(6 + 2/12, "feet"),
  25269. weight: math.unit(160, "lb"),
  25270. name: "Back",
  25271. image: {
  25272. source: "./media/characters/ariam/back.svg",
  25273. extra: 1103/1023,
  25274. bottom: 9/1112
  25275. }
  25276. },
  25277. dressed: {
  25278. height: math.unit(6 + 2/12, "feet"),
  25279. weight: math.unit(160, "lb"),
  25280. name: "Dressed",
  25281. image: {
  25282. source: "./media/characters/ariam/dressed.svg",
  25283. extra: 1099/1009,
  25284. bottom: 25/1124
  25285. }
  25286. },
  25287. squatting: {
  25288. height: math.unit(4.1, "feet"),
  25289. weight: math.unit(160, "lb"),
  25290. name: "Squatting",
  25291. image: {
  25292. source: "./media/characters/ariam/squatting.svg",
  25293. extra: 2617 / 2112,
  25294. bottom: 61.2 / 2681,
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Normal",
  25301. height: math.unit(6 + 2 / 12, "feet"),
  25302. default: true
  25303. },
  25304. {
  25305. name: "Normal+",
  25306. height: math.unit(4, "meters")
  25307. },
  25308. {
  25309. name: "Macro",
  25310. height: math.unit(50, "meters")
  25311. },
  25312. {
  25313. name: "Macro+",
  25314. height: math.unit(100, "meters")
  25315. },
  25316. {
  25317. name: "Megamacro",
  25318. height: math.unit(20, "km")
  25319. },
  25320. {
  25321. name: "Caretaker",
  25322. height: math.unit(444, "megameters")
  25323. },
  25324. ]
  25325. ))
  25326. characterMakers.push(() => makeCharacter(
  25327. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25328. {
  25329. front: {
  25330. height: math.unit(1.67, "meters"),
  25331. weight: math.unit(140, "lb"),
  25332. name: "Front",
  25333. image: {
  25334. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25335. extra: 438 / 410,
  25336. bottom: 0.75 / 439
  25337. }
  25338. },
  25339. },
  25340. [
  25341. {
  25342. name: "Shrunken",
  25343. height: math.unit(7.6, "cm")
  25344. },
  25345. {
  25346. name: "Human Scale",
  25347. height: math.unit(1.67, "meters")
  25348. },
  25349. {
  25350. name: "Wolxi Scale",
  25351. height: math.unit(36.7, "meters"),
  25352. default: true
  25353. },
  25354. ]
  25355. ))
  25356. characterMakers.push(() => makeCharacter(
  25357. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25358. {
  25359. front: {
  25360. height: math.unit(1.73, "meters"),
  25361. weight: math.unit(240, "lb"),
  25362. name: "Front",
  25363. image: {
  25364. source: "./media/characters/izue-two-mothers/front.svg",
  25365. extra: 469 / 437,
  25366. bottom: 1.24 / 470.6
  25367. }
  25368. },
  25369. },
  25370. [
  25371. {
  25372. name: "Shrunken",
  25373. height: math.unit(7.86, "cm")
  25374. },
  25375. {
  25376. name: "Human Scale",
  25377. height: math.unit(1.73, "meters")
  25378. },
  25379. {
  25380. name: "Wolxi Scale",
  25381. height: math.unit(38, "meters"),
  25382. default: true
  25383. },
  25384. ]
  25385. ))
  25386. characterMakers.push(() => makeCharacter(
  25387. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25388. {
  25389. front: {
  25390. height: math.unit(1.55, "meters"),
  25391. weight: math.unit(120, "lb"),
  25392. name: "Front",
  25393. image: {
  25394. source: "./media/characters/teeku-love-shack/front.svg",
  25395. extra: 387 / 362,
  25396. bottom: 1.51 / 388
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Shrunken",
  25403. height: math.unit(7, "cm")
  25404. },
  25405. {
  25406. name: "Human Scale",
  25407. height: math.unit(1.55, "meters")
  25408. },
  25409. {
  25410. name: "Wolxi Scale",
  25411. height: math.unit(34.1, "meters"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(1.83, "meters"),
  25421. weight: math.unit(135, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/dejma-the-red/front.svg",
  25425. extra: 480 / 458,
  25426. bottom: 1.8 / 482
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Shrunken",
  25433. height: math.unit(8.3, "cm")
  25434. },
  25435. {
  25436. name: "Human Scale",
  25437. height: math.unit(1.83, "meters")
  25438. },
  25439. {
  25440. name: "Wolxi Scale",
  25441. height: math.unit(40, "meters"),
  25442. default: true
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(1.78, "meters"),
  25451. weight: math.unit(65, "kg"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/aki/front.svg",
  25455. extra: 452 / 415
  25456. }
  25457. },
  25458. frontNsfw: {
  25459. height: math.unit(1.78, "meters"),
  25460. weight: math.unit(65, "kg"),
  25461. name: "Front (NSFW)",
  25462. image: {
  25463. source: "./media/characters/aki/front-nsfw.svg",
  25464. extra: 452 / 415
  25465. }
  25466. },
  25467. back: {
  25468. height: math.unit(1.78, "meters"),
  25469. weight: math.unit(65, "kg"),
  25470. name: "Back",
  25471. image: {
  25472. source: "./media/characters/aki/back.svg",
  25473. extra: 452 / 415
  25474. }
  25475. },
  25476. rump: {
  25477. height: math.unit(2.05, "feet"),
  25478. name: "Rump",
  25479. image: {
  25480. source: "./media/characters/aki/rump.svg"
  25481. }
  25482. },
  25483. dick: {
  25484. height: math.unit(0.95, "feet"),
  25485. name: "Dick",
  25486. image: {
  25487. source: "./media/characters/aki/dick.svg"
  25488. }
  25489. },
  25490. },
  25491. [
  25492. {
  25493. name: "Micro",
  25494. height: math.unit(15, "cm")
  25495. },
  25496. {
  25497. name: "Normal",
  25498. height: math.unit(178, "cm"),
  25499. default: true
  25500. },
  25501. {
  25502. name: "Macro",
  25503. height: math.unit(214, "m")
  25504. },
  25505. {
  25506. name: "Macro+",
  25507. height: math.unit(534, "m")
  25508. },
  25509. ]
  25510. ))
  25511. characterMakers.push(() => makeCharacter(
  25512. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25513. {
  25514. front: {
  25515. height: math.unit(5 + 5 / 12, "feet"),
  25516. weight: math.unit(120, "lb"),
  25517. name: "Front",
  25518. image: {
  25519. source: "./media/characters/ari/front.svg",
  25520. extra: 1550/1471,
  25521. bottom: 39/1589
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Normal",
  25528. height: math.unit(5 + 5 / 12, "feet")
  25529. },
  25530. {
  25531. name: "Macro",
  25532. height: math.unit(100, "feet"),
  25533. default: true
  25534. },
  25535. {
  25536. name: "Megamacro",
  25537. height: math.unit(100, "miles")
  25538. },
  25539. {
  25540. name: "Gigamacro",
  25541. height: math.unit(80000, "miles")
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25547. {
  25548. side: {
  25549. height: math.unit(9, "feet"),
  25550. weight: math.unit(400, "kg"),
  25551. name: "Side",
  25552. image: {
  25553. source: "./media/characters/bolt/side.svg",
  25554. extra: 1126 / 896,
  25555. bottom: 60 / 1187.3,
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Micro",
  25562. height: math.unit(5, "inches")
  25563. },
  25564. {
  25565. name: "Normal",
  25566. height: math.unit(9, "feet"),
  25567. default: true
  25568. },
  25569. {
  25570. name: "Macro",
  25571. height: math.unit(700, "feet")
  25572. },
  25573. {
  25574. name: "Max Size",
  25575. height: math.unit(1.52e22, "yottameters")
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25581. {
  25582. front: {
  25583. height: math.unit(4.3, "meters"),
  25584. weight: math.unit(3, "tons"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/draekon-sylviar/front.svg",
  25588. extra: 2072/1512,
  25589. bottom: 74/2146
  25590. }
  25591. },
  25592. back: {
  25593. height: math.unit(4.3, "meters"),
  25594. weight: math.unit(3, "tons"),
  25595. name: "Back",
  25596. image: {
  25597. source: "./media/characters/draekon-sylviar/back.svg",
  25598. extra: 1639/1483,
  25599. bottom: 41/1680
  25600. }
  25601. },
  25602. feral: {
  25603. height: math.unit(1.15, "meters"),
  25604. weight: math.unit(3, "tons"),
  25605. name: "Feral",
  25606. image: {
  25607. source: "./media/characters/draekon-sylviar/feral.svg",
  25608. extra: 1033/395,
  25609. bottom: 130/1163
  25610. }
  25611. },
  25612. maw: {
  25613. height: math.unit(1.3, "meters"),
  25614. name: "Maw",
  25615. image: {
  25616. source: "./media/characters/draekon-sylviar/maw.svg"
  25617. }
  25618. },
  25619. mawSeparated: {
  25620. height: math.unit(1.53, "meters"),
  25621. name: "Separated Maw",
  25622. image: {
  25623. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25624. }
  25625. },
  25626. tail: {
  25627. height: math.unit(1.15, "meters"),
  25628. name: "Tail",
  25629. image: {
  25630. source: "./media/characters/draekon-sylviar/tail.svg"
  25631. }
  25632. },
  25633. tailDick: {
  25634. height: math.unit(1.15, "meters"),
  25635. name: "Tail (Dick)",
  25636. image: {
  25637. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25638. }
  25639. },
  25640. tailDickSeparated: {
  25641. height: math.unit(1.19, "meters"),
  25642. name: "Tail (Separated Dick)",
  25643. image: {
  25644. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25645. }
  25646. },
  25647. slit: {
  25648. height: math.unit(1, "meters"),
  25649. name: "Slit",
  25650. image: {
  25651. source: "./media/characters/draekon-sylviar/slit.svg"
  25652. }
  25653. },
  25654. dick: {
  25655. height: math.unit(1.15, "meters"),
  25656. name: "Dick",
  25657. image: {
  25658. source: "./media/characters/draekon-sylviar/dick.svg"
  25659. }
  25660. },
  25661. dickSeparated: {
  25662. height: math.unit(1.1, "meters"),
  25663. name: "Separated Dick",
  25664. image: {
  25665. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25666. }
  25667. },
  25668. sheath: {
  25669. height: math.unit(1.15, "meters"),
  25670. name: "Sheath",
  25671. image: {
  25672. source: "./media/characters/draekon-sylviar/sheath.svg"
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Small",
  25679. height: math.unit(4.53 / 2, "meters"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Normal",
  25684. height: math.unit(4.53, "meters"),
  25685. default: true
  25686. },
  25687. {
  25688. name: "Large",
  25689. height: math.unit(4.53 * 2, "meters"),
  25690. },
  25691. ]
  25692. ))
  25693. characterMakers.push(() => makeCharacter(
  25694. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25695. {
  25696. front: {
  25697. height: math.unit(6 + 2 / 12, "feet"),
  25698. weight: math.unit(180, "lb"),
  25699. name: "Front",
  25700. image: {
  25701. source: "./media/characters/brawler/front.svg",
  25702. extra: 3301 / 3027,
  25703. bottom: 138 / 3439
  25704. }
  25705. },
  25706. },
  25707. [
  25708. {
  25709. name: "Normal",
  25710. height: math.unit(6 + 2 / 12, "feet"),
  25711. default: true
  25712. },
  25713. ]
  25714. ))
  25715. characterMakers.push(() => makeCharacter(
  25716. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25717. {
  25718. front: {
  25719. height: math.unit(11, "feet"),
  25720. weight: math.unit(1000, "lb"),
  25721. name: "Front",
  25722. image: {
  25723. source: "./media/characters/alex/front.svg",
  25724. bottom: 44.5 / 620
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Micro",
  25731. height: math.unit(5, "inches")
  25732. },
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(11, "feet"),
  25736. default: true
  25737. },
  25738. {
  25739. name: "Macro",
  25740. height: math.unit(9.5e9, "feet")
  25741. },
  25742. {
  25743. name: "Max Size",
  25744. height: math.unit(1.4e283, "yottameters")
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25750. {
  25751. female: {
  25752. height: math.unit(29.9, "m"),
  25753. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25754. name: "Female",
  25755. image: {
  25756. source: "./media/characters/zenari/female.svg",
  25757. extra: 3281.6 / 3217,
  25758. bottom: 72.2 / 3353
  25759. }
  25760. },
  25761. male: {
  25762. height: math.unit(27.7, "m"),
  25763. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25764. name: "Male",
  25765. image: {
  25766. source: "./media/characters/zenari/male.svg",
  25767. extra: 3008 / 2991,
  25768. bottom: 54.6 / 3069
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Macro",
  25775. height: math.unit(29.7, "meters"),
  25776. default: true
  25777. },
  25778. ]
  25779. ))
  25780. characterMakers.push(() => makeCharacter(
  25781. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25782. {
  25783. female: {
  25784. height: math.unit(23.8, "m"),
  25785. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25786. name: "Female",
  25787. image: {
  25788. source: "./media/characters/mactarian/female.svg",
  25789. extra: 2662 / 2569,
  25790. bottom: 73 / 2736
  25791. }
  25792. },
  25793. male: {
  25794. height: math.unit(23.8, "m"),
  25795. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25796. name: "Male",
  25797. image: {
  25798. source: "./media/characters/mactarian/male.svg",
  25799. extra: 2673 / 2600,
  25800. bottom: 76 / 2750
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Macro",
  25807. height: math.unit(23.8, "meters"),
  25808. default: true
  25809. },
  25810. ]
  25811. ))
  25812. characterMakers.push(() => makeCharacter(
  25813. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25814. {
  25815. female: {
  25816. height: math.unit(19.3, "m"),
  25817. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25818. name: "Female",
  25819. image: {
  25820. source: "./media/characters/umok/female.svg",
  25821. extra: 2186 / 2078,
  25822. bottom: 87 / 2277
  25823. }
  25824. },
  25825. male: {
  25826. height: math.unit(19.5, "m"),
  25827. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25828. name: "Male",
  25829. image: {
  25830. source: "./media/characters/umok/male.svg",
  25831. extra: 2233 / 2140,
  25832. bottom: 24.4 / 2258
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Macro",
  25839. height: math.unit(19.3, "meters"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25846. {
  25847. female: {
  25848. height: math.unit(26.15, "m"),
  25849. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25850. name: "Female",
  25851. image: {
  25852. source: "./media/characters/joraxian/female.svg",
  25853. extra: 2912 / 2824,
  25854. bottom: 36 / 2956
  25855. }
  25856. },
  25857. male: {
  25858. height: math.unit(25.4, "m"),
  25859. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25860. name: "Male",
  25861. image: {
  25862. source: "./media/characters/joraxian/male.svg",
  25863. extra: 2877 / 2721,
  25864. bottom: 82 / 2967
  25865. }
  25866. },
  25867. },
  25868. [
  25869. {
  25870. name: "Macro",
  25871. height: math.unit(26.15, "meters"),
  25872. default: true
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25878. {
  25879. female: {
  25880. height: math.unit(21.6, "m"),
  25881. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25882. name: "Female",
  25883. image: {
  25884. source: "./media/characters/sthara/female.svg",
  25885. extra: 2516 / 2347,
  25886. bottom: 21.5 / 2537
  25887. }
  25888. },
  25889. male: {
  25890. height: math.unit(24, "m"),
  25891. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25892. name: "Male",
  25893. image: {
  25894. source: "./media/characters/sthara/male.svg",
  25895. extra: 2732 / 2607,
  25896. bottom: 23 / 2732
  25897. }
  25898. },
  25899. },
  25900. [
  25901. {
  25902. name: "Macro",
  25903. height: math.unit(21.6, "meters"),
  25904. default: true
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25910. {
  25911. front: {
  25912. height: math.unit(6 + 4 / 12, "feet"),
  25913. weight: math.unit(175, "lb"),
  25914. name: "Front",
  25915. image: {
  25916. source: "./media/characters/luka-bryzant/front.svg",
  25917. extra: 311 / 289,
  25918. bottom: 4 / 315
  25919. }
  25920. },
  25921. back: {
  25922. height: math.unit(6 + 4 / 12, "feet"),
  25923. weight: math.unit(175, "lb"),
  25924. name: "Back",
  25925. image: {
  25926. source: "./media/characters/luka-bryzant/back.svg",
  25927. extra: 311 / 289,
  25928. bottom: 3.8 / 313.7
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Micro",
  25935. height: math.unit(10, "inches")
  25936. },
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(6 + 4 / 12, "feet"),
  25940. default: true
  25941. },
  25942. {
  25943. name: "Large",
  25944. height: math.unit(12, "feet")
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25950. {
  25951. front: {
  25952. height: math.unit(5 + 7 / 12, "feet"),
  25953. weight: math.unit(185, "lb"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/aman-aquila/front.svg",
  25957. extra: 1013 / 976,
  25958. bottom: 45.6 / 1057
  25959. }
  25960. },
  25961. side: {
  25962. height: math.unit(5 + 7 / 12, "feet"),
  25963. weight: math.unit(185, "lb"),
  25964. name: "Side",
  25965. image: {
  25966. source: "./media/characters/aman-aquila/side.svg",
  25967. extra: 1054 / 1011,
  25968. bottom: 15 / 1070
  25969. }
  25970. },
  25971. back: {
  25972. height: math.unit(5 + 7 / 12, "feet"),
  25973. weight: math.unit(185, "lb"),
  25974. name: "Back",
  25975. image: {
  25976. source: "./media/characters/aman-aquila/back.svg",
  25977. extra: 1026 / 970,
  25978. bottom: 12 / 1039
  25979. }
  25980. },
  25981. head: {
  25982. height: math.unit(1.211, "feet"),
  25983. name: "Head",
  25984. image: {
  25985. source: "./media/characters/aman-aquila/head.svg",
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Minimicro",
  25992. height: math.unit(0.057, "inches")
  25993. },
  25994. {
  25995. name: "Micro",
  25996. height: math.unit(7, "inches")
  25997. },
  25998. {
  25999. name: "Mini",
  26000. height: math.unit(3 + 7 / 12, "feet")
  26001. },
  26002. {
  26003. name: "Normal",
  26004. height: math.unit(5 + 7 / 12, "feet"),
  26005. default: true
  26006. },
  26007. {
  26008. name: "Macro",
  26009. height: math.unit(157 + 7 / 12, "feet")
  26010. },
  26011. {
  26012. name: "Megamacro",
  26013. height: math.unit(1557 + 7 / 12, "feet")
  26014. },
  26015. {
  26016. name: "Gigamacro",
  26017. height: math.unit(15557 + 7 / 12, "feet")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(3 + 2 / 12, "inches"),
  26026. weight: math.unit(0.3, "ounces"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/hiphae/front.svg",
  26030. extra: 1931 / 1683,
  26031. bottom: 24 / 1955
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(3 + 1 / 2, "inches"),
  26039. default: true
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(5 + 10 / 12, "feet"),
  26048. weight: math.unit(165, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/nicky/front.svg",
  26052. extra: 3144 / 2886,
  26053. bottom: 45.6 / 3192
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(5 + 10 / 12, "feet"),
  26058. weight: math.unit(165, "lb"),
  26059. name: "Back",
  26060. image: {
  26061. source: "./media/characters/nicky/back.svg",
  26062. extra: 3055 / 2804,
  26063. bottom: 28.4 / 3087
  26064. }
  26065. },
  26066. frontclothed: {
  26067. height: math.unit(5 + 10 / 12, "feet"),
  26068. weight: math.unit(165, "lb"),
  26069. name: "Front-clothed",
  26070. image: {
  26071. source: "./media/characters/nicky/front-clothed.svg",
  26072. extra: 3184.9 / 2926.9,
  26073. bottom: 86.5 / 3239.9
  26074. }
  26075. },
  26076. foot: {
  26077. height: math.unit(1.16, "feet"),
  26078. name: "Foot",
  26079. image: {
  26080. source: "./media/characters/nicky/foot.svg"
  26081. }
  26082. },
  26083. feet: {
  26084. height: math.unit(1.34, "feet"),
  26085. name: "Feet",
  26086. image: {
  26087. source: "./media/characters/nicky/feet.svg"
  26088. }
  26089. },
  26090. maw: {
  26091. height: math.unit(0.9, "feet"),
  26092. name: "Maw",
  26093. image: {
  26094. source: "./media/characters/nicky/maw.svg"
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(5 + 10 / 12, "feet"),
  26102. default: true
  26103. },
  26104. {
  26105. name: "Macro",
  26106. height: math.unit(60, "feet")
  26107. },
  26108. {
  26109. name: "Megamacro",
  26110. height: math.unit(1, "mile")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26116. {
  26117. side: {
  26118. height: math.unit(10, "feet"),
  26119. weight: math.unit(600, "lb"),
  26120. name: "Side",
  26121. image: {
  26122. source: "./media/characters/blair/side.svg",
  26123. bottom: 16.6 / 475,
  26124. extra: 458 / 431
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Micro",
  26131. height: math.unit(8, "inches")
  26132. },
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(10, "feet"),
  26136. default: true
  26137. },
  26138. {
  26139. name: "Macro",
  26140. height: math.unit(180, "feet")
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26146. {
  26147. front: {
  26148. height: math.unit(5 + 4 / 12, "feet"),
  26149. weight: math.unit(125, "lb"),
  26150. name: "Front",
  26151. image: {
  26152. source: "./media/characters/fisher/front.svg",
  26153. extra: 444 / 390,
  26154. bottom: 2 / 444.8
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Micro",
  26161. height: math.unit(4, "inches")
  26162. },
  26163. {
  26164. name: "Normal",
  26165. height: math.unit(5 + 4 / 12, "feet"),
  26166. default: true
  26167. },
  26168. {
  26169. name: "Macro",
  26170. height: math.unit(100, "feet")
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26176. {
  26177. front: {
  26178. height: math.unit(6.71, "feet"),
  26179. weight: math.unit(200, "lb"),
  26180. preyCapacity: math.unit(1000000, "people"),
  26181. name: "Front",
  26182. image: {
  26183. source: "./media/characters/gliss/front.svg",
  26184. extra: 2347 / 2231,
  26185. bottom: 113 / 2462
  26186. }
  26187. },
  26188. hammerspaceSize: {
  26189. height: math.unit(6.71 * 717, "feet"),
  26190. weight: math.unit(200, "lb"),
  26191. preyCapacity: math.unit(1000000, "people"),
  26192. name: "Hammerspace Size",
  26193. image: {
  26194. source: "./media/characters/gliss/front.svg",
  26195. extra: 2347 / 2231,
  26196. bottom: 113 / 2462
  26197. }
  26198. },
  26199. },
  26200. [
  26201. {
  26202. name: "Normal",
  26203. height: math.unit(6.71, "feet"),
  26204. default: true
  26205. },
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26210. {
  26211. side: {
  26212. height: math.unit(1.44, "m"),
  26213. weight: math.unit(80, "kg"),
  26214. name: "Side",
  26215. image: {
  26216. source: "./media/characters/dune-anderson/side.svg",
  26217. bottom: 49 / 1426
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Wolf-sized",
  26224. height: math.unit(1.44, "meters")
  26225. },
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(5.05, "meters"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Big",
  26233. height: math.unit(14.4, "meters")
  26234. },
  26235. {
  26236. name: "Huge",
  26237. height: math.unit(144, "meters")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(7, "feet"),
  26246. weight: math.unit(425, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/hind/front.svg",
  26250. extra: 2091 / 1860,
  26251. bottom: 129 / 2220
  26252. }
  26253. },
  26254. back: {
  26255. height: math.unit(7, "feet"),
  26256. weight: math.unit(425, "lb"),
  26257. name: "Back",
  26258. image: {
  26259. source: "./media/characters/hind/back.svg",
  26260. extra: 2091 / 1860,
  26261. bottom: 24.6 / 2309
  26262. }
  26263. },
  26264. tail: {
  26265. height: math.unit(2.8, "feet"),
  26266. name: "Tail",
  26267. image: {
  26268. source: "./media/characters/hind/tail.svg"
  26269. }
  26270. },
  26271. head: {
  26272. height: math.unit(2.55, "feet"),
  26273. name: "Head",
  26274. image: {
  26275. source: "./media/characters/hind/head.svg"
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "XS",
  26282. height: math.unit(0.7, "feet")
  26283. },
  26284. {
  26285. name: "Normal",
  26286. height: math.unit(7, "feet"),
  26287. default: true
  26288. },
  26289. {
  26290. name: "XL",
  26291. height: math.unit(70, "feet")
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(2.1, "meters"),
  26300. weight: math.unit(150, "lb"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/tharquench-sizestealer/front.svg",
  26304. extra: 1605/1470,
  26305. bottom: 36/1641
  26306. }
  26307. },
  26308. frontAlt: {
  26309. height: math.unit(2.1, "meters"),
  26310. weight: math.unit(150, "lb"),
  26311. name: "Front (Alt)",
  26312. image: {
  26313. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26314. extra: 2318 / 2063,
  26315. bottom: 93.4 / 2410
  26316. }
  26317. },
  26318. },
  26319. [
  26320. {
  26321. name: "Nano",
  26322. height: math.unit(1, "mm")
  26323. },
  26324. {
  26325. name: "Micro",
  26326. height: math.unit(1, "cm")
  26327. },
  26328. {
  26329. name: "Normal",
  26330. height: math.unit(2.1, "meters"),
  26331. default: true
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26337. {
  26338. front: {
  26339. height: math.unit(7 + 5 / 12, "feet"),
  26340. weight: math.unit(357, "lb"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/solex-draconov/front.svg",
  26344. extra: 1993 / 1865,
  26345. bottom: 117 / 2111
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Natural Height",
  26352. height: math.unit(7 + 5 / 12, "feet"),
  26353. default: true
  26354. },
  26355. {
  26356. name: "Macro",
  26357. height: math.unit(350, "feet")
  26358. },
  26359. {
  26360. name: "Macro+",
  26361. height: math.unit(1000, "feet")
  26362. },
  26363. {
  26364. name: "Megamacro",
  26365. height: math.unit(20, "km")
  26366. },
  26367. {
  26368. name: "Megamacro+",
  26369. height: math.unit(1000, "km")
  26370. },
  26371. {
  26372. name: "Gigamacro",
  26373. height: math.unit(2.5, "Gm")
  26374. },
  26375. {
  26376. name: "Teramacro",
  26377. height: math.unit(15, "Tm")
  26378. },
  26379. {
  26380. name: "Galactic",
  26381. height: math.unit(30, "Zm")
  26382. },
  26383. {
  26384. name: "Universal",
  26385. height: math.unit(21000, "Ym")
  26386. },
  26387. {
  26388. name: "Omniversal",
  26389. height: math.unit(9.861e50, "Ym")
  26390. },
  26391. {
  26392. name: "Existential",
  26393. height: math.unit(1e300, "meters")
  26394. },
  26395. ]
  26396. ))
  26397. characterMakers.push(() => makeCharacter(
  26398. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26399. {
  26400. side: {
  26401. height: math.unit(25, "feet"),
  26402. weight: math.unit(90000, "lb"),
  26403. name: "Side",
  26404. image: {
  26405. source: "./media/characters/mandarax/side.svg",
  26406. extra: 614 / 332,
  26407. bottom: 55 / 630
  26408. }
  26409. },
  26410. lounging: {
  26411. height: math.unit(15.4, "feet"),
  26412. weight: math.unit(90000, "lb"),
  26413. name: "Lounging",
  26414. image: {
  26415. source: "./media/characters/mandarax/lounging.svg",
  26416. extra: 817/609,
  26417. bottom: 685/1502
  26418. }
  26419. },
  26420. head: {
  26421. height: math.unit(11.4, "feet"),
  26422. name: "Head",
  26423. image: {
  26424. source: "./media/characters/mandarax/head.svg"
  26425. }
  26426. },
  26427. belly: {
  26428. height: math.unit(33, "feet"),
  26429. name: "Belly",
  26430. preyCapacity: math.unit(500, "people"),
  26431. image: {
  26432. source: "./media/characters/mandarax/belly.svg"
  26433. }
  26434. },
  26435. dick: {
  26436. height: math.unit(8.46, "feet"),
  26437. name: "Dick",
  26438. image: {
  26439. source: "./media/characters/mandarax/dick.svg"
  26440. }
  26441. },
  26442. top: {
  26443. height: math.unit(28, "meters"),
  26444. name: "Top",
  26445. image: {
  26446. source: "./media/characters/mandarax/top.svg"
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(25, "feet"),
  26454. default: true
  26455. },
  26456. ]
  26457. ))
  26458. characterMakers.push(() => makeCharacter(
  26459. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26460. {
  26461. front: {
  26462. height: math.unit(5, "feet"),
  26463. weight: math.unit(90, "lb"),
  26464. name: "Front",
  26465. image: {
  26466. source: "./media/characters/pixil/front.svg",
  26467. extra: 2000 / 1618,
  26468. bottom: 12.3 / 2011
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(5, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Megamacro",
  26480. height: math.unit(10, "miles"),
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(7 + 2 / 12, "feet"),
  26489. weight: math.unit(200, "lb"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/angel/front.svg",
  26493. extra: 1830 / 1737,
  26494. bottom: 22.6 / 1854,
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(7 + 2 / 12, "feet"),
  26502. default: true
  26503. },
  26504. {
  26505. name: "Macro",
  26506. height: math.unit(1000, "feet")
  26507. },
  26508. {
  26509. name: "Megamacro",
  26510. height: math.unit(2, "miles")
  26511. },
  26512. {
  26513. name: "Gigamacro",
  26514. height: math.unit(20, "earths")
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(5, "feet"),
  26523. weight: math.unit(180, "lb"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/mekana/front.svg",
  26527. extra: 1671 / 1605,
  26528. bottom: 3.5 / 1691
  26529. }
  26530. },
  26531. side: {
  26532. height: math.unit(5, "feet"),
  26533. weight: math.unit(180, "lb"),
  26534. name: "Side",
  26535. image: {
  26536. source: "./media/characters/mekana/side.svg",
  26537. extra: 1671 / 1605,
  26538. bottom: 3.5 / 1691
  26539. }
  26540. },
  26541. back: {
  26542. height: math.unit(5, "feet"),
  26543. weight: math.unit(180, "lb"),
  26544. name: "Back",
  26545. image: {
  26546. source: "./media/characters/mekana/back.svg",
  26547. extra: 1671 / 1605,
  26548. bottom: 3.5 / 1691
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(5, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(4 + 6 / 12, "feet"),
  26565. weight: math.unit(80, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/pixie/front.svg",
  26569. extra: 1924 / 1825,
  26570. bottom: 22.4 / 1946
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(4 + 6 / 12, "feet"),
  26578. default: true
  26579. },
  26580. {
  26581. name: "Macro",
  26582. height: math.unit(40, "feet")
  26583. },
  26584. ]
  26585. ))
  26586. characterMakers.push(() => makeCharacter(
  26587. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26588. {
  26589. front: {
  26590. height: math.unit(2.1, "meters"),
  26591. weight: math.unit(200, "lb"),
  26592. name: "Front",
  26593. image: {
  26594. source: "./media/characters/the-lascivious/front.svg",
  26595. extra: 1 / 0.893,
  26596. bottom: 3.5 / 573.7
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Human Scale",
  26603. height: math.unit(2.1, "meters")
  26604. },
  26605. {
  26606. name: "Wolxi Scale",
  26607. height: math.unit(46.2, "m"),
  26608. default: true
  26609. },
  26610. {
  26611. name: "Boinker of Buildings",
  26612. height: math.unit(10, "km")
  26613. },
  26614. {
  26615. name: "Shagger of Skyscrapers",
  26616. height: math.unit(40, "km")
  26617. },
  26618. {
  26619. name: "Banger of Boroughs",
  26620. height: math.unit(4000, "km")
  26621. },
  26622. {
  26623. name: "Screwer of States",
  26624. height: math.unit(100000, "km")
  26625. },
  26626. {
  26627. name: "Pounder of Planets",
  26628. height: math.unit(2000000, "km")
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(6, "feet"),
  26637. weight: math.unit(150, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/aj/front.svg",
  26641. extra: 2039 / 1562,
  26642. bottom: 40 / 2079
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Normal",
  26649. height: math.unit(11 + 6 / 12, "feet"),
  26650. default: true
  26651. },
  26652. {
  26653. name: "Megamacro",
  26654. height: math.unit(60, "megameters")
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26660. {
  26661. side: {
  26662. height: math.unit(31 + 8 / 12, "feet"),
  26663. weight: math.unit(75000, "kg"),
  26664. name: "Side",
  26665. image: {
  26666. source: "./media/characters/koros/side.svg",
  26667. extra: 1442 / 1297,
  26668. bottom: 122.7 / 1562
  26669. }
  26670. },
  26671. dicksKingsCrown: {
  26672. height: math.unit(6, "feet"),
  26673. name: "Dicks (King's Crown)",
  26674. image: {
  26675. source: "./media/characters/koros/dicks-kings-crown.svg"
  26676. }
  26677. },
  26678. dicksTailSet: {
  26679. height: math.unit(3, "feet"),
  26680. name: "Dicks (Tail Set)",
  26681. image: {
  26682. source: "./media/characters/koros/dicks-tail-set.svg"
  26683. }
  26684. },
  26685. dickCumming: {
  26686. height: math.unit(7.98, "feet"),
  26687. name: "Dick (Cumming)",
  26688. image: {
  26689. source: "./media/characters/koros/dick-cumming.svg"
  26690. }
  26691. },
  26692. dicksBack: {
  26693. height: math.unit(5.9, "feet"),
  26694. name: "Dicks (Back)",
  26695. image: {
  26696. source: "./media/characters/koros/dicks-back.svg"
  26697. }
  26698. },
  26699. dicksFront: {
  26700. height: math.unit(3.72, "feet"),
  26701. name: "Dicks (Front)",
  26702. image: {
  26703. source: "./media/characters/koros/dicks-front.svg"
  26704. }
  26705. },
  26706. dicksPeeking: {
  26707. height: math.unit(3.0, "feet"),
  26708. name: "Dicks (Peeking)",
  26709. image: {
  26710. source: "./media/characters/koros/dicks-peeking.svg"
  26711. }
  26712. },
  26713. eye: {
  26714. height: math.unit(1.7, "feet"),
  26715. name: "Eye",
  26716. image: {
  26717. source: "./media/characters/koros/eye.svg"
  26718. }
  26719. },
  26720. headFront: {
  26721. height: math.unit(11.69, "feet"),
  26722. name: "Head (Front)",
  26723. image: {
  26724. source: "./media/characters/koros/head-front.svg"
  26725. }
  26726. },
  26727. headSide: {
  26728. height: math.unit(14, "feet"),
  26729. name: "Head (Side)",
  26730. image: {
  26731. source: "./media/characters/koros/head-side.svg"
  26732. }
  26733. },
  26734. leg: {
  26735. height: math.unit(17, "feet"),
  26736. name: "Leg",
  26737. image: {
  26738. source: "./media/characters/koros/leg.svg"
  26739. }
  26740. },
  26741. mawSide: {
  26742. height: math.unit(12.8, "feet"),
  26743. name: "Maw (Side)",
  26744. image: {
  26745. source: "./media/characters/koros/maw-side.svg"
  26746. }
  26747. },
  26748. mawSpitting: {
  26749. height: math.unit(17, "feet"),
  26750. name: "Maw (Spitting)",
  26751. image: {
  26752. source: "./media/characters/koros/maw-spitting.svg"
  26753. }
  26754. },
  26755. slit: {
  26756. height: math.unit(2.8, "feet"),
  26757. name: "Slit",
  26758. image: {
  26759. source: "./media/characters/koros/slit.svg"
  26760. }
  26761. },
  26762. stomach: {
  26763. height: math.unit(6.8, "feet"),
  26764. preyCapacity: math.unit(20, "people"),
  26765. name: "Stomach",
  26766. image: {
  26767. source: "./media/characters/koros/stomach.svg"
  26768. }
  26769. },
  26770. wingspanBottom: {
  26771. height: math.unit(114, "feet"),
  26772. name: "Wingspan (Bottom)",
  26773. image: {
  26774. source: "./media/characters/koros/wingspan-bottom.svg"
  26775. }
  26776. },
  26777. wingspanTop: {
  26778. height: math.unit(104, "feet"),
  26779. name: "Wingspan (Top)",
  26780. image: {
  26781. source: "./media/characters/koros/wingspan-top.svg"
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(31 + 8 / 12, "feet"),
  26789. default: true
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(18 + 5 / 12, "feet"),
  26798. weight: math.unit(3750, "kg"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/vexx/front.svg",
  26802. extra: 426 / 396,
  26803. bottom: 31.5 / 458
  26804. }
  26805. },
  26806. maw: {
  26807. height: math.unit(6, "feet"),
  26808. name: "Maw",
  26809. image: {
  26810. source: "./media/characters/vexx/maw.svg"
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Normal",
  26817. height: math.unit(18 + 5 / 12, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26824. {
  26825. front: {
  26826. height: math.unit(17 + 6 / 12, "feet"),
  26827. weight: math.unit(150, "lb"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/baadra/front.svg",
  26831. extra: 1694/1553,
  26832. bottom: 179/1873
  26833. }
  26834. },
  26835. frontAlt: {
  26836. height: math.unit(17 + 6 / 12, "feet"),
  26837. weight: math.unit(150, "lb"),
  26838. name: "Front (Alt)",
  26839. image: {
  26840. source: "./media/characters/baadra/front-alt.svg",
  26841. extra: 3137 / 2890,
  26842. bottom: 168.4 / 3305
  26843. }
  26844. },
  26845. back: {
  26846. height: math.unit(17 + 6 / 12, "feet"),
  26847. weight: math.unit(150, "lb"),
  26848. name: "Back",
  26849. image: {
  26850. source: "./media/characters/baadra/back.svg",
  26851. extra: 3142 / 2890,
  26852. bottom: 220 / 3371
  26853. }
  26854. },
  26855. head: {
  26856. height: math.unit(5.45, "feet"),
  26857. name: "Head",
  26858. image: {
  26859. source: "./media/characters/baadra/head.svg"
  26860. }
  26861. },
  26862. headAngry: {
  26863. height: math.unit(4.95, "feet"),
  26864. name: "Head (Angry)",
  26865. image: {
  26866. source: "./media/characters/baadra/head-angry.svg"
  26867. }
  26868. },
  26869. headOpen: {
  26870. height: math.unit(6, "feet"),
  26871. name: "Head (Open)",
  26872. image: {
  26873. source: "./media/characters/baadra/head-open.svg"
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(17 + 6 / 12, "feet"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(7 + 3 / 12, "feet"),
  26890. weight: math.unit(180, "lb"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/juri/front.svg",
  26894. extra: 1401 / 1237,
  26895. bottom: 18.5 / 1418
  26896. }
  26897. },
  26898. side: {
  26899. height: math.unit(7 + 3 / 12, "feet"),
  26900. weight: math.unit(180, "lb"),
  26901. name: "Side",
  26902. image: {
  26903. source: "./media/characters/juri/side.svg",
  26904. extra: 1424 / 1242,
  26905. bottom: 18.5 / 1447
  26906. }
  26907. },
  26908. sitting: {
  26909. height: math.unit(6, "feet"),
  26910. weight: math.unit(180, "lb"),
  26911. name: "Sitting",
  26912. image: {
  26913. source: "./media/characters/juri/sitting.svg",
  26914. extra: 1270 / 1143,
  26915. bottom: 100 / 1343
  26916. }
  26917. },
  26918. back: {
  26919. height: math.unit(7 + 3 / 12, "feet"),
  26920. weight: math.unit(180, "lb"),
  26921. name: "Back",
  26922. image: {
  26923. source: "./media/characters/juri/back.svg",
  26924. extra: 1377 / 1240,
  26925. bottom: 23.7 / 1405
  26926. }
  26927. },
  26928. maw: {
  26929. height: math.unit(2.8, "feet"),
  26930. name: "Maw",
  26931. image: {
  26932. source: "./media/characters/juri/maw.svg"
  26933. }
  26934. },
  26935. stomach: {
  26936. height: math.unit(0.89, "feet"),
  26937. preyCapacity: math.unit(4, "liters"),
  26938. name: "Stomach",
  26939. image: {
  26940. source: "./media/characters/juri/stomach.svg"
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(7 + 3 / 12, "feet"),
  26948. default: true
  26949. },
  26950. ]
  26951. ))
  26952. characterMakers.push(() => makeCharacter(
  26953. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26954. {
  26955. fox: {
  26956. height: math.unit(5 + 6 / 12, "feet"),
  26957. weight: math.unit(140, "lb"),
  26958. name: "Fox",
  26959. image: {
  26960. source: "./media/characters/maxene-sita/fox.svg",
  26961. extra: 146 / 138,
  26962. bottom: 2.1 / 148.19
  26963. }
  26964. },
  26965. foxLaying: {
  26966. height: math.unit(1.70, "feet"),
  26967. weight: math.unit(140, "lb"),
  26968. name: "Fox (Laying)",
  26969. image: {
  26970. source: "./media/characters/maxene-sita/fox-laying.svg",
  26971. extra: 910 / 572,
  26972. bottom: 71 / 981
  26973. }
  26974. },
  26975. kitsune: {
  26976. height: math.unit(10, "feet"),
  26977. weight: math.unit(800, "lb"),
  26978. name: "Kitsune",
  26979. image: {
  26980. source: "./media/characters/maxene-sita/kitsune.svg",
  26981. extra: 185 / 176,
  26982. bottom: 4.7 / 189.9
  26983. }
  26984. },
  26985. hellhound: {
  26986. height: math.unit(10, "feet"),
  26987. weight: math.unit(700, "lb"),
  26988. name: "Hellhound",
  26989. image: {
  26990. source: "./media/characters/maxene-sita/hellhound.svg",
  26991. extra: 1600 / 1545,
  26992. bottom: 81 / 1681
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(5 + 6 / 12, "feet"),
  27000. default: true
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27006. {
  27007. front: {
  27008. height: math.unit(3 + 4 / 12, "feet"),
  27009. weight: math.unit(70, "lb"),
  27010. name: "Front",
  27011. image: {
  27012. source: "./media/characters/maia/front.svg",
  27013. extra: 227 / 219.5,
  27014. bottom: 40 / 267
  27015. }
  27016. },
  27017. back: {
  27018. height: math.unit(3 + 4 / 12, "feet"),
  27019. weight: math.unit(70, "lb"),
  27020. name: "Back",
  27021. image: {
  27022. source: "./media/characters/maia/back.svg",
  27023. extra: 237 / 225
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(3 + 4 / 12, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(5 + 10 / 12, "feet"),
  27040. weight: math.unit(197, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/jabaro/front.svg",
  27044. extra: 225 / 216,
  27045. bottom: 5.06 / 230
  27046. }
  27047. },
  27048. back: {
  27049. height: math.unit(5 + 10 / 12, "feet"),
  27050. weight: math.unit(197, "lb"),
  27051. name: "Back",
  27052. image: {
  27053. source: "./media/characters/jabaro/back.svg",
  27054. extra: 225 / 219,
  27055. bottom: 1.9 / 227
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(5 + 10 / 12, "feet"),
  27063. default: true
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27069. {
  27070. front: {
  27071. height: math.unit(5 + 8 / 12, "feet"),
  27072. weight: math.unit(139, "lb"),
  27073. name: "Front",
  27074. image: {
  27075. source: "./media/characters/risa/front.svg",
  27076. extra: 270 / 260,
  27077. bottom: 11.2 / 282
  27078. }
  27079. },
  27080. back: {
  27081. height: math.unit(5 + 8 / 12, "feet"),
  27082. weight: math.unit(139, "lb"),
  27083. name: "Back",
  27084. image: {
  27085. source: "./media/characters/risa/back.svg",
  27086. extra: 264 / 255,
  27087. bottom: 4 / 268
  27088. }
  27089. },
  27090. },
  27091. [
  27092. {
  27093. name: "Normal",
  27094. height: math.unit(5 + 8 / 12, "feet"),
  27095. default: true
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27101. {
  27102. front: {
  27103. height: math.unit(2 + 11 / 12, "feet"),
  27104. weight: math.unit(30, "lb"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/weatley/front.svg",
  27108. bottom: 10.7 / 414,
  27109. extra: 403.5 / 362
  27110. }
  27111. },
  27112. back: {
  27113. height: math.unit(2 + 11 / 12, "feet"),
  27114. weight: math.unit(30, "lb"),
  27115. name: "Back",
  27116. image: {
  27117. source: "./media/characters/weatley/back.svg",
  27118. bottom: 10.7 / 414,
  27119. extra: 403.5 / 362
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Normal",
  27126. height: math.unit(2 + 11 / 12, "feet"),
  27127. default: true
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27133. {
  27134. front: {
  27135. height: math.unit(5 + 2 / 12, "feet"),
  27136. weight: math.unit(50, "kg"),
  27137. name: "Front",
  27138. image: {
  27139. source: "./media/characters/mercury-crescent/front.svg",
  27140. extra: 1088 / 1033,
  27141. bottom: 18.9 / 1109
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(5 + 2 / 12, "feet"),
  27149. default: true
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(2, "feet"),
  27158. weight: math.unit(15, "kg"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/diamond-jones/front.svg",
  27162. extra: 727/723,
  27163. bottom: 46/773
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(2, "feet"),
  27171. default: true
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(3, "feet"),
  27180. weight: math.unit(30, "kg"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/sweet-bit/front.svg",
  27184. extra: 675 / 567,
  27185. bottom: 27.7 / 703
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(3, "feet"),
  27193. default: true
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27199. {
  27200. side: {
  27201. height: math.unit(9.178, "feet"),
  27202. weight: math.unit(500, "lb"),
  27203. name: "Side",
  27204. image: {
  27205. source: "./media/characters/umbrazen/side.svg",
  27206. extra: 1730 / 1473,
  27207. bottom: 34.6 / 1765
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(9.178, "feet"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(10, "feet"),
  27224. weight: math.unit(750, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/arlist/front.svg",
  27228. extra: 961 / 778,
  27229. bottom: 6.2 / 986
  27230. }
  27231. },
  27232. },
  27233. [
  27234. {
  27235. name: "Normal",
  27236. height: math.unit(10, "feet"),
  27237. default: true
  27238. },
  27239. ]
  27240. ))
  27241. characterMakers.push(() => makeCharacter(
  27242. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27243. {
  27244. front: {
  27245. height: math.unit(5 + 1 / 12, "feet"),
  27246. weight: math.unit(110, "lb"),
  27247. name: "Front",
  27248. image: {
  27249. source: "./media/characters/aradel/front.svg",
  27250. extra: 324 / 303,
  27251. bottom: 3.6 / 329.4
  27252. }
  27253. },
  27254. },
  27255. [
  27256. {
  27257. name: "Normal",
  27258. height: math.unit(5 + 1 / 12, "feet"),
  27259. default: true
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27265. {
  27266. dressed: {
  27267. height: math.unit(3 + 8 / 12, "feet"),
  27268. weight: math.unit(50, "lb"),
  27269. name: "Dressed",
  27270. image: {
  27271. source: "./media/characters/serryn/dressed.svg",
  27272. extra: 1792 / 1656,
  27273. bottom: 43.5 / 1840
  27274. }
  27275. },
  27276. nude: {
  27277. height: math.unit(3 + 8 / 12, "feet"),
  27278. weight: math.unit(50, "lb"),
  27279. name: "Nude",
  27280. image: {
  27281. source: "./media/characters/serryn/nude.svg",
  27282. extra: 1792 / 1656,
  27283. bottom: 43.5 / 1840
  27284. }
  27285. },
  27286. },
  27287. [
  27288. {
  27289. name: "Normal",
  27290. height: math.unit(3 + 8 / 12, "feet"),
  27291. default: true
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27297. {
  27298. front: {
  27299. height: math.unit(7 + 10 / 12, "feet"),
  27300. weight: math.unit(255, "lb"),
  27301. name: "Front",
  27302. image: {
  27303. source: "./media/characters/xavier-thyme/front.svg",
  27304. extra: 3733 / 3642,
  27305. bottom: 131 / 3869
  27306. }
  27307. },
  27308. frontRaven: {
  27309. height: math.unit(7 + 10 / 12, "feet"),
  27310. weight: math.unit(255, "lb"),
  27311. name: "Front (Raven)",
  27312. image: {
  27313. source: "./media/characters/xavier-thyme/front-raven.svg",
  27314. extra: 4385 / 3642,
  27315. bottom: 131 / 4517
  27316. }
  27317. },
  27318. },
  27319. [
  27320. {
  27321. name: "Normal",
  27322. height: math.unit(7 + 10 / 12, "feet"),
  27323. default: true
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(1.6, "m"),
  27332. weight: math.unit(50, "kg"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/kiki/front.svg",
  27336. extra: 4682 / 3610,
  27337. bottom: 115 / 4777
  27338. }
  27339. },
  27340. },
  27341. [
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(1.6, "meters"),
  27345. default: true
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27351. {
  27352. front: {
  27353. height: math.unit(50, "m"),
  27354. weight: math.unit(500, "tonnes"),
  27355. name: "Front",
  27356. image: {
  27357. source: "./media/characters/ryoko/front.svg",
  27358. extra: 4632 / 3926,
  27359. bottom: 193 / 4823
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Normal",
  27366. height: math.unit(50, "meters"),
  27367. default: true
  27368. },
  27369. ]
  27370. ))
  27371. characterMakers.push(() => makeCharacter(
  27372. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27373. {
  27374. front: {
  27375. height: math.unit(30, "m"),
  27376. weight: math.unit(22, "tonnes"),
  27377. name: "Front",
  27378. image: {
  27379. source: "./media/characters/elio/front.svg",
  27380. extra: 4582 / 3720,
  27381. bottom: 236 / 4828
  27382. }
  27383. },
  27384. },
  27385. [
  27386. {
  27387. name: "Normal",
  27388. height: math.unit(30, "meters"),
  27389. default: true
  27390. },
  27391. ]
  27392. ))
  27393. characterMakers.push(() => makeCharacter(
  27394. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27395. {
  27396. front: {
  27397. height: math.unit(6 + 3 / 12, "feet"),
  27398. weight: math.unit(120, "lb"),
  27399. name: "Front",
  27400. image: {
  27401. source: "./media/characters/azura/front.svg",
  27402. extra: 1149 / 1135,
  27403. bottom: 45 / 1194
  27404. }
  27405. },
  27406. frontClothed: {
  27407. height: math.unit(6 + 3 / 12, "feet"),
  27408. weight: math.unit(120, "lb"),
  27409. name: "Front (Clothed)",
  27410. image: {
  27411. source: "./media/characters/azura/front-clothed.svg",
  27412. extra: 1149 / 1135,
  27413. bottom: 45 / 1194
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(6 + 3 / 12, "feet"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Macro",
  27425. height: math.unit(20 + 6 / 12, "feet")
  27426. },
  27427. {
  27428. name: "Megamacro",
  27429. height: math.unit(12, "miles")
  27430. },
  27431. {
  27432. name: "Gigamacro",
  27433. height: math.unit(10000, "miles")
  27434. },
  27435. {
  27436. name: "Teramacro",
  27437. height: math.unit(900000, "miles")
  27438. },
  27439. ]
  27440. ))
  27441. characterMakers.push(() => makeCharacter(
  27442. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27443. {
  27444. front: {
  27445. height: math.unit(12, "feet"),
  27446. weight: math.unit(1, "ton"),
  27447. capacity: math.unit(660000, "gallons"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/zeus/front.svg",
  27451. extra: 5005 / 4717,
  27452. bottom: 363 / 5388
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(12, "feet")
  27460. },
  27461. {
  27462. name: "Preferred Size",
  27463. height: math.unit(0.5, "miles"),
  27464. default: true
  27465. },
  27466. {
  27467. name: "Giga Horse",
  27468. height: math.unit(300, "miles")
  27469. },
  27470. {
  27471. name: "Riding Planets",
  27472. height: math.unit(30, "megameters")
  27473. },
  27474. {
  27475. name: "Cosmic Giant",
  27476. height: math.unit(3, "zettameters")
  27477. },
  27478. {
  27479. name: "Breeding God",
  27480. height: math.unit(9.92e22, "yottameters")
  27481. },
  27482. ]
  27483. ))
  27484. characterMakers.push(() => makeCharacter(
  27485. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27486. {
  27487. side: {
  27488. height: math.unit(9, "feet"),
  27489. weight: math.unit(1500, "kg"),
  27490. name: "Side",
  27491. image: {
  27492. source: "./media/characters/fang/side.svg",
  27493. extra: 924 / 866,
  27494. bottom: 47.5 / 972.3
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(9, "feet"),
  27502. default: true
  27503. },
  27504. {
  27505. name: "Macro",
  27506. height: math.unit(75 + 6 / 12, "feet")
  27507. },
  27508. {
  27509. name: "Teramacro",
  27510. height: math.unit(50000, "miles")
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(10, "feet"),
  27519. weight: math.unit(2, "tons"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/rekhit/front.svg",
  27523. extra: 2796 / 2590,
  27524. bottom: 225 / 3022
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(10, "feet"),
  27532. default: true
  27533. },
  27534. {
  27535. name: "Macro",
  27536. height: math.unit(500, "feet")
  27537. },
  27538. ]
  27539. ))
  27540. characterMakers.push(() => makeCharacter(
  27541. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27542. {
  27543. front: {
  27544. height: math.unit(7 + 6.451 / 12, "feet"),
  27545. weight: math.unit(310, "lb"),
  27546. name: "Front",
  27547. image: {
  27548. source: "./media/characters/dahlia-verrick/front.svg",
  27549. extra: 1488 / 1365,
  27550. bottom: 6.2 / 1495
  27551. }
  27552. },
  27553. back: {
  27554. height: math.unit(7 + 6.451 / 12, "feet"),
  27555. weight: math.unit(310, "lb"),
  27556. name: "Back",
  27557. image: {
  27558. source: "./media/characters/dahlia-verrick/back.svg",
  27559. extra: 1472 / 1351,
  27560. bottom: 5.28 / 1477
  27561. }
  27562. },
  27563. frontBusiness: {
  27564. height: math.unit(7 + 6.451 / 12, "feet"),
  27565. weight: math.unit(200, "lb"),
  27566. name: "Front (Business)",
  27567. image: {
  27568. source: "./media/characters/dahlia-verrick/front-business.svg",
  27569. extra: 1478 / 1381,
  27570. bottom: 5.5 / 1484
  27571. }
  27572. },
  27573. frontCasual: {
  27574. height: math.unit(7 + 6.451 / 12, "feet"),
  27575. weight: math.unit(200, "lb"),
  27576. name: "Front (Casual)",
  27577. image: {
  27578. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27579. extra: 1478 / 1381,
  27580. bottom: 5.5 / 1484
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Travel-Sized",
  27587. height: math.unit(7.45, "inches")
  27588. },
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(7 + 6.451 / 12, "feet"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Hitting the Town",
  27596. height: math.unit(37 + 8 / 12, "feet")
  27597. },
  27598. {
  27599. name: "Stomp in the Suburbs",
  27600. height: math.unit(964 + 9.728 / 12, "feet")
  27601. },
  27602. {
  27603. name: "Sit on the City",
  27604. height: math.unit(61747 + 10.592 / 12, "feet")
  27605. },
  27606. {
  27607. name: "Glomp the Globe",
  27608. height: math.unit(252919327 + 4.832 / 12, "feet")
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(6 + 4 / 12, "feet"),
  27617. weight: math.unit(320, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/balina-mahigan/front.svg",
  27621. extra: 447 / 428,
  27622. bottom: 18 / 466
  27623. }
  27624. },
  27625. back: {
  27626. height: math.unit(6 + 4 / 12, "feet"),
  27627. weight: math.unit(320, "lb"),
  27628. name: "Back",
  27629. image: {
  27630. source: "./media/characters/balina-mahigan/back.svg",
  27631. extra: 445 / 428,
  27632. bottom: 4.07 / 448
  27633. }
  27634. },
  27635. arm: {
  27636. height: math.unit(1.88, "feet"),
  27637. name: "Arm",
  27638. image: {
  27639. source: "./media/characters/balina-mahigan/arm.svg"
  27640. }
  27641. },
  27642. backPort: {
  27643. height: math.unit(0.685, "feet"),
  27644. name: "Back Port",
  27645. image: {
  27646. source: "./media/characters/balina-mahigan/back-port.svg"
  27647. }
  27648. },
  27649. hoofpaw: {
  27650. height: math.unit(1.41, "feet"),
  27651. name: "Hoofpaw",
  27652. image: {
  27653. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27654. }
  27655. },
  27656. leftHandBack: {
  27657. height: math.unit(0.938, "feet"),
  27658. name: "Left Hand (Back)",
  27659. image: {
  27660. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27661. }
  27662. },
  27663. leftHandFront: {
  27664. height: math.unit(0.938, "feet"),
  27665. name: "Left Hand (Front)",
  27666. image: {
  27667. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27668. }
  27669. },
  27670. rightHandBack: {
  27671. height: math.unit(0.95, "feet"),
  27672. name: "Right Hand (Back)",
  27673. image: {
  27674. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27675. }
  27676. },
  27677. rightHandFront: {
  27678. height: math.unit(0.95, "feet"),
  27679. name: "Right Hand (Front)",
  27680. image: {
  27681. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Normal",
  27688. height: math.unit(6 + 4 / 12, "feet"),
  27689. default: true
  27690. },
  27691. ]
  27692. ))
  27693. characterMakers.push(() => makeCharacter(
  27694. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27695. {
  27696. front: {
  27697. height: math.unit(6, "feet"),
  27698. weight: math.unit(320, "lb"),
  27699. name: "Front",
  27700. image: {
  27701. source: "./media/characters/balina-mejeri/front.svg",
  27702. extra: 517 / 488,
  27703. bottom: 44.2 / 561
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Normal",
  27710. height: math.unit(6 + 4 / 12, "feet")
  27711. },
  27712. {
  27713. name: "Business",
  27714. height: math.unit(155, "feet"),
  27715. default: true
  27716. },
  27717. ]
  27718. ))
  27719. characterMakers.push(() => makeCharacter(
  27720. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27721. {
  27722. kneeling: {
  27723. height: math.unit(6 + 4 / 12, "feet"),
  27724. weight: math.unit(300 * 20, "lb"),
  27725. name: "Kneeling",
  27726. image: {
  27727. source: "./media/characters/balbarian/kneeling.svg",
  27728. extra: 922 / 862,
  27729. bottom: 42.4 / 965
  27730. }
  27731. },
  27732. },
  27733. [
  27734. {
  27735. name: "Normal",
  27736. height: math.unit(6 + 4 / 12, "feet")
  27737. },
  27738. {
  27739. name: "Treasured",
  27740. height: math.unit(18 + 9 / 12, "feet"),
  27741. default: true
  27742. },
  27743. {
  27744. name: "Macro",
  27745. height: math.unit(900, "feet")
  27746. },
  27747. ]
  27748. ))
  27749. characterMakers.push(() => makeCharacter(
  27750. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27751. {
  27752. front: {
  27753. height: math.unit(6 + 4 / 12, "feet"),
  27754. weight: math.unit(325, "lb"),
  27755. name: "Front",
  27756. image: {
  27757. source: "./media/characters/balina-amarini/front.svg",
  27758. extra: 415 / 403,
  27759. bottom: 19 / 433.4
  27760. }
  27761. },
  27762. back: {
  27763. height: math.unit(6 + 4 / 12, "feet"),
  27764. weight: math.unit(325, "lb"),
  27765. name: "Back",
  27766. image: {
  27767. source: "./media/characters/balina-amarini/back.svg",
  27768. extra: 415 / 403,
  27769. bottom: 13.5 / 432
  27770. }
  27771. },
  27772. overdrive: {
  27773. height: math.unit(6 + 4 / 12, "feet"),
  27774. weight: math.unit(400, "lb"),
  27775. name: "Overdrive",
  27776. image: {
  27777. source: "./media/characters/balina-amarini/overdrive.svg",
  27778. extra: 269 / 259,
  27779. bottom: 12 / 282
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Boom",
  27786. height: math.unit(9 + 10 / 12, "feet"),
  27787. default: true
  27788. },
  27789. {
  27790. name: "Macro",
  27791. height: math.unit(280, "feet")
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27797. {
  27798. goddess: {
  27799. height: math.unit(600, "feet"),
  27800. weight: math.unit(2000000, "tons"),
  27801. name: "Goddess",
  27802. image: {
  27803. source: "./media/characters/lady-kubwa/goddess.svg",
  27804. extra: 1240.5 / 1223,
  27805. bottom: 22 / 1263
  27806. }
  27807. },
  27808. goddesser: {
  27809. height: math.unit(900, "feet"),
  27810. weight: math.unit(20000000, "lb"),
  27811. name: "Goddess-er",
  27812. image: {
  27813. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27814. extra: 899 / 888,
  27815. bottom: 12.6 / 912
  27816. }
  27817. },
  27818. },
  27819. [
  27820. {
  27821. name: "Macro",
  27822. height: math.unit(600, "feet"),
  27823. default: true
  27824. },
  27825. {
  27826. name: "Megamacro",
  27827. height: math.unit(250, "miles")
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(7 + 7 / 12, "feet"),
  27836. weight: math.unit(250, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/tala-grovehorn/front.svg",
  27840. extra: 2636 / 2525,
  27841. bottom: 147 / 2781
  27842. }
  27843. },
  27844. back: {
  27845. height: math.unit(7 + 7 / 12, "feet"),
  27846. weight: math.unit(250, "lb"),
  27847. name: "Back",
  27848. image: {
  27849. source: "./media/characters/tala-grovehorn/back.svg",
  27850. extra: 2635 / 2539,
  27851. bottom: 100 / 2732.8
  27852. }
  27853. },
  27854. mouth: {
  27855. height: math.unit(1.15, "feet"),
  27856. name: "Mouth",
  27857. image: {
  27858. source: "./media/characters/tala-grovehorn/mouth.svg"
  27859. }
  27860. },
  27861. dick: {
  27862. height: math.unit(2.36, "feet"),
  27863. name: "Dick",
  27864. image: {
  27865. source: "./media/characters/tala-grovehorn/dick.svg"
  27866. }
  27867. },
  27868. slit: {
  27869. height: math.unit(0.61, "feet"),
  27870. name: "Slit",
  27871. image: {
  27872. source: "./media/characters/tala-grovehorn/slit.svg"
  27873. }
  27874. },
  27875. },
  27876. [
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(7 + 7 / 12, "feet"),
  27884. weight: math.unit(225, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/epona/front.svg",
  27888. extra: 2445 / 2290,
  27889. bottom: 251 / 2696
  27890. }
  27891. },
  27892. back: {
  27893. height: math.unit(7 + 7 / 12, "feet"),
  27894. weight: math.unit(225, "lb"),
  27895. name: "Back",
  27896. image: {
  27897. source: "./media/characters/epona/back.svg",
  27898. extra: 2546 / 2408,
  27899. bottom: 44 / 2589
  27900. }
  27901. },
  27902. genitals: {
  27903. height: math.unit(1.5, "feet"),
  27904. name: "Genitals",
  27905. image: {
  27906. source: "./media/characters/epona/genitals.svg"
  27907. }
  27908. },
  27909. },
  27910. [
  27911. {
  27912. name: "Normal",
  27913. height: math.unit(7 + 7 / 12, "feet"),
  27914. default: true
  27915. },
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(7, "feet"),
  27923. weight: math.unit(518, "lb"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/avia-bloodbourn/front.svg",
  27927. extra: 1466 / 1350,
  27928. bottom: 65 / 1527
  27929. }
  27930. },
  27931. },
  27932. [
  27933. ]
  27934. ))
  27935. characterMakers.push(() => makeCharacter(
  27936. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27937. {
  27938. front: {
  27939. height: math.unit(9.35, "feet"),
  27940. weight: math.unit(600, "lb"),
  27941. name: "Front",
  27942. image: {
  27943. source: "./media/characters/amera/front.svg",
  27944. extra: 891 / 818,
  27945. bottom: 30 / 922.7
  27946. }
  27947. },
  27948. back: {
  27949. height: math.unit(9.35, "feet"),
  27950. weight: math.unit(600, "lb"),
  27951. name: "Back",
  27952. image: {
  27953. source: "./media/characters/amera/back.svg",
  27954. extra: 876 / 824,
  27955. bottom: 6.8 / 884
  27956. }
  27957. },
  27958. dick: {
  27959. height: math.unit(2.14, "feet"),
  27960. name: "Dick",
  27961. image: {
  27962. source: "./media/characters/amera/dick.svg"
  27963. }
  27964. },
  27965. },
  27966. [
  27967. {
  27968. name: "Normal",
  27969. height: math.unit(9.35, "feet"),
  27970. default: true
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27976. {
  27977. kneeling: {
  27978. height: math.unit(3 + 4 / 12, "feet"),
  27979. weight: math.unit(90, "lb"),
  27980. name: "Kneeling",
  27981. image: {
  27982. source: "./media/characters/rosewen/kneeling.svg",
  27983. extra: 1835 / 1571,
  27984. bottom: 27.7 / 1862
  27985. }
  27986. },
  27987. },
  27988. [
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(3 + 4 / 12, "feet"),
  27992. default: true
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27998. {
  27999. front: {
  28000. height: math.unit(5 + 10 / 12, "feet"),
  28001. weight: math.unit(200, "lb"),
  28002. name: "Front",
  28003. image: {
  28004. source: "./media/characters/sabah/front.svg",
  28005. extra: 849 / 763,
  28006. bottom: 33.9 / 881
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(5 + 10 / 12, "feet"),
  28014. default: true
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28020. {
  28021. front: {
  28022. height: math.unit(3 + 5 / 12, "feet"),
  28023. weight: math.unit(40, "kg"),
  28024. name: "Front",
  28025. image: {
  28026. source: "./media/characters/purple-flame/front.svg",
  28027. extra: 1577 / 1412,
  28028. bottom: 97 / 1694
  28029. }
  28030. },
  28031. frontDressed: {
  28032. height: math.unit(3 + 5 / 12, "feet"),
  28033. weight: math.unit(40, "kg"),
  28034. name: "Front (Dressed)",
  28035. image: {
  28036. source: "./media/characters/purple-flame/front-dressed.svg",
  28037. extra: 1577 / 1412,
  28038. bottom: 97 / 1694
  28039. }
  28040. },
  28041. headphones: {
  28042. height: math.unit(0.85, "feet"),
  28043. name: "Headphones",
  28044. image: {
  28045. source: "./media/characters/purple-flame/headphones.svg"
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Really Small",
  28052. height: math.unit(5, "cm")
  28053. },
  28054. {
  28055. name: "Micro",
  28056. height: math.unit(1 + 5 / 12, "feet")
  28057. },
  28058. {
  28059. name: "Normal",
  28060. height: math.unit(3 + 5 / 12, "feet"),
  28061. default: true
  28062. },
  28063. {
  28064. name: "Minimacro",
  28065. height: math.unit(125, "feet")
  28066. },
  28067. {
  28068. name: "Macro",
  28069. height: math.unit(0.5, "miles")
  28070. },
  28071. {
  28072. name: "Megamacro",
  28073. height: math.unit(50, "miles")
  28074. },
  28075. {
  28076. name: "Gigantic",
  28077. height: math.unit(750, "miles")
  28078. },
  28079. {
  28080. name: "Planetary",
  28081. height: math.unit(15000, "miles")
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28087. {
  28088. front: {
  28089. height: math.unit(14, "feet"),
  28090. weight: math.unit(959, "lb"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/arsenal/front.svg",
  28094. extra: 2357 / 2157,
  28095. bottom: 93 / 2458
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(14, "feet"),
  28103. default: true
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(6, "feet"),
  28112. weight: math.unit(150, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/adira/front.svg",
  28116. extra: 1078 / 1029,
  28117. bottom: 87 / 1166
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Micro",
  28124. height: math.unit(4, "inches"),
  28125. default: true
  28126. },
  28127. {
  28128. name: "Macro",
  28129. height: math.unit(50, "feet")
  28130. },
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(16, "feet"),
  28138. weight: math.unit(1000, "lb"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/grim/front.svg",
  28142. extra: 622 / 614,
  28143. bottom: 18.1 / 642
  28144. }
  28145. },
  28146. back: {
  28147. height: math.unit(16, "feet"),
  28148. weight: math.unit(1000, "lb"),
  28149. name: "Back",
  28150. image: {
  28151. source: "./media/characters/grim/back.svg",
  28152. extra: 610.6 / 602,
  28153. bottom: 40.8 / 652
  28154. }
  28155. },
  28156. hunched: {
  28157. height: math.unit(9.75, "feet"),
  28158. weight: math.unit(1000, "lb"),
  28159. name: "Hunched",
  28160. image: {
  28161. source: "./media/characters/grim/hunched.svg",
  28162. extra: 304 / 297,
  28163. bottom: 35.4 / 394
  28164. }
  28165. },
  28166. },
  28167. [
  28168. {
  28169. name: "Normal",
  28170. height: math.unit(16, "feet"),
  28171. default: true
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28177. {
  28178. front: {
  28179. height: math.unit(2.3, "meters"),
  28180. weight: math.unit(300, "lb"),
  28181. name: "Front",
  28182. image: {
  28183. source: "./media/characters/sinja/front-sfw.svg",
  28184. extra: 1393 / 1294,
  28185. bottom: 70 / 1463
  28186. }
  28187. },
  28188. frontNsfw: {
  28189. height: math.unit(2.3, "meters"),
  28190. weight: math.unit(300, "lb"),
  28191. name: "Front (NSFW)",
  28192. image: {
  28193. source: "./media/characters/sinja/front-nsfw.svg",
  28194. extra: 1393 / 1294,
  28195. bottom: 70 / 1463
  28196. }
  28197. },
  28198. back: {
  28199. height: math.unit(2.3, "meters"),
  28200. weight: math.unit(300, "lb"),
  28201. name: "Back",
  28202. image: {
  28203. source: "./media/characters/sinja/back.svg",
  28204. extra: 1393 / 1294,
  28205. bottom: 70 / 1463
  28206. }
  28207. },
  28208. head: {
  28209. height: math.unit(1.771, "feet"),
  28210. name: "Head",
  28211. image: {
  28212. source: "./media/characters/sinja/head.svg"
  28213. }
  28214. },
  28215. slit: {
  28216. height: math.unit(0.8, "feet"),
  28217. name: "Slit",
  28218. image: {
  28219. source: "./media/characters/sinja/slit.svg"
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Normal",
  28226. height: math.unit(2.3, "meters")
  28227. },
  28228. {
  28229. name: "Macro",
  28230. height: math.unit(91, "meters"),
  28231. default: true
  28232. },
  28233. {
  28234. name: "Megamacro",
  28235. height: math.unit(91440, "meters")
  28236. },
  28237. {
  28238. name: "Gigamacro",
  28239. height: math.unit(60960000, "meters")
  28240. },
  28241. {
  28242. name: "Teramacro",
  28243. height: math.unit(9144000000, "meters")
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(1.7, "meters"),
  28252. weight: math.unit(130, "lb"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/kyu/front.svg",
  28256. extra: 415 / 395,
  28257. bottom: 5 / 420
  28258. }
  28259. },
  28260. head: {
  28261. height: math.unit(1.75, "feet"),
  28262. name: "Head",
  28263. image: {
  28264. source: "./media/characters/kyu/head.svg"
  28265. }
  28266. },
  28267. foot: {
  28268. height: math.unit(0.81, "feet"),
  28269. name: "Foot",
  28270. image: {
  28271. source: "./media/characters/kyu/foot.svg"
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(1.7, "meters")
  28279. },
  28280. {
  28281. name: "Macro",
  28282. height: math.unit(131, "feet"),
  28283. default: true
  28284. },
  28285. {
  28286. name: "Megamacro",
  28287. height: math.unit(91440, "meters")
  28288. },
  28289. {
  28290. name: "Gigamacro",
  28291. height: math.unit(60960000, "meters")
  28292. },
  28293. {
  28294. name: "Teramacro",
  28295. height: math.unit(9144000000, "meters")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(7 + 1 / 12, "feet"),
  28304. weight: math.unit(250, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/joey/front.svg",
  28308. extra: 1791 / 1537,
  28309. bottom: 28 / 1816
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Micro",
  28316. height: math.unit(3, "inches")
  28317. },
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(7 + 1 / 12, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(165, "cm"),
  28330. weight: math.unit(140, "lb"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/sam-evans/front.svg",
  28334. extra: 3417 / 3230,
  28335. bottom: 41.3 / 3417
  28336. }
  28337. },
  28338. frontSixTails: {
  28339. height: math.unit(165, "cm"),
  28340. weight: math.unit(140, "lb"),
  28341. name: "Front-six-tails",
  28342. image: {
  28343. source: "./media/characters/sam-evans/front-six-tails.svg",
  28344. extra: 3417 / 3230,
  28345. bottom: 41.3 / 3417
  28346. }
  28347. },
  28348. back: {
  28349. height: math.unit(165, "cm"),
  28350. weight: math.unit(140, "lb"),
  28351. name: "Back",
  28352. image: {
  28353. source: "./media/characters/sam-evans/back.svg",
  28354. extra: 3227 / 3032,
  28355. bottom: 6.8 / 3234
  28356. }
  28357. },
  28358. face: {
  28359. height: math.unit(0.68, "feet"),
  28360. name: "Face",
  28361. image: {
  28362. source: "./media/characters/sam-evans/face.svg"
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(165, "cm"),
  28370. default: true
  28371. },
  28372. {
  28373. name: "Macro",
  28374. height: math.unit(100, "meters")
  28375. },
  28376. {
  28377. name: "Macro+",
  28378. height: math.unit(800, "meters")
  28379. },
  28380. {
  28381. name: "Macro++",
  28382. height: math.unit(3, "km")
  28383. },
  28384. {
  28385. name: "Macro+++",
  28386. height: math.unit(30, "km")
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(10, "feet"),
  28395. weight: math.unit(750, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/juliet-a/front.svg",
  28399. extra: 1766 / 1720,
  28400. bottom: 43 / 1809
  28401. }
  28402. },
  28403. back: {
  28404. height: math.unit(10, "feet"),
  28405. weight: math.unit(750, "lb"),
  28406. name: "Back",
  28407. image: {
  28408. source: "./media/characters/juliet-a/back.svg",
  28409. extra: 1781 / 1734,
  28410. bottom: 35 / 1810,
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(10, "feet"),
  28418. default: true
  28419. },
  28420. {
  28421. name: "Dragon Form",
  28422. height: math.unit(250, "feet")
  28423. },
  28424. {
  28425. name: "Macro",
  28426. height: math.unit(1000, "feet")
  28427. },
  28428. {
  28429. name: "Megamacro",
  28430. height: math.unit(10000, "feet")
  28431. }
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28436. {
  28437. regular: {
  28438. height: math.unit(7 + 3 / 12, "feet"),
  28439. weight: math.unit(260, "lb"),
  28440. name: "Regular",
  28441. image: {
  28442. source: "./media/characters/wild/regular.svg",
  28443. extra: 97.45 / 92,
  28444. bottom: 6.8 / 104.3
  28445. }
  28446. },
  28447. biggums: {
  28448. height: math.unit(8 + 6 / 12, "feet"),
  28449. weight: math.unit(425, "lb"),
  28450. name: "Biggums",
  28451. image: {
  28452. source: "./media/characters/wild/biggums.svg",
  28453. extra: 97.45 / 92,
  28454. bottom: 7.5 / 132.34
  28455. }
  28456. },
  28457. mawRegular: {
  28458. height: math.unit(1.24, "feet"),
  28459. name: "Maw (Regular)",
  28460. image: {
  28461. source: "./media/characters/wild/maw.svg"
  28462. }
  28463. },
  28464. mawBiggums: {
  28465. height: math.unit(1.47, "feet"),
  28466. name: "Maw (Biggums)",
  28467. image: {
  28468. source: "./media/characters/wild/maw.svg"
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(7 + 3 / 12, "feet"),
  28476. default: true
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28482. {
  28483. front: {
  28484. height: math.unit(2.5, "meters"),
  28485. weight: math.unit(200, "kg"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/vidar/front.svg",
  28489. extra: 2994 / 2795,
  28490. bottom: 56 / 3061
  28491. }
  28492. },
  28493. back: {
  28494. height: math.unit(2.5, "meters"),
  28495. weight: math.unit(200, "kg"),
  28496. name: "Back",
  28497. image: {
  28498. source: "./media/characters/vidar/back.svg",
  28499. extra: 3131 / 2928,
  28500. bottom: 13.5 / 3141.5
  28501. }
  28502. },
  28503. feral: {
  28504. height: math.unit(2.5, "meters"),
  28505. weight: math.unit(2000, "kg"),
  28506. name: "Feral",
  28507. image: {
  28508. source: "./media/characters/vidar/feral.svg",
  28509. extra: 2790 / 1765,
  28510. bottom: 6 / 2796
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Normal",
  28517. height: math.unit(2.5, "meters"),
  28518. default: true
  28519. },
  28520. {
  28521. name: "Macro",
  28522. height: math.unit(100, "meters")
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28528. {
  28529. front: {
  28530. height: math.unit(5 + 9 / 12, "feet"),
  28531. weight: math.unit(120, "lb"),
  28532. name: "Front",
  28533. image: {
  28534. source: "./media/characters/ash/front.svg",
  28535. extra: 2189 / 1961,
  28536. bottom: 5.2 / 2194
  28537. }
  28538. },
  28539. },
  28540. [
  28541. {
  28542. name: "Normal",
  28543. height: math.unit(5 + 9 / 12, "feet"),
  28544. default: true
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(9, "feet"),
  28553. weight: math.unit(10000, "lb"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/gygabite/front.svg",
  28557. bottom: 31.7 / 537.8,
  28558. extra: 505 / 370
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Normal",
  28565. height: math.unit(9, "feet"),
  28566. default: true
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28572. {
  28573. front: {
  28574. height: math.unit(12, "feet"),
  28575. weight: math.unit(4000, "lb"),
  28576. name: "Front",
  28577. image: {
  28578. source: "./media/characters/p0tat0/front.svg",
  28579. extra: 1065 / 921,
  28580. bottom: 55.7 / 1121.25
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Normal",
  28587. height: math.unit(12, "feet"),
  28588. default: true
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28594. {
  28595. side: {
  28596. height: math.unit(6.5, "feet"),
  28597. weight: math.unit(800, "lb"),
  28598. name: "Side",
  28599. image: {
  28600. source: "./media/characters/dusk/side.svg",
  28601. extra: 615 / 373,
  28602. bottom: 53 / 664
  28603. }
  28604. },
  28605. sitting: {
  28606. height: math.unit(7, "feet"),
  28607. weight: math.unit(800, "lb"),
  28608. name: "Sitting",
  28609. image: {
  28610. source: "./media/characters/dusk/sitting.svg",
  28611. extra: 753 / 425,
  28612. bottom: 33 / 774
  28613. }
  28614. },
  28615. head: {
  28616. height: math.unit(6.1, "feet"),
  28617. name: "Head",
  28618. image: {
  28619. source: "./media/characters/dusk/head.svg"
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(7, "feet"),
  28627. default: true
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(15, "feet"),
  28636. weight: math.unit(7000, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/jay-direwolf/front.svg",
  28640. extra: 1810 / 1732,
  28641. bottom: 66 / 1892
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Normal",
  28648. height: math.unit(15, "feet"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(4 + 9 / 12, "feet"),
  28658. weight: math.unit(130, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/anchovie/front.svg",
  28662. extra: 382 / 350,
  28663. bottom: 25 / 409
  28664. }
  28665. },
  28666. back: {
  28667. height: math.unit(4 + 9 / 12, "feet"),
  28668. weight: math.unit(130, "lb"),
  28669. name: "Back",
  28670. image: {
  28671. source: "./media/characters/anchovie/back.svg",
  28672. extra: 385 / 352,
  28673. bottom: 16.6 / 402
  28674. }
  28675. },
  28676. frontDressed: {
  28677. height: math.unit(4 + 9 / 12, "feet"),
  28678. weight: math.unit(130, "lb"),
  28679. name: "Front (Dressed)",
  28680. image: {
  28681. source: "./media/characters/anchovie/front-dressed.svg",
  28682. extra: 382 / 350,
  28683. bottom: 25 / 409
  28684. }
  28685. },
  28686. backDressed: {
  28687. height: math.unit(4 + 9 / 12, "feet"),
  28688. weight: math.unit(130, "lb"),
  28689. name: "Back (Dressed)",
  28690. image: {
  28691. source: "./media/characters/anchovie/back-dressed.svg",
  28692. extra: 385 / 352,
  28693. bottom: 16.6 / 402
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Micro",
  28700. height: math.unit(6.4, "inches")
  28701. },
  28702. {
  28703. name: "Normal",
  28704. height: math.unit(4 + 9 / 12, "feet"),
  28705. default: true
  28706. },
  28707. ]
  28708. ))
  28709. characterMakers.push(() => makeCharacter(
  28710. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28711. {
  28712. front: {
  28713. height: math.unit(2, "meters"),
  28714. weight: math.unit(180, "lb"),
  28715. name: "Front",
  28716. image: {
  28717. source: "./media/characters/acidrenamon/front.svg",
  28718. extra: 987 / 890,
  28719. bottom: 22.8 / 1009
  28720. }
  28721. },
  28722. back: {
  28723. height: math.unit(2, "meters"),
  28724. weight: math.unit(180, "lb"),
  28725. name: "Back",
  28726. image: {
  28727. source: "./media/characters/acidrenamon/back.svg",
  28728. extra: 983 / 891,
  28729. bottom: 8.4 / 992
  28730. }
  28731. },
  28732. head: {
  28733. height: math.unit(1.92, "feet"),
  28734. name: "Head",
  28735. image: {
  28736. source: "./media/characters/acidrenamon/head.svg"
  28737. }
  28738. },
  28739. rump: {
  28740. height: math.unit(1.72, "feet"),
  28741. name: "Rump",
  28742. image: {
  28743. source: "./media/characters/acidrenamon/rump.svg"
  28744. }
  28745. },
  28746. tail: {
  28747. height: math.unit(4.2, "feet"),
  28748. name: "Tail",
  28749. image: {
  28750. source: "./media/characters/acidrenamon/tail.svg"
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(2, "meters"),
  28758. default: true
  28759. },
  28760. {
  28761. name: "Minimacro",
  28762. height: math.unit(7, "meters")
  28763. },
  28764. {
  28765. name: "Macro",
  28766. height: math.unit(200, "meters")
  28767. },
  28768. {
  28769. name: "Gigamacro",
  28770. height: math.unit(0.2, "earths")
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(152, "feet"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/kenzie-lee/front.svg",
  28782. extra: 1869/1774,
  28783. bottom: 128/1997
  28784. }
  28785. },
  28786. side: {
  28787. height: math.unit(86, "feet"),
  28788. name: "Side",
  28789. image: {
  28790. source: "./media/characters/kenzie-lee/side.svg",
  28791. extra: 930/815,
  28792. bottom: 177/1107
  28793. }
  28794. },
  28795. paw: {
  28796. height: math.unit(15, "feet"),
  28797. name: "Paw",
  28798. image: {
  28799. source: "./media/characters/kenzie-lee/paw.svg"
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Kenzie Flea",
  28806. height: math.unit(2, "mm"),
  28807. default: true
  28808. },
  28809. {
  28810. name: "Micro",
  28811. height: math.unit(2, "inches")
  28812. },
  28813. {
  28814. name: "Normal",
  28815. height: math.unit(152, "feet")
  28816. },
  28817. {
  28818. name: "Megamacro",
  28819. height: math.unit(7, "miles")
  28820. },
  28821. {
  28822. name: "Gigamacro",
  28823. height: math.unit(8000, "miles")
  28824. },
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28829. {
  28830. front: {
  28831. height: math.unit(6, "feet"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/withers/front.svg",
  28835. extra: 1935/1760,
  28836. bottom: 72/2007
  28837. }
  28838. },
  28839. back: {
  28840. height: math.unit(6, "feet"),
  28841. name: "Back",
  28842. image: {
  28843. source: "./media/characters/withers/back.svg",
  28844. extra: 1944/1792,
  28845. bottom: 12/1956
  28846. }
  28847. },
  28848. dressed: {
  28849. height: math.unit(6, "feet"),
  28850. name: "Dressed",
  28851. image: {
  28852. source: "./media/characters/withers/dressed.svg",
  28853. extra: 1937/1765,
  28854. bottom: 73/2010
  28855. }
  28856. },
  28857. phase1: {
  28858. height: math.unit(1.1, "feet"),
  28859. name: "Phase 1",
  28860. image: {
  28861. source: "./media/characters/withers/phase-1.svg",
  28862. extra: 1885/1232,
  28863. bottom: 0/1885
  28864. }
  28865. },
  28866. phase2: {
  28867. height: math.unit(1.05, "feet"),
  28868. name: "Phase 2",
  28869. image: {
  28870. source: "./media/characters/withers/phase-2.svg",
  28871. extra: 1792/1090,
  28872. bottom: 0/1792
  28873. }
  28874. },
  28875. partyWipe: {
  28876. height: math.unit(1.1, "feet"),
  28877. name: "Party Wipe",
  28878. image: {
  28879. source: "./media/characters/withers/party-wipe.svg",
  28880. extra: 1864/1207,
  28881. bottom: 0/1864
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Macro",
  28888. height: math.unit(167, "feet"),
  28889. default: true
  28890. },
  28891. {
  28892. name: "Megamacro",
  28893. height: math.unit(15, "miles")
  28894. }
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28899. {
  28900. front: {
  28901. height: math.unit(6 + 7 / 12, "feet"),
  28902. weight: math.unit(250, "lb"),
  28903. name: "Front",
  28904. image: {
  28905. source: "./media/characters/nemoskii/front.svg",
  28906. extra: 2270 / 1734,
  28907. bottom: 86 / 2354
  28908. }
  28909. },
  28910. back: {
  28911. height: math.unit(6 + 7 / 12, "feet"),
  28912. weight: math.unit(250, "lb"),
  28913. name: "Back",
  28914. image: {
  28915. source: "./media/characters/nemoskii/back.svg",
  28916. extra: 1845 / 1788,
  28917. bottom: 10.5 / 1852
  28918. }
  28919. },
  28920. head: {
  28921. height: math.unit(1.31, "feet"),
  28922. name: "Head",
  28923. image: {
  28924. source: "./media/characters/nemoskii/head.svg"
  28925. }
  28926. },
  28927. },
  28928. [
  28929. {
  28930. name: "Micro",
  28931. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28932. },
  28933. {
  28934. name: "Normal",
  28935. height: math.unit(6 + 7 / 12, "feet"),
  28936. default: true
  28937. },
  28938. {
  28939. name: "Macro",
  28940. height: math.unit((6 + 7 / 12) * 150, "feet")
  28941. },
  28942. {
  28943. name: "Macro+",
  28944. height: math.unit((6 + 7 / 12) * 500, "feet")
  28945. },
  28946. {
  28947. name: "Megamacro",
  28948. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28949. },
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(1, "mile"),
  28957. weight: math.unit(265261.9, "lb"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/shui/front.svg",
  28961. extra: 1633 / 1564,
  28962. bottom: 91.5 / 1726
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Macro",
  28969. height: math.unit(1, "mile"),
  28970. default: true
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(12 + 6 / 12, "feet"),
  28979. weight: math.unit(1342, "lb"),
  28980. name: "Front",
  28981. image: {
  28982. source: "./media/characters/arokh-takakura/front.svg",
  28983. extra: 1089 / 1043,
  28984. bottom: 77.4 / 1176.7
  28985. }
  28986. },
  28987. back: {
  28988. height: math.unit(12 + 6 / 12, "feet"),
  28989. weight: math.unit(1342, "lb"),
  28990. name: "Back",
  28991. image: {
  28992. source: "./media/characters/arokh-takakura/back.svg",
  28993. extra: 1046 / 1019,
  28994. bottom: 102 / 1150
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Big",
  29001. height: math.unit(12 + 6 / 12, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(5 + 6 / 12, "feet"),
  29011. weight: math.unit(150, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/theo/front.svg",
  29015. extra: 1184 / 1131,
  29016. bottom: 7.4 / 1191
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Micro",
  29023. height: math.unit(5, "inches")
  29024. },
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(5 + 6 / 12, "feet"),
  29028. default: true
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(5 + 9 / 12, "feet"),
  29037. weight: math.unit(130, "lb"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/cecelia-swift/front.svg",
  29041. extra: 502 / 484,
  29042. bottom: 23 / 523
  29043. }
  29044. },
  29045. back: {
  29046. height: math.unit(5 + 9 / 12, "feet"),
  29047. weight: math.unit(130, "lb"),
  29048. name: "Back",
  29049. image: {
  29050. source: "./media/characters/cecelia-swift/back.svg",
  29051. extra: 499 / 485,
  29052. bottom: 12 / 511
  29053. }
  29054. },
  29055. head: {
  29056. height: math.unit(0.90, "feet"),
  29057. name: "Head",
  29058. image: {
  29059. source: "./media/characters/cecelia-swift/head.svg"
  29060. }
  29061. },
  29062. rump: {
  29063. height: math.unit(1.75, "feet"),
  29064. name: "Rump",
  29065. image: {
  29066. source: "./media/characters/cecelia-swift/rump.svg"
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Normal",
  29073. height: math.unit(5 + 9 / 12, "feet"),
  29074. default: true
  29075. },
  29076. {
  29077. name: "Big",
  29078. height: math.unit(50, "feet")
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(100, "feet")
  29083. },
  29084. {
  29085. name: "Macro+",
  29086. height: math.unit(500, "feet")
  29087. },
  29088. {
  29089. name: "Macro++",
  29090. height: math.unit(1000, "feet")
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(6, "feet"),
  29099. weight: math.unit(150, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/kaunan/front.svg",
  29103. extra: 2890 / 2523,
  29104. bottom: 49 / 2939
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Macro",
  29111. height: math.unit(150, "feet"),
  29112. default: true
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29118. {
  29119. dressed: {
  29120. height: math.unit(175, "cm"),
  29121. weight: math.unit(60, "kg"),
  29122. name: "Dressed",
  29123. image: {
  29124. source: "./media/characters/fei/dressed.svg",
  29125. extra: 1402/1278,
  29126. bottom: 27/1429
  29127. }
  29128. },
  29129. nude: {
  29130. height: math.unit(175, "cm"),
  29131. weight: math.unit(60, "kg"),
  29132. name: "Nude",
  29133. image: {
  29134. source: "./media/characters/fei/nude.svg",
  29135. extra: 1402/1278,
  29136. bottom: 27/1429
  29137. }
  29138. },
  29139. heels: {
  29140. height: math.unit(0.466, "feet"),
  29141. name: "Heels",
  29142. image: {
  29143. source: "./media/characters/fei/heels.svg",
  29144. extra: 156/152,
  29145. bottom: 28/184
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Mortal",
  29152. height: math.unit(175, "cm")
  29153. },
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(3500, "m")
  29157. },
  29158. {
  29159. name: "Stroll",
  29160. height: math.unit(18.4, "km"),
  29161. default: true
  29162. },
  29163. {
  29164. name: "Showoff",
  29165. height: math.unit(175, "km")
  29166. },
  29167. ]
  29168. ))
  29169. characterMakers.push(() => makeCharacter(
  29170. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29171. {
  29172. front: {
  29173. height: math.unit(7, "feet"),
  29174. weight: math.unit(1000, "kg"),
  29175. name: "Front",
  29176. image: {
  29177. source: "./media/characters/edrax/front.svg",
  29178. extra: 2838 / 2550,
  29179. bottom: 130 / 2968
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Small",
  29186. height: math.unit(7, "feet")
  29187. },
  29188. {
  29189. name: "Normal",
  29190. height: math.unit(1500, "meters")
  29191. },
  29192. {
  29193. name: "Mega",
  29194. height: math.unit(12000000, "km"),
  29195. default: true
  29196. },
  29197. {
  29198. name: "Megamacro",
  29199. height: math.unit(10600000, "lightyears")
  29200. },
  29201. {
  29202. name: "Hypermacro",
  29203. height: math.unit(256, "yottameters")
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(10, "feet"),
  29212. weight: math.unit(750, "lb"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/clove/front.svg",
  29216. extra: 1918/1751,
  29217. bottom: 52/1970
  29218. }
  29219. },
  29220. back: {
  29221. height: math.unit(10, "feet"),
  29222. weight: math.unit(750, "lb"),
  29223. name: "Back",
  29224. image: {
  29225. source: "./media/characters/clove/back.svg",
  29226. extra: 1912/1747,
  29227. bottom: 50/1962
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(10, "feet"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(4, "feet"),
  29244. weight: math.unit(50, "lb"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/alex-rabbit/front.svg",
  29248. extra: 507 / 458,
  29249. bottom: 18.5 / 527
  29250. }
  29251. },
  29252. back: {
  29253. height: math.unit(4, "feet"),
  29254. weight: math.unit(50, "lb"),
  29255. name: "Back",
  29256. image: {
  29257. source: "./media/characters/alex-rabbit/back.svg",
  29258. extra: 502 / 460,
  29259. bottom: 18.9 / 521
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Normal",
  29266. height: math.unit(4, "feet"),
  29267. default: true
  29268. },
  29269. ]
  29270. ))
  29271. characterMakers.push(() => makeCharacter(
  29272. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29273. {
  29274. front: {
  29275. height: math.unit(1 + 3 / 12, "feet"),
  29276. weight: math.unit(80, "lb"),
  29277. name: "Front",
  29278. image: {
  29279. source: "./media/characters/zander-rose/front.svg",
  29280. extra: 916 / 797,
  29281. bottom: 17 / 933
  29282. }
  29283. },
  29284. back: {
  29285. height: math.unit(1 + 3 / 12, "feet"),
  29286. weight: math.unit(80, "lb"),
  29287. name: "Back",
  29288. image: {
  29289. source: "./media/characters/zander-rose/back.svg",
  29290. extra: 903 / 779,
  29291. bottom: 31 / 934
  29292. }
  29293. },
  29294. },
  29295. [
  29296. {
  29297. name: "Normal",
  29298. height: math.unit(1 + 3 / 12, "feet"),
  29299. default: true
  29300. },
  29301. ]
  29302. ))
  29303. characterMakers.push(() => makeCharacter(
  29304. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29305. {
  29306. anthro: {
  29307. height: math.unit(6, "feet"),
  29308. weight: math.unit(150, "lb"),
  29309. name: "Anthro",
  29310. image: {
  29311. source: "./media/characters/razz/anthro.svg",
  29312. extra: 1437 / 1343,
  29313. bottom: 48 / 1485
  29314. }
  29315. },
  29316. feral: {
  29317. height: math.unit(6, "feet"),
  29318. weight: math.unit(150, "lb"),
  29319. name: "Feral",
  29320. image: {
  29321. source: "./media/characters/razz/feral.svg",
  29322. extra: 2569 / 1385,
  29323. bottom: 95 / 2664
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Normal",
  29330. height: math.unit(6, "feet"),
  29331. default: true
  29332. },
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29337. {
  29338. front: {
  29339. height: math.unit(9 + 4 / 12, "feet"),
  29340. weight: math.unit(500, "lb"),
  29341. name: "Front",
  29342. image: {
  29343. source: "./media/characters/morrigan/front.svg",
  29344. extra: 2707 / 2579,
  29345. bottom: 156 / 2863
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Normal",
  29352. height: math.unit(9 + 4 / 12, "feet"),
  29353. default: true
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29359. {
  29360. front: {
  29361. height: math.unit(5, "stories"),
  29362. weight: math.unit(4000, "lb"),
  29363. name: "Front",
  29364. image: {
  29365. source: "./media/characters/jenene/front.svg",
  29366. extra: 1780 / 1710,
  29367. bottom: 57 / 1837
  29368. }
  29369. },
  29370. },
  29371. [
  29372. {
  29373. name: "Normal",
  29374. height: math.unit(5, "stories"),
  29375. default: true
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29381. {
  29382. taurSfw: {
  29383. height: math.unit(10, "meters"),
  29384. weight: math.unit(17500, "kg"),
  29385. name: "Taur",
  29386. image: {
  29387. source: "./media/characters/faey/taur-sfw.svg",
  29388. extra: 1200 / 968,
  29389. bottom: 41 / 1241
  29390. }
  29391. },
  29392. chestmaw: {
  29393. height: math.unit(2.01, "meters"),
  29394. name: "Chestmaw",
  29395. image: {
  29396. source: "./media/characters/faey/chestmaw.svg"
  29397. }
  29398. },
  29399. foot: {
  29400. height: math.unit(2.43, "meters"),
  29401. name: "Foot",
  29402. image: {
  29403. source: "./media/characters/faey/foot.svg"
  29404. }
  29405. },
  29406. jaws: {
  29407. height: math.unit(1.66, "meters"),
  29408. name: "Jaws",
  29409. image: {
  29410. source: "./media/characters/faey/jaws.svg"
  29411. }
  29412. },
  29413. tongues: {
  29414. height: math.unit(2.01, "meters"),
  29415. name: "Tongues",
  29416. image: {
  29417. source: "./media/characters/faey/tongues.svg"
  29418. }
  29419. },
  29420. },
  29421. [
  29422. {
  29423. name: "Small",
  29424. height: math.unit(10, "meters"),
  29425. default: true
  29426. },
  29427. {
  29428. name: "Big",
  29429. height: math.unit(500000, "km")
  29430. },
  29431. ]
  29432. ))
  29433. characterMakers.push(() => makeCharacter(
  29434. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29435. {
  29436. front: {
  29437. height: math.unit(7, "feet"),
  29438. weight: math.unit(275, "lb"),
  29439. name: "Front",
  29440. image: {
  29441. source: "./media/characters/roku/front.svg",
  29442. extra: 903 / 878,
  29443. bottom: 37 / 940
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Normal",
  29450. height: math.unit(7, "feet"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Macro",
  29455. height: math.unit(500, "feet")
  29456. },
  29457. {
  29458. name: "Megamacro",
  29459. height: math.unit(200, "miles")
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29465. {
  29466. front: {
  29467. height: math.unit(6 + 2 / 12, "feet"),
  29468. weight: math.unit(150, "lb"),
  29469. name: "Front",
  29470. image: {
  29471. source: "./media/characters/lira/front.svg",
  29472. extra: 1727 / 1605,
  29473. bottom: 26 / 1753
  29474. }
  29475. },
  29476. back: {
  29477. height: math.unit(6 + 2 / 12, "feet"),
  29478. weight: math.unit(150, "lb"),
  29479. name: "Back",
  29480. image: {
  29481. source: "./media/characters/lira/back.svg",
  29482. extra: 1713/1621,
  29483. bottom: 20/1733
  29484. }
  29485. },
  29486. hand: {
  29487. height: math.unit(0.75, "feet"),
  29488. name: "Hand",
  29489. image: {
  29490. source: "./media/characters/lira/hand.svg"
  29491. }
  29492. },
  29493. maw: {
  29494. height: math.unit(0.65, "feet"),
  29495. name: "Maw",
  29496. image: {
  29497. source: "./media/characters/lira/maw.svg"
  29498. }
  29499. },
  29500. pawDigi: {
  29501. height: math.unit(1.6, "feet"),
  29502. name: "Paw Digi",
  29503. image: {
  29504. source: "./media/characters/lira/paw-digi.svg"
  29505. }
  29506. },
  29507. pawPlanti: {
  29508. height: math.unit(1.4, "feet"),
  29509. name: "Paw Planti",
  29510. image: {
  29511. source: "./media/characters/lira/paw-planti.svg"
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Normal",
  29518. height: math.unit(6 + 2 / 12, "feet"),
  29519. default: true
  29520. },
  29521. {
  29522. name: "Macro",
  29523. height: math.unit(100, "feet")
  29524. },
  29525. {
  29526. name: "Macro²",
  29527. height: math.unit(1600, "feet")
  29528. },
  29529. {
  29530. name: "Planetary",
  29531. height: math.unit(20, "earths")
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(6, "feet"),
  29540. weight: math.unit(150, "lb"),
  29541. name: "Front",
  29542. image: {
  29543. source: "./media/characters/hadjet/front.svg",
  29544. extra: 1480 / 1346,
  29545. bottom: 26 / 1506
  29546. }
  29547. },
  29548. frontNsfw: {
  29549. height: math.unit(6, "feet"),
  29550. weight: math.unit(150, "lb"),
  29551. name: "Front (NSFW)",
  29552. image: {
  29553. source: "./media/characters/hadjet/front-nsfw.svg",
  29554. extra: 1440 / 1358,
  29555. bottom: 52 / 1492
  29556. }
  29557. },
  29558. },
  29559. [
  29560. {
  29561. name: "Macro",
  29562. height: math.unit(10, "stories"),
  29563. default: true
  29564. },
  29565. {
  29566. name: "Megamacro",
  29567. height: math.unit(1.5, "miles")
  29568. },
  29569. {
  29570. name: "Megamacro+",
  29571. height: math.unit(5, "miles")
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29577. {
  29578. side: {
  29579. height: math.unit(106, "feet"),
  29580. weight: math.unit(500, "tonnes"),
  29581. name: "Side",
  29582. image: {
  29583. source: "./media/characters/kodran/side.svg",
  29584. extra: 553 / 480,
  29585. bottom: 33 / 586
  29586. }
  29587. },
  29588. front: {
  29589. height: math.unit(132, "feet"),
  29590. weight: math.unit(500, "tonnes"),
  29591. name: "Front",
  29592. image: {
  29593. source: "./media/characters/kodran/front.svg",
  29594. extra: 667 / 643,
  29595. bottom: 42 / 709
  29596. }
  29597. },
  29598. flying: {
  29599. height: math.unit(350, "feet"),
  29600. weight: math.unit(500, "tonnes"),
  29601. name: "Flying",
  29602. image: {
  29603. source: "./media/characters/kodran/flying.svg"
  29604. }
  29605. },
  29606. foot: {
  29607. height: math.unit(33, "feet"),
  29608. name: "Foot",
  29609. image: {
  29610. source: "./media/characters/kodran/foot.svg"
  29611. }
  29612. },
  29613. footFront: {
  29614. height: math.unit(19, "feet"),
  29615. name: "Foot (Front)",
  29616. image: {
  29617. source: "./media/characters/kodran/foot-front.svg",
  29618. extra: 261 / 261,
  29619. bottom: 91 / 352
  29620. }
  29621. },
  29622. headFront: {
  29623. height: math.unit(53, "feet"),
  29624. name: "Head (Front)",
  29625. image: {
  29626. source: "./media/characters/kodran/head-front.svg"
  29627. }
  29628. },
  29629. headSide: {
  29630. height: math.unit(65, "feet"),
  29631. name: "Head (Side)",
  29632. image: {
  29633. source: "./media/characters/kodran/head-side.svg"
  29634. }
  29635. },
  29636. throat: {
  29637. height: math.unit(79, "feet"),
  29638. name: "Throat",
  29639. image: {
  29640. source: "./media/characters/kodran/throat.svg"
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Large",
  29647. height: math.unit(106, "feet"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29654. {
  29655. side: {
  29656. height: math.unit(11, "feet"),
  29657. weight: math.unit(150, "lb"),
  29658. name: "Side",
  29659. image: {
  29660. source: "./media/characters/pyxaron/side.svg",
  29661. extra: 305 / 195,
  29662. bottom: 17 / 322
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Normal",
  29669. height: math.unit(11, "feet"),
  29670. default: true
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(6, "feet"),
  29679. weight: math.unit(150, "lb"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/meep/front.svg",
  29683. extra: 88 / 80,
  29684. bottom: 6 / 94
  29685. }
  29686. },
  29687. },
  29688. [
  29689. {
  29690. name: "Fun Sized",
  29691. height: math.unit(2, "inches"),
  29692. default: true
  29693. },
  29694. {
  29695. name: "Friend Sized",
  29696. height: math.unit(8, "inches")
  29697. },
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29702. {
  29703. front: {
  29704. height: math.unit(15, "feet"),
  29705. weight: math.unit(2500, "lb"),
  29706. name: "Front",
  29707. image: {
  29708. source: "./media/characters/holly-rabbit/front.svg",
  29709. extra: 1433 / 1233,
  29710. bottom: 125 / 1558
  29711. }
  29712. },
  29713. dick: {
  29714. height: math.unit(4.6, "feet"),
  29715. name: "Dick",
  29716. image: {
  29717. source: "./media/characters/holly-rabbit/dick.svg"
  29718. }
  29719. },
  29720. },
  29721. [
  29722. {
  29723. name: "Normal",
  29724. height: math.unit(15, "feet"),
  29725. default: true
  29726. },
  29727. {
  29728. name: "Macro",
  29729. height: math.unit(250, "feet")
  29730. },
  29731. {
  29732. name: "Macro+",
  29733. height: math.unit(2500, "feet")
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29739. {
  29740. front: {
  29741. height: math.unit(3.02, "meters"),
  29742. weight: math.unit(500, "kg"),
  29743. name: "Front",
  29744. image: {
  29745. source: "./media/characters/drena/front.svg",
  29746. extra: 282 / 243,
  29747. bottom: 8 / 290
  29748. }
  29749. },
  29750. side: {
  29751. height: math.unit(3.02, "meters"),
  29752. weight: math.unit(500, "kg"),
  29753. name: "Side",
  29754. image: {
  29755. source: "./media/characters/drena/side.svg",
  29756. extra: 280 / 245,
  29757. bottom: 10 / 290
  29758. }
  29759. },
  29760. back: {
  29761. height: math.unit(3.02, "meters"),
  29762. weight: math.unit(500, "kg"),
  29763. name: "Back",
  29764. image: {
  29765. source: "./media/characters/drena/back.svg",
  29766. extra: 278 / 243,
  29767. bottom: 2 / 280
  29768. }
  29769. },
  29770. foot: {
  29771. height: math.unit(0.75, "meters"),
  29772. name: "Foot",
  29773. image: {
  29774. source: "./media/characters/drena/foot.svg"
  29775. }
  29776. },
  29777. maw: {
  29778. height: math.unit(0.82, "meters"),
  29779. name: "Maw",
  29780. image: {
  29781. source: "./media/characters/drena/maw.svg"
  29782. }
  29783. },
  29784. eating: {
  29785. height: math.unit(0.75, "meters"),
  29786. name: "Eating",
  29787. image: {
  29788. source: "./media/characters/drena/eating.svg"
  29789. }
  29790. },
  29791. rump: {
  29792. height: math.unit(0.93, "meters"),
  29793. name: "Rump",
  29794. image: {
  29795. source: "./media/characters/drena/rump.svg"
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Normal",
  29802. height: math.unit(3.02, "meters"),
  29803. default: true
  29804. },
  29805. ]
  29806. ))
  29807. characterMakers.push(() => makeCharacter(
  29808. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29809. {
  29810. front: {
  29811. height: math.unit(6 + 4 / 12, "feet"),
  29812. weight: math.unit(250, "lb"),
  29813. name: "Front",
  29814. image: {
  29815. source: "./media/characters/remmyzilla/front.svg",
  29816. extra: 4033 / 3588,
  29817. bottom: 123 / 4156
  29818. }
  29819. },
  29820. back: {
  29821. height: math.unit(6 + 4 / 12, "feet"),
  29822. weight: math.unit(250, "lb"),
  29823. name: "Back",
  29824. image: {
  29825. source: "./media/characters/remmyzilla/back.svg",
  29826. extra: 2687 / 2555,
  29827. bottom: 48 / 2735
  29828. }
  29829. },
  29830. paw: {
  29831. height: math.unit(1.73, "feet"),
  29832. name: "Paw",
  29833. image: {
  29834. source: "./media/characters/remmyzilla/paw.svg"
  29835. },
  29836. extraAttributes: {
  29837. "toeSize": {
  29838. name: "Toe Size",
  29839. power: 2,
  29840. type: "area",
  29841. base: math.unit(0.0035, "m^2")
  29842. },
  29843. "padSize": {
  29844. name: "Pad Size",
  29845. power: 2,
  29846. type: "area",
  29847. base: math.unit(0.015, "m^2")
  29848. },
  29849. "pawsize": {
  29850. name: "Paw Size",
  29851. power: 2,
  29852. type: "area",
  29853. base: math.unit(0.072, "m^2")
  29854. },
  29855. }
  29856. },
  29857. maw: {
  29858. height: math.unit(1.73, "feet"),
  29859. name: "Maw",
  29860. image: {
  29861. source: "./media/characters/remmyzilla/maw.svg"
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(6 + 4 / 12, "feet")
  29869. },
  29870. {
  29871. name: "Minimacro",
  29872. height: math.unit(12 + 8 / 12, "feet")
  29873. },
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(640, "feet"),
  29877. default: true
  29878. },
  29879. {
  29880. name: "Megamacro",
  29881. height: math.unit(6400, "feet")
  29882. },
  29883. {
  29884. name: "Gigamacro",
  29885. height: math.unit(64000, "miles")
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(2.5, "meters"),
  29894. weight: math.unit(300, "lb"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/lawrence/front.svg",
  29898. extra: 357 / 335,
  29899. bottom: 30 / 387
  29900. }
  29901. },
  29902. back: {
  29903. height: math.unit(2.5, "meters"),
  29904. weight: math.unit(300, "lb"),
  29905. name: "Back",
  29906. image: {
  29907. source: "./media/characters/lawrence/back.svg",
  29908. extra: 357 / 338,
  29909. bottom: 16 / 373
  29910. }
  29911. },
  29912. head: {
  29913. height: math.unit(0.9, "meter"),
  29914. name: "Head",
  29915. image: {
  29916. source: "./media/characters/lawrence/head.svg"
  29917. }
  29918. },
  29919. maw: {
  29920. height: math.unit(0.7, "meter"),
  29921. name: "Maw",
  29922. image: {
  29923. source: "./media/characters/lawrence/maw.svg"
  29924. }
  29925. },
  29926. footBottom: {
  29927. height: math.unit(0.5, "meter"),
  29928. name: "Foot (Bottom)",
  29929. image: {
  29930. source: "./media/characters/lawrence/foot-bottom.svg"
  29931. }
  29932. },
  29933. footTop: {
  29934. height: math.unit(0.5, "meter"),
  29935. name: "Foot (Top)",
  29936. image: {
  29937. source: "./media/characters/lawrence/foot-top.svg"
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Normal",
  29944. height: math.unit(2.5, "meters"),
  29945. default: true
  29946. },
  29947. {
  29948. name: "Macro",
  29949. height: math.unit(95, "meters")
  29950. },
  29951. {
  29952. name: "Megamacro",
  29953. height: math.unit(150, "km")
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29959. {
  29960. front: {
  29961. height: math.unit(4.2, "meters"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/sydney/front.svg",
  29965. extra: 1323 / 1277,
  29966. bottom: 111 / 1434
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Normal",
  29973. height: math.unit(4.2, "meters"),
  29974. default: true
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29980. {
  29981. back: {
  29982. height: math.unit(201, "feet"),
  29983. name: "Back",
  29984. image: {
  29985. source: "./media/characters/jessica/back.svg",
  29986. extra: 273 / 259,
  29987. bottom: 7 / 280
  29988. }
  29989. },
  29990. },
  29991. [
  29992. {
  29993. name: "Normal",
  29994. height: math.unit(201, "feet"),
  29995. default: true
  29996. },
  29997. {
  29998. name: "Megamacro",
  29999. height: math.unit(8, "miles")
  30000. },
  30001. ]
  30002. ))
  30003. characterMakers.push(() => makeCharacter(
  30004. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30005. {
  30006. side: {
  30007. height: math.unit(5.6, "m"),
  30008. weight: math.unit(8000, "kg"),
  30009. name: "Side",
  30010. image: {
  30011. source: "./media/characters/victoria/side.svg",
  30012. extra: 1542/1229,
  30013. bottom: 124/1666
  30014. }
  30015. },
  30016. maw: {
  30017. height: math.unit(7.14, "feet"),
  30018. name: "Maw",
  30019. image: {
  30020. source: "./media/characters/victoria/maw.svg"
  30021. }
  30022. },
  30023. },
  30024. [
  30025. {
  30026. name: "Normal",
  30027. height: math.unit(5.6, "m"),
  30028. default: true
  30029. },
  30030. ]
  30031. ))
  30032. characterMakers.push(() => makeCharacter(
  30033. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30034. {
  30035. front: {
  30036. height: math.unit(5 + 6 / 12, "feet"),
  30037. name: "Front",
  30038. image: {
  30039. source: "./media/characters/cat/front.svg",
  30040. extra: 1449/1295,
  30041. bottom: 34/1483
  30042. },
  30043. form: "cat",
  30044. default: true
  30045. },
  30046. back: {
  30047. height: math.unit(5 + 6 / 12, "feet"),
  30048. name: "Back",
  30049. image: {
  30050. source: "./media/characters/cat/back.svg",
  30051. extra: 1466/1301,
  30052. bottom: 19/1485
  30053. },
  30054. form: "cat"
  30055. },
  30056. taur: {
  30057. height: math.unit(7, "feet"),
  30058. name: "Taur",
  30059. image: {
  30060. source: "./media/characters/cat/taur.svg",
  30061. extra: 1389/1233,
  30062. bottom: 83/1472
  30063. },
  30064. form: "taur",
  30065. default: true
  30066. },
  30067. lucarioFront: {
  30068. height: math.unit(4, "feet"),
  30069. name: "Lucario (Front)",
  30070. image: {
  30071. source: "./media/characters/cat/lucario-front.svg",
  30072. extra: 1149/1019,
  30073. bottom: 84/1233
  30074. },
  30075. form: "lucario",
  30076. default: true
  30077. },
  30078. lucarioBack: {
  30079. height: math.unit(4, "feet"),
  30080. name: "Lucario (Back)",
  30081. image: {
  30082. source: "./media/characters/cat/lucario-back.svg",
  30083. extra: 1190/1059,
  30084. bottom: 33/1223
  30085. },
  30086. form: "lucario"
  30087. },
  30088. megaLucario: {
  30089. height: math.unit(4, "feet"),
  30090. name: "Mega Lucario",
  30091. image: {
  30092. source: "./media/characters/cat/mega-lucario.svg",
  30093. extra: 1515 / 1319,
  30094. bottom: 63 / 1578
  30095. },
  30096. form: "lucario"
  30097. },
  30098. nickit: {
  30099. height: math.unit(2, "feet"),
  30100. name: "Nickit",
  30101. image: {
  30102. source: "./media/characters/cat/nickit.svg",
  30103. extra: 1980 / 1585,
  30104. bottom: 102 / 2082
  30105. },
  30106. form: "nickit",
  30107. default: true
  30108. },
  30109. lopunnyFront: {
  30110. height: math.unit(5, "feet"),
  30111. name: "Lopunny (Front)",
  30112. image: {
  30113. source: "./media/characters/cat/lopunny-front.svg",
  30114. extra: 1782 / 1469,
  30115. bottom: 38 / 1820
  30116. },
  30117. form: "lopunny",
  30118. default: true
  30119. },
  30120. lopunnyBack: {
  30121. height: math.unit(5, "feet"),
  30122. name: "Lopunny (Back)",
  30123. image: {
  30124. source: "./media/characters/cat/lopunny-back.svg",
  30125. extra: 1660 / 1490,
  30126. bottom: 25 / 1685
  30127. },
  30128. form: "lopunny"
  30129. },
  30130. },
  30131. [
  30132. {
  30133. name: "Really small",
  30134. height: math.unit(1, "nm")
  30135. },
  30136. {
  30137. name: "Micro",
  30138. height: math.unit(5, "inches")
  30139. },
  30140. {
  30141. name: "Normal",
  30142. height: math.unit(5 + 6 / 12, "feet"),
  30143. default: true
  30144. },
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(50, "feet")
  30148. },
  30149. {
  30150. name: "Macro+",
  30151. height: math.unit(150, "feet")
  30152. },
  30153. {
  30154. name: "Megamacro",
  30155. height: math.unit(100, "miles")
  30156. },
  30157. ]
  30158. ))
  30159. characterMakers.push(() => makeCharacter(
  30160. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30161. {
  30162. front: {
  30163. height: math.unit(63.4, "meters"),
  30164. weight: math.unit(3.28349e+6, "kilograms"),
  30165. name: "Front",
  30166. image: {
  30167. source: "./media/characters/kirina-violet/front.svg",
  30168. extra: 2812 / 2725,
  30169. bottom: 0 / 2812
  30170. }
  30171. },
  30172. back: {
  30173. height: math.unit(63.4, "meters"),
  30174. weight: math.unit(3.28349e+6, "kilograms"),
  30175. name: "Back",
  30176. image: {
  30177. source: "./media/characters/kirina-violet/back.svg",
  30178. extra: 2812 / 2725,
  30179. bottom: 0 / 2812
  30180. }
  30181. },
  30182. mouth: {
  30183. height: math.unit(4.35, "meters"),
  30184. name: "Mouth",
  30185. image: {
  30186. source: "./media/characters/kirina-violet/mouth.svg"
  30187. }
  30188. },
  30189. paw: {
  30190. height: math.unit(5.6, "meters"),
  30191. name: "Paw",
  30192. image: {
  30193. source: "./media/characters/kirina-violet/paw.svg"
  30194. }
  30195. },
  30196. tail: {
  30197. height: math.unit(18, "meters"),
  30198. name: "Tail",
  30199. image: {
  30200. source: "./media/characters/kirina-violet/tail.svg"
  30201. }
  30202. },
  30203. },
  30204. [
  30205. {
  30206. name: "Macro",
  30207. height: math.unit(63.4, "meters"),
  30208. default: true
  30209. },
  30210. ]
  30211. ))
  30212. characterMakers.push(() => makeCharacter(
  30213. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30214. {
  30215. front: {
  30216. height: math.unit(75, "feet"),
  30217. name: "Front",
  30218. image: {
  30219. source: "./media/characters/cat-gigachu/front.svg",
  30220. extra: 1239/1027,
  30221. bottom: 32/1271
  30222. }
  30223. },
  30224. back: {
  30225. height: math.unit(75, "feet"),
  30226. name: "Back",
  30227. image: {
  30228. source: "./media/characters/cat-gigachu/back.svg",
  30229. extra: 1229/1030,
  30230. bottom: 9/1238
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Dynamax",
  30237. height: math.unit(75, "feet"),
  30238. default: true
  30239. },
  30240. ]
  30241. ))
  30242. characterMakers.push(() => makeCharacter(
  30243. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30244. {
  30245. front: {
  30246. height: math.unit(6, "feet"),
  30247. weight: math.unit(150, "lb"),
  30248. name: "Front",
  30249. image: {
  30250. source: "./media/characters/sfaiyan/front.svg",
  30251. extra: 999 / 978,
  30252. bottom: 5 / 1004
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "Normal",
  30259. height: math.unit(1.82, "meters")
  30260. },
  30261. {
  30262. name: "Giant",
  30263. height: math.unit(2.27, "km"),
  30264. default: true
  30265. },
  30266. ]
  30267. ))
  30268. characterMakers.push(() => makeCharacter(
  30269. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30270. {
  30271. front: {
  30272. height: math.unit(179, "cm"),
  30273. weight: math.unit(100, "kg"),
  30274. name: "Front",
  30275. image: {
  30276. source: "./media/characters/raunehkeli/front.svg",
  30277. extra: 1934 / 1926,
  30278. bottom: 0 / 1934
  30279. }
  30280. },
  30281. },
  30282. [
  30283. {
  30284. name: "Normal",
  30285. height: math.unit(179, "cm")
  30286. },
  30287. {
  30288. name: "Maximum",
  30289. height: math.unit(575, "meters"),
  30290. default: true
  30291. },
  30292. ]
  30293. ))
  30294. characterMakers.push(() => makeCharacter(
  30295. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30296. {
  30297. front: {
  30298. height: math.unit(6, "feet"),
  30299. weight: math.unit(150, "lb"),
  30300. name: "Front",
  30301. image: {
  30302. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30303. extra: 2625 / 2518,
  30304. bottom: 60 / 2685
  30305. }
  30306. },
  30307. },
  30308. [
  30309. {
  30310. name: "Normal",
  30311. height: math.unit(6 + 2 / 12, "feet")
  30312. },
  30313. {
  30314. name: "Macro",
  30315. height: math.unit(1180, "feet"),
  30316. default: true
  30317. },
  30318. ]
  30319. ))
  30320. characterMakers.push(() => makeCharacter(
  30321. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30322. {
  30323. front: {
  30324. height: math.unit(5 + 6 / 12, "feet"),
  30325. weight: math.unit(108, "lb"),
  30326. name: "Front",
  30327. image: {
  30328. source: "./media/characters/lilith-zott/front.svg",
  30329. extra: 2510 / 2238,
  30330. bottom: 100 / 2610
  30331. }
  30332. },
  30333. frontDressed: {
  30334. height: math.unit(5 + 6 / 12, "feet"),
  30335. weight: math.unit(108, "lb"),
  30336. name: "Front (Dressed)",
  30337. image: {
  30338. source: "./media/characters/lilith-zott/front-dressed.svg",
  30339. extra: 2510 / 2238,
  30340. bottom: 100 / 2610
  30341. }
  30342. },
  30343. },
  30344. [
  30345. {
  30346. name: "Normal",
  30347. height: math.unit(5 + 6 / 12, "feet")
  30348. },
  30349. {
  30350. name: "Macro",
  30351. height: math.unit(1030, "feet"),
  30352. default: true
  30353. },
  30354. ]
  30355. ))
  30356. characterMakers.push(() => makeCharacter(
  30357. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30358. {
  30359. front: {
  30360. height: math.unit(6, "feet"),
  30361. weight: math.unit(150, "lb"),
  30362. name: "Front",
  30363. image: {
  30364. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30365. extra: 2567 / 2435,
  30366. bottom: 39 / 2606
  30367. }
  30368. },
  30369. frontSuper: {
  30370. height: math.unit(6, "feet"),
  30371. name: "Front (Super)",
  30372. image: {
  30373. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30374. extra: 2567 / 2435,
  30375. bottom: 39 / 2606
  30376. }
  30377. },
  30378. },
  30379. [
  30380. {
  30381. name: "Normal",
  30382. height: math.unit(5 + 10 / 12, "feet")
  30383. },
  30384. {
  30385. name: "Macro",
  30386. height: math.unit(1100, "feet"),
  30387. default: true
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30393. {
  30394. front: {
  30395. height: math.unit(100, "miles"),
  30396. name: "Front",
  30397. image: {
  30398. source: "./media/characters/sona/front.svg",
  30399. extra: 2433 / 2201,
  30400. bottom: 53 / 2486
  30401. }
  30402. },
  30403. foot: {
  30404. height: math.unit(16.1, "miles"),
  30405. name: "Foot",
  30406. image: {
  30407. source: "./media/characters/sona/foot.svg"
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Macro",
  30414. height: math.unit(100, "miles"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(6, "feet"),
  30424. weight: math.unit(150, "lb"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/bailey/front.svg",
  30428. extra: 1778 / 1724,
  30429. bottom: 30 / 1808
  30430. }
  30431. },
  30432. },
  30433. [
  30434. {
  30435. name: "Micro",
  30436. height: math.unit(4, "inches")
  30437. },
  30438. {
  30439. name: "Normal",
  30440. height: math.unit(5 + 5 / 12, "feet"),
  30441. default: true
  30442. },
  30443. {
  30444. name: "Macro",
  30445. height: math.unit(250, "feet")
  30446. },
  30447. {
  30448. name: "Megamacro",
  30449. height: math.unit(100, "miles")
  30450. },
  30451. ]
  30452. ))
  30453. characterMakers.push(() => makeCharacter(
  30454. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30455. {
  30456. front: {
  30457. height: math.unit(5 + 2 / 12, "feet"),
  30458. weight: math.unit(120, "lb"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/snaps/front.svg",
  30462. extra: 2370 / 2177,
  30463. bottom: 48 / 2418
  30464. }
  30465. },
  30466. back: {
  30467. height: math.unit(5 + 2 / 12, "feet"),
  30468. weight: math.unit(120, "lb"),
  30469. name: "Back",
  30470. image: {
  30471. source: "./media/characters/snaps/back.svg",
  30472. extra: 2408 / 2258,
  30473. bottom: 15 / 2423
  30474. }
  30475. },
  30476. },
  30477. [
  30478. {
  30479. name: "Micro",
  30480. height: math.unit(9, "inches")
  30481. },
  30482. {
  30483. name: "Normal",
  30484. height: math.unit(5 + 2 / 12, "feet"),
  30485. default: true
  30486. },
  30487. {
  30488. name: "Mini Macro",
  30489. height: math.unit(10, "feet")
  30490. },
  30491. ]
  30492. ))
  30493. characterMakers.push(() => makeCharacter(
  30494. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30495. {
  30496. front: {
  30497. height: math.unit(1.8, "meters"),
  30498. weight: math.unit(85, "kg"),
  30499. name: "Front",
  30500. image: {
  30501. source: "./media/characters/azteck/front.svg",
  30502. extra: 2815 / 2625,
  30503. bottom: 89 / 2904
  30504. }
  30505. },
  30506. back: {
  30507. height: math.unit(1.8, "meters"),
  30508. weight: math.unit(85, "kg"),
  30509. name: "Back",
  30510. image: {
  30511. source: "./media/characters/azteck/back.svg",
  30512. extra: 2856 / 2648,
  30513. bottom: 85 / 2941
  30514. }
  30515. },
  30516. frontDressed: {
  30517. height: math.unit(1.8, "meters"),
  30518. weight: math.unit(85, "kg"),
  30519. name: "Front (Dressed)",
  30520. image: {
  30521. source: "./media/characters/azteck/front-dressed.svg",
  30522. extra: 2147 / 2003,
  30523. bottom: 68 / 2215
  30524. }
  30525. },
  30526. head: {
  30527. height: math.unit(0.47, "meters"),
  30528. weight: math.unit(85, "kg"),
  30529. name: "Head",
  30530. image: {
  30531. source: "./media/characters/azteck/head.svg"
  30532. }
  30533. },
  30534. },
  30535. [
  30536. {
  30537. name: "Bite sized",
  30538. height: math.unit(16, "cm")
  30539. },
  30540. {
  30541. name: "Normal",
  30542. height: math.unit(1.8, "meters"),
  30543. default: true
  30544. },
  30545. ]
  30546. ))
  30547. characterMakers.push(() => makeCharacter(
  30548. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30549. {
  30550. front: {
  30551. height: math.unit(6, "feet"),
  30552. weight: math.unit(150, "lb"),
  30553. name: "Front",
  30554. image: {
  30555. source: "./media/characters/pidge/front.svg",
  30556. extra: 1936/1820,
  30557. bottom: 0/1936
  30558. }
  30559. },
  30560. back: {
  30561. height: math.unit(6, "feet"),
  30562. weight: math.unit(150, "lb"),
  30563. name: "Back",
  30564. image: {
  30565. source: "./media/characters/pidge/back.svg",
  30566. extra: 1938/1843,
  30567. bottom: 0/1938
  30568. }
  30569. },
  30570. casual: {
  30571. height: math.unit(6, "feet"),
  30572. weight: math.unit(150, "lb"),
  30573. name: "Casual",
  30574. image: {
  30575. source: "./media/characters/pidge/casual.svg",
  30576. extra: 1936/1820,
  30577. bottom: 0/1936
  30578. }
  30579. },
  30580. tech: {
  30581. height: math.unit(6, "feet"),
  30582. weight: math.unit(150, "lb"),
  30583. name: "Tech",
  30584. image: {
  30585. source: "./media/characters/pidge/tech.svg",
  30586. extra: 1802/1682,
  30587. bottom: 0/1802
  30588. }
  30589. },
  30590. head: {
  30591. height: math.unit(1.61, "feet"),
  30592. name: "Head",
  30593. image: {
  30594. source: "./media/characters/pidge/head.svg"
  30595. }
  30596. },
  30597. collar: {
  30598. height: math.unit(0.82, "feet"),
  30599. name: "Collar",
  30600. image: {
  30601. source: "./media/characters/pidge/collar.svg"
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Macro",
  30608. height: math.unit(2, "mile"),
  30609. default: true
  30610. },
  30611. {
  30612. name: "PUPPY",
  30613. height: math.unit(20, "miles")
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(6, "feet"),
  30622. weight: math.unit(150, "lb"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/en/front.svg",
  30626. extra: 1697 / 1563,
  30627. bottom: 103 / 1800
  30628. }
  30629. },
  30630. back: {
  30631. height: math.unit(6, "feet"),
  30632. weight: math.unit(150, "lb"),
  30633. name: "Back",
  30634. image: {
  30635. source: "./media/characters/en/back.svg",
  30636. extra: 1700 / 1570,
  30637. bottom: 51 / 1751
  30638. }
  30639. },
  30640. frontDressed: {
  30641. height: math.unit(6, "feet"),
  30642. weight: math.unit(150, "lb"),
  30643. name: "Front (Dressed)",
  30644. image: {
  30645. source: "./media/characters/en/front-dressed.svg",
  30646. extra: 1697 / 1563,
  30647. bottom: 103 / 1800
  30648. }
  30649. },
  30650. backDressed: {
  30651. height: math.unit(6, "feet"),
  30652. weight: math.unit(150, "lb"),
  30653. name: "Back (Dressed)",
  30654. image: {
  30655. source: "./media/characters/en/back-dressed.svg",
  30656. extra: 1700 / 1570,
  30657. bottom: 51 / 1751
  30658. }
  30659. },
  30660. },
  30661. [
  30662. {
  30663. name: "Macro",
  30664. height: math.unit(210, "feet"),
  30665. default: true
  30666. },
  30667. ]
  30668. ))
  30669. characterMakers.push(() => makeCharacter(
  30670. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30671. {
  30672. front: {
  30673. height: math.unit(6, "feet"),
  30674. weight: math.unit(150, "lb"),
  30675. name: "Front",
  30676. image: {
  30677. source: "./media/characters/haze-orris/front.svg",
  30678. extra: 3975 / 3525,
  30679. bottom: 137 / 4112
  30680. }
  30681. },
  30682. },
  30683. [
  30684. {
  30685. name: "Micro",
  30686. height: math.unit(150, "mm"),
  30687. default: true
  30688. },
  30689. ]
  30690. ))
  30691. characterMakers.push(() => makeCharacter(
  30692. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30693. {
  30694. front: {
  30695. height: math.unit(6, "feet"),
  30696. weight: math.unit(150, "lb"),
  30697. name: "Front",
  30698. image: {
  30699. source: "./media/characters/casselene-yaro/front.svg",
  30700. extra: 4721 / 4541,
  30701. bottom: 82 / 4803
  30702. }
  30703. },
  30704. back: {
  30705. height: math.unit(6, "feet"),
  30706. weight: math.unit(150, "lb"),
  30707. name: "Back",
  30708. image: {
  30709. source: "./media/characters/casselene-yaro/back.svg",
  30710. extra: 4569 / 4377,
  30711. bottom: 69 / 4638
  30712. }
  30713. },
  30714. dressed: {
  30715. height: math.unit(6, "feet"),
  30716. weight: math.unit(150, "lb"),
  30717. name: "Dressed",
  30718. image: {
  30719. source: "./media/characters/casselene-yaro/dressed.svg",
  30720. extra: 4721 / 4541,
  30721. bottom: 82 / 4803
  30722. }
  30723. },
  30724. maw: {
  30725. height: math.unit(1, "feet"),
  30726. name: "Maw",
  30727. image: {
  30728. source: "./media/characters/casselene-yaro/maw.svg"
  30729. }
  30730. },
  30731. },
  30732. [
  30733. {
  30734. name: "Macro",
  30735. height: math.unit(190, "feet"),
  30736. default: true
  30737. },
  30738. ]
  30739. ))
  30740. characterMakers.push(() => makeCharacter(
  30741. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30742. {
  30743. front: {
  30744. height: math.unit(10, "feet"),
  30745. weight: math.unit(15015, "lb"),
  30746. name: "Front",
  30747. image: {
  30748. source: "./media/characters/platine/front.svg",
  30749. extra: 1428/1353,
  30750. bottom: 31/1459
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Normal",
  30757. height: math.unit(10, "feet"),
  30758. default: true
  30759. },
  30760. {
  30761. name: "Macro",
  30762. height: math.unit(100, "feet")
  30763. },
  30764. {
  30765. name: "Megamacro",
  30766. height: math.unit(1000, "feet")
  30767. },
  30768. ]
  30769. ))
  30770. characterMakers.push(() => makeCharacter(
  30771. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30772. {
  30773. front: {
  30774. height: math.unit(15 + 5 / 12, "feet"),
  30775. weight: math.unit(4600, "lb"),
  30776. name: "Front",
  30777. image: {
  30778. source: "./media/characters/neapolitan-ananassa/front.svg",
  30779. extra: 2903 / 2736,
  30780. bottom: 0 / 2903
  30781. }
  30782. },
  30783. side: {
  30784. height: math.unit(15 + 5 / 12, "feet"),
  30785. weight: math.unit(4600, "lb"),
  30786. name: "Side",
  30787. image: {
  30788. source: "./media/characters/neapolitan-ananassa/side.svg",
  30789. extra: 2925 / 2719,
  30790. bottom: 0 / 2925
  30791. }
  30792. },
  30793. back: {
  30794. height: math.unit(15 + 5 / 12, "feet"),
  30795. weight: math.unit(4600, "lb"),
  30796. name: "Back",
  30797. image: {
  30798. source: "./media/characters/neapolitan-ananassa/back.svg",
  30799. extra: 2903 / 2736,
  30800. bottom: 0 / 2903
  30801. }
  30802. },
  30803. },
  30804. [
  30805. {
  30806. name: "Normal",
  30807. height: math.unit(15 + 5 / 12, "feet"),
  30808. default: true
  30809. },
  30810. {
  30811. name: "Post-Millenium",
  30812. height: math.unit(35 + 5 / 12, "feet")
  30813. },
  30814. {
  30815. name: "Post-Era",
  30816. height: math.unit(450 + 5 / 12, "feet")
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30822. {
  30823. front: {
  30824. height: math.unit(300, "meters"),
  30825. weight: math.unit(125000, "tonnes"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/pazuzu/front.svg",
  30829. extra: 877 / 794,
  30830. bottom: 47 / 924
  30831. }
  30832. },
  30833. },
  30834. [
  30835. {
  30836. name: "Macro",
  30837. height: math.unit(300, "meters"),
  30838. default: true
  30839. },
  30840. ]
  30841. ))
  30842. characterMakers.push(() => makeCharacter(
  30843. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30844. {
  30845. side: {
  30846. height: math.unit(10 + 7 / 12, "feet"),
  30847. weight: math.unit(2.5, "tons"),
  30848. name: "Side",
  30849. image: {
  30850. source: "./media/characters/aasha/side.svg",
  30851. extra: 1345 / 1245,
  30852. bottom: 111 / 1456
  30853. }
  30854. },
  30855. back: {
  30856. height: math.unit(10 + 7 / 12, "feet"),
  30857. weight: math.unit(2.5, "tons"),
  30858. name: "Back",
  30859. image: {
  30860. source: "./media/characters/aasha/back.svg",
  30861. extra: 1133 / 1057,
  30862. bottom: 257 / 1390
  30863. }
  30864. },
  30865. },
  30866. [
  30867. {
  30868. name: "Normal",
  30869. height: math.unit(10 + 7 / 12, "feet"),
  30870. default: true
  30871. },
  30872. ]
  30873. ))
  30874. characterMakers.push(() => makeCharacter(
  30875. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30876. {
  30877. front: {
  30878. height: math.unit(6 + 3 / 12, "feet"),
  30879. name: "Front",
  30880. image: {
  30881. source: "./media/characters/nevan/front.svg",
  30882. extra: 704 / 704,
  30883. bottom: 28 / 732
  30884. }
  30885. },
  30886. back: {
  30887. height: math.unit(6 + 3 / 12, "feet"),
  30888. name: "Back",
  30889. image: {
  30890. source: "./media/characters/nevan/back.svg",
  30891. extra: 714 / 714,
  30892. bottom: 21 / 735
  30893. }
  30894. },
  30895. frontFlaccid: {
  30896. height: math.unit(6 + 3 / 12, "feet"),
  30897. name: "Front (Flaccid)",
  30898. image: {
  30899. source: "./media/characters/nevan/front-flaccid.svg",
  30900. extra: 704 / 704,
  30901. bottom: 28 / 732
  30902. }
  30903. },
  30904. frontErect: {
  30905. height: math.unit(6 + 3 / 12, "feet"),
  30906. name: "Front (Erect)",
  30907. image: {
  30908. source: "./media/characters/nevan/front-erect.svg",
  30909. extra: 704 / 704,
  30910. bottom: 28 / 732
  30911. }
  30912. },
  30913. backFlaccid: {
  30914. height: math.unit(6 + 3 / 12, "feet"),
  30915. name: "Back (Flaccid)",
  30916. image: {
  30917. source: "./media/characters/nevan/back-flaccid.svg",
  30918. extra: 714 / 714,
  30919. bottom: 21 / 735
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Normal",
  30926. height: math.unit(6 + 3 / 12, "feet"),
  30927. default: true
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30933. {
  30934. front: {
  30935. height: math.unit(4, "feet"),
  30936. name: "Front",
  30937. image: {
  30938. source: "./media/characters/arhan/front.svg",
  30939. extra: 3368 / 3133,
  30940. bottom: 0 / 3368
  30941. }
  30942. },
  30943. side: {
  30944. height: math.unit(4, "feet"),
  30945. name: "Side",
  30946. image: {
  30947. source: "./media/characters/arhan/side.svg",
  30948. extra: 3347 / 3105,
  30949. bottom: 0 / 3347
  30950. }
  30951. },
  30952. tongue: {
  30953. height: math.unit(1.42, "feet"),
  30954. name: "Tongue",
  30955. image: {
  30956. source: "./media/characters/arhan/tongue.svg"
  30957. }
  30958. },
  30959. head: {
  30960. height: math.unit(0.85, "feet"),
  30961. name: "Head",
  30962. image: {
  30963. source: "./media/characters/arhan/head.svg"
  30964. }
  30965. },
  30966. },
  30967. [
  30968. {
  30969. name: "Normal",
  30970. height: math.unit(4, "feet"),
  30971. default: true
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(5 + 7.5 / 12, "feet"),
  30980. weight: math.unit(120, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/digi-duncan/front.svg",
  30984. extra: 330 / 326,
  30985. bottom: 16 / 346
  30986. }
  30987. },
  30988. side: {
  30989. height: math.unit(5 + 7.5 / 12, "feet"),
  30990. weight: math.unit(120, "lb"),
  30991. name: "Side",
  30992. image: {
  30993. source: "./media/characters/digi-duncan/side.svg",
  30994. extra: 341 / 337,
  30995. bottom: 1 / 342
  30996. }
  30997. },
  30998. back: {
  30999. height: math.unit(5 + 7.5 / 12, "feet"),
  31000. weight: math.unit(120, "lb"),
  31001. name: "Back",
  31002. image: {
  31003. source: "./media/characters/digi-duncan/back.svg",
  31004. extra: 330 / 326,
  31005. bottom: 12 / 342
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Speck",
  31012. height: math.unit(0.25, "mm")
  31013. },
  31014. {
  31015. name: "Micro",
  31016. height: math.unit(5, "mm")
  31017. },
  31018. {
  31019. name: "Tiny",
  31020. height: math.unit(0.5, "inches"),
  31021. default: true
  31022. },
  31023. {
  31024. name: "Human",
  31025. height: math.unit(5 + 7.5 / 12, "feet")
  31026. },
  31027. {
  31028. name: "Minigiant",
  31029. height: math.unit(8 + 5.25, "feet")
  31030. },
  31031. {
  31032. name: "Giant",
  31033. height: math.unit(2000, "feet")
  31034. },
  31035. {
  31036. name: "Mega",
  31037. height: math.unit(371.1, "miles")
  31038. },
  31039. ]
  31040. ))
  31041. characterMakers.push(() => makeCharacter(
  31042. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31043. {
  31044. front: {
  31045. height: math.unit(2, "meters"),
  31046. weight: math.unit(350, "kg"),
  31047. name: "Front",
  31048. image: {
  31049. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31050. extra: 898 / 838,
  31051. bottom: 9 / 907
  31052. }
  31053. },
  31054. },
  31055. [
  31056. {
  31057. name: "Micro",
  31058. height: math.unit(8, "meters")
  31059. },
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(50, "meters"),
  31063. default: true
  31064. },
  31065. {
  31066. name: "Macro",
  31067. height: math.unit(500, "meters")
  31068. },
  31069. ]
  31070. ))
  31071. characterMakers.push(() => makeCharacter(
  31072. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31073. {
  31074. front: {
  31075. height: math.unit(6 + 6 / 12, "feet"),
  31076. name: "Front",
  31077. image: {
  31078. source: "./media/characters/khardesh/front.svg",
  31079. extra: 1788/1596,
  31080. bottom: 66/1854
  31081. }
  31082. },
  31083. back: {
  31084. height: math.unit(6 + 6 / 12, "feet"),
  31085. name: "Back",
  31086. image: {
  31087. source: "./media/characters/khardesh/back.svg",
  31088. extra: 1781/1584,
  31089. bottom: 68/1849
  31090. }
  31091. },
  31092. },
  31093. [
  31094. {
  31095. name: "Normal",
  31096. height: math.unit(6 + 6 / 12, "feet"),
  31097. default: true
  31098. },
  31099. {
  31100. name: "Normal+",
  31101. height: math.unit(4, "meters")
  31102. },
  31103. {
  31104. name: "Macro",
  31105. height: math.unit(50, "meters")
  31106. },
  31107. {
  31108. name: "Macro+",
  31109. height: math.unit(100, "meters")
  31110. },
  31111. {
  31112. name: "Megamacro",
  31113. height: math.unit(20, "km")
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31119. {
  31120. front: {
  31121. height: math.unit(6, "feet"),
  31122. weight: math.unit(150, "lb"),
  31123. name: "Front",
  31124. image: {
  31125. source: "./media/characters/kosho/front.svg",
  31126. extra: 1847 / 1847,
  31127. bottom: 86 / 1933
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Second-stage micro",
  31134. height: math.unit(0.5, "inches")
  31135. },
  31136. {
  31137. name: "First-stage micro",
  31138. height: math.unit(6, "inches")
  31139. },
  31140. {
  31141. name: "Normal",
  31142. height: math.unit(6, "feet"),
  31143. default: true
  31144. },
  31145. {
  31146. name: "First-stage macro",
  31147. height: math.unit(72, "feet")
  31148. },
  31149. {
  31150. name: "Second-stage macro",
  31151. height: math.unit(864, "feet")
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31157. {
  31158. normal: {
  31159. height: math.unit(4 + 6 / 12, "feet"),
  31160. name: "Normal",
  31161. image: {
  31162. source: "./media/characters/hydra/normal.svg",
  31163. extra: 2833 / 2634,
  31164. bottom: 68 / 2901
  31165. }
  31166. },
  31167. smol: {
  31168. height: math.unit(0.705, "inches"),
  31169. name: "Smol",
  31170. image: {
  31171. source: "./media/characters/hydra/smol.svg",
  31172. extra: 2715 / 2540,
  31173. bottom: 0 / 2715
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Normal",
  31180. height: math.unit(4 + 6 / 12, "feet"),
  31181. default: true
  31182. }
  31183. ]
  31184. ))
  31185. characterMakers.push(() => makeCharacter(
  31186. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31187. {
  31188. front: {
  31189. height: math.unit(0.6, "cm"),
  31190. name: "Front",
  31191. image: {
  31192. source: "./media/characters/daz/front.svg",
  31193. extra: 1682 / 1164,
  31194. bottom: 42 / 1724
  31195. }
  31196. },
  31197. },
  31198. [
  31199. {
  31200. name: "Normal",
  31201. height: math.unit(0.6, "cm"),
  31202. default: true
  31203. },
  31204. ]
  31205. ))
  31206. characterMakers.push(() => makeCharacter(
  31207. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31208. {
  31209. front: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(235, "lb"),
  31212. name: "Front",
  31213. image: {
  31214. source: "./media/characters/theo-pangolin/front.svg",
  31215. extra: 1996 / 1969,
  31216. bottom: 115 / 2111
  31217. }
  31218. },
  31219. back: {
  31220. height: math.unit(6, "feet"),
  31221. weight: math.unit(235, "lb"),
  31222. name: "Back",
  31223. image: {
  31224. source: "./media/characters/theo-pangolin/back.svg",
  31225. extra: 1979 / 1979,
  31226. bottom: 40 / 2019
  31227. }
  31228. },
  31229. feral: {
  31230. height: math.unit(2, "feet"),
  31231. weight: math.unit(30, "lb"),
  31232. name: "Feral",
  31233. image: {
  31234. source: "./media/characters/theo-pangolin/feral.svg",
  31235. extra: 803 / 791,
  31236. bottom: 181 / 984
  31237. }
  31238. },
  31239. footFive: {
  31240. height: math.unit(1.43, "feet"),
  31241. name: "Foot (Five Toes)",
  31242. image: {
  31243. source: "./media/characters/theo-pangolin/foot-five.svg"
  31244. }
  31245. },
  31246. footFour: {
  31247. height: math.unit(1.43, "feet"),
  31248. name: "Foot (Four Toes)",
  31249. image: {
  31250. source: "./media/characters/theo-pangolin/foot-four.svg"
  31251. }
  31252. },
  31253. handFour: {
  31254. height: math.unit(0.81, "feet"),
  31255. name: "Hand (Four Fingers)",
  31256. image: {
  31257. source: "./media/characters/theo-pangolin/hand-four.svg"
  31258. }
  31259. },
  31260. handThree: {
  31261. height: math.unit(0.81, "feet"),
  31262. name: "Hand (Three Fingers)",
  31263. image: {
  31264. source: "./media/characters/theo-pangolin/hand-three.svg"
  31265. }
  31266. },
  31267. headFront: {
  31268. height: math.unit(1.37, "feet"),
  31269. name: "Head (Front)",
  31270. image: {
  31271. source: "./media/characters/theo-pangolin/head-front.svg"
  31272. }
  31273. },
  31274. headSide: {
  31275. height: math.unit(1.43, "feet"),
  31276. name: "Head (Side)",
  31277. image: {
  31278. source: "./media/characters/theo-pangolin/head-side.svg"
  31279. }
  31280. },
  31281. tongue: {
  31282. height: math.unit(2.29, "feet"),
  31283. name: "Tongue",
  31284. image: {
  31285. source: "./media/characters/theo-pangolin/tongue.svg"
  31286. }
  31287. },
  31288. },
  31289. [
  31290. {
  31291. name: "Normal",
  31292. height: math.unit(6, "feet")
  31293. },
  31294. {
  31295. name: "Macro",
  31296. height: math.unit(400, "feet"),
  31297. default: true
  31298. },
  31299. ]
  31300. ))
  31301. characterMakers.push(() => makeCharacter(
  31302. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31303. {
  31304. front: {
  31305. height: math.unit(6, "inches"),
  31306. weight: math.unit(0.036, "kg"),
  31307. name: "Front",
  31308. image: {
  31309. source: "./media/characters/renée/front.svg",
  31310. extra: 900 / 886,
  31311. bottom: 8 / 908
  31312. }
  31313. },
  31314. },
  31315. [
  31316. {
  31317. name: "Nano",
  31318. height: math.unit(1, "nm")
  31319. },
  31320. {
  31321. name: "Micro",
  31322. height: math.unit(1, "mm")
  31323. },
  31324. {
  31325. name: "Normal",
  31326. height: math.unit(6, "inches")
  31327. },
  31328. {
  31329. name: "Macro",
  31330. height: math.unit(2000, "feet"),
  31331. default: true
  31332. },
  31333. {
  31334. name: "Megamacro",
  31335. height: math.unit(2, "km")
  31336. },
  31337. {
  31338. name: "Gigamacro",
  31339. height: math.unit(2000, "km")
  31340. },
  31341. {
  31342. name: "Teramacro",
  31343. height: math.unit(250000, "km")
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(4, "meters"),
  31352. weight: math.unit(150, "kg"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/caledvwlch/front.svg",
  31356. extra: 1760 / 1551,
  31357. bottom: 28 / 1788
  31358. }
  31359. },
  31360. side: {
  31361. height: math.unit(4, "meters"),
  31362. weight: math.unit(150, "kg"),
  31363. name: "Side",
  31364. image: {
  31365. source: "./media/characters/caledvwlch/side.svg",
  31366. extra: 1605 / 1536,
  31367. bottom: 31 / 1636
  31368. }
  31369. },
  31370. back: {
  31371. height: math.unit(4, "meters"),
  31372. weight: math.unit(150, "kg"),
  31373. name: "Back",
  31374. image: {
  31375. source: "./media/characters/caledvwlch/back.svg",
  31376. extra: 1635 / 1565,
  31377. bottom: 27 / 1662
  31378. }
  31379. },
  31380. },
  31381. [
  31382. {
  31383. name: "\"Incognito\"",
  31384. height: math.unit(4, "meters")
  31385. },
  31386. {
  31387. name: "Small rampage",
  31388. height: math.unit(600, "meters")
  31389. },
  31390. {
  31391. name: "Mega",
  31392. height: math.unit(30, "km")
  31393. },
  31394. {
  31395. name: "Home-size",
  31396. height: math.unit(50, "km"),
  31397. default: true
  31398. },
  31399. {
  31400. name: "Giga",
  31401. height: math.unit(300, "km")
  31402. },
  31403. {
  31404. name: "Lounging",
  31405. height: math.unit(11000, "km")
  31406. },
  31407. {
  31408. name: "Planet snacking",
  31409. height: math.unit(2000000, "km")
  31410. },
  31411. ]
  31412. ))
  31413. characterMakers.push(() => makeCharacter(
  31414. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31415. {
  31416. front: {
  31417. height: math.unit(6, "feet"),
  31418. weight: math.unit(215, "lb"),
  31419. name: "Front",
  31420. image: {
  31421. source: "./media/characters/sapphire-svell/front.svg",
  31422. extra: 495 / 455,
  31423. bottom: 20 / 515
  31424. }
  31425. },
  31426. back: {
  31427. height: math.unit(6, "feet"),
  31428. weight: math.unit(216, "lb"),
  31429. name: "Back",
  31430. image: {
  31431. source: "./media/characters/sapphire-svell/back.svg",
  31432. extra: 497 / 477,
  31433. bottom: 7 / 504
  31434. }
  31435. },
  31436. maw: {
  31437. height: math.unit(1.57, "feet"),
  31438. name: "Maw",
  31439. image: {
  31440. source: "./media/characters/sapphire-svell/maw.svg"
  31441. }
  31442. },
  31443. foot: {
  31444. height: math.unit(1.07, "feet"),
  31445. name: "Foot",
  31446. image: {
  31447. source: "./media/characters/sapphire-svell/foot.svg"
  31448. }
  31449. },
  31450. toering: {
  31451. height: math.unit(1.7, "inch"),
  31452. name: "Toering",
  31453. image: {
  31454. source: "./media/characters/sapphire-svell/toering.svg"
  31455. }
  31456. },
  31457. },
  31458. [
  31459. {
  31460. name: "Normal",
  31461. height: math.unit(300, "feet"),
  31462. default: true
  31463. },
  31464. {
  31465. name: "Augmented",
  31466. height: math.unit(1250, "feet")
  31467. },
  31468. {
  31469. name: "Unleashed",
  31470. height: math.unit(3000, "feet")
  31471. },
  31472. ]
  31473. ))
  31474. characterMakers.push(() => makeCharacter(
  31475. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31476. {
  31477. side: {
  31478. height: math.unit(2 + 3 / 12, "feet"),
  31479. weight: math.unit(110, "lb"),
  31480. name: "Side",
  31481. image: {
  31482. source: "./media/characters/glitch-flux/side.svg",
  31483. extra: 997 / 805,
  31484. bottom: 20 / 1017
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(2 + 3 / 12, "feet"),
  31492. default: true
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31498. {
  31499. front: {
  31500. height: math.unit(4, "meters"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/mid/front.svg",
  31504. extra: 507 / 476,
  31505. bottom: 17 / 524
  31506. }
  31507. },
  31508. back: {
  31509. height: math.unit(4, "meters"),
  31510. name: "Back",
  31511. image: {
  31512. source: "./media/characters/mid/back.svg",
  31513. extra: 519 / 487,
  31514. bottom: 7 / 526
  31515. }
  31516. },
  31517. stuck: {
  31518. height: math.unit(2.2, "meters"),
  31519. name: "Stuck",
  31520. image: {
  31521. source: "./media/characters/mid/stuck.svg",
  31522. extra: 1951 / 1869,
  31523. bottom: 88 / 2039
  31524. }
  31525. }
  31526. },
  31527. [
  31528. {
  31529. name: "Normal",
  31530. height: math.unit(4, "meters"),
  31531. default: true
  31532. },
  31533. {
  31534. name: "Big",
  31535. height: math.unit(10, "meters")
  31536. },
  31537. {
  31538. name: "Macro",
  31539. height: math.unit(800, "meters")
  31540. },
  31541. {
  31542. name: "Megamacro",
  31543. height: math.unit(100, "km")
  31544. },
  31545. {
  31546. name: "Overgrown",
  31547. height: math.unit(1, "parsec")
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31553. {
  31554. front: {
  31555. height: math.unit(2.5, "meters"),
  31556. weight: math.unit(225, "kg"),
  31557. name: "Front",
  31558. image: {
  31559. source: "./media/characters/iris/front.svg",
  31560. extra: 3348 / 3251,
  31561. bottom: 205 / 3553
  31562. }
  31563. },
  31564. maw: {
  31565. height: math.unit(0.56, "meter"),
  31566. name: "Maw",
  31567. image: {
  31568. source: "./media/characters/iris/maw.svg"
  31569. }
  31570. },
  31571. },
  31572. [
  31573. {
  31574. name: "Mewter cat",
  31575. height: math.unit(1.2, "meters")
  31576. },
  31577. {
  31578. name: "Minimacro",
  31579. height: math.unit(2.5, "meters"),
  31580. default: true
  31581. },
  31582. {
  31583. name: "Macro",
  31584. height: math.unit(180, "meters")
  31585. },
  31586. {
  31587. name: "Megamacro",
  31588. height: math.unit(2746, "meters")
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(6, "feet"),
  31597. weight: math.unit(135, "lb"),
  31598. name: "Front",
  31599. image: {
  31600. source: "./media/characters/axel/front.svg",
  31601. extra: 908 / 908,
  31602. bottom: 58 / 966
  31603. }
  31604. },
  31605. side: {
  31606. height: math.unit(6, "feet"),
  31607. weight: math.unit(135, "lb"),
  31608. name: "Side",
  31609. image: {
  31610. source: "./media/characters/axel/side.svg",
  31611. extra: 958 / 958,
  31612. bottom: 11 / 969
  31613. }
  31614. },
  31615. back: {
  31616. height: math.unit(6, "feet"),
  31617. weight: math.unit(135, "lb"),
  31618. name: "Back",
  31619. image: {
  31620. source: "./media/characters/axel/back.svg",
  31621. extra: 887 / 887,
  31622. bottom: 34 / 921
  31623. }
  31624. },
  31625. head: {
  31626. height: math.unit(1.07, "feet"),
  31627. name: "Head",
  31628. image: {
  31629. source: "./media/characters/axel/head.svg"
  31630. }
  31631. },
  31632. beak: {
  31633. height: math.unit(1.4, "feet"),
  31634. name: "Beak",
  31635. image: {
  31636. source: "./media/characters/axel/beak.svg"
  31637. }
  31638. },
  31639. beakSide: {
  31640. height: math.unit(1.4, "feet"),
  31641. name: "Beak Side",
  31642. image: {
  31643. source: "./media/characters/axel/beak-side.svg"
  31644. }
  31645. },
  31646. sheath: {
  31647. height: math.unit(0.5, "feet"),
  31648. name: "Sheath",
  31649. image: {
  31650. source: "./media/characters/axel/sheath.svg"
  31651. }
  31652. },
  31653. dick: {
  31654. height: math.unit(0.98, "feet"),
  31655. name: "Dick",
  31656. image: {
  31657. source: "./media/characters/axel/dick.svg"
  31658. }
  31659. },
  31660. },
  31661. [
  31662. {
  31663. name: "Macro",
  31664. height: math.unit(68, "meters"),
  31665. default: true
  31666. },
  31667. ]
  31668. ))
  31669. characterMakers.push(() => makeCharacter(
  31670. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31671. {
  31672. front: {
  31673. height: math.unit(3.5, "meters"),
  31674. weight: math.unit(1200, "kg"),
  31675. name: "Front",
  31676. image: {
  31677. source: "./media/characters/joanna/front.svg",
  31678. extra: 1596 / 1488,
  31679. bottom: 29 / 1625
  31680. }
  31681. },
  31682. back: {
  31683. height: math.unit(3.5, "meters"),
  31684. weight: math.unit(1200, "kg"),
  31685. name: "Back",
  31686. image: {
  31687. source: "./media/characters/joanna/back.svg",
  31688. extra: 1594 / 1495,
  31689. bottom: 26 / 1620
  31690. }
  31691. },
  31692. frontShorts: {
  31693. height: math.unit(3.5, "meters"),
  31694. weight: math.unit(1200, "kg"),
  31695. name: "Front (Shorts)",
  31696. image: {
  31697. source: "./media/characters/joanna/front-shorts.svg",
  31698. extra: 1596 / 1488,
  31699. bottom: 29 / 1625
  31700. }
  31701. },
  31702. frontBiker: {
  31703. height: math.unit(3.5, "meters"),
  31704. weight: math.unit(1200, "kg"),
  31705. name: "Front (Biker)",
  31706. image: {
  31707. source: "./media/characters/joanna/front-biker.svg",
  31708. extra: 1596 / 1488,
  31709. bottom: 29 / 1625
  31710. }
  31711. },
  31712. backBiker: {
  31713. height: math.unit(3.5, "meters"),
  31714. weight: math.unit(1200, "kg"),
  31715. name: "Back (Biker)",
  31716. image: {
  31717. source: "./media/characters/joanna/back-biker.svg",
  31718. extra: 1594 / 1495,
  31719. bottom: 88 / 1682
  31720. }
  31721. },
  31722. bikeLeft: {
  31723. height: math.unit(2.4, "meters"),
  31724. weight: math.unit(1600, "kg"),
  31725. name: "Bike (Left)",
  31726. image: {
  31727. source: "./media/characters/joanna/bike-left.svg",
  31728. extra: 720 / 720,
  31729. bottom: 8 / 728
  31730. }
  31731. },
  31732. bikeRight: {
  31733. height: math.unit(2.4, "meters"),
  31734. weight: math.unit(1600, "kg"),
  31735. name: "Bike (Right)",
  31736. image: {
  31737. source: "./media/characters/joanna/bike-right.svg",
  31738. extra: 720 / 720,
  31739. bottom: 8 / 728
  31740. }
  31741. },
  31742. },
  31743. [
  31744. {
  31745. name: "Incognito",
  31746. height: math.unit(3.5, "meters")
  31747. },
  31748. {
  31749. name: "Casual Big",
  31750. height: math.unit(200, "meters")
  31751. },
  31752. {
  31753. name: "Macro",
  31754. height: math.unit(600, "meters")
  31755. },
  31756. {
  31757. name: "Original",
  31758. height: math.unit(20, "km"),
  31759. default: true
  31760. },
  31761. {
  31762. name: "Giga",
  31763. height: math.unit(400, "km")
  31764. },
  31765. {
  31766. name: "Lounging",
  31767. height: math.unit(1500, "km")
  31768. },
  31769. {
  31770. name: "Planetary",
  31771. height: math.unit(200000, "km")
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31777. {
  31778. front: {
  31779. height: math.unit(6, "feet"),
  31780. weight: math.unit(150, "lb"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/hugo-sigil/front.svg",
  31784. extra: 522 / 500,
  31785. bottom: 2 / 524
  31786. }
  31787. },
  31788. back: {
  31789. height: math.unit(6, "feet"),
  31790. weight: math.unit(150, "lb"),
  31791. name: "Back",
  31792. image: {
  31793. source: "./media/characters/hugo-sigil/back.svg",
  31794. extra: 519 / 495,
  31795. bottom: 5 / 524
  31796. }
  31797. },
  31798. maw: {
  31799. height: math.unit(1.4, "feet"),
  31800. weight: math.unit(150, "lb"),
  31801. name: "Maw",
  31802. image: {
  31803. source: "./media/characters/hugo-sigil/maw.svg"
  31804. }
  31805. },
  31806. feet: {
  31807. height: math.unit(1.56, "feet"),
  31808. weight: math.unit(150, "lb"),
  31809. name: "Feet",
  31810. image: {
  31811. source: "./media/characters/hugo-sigil/feet.svg",
  31812. extra: 177 / 177,
  31813. bottom: 12 / 189
  31814. }
  31815. },
  31816. },
  31817. [
  31818. {
  31819. name: "Normal",
  31820. height: math.unit(6, "feet")
  31821. },
  31822. {
  31823. name: "Macro",
  31824. height: math.unit(200, "feet"),
  31825. default: true
  31826. },
  31827. ]
  31828. ))
  31829. characterMakers.push(() => makeCharacter(
  31830. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31831. {
  31832. front: {
  31833. height: math.unit(6, "feet"),
  31834. weight: math.unit(150, "lb"),
  31835. name: "Front",
  31836. image: {
  31837. source: "./media/characters/peri/front.svg",
  31838. extra: 2354 / 2233,
  31839. bottom: 49 / 2403
  31840. }
  31841. },
  31842. },
  31843. [
  31844. {
  31845. name: "Really Small",
  31846. height: math.unit(1, "nm")
  31847. },
  31848. {
  31849. name: "Micro",
  31850. height: math.unit(4, "inches")
  31851. },
  31852. {
  31853. name: "Normal",
  31854. height: math.unit(7, "inches"),
  31855. default: true
  31856. },
  31857. {
  31858. name: "Macro",
  31859. height: math.unit(400, "feet")
  31860. },
  31861. {
  31862. name: "Megamacro",
  31863. height: math.unit(100, "miles")
  31864. },
  31865. ]
  31866. ))
  31867. characterMakers.push(() => makeCharacter(
  31868. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31869. {
  31870. frontSlim: {
  31871. height: math.unit(7, "feet"),
  31872. name: "Front (Slim)",
  31873. image: {
  31874. source: "./media/characters/issilora/front-slim.svg",
  31875. extra: 529 / 449,
  31876. bottom: 53 / 582
  31877. }
  31878. },
  31879. sideSlim: {
  31880. height: math.unit(7, "feet"),
  31881. name: "Side (Slim)",
  31882. image: {
  31883. source: "./media/characters/issilora/side-slim.svg",
  31884. extra: 570 / 480,
  31885. bottom: 30 / 600
  31886. }
  31887. },
  31888. backSlim: {
  31889. height: math.unit(7, "feet"),
  31890. name: "Back (Slim)",
  31891. image: {
  31892. source: "./media/characters/issilora/back-slim.svg",
  31893. extra: 537 / 455,
  31894. bottom: 46 / 583
  31895. }
  31896. },
  31897. frontBuff: {
  31898. height: math.unit(7, "feet"),
  31899. name: "Front (Buff)",
  31900. image: {
  31901. source: "./media/characters/issilora/front-buff.svg",
  31902. extra: 2310 / 2035,
  31903. bottom: 335 / 2645
  31904. }
  31905. },
  31906. head: {
  31907. height: math.unit(1.94, "feet"),
  31908. name: "Head",
  31909. image: {
  31910. source: "./media/characters/issilora/head.svg"
  31911. }
  31912. },
  31913. },
  31914. [
  31915. {
  31916. name: "Minimum",
  31917. height: math.unit(7, "feet")
  31918. },
  31919. {
  31920. name: "Comfortable",
  31921. height: math.unit(17, "feet")
  31922. },
  31923. {
  31924. name: "Fun Size",
  31925. height: math.unit(47, "feet")
  31926. },
  31927. {
  31928. name: "Natural Macro",
  31929. height: math.unit(137, "feet"),
  31930. default: true
  31931. },
  31932. {
  31933. name: "Maximum Kaiju",
  31934. height: math.unit(397, "feet")
  31935. },
  31936. ]
  31937. ))
  31938. characterMakers.push(() => makeCharacter(
  31939. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31940. {
  31941. front: {
  31942. height: math.unit(50 + 9/12, "feet"),
  31943. weight: math.unit(32.8, "tons"),
  31944. name: "Front",
  31945. image: {
  31946. source: "./media/characters/irb'iiritaahn/front.svg",
  31947. extra: 1878/1826,
  31948. bottom: 326/2204
  31949. }
  31950. },
  31951. back: {
  31952. height: math.unit(50 + 9/12, "feet"),
  31953. weight: math.unit(32.8, "tons"),
  31954. name: "Back",
  31955. image: {
  31956. source: "./media/characters/irb'iiritaahn/back.svg",
  31957. extra: 2052/2018,
  31958. bottom: 152/2204
  31959. }
  31960. },
  31961. head: {
  31962. height: math.unit(12.86, "feet"),
  31963. name: "Head",
  31964. image: {
  31965. source: "./media/characters/irb'iiritaahn/head.svg"
  31966. }
  31967. },
  31968. maw: {
  31969. height: math.unit(9.66, "feet"),
  31970. name: "Maw",
  31971. image: {
  31972. source: "./media/characters/irb'iiritaahn/maw.svg"
  31973. }
  31974. },
  31975. frontDick: {
  31976. height: math.unit(8.78461, "feet"),
  31977. name: "Front Dick",
  31978. image: {
  31979. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31980. }
  31981. },
  31982. rearDick: {
  31983. height: math.unit(8.78461, "feet"),
  31984. name: "Rear Dick",
  31985. image: {
  31986. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31987. }
  31988. },
  31989. rearDickUnfolded: {
  31990. height: math.unit(8.78, "feet"),
  31991. name: "Rear Dick (Unfolded)",
  31992. image: {
  31993. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31994. }
  31995. },
  31996. wings: {
  31997. height: math.unit(43, "feet"),
  31998. name: "Wings",
  31999. image: {
  32000. source: "./media/characters/irb'iiritaahn/wings.svg"
  32001. }
  32002. },
  32003. },
  32004. [
  32005. {
  32006. name: "Macro",
  32007. height: math.unit(50 + 9/12, "feet"),
  32008. default: true
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(205, "cm"),
  32017. weight: math.unit(102, "kg"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/irbisgreif/front.svg",
  32021. extra: 785/706,
  32022. bottom: 13/798
  32023. }
  32024. },
  32025. back: {
  32026. height: math.unit(205, "cm"),
  32027. weight: math.unit(102, "kg"),
  32028. name: "Back",
  32029. image: {
  32030. source: "./media/characters/irbisgreif/back.svg",
  32031. extra: 713/701,
  32032. bottom: 26/739
  32033. }
  32034. },
  32035. frontDressed: {
  32036. height: math.unit(216, "cm"),
  32037. weight: math.unit(102, "kg"),
  32038. name: "Front-dressed",
  32039. image: {
  32040. source: "./media/characters/irbisgreif/front-dressed.svg",
  32041. extra: 902/776,
  32042. bottom: 14/916
  32043. }
  32044. },
  32045. sideDressed: {
  32046. height: math.unit(195, "cm"),
  32047. weight: math.unit(102, "kg"),
  32048. name: "Side-dressed",
  32049. image: {
  32050. source: "./media/characters/irbisgreif/side-dressed.svg",
  32051. extra: 788/688,
  32052. bottom: 21/809
  32053. }
  32054. },
  32055. backDressed: {
  32056. height: math.unit(216, "cm"),
  32057. weight: math.unit(102, "kg"),
  32058. name: "Back-dressed",
  32059. image: {
  32060. source: "./media/characters/irbisgreif/back-dressed.svg",
  32061. extra: 901/783,
  32062. bottom: 10/911
  32063. }
  32064. },
  32065. dick: {
  32066. height: math.unit(0.49, "feet"),
  32067. name: "Dick",
  32068. image: {
  32069. source: "./media/characters/irbisgreif/dick.svg"
  32070. }
  32071. },
  32072. wingTop: {
  32073. height: math.unit(1.93 , "feet"),
  32074. name: "Wing-top",
  32075. image: {
  32076. source: "./media/characters/irbisgreif/wing-top.svg"
  32077. }
  32078. },
  32079. wingBottom: {
  32080. height: math.unit(1.93 , "feet"),
  32081. name: "Wing-bottom",
  32082. image: {
  32083. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32084. }
  32085. },
  32086. },
  32087. [
  32088. {
  32089. name: "Normal",
  32090. height: math.unit(216, "cm"),
  32091. default: true
  32092. },
  32093. ]
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(6, "feet"),
  32100. weight: math.unit(150, "lb"),
  32101. name: "Front",
  32102. image: {
  32103. source: "./media/characters/pride/front.svg",
  32104. extra: 1299/1230,
  32105. bottom: 18/1317
  32106. }
  32107. },
  32108. },
  32109. [
  32110. {
  32111. name: "Normal",
  32112. height: math.unit(7, "feet")
  32113. },
  32114. {
  32115. name: "Mini-macro",
  32116. height: math.unit(11, "feet")
  32117. },
  32118. {
  32119. name: "Macro",
  32120. height: math.unit(15, "meters"),
  32121. default: true
  32122. },
  32123. {
  32124. name: "Macro+",
  32125. height: math.unit(40, "meters")
  32126. },
  32127. ]
  32128. ))
  32129. characterMakers.push(() => makeCharacter(
  32130. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32131. {
  32132. front: {
  32133. height: math.unit(4 + 2 / 12, "feet"),
  32134. weight: math.unit(95, "lb"),
  32135. name: "Front",
  32136. image: {
  32137. source: "./media/characters/vaelophis-nyx/front.svg",
  32138. extra: 2532/2330,
  32139. bottom: 0/2532
  32140. }
  32141. },
  32142. back: {
  32143. height: math.unit(4 + 2 / 12, "feet"),
  32144. weight: math.unit(95, "lb"),
  32145. name: "Back",
  32146. image: {
  32147. source: "./media/characters/vaelophis-nyx/back.svg",
  32148. extra: 2484/2361,
  32149. bottom: 0/2484
  32150. }
  32151. },
  32152. feralSide: {
  32153. height: math.unit(2 + 1/12, "feet"),
  32154. weight: math.unit(20, "lb"),
  32155. name: "Feral (Side)",
  32156. image: {
  32157. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32158. extra: 1721/1581,
  32159. bottom: 70/1791
  32160. }
  32161. },
  32162. feralLazing: {
  32163. height: math.unit(1.08, "feet"),
  32164. weight: math.unit(20, "lb"),
  32165. name: "Feral (Lazing)",
  32166. image: {
  32167. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32168. extra: 822/822,
  32169. bottom: 248/1070
  32170. }
  32171. },
  32172. ear: {
  32173. height: math.unit(0.416, "feet"),
  32174. name: "Ear",
  32175. image: {
  32176. source: "./media/characters/vaelophis-nyx/ear.svg"
  32177. }
  32178. },
  32179. eye: {
  32180. height: math.unit(0.0748, "feet"),
  32181. name: "Eye",
  32182. image: {
  32183. source: "./media/characters/vaelophis-nyx/eye.svg"
  32184. }
  32185. },
  32186. mouth: {
  32187. height: math.unit(0.378, "feet"),
  32188. name: "Mouth",
  32189. image: {
  32190. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32191. }
  32192. },
  32193. spade: {
  32194. height: math.unit(0.55, "feet"),
  32195. name: "Spade",
  32196. image: {
  32197. source: "./media/characters/vaelophis-nyx/spade.svg"
  32198. }
  32199. },
  32200. },
  32201. [
  32202. {
  32203. name: "Normal",
  32204. height: math.unit(4 + 2/12, "feet"),
  32205. default: true
  32206. },
  32207. ]
  32208. ))
  32209. characterMakers.push(() => makeCharacter(
  32210. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32211. {
  32212. front: {
  32213. height: math.unit(7, "feet"),
  32214. weight: math.unit(231, "lb"),
  32215. name: "Front",
  32216. image: {
  32217. source: "./media/characters/flux/front.svg",
  32218. extra: 919/871,
  32219. bottom: 0/919
  32220. }
  32221. },
  32222. back: {
  32223. height: math.unit(7, "feet"),
  32224. weight: math.unit(231, "lb"),
  32225. name: "Back",
  32226. image: {
  32227. source: "./media/characters/flux/back.svg",
  32228. extra: 1040/992,
  32229. bottom: 0/1040
  32230. }
  32231. },
  32232. frontDressed: {
  32233. height: math.unit(7, "feet"),
  32234. weight: math.unit(231, "lb"),
  32235. name: "Front (Dressed)",
  32236. image: {
  32237. source: "./media/characters/flux/front-dressed.svg",
  32238. extra: 919/871,
  32239. bottom: 0/919
  32240. }
  32241. },
  32242. feralSide: {
  32243. height: math.unit(5, "feet"),
  32244. weight: math.unit(150, "lb"),
  32245. name: "Feral (Side)",
  32246. image: {
  32247. source: "./media/characters/flux/feral-side.svg",
  32248. extra: 598/528,
  32249. bottom: 28/626
  32250. }
  32251. },
  32252. head: {
  32253. height: math.unit(1.585, "feet"),
  32254. name: "Head",
  32255. image: {
  32256. source: "./media/characters/flux/head.svg"
  32257. }
  32258. },
  32259. headSide: {
  32260. height: math.unit(1.74, "feet"),
  32261. name: "Head (Side)",
  32262. image: {
  32263. source: "./media/characters/flux/head-side.svg"
  32264. }
  32265. },
  32266. headSideFire: {
  32267. height: math.unit(1.76, "feet"),
  32268. name: "Head (Side, Fire)",
  32269. image: {
  32270. source: "./media/characters/flux/head-side-fire.svg"
  32271. }
  32272. },
  32273. },
  32274. [
  32275. {
  32276. name: "Normal",
  32277. height: math.unit(7, "feet"),
  32278. default: true
  32279. },
  32280. ]
  32281. ))
  32282. characterMakers.push(() => makeCharacter(
  32283. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32284. {
  32285. front: {
  32286. height: math.unit(9, "feet"),
  32287. weight: math.unit(1012, "lb"),
  32288. name: "Front",
  32289. image: {
  32290. source: "./media/characters/ulfra-lupae/front.svg",
  32291. extra: 1083/1011,
  32292. bottom: 67/1150
  32293. }
  32294. },
  32295. },
  32296. [
  32297. {
  32298. name: "Micro",
  32299. height: math.unit(6, "inches")
  32300. },
  32301. {
  32302. name: "Socializing",
  32303. height: math.unit(6 + 5/12, "feet")
  32304. },
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(9, "feet"),
  32308. default: true
  32309. },
  32310. {
  32311. name: "Macro",
  32312. height: math.unit(150, "feet")
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32318. {
  32319. front: {
  32320. height: math.unit(5 + 2/12, "feet"),
  32321. weight: math.unit(120, "lb"),
  32322. name: "Front",
  32323. image: {
  32324. source: "./media/characters/timber/front.svg",
  32325. extra: 2814/2705,
  32326. bottom: 181/2995
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(5 + 2/12, "feet"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32340. {
  32341. front: {
  32342. height: math.unit(9, "feet"),
  32343. name: "Front",
  32344. image: {
  32345. source: "./media/characters/nicki/front.svg",
  32346. extra: 1240/990,
  32347. bottom: 45/1285
  32348. },
  32349. form: "anthro",
  32350. default: true
  32351. },
  32352. side: {
  32353. height: math.unit(9, "feet"),
  32354. name: "Side",
  32355. image: {
  32356. source: "./media/characters/nicki/side.svg",
  32357. extra: 1047/973,
  32358. bottom: 61/1108
  32359. },
  32360. form: "anthro"
  32361. },
  32362. back: {
  32363. height: math.unit(9, "feet"),
  32364. name: "Back",
  32365. image: {
  32366. source: "./media/characters/nicki/back.svg",
  32367. extra: 1006/965,
  32368. bottom: 39/1045
  32369. },
  32370. form: "anthro"
  32371. },
  32372. taur: {
  32373. height: math.unit(15, "feet"),
  32374. name: "Taur",
  32375. image: {
  32376. source: "./media/characters/nicki/taur.svg",
  32377. extra: 1592/1347,
  32378. bottom: 0/1592
  32379. },
  32380. form: "taur",
  32381. default: true
  32382. },
  32383. },
  32384. [
  32385. {
  32386. name: "Normal",
  32387. height: math.unit(9, "feet"),
  32388. form: "anthro",
  32389. default: true
  32390. },
  32391. {
  32392. name: "Normal",
  32393. height: math.unit(15, "feet"),
  32394. form: "taur",
  32395. default: true
  32396. }
  32397. ],
  32398. {
  32399. "anthro": {
  32400. name: "Anthro",
  32401. default: true
  32402. },
  32403. "taur": {
  32404. name: "Taur"
  32405. }
  32406. }
  32407. ))
  32408. characterMakers.push(() => makeCharacter(
  32409. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32410. {
  32411. front: {
  32412. height: math.unit(7 + 10/12, "feet"),
  32413. weight: math.unit(3.5, "tons"),
  32414. name: "Front",
  32415. image: {
  32416. source: "./media/characters/lee/front.svg",
  32417. extra: 1773/1615,
  32418. bottom: 86/1859
  32419. }
  32420. },
  32421. hand: {
  32422. height: math.unit(1.78, "feet"),
  32423. name: "Hand",
  32424. image: {
  32425. source: "./media/characters/lee/hand.svg"
  32426. }
  32427. },
  32428. maw: {
  32429. height: math.unit(1.18, "feet"),
  32430. name: "Maw",
  32431. image: {
  32432. source: "./media/characters/lee/maw.svg"
  32433. }
  32434. },
  32435. },
  32436. [
  32437. {
  32438. name: "Normal",
  32439. height: math.unit(7 + 10/12, "feet"),
  32440. default: true
  32441. },
  32442. ]
  32443. ))
  32444. characterMakers.push(() => makeCharacter(
  32445. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32446. {
  32447. front: {
  32448. height: math.unit(9, "feet"),
  32449. name: "Front",
  32450. image: {
  32451. source: "./media/characters/guti/front.svg",
  32452. extra: 4551/4355,
  32453. bottom: 123/4674
  32454. }
  32455. },
  32456. tongue: {
  32457. height: math.unit(1, "feet"),
  32458. name: "Tongue",
  32459. image: {
  32460. source: "./media/characters/guti/tongue.svg"
  32461. }
  32462. },
  32463. paw: {
  32464. height: math.unit(1.18, "feet"),
  32465. name: "Paw",
  32466. image: {
  32467. source: "./media/characters/guti/paw.svg"
  32468. }
  32469. },
  32470. },
  32471. [
  32472. {
  32473. name: "Normal",
  32474. height: math.unit(9, "feet"),
  32475. default: true
  32476. },
  32477. ]
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32481. {
  32482. side: {
  32483. height: math.unit(5, "meters"),
  32484. name: "Side",
  32485. image: {
  32486. source: "./media/characters/vesper/side.svg",
  32487. extra: 1605/1518,
  32488. bottom: 0/1605
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Small",
  32495. height: math.unit(5, "meters")
  32496. },
  32497. {
  32498. name: "Sage",
  32499. height: math.unit(100, "meters"),
  32500. default: true
  32501. },
  32502. {
  32503. name: "Fun Size",
  32504. height: math.unit(600, "meters")
  32505. },
  32506. {
  32507. name: "Goddess",
  32508. height: math.unit(20000, "km")
  32509. },
  32510. {
  32511. name: "Maximum",
  32512. height: math.unit(5, "galaxies")
  32513. },
  32514. ]
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32518. {
  32519. front: {
  32520. height: math.unit(6 + 3/12, "feet"),
  32521. weight: math.unit(190, "lb"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/gawain/front.svg",
  32525. extra: 2222/2139,
  32526. bottom: 90/2312
  32527. }
  32528. },
  32529. back: {
  32530. height: math.unit(6 + 3/12, "feet"),
  32531. weight: math.unit(190, "lb"),
  32532. name: "Back",
  32533. image: {
  32534. source: "./media/characters/gawain/back.svg",
  32535. extra: 2199/2111,
  32536. bottom: 73/2272
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Normal",
  32543. height: math.unit(6 + 3/12, "feet"),
  32544. default: true
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32550. {
  32551. side: {
  32552. height: math.unit(3.5, "meters"),
  32553. weight: math.unit(16000, "lb"),
  32554. name: "Side",
  32555. image: {
  32556. source: "./media/characters/dascalti/side.svg",
  32557. extra: 392/273,
  32558. bottom: 47/439
  32559. }
  32560. },
  32561. breath: {
  32562. height: math.unit(7.4, "feet"),
  32563. name: "Breath",
  32564. image: {
  32565. source: "./media/characters/dascalti/breath.svg"
  32566. }
  32567. },
  32568. fed: {
  32569. height: math.unit(3.6, "meters"),
  32570. weight: math.unit(16000, "lb"),
  32571. name: "Fed",
  32572. image: {
  32573. source: "./media/characters/dascalti/fed.svg",
  32574. extra: 1419/820,
  32575. bottom: 95/1514
  32576. }
  32577. },
  32578. },
  32579. [
  32580. {
  32581. name: "Normal",
  32582. height: math.unit(3.5, "meters"),
  32583. default: true
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32589. {
  32590. front: {
  32591. height: math.unit(3 + 5/12, "feet"),
  32592. name: "Front",
  32593. image: {
  32594. source: "./media/characters/mauve/front.svg",
  32595. extra: 1126/1033,
  32596. bottom: 65/1191
  32597. }
  32598. },
  32599. side: {
  32600. height: math.unit(3 + 5/12, "feet"),
  32601. name: "Side",
  32602. image: {
  32603. source: "./media/characters/mauve/side.svg",
  32604. extra: 1089/1001,
  32605. bottom: 29/1118
  32606. }
  32607. },
  32608. back: {
  32609. height: math.unit(3 + 5/12, "feet"),
  32610. name: "Back",
  32611. image: {
  32612. source: "./media/characters/mauve/back.svg",
  32613. extra: 1173/1053,
  32614. bottom: 109/1282
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(3 + 5/12, "feet"),
  32622. default: true
  32623. },
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32628. {
  32629. front: {
  32630. height: math.unit(6 + 3/12, "feet"),
  32631. weight: math.unit(430, "lb"),
  32632. name: "Front",
  32633. image: {
  32634. source: "./media/characters/carlos/front.svg",
  32635. extra: 1964/1913,
  32636. bottom: 70/2034
  32637. }
  32638. },
  32639. },
  32640. [
  32641. {
  32642. name: "Normal",
  32643. height: math.unit(6 + 3/12, "feet"),
  32644. default: true
  32645. },
  32646. ]
  32647. ))
  32648. characterMakers.push(() => makeCharacter(
  32649. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32650. {
  32651. back: {
  32652. height: math.unit(5 + 10/12, "feet"),
  32653. weight: math.unit(200, "lb"),
  32654. name: "Back",
  32655. image: {
  32656. source: "./media/characters/jax/back.svg",
  32657. extra: 764/739,
  32658. bottom: 25/789
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Normal",
  32665. height: math.unit(5 + 10/12, "feet"),
  32666. default: true
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32672. {
  32673. front: {
  32674. height: math.unit(8, "feet"),
  32675. weight: math.unit(250, "lb"),
  32676. name: "Front",
  32677. image: {
  32678. source: "./media/characters/eikthynir/front.svg",
  32679. extra: 1332/1166,
  32680. bottom: 82/1414
  32681. }
  32682. },
  32683. back: {
  32684. height: math.unit(8, "feet"),
  32685. weight: math.unit(250, "lb"),
  32686. name: "Back",
  32687. image: {
  32688. source: "./media/characters/eikthynir/back.svg",
  32689. extra: 1342/1190,
  32690. bottom: 19/1361
  32691. }
  32692. },
  32693. dick: {
  32694. height: math.unit(2.35, "feet"),
  32695. name: "Dick",
  32696. image: {
  32697. source: "./media/characters/eikthynir/dick.svg"
  32698. }
  32699. },
  32700. },
  32701. [
  32702. {
  32703. name: "Normal",
  32704. height: math.unit(8, "feet"),
  32705. default: true
  32706. },
  32707. ]
  32708. ))
  32709. characterMakers.push(() => makeCharacter(
  32710. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32711. {
  32712. front: {
  32713. height: math.unit(99, "meters"),
  32714. weight: math.unit(13000, "tons"),
  32715. name: "Front",
  32716. image: {
  32717. source: "./media/characters/zlmos/front.svg",
  32718. extra: 2202/1992,
  32719. bottom: 315/2517
  32720. }
  32721. },
  32722. },
  32723. [
  32724. {
  32725. name: "Macro",
  32726. height: math.unit(99, "meters"),
  32727. default: true
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32733. {
  32734. front: {
  32735. height: math.unit(6 + 5/12, "feet"),
  32736. name: "Front",
  32737. image: {
  32738. source: "./media/characters/purri/front.svg",
  32739. extra: 1698/1610,
  32740. bottom: 32/1730
  32741. }
  32742. },
  32743. frontAlt: {
  32744. height: math.unit(6 + 5/12, "feet"),
  32745. name: "Front (Alt)",
  32746. image: {
  32747. source: "./media/characters/purri/front-alt.svg",
  32748. extra: 450/420,
  32749. bottom: 26/476
  32750. }
  32751. },
  32752. boots: {
  32753. height: math.unit(5.5, "feet"),
  32754. name: "Boots",
  32755. image: {
  32756. source: "./media/characters/purri/boots.svg",
  32757. extra: 905/853,
  32758. bottom: 18/923
  32759. }
  32760. },
  32761. lying: {
  32762. height: math.unit(2, "feet"),
  32763. name: "Lying",
  32764. image: {
  32765. source: "./media/characters/purri/lying.svg",
  32766. extra: 940/843,
  32767. bottom: 146/1086
  32768. }
  32769. },
  32770. devious: {
  32771. height: math.unit(1.77, "feet"),
  32772. name: "Devious",
  32773. image: {
  32774. source: "./media/characters/purri/devious.svg",
  32775. extra: 1440/1155,
  32776. bottom: 147/1587
  32777. }
  32778. },
  32779. bean: {
  32780. height: math.unit(1.94, "feet"),
  32781. name: "Bean",
  32782. image: {
  32783. source: "./media/characters/purri/bean.svg"
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Micro",
  32790. height: math.unit(1, "mm")
  32791. },
  32792. {
  32793. name: "Normal",
  32794. height: math.unit(6 + 5/12, "feet"),
  32795. default: true
  32796. },
  32797. {
  32798. name: "Macro :3c",
  32799. height: math.unit(2, "miles")
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32805. {
  32806. front: {
  32807. height: math.unit(6 + 2/12, "feet"),
  32808. weight: math.unit(250, "lb"),
  32809. name: "Front",
  32810. image: {
  32811. source: "./media/characters/moonlight/front.svg",
  32812. extra: 1044/908,
  32813. bottom: 56/1100
  32814. }
  32815. },
  32816. feral: {
  32817. height: math.unit(3 + 1/12, "feet"),
  32818. weight: math.unit(50, "kg"),
  32819. name: "Feral",
  32820. image: {
  32821. source: "./media/characters/moonlight/feral.svg",
  32822. extra: 3705/2791,
  32823. bottom: 145/3850
  32824. }
  32825. },
  32826. paw: {
  32827. height: math.unit(1, "feet"),
  32828. name: "Paw",
  32829. image: {
  32830. source: "./media/characters/moonlight/paw.svg"
  32831. }
  32832. },
  32833. paws: {
  32834. height: math.unit(0.98, "feet"),
  32835. name: "Paws",
  32836. image: {
  32837. source: "./media/characters/moonlight/paws.svg",
  32838. extra: 939/939,
  32839. bottom: 50/989
  32840. }
  32841. },
  32842. mouth: {
  32843. height: math.unit(0.48, "feet"),
  32844. name: "Mouth",
  32845. image: {
  32846. source: "./media/characters/moonlight/mouth.svg"
  32847. }
  32848. },
  32849. dick: {
  32850. height: math.unit(1.46, "feet"),
  32851. name: "Dick",
  32852. image: {
  32853. source: "./media/characters/moonlight/dick.svg"
  32854. }
  32855. },
  32856. },
  32857. [
  32858. {
  32859. name: "Normal",
  32860. height: math.unit(6 + 2/12, "feet"),
  32861. default: true
  32862. },
  32863. {
  32864. name: "Macro",
  32865. height: math.unit(300, "feet")
  32866. },
  32867. {
  32868. name: "Macro+",
  32869. height: math.unit(1, "mile")
  32870. },
  32871. {
  32872. name: "Mt. Moon",
  32873. height: math.unit(5, "miles")
  32874. },
  32875. {
  32876. name: "Megamacro",
  32877. height: math.unit(15, "miles")
  32878. },
  32879. ]
  32880. ))
  32881. characterMakers.push(() => makeCharacter(
  32882. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32883. {
  32884. back: {
  32885. height: math.unit(6, "feet"),
  32886. weight: math.unit(150, "lb"),
  32887. name: "Back",
  32888. image: {
  32889. source: "./media/characters/sylen/back.svg",
  32890. extra: 1335/1273,
  32891. bottom: 107/1442
  32892. }
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Normal",
  32898. height: math.unit(5 + 5/12, "feet")
  32899. },
  32900. {
  32901. name: "Megamacro",
  32902. height: math.unit(3, "miles"),
  32903. default: true
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32909. {
  32910. front: {
  32911. height: math.unit(6, "feet"),
  32912. weight: math.unit(190, "lb"),
  32913. name: "Front",
  32914. image: {
  32915. source: "./media/characters/huttser/front.svg",
  32916. extra: 1152/1058,
  32917. bottom: 23/1175
  32918. }
  32919. },
  32920. side: {
  32921. height: math.unit(6, "feet"),
  32922. weight: math.unit(190, "lb"),
  32923. name: "Side",
  32924. image: {
  32925. source: "./media/characters/huttser/side.svg",
  32926. extra: 1174/1065,
  32927. bottom: 18/1192
  32928. }
  32929. },
  32930. back: {
  32931. height: math.unit(6, "feet"),
  32932. weight: math.unit(190, "lb"),
  32933. name: "Back",
  32934. image: {
  32935. source: "./media/characters/huttser/back.svg",
  32936. extra: 1158/1056,
  32937. bottom: 12/1170
  32938. }
  32939. },
  32940. },
  32941. [
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32946. {
  32947. side: {
  32948. height: math.unit(12 + 9/12, "feet"),
  32949. weight: math.unit(15000, "lb"),
  32950. name: "Side",
  32951. image: {
  32952. source: "./media/characters/faan/side.svg",
  32953. extra: 2747/2697,
  32954. bottom: 0/2747
  32955. }
  32956. },
  32957. front: {
  32958. height: math.unit(12 + 9/12, "feet"),
  32959. weight: math.unit(15000, "lb"),
  32960. name: "Front",
  32961. image: {
  32962. source: "./media/characters/faan/front.svg",
  32963. extra: 607/571,
  32964. bottom: 24/631
  32965. }
  32966. },
  32967. head: {
  32968. height: math.unit(2.85, "feet"),
  32969. name: "Head",
  32970. image: {
  32971. source: "./media/characters/faan/head.svg"
  32972. }
  32973. },
  32974. headAlt: {
  32975. height: math.unit(3.13, "feet"),
  32976. name: "Head-alt",
  32977. image: {
  32978. source: "./media/characters/faan/head-alt.svg"
  32979. }
  32980. },
  32981. },
  32982. [
  32983. {
  32984. name: "Normal",
  32985. height: math.unit(12 + 9/12, "feet"),
  32986. default: true
  32987. },
  32988. ]
  32989. ))
  32990. characterMakers.push(() => makeCharacter(
  32991. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32992. {
  32993. front: {
  32994. height: math.unit(6, "feet"),
  32995. weight: math.unit(300, "lb"),
  32996. name: "Front",
  32997. image: {
  32998. source: "./media/characters/tanio/front.svg",
  32999. extra: 711/673,
  33000. bottom: 25/736
  33001. }
  33002. },
  33003. },
  33004. [
  33005. {
  33006. name: "Normal",
  33007. height: math.unit(6, "feet"),
  33008. default: true
  33009. },
  33010. ]
  33011. ))
  33012. characterMakers.push(() => makeCharacter(
  33013. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33014. {
  33015. front: {
  33016. height: math.unit(3, "inches"),
  33017. name: "Front",
  33018. image: {
  33019. source: "./media/characters/noboru/front.svg",
  33020. extra: 1039/932,
  33021. bottom: 18/1057
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Micro",
  33028. height: math.unit(3, "inches"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33035. {
  33036. front: {
  33037. height: math.unit(1.85, "meters"),
  33038. weight: math.unit(80, "kg"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/daniel-barrett/front.svg",
  33042. extra: 355/337,
  33043. bottom: 9/364
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Pico",
  33050. height: math.unit(0.0433, "mm")
  33051. },
  33052. {
  33053. name: "Nano",
  33054. height: math.unit(1.5, "mm")
  33055. },
  33056. {
  33057. name: "Micro",
  33058. height: math.unit(5.3, "cm"),
  33059. default: true
  33060. },
  33061. {
  33062. name: "Normal",
  33063. height: math.unit(1.85, "meters")
  33064. },
  33065. {
  33066. name: "Macro",
  33067. height: math.unit(64.7, "meters")
  33068. },
  33069. {
  33070. name: "Megamacro",
  33071. height: math.unit(2.26, "km")
  33072. },
  33073. {
  33074. name: "Gigamacro",
  33075. height: math.unit(79, "km")
  33076. },
  33077. {
  33078. name: "Teramacro",
  33079. height: math.unit(2765, "km")
  33080. },
  33081. {
  33082. name: "Petamacro",
  33083. height: math.unit(96678, "km")
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(30, "meters"),
  33092. weight: math.unit(400, "tons"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/zeel/front.svg",
  33096. extra: 2599/2599,
  33097. bottom: 226/2825
  33098. }
  33099. },
  33100. },
  33101. [
  33102. {
  33103. name: "Macro",
  33104. height: math.unit(30, "meters"),
  33105. default: true
  33106. },
  33107. ]
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(6 + 7/12, "feet"),
  33114. weight: math.unit(210, "lb"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/tarn/front.svg",
  33118. extra: 3517/3220,
  33119. bottom: 91/3608
  33120. }
  33121. },
  33122. back: {
  33123. height: math.unit(6 + 7/12, "feet"),
  33124. weight: math.unit(210, "lb"),
  33125. name: "Back",
  33126. image: {
  33127. source: "./media/characters/tarn/back.svg",
  33128. extra: 3566/3241,
  33129. bottom: 34/3600
  33130. }
  33131. },
  33132. dick: {
  33133. height: math.unit(1.65, "feet"),
  33134. name: "Dick",
  33135. image: {
  33136. source: "./media/characters/tarn/dick.svg"
  33137. }
  33138. },
  33139. paw: {
  33140. height: math.unit(1.80, "feet"),
  33141. name: "Paw",
  33142. image: {
  33143. source: "./media/characters/tarn/paw.svg"
  33144. }
  33145. },
  33146. tongue: {
  33147. height: math.unit(0.97, "feet"),
  33148. name: "Tongue",
  33149. image: {
  33150. source: "./media/characters/tarn/tongue.svg"
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Micro",
  33157. height: math.unit(4, "inches")
  33158. },
  33159. {
  33160. name: "Normal",
  33161. height: math.unit(6 + 7/12, "feet"),
  33162. default: true
  33163. },
  33164. {
  33165. name: "Macro",
  33166. height: math.unit(300, "feet")
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(5 + 7/12, "feet"),
  33175. weight: math.unit(80, "kg"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33179. extra: 3023/2865,
  33180. bottom: 33/3056
  33181. }
  33182. },
  33183. back: {
  33184. height: math.unit(5 + 7/12, "feet"),
  33185. weight: math.unit(80, "kg"),
  33186. name: "Back",
  33187. image: {
  33188. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33189. extra: 3020/2886,
  33190. bottom: 30/3050
  33191. }
  33192. },
  33193. dick: {
  33194. height: math.unit(0.98, "feet"),
  33195. name: "Dick",
  33196. image: {
  33197. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33198. }
  33199. },
  33200. anatomy: {
  33201. height: math.unit(2.86, "feet"),
  33202. name: "Anatomy",
  33203. image: {
  33204. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Really Small",
  33211. height: math.unit(2, "inches")
  33212. },
  33213. {
  33214. name: "Micro",
  33215. height: math.unit(5.583, "inches")
  33216. },
  33217. {
  33218. name: "Normal",
  33219. height: math.unit(5 + 7/12, "feet"),
  33220. default: true
  33221. },
  33222. {
  33223. name: "Macro",
  33224. height: math.unit(67, "feet")
  33225. },
  33226. {
  33227. name: "Megamacro",
  33228. height: math.unit(134, "feet")
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33234. {
  33235. front: {
  33236. height: math.unit(9, "feet"),
  33237. weight: math.unit(120, "lb"),
  33238. name: "Front",
  33239. image: {
  33240. source: "./media/characters/sally/front.svg",
  33241. extra: 1506/1349,
  33242. bottom: 66/1572
  33243. }
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Normal",
  33249. height: math.unit(9, "feet"),
  33250. default: true
  33251. },
  33252. ]
  33253. ))
  33254. characterMakers.push(() => makeCharacter(
  33255. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33256. {
  33257. front: {
  33258. height: math.unit(8, "feet"),
  33259. weight: math.unit(900, "lb"),
  33260. name: "Front",
  33261. image: {
  33262. source: "./media/characters/owen/front.svg",
  33263. extra: 1761/1657,
  33264. bottom: 74/1835
  33265. }
  33266. },
  33267. side: {
  33268. height: math.unit(8, "feet"),
  33269. weight: math.unit(900, "lb"),
  33270. name: "Side",
  33271. image: {
  33272. source: "./media/characters/owen/side.svg",
  33273. extra: 1797/1734,
  33274. bottom: 30/1827
  33275. }
  33276. },
  33277. back: {
  33278. height: math.unit(8, "feet"),
  33279. weight: math.unit(900, "lb"),
  33280. name: "Back",
  33281. image: {
  33282. source: "./media/characters/owen/back.svg",
  33283. extra: 1796/1706,
  33284. bottom: 59/1855
  33285. }
  33286. },
  33287. maw: {
  33288. height: math.unit(1.76, "feet"),
  33289. name: "Maw",
  33290. image: {
  33291. source: "./media/characters/owen/maw.svg"
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(8, "feet"),
  33299. default: true
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33305. {
  33306. front: {
  33307. height: math.unit(4, "feet"),
  33308. weight: math.unit(400, "lb"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/ryth/front.svg",
  33312. extra: 1920/1748,
  33313. bottom: 42/1962
  33314. }
  33315. },
  33316. back: {
  33317. height: math.unit(4, "feet"),
  33318. weight: math.unit(400, "lb"),
  33319. name: "Back",
  33320. image: {
  33321. source: "./media/characters/ryth/back.svg",
  33322. extra: 1897/1690,
  33323. bottom: 89/1986
  33324. }
  33325. },
  33326. mouth: {
  33327. height: math.unit(1.39, "feet"),
  33328. name: "Mouth",
  33329. image: {
  33330. source: "./media/characters/ryth/mouth.svg"
  33331. }
  33332. },
  33333. tailmaw: {
  33334. height: math.unit(1.23, "feet"),
  33335. name: "Tailmaw",
  33336. image: {
  33337. source: "./media/characters/ryth/tailmaw.svg"
  33338. }
  33339. },
  33340. goia: {
  33341. height: math.unit(4, "meters"),
  33342. weight: math.unit(10800, "lb"),
  33343. name: "Goia",
  33344. image: {
  33345. source: "./media/characters/ryth/goia.svg",
  33346. extra: 745/640,
  33347. bottom: 107/852
  33348. }
  33349. },
  33350. goiaFront: {
  33351. height: math.unit(4, "meters"),
  33352. weight: math.unit(10800, "lb"),
  33353. name: "Goia (Front)",
  33354. image: {
  33355. source: "./media/characters/ryth/goia-front.svg",
  33356. extra: 750/586,
  33357. bottom: 114/864
  33358. }
  33359. },
  33360. goiaMaw: {
  33361. height: math.unit(5.55, "feet"),
  33362. name: "Goia Maw",
  33363. image: {
  33364. source: "./media/characters/ryth/goia-maw.svg"
  33365. }
  33366. },
  33367. goiaForepaw: {
  33368. height: math.unit(3.5, "feet"),
  33369. name: "Goia Forepaw",
  33370. image: {
  33371. source: "./media/characters/ryth/goia-forepaw.svg"
  33372. }
  33373. },
  33374. goiaHindpaw: {
  33375. height: math.unit(5.55, "feet"),
  33376. name: "Goia Hindpaw",
  33377. image: {
  33378. source: "./media/characters/ryth/goia-hindpaw.svg"
  33379. }
  33380. },
  33381. },
  33382. [
  33383. {
  33384. name: "Normal",
  33385. height: math.unit(4, "feet"),
  33386. default: true
  33387. },
  33388. ]
  33389. ))
  33390. characterMakers.push(() => makeCharacter(
  33391. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33392. {
  33393. front: {
  33394. height: math.unit(7, "feet"),
  33395. weight: math.unit(180, "lb"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/necrolance/front.svg",
  33399. extra: 1062/947,
  33400. bottom: 41/1103
  33401. }
  33402. },
  33403. back: {
  33404. height: math.unit(7, "feet"),
  33405. weight: math.unit(180, "lb"),
  33406. name: "Back",
  33407. image: {
  33408. source: "./media/characters/necrolance/back.svg",
  33409. extra: 1045/984,
  33410. bottom: 14/1059
  33411. }
  33412. },
  33413. wing: {
  33414. height: math.unit(2.67, "feet"),
  33415. name: "Wing",
  33416. image: {
  33417. source: "./media/characters/necrolance/wing.svg"
  33418. }
  33419. },
  33420. },
  33421. [
  33422. {
  33423. name: "Normal",
  33424. height: math.unit(7, "feet"),
  33425. default: true
  33426. },
  33427. ]
  33428. ))
  33429. characterMakers.push(() => makeCharacter(
  33430. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33431. {
  33432. front: {
  33433. height: math.unit(76, "meters"),
  33434. weight: math.unit(30000, "tons"),
  33435. name: "Front",
  33436. image: {
  33437. source: "./media/characters/tyler/front.svg",
  33438. extra: 1640/1640,
  33439. bottom: 114/1754
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Macro",
  33446. height: math.unit(76, "meters"),
  33447. default: true
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33453. {
  33454. front: {
  33455. height: math.unit(4 + 11/12, "feet"),
  33456. weight: math.unit(132, "lb"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/icey/front.svg",
  33460. extra: 2750/2550,
  33461. bottom: 33/2783
  33462. }
  33463. },
  33464. back: {
  33465. height: math.unit(4 + 11/12, "feet"),
  33466. weight: math.unit(132, "lb"),
  33467. name: "Back",
  33468. image: {
  33469. source: "./media/characters/icey/back.svg",
  33470. extra: 2624/2481,
  33471. bottom: 35/2659
  33472. }
  33473. },
  33474. },
  33475. [
  33476. {
  33477. name: "Normal",
  33478. height: math.unit(4 + 11/12, "feet"),
  33479. default: true
  33480. },
  33481. ]
  33482. ))
  33483. characterMakers.push(() => makeCharacter(
  33484. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33485. {
  33486. front: {
  33487. height: math.unit(100, "feet"),
  33488. weight: math.unit(0, "lb"),
  33489. name: "Front",
  33490. image: {
  33491. source: "./media/characters/smile/front.svg",
  33492. extra: 2983/2912,
  33493. bottom: 162/3145
  33494. }
  33495. },
  33496. back: {
  33497. height: math.unit(100, "feet"),
  33498. weight: math.unit(0, "lb"),
  33499. name: "Back",
  33500. image: {
  33501. source: "./media/characters/smile/back.svg",
  33502. extra: 3143/3031,
  33503. bottom: 91/3234
  33504. }
  33505. },
  33506. head: {
  33507. height: math.unit(26.3, "feet"),
  33508. weight: math.unit(0, "lb"),
  33509. name: "Head",
  33510. image: {
  33511. source: "./media/characters/smile/head.svg"
  33512. }
  33513. },
  33514. collar: {
  33515. height: math.unit(5.3, "feet"),
  33516. weight: math.unit(0, "lb"),
  33517. name: "Collar",
  33518. image: {
  33519. source: "./media/characters/smile/collar.svg"
  33520. }
  33521. },
  33522. },
  33523. [
  33524. {
  33525. name: "Macro",
  33526. height: math.unit(100, "feet"),
  33527. default: true
  33528. },
  33529. ]
  33530. ))
  33531. characterMakers.push(() => makeCharacter(
  33532. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33533. {
  33534. dragon: {
  33535. height: math.unit(26, "feet"),
  33536. weight: math.unit(36, "tons"),
  33537. name: "Dragon",
  33538. image: {
  33539. source: "./media/characters/arimphae/dragon.svg",
  33540. extra: 1574/983,
  33541. bottom: 357/1931
  33542. }
  33543. },
  33544. drake: {
  33545. height: math.unit(9, "feet"),
  33546. weight: math.unit(1.5, "tons"),
  33547. name: "Drake",
  33548. image: {
  33549. source: "./media/characters/arimphae/drake.svg",
  33550. extra: 1120/925,
  33551. bottom: 435/1555
  33552. }
  33553. },
  33554. },
  33555. [
  33556. {
  33557. name: "Small",
  33558. height: math.unit(26*5/9, "feet")
  33559. },
  33560. {
  33561. name: "Normal",
  33562. height: math.unit(26, "feet"),
  33563. default: true
  33564. },
  33565. ]
  33566. ))
  33567. characterMakers.push(() => makeCharacter(
  33568. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33569. {
  33570. front: {
  33571. height: math.unit(8 + 9/12, "feet"),
  33572. name: "Front",
  33573. image: {
  33574. source: "./media/characters/xander/front.svg",
  33575. extra: 1237/974,
  33576. bottom: 94/1331
  33577. }
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Normal",
  33583. height: math.unit(8 + 9/12, "feet"),
  33584. default: true
  33585. },
  33586. {
  33587. name: "Gaze Grabber",
  33588. height: math.unit(13 + 8/12, "feet")
  33589. },
  33590. {
  33591. name: "Jaw Dropper",
  33592. height: math.unit(27, "feet")
  33593. },
  33594. {
  33595. name: "Show Stopper",
  33596. height: math.unit(136, "feet")
  33597. },
  33598. {
  33599. name: "Superstar",
  33600. height: math.unit(1.9e6, "miles")
  33601. },
  33602. ]
  33603. ))
  33604. characterMakers.push(() => makeCharacter(
  33605. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33606. {
  33607. side: {
  33608. height: math.unit(2100, "feet"),
  33609. name: "Side",
  33610. image: {
  33611. source: "./media/characters/osiris/side.svg",
  33612. extra: 1105/939,
  33613. bottom: 167/1272
  33614. }
  33615. },
  33616. },
  33617. [
  33618. {
  33619. name: "Macro",
  33620. height: math.unit(2100, "feet"),
  33621. default: true
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(6 + 8/12, "feet"),
  33630. weight: math.unit(225, "lb"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/rhys-londe/front.svg",
  33634. extra: 2258/2141,
  33635. bottom: 188/2446
  33636. }
  33637. },
  33638. back: {
  33639. height: math.unit(6 + 8/12, "feet"),
  33640. weight: math.unit(225, "lb"),
  33641. name: "Back",
  33642. image: {
  33643. source: "./media/characters/rhys-londe/back.svg",
  33644. extra: 2237/2137,
  33645. bottom: 63/2300
  33646. }
  33647. },
  33648. frontNsfw: {
  33649. height: math.unit(6 + 8/12, "feet"),
  33650. weight: math.unit(225, "lb"),
  33651. name: "Front (NSFW)",
  33652. image: {
  33653. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33654. extra: 2258/2141,
  33655. bottom: 188/2446
  33656. }
  33657. },
  33658. backNsfw: {
  33659. height: math.unit(6 + 8/12, "feet"),
  33660. weight: math.unit(225, "lb"),
  33661. name: "Back (NSFW)",
  33662. image: {
  33663. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33664. extra: 2237/2137,
  33665. bottom: 63/2300
  33666. }
  33667. },
  33668. dick: {
  33669. height: math.unit(30, "inches"),
  33670. name: "Dick",
  33671. image: {
  33672. source: "./media/characters/rhys-londe/dick.svg"
  33673. }
  33674. },
  33675. maw: {
  33676. height: math.unit(1.6, "feet"),
  33677. name: "Maw",
  33678. image: {
  33679. source: "./media/characters/rhys-londe/maw.svg"
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Normal",
  33686. height: math.unit(6 + 8/12, "feet"),
  33687. default: true
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33693. {
  33694. front: {
  33695. height: math.unit(3 + 10/12, "feet"),
  33696. weight: math.unit(90, "lb"),
  33697. name: "Front",
  33698. image: {
  33699. source: "./media/characters/taivas-ensim/front.svg",
  33700. extra: 1327/1216,
  33701. bottom: 96/1423
  33702. }
  33703. },
  33704. back: {
  33705. height: math.unit(3 + 10/12, "feet"),
  33706. weight: math.unit(90, "lb"),
  33707. name: "Back",
  33708. image: {
  33709. source: "./media/characters/taivas-ensim/back.svg",
  33710. extra: 1355/1247,
  33711. bottom: 11/1366
  33712. }
  33713. },
  33714. frontNsfw: {
  33715. height: math.unit(3 + 10/12, "feet"),
  33716. weight: math.unit(90, "lb"),
  33717. name: "Front (NSFW)",
  33718. image: {
  33719. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33720. extra: 1327/1216,
  33721. bottom: 96/1423
  33722. }
  33723. },
  33724. backNsfw: {
  33725. height: math.unit(3 + 10/12, "feet"),
  33726. weight: math.unit(90, "lb"),
  33727. name: "Back (NSFW)",
  33728. image: {
  33729. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33730. extra: 1355/1247,
  33731. bottom: 11/1366
  33732. }
  33733. },
  33734. },
  33735. [
  33736. {
  33737. name: "Normal",
  33738. height: math.unit(3 + 10/12, "feet"),
  33739. default: true
  33740. },
  33741. ]
  33742. ))
  33743. characterMakers.push(() => makeCharacter(
  33744. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33745. {
  33746. front: {
  33747. height: math.unit(9 + 6/12, "feet"),
  33748. weight: math.unit(940, "lb"),
  33749. name: "Front",
  33750. image: {
  33751. source: "./media/characters/byliss/front.svg",
  33752. extra: 1327/1290,
  33753. bottom: 82/1409
  33754. }
  33755. },
  33756. back: {
  33757. height: math.unit(9 + 6/12, "feet"),
  33758. weight: math.unit(940, "lb"),
  33759. name: "Back",
  33760. image: {
  33761. source: "./media/characters/byliss/back.svg",
  33762. extra: 1376/1349,
  33763. bottom: 9/1385
  33764. }
  33765. },
  33766. frontNsfw: {
  33767. height: math.unit(9 + 6/12, "feet"),
  33768. weight: math.unit(940, "lb"),
  33769. name: "Front (NSFW)",
  33770. image: {
  33771. source: "./media/characters/byliss/front-nsfw.svg",
  33772. extra: 1327/1290,
  33773. bottom: 82/1409
  33774. }
  33775. },
  33776. backNsfw: {
  33777. height: math.unit(9 + 6/12, "feet"),
  33778. weight: math.unit(940, "lb"),
  33779. name: "Back (NSFW)",
  33780. image: {
  33781. source: "./media/characters/byliss/back-nsfw.svg",
  33782. extra: 1376/1349,
  33783. bottom: 9/1385
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Normal",
  33790. height: math.unit(9 + 6/12, "feet"),
  33791. default: true
  33792. },
  33793. ]
  33794. ))
  33795. characterMakers.push(() => makeCharacter(
  33796. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33797. {
  33798. front: {
  33799. height: math.unit(5 + 2/12, "feet"),
  33800. weight: math.unit(200, "lb"),
  33801. name: "Front",
  33802. image: {
  33803. source: "./media/characters/noraly/front.svg",
  33804. extra: 4985/4773,
  33805. bottom: 150/5135
  33806. }
  33807. },
  33808. full: {
  33809. height: math.unit(5 + 2/12, "feet"),
  33810. weight: math.unit(164, "lb"),
  33811. name: "Full",
  33812. image: {
  33813. source: "./media/characters/noraly/full.svg",
  33814. extra: 1114/1059,
  33815. bottom: 35/1149
  33816. }
  33817. },
  33818. fuller: {
  33819. height: math.unit(5 + 2/12, "feet"),
  33820. weight: math.unit(230, "lb"),
  33821. name: "Fuller",
  33822. image: {
  33823. source: "./media/characters/noraly/fuller.svg",
  33824. extra: 1114/1059,
  33825. bottom: 35/1149
  33826. }
  33827. },
  33828. fullest: {
  33829. height: math.unit(5 + 2/12, "feet"),
  33830. weight: math.unit(300, "lb"),
  33831. name: "Fullest",
  33832. image: {
  33833. source: "./media/characters/noraly/fullest.svg",
  33834. extra: 1114/1059,
  33835. bottom: 35/1149
  33836. }
  33837. },
  33838. },
  33839. [
  33840. {
  33841. name: "Normal",
  33842. height: math.unit(5 + 2/12, "feet"),
  33843. default: true
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33849. {
  33850. front: {
  33851. height: math.unit(5 + 2/12, "feet"),
  33852. weight: math.unit(210, "lb"),
  33853. name: "Front",
  33854. image: {
  33855. source: "./media/characters/pera/front.svg",
  33856. extra: 1560/1531,
  33857. bottom: 165/1725
  33858. }
  33859. },
  33860. back: {
  33861. height: math.unit(5 + 2/12, "feet"),
  33862. weight: math.unit(210, "lb"),
  33863. name: "Back",
  33864. image: {
  33865. source: "./media/characters/pera/back.svg",
  33866. extra: 1523/1493,
  33867. bottom: 152/1675
  33868. }
  33869. },
  33870. dick: {
  33871. height: math.unit(2.4, "feet"),
  33872. name: "Dick",
  33873. image: {
  33874. source: "./media/characters/pera/dick.svg"
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(5 + 2/12, "feet"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33888. {
  33889. front: {
  33890. height: math.unit(12, "feet"),
  33891. weight: math.unit(3200, "lb"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/julian/front.svg",
  33895. extra: 2962/2701,
  33896. bottom: 184/3146
  33897. }
  33898. },
  33899. maw: {
  33900. height: math.unit(5.35, "feet"),
  33901. name: "Maw",
  33902. image: {
  33903. source: "./media/characters/julian/maw.svg"
  33904. }
  33905. },
  33906. paw: {
  33907. height: math.unit(3.07, "feet"),
  33908. name: "Paw",
  33909. image: {
  33910. source: "./media/characters/julian/paw.svg"
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Default",
  33917. height: math.unit(12, "feet"),
  33918. default: true
  33919. },
  33920. {
  33921. name: "Big",
  33922. height: math.unit(50, "feet")
  33923. },
  33924. {
  33925. name: "Really Big",
  33926. height: math.unit(1, "mile")
  33927. },
  33928. {
  33929. name: "Extremely Big",
  33930. height: math.unit(100, "miles")
  33931. },
  33932. {
  33933. name: "Planet Hugger",
  33934. height: math.unit(200, "megameters")
  33935. },
  33936. {
  33937. name: "Unreasonably Big",
  33938. height: math.unit(1e300, "meters")
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33944. {
  33945. solgooleo: {
  33946. height: math.unit(4, "meters"),
  33947. weight: math.unit(6000*1.5, "kg"),
  33948. volume: math.unit(6000, "liters"),
  33949. name: "Solgooleo",
  33950. image: {
  33951. source: "./media/characters/pi/solgooleo.svg",
  33952. extra: 388/331,
  33953. bottom: 29/417
  33954. }
  33955. },
  33956. },
  33957. [
  33958. {
  33959. name: "Normal",
  33960. height: math.unit(4, "meters"),
  33961. default: true
  33962. },
  33963. ]
  33964. ))
  33965. characterMakers.push(() => makeCharacter(
  33966. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33967. {
  33968. front: {
  33969. height: math.unit(8, "feet"),
  33970. weight: math.unit(4, "tons"),
  33971. name: "Front",
  33972. image: {
  33973. source: "./media/characters/shaun/front.svg",
  33974. extra: 503/495,
  33975. bottom: 20/523
  33976. }
  33977. },
  33978. back: {
  33979. height: math.unit(8, "feet"),
  33980. weight: math.unit(4, "tons"),
  33981. name: "Back",
  33982. image: {
  33983. source: "./media/characters/shaun/back.svg",
  33984. extra: 487/480,
  33985. bottom: 20/507
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Lorg",
  33992. height: math.unit(8, "feet"),
  33993. default: true
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33999. {
  34000. frontAnthro: {
  34001. height: math.unit(7, "feet"),
  34002. name: "Front",
  34003. image: {
  34004. source: "./media/characters/sini/front-anthro.svg",
  34005. extra: 726/678,
  34006. bottom: 35/761
  34007. },
  34008. form: "anthro",
  34009. default: true
  34010. },
  34011. backAnthro: {
  34012. height: math.unit(7, "feet"),
  34013. name: "Back",
  34014. image: {
  34015. source: "./media/characters/sini/back-anthro.svg",
  34016. extra: 743/701,
  34017. bottom: 12/755
  34018. },
  34019. form: "anthro",
  34020. },
  34021. frontAnthroNsfw: {
  34022. height: math.unit(7, "feet"),
  34023. name: "Front (NSFW)",
  34024. image: {
  34025. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34026. extra: 726/678,
  34027. bottom: 35/761
  34028. },
  34029. form: "anthro"
  34030. },
  34031. backAnthroNsfw: {
  34032. height: math.unit(7, "feet"),
  34033. name: "Back (NSFW)",
  34034. image: {
  34035. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34036. extra: 743/701,
  34037. bottom: 12/755
  34038. },
  34039. form: "anthro",
  34040. },
  34041. mawAnthro: {
  34042. height: math.unit(2.14, "feet"),
  34043. name: "Maw",
  34044. image: {
  34045. source: "./media/characters/sini/maw-anthro.svg"
  34046. },
  34047. form: "anthro"
  34048. },
  34049. dick: {
  34050. height: math.unit(1.45, "feet"),
  34051. name: "Dick",
  34052. image: {
  34053. source: "./media/characters/sini/dick-anthro.svg"
  34054. },
  34055. form: "anthro"
  34056. },
  34057. feral: {
  34058. height: math.unit(16, "feet"),
  34059. name: "Feral",
  34060. image: {
  34061. source: "./media/characters/sini/feral.svg",
  34062. extra: 814/605,
  34063. bottom: 11/825
  34064. },
  34065. form: "feral",
  34066. default: true
  34067. },
  34068. feralNsfw: {
  34069. height: math.unit(16, "feet"),
  34070. name: "Feral (NSFW)",
  34071. image: {
  34072. source: "./media/characters/sini/feral-nsfw.svg",
  34073. extra: 814/605,
  34074. bottom: 11/825
  34075. },
  34076. form: "feral"
  34077. },
  34078. mawFeral: {
  34079. height: math.unit(5.66, "feet"),
  34080. name: "Maw",
  34081. image: {
  34082. source: "./media/characters/sini/maw-feral.svg"
  34083. },
  34084. form: "feral",
  34085. },
  34086. pawFeral: {
  34087. height: math.unit(5.17, "feet"),
  34088. name: "Paw",
  34089. image: {
  34090. source: "./media/characters/sini/paw-feral.svg"
  34091. },
  34092. form: "feral",
  34093. },
  34094. rumpFeral: {
  34095. height: math.unit(13.11, "feet"),
  34096. name: "Rump",
  34097. image: {
  34098. source: "./media/characters/sini/rump-feral.svg"
  34099. },
  34100. form: "feral",
  34101. },
  34102. dickFeral: {
  34103. height: math.unit(1, "feet"),
  34104. name: "Dick",
  34105. image: {
  34106. source: "./media/characters/sini/dick-feral.svg"
  34107. },
  34108. form: "feral",
  34109. },
  34110. eyeFeral: {
  34111. height: math.unit(1.23, "feet"),
  34112. name: "Eye",
  34113. image: {
  34114. source: "./media/characters/sini/eye-feral.svg"
  34115. },
  34116. form: "feral",
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(7, "feet"),
  34123. default: true,
  34124. form: "anthro"
  34125. },
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(16, "feet"),
  34129. default: true,
  34130. form: "feral"
  34131. },
  34132. ],
  34133. {
  34134. "anthro": {
  34135. name: "Anthro",
  34136. default: true
  34137. },
  34138. "feral": {
  34139. name: "Feral",
  34140. }
  34141. }
  34142. ))
  34143. characterMakers.push(() => makeCharacter(
  34144. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34145. {
  34146. side: {
  34147. height: math.unit(47.2, "meters"),
  34148. weight: math.unit(10000, "tons"),
  34149. name: "Side",
  34150. image: {
  34151. source: "./media/characters/raylldo/side.svg",
  34152. extra: 2363/642,
  34153. bottom: 221/2584
  34154. }
  34155. },
  34156. top: {
  34157. height: math.unit(240, "meters"),
  34158. weight: math.unit(10000, "tons"),
  34159. name: "Top",
  34160. image: {
  34161. source: "./media/characters/raylldo/top.svg"
  34162. }
  34163. },
  34164. bottom: {
  34165. height: math.unit(240, "meters"),
  34166. weight: math.unit(10000, "tons"),
  34167. name: "Bottom",
  34168. image: {
  34169. source: "./media/characters/raylldo/bottom.svg"
  34170. }
  34171. },
  34172. head: {
  34173. height: math.unit(38.6, "meters"),
  34174. name: "Head",
  34175. image: {
  34176. source: "./media/characters/raylldo/head.svg",
  34177. extra: 1335/1112,
  34178. bottom: 0/1335
  34179. }
  34180. },
  34181. maw: {
  34182. height: math.unit(16.37, "meters"),
  34183. name: "Maw",
  34184. image: {
  34185. source: "./media/characters/raylldo/maw.svg",
  34186. extra: 883/660,
  34187. bottom: 0/883
  34188. },
  34189. extraAttributes: {
  34190. preyCapacity: {
  34191. name: "Capacity",
  34192. power: 3,
  34193. type: "volume",
  34194. base: math.unit(1000, "people")
  34195. },
  34196. tongueSize: {
  34197. name: "Tongue Size",
  34198. power: 2,
  34199. type: "area",
  34200. base: math.unit(21, "m^2")
  34201. }
  34202. }
  34203. },
  34204. forepaw: {
  34205. height: math.unit(18, "meters"),
  34206. name: "Forepaw",
  34207. image: {
  34208. source: "./media/characters/raylldo/forepaw.svg"
  34209. }
  34210. },
  34211. hindpaw: {
  34212. height: math.unit(23, "meters"),
  34213. name: "Hindpaw",
  34214. image: {
  34215. source: "./media/characters/raylldo/hindpaw.svg"
  34216. }
  34217. },
  34218. genitals: {
  34219. height: math.unit(42, "meters"),
  34220. name: "Genitals",
  34221. image: {
  34222. source: "./media/characters/raylldo/genitals.svg"
  34223. }
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(47.2, "meters"),
  34230. default: true
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34236. {
  34237. anthroFront: {
  34238. height: math.unit(9, "feet"),
  34239. weight: math.unit(600, "lb"),
  34240. name: "Anthro (Front)",
  34241. image: {
  34242. source: "./media/characters/glint/anthro-front.svg",
  34243. extra: 1097/1018,
  34244. bottom: 28/1125
  34245. }
  34246. },
  34247. anthroBack: {
  34248. height: math.unit(9, "feet"),
  34249. weight: math.unit(600, "lb"),
  34250. name: "Anthro (Back)",
  34251. image: {
  34252. source: "./media/characters/glint/anthro-back.svg",
  34253. extra: 1154/997,
  34254. bottom: 36/1190
  34255. }
  34256. },
  34257. feral: {
  34258. height: math.unit(11, "feet"),
  34259. weight: math.unit(50000, "lb"),
  34260. name: "Feral",
  34261. image: {
  34262. source: "./media/characters/glint/feral.svg",
  34263. extra: 3035/1585,
  34264. bottom: 1169/4204
  34265. }
  34266. },
  34267. dickAnthro: {
  34268. height: math.unit(0.7, "meters"),
  34269. name: "Dick (Anthro)",
  34270. image: {
  34271. source: "./media/characters/glint/dick-anthro.svg"
  34272. }
  34273. },
  34274. dickFeral: {
  34275. height: math.unit(2.65, "meters"),
  34276. name: "Dick (Feral)",
  34277. image: {
  34278. source: "./media/characters/glint/dick-feral.svg"
  34279. }
  34280. },
  34281. slitHidden: {
  34282. height: math.unit(5.85, "meters"),
  34283. name: "Slit (Hidden)",
  34284. image: {
  34285. source: "./media/characters/glint/slit-hidden.svg"
  34286. }
  34287. },
  34288. slitErect: {
  34289. height: math.unit(5.85, "meters"),
  34290. name: "Slit (Erect)",
  34291. image: {
  34292. source: "./media/characters/glint/slit-erect.svg"
  34293. }
  34294. },
  34295. mawAnthro: {
  34296. height: math.unit(0.63, "meters"),
  34297. name: "Maw (Anthro)",
  34298. image: {
  34299. source: "./media/characters/glint/maw.svg"
  34300. }
  34301. },
  34302. mawFeral: {
  34303. height: math.unit(2.89, "meters"),
  34304. name: "Maw (Feral)",
  34305. image: {
  34306. source: "./media/characters/glint/maw.svg"
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Normal",
  34313. height: math.unit(9, "feet"),
  34314. default: true
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34320. {
  34321. side: {
  34322. height: math.unit(15, "feet"),
  34323. weight: math.unit(5000, "kg"),
  34324. name: "Side",
  34325. image: {
  34326. source: "./media/characters/kairne/side.svg",
  34327. extra: 979/811,
  34328. bottom: 13/992
  34329. }
  34330. },
  34331. front: {
  34332. height: math.unit(15, "feet"),
  34333. weight: math.unit(5000, "kg"),
  34334. name: "Front",
  34335. image: {
  34336. source: "./media/characters/kairne/front.svg",
  34337. extra: 908/814,
  34338. bottom: 26/934
  34339. }
  34340. },
  34341. sideNsfw: {
  34342. height: math.unit(15, "feet"),
  34343. weight: math.unit(5000, "kg"),
  34344. name: "Side (NSFW)",
  34345. image: {
  34346. source: "./media/characters/kairne/side-nsfw.svg",
  34347. extra: 979/811,
  34348. bottom: 13/992
  34349. }
  34350. },
  34351. frontNsfw: {
  34352. height: math.unit(15, "feet"),
  34353. weight: math.unit(5000, "kg"),
  34354. name: "Front (NSFW)",
  34355. image: {
  34356. source: "./media/characters/kairne/front-nsfw.svg",
  34357. extra: 908/814,
  34358. bottom: 26/934
  34359. }
  34360. },
  34361. dickCaged: {
  34362. height: math.unit(0.65, "meters"),
  34363. name: "Dick-caged",
  34364. image: {
  34365. source: "./media/characters/kairne/dick-caged.svg"
  34366. }
  34367. },
  34368. dick: {
  34369. height: math.unit(0.79, "meters"),
  34370. name: "Dick",
  34371. image: {
  34372. source: "./media/characters/kairne/dick.svg"
  34373. }
  34374. },
  34375. genitals: {
  34376. height: math.unit(1.29, "meters"),
  34377. name: "Genitals",
  34378. image: {
  34379. source: "./media/characters/kairne/genitals.svg"
  34380. }
  34381. },
  34382. maw: {
  34383. height: math.unit(1.73, "meters"),
  34384. name: "Maw",
  34385. image: {
  34386. source: "./media/characters/kairne/maw.svg"
  34387. }
  34388. },
  34389. },
  34390. [
  34391. {
  34392. name: "Normal",
  34393. height: math.unit(15, "feet"),
  34394. default: true
  34395. },
  34396. ]
  34397. ))
  34398. characterMakers.push(() => makeCharacter(
  34399. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34400. {
  34401. front: {
  34402. height: math.unit(5 + 8/12, "feet"),
  34403. weight: math.unit(139, "lb"),
  34404. name: "Front",
  34405. image: {
  34406. source: "./media/characters/biscuit-jackal/front.svg",
  34407. extra: 2106/1961,
  34408. bottom: 58/2164
  34409. }
  34410. },
  34411. back: {
  34412. height: math.unit(5 + 8/12, "feet"),
  34413. weight: math.unit(139, "lb"),
  34414. name: "Back",
  34415. image: {
  34416. source: "./media/characters/biscuit-jackal/back.svg",
  34417. extra: 2132/1976,
  34418. bottom: 57/2189
  34419. }
  34420. },
  34421. werejackal: {
  34422. height: math.unit(6 + 3/12, "feet"),
  34423. weight: math.unit(188, "lb"),
  34424. name: "Werejackal",
  34425. image: {
  34426. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34427. extra: 2373/2178,
  34428. bottom: 53/2426
  34429. }
  34430. },
  34431. },
  34432. [
  34433. {
  34434. name: "Normal",
  34435. height: math.unit(5 + 8/12, "feet"),
  34436. default: true
  34437. },
  34438. ]
  34439. ))
  34440. characterMakers.push(() => makeCharacter(
  34441. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34442. {
  34443. front: {
  34444. height: math.unit(140, "cm"),
  34445. weight: math.unit(45, "kg"),
  34446. name: "Front",
  34447. image: {
  34448. source: "./media/characters/tayra-white/front.svg",
  34449. extra: 2229/2192,
  34450. bottom: 75/2304
  34451. }
  34452. },
  34453. },
  34454. [
  34455. {
  34456. name: "Normal",
  34457. height: math.unit(140, "cm"),
  34458. default: true
  34459. },
  34460. ]
  34461. ))
  34462. characterMakers.push(() => makeCharacter(
  34463. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34464. {
  34465. front: {
  34466. height: math.unit(4 + 5/12, "feet"),
  34467. name: "Front",
  34468. image: {
  34469. source: "./media/characters/scoop/front.svg",
  34470. extra: 1257/1136,
  34471. bottom: 69/1326
  34472. }
  34473. },
  34474. back: {
  34475. height: math.unit(4 + 5/12, "feet"),
  34476. name: "Back",
  34477. image: {
  34478. source: "./media/characters/scoop/back.svg",
  34479. extra: 1321/1152,
  34480. bottom: 32/1353
  34481. }
  34482. },
  34483. maw: {
  34484. height: math.unit(0.68, "feet"),
  34485. name: "Maw",
  34486. image: {
  34487. source: "./media/characters/scoop/maw.svg"
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Really Small",
  34494. height: math.unit(1, "mm")
  34495. },
  34496. {
  34497. name: "Micro",
  34498. height: math.unit(1, "inch")
  34499. },
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(4 + 5/12, "feet"),
  34503. default: true
  34504. },
  34505. {
  34506. name: "Macro",
  34507. height: math.unit(200, "feet")
  34508. },
  34509. {
  34510. name: "Megamacro",
  34511. height: math.unit(3240, "feet")
  34512. },
  34513. {
  34514. name: "Teramacro",
  34515. height: math.unit(2500, "miles")
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(15 + 7/12, "feet"),
  34524. weight: math.unit(1150, "tons"),
  34525. name: "Front",
  34526. image: {
  34527. source: "./media/characters/saphinara/front.svg",
  34528. extra: 1837/1643,
  34529. bottom: 84/1921
  34530. },
  34531. form: "normal",
  34532. default: true
  34533. },
  34534. side: {
  34535. height: math.unit(15 + 7/12, "feet"),
  34536. weight: math.unit(1150, "tons"),
  34537. name: "Side",
  34538. image: {
  34539. source: "./media/characters/saphinara/side.svg",
  34540. extra: 605/547,
  34541. bottom: 6/611
  34542. },
  34543. form: "normal"
  34544. },
  34545. back: {
  34546. height: math.unit(15 + 7/12, "feet"),
  34547. weight: math.unit(1150, "tons"),
  34548. name: "Back",
  34549. image: {
  34550. source: "./media/characters/saphinara/back.svg",
  34551. extra: 591/531,
  34552. bottom: 13/604
  34553. },
  34554. form: "normal"
  34555. },
  34556. frontTail: {
  34557. height: math.unit(15 + 7/12, "feet"),
  34558. weight: math.unit(1150, "tons"),
  34559. name: "Front (Full Tail)",
  34560. image: {
  34561. source: "./media/characters/saphinara/front-tail.svg",
  34562. extra: 2256/1630,
  34563. bottom: 261/2517
  34564. },
  34565. form: "normal"
  34566. },
  34567. insides: {
  34568. height: math.unit(11.92, "feet"),
  34569. name: "Insides",
  34570. image: {
  34571. source: "./media/characters/saphinara/insides.svg"
  34572. },
  34573. form: "normal"
  34574. },
  34575. head: {
  34576. height: math.unit(4.17, "feet"),
  34577. name: "Head",
  34578. image: {
  34579. source: "./media/characters/saphinara/head.svg"
  34580. },
  34581. form: "normal"
  34582. },
  34583. tongue: {
  34584. height: math.unit(4.60, "feet"),
  34585. name: "Tongue",
  34586. image: {
  34587. source: "./media/characters/saphinara/tongue.svg"
  34588. },
  34589. form: "normal"
  34590. },
  34591. headEnraged: {
  34592. height: math.unit(5.55, "feet"),
  34593. name: "Head (Enraged)",
  34594. image: {
  34595. source: "./media/characters/saphinara/head-enraged.svg"
  34596. },
  34597. form: "normal"
  34598. },
  34599. wings: {
  34600. height: math.unit(11.95, "feet"),
  34601. name: "Wings",
  34602. image: {
  34603. source: "./media/characters/saphinara/wings.svg"
  34604. },
  34605. form: "normal"
  34606. },
  34607. feathers: {
  34608. height: math.unit(8.92, "feet"),
  34609. name: "Feathers",
  34610. image: {
  34611. source: "./media/characters/saphinara/feathers.svg"
  34612. },
  34613. form: "normal"
  34614. },
  34615. shackles: {
  34616. height: math.unit(2, "feet"),
  34617. name: "Shackles",
  34618. image: {
  34619. source: "./media/characters/saphinara/shackles.svg"
  34620. },
  34621. form: "normal"
  34622. },
  34623. eyes: {
  34624. height: math.unit(1.331, "feet"),
  34625. name: "Eyes",
  34626. image: {
  34627. source: "./media/characters/saphinara/eyes.svg"
  34628. },
  34629. form: "normal"
  34630. },
  34631. eyesEnraged: {
  34632. height: math.unit(1.331, "feet"),
  34633. name: "Eyes (Enraged)",
  34634. image: {
  34635. source: "./media/characters/saphinara/eyes-enraged.svg"
  34636. },
  34637. form: "normal"
  34638. },
  34639. trueFormSide: {
  34640. height: math.unit(200, "feet"),
  34641. weight: math.unit(1e7, "tons"),
  34642. name: "Side",
  34643. image: {
  34644. source: "./media/characters/saphinara/true-form-side.svg",
  34645. extra: 1399/770,
  34646. bottom: 97/1496
  34647. },
  34648. form: "true-form",
  34649. default: true
  34650. },
  34651. trueFormMaw: {
  34652. height: math.unit(71.5, "feet"),
  34653. name: "Maw",
  34654. image: {
  34655. source: "./media/characters/saphinara/true-form-maw.svg",
  34656. extra: 2302/1453,
  34657. bottom: 0/2302
  34658. },
  34659. form: "true-form"
  34660. },
  34661. meowberusSide: {
  34662. height: math.unit(75, "feet"),
  34663. weight: math.unit(180000, "kg"),
  34664. preyCapacity: math.unit(50000, "people"),
  34665. name: "Side",
  34666. image: {
  34667. source: "./media/characters/saphinara/meowberus-side.svg",
  34668. extra: 1400/711,
  34669. bottom: 126/1526
  34670. },
  34671. form: "meowberus",
  34672. extraAttributes: {
  34673. "pawArea": {
  34674. name: "Paw Size",
  34675. power: 2,
  34676. type: "area",
  34677. base: math.unit(35, "m^2")
  34678. }
  34679. }
  34680. },
  34681. },
  34682. [
  34683. {
  34684. name: "Normal",
  34685. height: math.unit(15 + 7/12, "feet"),
  34686. default: true,
  34687. form: "normal"
  34688. },
  34689. {
  34690. name: "Angry",
  34691. height: math.unit(30 + 6/12, "feet"),
  34692. form: "normal"
  34693. },
  34694. {
  34695. name: "Enraged",
  34696. height: math.unit(102 + 1/12, "feet"),
  34697. form: "normal"
  34698. },
  34699. {
  34700. name: "True",
  34701. height: math.unit(200, "feet"),
  34702. default: true,
  34703. form: "true-form"
  34704. },
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(75, "feet"),
  34708. default: true,
  34709. form: "meowberus"
  34710. },
  34711. ],
  34712. {
  34713. "normal": {
  34714. name: "Normal",
  34715. default: true
  34716. },
  34717. "true-form": {
  34718. name: "True Form"
  34719. },
  34720. "meowberus": {
  34721. name: "Meowberus",
  34722. },
  34723. }
  34724. ))
  34725. characterMakers.push(() => makeCharacter(
  34726. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34727. {
  34728. front: {
  34729. height: math.unit(6 + 8/12, "feet"),
  34730. weight: math.unit(300, "lb"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/jrain/front.svg",
  34734. extra: 3039/2865,
  34735. bottom: 399/3438
  34736. }
  34737. },
  34738. back: {
  34739. height: math.unit(6 + 8/12, "feet"),
  34740. weight: math.unit(300, "lb"),
  34741. name: "Back",
  34742. image: {
  34743. source: "./media/characters/jrain/back.svg",
  34744. extra: 3089/2938,
  34745. bottom: 172/3261
  34746. }
  34747. },
  34748. head: {
  34749. height: math.unit(2.14, "feet"),
  34750. name: "Head",
  34751. image: {
  34752. source: "./media/characters/jrain/head.svg"
  34753. }
  34754. },
  34755. maw: {
  34756. height: math.unit(1.77, "feet"),
  34757. name: "Maw",
  34758. image: {
  34759. source: "./media/characters/jrain/maw.svg"
  34760. }
  34761. },
  34762. leftHand: {
  34763. height: math.unit(1.1, "feet"),
  34764. name: "Left Hand",
  34765. image: {
  34766. source: "./media/characters/jrain/left-hand.svg"
  34767. }
  34768. },
  34769. rightHand: {
  34770. height: math.unit(1.1, "feet"),
  34771. name: "Right Hand",
  34772. image: {
  34773. source: "./media/characters/jrain/right-hand.svg"
  34774. }
  34775. },
  34776. eye: {
  34777. height: math.unit(0.35, "feet"),
  34778. name: "Eye",
  34779. image: {
  34780. source: "./media/characters/jrain/eye.svg"
  34781. }
  34782. },
  34783. },
  34784. [
  34785. {
  34786. name: "Normal",
  34787. height: math.unit(6 + 8/12, "feet"),
  34788. default: true
  34789. },
  34790. {
  34791. name: "Casually Large",
  34792. height: math.unit(25, "feet")
  34793. },
  34794. {
  34795. name: "Giant",
  34796. height: math.unit(100, "feet")
  34797. },
  34798. {
  34799. name: "Kaiju",
  34800. height: math.unit(300, "feet")
  34801. },
  34802. ]
  34803. ))
  34804. characterMakers.push(() => makeCharacter(
  34805. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34806. {
  34807. dragon: {
  34808. height: math.unit(5, "meters"),
  34809. name: "Dragon",
  34810. image: {
  34811. source: "./media/characters/sabrina/dragon.svg",
  34812. extra: 3670 / 2365,
  34813. bottom: 333 / 4003
  34814. }
  34815. },
  34816. gryphon: {
  34817. height: math.unit(3, "meters"),
  34818. name: "Gryphon",
  34819. image: {
  34820. source: "./media/characters/sabrina/gryphon.svg",
  34821. extra: 1576 / 945,
  34822. bottom: 71 / 1647
  34823. }
  34824. },
  34825. snake: {
  34826. height: math.unit(12, "meters"),
  34827. name: "Snake",
  34828. image: {
  34829. source: "./media/characters/sabrina/snake.svg",
  34830. extra: 1758 / 1320,
  34831. bottom: 186 / 1944
  34832. }
  34833. },
  34834. collar: {
  34835. height: math.unit(1.86, "meters"),
  34836. name: "Collar",
  34837. image: {
  34838. source: "./media/characters/sabrina/collar.svg"
  34839. }
  34840. },
  34841. eye: {
  34842. height: math.unit(0.53, "meters"),
  34843. name: "Eye",
  34844. image: {
  34845. source: "./media/characters/sabrina/eye.svg"
  34846. }
  34847. },
  34848. foot: {
  34849. height: math.unit(1.86, "meters"),
  34850. name: "Foot",
  34851. image: {
  34852. source: "./media/characters/sabrina/foot.svg"
  34853. }
  34854. },
  34855. hand: {
  34856. height: math.unit(1.32, "meters"),
  34857. name: "Hand",
  34858. image: {
  34859. source: "./media/characters/sabrina/hand.svg"
  34860. }
  34861. },
  34862. head: {
  34863. height: math.unit(2.44, "meters"),
  34864. name: "Head",
  34865. image: {
  34866. source: "./media/characters/sabrina/head.svg"
  34867. }
  34868. },
  34869. headAngry: {
  34870. height: math.unit(2.44, "meters"),
  34871. name: "Head (Angry))",
  34872. image: {
  34873. source: "./media/characters/sabrina/head-angry.svg"
  34874. }
  34875. },
  34876. maw: {
  34877. height: math.unit(1.65, "meters"),
  34878. name: "Maw",
  34879. image: {
  34880. source: "./media/characters/sabrina/maw.svg"
  34881. }
  34882. },
  34883. spikes: {
  34884. height: math.unit(1.69, "meters"),
  34885. name: "Spikes",
  34886. image: {
  34887. source: "./media/characters/sabrina/spikes.svg"
  34888. }
  34889. },
  34890. stomach: {
  34891. height: math.unit(1.15, "meters"),
  34892. name: "Stomach",
  34893. image: {
  34894. source: "./media/characters/sabrina/stomach.svg"
  34895. }
  34896. },
  34897. tongue: {
  34898. height: math.unit(1.27, "meters"),
  34899. name: "Tongue",
  34900. image: {
  34901. source: "./media/characters/sabrina/tongue.svg"
  34902. }
  34903. },
  34904. wingDorsal: {
  34905. height: math.unit(4.85, "meters"),
  34906. name: "Wing (Dorsal)",
  34907. image: {
  34908. source: "./media/characters/sabrina/wing-dorsal.svg"
  34909. }
  34910. },
  34911. wingVentral: {
  34912. height: math.unit(4.85, "meters"),
  34913. name: "Wing (Ventral)",
  34914. image: {
  34915. source: "./media/characters/sabrina/wing-ventral.svg"
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(5, "meters"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34929. {
  34930. frontMaid: {
  34931. height: math.unit(5 + 5/12, "feet"),
  34932. weight: math.unit(130, "lb"),
  34933. name: "Front (Maid)",
  34934. image: {
  34935. source: "./media/characters/midnight-tales/front-maid.svg",
  34936. extra: 489/454,
  34937. bottom: 61/550
  34938. }
  34939. },
  34940. frontFormal: {
  34941. height: math.unit(5 + 5/12, "feet"),
  34942. weight: math.unit(130, "lb"),
  34943. name: "Front (Formal)",
  34944. image: {
  34945. source: "./media/characters/midnight-tales/front-formal.svg",
  34946. extra: 489/454,
  34947. bottom: 61/550
  34948. }
  34949. },
  34950. back: {
  34951. height: math.unit(5 + 5/12, "feet"),
  34952. weight: math.unit(130, "lb"),
  34953. name: "Back",
  34954. image: {
  34955. source: "./media/characters/midnight-tales/back.svg",
  34956. extra: 498/456,
  34957. bottom: 33/531
  34958. }
  34959. },
  34960. frontBeast: {
  34961. height: math.unit(40, "feet"),
  34962. weight: math.unit(64000, "lb"),
  34963. name: "Front (Beast)",
  34964. image: {
  34965. source: "./media/characters/midnight-tales/front-beast.svg",
  34966. extra: 927/860,
  34967. bottom: 53/980
  34968. }
  34969. },
  34970. backBeast: {
  34971. height: math.unit(40, "feet"),
  34972. weight: math.unit(64000, "lb"),
  34973. name: "Back (Beast)",
  34974. image: {
  34975. source: "./media/characters/midnight-tales/back-beast.svg",
  34976. extra: 929/855,
  34977. bottom: 16/945
  34978. }
  34979. },
  34980. footBeast: {
  34981. height: math.unit(6.7, "feet"),
  34982. name: "Foot (Beast)",
  34983. image: {
  34984. source: "./media/characters/midnight-tales/foot-beast.svg"
  34985. }
  34986. },
  34987. headBeast: {
  34988. height: math.unit(8, "feet"),
  34989. name: "Head (Beast)",
  34990. image: {
  34991. source: "./media/characters/midnight-tales/head-beast.svg"
  34992. }
  34993. },
  34994. },
  34995. [
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(5 + 5 / 12, "feet"),
  34999. default: true
  35000. },
  35001. {
  35002. name: "Macro",
  35003. height: math.unit(25, "feet")
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(5 + 10/12, "feet"),
  35012. name: "Front",
  35013. image: {
  35014. source: "./media/characters/argon/front.svg",
  35015. extra: 2009/1935,
  35016. bottom: 118/2127
  35017. }
  35018. },
  35019. back: {
  35020. height: math.unit(5 + 10/12, "feet"),
  35021. name: "Back",
  35022. image: {
  35023. source: "./media/characters/argon/back.svg",
  35024. extra: 2047/1992,
  35025. bottom: 20/2067
  35026. }
  35027. },
  35028. frontDressed: {
  35029. height: math.unit(5 + 10/12, "feet"),
  35030. name: "Front (Dressed)",
  35031. image: {
  35032. source: "./media/characters/argon/front-dressed.svg",
  35033. extra: 2009/1935,
  35034. bottom: 118/2127
  35035. }
  35036. },
  35037. },
  35038. [
  35039. {
  35040. name: "Normal",
  35041. height: math.unit(5 + 10/12, "feet"),
  35042. default: true
  35043. },
  35044. ]
  35045. ))
  35046. characterMakers.push(() => makeCharacter(
  35047. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35048. {
  35049. front: {
  35050. height: math.unit(8 + 6/12, "feet"),
  35051. weight: math.unit(1150, "lb"),
  35052. name: "Front",
  35053. image: {
  35054. source: "./media/characters/kichi/front.svg",
  35055. extra: 1267/1164,
  35056. bottom: 61/1328
  35057. }
  35058. },
  35059. back: {
  35060. height: math.unit(8 + 6/12, "feet"),
  35061. weight: math.unit(1150, "lb"),
  35062. name: "Back",
  35063. image: {
  35064. source: "./media/characters/kichi/back.svg",
  35065. extra: 1273/1166,
  35066. bottom: 33/1306
  35067. }
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(8 + 6/12, "feet"),
  35074. default: true
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(6, "feet"),
  35083. weight: math.unit(210, "lb"),
  35084. name: "Front",
  35085. image: {
  35086. source: "./media/characters/manetel-greyscale/front.svg",
  35087. extra: 350/312,
  35088. bottom: 8/358
  35089. }
  35090. },
  35091. },
  35092. [
  35093. {
  35094. name: "Micro",
  35095. height: math.unit(2, "inches")
  35096. },
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(6, "feet"),
  35100. default: true
  35101. },
  35102. {
  35103. name: "Minimacro",
  35104. height: math.unit(17, "feet")
  35105. },
  35106. {
  35107. name: "Macro",
  35108. height: math.unit(117, "feet")
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35114. {
  35115. side: {
  35116. height: math.unit(5 + 1/12, "feet"),
  35117. weight: math.unit(418, "lb"),
  35118. name: "Side",
  35119. image: {
  35120. source: "./media/characters/softpurr/side.svg",
  35121. extra: 1993/1945,
  35122. bottom: 134/2127
  35123. }
  35124. },
  35125. front: {
  35126. height: math.unit(5 + 1/12, "feet"),
  35127. weight: math.unit(418, "lb"),
  35128. name: "Front",
  35129. image: {
  35130. source: "./media/characters/softpurr/front.svg",
  35131. extra: 1950/1856,
  35132. bottom: 174/2124
  35133. }
  35134. },
  35135. paw: {
  35136. height: math.unit(1, "feet"),
  35137. name: "Paw",
  35138. image: {
  35139. source: "./media/characters/softpurr/paw.svg"
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(5 + 1/12, "feet"),
  35147. default: true
  35148. },
  35149. ]
  35150. ))
  35151. characterMakers.push(() => makeCharacter(
  35152. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35153. {
  35154. front: {
  35155. height: math.unit(260, "meters"),
  35156. name: "Front",
  35157. image: {
  35158. source: "./media/characters/anahita/front.svg",
  35159. extra: 665/635,
  35160. bottom: 89/754
  35161. }
  35162. },
  35163. },
  35164. [
  35165. {
  35166. name: "Macro",
  35167. height: math.unit(260, "meters"),
  35168. default: true
  35169. },
  35170. ]
  35171. ))
  35172. characterMakers.push(() => makeCharacter(
  35173. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35174. {
  35175. front: {
  35176. height: math.unit(4 + 10/12, "feet"),
  35177. weight: math.unit(160, "lb"),
  35178. name: "Front",
  35179. image: {
  35180. source: "./media/characters/chip-mouse/front.svg",
  35181. extra: 3528/3408,
  35182. bottom: 0/3528
  35183. }
  35184. },
  35185. frontNsfw: {
  35186. height: math.unit(4 + 10/12, "feet"),
  35187. weight: math.unit(160, "lb"),
  35188. name: "Front (NSFW)",
  35189. image: {
  35190. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35191. extra: 3528/3408,
  35192. bottom: 0/3528
  35193. }
  35194. },
  35195. },
  35196. [
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(4 + 10/12, "feet"),
  35200. default: true
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35206. {
  35207. side: {
  35208. height: math.unit(10, "feet"),
  35209. weight: math.unit(14000, "lb"),
  35210. name: "Side",
  35211. image: {
  35212. source: "./media/characters/kremm/side.svg",
  35213. extra: 1390/1053,
  35214. bottom: 90/1480
  35215. }
  35216. },
  35217. gut: {
  35218. height: math.unit(5.8, "feet"),
  35219. name: "Gut",
  35220. image: {
  35221. source: "./media/characters/kremm/gut.svg"
  35222. }
  35223. },
  35224. ass: {
  35225. height: math.unit(6.1, "feet"),
  35226. name: "Ass",
  35227. image: {
  35228. source: "./media/characters/kremm/ass.svg"
  35229. }
  35230. },
  35231. jaws: {
  35232. height: math.unit(2.2, "feet"),
  35233. name: "Jaws",
  35234. image: {
  35235. source: "./media/characters/kremm/jaws.svg"
  35236. }
  35237. },
  35238. dick: {
  35239. height: math.unit(4.26, "feet"),
  35240. name: "Dick",
  35241. image: {
  35242. source: "./media/characters/kremm/dick.svg"
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(10, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(30, "stories"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/kai/front.svg",
  35262. extra: 1892/1718,
  35263. bottom: 162/2054
  35264. }
  35265. },
  35266. },
  35267. [
  35268. {
  35269. name: "Macro",
  35270. height: math.unit(30, "stories"),
  35271. default: true
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35277. {
  35278. front: {
  35279. height: math.unit(6 + 4/12, "feet"),
  35280. weight: math.unit(145, "lb"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/sykes/front.svg",
  35284. extra: 1321 / 1187,
  35285. bottom: 66 / 1387
  35286. }
  35287. },
  35288. back: {
  35289. height: math.unit(6 + 4/12, "feet"),
  35290. weight: math.unit(145, "lb"),
  35291. name: "Back",
  35292. image: {
  35293. source: "./media/characters/sykes/back.svg",
  35294. extra: 1326/1181,
  35295. bottom: 31/1357
  35296. }
  35297. },
  35298. traditionalOutfit: {
  35299. height: math.unit(6 + 4/12, "feet"),
  35300. weight: math.unit(145, "lb"),
  35301. name: "Traditional Outfit",
  35302. image: {
  35303. source: "./media/characters/sykes/traditional-outfit.svg",
  35304. extra: 1321 / 1187,
  35305. bottom: 66 / 1387
  35306. }
  35307. },
  35308. adventureOutfit: {
  35309. height: math.unit(6 + 4/12, "feet"),
  35310. weight: math.unit(145, "lb"),
  35311. name: "Adventure Outfit",
  35312. image: {
  35313. source: "./media/characters/sykes/adventure-outfit.svg",
  35314. extra: 1321 / 1187,
  35315. bottom: 66 / 1387
  35316. }
  35317. },
  35318. handLeft: {
  35319. height: math.unit(0.9, "feet"),
  35320. name: "Hand (Left)",
  35321. image: {
  35322. source: "./media/characters/sykes/hand-left.svg"
  35323. }
  35324. },
  35325. handRight: {
  35326. height: math.unit(0.839, "feet"),
  35327. name: "Hand (Right)",
  35328. image: {
  35329. source: "./media/characters/sykes/hand-right.svg"
  35330. }
  35331. },
  35332. leftFoot: {
  35333. height: math.unit(1.2, "feet"),
  35334. name: "Foot (Left)",
  35335. image: {
  35336. source: "./media/characters/sykes/foot-left.svg"
  35337. }
  35338. },
  35339. rightFoot: {
  35340. height: math.unit(1.2, "feet"),
  35341. name: "Foot (Right)",
  35342. image: {
  35343. source: "./media/characters/sykes/foot-right.svg"
  35344. }
  35345. },
  35346. maw: {
  35347. height: math.unit(1.93, "feet"),
  35348. name: "Maw",
  35349. image: {
  35350. source: "./media/characters/sykes/maw.svg"
  35351. }
  35352. },
  35353. teeth: {
  35354. height: math.unit(0.51, "feet"),
  35355. name: "Teeth",
  35356. image: {
  35357. source: "./media/characters/sykes/teeth.svg"
  35358. }
  35359. },
  35360. tongue: {
  35361. height: math.unit(2.13, "feet"),
  35362. name: "Tongue",
  35363. image: {
  35364. source: "./media/characters/sykes/tongue.svg"
  35365. }
  35366. },
  35367. uvula: {
  35368. height: math.unit(0.16, "feet"),
  35369. name: "Uvula",
  35370. image: {
  35371. source: "./media/characters/sykes/uvula.svg"
  35372. }
  35373. },
  35374. collar: {
  35375. height: math.unit(0.287, "feet"),
  35376. name: "Collar",
  35377. image: {
  35378. source: "./media/characters/sykes/collar.svg"
  35379. }
  35380. },
  35381. tail: {
  35382. height: math.unit(3.8, "feet"),
  35383. name: "Tail",
  35384. image: {
  35385. source: "./media/characters/sykes/tail.svg"
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Shrunken",
  35392. height: math.unit(5, "inches")
  35393. },
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(6 + 4 / 12, "feet"),
  35397. default: true
  35398. },
  35399. {
  35400. name: "Big",
  35401. height: math.unit(15, "feet")
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(5 + 8/12, "feet"),
  35410. weight: math.unit(190, "lb"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/oven-otter/front.svg",
  35414. extra: 1809/1740,
  35415. bottom: 181/1990
  35416. }
  35417. },
  35418. back: {
  35419. height: math.unit(5 + 8/12, "feet"),
  35420. weight: math.unit(190, "lb"),
  35421. name: "Back",
  35422. image: {
  35423. source: "./media/characters/oven-otter/back.svg",
  35424. extra: 1709/1635,
  35425. bottom: 118/1827
  35426. }
  35427. },
  35428. hand: {
  35429. height: math.unit(1.07, "feet"),
  35430. name: "Hand",
  35431. image: {
  35432. source: "./media/characters/oven-otter/hand.svg"
  35433. }
  35434. },
  35435. beans: {
  35436. height: math.unit(1.74, "feet"),
  35437. name: "Beans",
  35438. image: {
  35439. source: "./media/characters/oven-otter/beans.svg"
  35440. }
  35441. },
  35442. },
  35443. [
  35444. {
  35445. name: "Micro",
  35446. height: math.unit(0.5, "inches")
  35447. },
  35448. {
  35449. name: "Normal",
  35450. height: math.unit(5 + 8/12, "feet"),
  35451. default: true
  35452. },
  35453. {
  35454. name: "Macro",
  35455. height: math.unit(250, "feet")
  35456. },
  35457. {
  35458. name: "Really High",
  35459. height: math.unit(420, "feet")
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35465. {
  35466. front: {
  35467. height: math.unit(5, "meters"),
  35468. weight: math.unit(292000000000000, "kg"),
  35469. name: "Front",
  35470. image: {
  35471. source: "./media/characters/devourer/front.svg",
  35472. extra: 1800/1733,
  35473. bottom: 211/2011
  35474. }
  35475. },
  35476. maw: {
  35477. height: math.unit(1.1, "meter"),
  35478. name: "Maw",
  35479. image: {
  35480. source: "./media/characters/devourer/maw.svg"
  35481. }
  35482. },
  35483. },
  35484. [
  35485. {
  35486. name: "Small",
  35487. height: math.unit(3, "meters")
  35488. },
  35489. {
  35490. name: "Large",
  35491. height: math.unit(5, "meters"),
  35492. default: true
  35493. },
  35494. ]
  35495. ))
  35496. characterMakers.push(() => makeCharacter(
  35497. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35498. {
  35499. front: {
  35500. height: math.unit(6, "feet"),
  35501. weight: math.unit(400, "lb"),
  35502. name: "Front",
  35503. image: {
  35504. source: "./media/characters/ellarby/front.svg",
  35505. extra: 1909/1763,
  35506. bottom: 80/1989
  35507. }
  35508. },
  35509. back: {
  35510. height: math.unit(6, "feet"),
  35511. weight: math.unit(400, "lb"),
  35512. name: "Back",
  35513. image: {
  35514. source: "./media/characters/ellarby/back.svg",
  35515. extra: 1914/1784,
  35516. bottom: 172/2086
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Mischief",
  35523. height: math.unit(18, "inches")
  35524. },
  35525. {
  35526. name: "Trouble",
  35527. height: math.unit(12, "feet")
  35528. },
  35529. {
  35530. name: "Havoc",
  35531. height: math.unit(200, "feet"),
  35532. default: true
  35533. },
  35534. {
  35535. name: "Pandemonium",
  35536. height: math.unit(1, "mile")
  35537. },
  35538. {
  35539. name: "Catastrophe",
  35540. height: math.unit(100, "miles")
  35541. },
  35542. ]
  35543. ))
  35544. characterMakers.push(() => makeCharacter(
  35545. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35546. {
  35547. front: {
  35548. height: math.unit(4.7, "meters"),
  35549. weight: math.unit(6500, "kg"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/vex/front.svg",
  35553. extra: 1288/1140,
  35554. bottom: 100/1388
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(4.7, "meters"),
  35562. default: true
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35568. {
  35569. normal: {
  35570. height: math.unit(6, "feet"),
  35571. weight: math.unit(350, "lb"),
  35572. name: "Normal",
  35573. image: {
  35574. source: "./media/characters/teshy/normal.svg",
  35575. extra: 1795/1735,
  35576. bottom: 16/1811
  35577. }
  35578. },
  35579. monsterFront: {
  35580. height: math.unit(12, "feet"),
  35581. weight: math.unit(4700, "lb"),
  35582. name: "Monster (Front)",
  35583. image: {
  35584. source: "./media/characters/teshy/monster-front.svg",
  35585. extra: 2042/2034,
  35586. bottom: 128/2170
  35587. }
  35588. },
  35589. monsterSide: {
  35590. height: math.unit(12, "feet"),
  35591. weight: math.unit(4700, "lb"),
  35592. name: "Monster (Side)",
  35593. image: {
  35594. source: "./media/characters/teshy/monster-side.svg",
  35595. extra: 2067/2056,
  35596. bottom: 70/2137
  35597. }
  35598. },
  35599. monsterBack: {
  35600. height: math.unit(12, "feet"),
  35601. weight: math.unit(4700, "lb"),
  35602. name: "Monster (Back)",
  35603. image: {
  35604. source: "./media/characters/teshy/monster-back.svg",
  35605. extra: 1921/1914,
  35606. bottom: 171/2092
  35607. }
  35608. },
  35609. },
  35610. [
  35611. {
  35612. name: "Normal",
  35613. height: math.unit(6, "feet"),
  35614. default: true
  35615. },
  35616. ]
  35617. ))
  35618. characterMakers.push(() => makeCharacter(
  35619. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35620. {
  35621. front: {
  35622. height: math.unit(6, "feet"),
  35623. name: "Front",
  35624. image: {
  35625. source: "./media/characters/ramey/front.svg",
  35626. extra: 790/787,
  35627. bottom: 27/817
  35628. }
  35629. },
  35630. },
  35631. [
  35632. {
  35633. name: "Normal",
  35634. height: math.unit(6, "feet"),
  35635. default: true
  35636. },
  35637. ]
  35638. ))
  35639. characterMakers.push(() => makeCharacter(
  35640. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35641. {
  35642. front: {
  35643. height: math.unit(5 + 5/12, "feet"),
  35644. weight: math.unit(120, "lb"),
  35645. name: "Front",
  35646. image: {
  35647. source: "./media/characters/phirae/front.svg",
  35648. extra: 2491/2436,
  35649. bottom: 38/2529
  35650. }
  35651. },
  35652. },
  35653. [
  35654. {
  35655. name: "Normal",
  35656. height: math.unit(5 + 5/12, "feet"),
  35657. default: true
  35658. },
  35659. ]
  35660. ))
  35661. characterMakers.push(() => makeCharacter(
  35662. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35663. {
  35664. front: {
  35665. height: math.unit(5 + 3/12, "feet"),
  35666. name: "Front",
  35667. image: {
  35668. source: "./media/characters/stagglas/front.svg",
  35669. extra: 962/882,
  35670. bottom: 53/1015
  35671. }
  35672. },
  35673. feral: {
  35674. height: math.unit(335, "cm"),
  35675. name: "Feral",
  35676. image: {
  35677. source: "./media/characters/stagglas/feral.svg",
  35678. extra: 1732/1090,
  35679. bottom: 48/1780
  35680. }
  35681. },
  35682. },
  35683. [
  35684. {
  35685. name: "Normal",
  35686. height: math.unit(5 + 3/12, "feet"),
  35687. default: true
  35688. },
  35689. ]
  35690. ))
  35691. characterMakers.push(() => makeCharacter(
  35692. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35693. {
  35694. front: {
  35695. height: math.unit(5 + 4/12, "feet"),
  35696. weight: math.unit(145, "lb"),
  35697. name: "Front",
  35698. image: {
  35699. source: "./media/characters/starra/front.svg",
  35700. extra: 1790/1691,
  35701. bottom: 91/1881
  35702. }
  35703. },
  35704. },
  35705. [
  35706. {
  35707. name: "Normal",
  35708. height: math.unit(5 + 4/12, "feet"),
  35709. default: true
  35710. },
  35711. ]
  35712. ))
  35713. characterMakers.push(() => makeCharacter(
  35714. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35715. {
  35716. front: {
  35717. height: math.unit(2.2, "meters"),
  35718. name: "Front",
  35719. image: {
  35720. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35721. extra: 1194/1005,
  35722. bottom: 25/1219
  35723. }
  35724. },
  35725. },
  35726. [
  35727. {
  35728. name: "Normal",
  35729. height: math.unit(2.2, "meters"),
  35730. default: true
  35731. },
  35732. ]
  35733. ))
  35734. characterMakers.push(() => makeCharacter(
  35735. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35736. {
  35737. side: {
  35738. height: math.unit(8 + 2/12, "feet"),
  35739. weight: math.unit(1240, "lb"),
  35740. name: "Side",
  35741. image: {
  35742. source: "./media/characters/mika-valentine/side.svg",
  35743. extra: 2670/2501,
  35744. bottom: 250/2920
  35745. }
  35746. },
  35747. },
  35748. [
  35749. {
  35750. name: "Normal",
  35751. height: math.unit(8 + 2/12, "feet"),
  35752. default: true
  35753. },
  35754. ]
  35755. ))
  35756. characterMakers.push(() => makeCharacter(
  35757. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35758. {
  35759. front: {
  35760. height: math.unit(7 + 2/12, "feet"),
  35761. name: "Front",
  35762. image: {
  35763. source: "./media/characters/xoltol/front.svg",
  35764. extra: 2212/2124,
  35765. bottom: 84/2296
  35766. }
  35767. },
  35768. side: {
  35769. height: math.unit(7 + 2/12, "feet"),
  35770. name: "Side",
  35771. image: {
  35772. source: "./media/characters/xoltol/side.svg",
  35773. extra: 2273/2197,
  35774. bottom: 26/2299
  35775. }
  35776. },
  35777. hand: {
  35778. height: math.unit(2.5, "feet"),
  35779. name: "Hand",
  35780. image: {
  35781. source: "./media/characters/xoltol/hand.svg"
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Small-ish",
  35788. height: math.unit(5 + 11/12, "feet")
  35789. },
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(7 + 2/12, "feet")
  35793. },
  35794. {
  35795. name: "\"Macro\"",
  35796. height: math.unit(14 + 9/12, "feet"),
  35797. default: true
  35798. },
  35799. {
  35800. name: "Alternate Height",
  35801. height: math.unit(20, "feet")
  35802. },
  35803. {
  35804. name: "Actually Macro",
  35805. height: math.unit(100, "feet")
  35806. },
  35807. ]
  35808. ))
  35809. characterMakers.push(() => makeCharacter(
  35810. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35811. {
  35812. front: {
  35813. height: math.unit(5 + 2/12, "feet"),
  35814. name: "Front",
  35815. image: {
  35816. source: "./media/characters/kotetsu-redwood/front.svg",
  35817. extra: 1053/942,
  35818. bottom: 60/1113
  35819. }
  35820. },
  35821. },
  35822. [
  35823. {
  35824. name: "Normal",
  35825. height: math.unit(5 + 2/12, "feet"),
  35826. default: true
  35827. },
  35828. ]
  35829. ))
  35830. characterMakers.push(() => makeCharacter(
  35831. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35832. {
  35833. front: {
  35834. height: math.unit(2.4, "meters"),
  35835. weight: math.unit(125, "kg"),
  35836. name: "Front",
  35837. image: {
  35838. source: "./media/characters/lilith/front.svg",
  35839. extra: 1590/1513,
  35840. bottom: 203/1793
  35841. }
  35842. },
  35843. },
  35844. [
  35845. {
  35846. name: "Humanoid",
  35847. height: math.unit(2.4, "meters")
  35848. },
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(6, "meters"),
  35852. default: true
  35853. },
  35854. {
  35855. name: "Largest",
  35856. height: math.unit(55, "meters")
  35857. },
  35858. ]
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35862. {
  35863. front: {
  35864. height: math.unit(8 + 4/12, "feet"),
  35865. weight: math.unit(535, "lb"),
  35866. name: "Front",
  35867. image: {
  35868. source: "./media/characters/beh'kah-bolger/front.svg",
  35869. extra: 1660/1603,
  35870. bottom: 37/1697
  35871. }
  35872. },
  35873. },
  35874. [
  35875. {
  35876. name: "Normal",
  35877. height: math.unit(8 + 4/12, "feet"),
  35878. default: true
  35879. },
  35880. {
  35881. name: "Kaiju",
  35882. height: math.unit(250, "feet")
  35883. },
  35884. {
  35885. name: "Still Growing",
  35886. height: math.unit(10, "miles")
  35887. },
  35888. {
  35889. name: "Continental",
  35890. height: math.unit(5000, "miles")
  35891. },
  35892. {
  35893. name: "Final Form",
  35894. height: math.unit(2500000, "miles")
  35895. },
  35896. ]
  35897. ))
  35898. characterMakers.push(() => makeCharacter(
  35899. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35900. {
  35901. front: {
  35902. height: math.unit(7 + 2/12, "feet"),
  35903. weight: math.unit(230, "kg"),
  35904. name: "Front",
  35905. image: {
  35906. source: "./media/characters/tatyana-milewska/front.svg",
  35907. extra: 1199/1150,
  35908. bottom: 86/1285
  35909. }
  35910. },
  35911. },
  35912. [
  35913. {
  35914. name: "Normal",
  35915. height: math.unit(7 + 2/12, "feet"),
  35916. default: true
  35917. },
  35918. {
  35919. name: "Big",
  35920. height: math.unit(12, "feet")
  35921. },
  35922. {
  35923. name: "Minimacro",
  35924. height: math.unit(20, "feet")
  35925. },
  35926. {
  35927. name: "Macro",
  35928. height: math.unit(120, "feet")
  35929. },
  35930. ]
  35931. ))
  35932. characterMakers.push(() => makeCharacter(
  35933. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35934. {
  35935. front: {
  35936. height: math.unit(7 + 8/12, "feet"),
  35937. weight: math.unit(152, "kg"),
  35938. name: "Front",
  35939. image: {
  35940. source: "./media/characters/helen-arri/front.svg",
  35941. extra: 440/423,
  35942. bottom: 14/454
  35943. }
  35944. },
  35945. back: {
  35946. height: math.unit(7 + 8/12, "feet"),
  35947. weight: math.unit(152, "kg"),
  35948. name: "Back",
  35949. image: {
  35950. source: "./media/characters/helen-arri/back.svg",
  35951. extra: 443/426,
  35952. bottom: 8/451
  35953. }
  35954. },
  35955. },
  35956. [
  35957. {
  35958. name: "Normal",
  35959. height: math.unit(7 + 8/12, "feet"),
  35960. default: true
  35961. },
  35962. {
  35963. name: "Big",
  35964. height: math.unit(14, "feet")
  35965. },
  35966. {
  35967. name: "Minimacro",
  35968. height: math.unit(24, "feet")
  35969. },
  35970. {
  35971. name: "Macro",
  35972. height: math.unit(140, "feet")
  35973. },
  35974. ]
  35975. ))
  35976. characterMakers.push(() => makeCharacter(
  35977. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35978. {
  35979. front: {
  35980. height: math.unit(6, "meters"),
  35981. name: "Front",
  35982. image: {
  35983. source: "./media/characters/ehanu-rehu/front.svg",
  35984. extra: 1800/1800,
  35985. bottom: 59/1859
  35986. }
  35987. },
  35988. },
  35989. [
  35990. {
  35991. name: "Normal",
  35992. height: math.unit(6, "meters"),
  35993. default: true
  35994. },
  35995. ]
  35996. ))
  35997. characterMakers.push(() => makeCharacter(
  35998. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35999. {
  36000. front: {
  36001. height: math.unit(7 + 3/12, "feet"),
  36002. name: "Front",
  36003. image: {
  36004. source: "./media/characters/renholder/front.svg",
  36005. extra: 3096/2960,
  36006. bottom: 250/3346
  36007. }
  36008. },
  36009. },
  36010. [
  36011. {
  36012. name: "Normal Bat",
  36013. height: math.unit(7 + 3/12, "feet"),
  36014. default: true
  36015. },
  36016. {
  36017. name: "Slightly Tall Bat",
  36018. height: math.unit(100, "feet")
  36019. },
  36020. {
  36021. name: "Big Bat",
  36022. height: math.unit(1000, "feet")
  36023. },
  36024. {
  36025. name: "City-Sized Bat",
  36026. height: math.unit(200000, "feet")
  36027. },
  36028. {
  36029. name: "Bigger Bat",
  36030. height: math.unit(10000, "miles")
  36031. },
  36032. {
  36033. name: "Solar Sized Bat",
  36034. height: math.unit(100, "AU")
  36035. },
  36036. {
  36037. name: "Galactic Bat",
  36038. height: math.unit(200000, "lightyears")
  36039. },
  36040. {
  36041. name: "Universally Known Bat",
  36042. height: math.unit(1, "universe")
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36048. {
  36049. front: {
  36050. height: math.unit(6 + 11/12, "feet"),
  36051. weight: math.unit(250, "lb"),
  36052. name: "Front",
  36053. image: {
  36054. source: "./media/characters/cookiecat/front.svg",
  36055. extra: 893/827,
  36056. bottom: 14/907
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Micro",
  36063. height: math.unit(3, "inches")
  36064. },
  36065. {
  36066. name: "Normal",
  36067. height: math.unit(6 + 11/12, "feet"),
  36068. default: true
  36069. },
  36070. {
  36071. name: "Macro",
  36072. height: math.unit(100, "feet")
  36073. },
  36074. {
  36075. name: "Macro+",
  36076. height: math.unit(404, "feet")
  36077. },
  36078. {
  36079. name: "Megamacro",
  36080. height: math.unit(165, "miles")
  36081. },
  36082. {
  36083. name: "Planetary",
  36084. height: math.unit(4600, "miles")
  36085. },
  36086. ]
  36087. ))
  36088. characterMakers.push(() => makeCharacter(
  36089. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36090. {
  36091. front: {
  36092. height: math.unit(10 + 3/12, "feet"),
  36093. weight: math.unit(1500, "lb"),
  36094. name: "Front",
  36095. image: {
  36096. source: "./media/characters/tux-kusanagi/front.svg",
  36097. extra: 944/840,
  36098. bottom: 39/983
  36099. }
  36100. },
  36101. back: {
  36102. height: math.unit(10 + 3/12, "feet"),
  36103. weight: math.unit(1500, "lb"),
  36104. name: "Back",
  36105. image: {
  36106. source: "./media/characters/tux-kusanagi/back.svg",
  36107. extra: 941/842,
  36108. bottom: 28/969
  36109. }
  36110. },
  36111. rump: {
  36112. height: math.unit(5.25, "feet"),
  36113. name: "Rump",
  36114. image: {
  36115. source: "./media/characters/tux-kusanagi/rump.svg"
  36116. }
  36117. },
  36118. beak: {
  36119. height: math.unit(1.54, "feet"),
  36120. name: "Beak",
  36121. image: {
  36122. source: "./media/characters/tux-kusanagi/beak.svg"
  36123. }
  36124. },
  36125. },
  36126. [
  36127. {
  36128. name: "Normal",
  36129. height: math.unit(10 + 3/12, "feet"),
  36130. default: true
  36131. },
  36132. ]
  36133. ))
  36134. characterMakers.push(() => makeCharacter(
  36135. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36136. {
  36137. front: {
  36138. height: math.unit(58, "feet"),
  36139. weight: math.unit(200, "tons"),
  36140. name: "Front",
  36141. image: {
  36142. source: "./media/characters/uzarmazari/front.svg",
  36143. extra: 1575/1455,
  36144. bottom: 152/1727
  36145. }
  36146. },
  36147. back: {
  36148. height: math.unit(58, "feet"),
  36149. weight: math.unit(200, "tons"),
  36150. name: "Back",
  36151. image: {
  36152. source: "./media/characters/uzarmazari/back.svg",
  36153. extra: 1585/1510,
  36154. bottom: 157/1742
  36155. }
  36156. },
  36157. head: {
  36158. height: math.unit(26, "feet"),
  36159. name: "Head",
  36160. image: {
  36161. source: "./media/characters/uzarmazari/head.svg"
  36162. }
  36163. },
  36164. },
  36165. [
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(58, "feet"),
  36169. default: true
  36170. },
  36171. ]
  36172. ))
  36173. characterMakers.push(() => makeCharacter(
  36174. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36175. {
  36176. side: {
  36177. height: math.unit(15, "feet"),
  36178. name: "Side",
  36179. image: {
  36180. source: "./media/characters/akitu/side.svg",
  36181. extra: 1421/1321,
  36182. bottom: 157/1578
  36183. }
  36184. },
  36185. front: {
  36186. height: math.unit(15, "feet"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/akitu/front.svg",
  36190. extra: 1435/1326,
  36191. bottom: 232/1667
  36192. }
  36193. },
  36194. },
  36195. [
  36196. {
  36197. name: "Normal",
  36198. height: math.unit(15, "feet"),
  36199. default: true
  36200. },
  36201. ]
  36202. ))
  36203. characterMakers.push(() => makeCharacter(
  36204. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36205. {
  36206. front: {
  36207. height: math.unit(10 + 8/12, "feet"),
  36208. name: "Front",
  36209. image: {
  36210. source: "./media/characters/azalie-croixland/front.svg",
  36211. extra: 1972/1856,
  36212. bottom: 31/2003
  36213. }
  36214. },
  36215. },
  36216. [
  36217. {
  36218. name: "Original Height",
  36219. height: math.unit(5 + 4/12, "feet")
  36220. },
  36221. {
  36222. name: "Normal Height",
  36223. height: math.unit(10 + 8/12, "feet"),
  36224. default: true
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36230. {
  36231. side: {
  36232. height: math.unit(7 + 1/12, "feet"),
  36233. weight: math.unit(245, "lb"),
  36234. name: "Side",
  36235. image: {
  36236. source: "./media/characters/kavus-kazian/side.svg",
  36237. extra: 349/342,
  36238. bottom: 15/364
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Normal",
  36245. height: math.unit(7 + 1/12, "feet"),
  36246. default: true
  36247. },
  36248. ]
  36249. ))
  36250. characterMakers.push(() => makeCharacter(
  36251. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36252. {
  36253. normalFront: {
  36254. height: math.unit(5 + 11/12, "feet"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/moonlight-rose/normal-front.svg",
  36258. extra: 1980/1825,
  36259. bottom: 18/1998
  36260. },
  36261. form: "normal",
  36262. default: true
  36263. },
  36264. normalBack: {
  36265. height: math.unit(5 + 11/12, "feet"),
  36266. name: "Back",
  36267. image: {
  36268. source: "./media/characters/moonlight-rose/normal-back.svg",
  36269. extra: 2010/1839,
  36270. bottom: 10/2020
  36271. },
  36272. form: "normal"
  36273. },
  36274. demonFront: {
  36275. height: math.unit(1.5, "earths"),
  36276. name: "Front",
  36277. image: {
  36278. source: "./media/characters/moonlight-rose/demon.svg",
  36279. extra: 1400/1294,
  36280. bottom: 45/1445
  36281. },
  36282. form: "demon",
  36283. default: true
  36284. },
  36285. terraFront: {
  36286. height: math.unit(1.5, "earths"),
  36287. name: "Front",
  36288. image: {
  36289. source: "./media/characters/moonlight-rose/terra.svg"
  36290. },
  36291. form: "terra",
  36292. default: true
  36293. },
  36294. jupiterFront: {
  36295. height: math.unit(69911*2, "km"),
  36296. name: "Front",
  36297. image: {
  36298. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36299. extra: 1367/1286,
  36300. bottom: 55/1422
  36301. },
  36302. form: "jupiter",
  36303. default: true
  36304. },
  36305. neptuneFront: {
  36306. height: math.unit(24622*2, "feet"),
  36307. name: "Front",
  36308. image: {
  36309. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36310. extra: 1851/1712,
  36311. bottom: 0/1851
  36312. },
  36313. form: "neptune",
  36314. default: true
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "\"Natural\" Height",
  36320. height: math.unit(5 + 11/12, "feet"),
  36321. form: "normal"
  36322. },
  36323. {
  36324. name: "Smallest comfortable size",
  36325. height: math.unit(40, "meters"),
  36326. form: "normal"
  36327. },
  36328. {
  36329. name: "Common size",
  36330. height: math.unit(50, "km"),
  36331. form: "normal",
  36332. default: true
  36333. },
  36334. {
  36335. name: "Normal",
  36336. height: math.unit(1.5, "earths"),
  36337. form: "demon",
  36338. default: true
  36339. },
  36340. {
  36341. name: "Universal",
  36342. height: math.unit(15, "universes"),
  36343. form: "demon"
  36344. },
  36345. {
  36346. name: "Earth",
  36347. height: math.unit(1.5, "earths"),
  36348. form: "terra",
  36349. default: true
  36350. },
  36351. {
  36352. name: "Super Earth",
  36353. height: math.unit(67.5, "earths"),
  36354. form: "terra"
  36355. },
  36356. {
  36357. name: "Doesn't fit in a solar system...",
  36358. height: math.unit(1, "galaxy"),
  36359. form: "terra"
  36360. },
  36361. {
  36362. name: "Saturn",
  36363. height: math.unit(58232*2, "km"),
  36364. form: "jupiter"
  36365. },
  36366. {
  36367. name: "Jupiter",
  36368. height: math.unit(69911*2, "km"),
  36369. form: "jupiter",
  36370. default: true
  36371. },
  36372. {
  36373. name: "HD 100546 b",
  36374. height: math.unit(482938, "km"),
  36375. form: "jupiter"
  36376. },
  36377. {
  36378. name: "Enceladus",
  36379. height: math.unit(513*2, "km"),
  36380. form: "neptune"
  36381. },
  36382. {
  36383. name: "Europe",
  36384. height: math.unit(1560*2, "km"),
  36385. form: "neptune"
  36386. },
  36387. {
  36388. name: "Neptune",
  36389. height: math.unit(24622*2, "km"),
  36390. form: "neptune",
  36391. default: true
  36392. },
  36393. {
  36394. name: "CoRoT-9b",
  36395. height: math.unit(75067*2, "km"),
  36396. form: "neptune"
  36397. },
  36398. ],
  36399. {
  36400. "normal": {
  36401. name: "Normal",
  36402. default: true
  36403. },
  36404. "demon": {
  36405. name: "Demon"
  36406. },
  36407. "terra": {
  36408. name: "Terra"
  36409. },
  36410. "jupiter": {
  36411. name: "Jupiter"
  36412. },
  36413. "neptune": {
  36414. name: "Neptune"
  36415. }
  36416. }
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36420. {
  36421. front: {
  36422. height: math.unit(16, "feet"),
  36423. weight: math.unit(610, "kg"),
  36424. name: "Front",
  36425. image: {
  36426. source: "./media/characters/huckle/front.svg",
  36427. extra: 1731/1625,
  36428. bottom: 33/1764
  36429. }
  36430. },
  36431. back: {
  36432. height: math.unit(16, "feet"),
  36433. weight: math.unit(610, "kg"),
  36434. name: "Back",
  36435. image: {
  36436. source: "./media/characters/huckle/back.svg",
  36437. extra: 1738/1651,
  36438. bottom: 37/1775
  36439. }
  36440. },
  36441. laughing: {
  36442. height: math.unit(3.75, "feet"),
  36443. name: "Laughing",
  36444. image: {
  36445. source: "./media/characters/huckle/laughing.svg"
  36446. }
  36447. },
  36448. angry: {
  36449. height: math.unit(4.15, "feet"),
  36450. name: "Angry",
  36451. image: {
  36452. source: "./media/characters/huckle/angry.svg"
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(16, "feet"),
  36460. default: true
  36461. },
  36462. {
  36463. name: "Mini Macro",
  36464. height: math.unit(463, "feet")
  36465. },
  36466. {
  36467. name: "Macro",
  36468. height: math.unit(1680, "meters")
  36469. },
  36470. {
  36471. name: "Mega Macro",
  36472. height: math.unit(175, "km")
  36473. },
  36474. {
  36475. name: "Terra Macro",
  36476. height: math.unit(32, "gigameters")
  36477. },
  36478. {
  36479. name: "Multiverse+",
  36480. height: math.unit(2.56e23, "yottameters")
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(6 + 9/12, "feet"),
  36489. weight: math.unit(280, "lb"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/candy/front.svg",
  36493. extra: 234/217,
  36494. bottom: 11/245
  36495. }
  36496. },
  36497. },
  36498. [
  36499. {
  36500. name: "Really Small",
  36501. height: math.unit(0.1, "nm")
  36502. },
  36503. {
  36504. name: "Micro",
  36505. height: math.unit(2, "inches")
  36506. },
  36507. {
  36508. name: "Normal",
  36509. height: math.unit(6 + 9/12, "feet"),
  36510. default: true
  36511. },
  36512. {
  36513. name: "Small Macro",
  36514. height: math.unit(69, "feet")
  36515. },
  36516. {
  36517. name: "Macro",
  36518. height: math.unit(160, "feet")
  36519. },
  36520. {
  36521. name: "Megamacro",
  36522. height: math.unit(22000, "miles")
  36523. },
  36524. {
  36525. name: "Gigamacro",
  36526. height: math.unit(50000, "miles")
  36527. },
  36528. ]
  36529. ))
  36530. characterMakers.push(() => makeCharacter(
  36531. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36532. {
  36533. front: {
  36534. height: math.unit(4, "feet"),
  36535. weight: math.unit(90, "lb"),
  36536. name: "Front",
  36537. image: {
  36538. source: "./media/characters/joey-mcdonald/front.svg",
  36539. extra: 1059/852,
  36540. bottom: 33/1092
  36541. }
  36542. },
  36543. back: {
  36544. height: math.unit(4, "feet"),
  36545. weight: math.unit(90, "lb"),
  36546. name: "Back",
  36547. image: {
  36548. source: "./media/characters/joey-mcdonald/back.svg",
  36549. extra: 1077/879,
  36550. bottom: 5/1082
  36551. }
  36552. },
  36553. frontKobold: {
  36554. height: math.unit(4, "feet"),
  36555. weight: math.unit(100, "lb"),
  36556. name: "Front-kobold",
  36557. image: {
  36558. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36559. extra: 1480/1367,
  36560. bottom: 0/1480
  36561. }
  36562. },
  36563. backKobold: {
  36564. height: math.unit(4, "feet"),
  36565. weight: math.unit(100, "lb"),
  36566. name: "Back-kobold",
  36567. image: {
  36568. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36569. extra: 1449/1361,
  36570. bottom: 0/1449
  36571. }
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(4, "feet"),
  36578. default: true
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(12 + 6/12, "feet"),
  36587. name: "Front",
  36588. image: {
  36589. source: "./media/characters/kass-lockheed/front.svg",
  36590. extra: 354/343,
  36591. bottom: 9/363
  36592. }
  36593. },
  36594. back: {
  36595. height: math.unit(12 + 6/12, "feet"),
  36596. name: "Back",
  36597. image: {
  36598. source: "./media/characters/kass-lockheed/back.svg",
  36599. extra: 364/352,
  36600. bottom: 3/367
  36601. }
  36602. },
  36603. dick: {
  36604. height: math.unit(3.12, "feet"),
  36605. name: "Dick",
  36606. image: {
  36607. source: "./media/characters/kass-lockheed/dick.svg"
  36608. }
  36609. },
  36610. head: {
  36611. height: math.unit(2.6, "feet"),
  36612. name: "Head",
  36613. image: {
  36614. source: "./media/characters/kass-lockheed/head.svg"
  36615. }
  36616. },
  36617. bleh: {
  36618. height: math.unit(2.85, "feet"),
  36619. name: "Bleh",
  36620. image: {
  36621. source: "./media/characters/kass-lockheed/bleh.svg"
  36622. }
  36623. },
  36624. smug: {
  36625. height: math.unit(2.85, "feet"),
  36626. name: "Smug",
  36627. image: {
  36628. source: "./media/characters/kass-lockheed/smug.svg"
  36629. }
  36630. },
  36631. },
  36632. [
  36633. {
  36634. name: "Normal",
  36635. height: math.unit(12 + 6/12, "feet"),
  36636. default: true
  36637. },
  36638. ]
  36639. ))
  36640. characterMakers.push(() => makeCharacter(
  36641. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36642. {
  36643. front: {
  36644. height: math.unit(6 + 2/12, "feet"),
  36645. name: "Front",
  36646. image: {
  36647. source: "./media/characters/taylor/front.svg",
  36648. extra: 639/495,
  36649. bottom: 12/651
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(6 + 2/12, "feet"),
  36657. default: true
  36658. },
  36659. {
  36660. name: "Big",
  36661. height: math.unit(15, "feet")
  36662. },
  36663. {
  36664. name: "Lorg",
  36665. height: math.unit(80, "feet")
  36666. },
  36667. {
  36668. name: "Too Lorg",
  36669. height: math.unit(120, "feet")
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36675. {
  36676. front: {
  36677. height: math.unit(15, "feet"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/kaizer/front.svg",
  36681. extra: 1612/1436,
  36682. bottom: 43/1655
  36683. }
  36684. },
  36685. },
  36686. [
  36687. {
  36688. name: "Normal",
  36689. height: math.unit(15, "feet"),
  36690. default: true
  36691. },
  36692. ]
  36693. ))
  36694. characterMakers.push(() => makeCharacter(
  36695. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36696. {
  36697. front: {
  36698. height: math.unit(2, "feet"),
  36699. weight: math.unit(30, "lb"),
  36700. name: "Front",
  36701. image: {
  36702. source: "./media/characters/sandy/front.svg",
  36703. extra: 1439/1307,
  36704. bottom: 194/1633
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "Normal",
  36711. height: math.unit(2, "feet"),
  36712. default: true
  36713. },
  36714. ]
  36715. ))
  36716. characterMakers.push(() => makeCharacter(
  36717. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36718. {
  36719. front: {
  36720. height: math.unit(3, "feet"),
  36721. name: "Front",
  36722. image: {
  36723. source: "./media/characters/mellvi/front.svg",
  36724. extra: 1831/1630,
  36725. bottom: 58/1889
  36726. }
  36727. },
  36728. },
  36729. [
  36730. {
  36731. name: "Normal",
  36732. height: math.unit(3, "feet"),
  36733. default: true
  36734. },
  36735. ]
  36736. ))
  36737. characterMakers.push(() => makeCharacter(
  36738. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36739. {
  36740. front: {
  36741. height: math.unit(5 + 11/12, "feet"),
  36742. weight: math.unit(200, "lb"),
  36743. name: "Front",
  36744. image: {
  36745. source: "./media/characters/shirou/front.svg",
  36746. extra: 2491/2383,
  36747. bottom: 189/2680
  36748. }
  36749. },
  36750. back: {
  36751. height: math.unit(5 + 11/12, "feet"),
  36752. weight: math.unit(200, "lb"),
  36753. name: "Back",
  36754. image: {
  36755. source: "./media/characters/shirou/back.svg",
  36756. extra: 2554/2450,
  36757. bottom: 76/2630
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(5 + 11/12, "feet"),
  36765. default: true
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(6 + 3/12, "feet"),
  36774. weight: math.unit(177, "lb"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/noryu/front.svg",
  36778. extra: 973/885,
  36779. bottom: 10/983
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(6 + 3/12, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(5 + 6/12, "feet"),
  36796. weight: math.unit(170, "lb"),
  36797. name: "Front",
  36798. image: {
  36799. source: "./media/characters/mevolas-rubenido/front.svg",
  36800. extra: 2109/1901,
  36801. bottom: 96/2205
  36802. }
  36803. },
  36804. },
  36805. [
  36806. {
  36807. name: "Normal",
  36808. height: math.unit(5 + 6/12, "feet"),
  36809. default: true
  36810. },
  36811. ]
  36812. ))
  36813. characterMakers.push(() => makeCharacter(
  36814. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36815. {
  36816. front: {
  36817. height: math.unit(100, "feet"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/dee/front.svg",
  36821. extra: 2153/2036,
  36822. bottom: 59/2212
  36823. }
  36824. },
  36825. back: {
  36826. height: math.unit(100, "feet"),
  36827. name: "Back",
  36828. image: {
  36829. source: "./media/characters/dee/back.svg",
  36830. extra: 2183/2058,
  36831. bottom: 75/2258
  36832. }
  36833. },
  36834. foot: {
  36835. height: math.unit(19.43, "feet"),
  36836. name: "Foot",
  36837. image: {
  36838. source: "./media/characters/dee/foot.svg"
  36839. }
  36840. },
  36841. hoof: {
  36842. height: math.unit(20.6, "feet"),
  36843. name: "Hoof",
  36844. image: {
  36845. source: "./media/characters/dee/hoof.svg"
  36846. }
  36847. },
  36848. },
  36849. [
  36850. {
  36851. name: "Macro",
  36852. height: math.unit(100, "feet"),
  36853. default: true
  36854. },
  36855. ]
  36856. ))
  36857. characterMakers.push(() => makeCharacter(
  36858. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36859. {
  36860. front: {
  36861. height: math.unit(5 + 6/12, "feet"),
  36862. name: "Front",
  36863. image: {
  36864. source: "./media/characters/teh/front.svg",
  36865. extra: 1002/847,
  36866. bottom: 62/1064
  36867. }
  36868. },
  36869. },
  36870. [
  36871. {
  36872. name: "Normal",
  36873. height: math.unit(5 + 6/12, "feet"),
  36874. default: true
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36880. {
  36881. side: {
  36882. height: math.unit(6 + 1/12, "feet"),
  36883. weight: math.unit(204, "lb"),
  36884. name: "Side",
  36885. image: {
  36886. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36887. extra: 974/775,
  36888. bottom: 169/1143
  36889. }
  36890. },
  36891. sitting: {
  36892. height: math.unit(6 + 2/12, "feet"),
  36893. weight: math.unit(204, "lb"),
  36894. name: "Sitting",
  36895. image: {
  36896. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36897. extra: 1175/964,
  36898. bottom: 378/1553
  36899. }
  36900. },
  36901. },
  36902. [
  36903. {
  36904. name: "Normal",
  36905. height: math.unit(6 + 1/12, "feet"),
  36906. default: true
  36907. },
  36908. ]
  36909. ))
  36910. characterMakers.push(() => makeCharacter(
  36911. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36912. {
  36913. front: {
  36914. height: math.unit(6, "inches"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/tululi/front.svg",
  36918. extra: 1997/1876,
  36919. bottom: 20/2017
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(6, "inches"),
  36927. default: true
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36933. {
  36934. front: {
  36935. height: math.unit(4 + 1/12, "feet"),
  36936. name: "Front",
  36937. image: {
  36938. source: "./media/characters/star/front.svg",
  36939. extra: 1493/1189,
  36940. bottom: 48/1541
  36941. }
  36942. },
  36943. },
  36944. [
  36945. {
  36946. name: "Normal",
  36947. height: math.unit(4 + 1/12, "feet"),
  36948. default: true
  36949. },
  36950. ]
  36951. ))
  36952. characterMakers.push(() => makeCharacter(
  36953. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36954. {
  36955. front: {
  36956. height: math.unit(6 + 3/12, "feet"),
  36957. name: "Front",
  36958. image: {
  36959. source: "./media/characters/comet/front.svg",
  36960. extra: 1681/1462,
  36961. bottom: 26/1707
  36962. }
  36963. },
  36964. },
  36965. [
  36966. {
  36967. name: "Normal",
  36968. height: math.unit(6 + 3/12, "feet"),
  36969. default: true
  36970. },
  36971. ]
  36972. ))
  36973. characterMakers.push(() => makeCharacter(
  36974. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36975. {
  36976. front: {
  36977. height: math.unit(950, "feet"),
  36978. name: "Front",
  36979. image: {
  36980. source: "./media/characters/vortex/front.svg",
  36981. extra: 1497/1434,
  36982. bottom: 56/1553
  36983. }
  36984. },
  36985. maw: {
  36986. height: math.unit(285, "feet"),
  36987. name: "Maw",
  36988. image: {
  36989. source: "./media/characters/vortex/maw.svg"
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Macro",
  36996. height: math.unit(950, "feet"),
  36997. default: true
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(600, "feet"),
  37006. weight: math.unit(0.02, "grams"),
  37007. name: "Front",
  37008. image: {
  37009. source: "./media/characters/doodle/front.svg",
  37010. extra: 1578/1413,
  37011. bottom: 37/1615
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Macro",
  37018. height: math.unit(600, "feet"),
  37019. default: true
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37025. {
  37026. front: {
  37027. height: math.unit(6 + 6/12, "feet"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/jai/front.svg",
  37031. extra: 1645/1534,
  37032. bottom: 115/1760
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Normal",
  37039. height: math.unit(6 + 6/12, "feet"),
  37040. default: true
  37041. },
  37042. ]
  37043. ))
  37044. characterMakers.push(() => makeCharacter(
  37045. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37046. {
  37047. front: {
  37048. height: math.unit(6 + 8/12, "feet"),
  37049. name: "Front",
  37050. image: {
  37051. source: "./media/characters/pixel/front.svg",
  37052. extra: 1900/1735,
  37053. bottom: 63/1963
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(6 + 8/12, "feet"),
  37061. default: true
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37067. {
  37068. back: {
  37069. height: math.unit(4 + 1/12, "feet"),
  37070. weight: math.unit(75, "lb"),
  37071. name: "Back",
  37072. image: {
  37073. source: "./media/characters/rhett/back.svg",
  37074. extra: 930/878,
  37075. bottom: 25/955
  37076. }
  37077. },
  37078. front: {
  37079. height: math.unit(4 + 1/12, "feet"),
  37080. weight: math.unit(75, "lb"),
  37081. name: "Front",
  37082. image: {
  37083. source: "./media/characters/rhett/front.svg",
  37084. extra: 1682/1586,
  37085. bottom: 92/1774
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Micro",
  37092. height: math.unit(8, "inches")
  37093. },
  37094. {
  37095. name: "Tiny",
  37096. height: math.unit(2, "feet")
  37097. },
  37098. {
  37099. name: "Normal",
  37100. height: math.unit(4 + 1/12, "feet"),
  37101. default: true
  37102. },
  37103. ]
  37104. ))
  37105. characterMakers.push(() => makeCharacter(
  37106. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37107. {
  37108. front: {
  37109. height: math.unit(3 + 3/12, "feet"),
  37110. name: "Front",
  37111. image: {
  37112. source: "./media/characters/penny/front.svg",
  37113. extra: 1406/1311,
  37114. bottom: 26/1432
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Normal",
  37121. height: math.unit(3 + 3/12, "feet"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37128. {
  37129. front: {
  37130. height: math.unit(4 + 11/12, "feet"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/monty/front.svg",
  37134. extra: 1479/1209,
  37135. bottom: 0/1479
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(4 + 11/12, "feet"),
  37143. default: true
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(8 + 4/12, "feet"),
  37152. name: "Front",
  37153. image: {
  37154. source: "./media/characters/sterling/front.svg",
  37155. extra: 1420/1236,
  37156. bottom: 27/1447
  37157. }
  37158. },
  37159. },
  37160. [
  37161. {
  37162. name: "Normal",
  37163. height: math.unit(8 + 4/12, "feet"),
  37164. default: true
  37165. },
  37166. ]
  37167. ))
  37168. characterMakers.push(() => makeCharacter(
  37169. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37170. {
  37171. front: {
  37172. height: math.unit(15, "feet"),
  37173. name: "Front",
  37174. image: {
  37175. source: "./media/characters/marble/front.svg",
  37176. extra: 973/937,
  37177. bottom: 32/1005
  37178. }
  37179. },
  37180. },
  37181. [
  37182. {
  37183. name: "Normal",
  37184. height: math.unit(15, "feet"),
  37185. default: true
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37191. {
  37192. front: {
  37193. height: math.unit(3, "inches"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/powder/front.svg",
  37197. extra: 1504/1334,
  37198. bottom: 518/2022
  37199. }
  37200. },
  37201. },
  37202. [
  37203. {
  37204. name: "Normal",
  37205. height: math.unit(3, "inches"),
  37206. default: true
  37207. },
  37208. ]
  37209. ))
  37210. characterMakers.push(() => makeCharacter(
  37211. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37212. {
  37213. front: {
  37214. height: math.unit(4 + 5/12, "feet"),
  37215. name: "Front",
  37216. image: {
  37217. source: "./media/characters/joey-raccoon/front.svg",
  37218. extra: 1273/1197,
  37219. bottom: 0/1273
  37220. }
  37221. },
  37222. },
  37223. [
  37224. {
  37225. name: "Normal",
  37226. height: math.unit(4 + 5/12, "feet"),
  37227. default: true
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37233. {
  37234. front: {
  37235. height: math.unit(8 + 4/12, "feet"),
  37236. name: "Front",
  37237. image: {
  37238. source: "./media/characters/vick/front.svg",
  37239. extra: 2187/2118,
  37240. bottom: 47/2234
  37241. }
  37242. },
  37243. },
  37244. [
  37245. {
  37246. name: "Normal",
  37247. height: math.unit(8 + 4/12, "feet"),
  37248. default: true
  37249. },
  37250. ]
  37251. ))
  37252. characterMakers.push(() => makeCharacter(
  37253. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37254. {
  37255. front: {
  37256. height: math.unit(5 + 5/12, "feet"),
  37257. name: "Front",
  37258. image: {
  37259. source: "./media/characters/mitsy/front.svg",
  37260. extra: 1842/1695,
  37261. bottom: 0/1842
  37262. }
  37263. },
  37264. },
  37265. [
  37266. {
  37267. name: "Normal",
  37268. height: math.unit(5 + 5/12, "feet"),
  37269. default: true
  37270. },
  37271. ]
  37272. ))
  37273. characterMakers.push(() => makeCharacter(
  37274. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37275. {
  37276. front: {
  37277. height: math.unit(6 + 3/12, "feet"),
  37278. name: "Front",
  37279. image: {
  37280. source: "./media/characters/silvy/front.svg",
  37281. extra: 1995/1836,
  37282. bottom: 225/2220
  37283. }
  37284. },
  37285. },
  37286. [
  37287. {
  37288. name: "Normal",
  37289. height: math.unit(6 + 3/12, "feet"),
  37290. default: true
  37291. },
  37292. ]
  37293. ))
  37294. characterMakers.push(() => makeCharacter(
  37295. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37296. {
  37297. front: {
  37298. height: math.unit(3 + 8/12, "feet"),
  37299. name: "Front",
  37300. image: {
  37301. source: "./media/characters/rodney/front.svg",
  37302. extra: 1956/1747,
  37303. bottom: 31/1987
  37304. }
  37305. },
  37306. frontDressed: {
  37307. height: math.unit(2.9, "feet"),
  37308. name: "Front (Dressed)",
  37309. image: {
  37310. source: "./media/characters/rodney/front-dressed.svg",
  37311. extra: 1382/1241,
  37312. bottom: 385/1767
  37313. }
  37314. },
  37315. },
  37316. [
  37317. {
  37318. name: "Normal",
  37319. height: math.unit(3 + 8/12, "feet"),
  37320. default: true
  37321. },
  37322. ]
  37323. ))
  37324. characterMakers.push(() => makeCharacter(
  37325. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37326. {
  37327. front: {
  37328. height: math.unit(5 + 9/12, "feet"),
  37329. weight: math.unit(194, "lbs"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/zakail-sudekai/front.svg",
  37333. extra: 2696/2533,
  37334. bottom: 248/2944
  37335. }
  37336. },
  37337. maw: {
  37338. height: math.unit(1.35, "feet"),
  37339. name: "Maw",
  37340. image: {
  37341. source: "./media/characters/zakail-sudekai/maw.svg"
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(5 + 9/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(8 + 4/12, "feet"),
  37358. weight: math.unit(1200, "lb"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/eleanor/front.svg",
  37362. extra: 1226/1192,
  37363. bottom: 52/1278
  37364. }
  37365. },
  37366. back: {
  37367. height: math.unit(8 + 4/12, "feet"),
  37368. weight: math.unit(1200, "lb"),
  37369. name: "Back",
  37370. image: {
  37371. source: "./media/characters/eleanor/back.svg",
  37372. extra: 1242/1184,
  37373. bottom: 60/1302
  37374. }
  37375. },
  37376. head: {
  37377. height: math.unit(2.62, "feet"),
  37378. name: "Head",
  37379. image: {
  37380. source: "./media/characters/eleanor/head.svg"
  37381. }
  37382. },
  37383. },
  37384. [
  37385. {
  37386. name: "Normal",
  37387. height: math.unit(8 + 4/12, "feet"),
  37388. default: true
  37389. },
  37390. ]
  37391. ))
  37392. characterMakers.push(() => makeCharacter(
  37393. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37394. {
  37395. front: {
  37396. height: math.unit(8 + 4/12, "feet"),
  37397. weight: math.unit(750, "lb"),
  37398. name: "Front",
  37399. image: {
  37400. source: "./media/characters/tanya/front.svg",
  37401. extra: 1749/1615,
  37402. bottom: 33/1782
  37403. }
  37404. },
  37405. },
  37406. [
  37407. {
  37408. name: "Normal",
  37409. height: math.unit(8 + 4/12, "feet"),
  37410. default: true
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37416. {
  37417. front: {
  37418. height: math.unit(5, "feet"),
  37419. weight: math.unit(225, "lb"),
  37420. name: "Front",
  37421. image: {
  37422. source: "./media/characters/cindy/front.svg",
  37423. extra: 1320/1250,
  37424. bottom: 42/1362
  37425. }
  37426. },
  37427. frontDressed: {
  37428. height: math.unit(5, "feet"),
  37429. weight: math.unit(225, "lb"),
  37430. name: "Front (Dressed)",
  37431. image: {
  37432. source: "./media/characters/cindy/front-dressed.svg",
  37433. extra: 1320/1250,
  37434. bottom: 42/1362
  37435. }
  37436. },
  37437. back: {
  37438. height: math.unit(5, "feet"),
  37439. weight: math.unit(225, "lb"),
  37440. name: "Back",
  37441. image: {
  37442. source: "./media/characters/cindy/back.svg",
  37443. extra: 1384/1346,
  37444. bottom: 14/1398
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(5, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(6 + 9/12, "feet"),
  37461. weight: math.unit(440, "lb"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/wilbur-owen/front.svg",
  37465. extra: 1575/1448,
  37466. bottom: 72/1647
  37467. }
  37468. },
  37469. back: {
  37470. height: math.unit(6 + 9/12, "feet"),
  37471. weight: math.unit(440, "lb"),
  37472. name: "Back",
  37473. image: {
  37474. source: "./media/characters/wilbur-owen/back.svg",
  37475. extra: 1578/1445,
  37476. bottom: 36/1614
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Normal",
  37483. height: math.unit(6 + 9/12, "feet"),
  37484. default: true
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(6 + 5/12, "feet"),
  37493. weight: math.unit(650, "lb"),
  37494. name: "Front",
  37495. image: {
  37496. source: "./media/characters/keegan/front.svg",
  37497. extra: 2387/2198,
  37498. bottom: 33/2420
  37499. }
  37500. },
  37501. side: {
  37502. height: math.unit(6 + 5/12, "feet"),
  37503. weight: math.unit(650, "lb"),
  37504. name: "Side",
  37505. image: {
  37506. source: "./media/characters/keegan/side.svg",
  37507. extra: 2390/2202,
  37508. bottom: 47/2437
  37509. }
  37510. },
  37511. back: {
  37512. height: math.unit(6 + 5/12, "feet"),
  37513. weight: math.unit(650, "lb"),
  37514. name: "Back",
  37515. image: {
  37516. source: "./media/characters/keegan/back.svg",
  37517. extra: 2418/2268,
  37518. bottom: 15/2433
  37519. }
  37520. },
  37521. frontSfw: {
  37522. height: math.unit(6 + 5/12, "feet"),
  37523. weight: math.unit(650, "lb"),
  37524. name: "Front (SFW)",
  37525. image: {
  37526. source: "./media/characters/keegan/front-sfw.svg",
  37527. extra: 2387/2198,
  37528. bottom: 33/2420
  37529. }
  37530. },
  37531. beans: {
  37532. height: math.unit(1.85, "feet"),
  37533. name: "Beans",
  37534. image: {
  37535. source: "./media/characters/keegan/beans.svg"
  37536. }
  37537. },
  37538. },
  37539. [
  37540. {
  37541. name: "Normal",
  37542. height: math.unit(6 + 5/12, "feet"),
  37543. default: true
  37544. },
  37545. ]
  37546. ))
  37547. characterMakers.push(() => makeCharacter(
  37548. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37549. {
  37550. front: {
  37551. height: math.unit(9, "feet"),
  37552. name: "Front",
  37553. image: {
  37554. source: "./media/characters/colton/front.svg",
  37555. extra: 1589/1326,
  37556. bottom: 139/1728
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(9, "feet"),
  37564. default: true
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37570. {
  37571. front: {
  37572. height: math.unit(2 + 9/12, "feet"),
  37573. name: "Front",
  37574. image: {
  37575. source: "./media/characters/bora/front.svg",
  37576. extra: 1265/1250,
  37577. bottom: 24/1289
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Normal",
  37584. height: math.unit(2 + 9/12, "feet"),
  37585. default: true
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(8, "feet"),
  37594. name: "Front",
  37595. image: {
  37596. source: "./media/characters/myu-myu/front.svg",
  37597. extra: 1949/1857,
  37598. bottom: 90/2039
  37599. }
  37600. },
  37601. },
  37602. [
  37603. {
  37604. name: "Normal",
  37605. height: math.unit(8, "feet"),
  37606. default: true
  37607. },
  37608. {
  37609. name: "Big",
  37610. height: math.unit(15, "feet")
  37611. },
  37612. {
  37613. name: "BIG",
  37614. height: math.unit(25, "feet")
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37620. {
  37621. side: {
  37622. height: math.unit(7 + 5/12, "feet"),
  37623. weight: math.unit(2800, "lb"),
  37624. name: "Side",
  37625. image: {
  37626. source: "./media/characters/haloren/side.svg",
  37627. extra: 1793/409,
  37628. bottom: 59/1852
  37629. }
  37630. },
  37631. frontPaw: {
  37632. height: math.unit(2.36, "feet"),
  37633. name: "Front paw",
  37634. image: {
  37635. source: "./media/characters/haloren/front-paw.svg"
  37636. }
  37637. },
  37638. hindPaw: {
  37639. height: math.unit(3.18, "feet"),
  37640. name: "Hind paw",
  37641. image: {
  37642. source: "./media/characters/haloren/hind-paw.svg"
  37643. }
  37644. },
  37645. maw: {
  37646. height: math.unit(5.05, "feet"),
  37647. name: "Maw",
  37648. image: {
  37649. source: "./media/characters/haloren/maw.svg"
  37650. }
  37651. },
  37652. dick: {
  37653. height: math.unit(2.90, "feet"),
  37654. name: "Dick",
  37655. image: {
  37656. source: "./media/characters/haloren/dick.svg"
  37657. }
  37658. },
  37659. },
  37660. [
  37661. {
  37662. name: "Normal",
  37663. height: math.unit(7 + 5/12, "feet"),
  37664. default: true
  37665. },
  37666. {
  37667. name: "Enhanced",
  37668. height: math.unit(14 + 3/12, "feet")
  37669. },
  37670. ]
  37671. ))
  37672. characterMakers.push(() => makeCharacter(
  37673. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37674. {
  37675. front: {
  37676. height: math.unit(171, "cm"),
  37677. name: "Front",
  37678. image: {
  37679. source: "./media/characters/kimmy/front.svg",
  37680. extra: 1491/1435,
  37681. bottom: 53/1544
  37682. }
  37683. },
  37684. },
  37685. [
  37686. {
  37687. name: "Small",
  37688. height: math.unit(9, "cm")
  37689. },
  37690. {
  37691. name: "Normal",
  37692. height: math.unit(171, "cm"),
  37693. default: true
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(8, "feet"),
  37702. weight: math.unit(300, "lb"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/galeboomer/front.svg",
  37706. extra: 4651/4415,
  37707. bottom: 162/4813
  37708. }
  37709. },
  37710. back: {
  37711. height: math.unit(8, "feet"),
  37712. weight: math.unit(300, "lb"),
  37713. name: "Back",
  37714. image: {
  37715. source: "./media/characters/galeboomer/back.svg",
  37716. extra: 4544/4314,
  37717. bottom: 16/4560
  37718. }
  37719. },
  37720. frontAlt: {
  37721. height: math.unit(8, "feet"),
  37722. weight: math.unit(300, "lb"),
  37723. name: "Front (Alt)",
  37724. image: {
  37725. source: "./media/characters/galeboomer/front-alt.svg",
  37726. extra: 4458/4228,
  37727. bottom: 68/4526
  37728. }
  37729. },
  37730. maw: {
  37731. height: math.unit(1.2, "feet"),
  37732. name: "Maw",
  37733. image: {
  37734. source: "./media/characters/galeboomer/maw.svg"
  37735. }
  37736. },
  37737. },
  37738. [
  37739. {
  37740. name: "Normal",
  37741. height: math.unit(8, "feet"),
  37742. default: true
  37743. },
  37744. ]
  37745. ))
  37746. characterMakers.push(() => makeCharacter(
  37747. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37748. {
  37749. front: {
  37750. height: math.unit(5 + 9/12, "feet"),
  37751. weight: math.unit(120, "lb"),
  37752. name: "Front",
  37753. image: {
  37754. source: "./media/characters/chyr/front.svg",
  37755. extra: 1323/1254,
  37756. bottom: 63/1386
  37757. }
  37758. },
  37759. back: {
  37760. height: math.unit(5 + 9/12, "feet"),
  37761. weight: math.unit(120, "lb"),
  37762. name: "Back",
  37763. image: {
  37764. source: "./media/characters/chyr/back.svg",
  37765. extra: 1323/1252,
  37766. bottom: 48/1371
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(5 + 9/12, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(7, "feet"),
  37783. weight: math.unit(310, "lb"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/solarus/front.svg",
  37787. extra: 2415/2021,
  37788. bottom: 103/2518
  37789. }
  37790. },
  37791. back: {
  37792. height: math.unit(7, "feet"),
  37793. weight: math.unit(310, "lb"),
  37794. name: "Back",
  37795. image: {
  37796. source: "./media/characters/solarus/back.svg",
  37797. extra: 2463/2089,
  37798. bottom: 79/2542
  37799. }
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "Normal",
  37805. height: math.unit(7, "feet"),
  37806. default: true
  37807. },
  37808. ]
  37809. ))
  37810. characterMakers.push(() => makeCharacter(
  37811. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37812. {
  37813. front: {
  37814. height: math.unit(16, "feet"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37818. extra: 1844/1780,
  37819. bottom: 58/1902
  37820. }
  37821. },
  37822. winterCoat: {
  37823. height: math.unit(16, "feet"),
  37824. name: "Winter Coat",
  37825. image: {
  37826. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37827. extra: 1807/1775,
  37828. bottom: 69/1876
  37829. }
  37830. },
  37831. },
  37832. [
  37833. {
  37834. name: "Normal",
  37835. height: math.unit(16, "feet"),
  37836. default: true
  37837. },
  37838. {
  37839. name: "Chicago Size",
  37840. height: math.unit(560, "feet")
  37841. },
  37842. ]
  37843. ))
  37844. characterMakers.push(() => makeCharacter(
  37845. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37846. {
  37847. front: {
  37848. height: math.unit(11 + 6/12, "feet"),
  37849. weight: math.unit(1366, "lb"),
  37850. name: "Front",
  37851. image: {
  37852. source: "./media/characters/lexor/front.svg",
  37853. extra: 1560/1481,
  37854. bottom: 211/1771
  37855. }
  37856. },
  37857. back: {
  37858. height: math.unit(11 + 6/12, "feet"),
  37859. weight: math.unit(1366, "lb"),
  37860. name: "Back",
  37861. image: {
  37862. source: "./media/characters/lexor/back.svg",
  37863. extra: 1614/1533,
  37864. bottom: 76/1690
  37865. }
  37866. },
  37867. maw: {
  37868. height: math.unit(3, "feet"),
  37869. name: "Maw",
  37870. image: {
  37871. source: "./media/characters/lexor/maw.svg"
  37872. }
  37873. },
  37874. dick: {
  37875. height: math.unit(2.59, "feet"),
  37876. name: "Dick",
  37877. image: {
  37878. source: "./media/characters/lexor/dick.svg"
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(11 + 6/12, "feet"),
  37886. default: true
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37892. {
  37893. front: {
  37894. height: math.unit(5 + 8/12, "feet"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/magnum/front.svg",
  37898. extra: 942/855,
  37899. bottom: 26/968
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(5 + 8/12, "feet"),
  37907. default: true
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(18 + 4/12, "feet"),
  37916. weight: math.unit(1500, "kg"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/solas-sharpsman/front.svg",
  37920. extra: 1698/1589,
  37921. bottom: 0/1698
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Normal",
  37928. height: math.unit(18 + 4/12, "feet"),
  37929. default: true
  37930. },
  37931. ]
  37932. ))
  37933. characterMakers.push(() => makeCharacter(
  37934. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37935. {
  37936. front: {
  37937. height: math.unit(5 + 5/12, "feet"),
  37938. weight: math.unit(180, "lb"),
  37939. name: "Front",
  37940. image: {
  37941. source: "./media/characters/october/front.svg",
  37942. extra: 1800/1650,
  37943. bottom: 0/1800
  37944. }
  37945. },
  37946. frontNsfw: {
  37947. height: math.unit(5 + 5/12, "feet"),
  37948. weight: math.unit(180, "lb"),
  37949. name: "Front (NSFW)",
  37950. image: {
  37951. source: "./media/characters/october/front-nsfw.svg",
  37952. extra: 1392/1307,
  37953. bottom: 42/1434
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "Normal",
  37960. height: math.unit(5 + 5/12, "feet"),
  37961. default: true
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37967. {
  37968. front: {
  37969. height: math.unit(8 + 6/12, "feet"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/essynkardi/front.svg",
  37973. extra: 1914/1846,
  37974. bottom: 22/1936
  37975. }
  37976. },
  37977. },
  37978. [
  37979. {
  37980. name: "Normal",
  37981. height: math.unit(8 + 6/12, "feet"),
  37982. default: true
  37983. },
  37984. ]
  37985. ))
  37986. characterMakers.push(() => makeCharacter(
  37987. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37988. {
  37989. front: {
  37990. height: math.unit(6 + 6/12, "feet"),
  37991. weight: math.unit(7, "lb"),
  37992. name: "Front",
  37993. image: {
  37994. source: "./media/characters/icky/front.svg",
  37995. extra: 813/782,
  37996. bottom: 66/879
  37997. }
  37998. },
  37999. back: {
  38000. height: math.unit(6 + 6/12, "feet"),
  38001. weight: math.unit(7, "lb"),
  38002. name: "Back",
  38003. image: {
  38004. source: "./media/characters/icky/back.svg",
  38005. extra: 754/735,
  38006. bottom: 56/810
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Normal",
  38013. height: math.unit(6 + 6/12, "feet"),
  38014. default: true
  38015. },
  38016. ]
  38017. ))
  38018. characterMakers.push(() => makeCharacter(
  38019. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38020. {
  38021. front: {
  38022. height: math.unit(15, "feet"),
  38023. name: "Front",
  38024. image: {
  38025. source: "./media/characters/rojas/front.svg",
  38026. extra: 1462/1408,
  38027. bottom: 95/1557
  38028. }
  38029. },
  38030. back: {
  38031. height: math.unit(15, "feet"),
  38032. name: "Back",
  38033. image: {
  38034. source: "./media/characters/rojas/back.svg",
  38035. extra: 1023/954,
  38036. bottom: 28/1051
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(15, "feet"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38050. {
  38051. frontHuman: {
  38052. height: math.unit(5 + 7/12, "feet"),
  38053. name: "Front (Human)",
  38054. image: {
  38055. source: "./media/characters/alek-dryagan/front-human.svg",
  38056. extra: 1687/1667,
  38057. bottom: 69/1756
  38058. }
  38059. },
  38060. backHuman: {
  38061. height: math.unit(5 + 7/12, "feet"),
  38062. name: "Back (Human)",
  38063. image: {
  38064. source: "./media/characters/alek-dryagan/back-human.svg",
  38065. extra: 1670/1649,
  38066. bottom: 65/1735
  38067. }
  38068. },
  38069. frontDemi: {
  38070. height: math.unit(65, "feet"),
  38071. name: "Front (Demi)",
  38072. image: {
  38073. source: "./media/characters/alek-dryagan/front-demi.svg",
  38074. extra: 1669/1642,
  38075. bottom: 49/1718
  38076. }
  38077. },
  38078. backDemi: {
  38079. height: math.unit(65, "feet"),
  38080. name: "Back (Demi)",
  38081. image: {
  38082. source: "./media/characters/alek-dryagan/back-demi.svg",
  38083. extra: 1658/1637,
  38084. bottom: 40/1698
  38085. }
  38086. },
  38087. mawHuman: {
  38088. height: math.unit(0.3, "feet"),
  38089. name: "Maw (Human)",
  38090. image: {
  38091. source: "./media/characters/alek-dryagan/maw-human.svg"
  38092. }
  38093. },
  38094. mawDemi: {
  38095. height: math.unit(3.8, "feet"),
  38096. name: "Maw (Demi)",
  38097. image: {
  38098. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(5 + 7/12, "feet"),
  38106. default: true
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38112. {
  38113. frontHuman: {
  38114. height: math.unit(5 + 2/12, "feet"),
  38115. name: "Front (Human)",
  38116. image: {
  38117. source: "./media/characters/gen/front-human.svg",
  38118. extra: 1627/1538,
  38119. bottom: 71/1698
  38120. }
  38121. },
  38122. backHuman: {
  38123. height: math.unit(5 + 2/12, "feet"),
  38124. name: "Back (Human)",
  38125. image: {
  38126. source: "./media/characters/gen/back-human.svg",
  38127. extra: 1638/1548,
  38128. bottom: 69/1707
  38129. }
  38130. },
  38131. frontDemi: {
  38132. height: math.unit(5 + 2/12, "feet"),
  38133. name: "Front (Demi)",
  38134. image: {
  38135. source: "./media/characters/gen/front-demi.svg",
  38136. extra: 1627/1538,
  38137. bottom: 71/1698
  38138. }
  38139. },
  38140. backDemi: {
  38141. height: math.unit(5 + 2/12, "feet"),
  38142. name: "Back (Demi)",
  38143. image: {
  38144. source: "./media/characters/gen/back-demi.svg",
  38145. extra: 1638/1548,
  38146. bottom: 69/1707
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(5 + 2/12, "feet"),
  38154. default: true
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38160. {
  38161. frontImp: {
  38162. height: math.unit(1 + 11/12, "feet"),
  38163. name: "Front (Imp)",
  38164. image: {
  38165. source: "./media/characters/max-kobold/front-imp.svg",
  38166. extra: 1238/1134,
  38167. bottom: 81/1319
  38168. }
  38169. },
  38170. backImp: {
  38171. height: math.unit(1 + 11/12, "feet"),
  38172. name: "Back (Imp)",
  38173. image: {
  38174. source: "./media/characters/max-kobold/back-imp.svg",
  38175. extra: 1334/1175,
  38176. bottom: 34/1368
  38177. }
  38178. },
  38179. frontDemi: {
  38180. height: math.unit(5 + 9/12, "feet"),
  38181. name: "Front (Demi)",
  38182. image: {
  38183. source: "./media/characters/max-kobold/front-demi.svg",
  38184. extra: 1715/1685,
  38185. bottom: 54/1769
  38186. }
  38187. },
  38188. backDemi: {
  38189. height: math.unit(5 + 9/12, "feet"),
  38190. name: "Back (Demi)",
  38191. image: {
  38192. source: "./media/characters/max-kobold/back-demi.svg",
  38193. extra: 1752/1729,
  38194. bottom: 41/1793
  38195. }
  38196. },
  38197. handImp: {
  38198. height: math.unit(0.45, "feet"),
  38199. name: "Hand (Imp)",
  38200. image: {
  38201. source: "./media/characters/max-kobold/hand.svg"
  38202. }
  38203. },
  38204. pawImp: {
  38205. height: math.unit(0.46, "feet"),
  38206. name: "Paw (Imp)",
  38207. image: {
  38208. source: "./media/characters/max-kobold/paw.svg"
  38209. }
  38210. },
  38211. handDemi: {
  38212. height: math.unit(0.80, "feet"),
  38213. name: "Hand (Demi)",
  38214. image: {
  38215. source: "./media/characters/max-kobold/hand.svg"
  38216. }
  38217. },
  38218. pawDemi: {
  38219. height: math.unit(1.1, "feet"),
  38220. name: "Paw (Demi)",
  38221. image: {
  38222. source: "./media/characters/max-kobold/paw.svg"
  38223. }
  38224. },
  38225. headImp: {
  38226. height: math.unit(1.33, "feet"),
  38227. name: "Head (Imp)",
  38228. image: {
  38229. source: "./media/characters/max-kobold/head-imp.svg"
  38230. }
  38231. },
  38232. mawImp: {
  38233. height: math.unit(0.75, "feet"),
  38234. name: "Maw (Imp)",
  38235. image: {
  38236. source: "./media/characters/max-kobold/maw-imp.svg"
  38237. }
  38238. },
  38239. mawDemi: {
  38240. height: math.unit(0.42, "feet"),
  38241. name: "Maw (Demi)",
  38242. image: {
  38243. source: "./media/characters/max-kobold/maw-demi.svg"
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(1 + 11/12, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(7 + 5/12, "feet"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/carbon/front.svg",
  38263. extra: 1754/1689,
  38264. bottom: 65/1819
  38265. }
  38266. },
  38267. back: {
  38268. height: math.unit(7 + 5/12, "feet"),
  38269. name: "Back",
  38270. image: {
  38271. source: "./media/characters/carbon/back.svg",
  38272. extra: 1762/1695,
  38273. bottom: 24/1786
  38274. }
  38275. },
  38276. frontGigantamax: {
  38277. height: math.unit(150, "feet"),
  38278. name: "Front (Gigantamax)",
  38279. image: {
  38280. source: "./media/characters/carbon/front-gigantamax.svg",
  38281. extra: 1826/1669,
  38282. bottom: 59/1885
  38283. }
  38284. },
  38285. backGigantamax: {
  38286. height: math.unit(150, "feet"),
  38287. name: "Back (Gigantamax)",
  38288. image: {
  38289. source: "./media/characters/carbon/back-gigantamax.svg",
  38290. extra: 1796/1653,
  38291. bottom: 53/1849
  38292. }
  38293. },
  38294. maw: {
  38295. height: math.unit(0.48, "feet"),
  38296. name: "Maw",
  38297. image: {
  38298. source: "./media/characters/carbon/maw.svg"
  38299. }
  38300. },
  38301. mawGigantamax: {
  38302. height: math.unit(7.5, "feet"),
  38303. name: "Maw (Gigantamax)",
  38304. image: {
  38305. source: "./media/characters/carbon/maw-gigantamax.svg"
  38306. }
  38307. },
  38308. },
  38309. [
  38310. {
  38311. name: "Normal",
  38312. height: math.unit(7 + 5/12, "feet"),
  38313. default: true
  38314. },
  38315. ]
  38316. ))
  38317. characterMakers.push(() => makeCharacter(
  38318. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38319. {
  38320. front: {
  38321. height: math.unit(6, "feet"),
  38322. name: "Front",
  38323. image: {
  38324. source: "./media/characters/maverick/front.svg",
  38325. extra: 1672/1661,
  38326. bottom: 85/1757
  38327. }
  38328. },
  38329. back: {
  38330. height: math.unit(6, "feet"),
  38331. name: "Back",
  38332. image: {
  38333. source: "./media/characters/maverick/back.svg",
  38334. extra: 1642/1631,
  38335. bottom: 38/1680
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(6, "feet"),
  38343. default: true
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38349. {
  38350. front: {
  38351. height: math.unit(15, "feet"),
  38352. weight: math.unit(615, "lb"),
  38353. name: "Front",
  38354. image: {
  38355. source: "./media/characters/grockle/front.svg",
  38356. extra: 1535/1427,
  38357. bottom: 56/1591
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(15, "feet"),
  38365. default: true
  38366. },
  38367. {
  38368. name: "Large",
  38369. height: math.unit(150, "feet")
  38370. },
  38371. {
  38372. name: "Macro",
  38373. height: math.unit(1876, "feet")
  38374. },
  38375. {
  38376. name: "Mega Macro",
  38377. height: math.unit(121940, "feet")
  38378. },
  38379. {
  38380. name: "Giga Macro",
  38381. height: math.unit(750, "km")
  38382. },
  38383. {
  38384. name: "Tera Macro",
  38385. height: math.unit(750000, "km")
  38386. },
  38387. {
  38388. name: "Galactic",
  38389. height: math.unit(1.4e5, "km")
  38390. },
  38391. {
  38392. name: "Godlike",
  38393. height: math.unit(9.8e280, "galaxies")
  38394. },
  38395. ]
  38396. ))
  38397. characterMakers.push(() => makeCharacter(
  38398. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38399. {
  38400. front: {
  38401. height: math.unit(11, "meters"),
  38402. weight: math.unit(20, "tonnes"),
  38403. name: "Front",
  38404. image: {
  38405. source: "./media/characters/alistair/front.svg",
  38406. extra: 1265/1009,
  38407. bottom: 93/1358
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "Normal",
  38414. height: math.unit(11, "meters"),
  38415. default: true
  38416. },
  38417. ]
  38418. ))
  38419. characterMakers.push(() => makeCharacter(
  38420. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38421. {
  38422. front: {
  38423. height: math.unit(5 + 8/12, "feet"),
  38424. name: "Front",
  38425. image: {
  38426. source: "./media/characters/haruka/front.svg",
  38427. extra: 2012/1952,
  38428. bottom: 0/2012
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(5 + 8/12, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38442. {
  38443. back: {
  38444. height: math.unit(9, "feet"),
  38445. name: "Back",
  38446. image: {
  38447. source: "./media/characters/vivian-sylveon/back.svg",
  38448. extra: 1853/1714,
  38449. bottom: 0/1853
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(9, "feet"),
  38457. default: true
  38458. },
  38459. {
  38460. name: "Macro",
  38461. height: math.unit(500, "feet")
  38462. },
  38463. {
  38464. name: "Megamacro",
  38465. height: math.unit(600, "miles")
  38466. },
  38467. {
  38468. name: "Gigamacro",
  38469. height: math.unit(30000, "miles")
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38475. {
  38476. anthro: {
  38477. height: math.unit(5 + 10/12, "feet"),
  38478. weight: math.unit(100, "lb"),
  38479. name: "Anthro",
  38480. image: {
  38481. source: "./media/characters/daiki/anthro.svg",
  38482. extra: 1115/1027,
  38483. bottom: 69/1184
  38484. }
  38485. },
  38486. feral: {
  38487. height: math.unit(200, "feet"),
  38488. name: "Feral",
  38489. image: {
  38490. source: "./media/characters/daiki/feral.svg",
  38491. extra: 1256/313,
  38492. bottom: 39/1295
  38493. }
  38494. },
  38495. feralHead: {
  38496. height: math.unit(171, "feet"),
  38497. name: "Feral Head",
  38498. image: {
  38499. source: "./media/characters/daiki/feral-head.svg"
  38500. }
  38501. },
  38502. manaDragon: {
  38503. height: math.unit(170, "meters"),
  38504. name: "Mana-dragon",
  38505. image: {
  38506. source: "./media/characters/daiki/mana-dragon.svg",
  38507. extra: 763/420,
  38508. bottom: 97/860
  38509. }
  38510. },
  38511. },
  38512. [
  38513. {
  38514. name: "Normal",
  38515. height: math.unit(5 + 10/12, "feet"),
  38516. default: true
  38517. },
  38518. ]
  38519. ))
  38520. characterMakers.push(() => makeCharacter(
  38521. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38522. {
  38523. fullyEquippedFront: {
  38524. height: math.unit(3 + 1/12, "feet"),
  38525. weight: math.unit(24, "lb"),
  38526. name: "Fully Equipped (Front)",
  38527. image: {
  38528. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38529. extra: 687/605,
  38530. bottom: 18/705
  38531. }
  38532. },
  38533. fullyEquippedBack: {
  38534. height: math.unit(3 + 1/12, "feet"),
  38535. weight: math.unit(24, "lb"),
  38536. name: "Fully Equipped (Back)",
  38537. image: {
  38538. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38539. extra: 689/590,
  38540. bottom: 18/707
  38541. }
  38542. },
  38543. dailyWear: {
  38544. height: math.unit(3 + 1/12, "feet"),
  38545. weight: math.unit(24, "lb"),
  38546. name: "Daily Wear",
  38547. image: {
  38548. source: "./media/characters/tea-spot/daily-wear.svg",
  38549. extra: 701/620,
  38550. bottom: 21/722
  38551. }
  38552. },
  38553. maidWork: {
  38554. height: math.unit(3 + 1/12, "feet"),
  38555. weight: math.unit(24, "lb"),
  38556. name: "Maid Work",
  38557. image: {
  38558. source: "./media/characters/tea-spot/maid-work.svg",
  38559. extra: 693/609,
  38560. bottom: 15/708
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(3 + 1/12, "feet"),
  38568. default: true
  38569. },
  38570. ]
  38571. ))
  38572. characterMakers.push(() => makeCharacter(
  38573. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38574. {
  38575. front: {
  38576. height: math.unit(175, "cm"),
  38577. weight: math.unit(75, "kg"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/chee/front.svg",
  38581. extra: 1796/1740,
  38582. bottom: 40/1836
  38583. }
  38584. },
  38585. },
  38586. [
  38587. {
  38588. name: "Micro-Micro",
  38589. height: math.unit(1, "nm")
  38590. },
  38591. {
  38592. name: "Micro-erst",
  38593. height: math.unit(1, "micrometer")
  38594. },
  38595. {
  38596. name: "Micro-er",
  38597. height: math.unit(1, "cm")
  38598. },
  38599. {
  38600. name: "Normal",
  38601. height: math.unit(175, "cm"),
  38602. default: true
  38603. },
  38604. {
  38605. name: "Macro",
  38606. height: math.unit(100, "m")
  38607. },
  38608. {
  38609. name: "Macro-er",
  38610. height: math.unit(1, "km")
  38611. },
  38612. {
  38613. name: "Macro-erst",
  38614. height: math.unit(10, "km")
  38615. },
  38616. {
  38617. name: "Macro-Macro",
  38618. height: math.unit(100, "km")
  38619. },
  38620. ]
  38621. ))
  38622. characterMakers.push(() => makeCharacter(
  38623. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38624. {
  38625. front: {
  38626. height: math.unit(11 + 9/12, "feet"),
  38627. weight: math.unit(935, "lb"),
  38628. name: "Front",
  38629. image: {
  38630. source: "./media/characters/kingsley/front.svg",
  38631. extra: 1803/1674,
  38632. bottom: 127/1930
  38633. }
  38634. },
  38635. frontNude: {
  38636. height: math.unit(11 + 9/12, "feet"),
  38637. weight: math.unit(935, "lb"),
  38638. name: "Front (Nude)",
  38639. image: {
  38640. source: "./media/characters/kingsley/front-nude.svg",
  38641. extra: 1803/1674,
  38642. bottom: 127/1930
  38643. }
  38644. },
  38645. },
  38646. [
  38647. {
  38648. name: "Normal",
  38649. height: math.unit(11 + 9/12, "feet"),
  38650. default: true
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38656. {
  38657. side: {
  38658. height: math.unit(9, "feet"),
  38659. name: "Side",
  38660. image: {
  38661. source: "./media/characters/rymel/side.svg",
  38662. extra: 792/469,
  38663. bottom: 121/913
  38664. }
  38665. },
  38666. maw: {
  38667. height: math.unit(2.4, "meters"),
  38668. name: "Maw",
  38669. image: {
  38670. source: "./media/characters/rymel/maw.svg"
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "House Drake",
  38677. height: math.unit(2, "feet")
  38678. },
  38679. {
  38680. name: "Reduced",
  38681. height: math.unit(4.5, "feet")
  38682. },
  38683. {
  38684. name: "Normal",
  38685. height: math.unit(9, "feet"),
  38686. default: true
  38687. },
  38688. ]
  38689. ))
  38690. characterMakers.push(() => makeCharacter(
  38691. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38692. {
  38693. front: {
  38694. height: math.unit(1.74, "meters"),
  38695. weight: math.unit(55, "kg"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/rubus/front.svg",
  38699. extra: 1894/1742,
  38700. bottom: 44/1938
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(1.74, "meters"),
  38708. default: true
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(5 + 2/12, "feet"),
  38717. weight: math.unit(112, "lb"),
  38718. name: "Front",
  38719. image: {
  38720. source: "./media/characters/cassie-kingston/front.svg",
  38721. extra: 1438/1390,
  38722. bottom: 47/1485
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Normal",
  38729. height: math.unit(5 + 2/12, "feet"),
  38730. default: true
  38731. },
  38732. {
  38733. name: "Macro",
  38734. height: math.unit(128, "feet")
  38735. },
  38736. {
  38737. name: "Megamacro",
  38738. height: math.unit(2.56, "miles")
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(7, "feet"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/fox/front.svg",
  38750. extra: 1798/1703,
  38751. bottom: 55/1853
  38752. }
  38753. },
  38754. back: {
  38755. height: math.unit(7, "feet"),
  38756. name: "Back",
  38757. image: {
  38758. source: "./media/characters/fox/back.svg",
  38759. extra: 1748/1649,
  38760. bottom: 32/1780
  38761. }
  38762. },
  38763. head: {
  38764. height: math.unit(1.95, "feet"),
  38765. name: "Head",
  38766. image: {
  38767. source: "./media/characters/fox/head.svg"
  38768. }
  38769. },
  38770. dick: {
  38771. height: math.unit(1.33, "feet"),
  38772. name: "Dick",
  38773. image: {
  38774. source: "./media/characters/fox/dick.svg"
  38775. }
  38776. },
  38777. foot: {
  38778. height: math.unit(1, "feet"),
  38779. name: "Foot",
  38780. image: {
  38781. source: "./media/characters/fox/foot.svg"
  38782. }
  38783. },
  38784. paw: {
  38785. height: math.unit(0.92, "feet"),
  38786. name: "Paw",
  38787. image: {
  38788. source: "./media/characters/fox/paw.svg"
  38789. }
  38790. },
  38791. },
  38792. [
  38793. {
  38794. name: "Small",
  38795. height: math.unit(3, "inches")
  38796. },
  38797. {
  38798. name: "\"Realistic\"",
  38799. height: math.unit(7, "feet")
  38800. },
  38801. {
  38802. name: "Normal",
  38803. height: math.unit(150, "feet"),
  38804. default: true
  38805. },
  38806. {
  38807. name: "BIG",
  38808. height: math.unit(1200, "feet")
  38809. },
  38810. {
  38811. name: "👀",
  38812. height: math.unit(5, "miles")
  38813. },
  38814. {
  38815. name: "👀👀👀",
  38816. height: math.unit(64, "miles")
  38817. },
  38818. ]
  38819. ))
  38820. characterMakers.push(() => makeCharacter(
  38821. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38822. {
  38823. front: {
  38824. height: math.unit(625, "feet"),
  38825. name: "Front",
  38826. image: {
  38827. source: "./media/characters/asonja-rossa/front.svg",
  38828. extra: 1833/1686,
  38829. bottom: 24/1857
  38830. }
  38831. },
  38832. back: {
  38833. height: math.unit(625, "feet"),
  38834. name: "Back",
  38835. image: {
  38836. source: "./media/characters/asonja-rossa/back.svg",
  38837. extra: 1852/1753,
  38838. bottom: 26/1878
  38839. }
  38840. },
  38841. },
  38842. [
  38843. {
  38844. name: "Macro",
  38845. height: math.unit(625, "feet"),
  38846. default: true
  38847. },
  38848. ]
  38849. ))
  38850. characterMakers.push(() => makeCharacter(
  38851. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38852. {
  38853. side: {
  38854. height: math.unit(8, "feet"),
  38855. name: "Side",
  38856. image: {
  38857. source: "./media/characters/rezukii/side.svg",
  38858. extra: 979/542,
  38859. bottom: 87/1066
  38860. }
  38861. },
  38862. sitting: {
  38863. height: math.unit(14.6, "feet"),
  38864. name: "Sitting",
  38865. image: {
  38866. source: "./media/characters/rezukii/sitting.svg",
  38867. extra: 1023/813,
  38868. bottom: 45/1068
  38869. }
  38870. },
  38871. },
  38872. [
  38873. {
  38874. name: "Tiny",
  38875. height: math.unit(2, "feet")
  38876. },
  38877. {
  38878. name: "Smol",
  38879. height: math.unit(4, "feet")
  38880. },
  38881. {
  38882. name: "Normal",
  38883. height: math.unit(8, "feet"),
  38884. default: true
  38885. },
  38886. {
  38887. name: "Big",
  38888. height: math.unit(12, "feet")
  38889. },
  38890. {
  38891. name: "Macro",
  38892. height: math.unit(30, "feet")
  38893. },
  38894. ]
  38895. ))
  38896. characterMakers.push(() => makeCharacter(
  38897. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38898. {
  38899. front: {
  38900. height: math.unit(14, "feet"),
  38901. weight: math.unit(9.5, "tonnes"),
  38902. name: "Front",
  38903. image: {
  38904. source: "./media/characters/dawnheart/front.svg",
  38905. extra: 2792/2675,
  38906. bottom: 64/2856
  38907. }
  38908. },
  38909. },
  38910. [
  38911. {
  38912. name: "Normal",
  38913. height: math.unit(14, "feet"),
  38914. default: true
  38915. },
  38916. ]
  38917. ))
  38918. characterMakers.push(() => makeCharacter(
  38919. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38920. {
  38921. front: {
  38922. height: math.unit(1.7, "m"),
  38923. name: "Front",
  38924. image: {
  38925. source: "./media/characters/gladi/front.svg",
  38926. extra: 1460/1362,
  38927. bottom: 19/1479
  38928. }
  38929. },
  38930. back: {
  38931. height: math.unit(1.7, "m"),
  38932. name: "Back",
  38933. image: {
  38934. source: "./media/characters/gladi/back.svg",
  38935. extra: 1459/1357,
  38936. bottom: 12/1471
  38937. }
  38938. },
  38939. feral: {
  38940. height: math.unit(2.05, "m"),
  38941. name: "Feral",
  38942. image: {
  38943. source: "./media/characters/gladi/feral.svg",
  38944. extra: 821/557,
  38945. bottom: 91/912
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Shortest",
  38952. height: math.unit(70, "cm")
  38953. },
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(1.7, "m")
  38957. },
  38958. {
  38959. name: "Macro",
  38960. height: math.unit(10, "m"),
  38961. default: true
  38962. },
  38963. {
  38964. name: "Tallest",
  38965. height: math.unit(200, "m")
  38966. },
  38967. ]
  38968. ))
  38969. characterMakers.push(() => makeCharacter(
  38970. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38971. {
  38972. front: {
  38973. height: math.unit(5 + 7/12, "feet"),
  38974. weight: math.unit(2, "tons"),
  38975. name: "Front",
  38976. image: {
  38977. source: "./media/characters/erdno/front.svg",
  38978. extra: 1234/1129,
  38979. bottom: 35/1269
  38980. }
  38981. },
  38982. angled: {
  38983. height: math.unit(5 + 7/12, "feet"),
  38984. weight: math.unit(2, "tons"),
  38985. name: "Angled",
  38986. image: {
  38987. source: "./media/characters/erdno/angled.svg",
  38988. extra: 1185/1139,
  38989. bottom: 36/1221
  38990. }
  38991. },
  38992. side: {
  38993. height: math.unit(5 + 7/12, "feet"),
  38994. weight: math.unit(2, "tons"),
  38995. name: "Side",
  38996. image: {
  38997. source: "./media/characters/erdno/side.svg",
  38998. extra: 1191/1144,
  38999. bottom: 40/1231
  39000. }
  39001. },
  39002. back: {
  39003. height: math.unit(5 + 7/12, "feet"),
  39004. weight: math.unit(2, "tons"),
  39005. name: "Back",
  39006. image: {
  39007. source: "./media/characters/erdno/back.svg",
  39008. extra: 1202/1146,
  39009. bottom: 17/1219
  39010. }
  39011. },
  39012. frontNsfw: {
  39013. height: math.unit(5 + 7/12, "feet"),
  39014. weight: math.unit(2, "tons"),
  39015. name: "Front (NSFW)",
  39016. image: {
  39017. source: "./media/characters/erdno/front-nsfw.svg",
  39018. extra: 1234/1129,
  39019. bottom: 35/1269
  39020. }
  39021. },
  39022. angledNsfw: {
  39023. height: math.unit(5 + 7/12, "feet"),
  39024. weight: math.unit(2, "tons"),
  39025. name: "Angled (NSFW)",
  39026. image: {
  39027. source: "./media/characters/erdno/angled-nsfw.svg",
  39028. extra: 1185/1139,
  39029. bottom: 36/1221
  39030. }
  39031. },
  39032. sideNsfw: {
  39033. height: math.unit(5 + 7/12, "feet"),
  39034. weight: math.unit(2, "tons"),
  39035. name: "Side (NSFW)",
  39036. image: {
  39037. source: "./media/characters/erdno/side-nsfw.svg",
  39038. extra: 1191/1144,
  39039. bottom: 40/1231
  39040. }
  39041. },
  39042. backNsfw: {
  39043. height: math.unit(5 + 7/12, "feet"),
  39044. weight: math.unit(2, "tons"),
  39045. name: "Back (NSFW)",
  39046. image: {
  39047. source: "./media/characters/erdno/back-nsfw.svg",
  39048. extra: 1202/1146,
  39049. bottom: 17/1219
  39050. }
  39051. },
  39052. frontHyper: {
  39053. height: math.unit(5 + 7/12, "feet"),
  39054. weight: math.unit(2, "tons"),
  39055. name: "Front (Hyper)",
  39056. image: {
  39057. source: "./media/characters/erdno/front-hyper.svg",
  39058. extra: 1298/1136,
  39059. bottom: 35/1333
  39060. }
  39061. },
  39062. },
  39063. [
  39064. {
  39065. name: "Normal",
  39066. height: math.unit(5 + 7/12, "feet"),
  39067. default: true
  39068. },
  39069. {
  39070. name: "Big",
  39071. height: math.unit(5.7, "meters")
  39072. },
  39073. {
  39074. name: "Macro",
  39075. height: math.unit(5.7, "kilometers")
  39076. },
  39077. {
  39078. name: "Megamacro",
  39079. height: math.unit(5.7, "earths")
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39085. {
  39086. front: {
  39087. height: math.unit(5 + 10/12, "feet"),
  39088. weight: math.unit(150, "lb"),
  39089. name: "Front",
  39090. image: {
  39091. source: "./media/characters/jamie/front.svg",
  39092. extra: 1908/1768,
  39093. bottom: 19/1927
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Minimum",
  39100. height: math.unit(2, "cm")
  39101. },
  39102. {
  39103. name: "Micro",
  39104. height: math.unit(3, "inches")
  39105. },
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(5 + 10/12, "feet"),
  39109. default: true
  39110. },
  39111. {
  39112. name: "Macro",
  39113. height: math.unit(150, "feet")
  39114. },
  39115. {
  39116. name: "Megamacro",
  39117. height: math.unit(10000, "m")
  39118. },
  39119. ]
  39120. ))
  39121. characterMakers.push(() => makeCharacter(
  39122. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39123. {
  39124. front: {
  39125. height: math.unit(2, "meters"),
  39126. weight: math.unit(100, "kg"),
  39127. name: "Front",
  39128. image: {
  39129. source: "./media/characters/shiron/front.svg",
  39130. extra: 2103/1985,
  39131. bottom: 98/2201
  39132. }
  39133. },
  39134. back: {
  39135. height: math.unit(2, "meters"),
  39136. weight: math.unit(100, "kg"),
  39137. name: "Back",
  39138. image: {
  39139. source: "./media/characters/shiron/back.svg",
  39140. extra: 2110/2015,
  39141. bottom: 89/2199
  39142. }
  39143. },
  39144. hand: {
  39145. height: math.unit(0.96, "feet"),
  39146. name: "Hand",
  39147. image: {
  39148. source: "./media/characters/shiron/hand.svg"
  39149. }
  39150. },
  39151. foot: {
  39152. height: math.unit(1.464, "feet"),
  39153. name: "Foot",
  39154. image: {
  39155. source: "./media/characters/shiron/foot.svg"
  39156. }
  39157. },
  39158. },
  39159. [
  39160. {
  39161. name: "Normal",
  39162. height: math.unit(2, "meters")
  39163. },
  39164. {
  39165. name: "Macro",
  39166. height: math.unit(500, "meters"),
  39167. default: true
  39168. },
  39169. {
  39170. name: "Megamacro",
  39171. height: math.unit(20, "km")
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39177. {
  39178. front: {
  39179. height: math.unit(6, "feet"),
  39180. name: "Front",
  39181. image: {
  39182. source: "./media/characters/sam/front.svg",
  39183. extra: 849/826,
  39184. bottom: 19/868
  39185. }
  39186. },
  39187. },
  39188. [
  39189. {
  39190. name: "Normal",
  39191. height: math.unit(6, "feet"),
  39192. default: true
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(8 + 4/12, "feet"),
  39201. weight: math.unit(122, "kg"),
  39202. name: "Front",
  39203. image: {
  39204. source: "./media/characters/namori-kurogawa/front.svg",
  39205. extra: 1894/1576,
  39206. bottom: 34/1928
  39207. }
  39208. },
  39209. },
  39210. [
  39211. {
  39212. name: "Normal",
  39213. height: math.unit(8 + 4/12, "feet"),
  39214. default: true
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(9, "feet"),
  39223. weight: math.unit(621, "lb"),
  39224. name: "Front",
  39225. image: {
  39226. source: "./media/characters/unmru/front.svg",
  39227. extra: 1853/1747,
  39228. bottom: 73/1926
  39229. }
  39230. },
  39231. side: {
  39232. height: math.unit(9, "feet"),
  39233. weight: math.unit(621, "lb"),
  39234. name: "Side",
  39235. image: {
  39236. source: "./media/characters/unmru/side.svg",
  39237. extra: 1781/1671,
  39238. bottom: 127/1908
  39239. }
  39240. },
  39241. back: {
  39242. height: math.unit(9, "feet"),
  39243. weight: math.unit(621, "lb"),
  39244. name: "Back",
  39245. image: {
  39246. source: "./media/characters/unmru/back.svg",
  39247. extra: 1894/1765,
  39248. bottom: 75/1969
  39249. }
  39250. },
  39251. dick: {
  39252. height: math.unit(3, "feet"),
  39253. weight: math.unit(35, "lb"),
  39254. name: "Dick",
  39255. image: {
  39256. source: "./media/characters/unmru/dick.svg"
  39257. }
  39258. },
  39259. },
  39260. [
  39261. {
  39262. name: "Normal",
  39263. height: math.unit(9, "feet")
  39264. },
  39265. {
  39266. name: "Natural",
  39267. height: math.unit(27, "feet"),
  39268. default: true
  39269. },
  39270. {
  39271. name: "Giant",
  39272. height: math.unit(90, "feet")
  39273. },
  39274. {
  39275. name: "Kaiju",
  39276. height: math.unit(270, "feet")
  39277. },
  39278. {
  39279. name: "Macro",
  39280. height: math.unit(900, "feet")
  39281. },
  39282. {
  39283. name: "Macro+",
  39284. height: math.unit(2700, "feet")
  39285. },
  39286. {
  39287. name: "Megamacro",
  39288. height: math.unit(9000, "feet")
  39289. },
  39290. {
  39291. name: "City-Crushing",
  39292. height: math.unit(27000, "feet")
  39293. },
  39294. {
  39295. name: "Mountain-Mashing",
  39296. height: math.unit(90000, "feet")
  39297. },
  39298. {
  39299. name: "Earth-Eclipsing",
  39300. height: math.unit(2.7e8, "feet")
  39301. },
  39302. {
  39303. name: "Sol-Swallowing",
  39304. height: math.unit(9e10, "feet")
  39305. },
  39306. {
  39307. name: "Majoris-Munching",
  39308. height: math.unit(2.7e13, "feet")
  39309. },
  39310. ]
  39311. ))
  39312. characterMakers.push(() => makeCharacter(
  39313. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39314. {
  39315. front: {
  39316. height: math.unit(1, "inch"),
  39317. name: "Front",
  39318. image: {
  39319. source: "./media/characters/squeaks-mouse/front.svg",
  39320. extra: 352/308,
  39321. bottom: 25/377
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Micro",
  39328. height: math.unit(1, "inch"),
  39329. default: true
  39330. },
  39331. ]
  39332. ))
  39333. characterMakers.push(() => makeCharacter(
  39334. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39335. {
  39336. side: {
  39337. height: math.unit(35, "feet"),
  39338. name: "Side",
  39339. image: {
  39340. source: "./media/characters/sayko/side.svg",
  39341. extra: 1697/1021,
  39342. bottom: 82/1779
  39343. }
  39344. },
  39345. head: {
  39346. height: math.unit(16, "feet"),
  39347. name: "Head",
  39348. image: {
  39349. source: "./media/characters/sayko/head.svg"
  39350. }
  39351. },
  39352. forepaw: {
  39353. height: math.unit(7.85, "feet"),
  39354. name: "Forepaw",
  39355. image: {
  39356. source: "./media/characters/sayko/forepaw.svg"
  39357. }
  39358. },
  39359. hindpaw: {
  39360. height: math.unit(8.8, "feet"),
  39361. name: "Hindpaw",
  39362. image: {
  39363. source: "./media/characters/sayko/hindpaw.svg"
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(35, "feet"),
  39371. default: true
  39372. },
  39373. {
  39374. name: "Colossus",
  39375. height: math.unit(100, "meters")
  39376. },
  39377. {
  39378. name: "\"Small\" Deity",
  39379. height: math.unit(1, "km")
  39380. },
  39381. {
  39382. name: "\"Large\" Deity",
  39383. height: math.unit(15, "km")
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39389. {
  39390. front: {
  39391. height: math.unit(6, "feet"),
  39392. weight: math.unit(250, "lb"),
  39393. name: "Front",
  39394. image: {
  39395. source: "./media/characters/mukiro/front.svg",
  39396. extra: 1368/1310,
  39397. bottom: 34/1402
  39398. }
  39399. },
  39400. },
  39401. [
  39402. {
  39403. name: "Normal",
  39404. height: math.unit(6, "feet"),
  39405. default: true
  39406. },
  39407. ]
  39408. ))
  39409. characterMakers.push(() => makeCharacter(
  39410. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39411. {
  39412. front: {
  39413. height: math.unit(12 + 4/12, "feet"),
  39414. name: "Front",
  39415. image: {
  39416. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39417. extra: 1346/1311,
  39418. bottom: 65/1411
  39419. }
  39420. },
  39421. },
  39422. [
  39423. {
  39424. name: "Base",
  39425. height: math.unit(12 + 4/12, "feet"),
  39426. default: true
  39427. },
  39428. {
  39429. name: "Macro",
  39430. height: math.unit(150, "feet")
  39431. },
  39432. {
  39433. name: "Mega",
  39434. height: math.unit(2, "miles")
  39435. },
  39436. {
  39437. name: "Demi God",
  39438. height: math.unit(4, "AU")
  39439. },
  39440. {
  39441. name: "God Size",
  39442. height: math.unit(1, "universe")
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(3 + 3/12, "feet"),
  39451. weight: math.unit(88, "lb"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/trey/front.svg",
  39455. extra: 1815/1509,
  39456. bottom: 60/1875
  39457. }
  39458. },
  39459. },
  39460. [
  39461. {
  39462. name: "Normal",
  39463. height: math.unit(3 + 3/12, "feet"),
  39464. default: true
  39465. },
  39466. ]
  39467. ))
  39468. characterMakers.push(() => makeCharacter(
  39469. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39470. {
  39471. front: {
  39472. height: math.unit(4, "meters"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/adelonda/front.svg",
  39476. extra: 1077/982,
  39477. bottom: 39/1116
  39478. }
  39479. },
  39480. back: {
  39481. height: math.unit(4, "meters"),
  39482. name: "Back",
  39483. image: {
  39484. source: "./media/characters/adelonda/back.svg",
  39485. extra: 1105/1003,
  39486. bottom: 25/1130
  39487. }
  39488. },
  39489. feral: {
  39490. height: math.unit(40/1.5, "meters"),
  39491. name: "Feral",
  39492. image: {
  39493. source: "./media/characters/adelonda/feral.svg",
  39494. extra: 597/271,
  39495. bottom: 387/984
  39496. }
  39497. },
  39498. },
  39499. [
  39500. {
  39501. name: "Normal",
  39502. height: math.unit(4, "meters"),
  39503. default: true
  39504. },
  39505. ]
  39506. ))
  39507. characterMakers.push(() => makeCharacter(
  39508. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39509. {
  39510. front: {
  39511. height: math.unit(8 + 4/12, "feet"),
  39512. weight: math.unit(670, "lb"),
  39513. name: "Front",
  39514. image: {
  39515. source: "./media/characters/acadiel/front.svg",
  39516. extra: 1901/1595,
  39517. bottom: 142/2043
  39518. }
  39519. },
  39520. },
  39521. [
  39522. {
  39523. name: "Normal",
  39524. height: math.unit(8 + 4/12, "feet"),
  39525. default: true
  39526. },
  39527. {
  39528. name: "Macro",
  39529. height: math.unit(200, "feet")
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(6 + 2/12, "feet"),
  39538. weight: math.unit(185, "lb"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/kayne-ein/front.svg",
  39542. extra: 1780/1560,
  39543. bottom: 81/1861
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(6 + 2/12, "feet"),
  39551. default: true
  39552. },
  39553. {
  39554. name: "Transformation Stage",
  39555. height: math.unit(15, "feet")
  39556. },
  39557. {
  39558. name: "Macro",
  39559. height: math.unit(150, "feet")
  39560. },
  39561. {
  39562. name: "Earth's Shadow",
  39563. height: math.unit(6200, "miles")
  39564. },
  39565. {
  39566. name: "Universal Demon",
  39567. height: math.unit(28e9, "parsecs")
  39568. },
  39569. {
  39570. name: "Multiverse God",
  39571. height: math.unit(3, "multiverses")
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(5 + 5/12, "feet"),
  39580. name: "Front",
  39581. image: {
  39582. source: "./media/characters/fawn/front.svg",
  39583. extra: 1873/1731,
  39584. bottom: 95/1968
  39585. }
  39586. },
  39587. back: {
  39588. height: math.unit(5 + 5/12, "feet"),
  39589. name: "Back",
  39590. image: {
  39591. source: "./media/characters/fawn/back.svg",
  39592. extra: 1813/1700,
  39593. bottom: 14/1827
  39594. }
  39595. },
  39596. hoof: {
  39597. height: math.unit(1.45, "feet"),
  39598. name: "Hoof",
  39599. image: {
  39600. source: "./media/characters/fawn/hoof.svg"
  39601. }
  39602. },
  39603. },
  39604. [
  39605. {
  39606. name: "Normal",
  39607. height: math.unit(5 + 5/12, "feet"),
  39608. default: true
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(2 + 5/12, "feet"),
  39617. name: "Front",
  39618. image: {
  39619. source: "./media/characters/orion/front.svg",
  39620. extra: 1366/1304,
  39621. bottom: 43/1409
  39622. }
  39623. },
  39624. paw: {
  39625. height: math.unit(0.52, "feet"),
  39626. name: "Paw",
  39627. image: {
  39628. source: "./media/characters/orion/paw.svg"
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(2 + 5/12, "feet"),
  39636. default: true
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39642. {
  39643. front: {
  39644. height: math.unit(5 + 10/12, "feet"),
  39645. name: "Front",
  39646. image: {
  39647. source: "./media/characters/vera/front.svg",
  39648. extra: 1680/1575,
  39649. bottom: 49/1729
  39650. }
  39651. },
  39652. back: {
  39653. height: math.unit(5 + 10/12, "feet"),
  39654. name: "Back",
  39655. image: {
  39656. source: "./media/characters/vera/back.svg",
  39657. extra: 1700/1588,
  39658. bottom: 18/1718
  39659. }
  39660. },
  39661. arcanine: {
  39662. height: math.unit(6 + 8/12, "feet"),
  39663. name: "Arcanine",
  39664. image: {
  39665. source: "./media/characters/vera/arcanine.svg",
  39666. extra: 1590/1511,
  39667. bottom: 71/1661
  39668. }
  39669. },
  39670. maw: {
  39671. height: math.unit(0.82, "feet"),
  39672. name: "Maw",
  39673. image: {
  39674. source: "./media/characters/vera/maw.svg"
  39675. }
  39676. },
  39677. mawArcanine: {
  39678. height: math.unit(0.97, "feet"),
  39679. name: "Maw (Arcanine)",
  39680. image: {
  39681. source: "./media/characters/vera/maw-arcanine.svg"
  39682. }
  39683. },
  39684. paw: {
  39685. height: math.unit(0.75, "feet"),
  39686. name: "Paw",
  39687. image: {
  39688. source: "./media/characters/vera/paw.svg"
  39689. }
  39690. },
  39691. pawprint: {
  39692. height: math.unit(0.52, "feet"),
  39693. name: "Pawprint",
  39694. image: {
  39695. source: "./media/characters/vera/pawprint.svg"
  39696. }
  39697. },
  39698. },
  39699. [
  39700. {
  39701. name: "Normal",
  39702. height: math.unit(5 + 10/12, "feet"),
  39703. default: true
  39704. },
  39705. {
  39706. name: "Macro",
  39707. height: math.unit(75, "feet")
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39713. {
  39714. front: {
  39715. height: math.unit(4, "feet"),
  39716. weight: math.unit(40, "lb"),
  39717. name: "Front",
  39718. image: {
  39719. source: "./media/characters/orvan-rabbit/front.svg",
  39720. extra: 1896/1642,
  39721. bottom: 29/1925
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Normal",
  39728. height: math.unit(4, "feet"),
  39729. default: true
  39730. },
  39731. ]
  39732. ))
  39733. characterMakers.push(() => makeCharacter(
  39734. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39735. {
  39736. front: {
  39737. height: math.unit(6, "feet"),
  39738. weight: math.unit(168, "lb"),
  39739. name: "Front",
  39740. image: {
  39741. source: "./media/characters/lisa/front.svg",
  39742. extra: 2065/1867,
  39743. bottom: 46/2111
  39744. }
  39745. },
  39746. back: {
  39747. height: math.unit(6, "feet"),
  39748. weight: math.unit(168, "lb"),
  39749. name: "Back",
  39750. image: {
  39751. source: "./media/characters/lisa/back.svg",
  39752. extra: 1982/1838,
  39753. bottom: 29/2011
  39754. }
  39755. },
  39756. maw: {
  39757. height: math.unit(0.81, "feet"),
  39758. name: "Maw",
  39759. image: {
  39760. source: "./media/characters/lisa/maw.svg"
  39761. }
  39762. },
  39763. paw: {
  39764. height: math.unit(0.9, "feet"),
  39765. name: "Paw",
  39766. image: {
  39767. source: "./media/characters/lisa/paw.svg"
  39768. }
  39769. },
  39770. caribousune: {
  39771. height: math.unit(7 + 2/12, "feet"),
  39772. weight: math.unit(268, "lb"),
  39773. name: "Caribousune",
  39774. image: {
  39775. source: "./media/characters/lisa/caribousune.svg",
  39776. extra: 1843/1633,
  39777. bottom: 29/1872
  39778. }
  39779. },
  39780. frontCaribousune: {
  39781. height: math.unit(7 + 2/12, "feet"),
  39782. weight: math.unit(268, "lb"),
  39783. name: "Front (Caribousune)",
  39784. image: {
  39785. source: "./media/characters/lisa/front-caribousune.svg",
  39786. extra: 1818/1638,
  39787. bottom: 52/1870
  39788. }
  39789. },
  39790. sideCaribousune: {
  39791. height: math.unit(7 + 2/12, "feet"),
  39792. weight: math.unit(268, "lb"),
  39793. name: "Side (Caribousune)",
  39794. image: {
  39795. source: "./media/characters/lisa/side-caribousune.svg",
  39796. extra: 1851/1635,
  39797. bottom: 16/1867
  39798. }
  39799. },
  39800. backCaribousune: {
  39801. height: math.unit(7 + 2/12, "feet"),
  39802. weight: math.unit(268, "lb"),
  39803. name: "Back (Caribousune)",
  39804. image: {
  39805. source: "./media/characters/lisa/back-caribousune.svg",
  39806. extra: 1801/1604,
  39807. bottom: 44/1845
  39808. }
  39809. },
  39810. caribou: {
  39811. height: math.unit(7 + 2/12, "feet"),
  39812. weight: math.unit(268, "lb"),
  39813. name: "Caribou",
  39814. image: {
  39815. source: "./media/characters/lisa/caribou.svg",
  39816. extra: 1843/1633,
  39817. bottom: 29/1872
  39818. }
  39819. },
  39820. frontCaribou: {
  39821. height: math.unit(7 + 2/12, "feet"),
  39822. weight: math.unit(268, "lb"),
  39823. name: "Front (Caribou)",
  39824. image: {
  39825. source: "./media/characters/lisa/front-caribou.svg",
  39826. extra: 1818/1638,
  39827. bottom: 52/1870
  39828. }
  39829. },
  39830. sideCaribou: {
  39831. height: math.unit(7 + 2/12, "feet"),
  39832. weight: math.unit(268, "lb"),
  39833. name: "Side (Caribou)",
  39834. image: {
  39835. source: "./media/characters/lisa/side-caribou.svg",
  39836. extra: 1851/1635,
  39837. bottom: 16/1867
  39838. }
  39839. },
  39840. backCaribou: {
  39841. height: math.unit(7 + 2/12, "feet"),
  39842. weight: math.unit(268, "lb"),
  39843. name: "Back (Caribou)",
  39844. image: {
  39845. source: "./media/characters/lisa/back-caribou.svg",
  39846. extra: 1801/1604,
  39847. bottom: 44/1845
  39848. }
  39849. },
  39850. mawCaribou: {
  39851. height: math.unit(1.45, "feet"),
  39852. name: "Maw (Caribou)",
  39853. image: {
  39854. source: "./media/characters/lisa/maw-caribou.svg"
  39855. }
  39856. },
  39857. mawCaribousune: {
  39858. height: math.unit(1.45, "feet"),
  39859. name: "Maw (Caribousune)",
  39860. image: {
  39861. source: "./media/characters/lisa/maw-caribousune.svg"
  39862. }
  39863. },
  39864. pawCaribousune: {
  39865. height: math.unit(1.61, "feet"),
  39866. name: "Paw (Caribou)",
  39867. image: {
  39868. source: "./media/characters/lisa/paw-caribousune.svg"
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Normal",
  39875. height: math.unit(6, "feet")
  39876. },
  39877. {
  39878. name: "God Size",
  39879. height: math.unit(72, "feet"),
  39880. default: true
  39881. },
  39882. {
  39883. name: "Towering",
  39884. height: math.unit(288, "feet")
  39885. },
  39886. {
  39887. name: "City Size",
  39888. height: math.unit(48384, "feet")
  39889. },
  39890. {
  39891. name: "Continental",
  39892. height: math.unit(4200, "miles")
  39893. },
  39894. {
  39895. name: "Planet Eater",
  39896. height: math.unit(42, "earths")
  39897. },
  39898. {
  39899. name: "Star Swallower",
  39900. height: math.unit(42, "solarradii")
  39901. },
  39902. {
  39903. name: "System Swallower",
  39904. height: math.unit(84000, "AU")
  39905. },
  39906. {
  39907. name: "Galaxy Gobbler",
  39908. height: math.unit(42, "galaxies")
  39909. },
  39910. {
  39911. name: "Universe Devourer",
  39912. height: math.unit(42, "universes")
  39913. },
  39914. {
  39915. name: "Multiverse Muncher",
  39916. height: math.unit(42, "multiverses")
  39917. },
  39918. ]
  39919. ))
  39920. characterMakers.push(() => makeCharacter(
  39921. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39922. {
  39923. front: {
  39924. height: math.unit(36, "feet"),
  39925. name: "Front",
  39926. image: {
  39927. source: "./media/characters/shadow-rat/front.svg",
  39928. extra: 1845/1758,
  39929. bottom: 83/1928
  39930. }
  39931. },
  39932. },
  39933. [
  39934. {
  39935. name: "Macro",
  39936. height: math.unit(36, "feet"),
  39937. default: true
  39938. },
  39939. ]
  39940. ))
  39941. characterMakers.push(() => makeCharacter(
  39942. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39943. {
  39944. side: {
  39945. height: math.unit(8, "feet"),
  39946. weight: math.unit(2630, "lb"),
  39947. name: "Side",
  39948. image: {
  39949. source: "./media/characters/torallia/side.svg",
  39950. extra: 2164/2021,
  39951. bottom: 371/2535
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Mortal Interaction",
  39958. height: math.unit(8, "feet")
  39959. },
  39960. {
  39961. name: "Natural",
  39962. height: math.unit(24, "feet"),
  39963. default: true
  39964. },
  39965. {
  39966. name: "Giant",
  39967. height: math.unit(80, "feet")
  39968. },
  39969. {
  39970. name: "Kaiju",
  39971. height: math.unit(240, "feet")
  39972. },
  39973. {
  39974. name: "Macro",
  39975. height: math.unit(800, "feet")
  39976. },
  39977. {
  39978. name: "Macro+",
  39979. height: math.unit(2400, "feet")
  39980. },
  39981. {
  39982. name: "Macro++",
  39983. height: math.unit(8000, "feet")
  39984. },
  39985. {
  39986. name: "City-Crushing",
  39987. height: math.unit(24000, "feet")
  39988. },
  39989. {
  39990. name: "Mountain-Mashing",
  39991. height: math.unit(80000, "feet")
  39992. },
  39993. {
  39994. name: "District Demolisher",
  39995. height: math.unit(240000, "feet")
  39996. },
  39997. {
  39998. name: "Tri-County Terror",
  39999. height: math.unit(800000, "feet")
  40000. },
  40001. {
  40002. name: "State Smasher",
  40003. height: math.unit(2.4e6, "feet")
  40004. },
  40005. {
  40006. name: "Nation Nemesis",
  40007. height: math.unit(8e6, "feet")
  40008. },
  40009. {
  40010. name: "Continent Cracker",
  40011. height: math.unit(2.4e7, "feet")
  40012. },
  40013. {
  40014. name: "Planet-Pillaging",
  40015. height: math.unit(8e7, "feet")
  40016. },
  40017. {
  40018. name: "Earth-Eclipsing",
  40019. height: math.unit(2.4e8, "feet")
  40020. },
  40021. {
  40022. name: "Jovian-Jostling",
  40023. height: math.unit(8e8, "feet")
  40024. },
  40025. {
  40026. name: "Gas Giant Gulper",
  40027. height: math.unit(2.4e9, "feet")
  40028. },
  40029. {
  40030. name: "Astral Annihilator",
  40031. height: math.unit(8e9, "feet")
  40032. },
  40033. {
  40034. name: "Celestial Conqueror",
  40035. height: math.unit(2.4e10, "feet")
  40036. },
  40037. {
  40038. name: "Sol-Swallowing",
  40039. height: math.unit(8e10, "feet")
  40040. },
  40041. {
  40042. name: "Hunter of the Heavens",
  40043. height: math.unit(2.4e13, "feet")
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40049. {
  40050. front: {
  40051. height: math.unit(6 + 8/12, "feet"),
  40052. weight: math.unit(250, "kilograms"),
  40053. volume: math.unit(28, "liters"),
  40054. name: "Front",
  40055. image: {
  40056. source: "./media/characters/rebecca-pawlson/front.svg",
  40057. extra: 1737/1596,
  40058. bottom: 107/1844
  40059. }
  40060. },
  40061. back: {
  40062. height: math.unit(6 + 8/12, "feet"),
  40063. weight: math.unit(250, "kilograms"),
  40064. volume: math.unit(28, "liters"),
  40065. name: "Back",
  40066. image: {
  40067. source: "./media/characters/rebecca-pawlson/back.svg",
  40068. extra: 1702/1523,
  40069. bottom: 86/1788
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Normal",
  40076. height: math.unit(6 + 8/12, "feet")
  40077. },
  40078. {
  40079. name: "Mini Macro",
  40080. height: math.unit(10, "feet"),
  40081. default: true
  40082. },
  40083. {
  40084. name: "Macro",
  40085. height: math.unit(100, "feet")
  40086. },
  40087. {
  40088. name: "Mega Macro",
  40089. height: math.unit(2500, "feet")
  40090. },
  40091. {
  40092. name: "Giga Macro",
  40093. height: math.unit(50, "miles")
  40094. },
  40095. ]
  40096. ))
  40097. characterMakers.push(() => makeCharacter(
  40098. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40099. {
  40100. front: {
  40101. height: math.unit(7 + 6/12, "feet"),
  40102. weight: math.unit(600, "lb"),
  40103. name: "Front",
  40104. image: {
  40105. source: "./media/characters/moxie-nova/front.svg",
  40106. extra: 1734/1652,
  40107. bottom: 41/1775
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Normal",
  40114. height: math.unit(7 + 6/12, "feet"),
  40115. default: true
  40116. },
  40117. ]
  40118. ))
  40119. characterMakers.push(() => makeCharacter(
  40120. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40121. {
  40122. goat: {
  40123. height: math.unit(4, "feet"),
  40124. weight: math.unit(180, "lb"),
  40125. name: "Goat",
  40126. image: {
  40127. source: "./media/characters/tiffany/goat.svg",
  40128. extra: 1845/1595,
  40129. bottom: 106/1951
  40130. }
  40131. },
  40132. front: {
  40133. height: math.unit(5, "feet"),
  40134. weight: math.unit(150, "lb"),
  40135. name: "Foxcoon",
  40136. image: {
  40137. source: "./media/characters/tiffany/foxcoon.svg",
  40138. extra: 1941/1845,
  40139. bottom: 58/1999
  40140. }
  40141. },
  40142. },
  40143. [
  40144. {
  40145. name: "Normal",
  40146. height: math.unit(5, "feet"),
  40147. default: true
  40148. },
  40149. ]
  40150. ))
  40151. characterMakers.push(() => makeCharacter(
  40152. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40153. {
  40154. front: {
  40155. height: math.unit(8, "feet"),
  40156. weight: math.unit(300, "lb"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/raxinath/front.svg",
  40160. extra: 1407/1309,
  40161. bottom: 39/1446
  40162. }
  40163. },
  40164. back: {
  40165. height: math.unit(8, "feet"),
  40166. weight: math.unit(300, "lb"),
  40167. name: "Back",
  40168. image: {
  40169. source: "./media/characters/raxinath/back.svg",
  40170. extra: 1405/1315,
  40171. bottom: 9/1414
  40172. }
  40173. },
  40174. },
  40175. [
  40176. {
  40177. name: "Speck",
  40178. height: math.unit(0.5, "nm")
  40179. },
  40180. {
  40181. name: "Micro",
  40182. height: math.unit(3, "inches")
  40183. },
  40184. {
  40185. name: "Kobold",
  40186. height: math.unit(3, "feet")
  40187. },
  40188. {
  40189. name: "Normal",
  40190. height: math.unit(8, "feet"),
  40191. default: true
  40192. },
  40193. {
  40194. name: "Giant",
  40195. height: math.unit(50, "feet")
  40196. },
  40197. {
  40198. name: "Macro",
  40199. height: math.unit(1000, "feet")
  40200. },
  40201. {
  40202. name: "Megamacro",
  40203. height: math.unit(1, "mile")
  40204. },
  40205. ]
  40206. ))
  40207. characterMakers.push(() => makeCharacter(
  40208. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40209. {
  40210. front: {
  40211. height: math.unit(10, "feet"),
  40212. weight: math.unit(1442, "lb"),
  40213. name: "Front",
  40214. image: {
  40215. source: "./media/characters/mal-dragon/front.svg",
  40216. extra: 1515/1444,
  40217. bottom: 113/1628
  40218. }
  40219. },
  40220. back: {
  40221. height: math.unit(10, "feet"),
  40222. weight: math.unit(1442, "lb"),
  40223. name: "Back",
  40224. image: {
  40225. source: "./media/characters/mal-dragon/back.svg",
  40226. extra: 1527/1434,
  40227. bottom: 25/1552
  40228. }
  40229. },
  40230. },
  40231. [
  40232. {
  40233. name: "Mortal Interaction",
  40234. height: math.unit(10, "feet"),
  40235. default: true
  40236. },
  40237. {
  40238. name: "Large",
  40239. height: math.unit(30, "feet")
  40240. },
  40241. {
  40242. name: "Kaiju",
  40243. height: math.unit(300, "feet")
  40244. },
  40245. {
  40246. name: "Megamacro",
  40247. height: math.unit(10000, "feet")
  40248. },
  40249. {
  40250. name: "Continent Cracker",
  40251. height: math.unit(30000000, "feet")
  40252. },
  40253. {
  40254. name: "Sol-Swallowing",
  40255. height: math.unit(1e11, "feet")
  40256. },
  40257. {
  40258. name: "Light Universal",
  40259. height: math.unit(5, "universes")
  40260. },
  40261. {
  40262. name: "Universe Atoms",
  40263. height: math.unit(1.829e9, "universes")
  40264. },
  40265. {
  40266. name: "Light Multiversal",
  40267. height: math.unit(5, "multiverses")
  40268. },
  40269. {
  40270. name: "Multiverse Atoms",
  40271. height: math.unit(1.829e9, "multiverses")
  40272. },
  40273. {
  40274. name: "Fabric of Time",
  40275. height: math.unit(1e262, "multiverses")
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40281. {
  40282. front: {
  40283. height: math.unit(9, "feet"),
  40284. weight: math.unit(1050, "lb"),
  40285. name: "Front",
  40286. image: {
  40287. source: "./media/characters/tabitha/front.svg",
  40288. extra: 2083/1994,
  40289. bottom: 68/2151
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Baseline",
  40296. height: math.unit(9, "feet"),
  40297. default: true
  40298. },
  40299. {
  40300. name: "Giant",
  40301. height: math.unit(90, "feet")
  40302. },
  40303. {
  40304. name: "Macro",
  40305. height: math.unit(900, "feet")
  40306. },
  40307. {
  40308. name: "Megamacro",
  40309. height: math.unit(9000, "feet")
  40310. },
  40311. {
  40312. name: "City-Crushing",
  40313. height: math.unit(27000, "feet")
  40314. },
  40315. {
  40316. name: "Mountain-Mashing",
  40317. height: math.unit(90000, "feet")
  40318. },
  40319. {
  40320. name: "Nation Nemesis",
  40321. height: math.unit(9e6, "feet")
  40322. },
  40323. {
  40324. name: "Continent Cracker",
  40325. height: math.unit(27e6, "feet")
  40326. },
  40327. {
  40328. name: "Earth-Eclipsing",
  40329. height: math.unit(2.7e8, "feet")
  40330. },
  40331. {
  40332. name: "Gas Giant Gulper",
  40333. height: math.unit(2.7e9, "feet")
  40334. },
  40335. {
  40336. name: "Sol-Swallowing",
  40337. height: math.unit(9e10, "feet")
  40338. },
  40339. {
  40340. name: "Galaxy Gulper",
  40341. height: math.unit(9, "galaxies")
  40342. },
  40343. {
  40344. name: "Cosmos Churner",
  40345. height: math.unit(9, "universes")
  40346. },
  40347. ]
  40348. ))
  40349. characterMakers.push(() => makeCharacter(
  40350. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40351. {
  40352. front: {
  40353. height: math.unit(160, "cm"),
  40354. weight: math.unit(55, "kg"),
  40355. name: "Front",
  40356. image: {
  40357. source: "./media/characters/tow/front.svg",
  40358. extra: 1751/1722,
  40359. bottom: 74/1825
  40360. }
  40361. },
  40362. },
  40363. [
  40364. {
  40365. name: "Norm",
  40366. height: math.unit(160, "cm")
  40367. },
  40368. {
  40369. name: "Casual",
  40370. height: math.unit(3200, "m"),
  40371. default: true
  40372. },
  40373. {
  40374. name: "Show-Off",
  40375. height: math.unit(160, "km")
  40376. },
  40377. ]
  40378. ))
  40379. characterMakers.push(() => makeCharacter(
  40380. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40381. {
  40382. front: {
  40383. height: math.unit(7 + 11/12, "feet"),
  40384. weight: math.unit(342.8, "lb"),
  40385. name: "Front",
  40386. image: {
  40387. source: "./media/characters/vivian-orca-dragon/front.svg",
  40388. extra: 1890/1865,
  40389. bottom: 28/1918
  40390. }
  40391. },
  40392. },
  40393. [
  40394. {
  40395. name: "Micro",
  40396. height: math.unit(5, "inches")
  40397. },
  40398. {
  40399. name: "Normal",
  40400. height: math.unit(7 + 11/12, "feet"),
  40401. default: true
  40402. },
  40403. {
  40404. name: "Macro",
  40405. height: math.unit(395 + 7/12, "feet")
  40406. },
  40407. ]
  40408. ))
  40409. characterMakers.push(() => makeCharacter(
  40410. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40411. {
  40412. side: {
  40413. height: math.unit(10, "feet"),
  40414. weight: math.unit(1442, "lb"),
  40415. name: "Side",
  40416. image: {
  40417. source: "./media/characters/lotherakon/side.svg",
  40418. extra: 1604/1497,
  40419. bottom: 89/1693
  40420. }
  40421. },
  40422. },
  40423. [
  40424. {
  40425. name: "Mortal Interaction",
  40426. height: math.unit(10, "feet")
  40427. },
  40428. {
  40429. name: "Large",
  40430. height: math.unit(30, "feet"),
  40431. default: true
  40432. },
  40433. {
  40434. name: "Giant",
  40435. height: math.unit(100, "feet")
  40436. },
  40437. {
  40438. name: "Kaiju",
  40439. height: math.unit(300, "feet")
  40440. },
  40441. {
  40442. name: "Macro",
  40443. height: math.unit(1000, "feet")
  40444. },
  40445. {
  40446. name: "Macro+",
  40447. height: math.unit(3000, "feet")
  40448. },
  40449. {
  40450. name: "Megamacro",
  40451. height: math.unit(10000, "feet")
  40452. },
  40453. {
  40454. name: "City-Crushing",
  40455. height: math.unit(30000, "feet")
  40456. },
  40457. {
  40458. name: "Continent Cracker",
  40459. height: math.unit(30e6, "feet")
  40460. },
  40461. {
  40462. name: "Earth Eclipsing",
  40463. height: math.unit(3e8, "feet")
  40464. },
  40465. {
  40466. name: "Gas Giant Gulper",
  40467. height: math.unit(3e9, "feet")
  40468. },
  40469. {
  40470. name: "Sol-Swallowing",
  40471. height: math.unit(1e11, "feet")
  40472. },
  40473. {
  40474. name: "System Swallower",
  40475. height: math.unit(3e14, "feet")
  40476. },
  40477. {
  40478. name: "Galaxy Gulper",
  40479. height: math.unit(10, "galaxies")
  40480. },
  40481. {
  40482. name: "Light Universal",
  40483. height: math.unit(5, "universes")
  40484. },
  40485. {
  40486. name: "Universe Palm",
  40487. height: math.unit(20, "universes")
  40488. },
  40489. {
  40490. name: "Light Multiversal",
  40491. height: math.unit(5, "multiverses")
  40492. },
  40493. {
  40494. name: "Multiverse Palm",
  40495. height: math.unit(20, "multiverses")
  40496. },
  40497. {
  40498. name: "Inferno Incarnate",
  40499. height: math.unit(1e7, "multiverses")
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(8, "feet"),
  40508. weight: math.unit(1200, "lb"),
  40509. name: "Front",
  40510. image: {
  40511. source: "./media/characters/malithee/front.svg",
  40512. extra: 1675/1640,
  40513. bottom: 162/1837
  40514. }
  40515. },
  40516. },
  40517. [
  40518. {
  40519. name: "Mortal Interaction",
  40520. height: math.unit(8, "feet"),
  40521. default: true
  40522. },
  40523. {
  40524. name: "Large",
  40525. height: math.unit(24, "feet")
  40526. },
  40527. {
  40528. name: "Kaiju",
  40529. height: math.unit(240, "feet")
  40530. },
  40531. {
  40532. name: "Megamacro",
  40533. height: math.unit(8000, "feet")
  40534. },
  40535. {
  40536. name: "Continent Cracker",
  40537. height: math.unit(24e6, "feet")
  40538. },
  40539. {
  40540. name: "Earth-Eclipsing",
  40541. height: math.unit(2.4e8, "feet")
  40542. },
  40543. {
  40544. name: "Sol-Swallowing",
  40545. height: math.unit(8e10, "feet")
  40546. },
  40547. {
  40548. name: "Galaxy Gulper",
  40549. height: math.unit(8, "galaxies")
  40550. },
  40551. {
  40552. name: "Light Universal",
  40553. height: math.unit(4, "universes")
  40554. },
  40555. {
  40556. name: "Universe Atoms",
  40557. height: math.unit(1.829e9, "universes")
  40558. },
  40559. {
  40560. name: "Light Multiversal",
  40561. height: math.unit(4, "multiverses")
  40562. },
  40563. {
  40564. name: "Multiverse Atoms",
  40565. height: math.unit(1.829e9, "multiverses")
  40566. },
  40567. {
  40568. name: "Nigh-Omnipresence",
  40569. height: math.unit(8e261, "multiverses")
  40570. },
  40571. ]
  40572. ))
  40573. characterMakers.push(() => makeCharacter(
  40574. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40575. {
  40576. front: {
  40577. height: math.unit(10, "feet"),
  40578. weight: math.unit(1500, "lb"),
  40579. name: "Front",
  40580. image: {
  40581. source: "./media/characters/miles-thestia/front.svg",
  40582. extra: 1812/1727,
  40583. bottom: 86/1898
  40584. }
  40585. },
  40586. back: {
  40587. height: math.unit(10, "feet"),
  40588. weight: math.unit(1500, "lb"),
  40589. name: "Back",
  40590. image: {
  40591. source: "./media/characters/miles-thestia/back.svg",
  40592. extra: 1799/1690,
  40593. bottom: 47/1846
  40594. }
  40595. },
  40596. frontNsfw: {
  40597. height: math.unit(10, "feet"),
  40598. weight: math.unit(1500, "lb"),
  40599. name: "Front (NSFW)",
  40600. image: {
  40601. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40602. extra: 1812/1727,
  40603. bottom: 86/1898
  40604. }
  40605. },
  40606. },
  40607. [
  40608. {
  40609. name: "Mini-Macro",
  40610. height: math.unit(10, "feet"),
  40611. default: true
  40612. },
  40613. ]
  40614. ))
  40615. characterMakers.push(() => makeCharacter(
  40616. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40617. {
  40618. front: {
  40619. height: math.unit(25, "feet"),
  40620. name: "Front",
  40621. image: {
  40622. source: "./media/characters/titan-s-wulf/front.svg",
  40623. extra: 1560/1484,
  40624. bottom: 76/1636
  40625. }
  40626. },
  40627. },
  40628. [
  40629. {
  40630. name: "Smallest",
  40631. height: math.unit(25, "feet"),
  40632. default: true
  40633. },
  40634. {
  40635. name: "Normal",
  40636. height: math.unit(200, "feet")
  40637. },
  40638. {
  40639. name: "Macro",
  40640. height: math.unit(200000, "feet")
  40641. },
  40642. {
  40643. name: "Multiversal Original",
  40644. height: math.unit(10000, "multiverses")
  40645. },
  40646. ]
  40647. ))
  40648. characterMakers.push(() => makeCharacter(
  40649. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40650. {
  40651. front: {
  40652. height: math.unit(8, "feet"),
  40653. weight: math.unit(553, "lb"),
  40654. name: "Front",
  40655. image: {
  40656. source: "./media/characters/tawendeh/front.svg",
  40657. extra: 2365/2268,
  40658. bottom: 83/2448
  40659. }
  40660. },
  40661. frontClothed: {
  40662. height: math.unit(8, "feet"),
  40663. weight: math.unit(553, "lb"),
  40664. name: "Front (Clothed)",
  40665. image: {
  40666. source: "./media/characters/tawendeh/front-clothed.svg",
  40667. extra: 2365/2268,
  40668. bottom: 83/2448
  40669. }
  40670. },
  40671. back: {
  40672. height: math.unit(8, "feet"),
  40673. weight: math.unit(553, "lb"),
  40674. name: "Back",
  40675. image: {
  40676. source: "./media/characters/tawendeh/back.svg",
  40677. extra: 2397/2294,
  40678. bottom: 42/2439
  40679. }
  40680. },
  40681. },
  40682. [
  40683. {
  40684. name: "Mortal Interaction",
  40685. height: math.unit(8, "feet"),
  40686. default: true
  40687. },
  40688. {
  40689. name: "Giant",
  40690. height: math.unit(80, "feet")
  40691. },
  40692. {
  40693. name: "Macro",
  40694. height: math.unit(800, "feet")
  40695. },
  40696. {
  40697. name: "Megamacro",
  40698. height: math.unit(8000, "feet")
  40699. },
  40700. {
  40701. name: "City-Crushing",
  40702. height: math.unit(24000, "feet")
  40703. },
  40704. {
  40705. name: "Mountain-Mashing",
  40706. height: math.unit(80000, "feet")
  40707. },
  40708. {
  40709. name: "Nation Nemesis",
  40710. height: math.unit(8e6, "feet")
  40711. },
  40712. {
  40713. name: "Continent Cracker",
  40714. height: math.unit(24e6, "feet")
  40715. },
  40716. {
  40717. name: "Earth-Eclipsing",
  40718. height: math.unit(2.4e8, "feet")
  40719. },
  40720. {
  40721. name: "Gas Giant Gulper",
  40722. height: math.unit(2.4e9, "feet")
  40723. },
  40724. {
  40725. name: "Sol-Swallowing",
  40726. height: math.unit(8e10, "feet")
  40727. },
  40728. {
  40729. name: "Galaxy Gulper",
  40730. height: math.unit(8, "galaxies")
  40731. },
  40732. {
  40733. name: "Cosmos Churner",
  40734. height: math.unit(8, "universes")
  40735. },
  40736. {
  40737. name: "Omnipotent Otter",
  40738. height: math.unit(80, "universes")
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40744. {
  40745. front: {
  40746. height: math.unit(2.6, "meters"),
  40747. weight: math.unit(900, "kg"),
  40748. name: "Front",
  40749. image: {
  40750. source: "./media/characters/neesha/front.svg",
  40751. extra: 1803/1653,
  40752. bottom: 128/1931
  40753. }
  40754. },
  40755. },
  40756. [
  40757. {
  40758. name: "Normal",
  40759. height: math.unit(2.6, "meters"),
  40760. default: true
  40761. },
  40762. {
  40763. name: "Macro",
  40764. height: math.unit(50, "meters")
  40765. },
  40766. ]
  40767. ))
  40768. characterMakers.push(() => makeCharacter(
  40769. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40770. {
  40771. front: {
  40772. height: math.unit(5, "feet"),
  40773. weight: math.unit(185, "lb"),
  40774. name: "Front",
  40775. image: {
  40776. source: "./media/characters/kyera/front.svg",
  40777. extra: 1875/1790,
  40778. bottom: 96/1971
  40779. }
  40780. },
  40781. },
  40782. [
  40783. {
  40784. name: "Normal",
  40785. height: math.unit(5, "feet"),
  40786. default: true
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(7 + 6/12, "feet"),
  40795. weight: math.unit(540, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/yuko/front.svg",
  40799. extra: 1282/1222,
  40800. bottom: 101/1383
  40801. }
  40802. },
  40803. frontClothed: {
  40804. height: math.unit(7 + 6/12, "feet"),
  40805. weight: math.unit(540, "lb"),
  40806. name: "Front (Clothed)",
  40807. image: {
  40808. source: "./media/characters/yuko/front-clothed.svg",
  40809. extra: 1282/1222,
  40810. bottom: 101/1383
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(7 + 6/12, "feet"),
  40818. default: true
  40819. },
  40820. {
  40821. name: "Macro",
  40822. height: math.unit(26 + 9/12, "feet")
  40823. },
  40824. {
  40825. name: "Megamacro",
  40826. height: math.unit(300, "feet")
  40827. },
  40828. {
  40829. name: "Gigamacro",
  40830. height: math.unit(5000, "feet")
  40831. },
  40832. {
  40833. name: "Planetary",
  40834. height: math.unit(10000, "miles")
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40840. {
  40841. front: {
  40842. height: math.unit(8 + 2/12, "feet"),
  40843. weight: math.unit(600, "lb"),
  40844. name: "Front",
  40845. image: {
  40846. source: "./media/characters/deam-nitrel/front.svg",
  40847. extra: 1308/1234,
  40848. bottom: 125/1433
  40849. }
  40850. },
  40851. },
  40852. [
  40853. {
  40854. name: "Normal",
  40855. height: math.unit(8 + 2/12, "feet"),
  40856. default: true
  40857. },
  40858. ]
  40859. ))
  40860. characterMakers.push(() => makeCharacter(
  40861. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40862. {
  40863. front: {
  40864. height: math.unit(6.1, "feet"),
  40865. weight: math.unit(180, "lb"),
  40866. name: "Front",
  40867. image: {
  40868. source: "./media/characters/skyress/front.svg",
  40869. extra: 1045/915,
  40870. bottom: 28/1073
  40871. }
  40872. },
  40873. maw: {
  40874. height: math.unit(1, "feet"),
  40875. name: "Maw",
  40876. image: {
  40877. source: "./media/characters/skyress/maw.svg"
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Normal",
  40884. height: math.unit(6.1, "feet"),
  40885. default: true
  40886. },
  40887. {
  40888. name: "Macro",
  40889. height: math.unit(200, "feet")
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(4 + 2/12, "feet"),
  40898. weight: math.unit(40, "kg"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/amethyst-jones/front.svg",
  40902. extra: 1220/1150,
  40903. bottom: 101/1321
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Normal",
  40910. height: math.unit(4 + 2/12, "feet"),
  40911. default: true
  40912. },
  40913. ]
  40914. ))
  40915. characterMakers.push(() => makeCharacter(
  40916. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40917. {
  40918. front: {
  40919. height: math.unit(1.7, "m"),
  40920. weight: math.unit(135, "lb"),
  40921. name: "Front",
  40922. image: {
  40923. source: "./media/characters/jade/front.svg",
  40924. extra: 1818/1767,
  40925. bottom: 32/1850
  40926. }
  40927. },
  40928. back: {
  40929. height: math.unit(1.7, "m"),
  40930. weight: math.unit(135, "lb"),
  40931. name: "Back",
  40932. image: {
  40933. source: "./media/characters/jade/back.svg",
  40934. extra: 1869/1809,
  40935. bottom: 35/1904
  40936. }
  40937. },
  40938. hand: {
  40939. height: math.unit(0.24, "m"),
  40940. name: "Hand",
  40941. image: {
  40942. source: "./media/characters/jade/hand.svg"
  40943. }
  40944. },
  40945. foot: {
  40946. height: math.unit(0.263, "m"),
  40947. name: "Foot",
  40948. image: {
  40949. source: "./media/characters/jade/foot.svg"
  40950. }
  40951. },
  40952. dick: {
  40953. height: math.unit(0.47, "m"),
  40954. name: "Dick",
  40955. image: {
  40956. source: "./media/characters/jade/dick.svg"
  40957. }
  40958. },
  40959. },
  40960. [
  40961. {
  40962. name: "Micro",
  40963. height: math.unit(22, "cm")
  40964. },
  40965. {
  40966. name: "Normal",
  40967. height: math.unit(1.7, "m"),
  40968. default: true
  40969. },
  40970. {
  40971. name: "Macro",
  40972. height: math.unit(152, "m")
  40973. },
  40974. ]
  40975. ))
  40976. characterMakers.push(() => makeCharacter(
  40977. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40978. {
  40979. front: {
  40980. height: math.unit(100, "miles"),
  40981. weight: math.unit(20000, "tons"),
  40982. name: "Front",
  40983. image: {
  40984. source: "./media/characters/cookie/front.svg",
  40985. extra: 1125/1070,
  40986. bottom: 30/1155
  40987. }
  40988. },
  40989. },
  40990. [
  40991. {
  40992. name: "Big",
  40993. height: math.unit(50, "feet")
  40994. },
  40995. {
  40996. name: "Macro",
  40997. height: math.unit(100, "miles"),
  40998. default: true
  40999. },
  41000. {
  41001. name: "Megamacro",
  41002. height: math.unit(90000, "miles")
  41003. },
  41004. ]
  41005. ))
  41006. characterMakers.push(() => makeCharacter(
  41007. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41008. {
  41009. front: {
  41010. height: math.unit(6, "feet"),
  41011. weight: math.unit(145, "lb"),
  41012. name: "Front",
  41013. image: {
  41014. source: "./media/characters/farzian/front.svg",
  41015. extra: 1902/1693,
  41016. bottom: 108/2010
  41017. }
  41018. },
  41019. },
  41020. [
  41021. {
  41022. name: "Macro",
  41023. height: math.unit(500, "feet"),
  41024. default: true
  41025. },
  41026. ]
  41027. ))
  41028. characterMakers.push(() => makeCharacter(
  41029. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41030. {
  41031. front: {
  41032. height: math.unit(3 + 6/12, "feet"),
  41033. weight: math.unit(50, "lb"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/kimberly-tilson/front.svg",
  41037. extra: 1400/1322,
  41038. bottom: 36/1436
  41039. }
  41040. },
  41041. back: {
  41042. height: math.unit(3 + 6/12, "feet"),
  41043. weight: math.unit(50, "lb"),
  41044. name: "Back",
  41045. image: {
  41046. source: "./media/characters/kimberly-tilson/back.svg",
  41047. extra: 1370/1307,
  41048. bottom: 20/1390
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Normal",
  41055. height: math.unit(3 + 6/12, "feet"),
  41056. default: true
  41057. },
  41058. ]
  41059. ))
  41060. characterMakers.push(() => makeCharacter(
  41061. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41062. {
  41063. front: {
  41064. height: math.unit(1148, "feet"),
  41065. weight: math.unit(34057, "lb"),
  41066. name: "Front",
  41067. image: {
  41068. source: "./media/characters/harthos/front.svg",
  41069. extra: 1391/1339,
  41070. bottom: 13/1404
  41071. }
  41072. },
  41073. },
  41074. [
  41075. {
  41076. name: "Macro",
  41077. height: math.unit(1148, "feet"),
  41078. default: true
  41079. },
  41080. ]
  41081. ))
  41082. characterMakers.push(() => makeCharacter(
  41083. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41084. {
  41085. front: {
  41086. height: math.unit(15, "feet"),
  41087. name: "Front",
  41088. image: {
  41089. source: "./media/characters/hypatia/front.svg",
  41090. extra: 1653/1591,
  41091. bottom: 79/1732
  41092. }
  41093. },
  41094. },
  41095. [
  41096. {
  41097. name: "Normal",
  41098. height: math.unit(15, "feet")
  41099. },
  41100. {
  41101. name: "Small",
  41102. height: math.unit(300, "feet")
  41103. },
  41104. {
  41105. name: "Macro",
  41106. height: math.unit(2500, "feet"),
  41107. default: true
  41108. },
  41109. {
  41110. name: "Mega Macro",
  41111. height: math.unit(1500, "miles")
  41112. },
  41113. {
  41114. name: "Giga Macro",
  41115. height: math.unit(1.5e6, "miles")
  41116. },
  41117. ]
  41118. ))
  41119. characterMakers.push(() => makeCharacter(
  41120. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41121. {
  41122. front: {
  41123. height: math.unit(6, "feet"),
  41124. weight: math.unit(200, "lb"),
  41125. name: "Front",
  41126. image: {
  41127. source: "./media/characters/wulver/front.svg",
  41128. extra: 1724/1632,
  41129. bottom: 130/1854
  41130. }
  41131. },
  41132. frontNsfw: {
  41133. height: math.unit(6, "feet"),
  41134. weight: math.unit(200, "lb"),
  41135. name: "Front (NSFW)",
  41136. image: {
  41137. source: "./media/characters/wulver/front-nsfw.svg",
  41138. extra: 1724/1632,
  41139. bottom: 130/1854
  41140. }
  41141. },
  41142. },
  41143. [
  41144. {
  41145. name: "Human-Sized",
  41146. height: math.unit(6, "feet")
  41147. },
  41148. {
  41149. name: "Normal",
  41150. height: math.unit(4, "meters"),
  41151. default: true
  41152. },
  41153. {
  41154. name: "Large",
  41155. height: math.unit(6, "m")
  41156. },
  41157. ]
  41158. ))
  41159. characterMakers.push(() => makeCharacter(
  41160. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41161. {
  41162. front: {
  41163. height: math.unit(7, "feet"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/maru/front.svg",
  41167. extra: 1595/1570,
  41168. bottom: 0/1595
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Normal",
  41175. height: math.unit(7, "feet"),
  41176. default: true
  41177. },
  41178. {
  41179. name: "Macro",
  41180. height: math.unit(700, "feet")
  41181. },
  41182. {
  41183. name: "Mega Macro",
  41184. height: math.unit(25, "miles")
  41185. },
  41186. ]
  41187. ))
  41188. characterMakers.push(() => makeCharacter(
  41189. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41190. {
  41191. front: {
  41192. height: math.unit(6, "feet"),
  41193. weight: math.unit(170, "lb"),
  41194. name: "Front",
  41195. image: {
  41196. source: "./media/characters/xenon/front.svg",
  41197. extra: 1376/1305,
  41198. bottom: 56/1432
  41199. }
  41200. },
  41201. back: {
  41202. height: math.unit(6, "feet"),
  41203. weight: math.unit(170, "lb"),
  41204. name: "Back",
  41205. image: {
  41206. source: "./media/characters/xenon/back.svg",
  41207. extra: 1328/1259,
  41208. bottom: 95/1423
  41209. }
  41210. },
  41211. maw: {
  41212. height: math.unit(0.52, "feet"),
  41213. name: "Maw",
  41214. image: {
  41215. source: "./media/characters/xenon/maw.svg"
  41216. }
  41217. },
  41218. hand: {
  41219. height: math.unit(0.82, "feet"),
  41220. name: "Hand",
  41221. image: {
  41222. source: "./media/characters/xenon/hand.svg"
  41223. }
  41224. },
  41225. foot: {
  41226. height: math.unit(1.13, "feet"),
  41227. name: "Foot",
  41228. image: {
  41229. source: "./media/characters/xenon/foot.svg"
  41230. }
  41231. },
  41232. },
  41233. [
  41234. {
  41235. name: "Micro",
  41236. height: math.unit(0.8, "inches")
  41237. },
  41238. {
  41239. name: "Normal",
  41240. height: math.unit(6, "feet")
  41241. },
  41242. {
  41243. name: "Macro",
  41244. height: math.unit(50, "feet"),
  41245. default: true
  41246. },
  41247. {
  41248. name: "Macro+",
  41249. height: math.unit(250, "feet")
  41250. },
  41251. {
  41252. name: "Megamacro",
  41253. height: math.unit(1500, "feet")
  41254. },
  41255. ]
  41256. ))
  41257. characterMakers.push(() => makeCharacter(
  41258. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41259. {
  41260. front: {
  41261. height: math.unit(7 + 5/12, "feet"),
  41262. name: "Front",
  41263. image: {
  41264. source: "./media/characters/zane/front.svg",
  41265. extra: 1260/1203,
  41266. bottom: 94/1354
  41267. }
  41268. },
  41269. back: {
  41270. height: math.unit(5.05, "feet"),
  41271. name: "Back",
  41272. image: {
  41273. source: "./media/characters/zane/back.svg",
  41274. extra: 893/829,
  41275. bottom: 30/923
  41276. }
  41277. },
  41278. werewolf: {
  41279. height: math.unit(11, "feet"),
  41280. name: "Werewolf",
  41281. image: {
  41282. source: "./media/characters/zane/werewolf.svg",
  41283. extra: 1383/1323,
  41284. bottom: 89/1472
  41285. }
  41286. },
  41287. foot: {
  41288. height: math.unit(1.46, "feet"),
  41289. name: "Foot",
  41290. image: {
  41291. source: "./media/characters/zane/foot.svg"
  41292. }
  41293. },
  41294. footFront: {
  41295. height: math.unit(0.784, "feet"),
  41296. name: "Foot (Front)",
  41297. image: {
  41298. source: "./media/characters/zane/foot-front.svg"
  41299. }
  41300. },
  41301. dick: {
  41302. height: math.unit(1.95, "feet"),
  41303. name: "Dick",
  41304. image: {
  41305. source: "./media/characters/zane/dick.svg"
  41306. }
  41307. },
  41308. dickWerewolf: {
  41309. height: math.unit(3.77, "feet"),
  41310. name: "Dick (Werewolf)",
  41311. image: {
  41312. source: "./media/characters/zane/dick.svg"
  41313. }
  41314. },
  41315. },
  41316. [
  41317. {
  41318. name: "Normal",
  41319. height: math.unit(7 + 5/12, "feet"),
  41320. default: true
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(6 + 2/12, "feet"),
  41329. weight: math.unit(284, "lb"),
  41330. name: "Front",
  41331. image: {
  41332. source: "./media/characters/benni-desparque/front.svg",
  41333. extra: 1353/1126,
  41334. bottom: 69/1422
  41335. }
  41336. },
  41337. },
  41338. [
  41339. {
  41340. name: "Civilian",
  41341. height: math.unit(6 + 2/12, "feet")
  41342. },
  41343. {
  41344. name: "Normal",
  41345. height: math.unit(98, "feet"),
  41346. default: true
  41347. },
  41348. {
  41349. name: "Kaiju Fighter",
  41350. height: math.unit(268, "feet")
  41351. },
  41352. ]
  41353. ))
  41354. characterMakers.push(() => makeCharacter(
  41355. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41356. {
  41357. front: {
  41358. height: math.unit(5, "feet"),
  41359. weight: math.unit(105, "lb"),
  41360. name: "Front",
  41361. image: {
  41362. source: "./media/characters/maxine/front.svg",
  41363. extra: 1386/1250,
  41364. bottom: 71/1457
  41365. }
  41366. },
  41367. },
  41368. [
  41369. {
  41370. name: "Normal",
  41371. height: math.unit(5, "feet"),
  41372. default: true
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41378. {
  41379. front: {
  41380. height: math.unit(11 + 7/12, "feet"),
  41381. weight: math.unit(9576, "lb"),
  41382. name: "Front",
  41383. image: {
  41384. source: "./media/characters/scaly/front.svg",
  41385. extra: 888/867,
  41386. bottom: 36/924
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(11 + 7/12, "feet"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41400. {
  41401. front: {
  41402. height: math.unit(6 + 3/12, "feet"),
  41403. name: "Front",
  41404. image: {
  41405. source: "./media/characters/saelria/front.svg",
  41406. extra: 1243/1138,
  41407. bottom: 46/1289
  41408. }
  41409. },
  41410. },
  41411. [
  41412. {
  41413. name: "Micro",
  41414. height: math.unit(6, "inches"),
  41415. },
  41416. {
  41417. name: "Normal",
  41418. height: math.unit(6 + 3/12, "feet"),
  41419. default: true
  41420. },
  41421. {
  41422. name: "Macro",
  41423. height: math.unit(25, "feet")
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41429. {
  41430. front: {
  41431. height: math.unit(80, "meters"),
  41432. weight: math.unit(7000, "tonnes"),
  41433. name: "Front",
  41434. image: {
  41435. source: "./media/characters/tef/front.svg",
  41436. extra: 2036/1991,
  41437. bottom: 54/2090
  41438. }
  41439. },
  41440. back: {
  41441. height: math.unit(80, "meters"),
  41442. weight: math.unit(7000, "tonnes"),
  41443. name: "Back",
  41444. image: {
  41445. source: "./media/characters/tef/back.svg",
  41446. extra: 2036/1991,
  41447. bottom: 54/2090
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Macro",
  41454. height: math.unit(80, "meters"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(13, "feet"),
  41464. weight: math.unit(6, "tons"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/rover/front.svg",
  41468. extra: 1233/1156,
  41469. bottom: 50/1283
  41470. }
  41471. },
  41472. back: {
  41473. height: math.unit(13, "feet"),
  41474. weight: math.unit(6, "tons"),
  41475. name: "Back",
  41476. image: {
  41477. source: "./media/characters/rover/back.svg",
  41478. extra: 1327/1258,
  41479. bottom: 39/1366
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(13, "feet"),
  41487. default: true
  41488. },
  41489. {
  41490. name: "Macro",
  41491. height: math.unit(1300, "feet")
  41492. },
  41493. {
  41494. name: "Megamacro",
  41495. height: math.unit(1300, "miles")
  41496. },
  41497. {
  41498. name: "Gigamacro",
  41499. height: math.unit(1300000, "miles")
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41505. {
  41506. front: {
  41507. height: math.unit(6, "feet"),
  41508. weight: math.unit(150, "lb"),
  41509. name: "Front",
  41510. image: {
  41511. source: "./media/characters/ariz/front.svg",
  41512. extra: 1401/1346,
  41513. bottom: 5/1406
  41514. }
  41515. },
  41516. },
  41517. [
  41518. {
  41519. name: "Normal",
  41520. height: math.unit(10, "feet"),
  41521. default: true
  41522. },
  41523. ]
  41524. ))
  41525. characterMakers.push(() => makeCharacter(
  41526. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41527. {
  41528. front: {
  41529. height: math.unit(6, "feet"),
  41530. weight: math.unit(140, "lb"),
  41531. name: "Front",
  41532. image: {
  41533. source: "./media/characters/sigrun/front.svg",
  41534. extra: 1418/1359,
  41535. bottom: 27/1445
  41536. }
  41537. },
  41538. },
  41539. [
  41540. {
  41541. name: "Macro",
  41542. height: math.unit(35, "feet"),
  41543. default: true
  41544. },
  41545. ]
  41546. ))
  41547. characterMakers.push(() => makeCharacter(
  41548. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41549. {
  41550. front: {
  41551. height: math.unit(6, "feet"),
  41552. weight: math.unit(150, "lb"),
  41553. name: "Front",
  41554. image: {
  41555. source: "./media/characters/numin/front.svg",
  41556. extra: 1433/1388,
  41557. bottom: 12/1445
  41558. }
  41559. },
  41560. },
  41561. [
  41562. {
  41563. name: "Macro",
  41564. height: math.unit(21.5, "km"),
  41565. default: true
  41566. },
  41567. ]
  41568. ))
  41569. characterMakers.push(() => makeCharacter(
  41570. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41571. {
  41572. front: {
  41573. height: math.unit(6, "feet"),
  41574. weight: math.unit(463, "lb"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/melwa/front.svg",
  41578. extra: 1307/1248,
  41579. bottom: 93/1400
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Macro",
  41586. height: math.unit(50, "meters"),
  41587. default: true
  41588. },
  41589. ]
  41590. ))
  41591. characterMakers.push(() => makeCharacter(
  41592. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41593. {
  41594. front: {
  41595. height: math.unit(325, "feet"),
  41596. name: "Front",
  41597. image: {
  41598. source: "./media/characters/zorkaiju/front.svg",
  41599. extra: 1955/1814,
  41600. bottom: 40/1995
  41601. }
  41602. },
  41603. frontExtended: {
  41604. height: math.unit(325, "feet"),
  41605. name: "Front (Extended)",
  41606. image: {
  41607. source: "./media/characters/zorkaiju/front-extended.svg",
  41608. extra: 1955/1814,
  41609. bottom: 40/1995
  41610. }
  41611. },
  41612. side: {
  41613. height: math.unit(325, "feet"),
  41614. name: "Side",
  41615. image: {
  41616. source: "./media/characters/zorkaiju/side.svg",
  41617. extra: 1495/1396,
  41618. bottom: 17/1512
  41619. }
  41620. },
  41621. sideExtended: {
  41622. height: math.unit(325, "feet"),
  41623. name: "Side (Extended)",
  41624. image: {
  41625. source: "./media/characters/zorkaiju/side-extended.svg",
  41626. extra: 1495/1396,
  41627. bottom: 17/1512
  41628. }
  41629. },
  41630. back: {
  41631. height: math.unit(325, "feet"),
  41632. name: "Back",
  41633. image: {
  41634. source: "./media/characters/zorkaiju/back.svg",
  41635. extra: 1959/1821,
  41636. bottom: 31/1990
  41637. }
  41638. },
  41639. backExtended: {
  41640. height: math.unit(325, "feet"),
  41641. name: "Back (Extended)",
  41642. image: {
  41643. source: "./media/characters/zorkaiju/back-extended.svg",
  41644. extra: 1959/1821,
  41645. bottom: 31/1990
  41646. }
  41647. },
  41648. hand: {
  41649. height: math.unit(58.4, "feet"),
  41650. name: "Hand",
  41651. image: {
  41652. source: "./media/characters/zorkaiju/hand.svg"
  41653. }
  41654. },
  41655. handExtended: {
  41656. height: math.unit(61.4, "feet"),
  41657. name: "Hand (Extended)",
  41658. image: {
  41659. source: "./media/characters/zorkaiju/hand-extended.svg"
  41660. }
  41661. },
  41662. foot: {
  41663. height: math.unit(95, "feet"),
  41664. name: "Foot",
  41665. image: {
  41666. source: "./media/characters/zorkaiju/foot.svg"
  41667. }
  41668. },
  41669. leftArm: {
  41670. height: math.unit(59, "feet"),
  41671. name: "Left Arm",
  41672. image: {
  41673. source: "./media/characters/zorkaiju/left-arm.svg"
  41674. }
  41675. },
  41676. rightArm: {
  41677. height: math.unit(59, "feet"),
  41678. name: "Right Arm",
  41679. image: {
  41680. source: "./media/characters/zorkaiju/right-arm.svg"
  41681. }
  41682. },
  41683. leftArmExtended: {
  41684. height: math.unit(59 * 1.033546, "feet"),
  41685. name: "Left Arm (Extended)",
  41686. image: {
  41687. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41688. }
  41689. },
  41690. rightArmExtended: {
  41691. height: math.unit(59 * 1.0496, "feet"),
  41692. name: "Right Arm (Extended)",
  41693. image: {
  41694. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41695. }
  41696. },
  41697. tail: {
  41698. height: math.unit(104, "feet"),
  41699. name: "Tail",
  41700. image: {
  41701. source: "./media/characters/zorkaiju/tail.svg"
  41702. }
  41703. },
  41704. tailExtended: {
  41705. height: math.unit(104, "feet"),
  41706. name: "Tail (Extended)",
  41707. image: {
  41708. source: "./media/characters/zorkaiju/tail-extended.svg"
  41709. }
  41710. },
  41711. tailBottom: {
  41712. height: math.unit(104, "feet"),
  41713. name: "Tail Bottom",
  41714. image: {
  41715. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41716. }
  41717. },
  41718. crystal: {
  41719. height: math.unit(27.54, "feet"),
  41720. name: "Crystal",
  41721. image: {
  41722. source: "./media/characters/zorkaiju/crystal.svg"
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Kaiju",
  41729. height: math.unit(325, "feet"),
  41730. default: true
  41731. },
  41732. ]
  41733. ))
  41734. characterMakers.push(() => makeCharacter(
  41735. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41736. {
  41737. front: {
  41738. height: math.unit(6 + 1/12, "feet"),
  41739. weight: math.unit(115, "lb"),
  41740. name: "Front",
  41741. image: {
  41742. source: "./media/characters/bailey-belfry/front.svg",
  41743. extra: 1240/1121,
  41744. bottom: 101/1341
  41745. }
  41746. },
  41747. },
  41748. [
  41749. {
  41750. name: "Normal",
  41751. height: math.unit(6 + 1/12, "feet"),
  41752. default: true
  41753. },
  41754. ]
  41755. ))
  41756. characterMakers.push(() => makeCharacter(
  41757. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41758. {
  41759. side: {
  41760. height: math.unit(4, "meters"),
  41761. weight: math.unit(250, "kg"),
  41762. name: "Side",
  41763. image: {
  41764. source: "./media/characters/blacky/side.svg",
  41765. extra: 1027/919,
  41766. bottom: 43/1070
  41767. }
  41768. },
  41769. maw: {
  41770. height: math.unit(1, "meters"),
  41771. name: "Maw",
  41772. image: {
  41773. source: "./media/characters/blacky/maw.svg"
  41774. }
  41775. },
  41776. paw: {
  41777. height: math.unit(1, "meters"),
  41778. name: "Paw",
  41779. image: {
  41780. source: "./media/characters/blacky/paw.svg"
  41781. }
  41782. },
  41783. },
  41784. [
  41785. {
  41786. name: "Normal",
  41787. height: math.unit(4, "meters"),
  41788. default: true
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(170, "cm"),
  41797. weight: math.unit(66, "kg"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/thux-ei/front.svg",
  41801. extra: 1109/1011,
  41802. bottom: 8/1117
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Normal",
  41809. height: math.unit(170, "cm"),
  41810. default: true
  41811. },
  41812. ]
  41813. ))
  41814. characterMakers.push(() => makeCharacter(
  41815. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41816. {
  41817. front: {
  41818. height: math.unit(5, "feet"),
  41819. weight: math.unit(120, "lb"),
  41820. name: "Front",
  41821. image: {
  41822. source: "./media/characters/roxanne-voltaire/front.svg",
  41823. extra: 1901/1779,
  41824. bottom: 53/1954
  41825. }
  41826. },
  41827. },
  41828. [
  41829. {
  41830. name: "Normal",
  41831. height: math.unit(5, "feet"),
  41832. default: true
  41833. },
  41834. {
  41835. name: "Giant",
  41836. height: math.unit(50, "feet")
  41837. },
  41838. {
  41839. name: "Titan",
  41840. height: math.unit(500, "feet")
  41841. },
  41842. {
  41843. name: "Macro",
  41844. height: math.unit(5000, "feet")
  41845. },
  41846. {
  41847. name: "Megamacro",
  41848. height: math.unit(50000, "feet")
  41849. },
  41850. {
  41851. name: "Gigamacro",
  41852. height: math.unit(500000, "feet")
  41853. },
  41854. {
  41855. name: "Teramacro",
  41856. height: math.unit(5e6, "feet")
  41857. },
  41858. ]
  41859. ))
  41860. characterMakers.push(() => makeCharacter(
  41861. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41862. {
  41863. front: {
  41864. height: math.unit(6 + 2/12, "feet"),
  41865. name: "Front",
  41866. image: {
  41867. source: "./media/characters/squeaks/front.svg",
  41868. extra: 1823/1768,
  41869. bottom: 138/1961
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Micro",
  41876. height: math.unit(0.5, "inches")
  41877. },
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(6 + 2/12, "feet"),
  41881. default: true
  41882. },
  41883. {
  41884. name: "Macro",
  41885. height: math.unit(600, "feet")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(1.72, "meters"),
  41894. name: "Front",
  41895. image: {
  41896. source: "./media/characters/archinger/front.svg",
  41897. extra: 1861/1675,
  41898. bottom: 125/1986
  41899. }
  41900. },
  41901. back: {
  41902. height: math.unit(1.72, "meters"),
  41903. name: "Back",
  41904. image: {
  41905. source: "./media/characters/archinger/back.svg",
  41906. extra: 1844/1701,
  41907. bottom: 104/1948
  41908. }
  41909. },
  41910. cock: {
  41911. height: math.unit(0.59, "feet"),
  41912. name: "Cock",
  41913. image: {
  41914. source: "./media/characters/archinger/cock.svg"
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Normal",
  41921. height: math.unit(1.72, "meters"),
  41922. default: true
  41923. },
  41924. {
  41925. name: "Macro",
  41926. height: math.unit(84, "meters")
  41927. },
  41928. {
  41929. name: "Macro+",
  41930. height: math.unit(112, "meters")
  41931. },
  41932. {
  41933. name: "Macro++",
  41934. height: math.unit(960, "meters")
  41935. },
  41936. {
  41937. name: "Macro+++",
  41938. height: math.unit(4, "km")
  41939. },
  41940. {
  41941. name: "Macro++++",
  41942. height: math.unit(48, "km")
  41943. },
  41944. {
  41945. name: "Macro+++++",
  41946. height: math.unit(4500, "km")
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41952. {
  41953. front: {
  41954. height: math.unit(5 + 5/12, "feet"),
  41955. name: "Front",
  41956. image: {
  41957. source: "./media/characters/alsnapz/front.svg",
  41958. extra: 1157/1065,
  41959. bottom: 42/1199
  41960. }
  41961. },
  41962. },
  41963. [
  41964. {
  41965. name: "Normal",
  41966. height: math.unit(5 + 5/12, "feet"),
  41967. default: true
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41973. {
  41974. side: {
  41975. height: math.unit(3.2, "earths"),
  41976. name: "Side",
  41977. image: {
  41978. source: "./media/characters/mag/side.svg",
  41979. extra: 1331/1008,
  41980. bottom: 52/1383
  41981. }
  41982. },
  41983. wing: {
  41984. height: math.unit(1.94, "earths"),
  41985. name: "Wing",
  41986. image: {
  41987. source: "./media/characters/mag/wing.svg"
  41988. }
  41989. },
  41990. dick: {
  41991. height: math.unit(1.8, "earths"),
  41992. name: "Dick",
  41993. image: {
  41994. source: "./media/characters/mag/dick.svg"
  41995. }
  41996. },
  41997. ass: {
  41998. height: math.unit(1.33, "earths"),
  41999. name: "Ass",
  42000. image: {
  42001. source: "./media/characters/mag/ass.svg"
  42002. }
  42003. },
  42004. head: {
  42005. height: math.unit(1.1, "earths"),
  42006. name: "Head",
  42007. image: {
  42008. source: "./media/characters/mag/head.svg"
  42009. }
  42010. },
  42011. maw: {
  42012. height: math.unit(1.62, "earths"),
  42013. name: "Maw",
  42014. image: {
  42015. source: "./media/characters/mag/maw.svg"
  42016. }
  42017. },
  42018. },
  42019. [
  42020. {
  42021. name: "Small",
  42022. height: math.unit(162, "feet")
  42023. },
  42024. {
  42025. name: "Normal",
  42026. height: math.unit(3.2, "earths"),
  42027. default: true
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(512, "feet"),
  42036. weight: math.unit(63509, "tonnes"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/vorrel-harroc/front.svg",
  42040. extra: 1075/1063,
  42041. bottom: 62/1137
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(10, "feet")
  42049. },
  42050. {
  42051. name: "Macro",
  42052. height: math.unit(512, "feet"),
  42053. default: true
  42054. },
  42055. {
  42056. name: "Megamacro",
  42057. height: math.unit(256, "miles")
  42058. },
  42059. {
  42060. name: "Gigamacro",
  42061. height: math.unit(4096, "miles")
  42062. },
  42063. ]
  42064. ))
  42065. characterMakers.push(() => makeCharacter(
  42066. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42067. {
  42068. side: {
  42069. height: math.unit(50, "feet"),
  42070. name: "Side",
  42071. image: {
  42072. source: "./media/characters/froimar/side.svg",
  42073. extra: 855/638,
  42074. bottom: 99/954
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Macro",
  42081. height: math.unit(50, "feet"),
  42082. default: true
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(210, "miles"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/timothy/front.svg",
  42094. extra: 1007/943,
  42095. bottom: 62/1069
  42096. }
  42097. },
  42098. frontSkirt: {
  42099. height: math.unit(210, "miles"),
  42100. name: "Front (Skirt)",
  42101. image: {
  42102. source: "./media/characters/timothy/front-skirt.svg",
  42103. extra: 1007/943,
  42104. bottom: 62/1069
  42105. }
  42106. },
  42107. frontCoat: {
  42108. height: math.unit(210, "miles"),
  42109. name: "Front (Coat)",
  42110. image: {
  42111. source: "./media/characters/timothy/front-coat.svg",
  42112. extra: 1007/943,
  42113. bottom: 62/1069
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Macro",
  42120. height: math.unit(210, "miles"),
  42121. default: true
  42122. },
  42123. {
  42124. name: "Megamacro",
  42125. height: math.unit(210000, "miles")
  42126. },
  42127. ]
  42128. ))
  42129. characterMakers.push(() => makeCharacter(
  42130. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42131. {
  42132. front: {
  42133. height: math.unit(188, "feet"),
  42134. name: "Front",
  42135. image: {
  42136. source: "./media/characters/pyotr/front.svg",
  42137. extra: 1912/1826,
  42138. bottom: 18/1930
  42139. }
  42140. },
  42141. },
  42142. [
  42143. {
  42144. name: "Macro",
  42145. height: math.unit(188, "feet"),
  42146. default: true
  42147. },
  42148. {
  42149. name: "Megamacro",
  42150. height: math.unit(8, "miles")
  42151. },
  42152. ]
  42153. ))
  42154. characterMakers.push(() => makeCharacter(
  42155. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42156. {
  42157. side: {
  42158. height: math.unit(10, "feet"),
  42159. weight: math.unit(4500, "lb"),
  42160. name: "Side",
  42161. image: {
  42162. source: "./media/characters/ackart/side.svg",
  42163. extra: 1776/1668,
  42164. bottom: 116/1892
  42165. }
  42166. },
  42167. },
  42168. [
  42169. {
  42170. name: "Normal",
  42171. height: math.unit(10, "feet"),
  42172. default: true
  42173. },
  42174. ]
  42175. ))
  42176. characterMakers.push(() => makeCharacter(
  42177. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42178. {
  42179. side: {
  42180. height: math.unit(21, "feet"),
  42181. name: "Side",
  42182. image: {
  42183. source: "./media/characters/nolow/side.svg",
  42184. extra: 1484/1434,
  42185. bottom: 85/1569
  42186. }
  42187. },
  42188. sideErect: {
  42189. height: math.unit(21, "feet"),
  42190. name: "Side-erect",
  42191. image: {
  42192. source: "./media/characters/nolow/side-erect.svg",
  42193. extra: 1484/1434,
  42194. bottom: 85/1569
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Regular",
  42201. height: math.unit(12, "feet")
  42202. },
  42203. {
  42204. name: "Big Chee",
  42205. height: math.unit(21, "feet"),
  42206. default: true
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42212. {
  42213. front: {
  42214. height: math.unit(7, "feet"),
  42215. weight: math.unit(250, "lb"),
  42216. name: "Front",
  42217. image: {
  42218. source: "./media/characters/nines/front.svg",
  42219. extra: 1741/1607,
  42220. bottom: 41/1782
  42221. }
  42222. },
  42223. side: {
  42224. height: math.unit(7, "feet"),
  42225. weight: math.unit(250, "lb"),
  42226. name: "Side",
  42227. image: {
  42228. source: "./media/characters/nines/side.svg",
  42229. extra: 1854/1735,
  42230. bottom: 93/1947
  42231. }
  42232. },
  42233. back: {
  42234. height: math.unit(7, "feet"),
  42235. weight: math.unit(250, "lb"),
  42236. name: "Back",
  42237. image: {
  42238. source: "./media/characters/nines/back.svg",
  42239. extra: 1748/1615,
  42240. bottom: 20/1768
  42241. }
  42242. },
  42243. },
  42244. [
  42245. {
  42246. name: "Megamacro",
  42247. height: math.unit(99, "km"),
  42248. default: true
  42249. },
  42250. ]
  42251. ))
  42252. characterMakers.push(() => makeCharacter(
  42253. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42254. {
  42255. front: {
  42256. height: math.unit(5 + 10/12, "feet"),
  42257. weight: math.unit(210, "lb"),
  42258. name: "Front",
  42259. image: {
  42260. source: "./media/characters/zenith/front.svg",
  42261. extra: 1531/1452,
  42262. bottom: 198/1729
  42263. }
  42264. },
  42265. back: {
  42266. height: math.unit(5 + 10/12, "feet"),
  42267. weight: math.unit(210, "lb"),
  42268. name: "Back",
  42269. image: {
  42270. source: "./media/characters/zenith/back.svg",
  42271. extra: 1571/1487,
  42272. bottom: 75/1646
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Normal",
  42279. height: math.unit(5 + 10/12, "feet"),
  42280. default: true
  42281. }
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(4, "feet"),
  42289. weight: math.unit(60, "lb"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/jasper/front.svg",
  42293. extra: 1450/1379,
  42294. bottom: 19/1469
  42295. }
  42296. },
  42297. },
  42298. [
  42299. {
  42300. name: "Normal",
  42301. height: math.unit(4, "feet"),
  42302. default: true
  42303. },
  42304. ]
  42305. ))
  42306. characterMakers.push(() => makeCharacter(
  42307. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42308. {
  42309. front: {
  42310. height: math.unit(6 + 5/12, "feet"),
  42311. weight: math.unit(290, "lb"),
  42312. name: "Front",
  42313. image: {
  42314. source: "./media/characters/tiberius-thyben/front.svg",
  42315. extra: 757/739,
  42316. bottom: 39/796
  42317. }
  42318. },
  42319. },
  42320. [
  42321. {
  42322. name: "Micro",
  42323. height: math.unit(1.5, "inches")
  42324. },
  42325. {
  42326. name: "Normal",
  42327. height: math.unit(6 + 5/12, "feet"),
  42328. default: true
  42329. },
  42330. {
  42331. name: "Macro",
  42332. height: math.unit(300, "feet")
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42338. {
  42339. front: {
  42340. height: math.unit(5 + 6/12, "feet"),
  42341. weight: math.unit(60, "kg"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/sabre/front.svg",
  42345. extra: 738/671,
  42346. bottom: 27/765
  42347. }
  42348. },
  42349. },
  42350. [
  42351. {
  42352. name: "Teeny",
  42353. height: math.unit(2, "inches")
  42354. },
  42355. {
  42356. name: "Smol",
  42357. height: math.unit(8, "inches")
  42358. },
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(5 + 6/12, "feet"),
  42362. default: true
  42363. },
  42364. {
  42365. name: "Mini-Macro",
  42366. height: math.unit(15, "feet")
  42367. },
  42368. {
  42369. name: "Macro",
  42370. height: math.unit(50, "feet")
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42376. {
  42377. front: {
  42378. height: math.unit(6 + 4/12, "feet"),
  42379. weight: math.unit(170, "lb"),
  42380. name: "Front",
  42381. image: {
  42382. source: "./media/characters/charlie/front.svg",
  42383. extra: 1348/1228,
  42384. bottom: 15/1363
  42385. }
  42386. },
  42387. },
  42388. [
  42389. {
  42390. name: "Macro",
  42391. height: math.unit(1700, "meters"),
  42392. default: true
  42393. },
  42394. {
  42395. name: "MegaMacro",
  42396. height: math.unit(20400, "meters")
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42402. {
  42403. front: {
  42404. height: math.unit(6 + 3/12, "feet"),
  42405. weight: math.unit(185, "lb"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/susan-grant/front.svg",
  42409. extra: 1351/1327,
  42410. bottom: 26/1377
  42411. }
  42412. },
  42413. },
  42414. [
  42415. {
  42416. name: "Normal",
  42417. height: math.unit(6 + 3/12, "feet"),
  42418. default: true
  42419. },
  42420. {
  42421. name: "Macro",
  42422. height: math.unit(225, "feet")
  42423. },
  42424. {
  42425. name: "Macro+",
  42426. height: math.unit(900, "feet")
  42427. },
  42428. {
  42429. name: "MegaMacro",
  42430. height: math.unit(14400, "feet")
  42431. },
  42432. ]
  42433. ))
  42434. characterMakers.push(() => makeCharacter(
  42435. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42436. {
  42437. front: {
  42438. height: math.unit(5 + 4/12, "feet"),
  42439. weight: math.unit(110, "lb"),
  42440. name: "Front",
  42441. image: {
  42442. source: "./media/characters/axel-isanov/front.svg",
  42443. extra: 1096/1065,
  42444. bottom: 13/1109
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(5 + 4/12, "feet"),
  42452. default: true
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42458. {
  42459. front: {
  42460. height: math.unit(9, "feet"),
  42461. weight: math.unit(467, "lb"),
  42462. name: "Front",
  42463. image: {
  42464. source: "./media/characters/necahual/front.svg",
  42465. extra: 920/873,
  42466. bottom: 26/946
  42467. }
  42468. },
  42469. back: {
  42470. height: math.unit(9, "feet"),
  42471. weight: math.unit(467, "lb"),
  42472. name: "Back",
  42473. image: {
  42474. source: "./media/characters/necahual/back.svg",
  42475. extra: 930/884,
  42476. bottom: 16/946
  42477. }
  42478. },
  42479. frontUnderwear: {
  42480. height: math.unit(9, "feet"),
  42481. weight: math.unit(467, "lb"),
  42482. name: "Front (Underwear)",
  42483. image: {
  42484. source: "./media/characters/necahual/front-underwear.svg",
  42485. extra: 920/873,
  42486. bottom: 26/946
  42487. }
  42488. },
  42489. frontDressed: {
  42490. height: math.unit(9, "feet"),
  42491. weight: math.unit(467, "lb"),
  42492. name: "Front (Dressed)",
  42493. image: {
  42494. source: "./media/characters/necahual/front-dressed.svg",
  42495. extra: 920/873,
  42496. bottom: 26/946
  42497. }
  42498. },
  42499. },
  42500. [
  42501. {
  42502. name: "Comprsesed",
  42503. height: math.unit(9, "feet")
  42504. },
  42505. {
  42506. name: "Natural",
  42507. height: math.unit(15, "feet"),
  42508. default: true
  42509. },
  42510. {
  42511. name: "Boosted",
  42512. height: math.unit(50, "feet")
  42513. },
  42514. {
  42515. name: "Boosted+",
  42516. height: math.unit(150, "feet")
  42517. },
  42518. {
  42519. name: "Max",
  42520. height: math.unit(500, "feet")
  42521. },
  42522. ]
  42523. ))
  42524. characterMakers.push(() => makeCharacter(
  42525. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42526. {
  42527. front: {
  42528. height: math.unit(22 + 1/12, "feet"),
  42529. weight: math.unit(3200, "lb"),
  42530. name: "Front",
  42531. image: {
  42532. source: "./media/characters/theo-acacia/front.svg",
  42533. extra: 1796/1741,
  42534. bottom: 83/1879
  42535. }
  42536. },
  42537. frontUnderwear: {
  42538. height: math.unit(22 + 1/12, "feet"),
  42539. weight: math.unit(3200, "lb"),
  42540. name: "Front (Underwear)",
  42541. image: {
  42542. source: "./media/characters/theo-acacia/front-underwear.svg",
  42543. extra: 1796/1741,
  42544. bottom: 83/1879
  42545. }
  42546. },
  42547. frontNude: {
  42548. height: math.unit(22 + 1/12, "feet"),
  42549. weight: math.unit(3200, "lb"),
  42550. name: "Front (Nude)",
  42551. image: {
  42552. source: "./media/characters/theo-acacia/front-nude.svg",
  42553. extra: 1796/1741,
  42554. bottom: 83/1879
  42555. }
  42556. },
  42557. },
  42558. [
  42559. {
  42560. name: "Normal",
  42561. height: math.unit(22 + 1/12, "feet"),
  42562. default: true
  42563. },
  42564. ]
  42565. ))
  42566. characterMakers.push(() => makeCharacter(
  42567. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42568. {
  42569. front: {
  42570. height: math.unit(20, "feet"),
  42571. name: "Front",
  42572. image: {
  42573. source: "./media/characters/astra/front.svg",
  42574. extra: 1850/1714,
  42575. bottom: 106/1956
  42576. }
  42577. },
  42578. frontUndressed: {
  42579. height: math.unit(20, "feet"),
  42580. name: "Front (Undressed)",
  42581. image: {
  42582. source: "./media/characters/astra/front-undressed.svg",
  42583. extra: 1926/1749,
  42584. bottom: 0/1926
  42585. }
  42586. },
  42587. hand: {
  42588. height: math.unit(1.53, "feet"),
  42589. name: "Hand",
  42590. image: {
  42591. source: "./media/characters/astra/hand.svg"
  42592. }
  42593. },
  42594. paw: {
  42595. height: math.unit(1.53, "feet"),
  42596. name: "Paw",
  42597. image: {
  42598. source: "./media/characters/astra/paw.svg"
  42599. }
  42600. },
  42601. },
  42602. [
  42603. {
  42604. name: "Smallest",
  42605. height: math.unit(20, "feet")
  42606. },
  42607. {
  42608. name: "Normal",
  42609. height: math.unit(1e9, "miles"),
  42610. default: true
  42611. },
  42612. {
  42613. name: "Larger",
  42614. height: math.unit(5, "multiverses")
  42615. },
  42616. {
  42617. name: "Largest",
  42618. height: math.unit(1e9, "multiverses")
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(8, "feet"),
  42627. name: "Front",
  42628. image: {
  42629. source: "./media/characters/breanna/front.svg",
  42630. extra: 1912/1632,
  42631. bottom: 33/1945
  42632. }
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Smallest",
  42638. height: math.unit(8, "feet")
  42639. },
  42640. {
  42641. name: "Normal",
  42642. height: math.unit(1, "mile"),
  42643. default: true
  42644. },
  42645. {
  42646. name: "Maximum",
  42647. height: math.unit(1500000000000, "lightyears")
  42648. },
  42649. ]
  42650. ))
  42651. characterMakers.push(() => makeCharacter(
  42652. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42653. {
  42654. front: {
  42655. height: math.unit(5 + 11/12, "feet"),
  42656. weight: math.unit(155, "lb"),
  42657. name: "Front",
  42658. image: {
  42659. source: "./media/characters/cai/front.svg",
  42660. extra: 1823/1702,
  42661. bottom: 32/1855
  42662. }
  42663. },
  42664. back: {
  42665. height: math.unit(5 + 11/12, "feet"),
  42666. weight: math.unit(155, "lb"),
  42667. name: "Back",
  42668. image: {
  42669. source: "./media/characters/cai/back.svg",
  42670. extra: 1809/1708,
  42671. bottom: 31/1840
  42672. }
  42673. },
  42674. },
  42675. [
  42676. {
  42677. name: "Normal",
  42678. height: math.unit(5 + 11/12, "feet"),
  42679. default: true
  42680. },
  42681. {
  42682. name: "Big",
  42683. height: math.unit(15, "feet")
  42684. },
  42685. {
  42686. name: "Macro",
  42687. height: math.unit(200, "feet")
  42688. },
  42689. ]
  42690. ))
  42691. characterMakers.push(() => makeCharacter(
  42692. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42693. {
  42694. front: {
  42695. height: math.unit(5 + 6/12, "feet"),
  42696. weight: math.unit(160, "lb"),
  42697. name: "Front",
  42698. image: {
  42699. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42700. extra: 1227/1174,
  42701. bottom: 37/1264
  42702. }
  42703. },
  42704. },
  42705. [
  42706. {
  42707. name: "Macro",
  42708. height: math.unit(444, "meters"),
  42709. default: true
  42710. },
  42711. ]
  42712. ))
  42713. characterMakers.push(() => makeCharacter(
  42714. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42715. {
  42716. front: {
  42717. height: math.unit(18 + 7/12, "feet"),
  42718. name: "Front",
  42719. image: {
  42720. source: "./media/characters/rex/front.svg",
  42721. extra: 1941/1807,
  42722. bottom: 66/2007
  42723. }
  42724. },
  42725. back: {
  42726. height: math.unit(18 + 7/12, "feet"),
  42727. name: "Back",
  42728. image: {
  42729. source: "./media/characters/rex/back.svg",
  42730. extra: 1937/1822,
  42731. bottom: 42/1979
  42732. }
  42733. },
  42734. boot: {
  42735. height: math.unit(3.45, "feet"),
  42736. name: "Boot",
  42737. image: {
  42738. source: "./media/characters/rex/boot.svg"
  42739. }
  42740. },
  42741. paw: {
  42742. height: math.unit(4.17, "feet"),
  42743. name: "Paw",
  42744. image: {
  42745. source: "./media/characters/rex/paw.svg"
  42746. }
  42747. },
  42748. head: {
  42749. height: math.unit(6.728, "feet"),
  42750. name: "Head",
  42751. image: {
  42752. source: "./media/characters/rex/head.svg"
  42753. }
  42754. },
  42755. },
  42756. [
  42757. {
  42758. name: "Nano",
  42759. height: math.unit(18 + 7/12, "feet")
  42760. },
  42761. {
  42762. name: "Micro",
  42763. height: math.unit(1.5, "megameters")
  42764. },
  42765. {
  42766. name: "Normal",
  42767. height: math.unit(440, "megameters"),
  42768. default: true
  42769. },
  42770. {
  42771. name: "Macro",
  42772. height: math.unit(2.5, "gigameters")
  42773. },
  42774. {
  42775. name: "Gigamacro",
  42776. height: math.unit(2, "galaxies")
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42782. {
  42783. side: {
  42784. height: math.unit(32, "feet"),
  42785. weight: math.unit(250000, "lb"),
  42786. name: "Side",
  42787. image: {
  42788. source: "./media/characters/silverwing/side.svg",
  42789. extra: 1100/1019,
  42790. bottom: 204/1304
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Normal",
  42797. height: math.unit(32, "feet"),
  42798. default: true
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42804. {
  42805. front: {
  42806. height: math.unit(6 + 6/12, "feet"),
  42807. weight: math.unit(350, "lb"),
  42808. name: "Front",
  42809. image: {
  42810. source: "./media/characters/tristan-hawthorne/front.svg",
  42811. extra: 1159/1124,
  42812. bottom: 37/1196
  42813. },
  42814. form: "labrador",
  42815. default: true
  42816. },
  42817. skunkFront: {
  42818. height: math.unit(4 + 6/12, "feet"),
  42819. weight: math.unit(120, "lb"),
  42820. name: "Front",
  42821. image: {
  42822. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42823. extra: 1609/1551,
  42824. bottom: 169/1778
  42825. },
  42826. form: "skunk",
  42827. default: true
  42828. },
  42829. },
  42830. [
  42831. {
  42832. name: "Normal",
  42833. height: math.unit(6 + 6/12, "feet"),
  42834. form: "labrador",
  42835. default: true
  42836. },
  42837. {
  42838. name: "Normal",
  42839. height: math.unit(4 + 6/12, "feet"),
  42840. form: "skunk",
  42841. default: true
  42842. },
  42843. ],
  42844. {
  42845. "labrador": {
  42846. name: "Labrador",
  42847. default: true
  42848. },
  42849. "skunk": {
  42850. name: "Skunk"
  42851. }
  42852. }
  42853. ))
  42854. characterMakers.push(() => makeCharacter(
  42855. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42856. {
  42857. front: {
  42858. height: math.unit(5 + 11/12, "feet"),
  42859. weight: math.unit(190, "lb"),
  42860. name: "Front",
  42861. image: {
  42862. source: "./media/characters/mizu/front.svg",
  42863. extra: 1988/1788,
  42864. bottom: 14/2002
  42865. }
  42866. },
  42867. },
  42868. [
  42869. {
  42870. name: "Normal",
  42871. height: math.unit(5 + 11/12, "feet"),
  42872. default: true
  42873. },
  42874. ]
  42875. ))
  42876. characterMakers.push(() => makeCharacter(
  42877. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42878. {
  42879. front: {
  42880. height: math.unit(1.7, "feet"),
  42881. weight: math.unit(50, "lb"),
  42882. name: "Front",
  42883. image: {
  42884. source: "./media/characters/dechroma/front.svg",
  42885. extra: 1095/859,
  42886. bottom: 64/1159
  42887. }
  42888. },
  42889. },
  42890. [
  42891. {
  42892. name: "Normal",
  42893. height: math.unit(1.7, "feet"),
  42894. default: true
  42895. },
  42896. ]
  42897. ))
  42898. characterMakers.push(() => makeCharacter(
  42899. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42900. {
  42901. side: {
  42902. height: math.unit(30, "feet"),
  42903. name: "Side",
  42904. image: {
  42905. source: "./media/characters/veluren-thanazel/side.svg",
  42906. extra: 1611/633,
  42907. bottom: 118/1729
  42908. }
  42909. },
  42910. front: {
  42911. height: math.unit(30, "feet"),
  42912. name: "Front",
  42913. image: {
  42914. source: "./media/characters/veluren-thanazel/front.svg",
  42915. extra: 1486/636,
  42916. bottom: 238/1724
  42917. }
  42918. },
  42919. head: {
  42920. height: math.unit(21.4, "feet"),
  42921. name: "Head",
  42922. image: {
  42923. source: "./media/characters/veluren-thanazel/head.svg"
  42924. }
  42925. },
  42926. genitals: {
  42927. height: math.unit(19.4, "feet"),
  42928. name: "Genitals",
  42929. image: {
  42930. source: "./media/characters/veluren-thanazel/genitals.svg"
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Social",
  42937. height: math.unit(6, "feet")
  42938. },
  42939. {
  42940. name: "Play",
  42941. height: math.unit(12, "feet")
  42942. },
  42943. {
  42944. name: "True",
  42945. height: math.unit(30, "feet"),
  42946. default: true
  42947. },
  42948. ]
  42949. ))
  42950. characterMakers.push(() => makeCharacter(
  42951. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42952. {
  42953. front: {
  42954. height: math.unit(7 + 6/12, "feet"),
  42955. weight: math.unit(500, "kg"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/arcturas/front.svg",
  42959. extra: 1700/1500,
  42960. bottom: 145/1845
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Normal",
  42967. height: math.unit(7 + 6/12, "feet"),
  42968. default: true
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42974. {
  42975. side: {
  42976. height: math.unit(6, "feet"),
  42977. weight: math.unit(2, "tons"),
  42978. name: "Side",
  42979. image: {
  42980. source: "./media/characters/vitaen/side.svg",
  42981. extra: 1157/617,
  42982. bottom: 122/1279
  42983. }
  42984. },
  42985. },
  42986. [
  42987. {
  42988. name: "Normal",
  42989. height: math.unit(6, "feet"),
  42990. default: true
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(19, "feet"),
  42999. name: "Front",
  43000. image: {
  43001. source: "./media/characters/fia-dreamweaver/front.svg",
  43002. extra: 1630/1504,
  43003. bottom: 25/1655
  43004. }
  43005. },
  43006. },
  43007. [
  43008. {
  43009. name: "Normal",
  43010. height: math.unit(19, "feet"),
  43011. default: true
  43012. },
  43013. ]
  43014. ))
  43015. characterMakers.push(() => makeCharacter(
  43016. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43017. {
  43018. front: {
  43019. height: math.unit(5 + 4/12, "feet"),
  43020. name: "Front",
  43021. image: {
  43022. source: "./media/characters/artan/front.svg",
  43023. extra: 1618/1535,
  43024. bottom: 46/1664
  43025. }
  43026. },
  43027. back: {
  43028. height: math.unit(5 + 4/12, "feet"),
  43029. name: "Back",
  43030. image: {
  43031. source: "./media/characters/artan/back.svg",
  43032. extra: 1618/1543,
  43033. bottom: 31/1649
  43034. }
  43035. },
  43036. },
  43037. [
  43038. {
  43039. name: "Normal",
  43040. height: math.unit(5 + 4/12, "feet"),
  43041. default: true
  43042. },
  43043. ]
  43044. ))
  43045. characterMakers.push(() => makeCharacter(
  43046. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43047. {
  43048. side: {
  43049. height: math.unit(182, "cm"),
  43050. weight: math.unit(1000, "lb"),
  43051. name: "Side",
  43052. image: {
  43053. source: "./media/characters/silver-dragon/side.svg",
  43054. extra: 710/287,
  43055. bottom: 88/798
  43056. }
  43057. },
  43058. },
  43059. [
  43060. {
  43061. name: "Normal",
  43062. height: math.unit(182, "cm"),
  43063. default: true
  43064. },
  43065. ]
  43066. ))
  43067. characterMakers.push(() => makeCharacter(
  43068. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43069. {
  43070. side: {
  43071. height: math.unit(6 + 6/12, "feet"),
  43072. weight: math.unit(1.5, "tons"),
  43073. name: "Side",
  43074. image: {
  43075. source: "./media/characters/zephyr/side.svg",
  43076. extra: 1433/586,
  43077. bottom: 109/1542
  43078. }
  43079. },
  43080. },
  43081. [
  43082. {
  43083. name: "Normal",
  43084. height: math.unit(6 + 6/12, "feet"),
  43085. default: true
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43091. {
  43092. side: {
  43093. height: math.unit(1, "feet"),
  43094. name: "Side",
  43095. image: {
  43096. source: "./media/characters/vixye/side.svg",
  43097. extra: 632/541,
  43098. bottom: 0/632
  43099. }
  43100. },
  43101. },
  43102. [
  43103. {
  43104. name: "Normal",
  43105. height: math.unit(1, "feet"),
  43106. default: true
  43107. },
  43108. {
  43109. name: "True",
  43110. height: math.unit(1e15, "multiverses")
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(8 + 2/12, "feet"),
  43119. weight: math.unit(650, "lb"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43123. extra: 1174/1137,
  43124. bottom: 82/1256
  43125. }
  43126. },
  43127. back: {
  43128. height: math.unit(8 + 2/12, "feet"),
  43129. weight: math.unit(650, "lb"),
  43130. name: "Back",
  43131. image: {
  43132. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43133. extra: 1204/1157,
  43134. bottom: 46/1250
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Wildform",
  43141. height: math.unit(8 + 2/12, "feet"),
  43142. default: true
  43143. },
  43144. ]
  43145. ))
  43146. characterMakers.push(() => makeCharacter(
  43147. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43148. {
  43149. front: {
  43150. height: math.unit(18, "feet"),
  43151. name: "Front",
  43152. image: {
  43153. source: "./media/characters/cyphin/front.svg",
  43154. extra: 970/886,
  43155. bottom: 42/1012
  43156. }
  43157. },
  43158. back: {
  43159. height: math.unit(18, "feet"),
  43160. name: "Back",
  43161. image: {
  43162. source: "./media/characters/cyphin/back.svg",
  43163. extra: 1009/894,
  43164. bottom: 24/1033
  43165. }
  43166. },
  43167. head: {
  43168. height: math.unit(5.05, "feet"),
  43169. name: "Head",
  43170. image: {
  43171. source: "./media/characters/cyphin/head.svg"
  43172. }
  43173. },
  43174. tailbud: {
  43175. height: math.unit(5, "feet"),
  43176. name: "Tailbud",
  43177. image: {
  43178. source: "./media/characters/cyphin/tailbud.svg"
  43179. }
  43180. },
  43181. },
  43182. [
  43183. ]
  43184. ))
  43185. characterMakers.push(() => makeCharacter(
  43186. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43187. {
  43188. side: {
  43189. height: math.unit(10, "feet"),
  43190. weight: math.unit(6, "tons"),
  43191. name: "Side",
  43192. image: {
  43193. source: "./media/characters/raijin/side.svg",
  43194. extra: 1529/613,
  43195. bottom: 337/1866
  43196. }
  43197. },
  43198. },
  43199. [
  43200. {
  43201. name: "Normal",
  43202. height: math.unit(10, "feet"),
  43203. default: true
  43204. },
  43205. ]
  43206. ))
  43207. characterMakers.push(() => makeCharacter(
  43208. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43209. {
  43210. side: {
  43211. height: math.unit(9, "feet"),
  43212. name: "Side",
  43213. image: {
  43214. source: "./media/characters/nilghais/side.svg",
  43215. extra: 1047/744,
  43216. bottom: 91/1138
  43217. }
  43218. },
  43219. head: {
  43220. height: math.unit(3.14, "feet"),
  43221. name: "Head",
  43222. image: {
  43223. source: "./media/characters/nilghais/head.svg"
  43224. }
  43225. },
  43226. mouth: {
  43227. height: math.unit(4.6, "feet"),
  43228. name: "Mouth",
  43229. image: {
  43230. source: "./media/characters/nilghais/mouth.svg"
  43231. }
  43232. },
  43233. wings: {
  43234. height: math.unit(24, "feet"),
  43235. name: "Wings",
  43236. image: {
  43237. source: "./media/characters/nilghais/wings.svg"
  43238. }
  43239. },
  43240. ass: {
  43241. height: math.unit(6.12, "feet"),
  43242. name: "Ass",
  43243. image: {
  43244. source: "./media/characters/nilghais/ass.svg"
  43245. }
  43246. },
  43247. },
  43248. [
  43249. {
  43250. name: "Normal",
  43251. height: math.unit(9, "feet"),
  43252. default: true
  43253. },
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43258. {
  43259. regular: {
  43260. height: math.unit(16 + 2/12, "feet"),
  43261. weight: math.unit(2300, "lb"),
  43262. name: "Regular",
  43263. image: {
  43264. source: "./media/characters/zolgar/regular.svg",
  43265. extra: 1246/1004,
  43266. bottom: 124/1370
  43267. }
  43268. },
  43269. boxers: {
  43270. height: math.unit(16 + 2/12, "feet"),
  43271. weight: math.unit(2300, "lb"),
  43272. name: "Boxers",
  43273. image: {
  43274. source: "./media/characters/zolgar/boxers.svg",
  43275. extra: 1246/1004,
  43276. bottom: 124/1370
  43277. }
  43278. },
  43279. armored: {
  43280. height: math.unit(16 + 2/12, "feet"),
  43281. weight: math.unit(2300, "lb"),
  43282. name: "Armored",
  43283. image: {
  43284. source: "./media/characters/zolgar/armored.svg",
  43285. extra: 1246/1004,
  43286. bottom: 124/1370
  43287. }
  43288. },
  43289. goth: {
  43290. height: math.unit(16 + 2/12, "feet"),
  43291. weight: math.unit(2300, "lb"),
  43292. name: "Goth",
  43293. image: {
  43294. source: "./media/characters/zolgar/goth.svg",
  43295. extra: 1246/1004,
  43296. bottom: 124/1370
  43297. }
  43298. },
  43299. },
  43300. [
  43301. {
  43302. name: "Shrunken Down",
  43303. height: math.unit(9 + 2/12, "feet")
  43304. },
  43305. {
  43306. name: "Normal",
  43307. height: math.unit(16 + 2/12, "feet"),
  43308. default: true
  43309. },
  43310. ]
  43311. ))
  43312. characterMakers.push(() => makeCharacter(
  43313. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43314. {
  43315. front: {
  43316. height: math.unit(6, "feet"),
  43317. weight: math.unit(168, "lb"),
  43318. name: "Front",
  43319. image: {
  43320. source: "./media/characters/luca/front.svg",
  43321. extra: 841/667,
  43322. bottom: 102/943
  43323. }
  43324. },
  43325. },
  43326. [
  43327. {
  43328. name: "Normal",
  43329. height: math.unit(6, "feet"),
  43330. default: true
  43331. },
  43332. ]
  43333. ))
  43334. characterMakers.push(() => makeCharacter(
  43335. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43336. {
  43337. side: {
  43338. height: math.unit(7 + 3/12, "feet"),
  43339. weight: math.unit(312, "lb"),
  43340. name: "Side",
  43341. image: {
  43342. source: "./media/characters/zezo/side.svg",
  43343. extra: 1192/1067,
  43344. bottom: 63/1255
  43345. }
  43346. },
  43347. },
  43348. [
  43349. {
  43350. name: "Normal",
  43351. height: math.unit(7 + 3/12, "feet"),
  43352. default: true
  43353. },
  43354. ]
  43355. ))
  43356. characterMakers.push(() => makeCharacter(
  43357. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43358. {
  43359. front: {
  43360. height: math.unit(5 + 5/12, "feet"),
  43361. weight: math.unit(170, "lb"),
  43362. name: "Front",
  43363. image: {
  43364. source: "./media/characters/mayso/front.svg",
  43365. extra: 1215/1108,
  43366. bottom: 16/1231
  43367. }
  43368. },
  43369. },
  43370. [
  43371. {
  43372. name: "Normal",
  43373. height: math.unit(5 + 5/12, "feet"),
  43374. default: true
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43380. {
  43381. front: {
  43382. height: math.unit(4 + 3/12, "feet"),
  43383. weight: math.unit(80, "lb"),
  43384. name: "Front",
  43385. image: {
  43386. source: "./media/characters/hess/front.svg",
  43387. extra: 1200/1123,
  43388. bottom: 16/1216
  43389. }
  43390. },
  43391. },
  43392. [
  43393. {
  43394. name: "Normal",
  43395. height: math.unit(4 + 3/12, "feet"),
  43396. default: true
  43397. },
  43398. ]
  43399. ))
  43400. characterMakers.push(() => makeCharacter(
  43401. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43402. {
  43403. front: {
  43404. height: math.unit(1.9, "meters"),
  43405. name: "Front",
  43406. image: {
  43407. source: "./media/characters/ashgar/front.svg",
  43408. extra: 1177/1146,
  43409. bottom: 99/1276
  43410. }
  43411. },
  43412. back: {
  43413. height: math.unit(1.9, "meters"),
  43414. name: "Back",
  43415. image: {
  43416. source: "./media/characters/ashgar/back.svg",
  43417. extra: 1201/1183,
  43418. bottom: 53/1254
  43419. }
  43420. },
  43421. feral: {
  43422. height: math.unit(1.4, "meters"),
  43423. name: "Feral",
  43424. image: {
  43425. source: "./media/characters/ashgar/feral.svg",
  43426. extra: 370/345,
  43427. bottom: 45/415
  43428. }
  43429. },
  43430. },
  43431. [
  43432. {
  43433. name: "Normal",
  43434. height: math.unit(1.9, "meters"),
  43435. default: true
  43436. },
  43437. ]
  43438. ))
  43439. characterMakers.push(() => makeCharacter(
  43440. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43441. {
  43442. regular: {
  43443. height: math.unit(6, "feet"),
  43444. weight: math.unit(220, "lb"),
  43445. name: "Regular",
  43446. image: {
  43447. source: "./media/characters/phillip/regular.svg",
  43448. extra: 1373/1277,
  43449. bottom: 75/1448
  43450. }
  43451. },
  43452. dressed: {
  43453. height: math.unit(6, "feet"),
  43454. weight: math.unit(220, "lb"),
  43455. name: "Dressed",
  43456. image: {
  43457. source: "./media/characters/phillip/dressed.svg",
  43458. extra: 1373/1277,
  43459. bottom: 75/1448
  43460. }
  43461. },
  43462. paw: {
  43463. height: math.unit(1.44, "feet"),
  43464. name: "Paw",
  43465. image: {
  43466. source: "./media/characters/phillip/paw.svg"
  43467. }
  43468. },
  43469. },
  43470. [
  43471. {
  43472. name: "Normal",
  43473. height: math.unit(6, "feet"),
  43474. default: true
  43475. },
  43476. ]
  43477. ))
  43478. characterMakers.push(() => makeCharacter(
  43479. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43480. {
  43481. side: {
  43482. height: math.unit(42, "feet"),
  43483. name: "Side",
  43484. image: {
  43485. source: "./media/characters/uvula/side.svg",
  43486. extra: 683/586,
  43487. bottom: 60/743
  43488. }
  43489. },
  43490. front: {
  43491. height: math.unit(42, "feet"),
  43492. name: "Front",
  43493. image: {
  43494. source: "./media/characters/uvula/front.svg",
  43495. extra: 705/613,
  43496. bottom: 54/759
  43497. }
  43498. },
  43499. maw: {
  43500. height: math.unit(23.5, "feet"),
  43501. name: "Maw",
  43502. image: {
  43503. source: "./media/characters/uvula/maw.svg"
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Original Size",
  43510. height: math.unit(14, "inches")
  43511. },
  43512. {
  43513. name: "Human Size",
  43514. height: math.unit(6, "feet")
  43515. },
  43516. {
  43517. name: "Big",
  43518. height: math.unit(42, "feet"),
  43519. default: true
  43520. },
  43521. {
  43522. name: "Bigger",
  43523. height: math.unit(100, "feet")
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(5 + 11/12, "feet"),
  43532. name: "Front",
  43533. image: {
  43534. source: "./media/characters/lannah/front.svg",
  43535. extra: 1208/1113,
  43536. bottom: 97/1305
  43537. }
  43538. },
  43539. },
  43540. [
  43541. {
  43542. name: "Normal",
  43543. height: math.unit(5 + 11/12, "feet"),
  43544. default: true
  43545. },
  43546. ]
  43547. ))
  43548. characterMakers.push(() => makeCharacter(
  43549. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43550. {
  43551. front: {
  43552. height: math.unit(6 + 3/12, "feet"),
  43553. weight: math.unit(3.5, "tons"),
  43554. name: "Front",
  43555. image: {
  43556. source: "./media/characters/emberflame/front.svg",
  43557. extra: 1198/672,
  43558. bottom: 82/1280
  43559. }
  43560. },
  43561. side: {
  43562. height: math.unit(6 + 3/12, "feet"),
  43563. weight: math.unit(3.5, "tons"),
  43564. name: "Side",
  43565. image: {
  43566. source: "./media/characters/emberflame/side.svg",
  43567. extra: 938/527,
  43568. bottom: 56/994
  43569. }
  43570. },
  43571. },
  43572. [
  43573. {
  43574. name: "Normal",
  43575. height: math.unit(6 + 3/12, "feet"),
  43576. default: true
  43577. },
  43578. ]
  43579. ))
  43580. characterMakers.push(() => makeCharacter(
  43581. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43582. {
  43583. side: {
  43584. height: math.unit(17.5, "feet"),
  43585. weight: math.unit(35, "tons"),
  43586. name: "Side",
  43587. image: {
  43588. source: "./media/characters/sophie-ambrose/side.svg",
  43589. extra: 1573/1242,
  43590. bottom: 71/1644
  43591. }
  43592. },
  43593. maw: {
  43594. height: math.unit(7.4, "feet"),
  43595. name: "Maw",
  43596. image: {
  43597. source: "./media/characters/sophie-ambrose/maw.svg"
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "Normal",
  43604. height: math.unit(17.5, "feet"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(280, "feet"),
  43614. weight: math.unit(550, "tons"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/king-mugi/front.svg",
  43618. extra: 1102/947,
  43619. bottom: 104/1206
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "King Mugi",
  43626. height: math.unit(280, "feet"),
  43627. default: true
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43633. {
  43634. front: {
  43635. height: math.unit(64, "meters"),
  43636. name: "Front",
  43637. image: {
  43638. source: "./media/characters/nova-fox/front.svg",
  43639. extra: 1310/1246,
  43640. bottom: 65/1375
  43641. }
  43642. },
  43643. },
  43644. [
  43645. {
  43646. name: "Macro",
  43647. height: math.unit(64, "meters"),
  43648. default: true
  43649. },
  43650. ]
  43651. ))
  43652. characterMakers.push(() => makeCharacter(
  43653. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43654. {
  43655. front: {
  43656. height: math.unit(6 + 3/12, "feet"),
  43657. weight: math.unit(170, "lb"),
  43658. name: "Front",
  43659. image: {
  43660. source: "./media/characters/sam-bat/front.svg",
  43661. extra: 1601/1411,
  43662. bottom: 125/1726
  43663. }
  43664. },
  43665. back: {
  43666. height: math.unit(6 + 3/12, "feet"),
  43667. weight: math.unit(170, "lb"),
  43668. name: "Back",
  43669. image: {
  43670. source: "./media/characters/sam-bat/back.svg",
  43671. extra: 1577/1405,
  43672. bottom: 58/1635
  43673. }
  43674. },
  43675. },
  43676. [
  43677. {
  43678. name: "Normal",
  43679. height: math.unit(6 + 3/12, "feet"),
  43680. default: true
  43681. },
  43682. ]
  43683. ))
  43684. characterMakers.push(() => makeCharacter(
  43685. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43686. {
  43687. front: {
  43688. height: math.unit(59, "feet"),
  43689. weight: math.unit(40000, "lb"),
  43690. name: "Front",
  43691. image: {
  43692. source: "./media/characters/inari/front.svg",
  43693. extra: 1884/1350,
  43694. bottom: 95/1979
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "Gigantamax",
  43701. height: math.unit(59, "feet"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(5 + 8/12, "feet"),
  43711. name: "Front",
  43712. image: {
  43713. source: "./media/characters/elizabeth/front.svg",
  43714. extra: 1395/1298,
  43715. bottom: 54/1449
  43716. }
  43717. },
  43718. mouth: {
  43719. height: math.unit(1.97, "feet"),
  43720. name: "Mouth",
  43721. image: {
  43722. source: "./media/characters/elizabeth/mouth.svg"
  43723. }
  43724. },
  43725. foot: {
  43726. height: math.unit(1.17, "feet"),
  43727. name: "Foot",
  43728. image: {
  43729. source: "./media/characters/elizabeth/foot.svg"
  43730. }
  43731. },
  43732. },
  43733. [
  43734. {
  43735. name: "Normal",
  43736. height: math.unit(5 + 8/12, "feet"),
  43737. default: true
  43738. },
  43739. {
  43740. name: "Minimacro",
  43741. height: math.unit(18, "feet")
  43742. },
  43743. {
  43744. name: "Macro",
  43745. height: math.unit(180, "feet")
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43751. {
  43752. front: {
  43753. height: math.unit(5 + 2/12, "feet"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/october-gossamer/front.svg",
  43757. extra: 505/454,
  43758. bottom: 7/512
  43759. }
  43760. },
  43761. back: {
  43762. height: math.unit(5 + 2/12, "feet"),
  43763. name: "Back",
  43764. image: {
  43765. source: "./media/characters/october-gossamer/back.svg",
  43766. extra: 501/454,
  43767. bottom: 11/512
  43768. }
  43769. },
  43770. },
  43771. [
  43772. {
  43773. name: "Normal",
  43774. height: math.unit(5 + 2/12, "feet"),
  43775. default: true
  43776. },
  43777. ]
  43778. ))
  43779. characterMakers.push(() => makeCharacter(
  43780. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43781. {
  43782. front: {
  43783. height: math.unit(5, "feet"),
  43784. name: "Front",
  43785. image: {
  43786. source: "./media/characters/epiglottis/front.svg",
  43787. extra: 923/849,
  43788. bottom: 17/940
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Original Size",
  43795. height: math.unit(10, "inches")
  43796. },
  43797. {
  43798. name: "Human Size",
  43799. height: math.unit(5, "feet"),
  43800. default: true
  43801. },
  43802. {
  43803. name: "Big",
  43804. height: math.unit(25, "feet")
  43805. },
  43806. {
  43807. name: "Bigger",
  43808. height: math.unit(50, "feet")
  43809. },
  43810. {
  43811. name: "oh lawd",
  43812. height: math.unit(75, "feet")
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43818. {
  43819. front: {
  43820. height: math.unit(2 + 4/12, "feet"),
  43821. weight: math.unit(60, "lb"),
  43822. name: "Front",
  43823. image: {
  43824. source: "./media/characters/lerm/front.svg",
  43825. extra: 796/790,
  43826. bottom: 79/875
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(2 + 4/12, "feet"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43840. {
  43841. front: {
  43842. height: math.unit(5.5, "feet"),
  43843. weight: math.unit(130, "lb"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/xena-nebadon/front.svg",
  43847. extra: 1828/1730,
  43848. bottom: 79/1907
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Tiny Puppy",
  43855. height: math.unit(3, "inches")
  43856. },
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(5.5, "feet"),
  43860. default: true
  43861. },
  43862. {
  43863. name: "Lotta Lady",
  43864. height: math.unit(12, "feet")
  43865. },
  43866. {
  43867. name: "Pretty Big",
  43868. height: math.unit(100, "feet")
  43869. },
  43870. {
  43871. name: "Big",
  43872. height: math.unit(500, "feet")
  43873. },
  43874. {
  43875. name: "Skyscraper Toys",
  43876. height: math.unit(2500, "feet")
  43877. },
  43878. {
  43879. name: "Plane Catcher",
  43880. height: math.unit(8, "miles")
  43881. },
  43882. {
  43883. name: "Planet Toys",
  43884. height: math.unit(15, "earths")
  43885. },
  43886. {
  43887. name: "Stardust",
  43888. height: math.unit(0.25, "galaxies")
  43889. },
  43890. {
  43891. name: "Snacks",
  43892. height: math.unit(70, "universes")
  43893. },
  43894. ]
  43895. ))
  43896. characterMakers.push(() => makeCharacter(
  43897. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43898. {
  43899. front: {
  43900. height: math.unit(1.6, "meters"),
  43901. weight: math.unit(60, "kg"),
  43902. name: "Front",
  43903. image: {
  43904. source: "./media/characters/bounty/front.svg",
  43905. extra: 1426/1308,
  43906. bottom: 15/1441
  43907. }
  43908. },
  43909. back: {
  43910. height: math.unit(1.6, "meters"),
  43911. weight: math.unit(60, "kg"),
  43912. name: "Back",
  43913. image: {
  43914. source: "./media/characters/bounty/back.svg",
  43915. extra: 1417/1307,
  43916. bottom: 8/1425
  43917. }
  43918. },
  43919. },
  43920. [
  43921. {
  43922. name: "Normal",
  43923. height: math.unit(1.6, "meters"),
  43924. default: true
  43925. },
  43926. {
  43927. name: "Macro",
  43928. height: math.unit(300, "meters")
  43929. },
  43930. ]
  43931. ))
  43932. characterMakers.push(() => makeCharacter(
  43933. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43934. {
  43935. front: {
  43936. height: math.unit(2 + 8/12, "feet"),
  43937. weight: math.unit(15, "lb"),
  43938. name: "Front",
  43939. image: {
  43940. source: "./media/characters/mochi/front.svg",
  43941. extra: 1022/852,
  43942. bottom: 435/1457
  43943. }
  43944. },
  43945. back: {
  43946. height: math.unit(2 + 8/12, "feet"),
  43947. weight: math.unit(15, "lb"),
  43948. name: "Back",
  43949. image: {
  43950. source: "./media/characters/mochi/back.svg",
  43951. extra: 1335/1119,
  43952. bottom: 39/1374
  43953. }
  43954. },
  43955. bird: {
  43956. height: math.unit(2 + 8/12, "feet"),
  43957. weight: math.unit(15, "lb"),
  43958. name: "Bird",
  43959. image: {
  43960. source: "./media/characters/mochi/bird.svg",
  43961. extra: 1251/1113,
  43962. bottom: 178/1429
  43963. }
  43964. },
  43965. kaiju: {
  43966. height: math.unit(154, "feet"),
  43967. weight: math.unit(1e7, "lb"),
  43968. name: "Kaiju",
  43969. image: {
  43970. source: "./media/characters/mochi/kaiju.svg",
  43971. extra: 460/324,
  43972. bottom: 40/500
  43973. }
  43974. },
  43975. head: {
  43976. height: math.unit(1.21, "feet"),
  43977. name: "Head",
  43978. image: {
  43979. source: "./media/characters/mochi/head.svg"
  43980. }
  43981. },
  43982. alternateTail: {
  43983. height: math.unit(2 + 8/12, "feet"),
  43984. weight: math.unit(45, "lb"),
  43985. name: "Alternate Tail",
  43986. image: {
  43987. source: "./media/characters/mochi/alternate-tail.svg",
  43988. extra: 139/76,
  43989. bottom: 45/184
  43990. }
  43991. },
  43992. },
  43993. [
  43994. {
  43995. name: "Micro",
  43996. height: math.unit(2, "inches")
  43997. },
  43998. {
  43999. name: "Normal",
  44000. height: math.unit(2 + 8/12, "feet"),
  44001. default: true
  44002. },
  44003. {
  44004. name: "Macro",
  44005. height: math.unit(106, "feet")
  44006. },
  44007. ]
  44008. ))
  44009. characterMakers.push(() => makeCharacter(
  44010. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44011. {
  44012. front: {
  44013. height: math.unit(5.67, "feet"),
  44014. weight: math.unit(135, "lb"),
  44015. name: "Front",
  44016. image: {
  44017. source: "./media/characters/sarel/front.svg",
  44018. extra: 865/788,
  44019. bottom: 97/962
  44020. }
  44021. },
  44022. back: {
  44023. height: math.unit(5.67, "feet"),
  44024. weight: math.unit(135, "lb"),
  44025. name: "Back",
  44026. image: {
  44027. source: "./media/characters/sarel/back.svg",
  44028. extra: 857/777,
  44029. bottom: 32/889
  44030. }
  44031. },
  44032. chozoan: {
  44033. height: math.unit(5.67, "feet"),
  44034. weight: math.unit(135, "lb"),
  44035. name: "Chozoan",
  44036. image: {
  44037. source: "./media/characters/sarel/chozoan.svg",
  44038. extra: 865/788,
  44039. bottom: 97/962
  44040. }
  44041. },
  44042. current: {
  44043. height: math.unit(5.67, "feet"),
  44044. weight: math.unit(135, "lb"),
  44045. name: "Current",
  44046. image: {
  44047. source: "./media/characters/sarel/current.svg",
  44048. extra: 865/788,
  44049. bottom: 97/962
  44050. }
  44051. },
  44052. head: {
  44053. height: math.unit(1.77, "feet"),
  44054. name: "Head",
  44055. image: {
  44056. source: "./media/characters/sarel/head.svg"
  44057. }
  44058. },
  44059. claws: {
  44060. height: math.unit(1.8, "feet"),
  44061. name: "Claws",
  44062. image: {
  44063. source: "./media/characters/sarel/claws.svg"
  44064. }
  44065. },
  44066. clawsAlt: {
  44067. height: math.unit(1.8, "feet"),
  44068. name: "Claws-alt",
  44069. image: {
  44070. source: "./media/characters/sarel/claws-alt.svg"
  44071. }
  44072. },
  44073. },
  44074. [
  44075. {
  44076. name: "Normal",
  44077. height: math.unit(5.67, "feet"),
  44078. default: true
  44079. },
  44080. ]
  44081. ))
  44082. characterMakers.push(() => makeCharacter(
  44083. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44084. {
  44085. front: {
  44086. height: math.unit(5500, "feet"),
  44087. name: "Front",
  44088. image: {
  44089. source: "./media/characters/alyonia/front.svg",
  44090. extra: 1200/1135,
  44091. bottom: 29/1229
  44092. }
  44093. },
  44094. back: {
  44095. height: math.unit(5500, "feet"),
  44096. name: "Back",
  44097. image: {
  44098. source: "./media/characters/alyonia/back.svg",
  44099. extra: 1205/1138,
  44100. bottom: 10/1215
  44101. }
  44102. },
  44103. },
  44104. [
  44105. {
  44106. name: "Small",
  44107. height: math.unit(10, "feet")
  44108. },
  44109. {
  44110. name: "Macro",
  44111. height: math.unit(500, "feet")
  44112. },
  44113. {
  44114. name: "Mega Macro",
  44115. height: math.unit(5500, "feet"),
  44116. default: true
  44117. },
  44118. {
  44119. name: "Mega Macro+",
  44120. height: math.unit(500000, "feet")
  44121. },
  44122. {
  44123. name: "Giga Macro",
  44124. height: math.unit(3000, "miles")
  44125. },
  44126. {
  44127. name: "Tera Macro",
  44128. height: math.unit(2.8e6, "miles")
  44129. },
  44130. {
  44131. name: "Galactic",
  44132. height: math.unit(120000, "lightyears")
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44138. {
  44139. werewolf: {
  44140. height: math.unit(8, "feet"),
  44141. weight: math.unit(425, "lb"),
  44142. name: "Werewolf",
  44143. image: {
  44144. source: "./media/characters/autumn/werewolf.svg",
  44145. extra: 2154/2031,
  44146. bottom: 160/2314
  44147. }
  44148. },
  44149. human: {
  44150. height: math.unit(5 + 8/12, "feet"),
  44151. weight: math.unit(150, "lb"),
  44152. name: "Human",
  44153. image: {
  44154. source: "./media/characters/autumn/human.svg",
  44155. extra: 1200/1149,
  44156. bottom: 30/1230
  44157. }
  44158. },
  44159. },
  44160. [
  44161. {
  44162. name: "Normal",
  44163. height: math.unit(8, "feet"),
  44164. default: true
  44165. },
  44166. ]
  44167. ))
  44168. characterMakers.push(() => makeCharacter(
  44169. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44170. {
  44171. front: {
  44172. height: math.unit(8 + 5/12, "feet"),
  44173. weight: math.unit(825, "lb"),
  44174. name: "Front",
  44175. image: {
  44176. source: "./media/characters/cobalt-charizard/front.svg",
  44177. extra: 1268/1155,
  44178. bottom: 122/1390
  44179. }
  44180. },
  44181. side: {
  44182. height: math.unit(8 + 5/12, "feet"),
  44183. weight: math.unit(825, "lb"),
  44184. name: "Side",
  44185. image: {
  44186. source: "./media/characters/cobalt-charizard/side.svg",
  44187. extra: 1348/1257,
  44188. bottom: 58/1406
  44189. }
  44190. },
  44191. gMax: {
  44192. height: math.unit(134 + 11/12, "feet"),
  44193. name: "G-Max",
  44194. image: {
  44195. source: "./media/characters/cobalt-charizard/g-max.svg",
  44196. extra: 1835/1541,
  44197. bottom: 151/1986
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(8 + 5/12, "feet"),
  44205. default: true
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44211. {
  44212. front: {
  44213. height: math.unit(6 + 3/12, "feet"),
  44214. weight: math.unit(210, "lb"),
  44215. name: "Front",
  44216. image: {
  44217. source: "./media/characters/stella/front.svg",
  44218. extra: 3549/3335,
  44219. bottom: 51/3600
  44220. }
  44221. },
  44222. },
  44223. [
  44224. {
  44225. name: "Normal",
  44226. height: math.unit(6 + 3/12, "feet"),
  44227. default: true
  44228. },
  44229. ]
  44230. ))
  44231. characterMakers.push(() => makeCharacter(
  44232. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44233. {
  44234. front: {
  44235. height: math.unit(5, "feet"),
  44236. weight: math.unit(90, "lb"),
  44237. name: "Front",
  44238. image: {
  44239. source: "./media/characters/riley-bishop/front.svg",
  44240. extra: 1450/1428,
  44241. bottom: 152/1602
  44242. }
  44243. },
  44244. },
  44245. [
  44246. {
  44247. name: "Normal",
  44248. height: math.unit(5, "feet"),
  44249. default: true
  44250. },
  44251. ]
  44252. ))
  44253. characterMakers.push(() => makeCharacter(
  44254. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44255. {
  44256. side: {
  44257. height: math.unit(8 + 2/12, "feet"),
  44258. weight: math.unit(500, "kg"),
  44259. name: "Side",
  44260. image: {
  44261. source: "./media/characters/theo-arcanine/side.svg",
  44262. extra: 1342/1074,
  44263. bottom: 111/1453
  44264. }
  44265. },
  44266. },
  44267. [
  44268. {
  44269. name: "Normal",
  44270. height: math.unit(8 + 2/12, "feet"),
  44271. default: true
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44277. {
  44278. front: {
  44279. height: math.unit(4, "feet"),
  44280. name: "Front",
  44281. image: {
  44282. source: "./media/characters/kali/front.svg",
  44283. extra: 1921/1357,
  44284. bottom: 70/1991
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Normal",
  44291. height: math.unit(4, "feet"),
  44292. default: true
  44293. },
  44294. {
  44295. name: "Macro",
  44296. height: math.unit(32, "meters")
  44297. },
  44298. {
  44299. name: "Macro+",
  44300. height: math.unit(150, "meters")
  44301. },
  44302. {
  44303. name: "Megamacro",
  44304. height: math.unit(7500, "meters")
  44305. },
  44306. {
  44307. name: "Megamacro+",
  44308. height: math.unit(80, "kilometers")
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44314. {
  44315. side: {
  44316. height: math.unit(5 + 11/12, "feet"),
  44317. weight: math.unit(236, "lb"),
  44318. name: "Side",
  44319. image: {
  44320. source: "./media/characters/gapp/side.svg",
  44321. extra: 775/340,
  44322. bottom: 58/833
  44323. }
  44324. },
  44325. mouth: {
  44326. height: math.unit(2.98, "feet"),
  44327. name: "Mouth",
  44328. image: {
  44329. source: "./media/characters/gapp/mouth.svg"
  44330. }
  44331. },
  44332. },
  44333. [
  44334. {
  44335. name: "Normal",
  44336. height: math.unit(5 + 1/12, "feet"),
  44337. default: true
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(6, "feet"),
  44346. name: "Front",
  44347. image: {
  44348. source: "./media/characters/persephone/front.svg",
  44349. extra: 1895/1717,
  44350. bottom: 96/1991
  44351. }
  44352. },
  44353. back: {
  44354. height: math.unit(6, "feet"),
  44355. name: "Back",
  44356. image: {
  44357. source: "./media/characters/persephone/back.svg",
  44358. extra: 1868/1679,
  44359. bottom: 26/1894
  44360. }
  44361. },
  44362. casual: {
  44363. height: math.unit(6, "feet"),
  44364. name: "Casual",
  44365. image: {
  44366. source: "./media/characters/persephone/casual.svg",
  44367. extra: 1713/1541,
  44368. bottom: 76/1789
  44369. }
  44370. },
  44371. },
  44372. [
  44373. {
  44374. name: "Human Size",
  44375. height: math.unit(6, "feet")
  44376. },
  44377. {
  44378. name: "Big Steppy",
  44379. height: math.unit(600, "meters"),
  44380. default: true
  44381. },
  44382. {
  44383. name: "Galaxy Brain",
  44384. height: math.unit(1, "zettameter")
  44385. },
  44386. ]
  44387. ))
  44388. characterMakers.push(() => makeCharacter(
  44389. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44390. {
  44391. front: {
  44392. height: math.unit(1.85, "meters"),
  44393. name: "Front",
  44394. image: {
  44395. source: "./media/characters/riley-foxthing/front.svg",
  44396. extra: 1495/1354,
  44397. bottom: 122/1617
  44398. }
  44399. },
  44400. frontAlt: {
  44401. height: math.unit(1.85, "meters"),
  44402. name: "Front (Alt)",
  44403. image: {
  44404. source: "./media/characters/riley-foxthing/front-alt.svg",
  44405. extra: 1572/1389,
  44406. bottom: 116/1688
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Normal Sized",
  44413. height: math.unit(1.85, "meters"),
  44414. default: true
  44415. },
  44416. {
  44417. name: "Quite Sizable",
  44418. height: math.unit(5, "meters")
  44419. },
  44420. {
  44421. name: "Rather Large",
  44422. height: math.unit(20, "meters")
  44423. },
  44424. {
  44425. name: "Macro",
  44426. height: math.unit(450, "meters")
  44427. },
  44428. {
  44429. name: "Giga",
  44430. height: math.unit(5, "km")
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44436. {
  44437. front: {
  44438. height: math.unit(6, "feet"),
  44439. weight: math.unit(200, "lb"),
  44440. name: "Front",
  44441. image: {
  44442. source: "./media/characters/blizzard/front.svg",
  44443. extra: 1136/990,
  44444. bottom: 136/1272
  44445. }
  44446. },
  44447. back: {
  44448. height: math.unit(6, "feet"),
  44449. weight: math.unit(200, "lb"),
  44450. name: "Back",
  44451. image: {
  44452. source: "./media/characters/blizzard/back.svg",
  44453. extra: 1175/1034,
  44454. bottom: 97/1272
  44455. }
  44456. },
  44457. sitting: {
  44458. height: math.unit(3.725, "feet"),
  44459. weight: math.unit(200, "lb"),
  44460. name: "Sitting",
  44461. image: {
  44462. source: "./media/characters/blizzard/sitting.svg",
  44463. extra: 581/485,
  44464. bottom: 90/671
  44465. }
  44466. },
  44467. frontWizard: {
  44468. height: math.unit(7.9, "feet"),
  44469. weight: math.unit(200, "lb"),
  44470. name: "Front (Wizard)",
  44471. image: {
  44472. source: "./media/characters/blizzard/front-wizard.svg"
  44473. }
  44474. },
  44475. backWizard: {
  44476. height: math.unit(7.9, "feet"),
  44477. weight: math.unit(200, "lb"),
  44478. name: "Back (Wizard)",
  44479. image: {
  44480. source: "./media/characters/blizzard/back-wizard.svg"
  44481. }
  44482. },
  44483. frontNsfw: {
  44484. height: math.unit(6, "feet"),
  44485. weight: math.unit(200, "lb"),
  44486. name: "Front (NSFW)",
  44487. image: {
  44488. source: "./media/characters/blizzard/front-nsfw.svg",
  44489. extra: 1136/990,
  44490. bottom: 136/1272
  44491. }
  44492. },
  44493. backNsfw: {
  44494. height: math.unit(6, "feet"),
  44495. weight: math.unit(200, "lb"),
  44496. name: "Back (NSFW)",
  44497. image: {
  44498. source: "./media/characters/blizzard/back-nsfw.svg",
  44499. extra: 1175/1034,
  44500. bottom: 97/1272
  44501. }
  44502. },
  44503. sittingNsfw: {
  44504. height: math.unit(3.725, "feet"),
  44505. weight: math.unit(200, "lb"),
  44506. name: "Sitting (NSFW)",
  44507. image: {
  44508. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44509. extra: 581/485,
  44510. bottom: 90/671
  44511. }
  44512. },
  44513. wizardFrontNsfw: {
  44514. height: math.unit(7.9, "feet"),
  44515. weight: math.unit(200, "lb"),
  44516. name: "Wizard (Front, NSFW)",
  44517. image: {
  44518. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(6, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(5 + 2/12, "feet"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/lumi/front.svg",
  44538. extra: 1328/1268,
  44539. bottom: 103/1431
  44540. }
  44541. },
  44542. back: {
  44543. height: math.unit(5 + 2/12, "feet"),
  44544. name: "Back",
  44545. image: {
  44546. source: "./media/characters/lumi/back.svg",
  44547. extra: 1381/1327,
  44548. bottom: 43/1424
  44549. }
  44550. },
  44551. },
  44552. [
  44553. {
  44554. name: "Normal",
  44555. height: math.unit(5 + 2/12, "feet"),
  44556. default: true
  44557. },
  44558. ]
  44559. ))
  44560. characterMakers.push(() => makeCharacter(
  44561. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44562. {
  44563. front: {
  44564. height: math.unit(5 + 9/12, "feet"),
  44565. name: "Front",
  44566. image: {
  44567. source: "./media/characters/aliya-cotton/front.svg",
  44568. extra: 577/564,
  44569. bottom: 29/606
  44570. }
  44571. },
  44572. },
  44573. [
  44574. {
  44575. name: "Normal",
  44576. height: math.unit(5 + 9/12, "feet"),
  44577. default: true
  44578. },
  44579. ]
  44580. ))
  44581. characterMakers.push(() => makeCharacter(
  44582. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44583. {
  44584. front: {
  44585. height: math.unit(2.7, "meters"),
  44586. weight: math.unit(25000, "lb"),
  44587. name: "Front",
  44588. image: {
  44589. source: "./media/characters/noah-luxray/front.svg",
  44590. extra: 1644/825,
  44591. bottom: 339/1983
  44592. }
  44593. },
  44594. side: {
  44595. height: math.unit(2.97, "meters"),
  44596. weight: math.unit(25000, "lb"),
  44597. name: "Side",
  44598. image: {
  44599. source: "./media/characters/noah-luxray/side.svg",
  44600. extra: 1319/650,
  44601. bottom: 163/1482
  44602. }
  44603. },
  44604. dick: {
  44605. height: math.unit(7.4, "feet"),
  44606. weight: math.unit(2500, "lb"),
  44607. name: "Dick",
  44608. image: {
  44609. source: "./media/characters/noah-luxray/dick.svg"
  44610. }
  44611. },
  44612. dickAlt: {
  44613. height: math.unit(10.83, "feet"),
  44614. weight: math.unit(2500, "lb"),
  44615. name: "Dick-alt",
  44616. image: {
  44617. source: "./media/characters/noah-luxray/dick-alt.svg"
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "BIG",
  44624. height: math.unit(2.7, "meters"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44631. {
  44632. standing: {
  44633. height: math.unit(183, "cm"),
  44634. weight: math.unit(68, "kg"),
  44635. name: "Standing",
  44636. image: {
  44637. source: "./media/characters/arion/standing.svg",
  44638. extra: 1869/1807,
  44639. bottom: 93/1962
  44640. }
  44641. },
  44642. reclining: {
  44643. height: math.unit(70.5, "cm"),
  44644. weight: math.unit(68, "lb"),
  44645. name: "Reclining",
  44646. image: {
  44647. source: "./media/characters/arion/reclining.svg",
  44648. extra: 937/870,
  44649. bottom: 63/1000
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Colossus Size, Low",
  44656. height: math.unit(33, "meters"),
  44657. default: true
  44658. },
  44659. {
  44660. name: "Colossus Size, Mid",
  44661. height: math.unit(52, "meters")
  44662. },
  44663. {
  44664. name: "Colossus Size, High",
  44665. height: math.unit(60, "meters")
  44666. },
  44667. {
  44668. name: "Titan Size, Low",
  44669. height: math.unit(91, "meters"),
  44670. },
  44671. {
  44672. name: "Titan Size, Mid",
  44673. height: math.unit(122, "meters")
  44674. },
  44675. {
  44676. name: "Titan Size, High",
  44677. height: math.unit(162, "meters")
  44678. },
  44679. ]
  44680. ))
  44681. characterMakers.push(() => makeCharacter(
  44682. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44683. {
  44684. front: {
  44685. height: math.unit(53, "meters"),
  44686. name: "Front",
  44687. image: {
  44688. source: "./media/characters/stellar-marbey/front.svg",
  44689. extra: 1913/1805,
  44690. bottom: 92/2005
  44691. }
  44692. },
  44693. back: {
  44694. height: math.unit(53, "meters"),
  44695. name: "Back",
  44696. image: {
  44697. source: "./media/characters/stellar-marbey/back.svg",
  44698. extra: 1960/1851,
  44699. bottom: 28/1988
  44700. }
  44701. },
  44702. mouth: {
  44703. height: math.unit(3.5, "meters"),
  44704. name: "Mouth",
  44705. image: {
  44706. source: "./media/characters/stellar-marbey/mouth.svg"
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Macro",
  44713. height: math.unit(53, "meters"),
  44714. default: true
  44715. },
  44716. ]
  44717. ))
  44718. characterMakers.push(() => makeCharacter(
  44719. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44720. {
  44721. front: {
  44722. height: math.unit(8 + 1/12, "feet"),
  44723. weight: math.unit(233, "lb"),
  44724. name: "Front",
  44725. image: {
  44726. source: "./media/characters/matsu/front.svg",
  44727. extra: 832/772,
  44728. bottom: 40/872
  44729. }
  44730. },
  44731. back: {
  44732. height: math.unit(8 + 1/12, "feet"),
  44733. weight: math.unit(233, "lb"),
  44734. name: "Back",
  44735. image: {
  44736. source: "./media/characters/matsu/back.svg",
  44737. extra: 839/780,
  44738. bottom: 47/886
  44739. }
  44740. },
  44741. },
  44742. [
  44743. {
  44744. name: "Normal",
  44745. height: math.unit(8 + 1/12, "feet"),
  44746. default: true
  44747. },
  44748. ]
  44749. ))
  44750. characterMakers.push(() => makeCharacter(
  44751. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44752. {
  44753. front: {
  44754. height: math.unit(4, "feet"),
  44755. weight: math.unit(148, "lb"),
  44756. name: "Front",
  44757. image: {
  44758. source: "./media/characters/thiz/front.svg",
  44759. extra: 1913/1748,
  44760. bottom: 62/1975
  44761. }
  44762. },
  44763. },
  44764. [
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(4, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(7 + 6/12, "feet"),
  44777. weight: math.unit(267, "lb"),
  44778. name: "Front",
  44779. image: {
  44780. source: "./media/characters/marcel/front.svg",
  44781. extra: 1221/1096,
  44782. bottom: 76/1297
  44783. }
  44784. },
  44785. },
  44786. [
  44787. {
  44788. name: "Normal",
  44789. height: math.unit(7 + 6/12, "feet"),
  44790. default: true
  44791. },
  44792. ]
  44793. ))
  44794. characterMakers.push(() => makeCharacter(
  44795. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44796. {
  44797. side: {
  44798. height: math.unit(42, "meters"),
  44799. name: "Side",
  44800. image: {
  44801. source: "./media/characters/flake/side.svg",
  44802. extra: 1525/1306,
  44803. bottom: 209/1734
  44804. }
  44805. },
  44806. },
  44807. [
  44808. {
  44809. name: "Normal",
  44810. height: math.unit(42, "meters"),
  44811. default: true
  44812. },
  44813. ]
  44814. ))
  44815. characterMakers.push(() => makeCharacter(
  44816. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44817. {
  44818. dressed: {
  44819. height: math.unit(6 + 4/12, "feet"),
  44820. weight: math.unit(520, "lb"),
  44821. name: "Dressed",
  44822. image: {
  44823. source: "./media/characters/someonne/dressed.svg",
  44824. extra: 1020/1010,
  44825. bottom: 178/1198
  44826. }
  44827. },
  44828. undressed: {
  44829. height: math.unit(6 + 4/12, "feet"),
  44830. weight: math.unit(520, "lb"),
  44831. name: "Undressed",
  44832. image: {
  44833. source: "./media/characters/someonne/undressed.svg",
  44834. extra: 1019/1014,
  44835. bottom: 169/1188
  44836. }
  44837. },
  44838. },
  44839. [
  44840. {
  44841. name: "Normal",
  44842. height: math.unit(6 + 4/12, "feet"),
  44843. default: true
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44849. {
  44850. front: {
  44851. height: math.unit(3, "feet"),
  44852. weight: math.unit(30, "lb"),
  44853. name: "Front",
  44854. image: {
  44855. source: "./media/characters/till/front.svg",
  44856. extra: 892/823,
  44857. bottom: 55/947
  44858. }
  44859. },
  44860. },
  44861. [
  44862. {
  44863. name: "Normal",
  44864. height: math.unit(3, "feet"),
  44865. default: true
  44866. },
  44867. ]
  44868. ))
  44869. characterMakers.push(() => makeCharacter(
  44870. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44871. {
  44872. front: {
  44873. height: math.unit(9 + 8/12, "feet"),
  44874. weight: math.unit(800, "lb"),
  44875. name: "Front",
  44876. image: {
  44877. source: "./media/characters/sydney-heki/front.svg",
  44878. extra: 1360/1300,
  44879. bottom: 22/1382
  44880. }
  44881. },
  44882. back: {
  44883. height: math.unit(9 + 8/12, "feet"),
  44884. weight: math.unit(800, "lb"),
  44885. name: "Back",
  44886. image: {
  44887. source: "./media/characters/sydney-heki/back.svg",
  44888. extra: 1356/1293,
  44889. bottom: 12/1368
  44890. }
  44891. },
  44892. frontDressed: {
  44893. height: math.unit(9 + 8/12, "feet"),
  44894. weight: math.unit(800, "lb"),
  44895. name: "Front-dressed",
  44896. image: {
  44897. source: "./media/characters/sydney-heki/front-dressed.svg",
  44898. extra: 1360/1300,
  44899. bottom: 22/1382
  44900. }
  44901. },
  44902. },
  44903. [
  44904. {
  44905. name: "Normal",
  44906. height: math.unit(9 + 8/12, "feet"),
  44907. default: true
  44908. },
  44909. {
  44910. name: "Macro",
  44911. height: math.unit(500, "feet")
  44912. },
  44913. {
  44914. name: "Megamacro",
  44915. height: math.unit(3.6, "miles")
  44916. },
  44917. ]
  44918. ))
  44919. characterMakers.push(() => makeCharacter(
  44920. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44921. {
  44922. front: {
  44923. height: math.unit(200, "cm"),
  44924. weight: math.unit(250, "lb"),
  44925. name: "Front",
  44926. image: {
  44927. source: "./media/characters/fowler-karlsson/front.svg",
  44928. extra: 897/845,
  44929. bottom: 123/1020
  44930. }
  44931. },
  44932. back: {
  44933. height: math.unit(200, "cm"),
  44934. weight: math.unit(250, "lb"),
  44935. name: "Back",
  44936. image: {
  44937. source: "./media/characters/fowler-karlsson/back.svg",
  44938. extra: 999/944,
  44939. bottom: 26/1025
  44940. }
  44941. },
  44942. dick: {
  44943. height: math.unit(1.92, "feet"),
  44944. weight: math.unit(150, "lb"),
  44945. name: "Dick",
  44946. image: {
  44947. source: "./media/characters/fowler-karlsson/dick.svg"
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Normal",
  44954. height: math.unit(200, "cm"),
  44955. default: true
  44956. },
  44957. {
  44958. name: "Smaller Macro",
  44959. height: math.unit(90, "m")
  44960. },
  44961. {
  44962. name: "Macro",
  44963. height: math.unit(150, "m")
  44964. },
  44965. {
  44966. name: "Bigger Macro",
  44967. height: math.unit(300, "m")
  44968. },
  44969. ]
  44970. ))
  44971. characterMakers.push(() => makeCharacter(
  44972. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44973. {
  44974. side: {
  44975. height: math.unit(8 + 2/12, "feet"),
  44976. weight: math.unit(1, "tonne"),
  44977. name: "Side",
  44978. image: {
  44979. source: "./media/characters/rylide/side.svg",
  44980. extra: 1318/1034,
  44981. bottom: 106/1424
  44982. }
  44983. },
  44984. sitting: {
  44985. height: math.unit(303, "cm"),
  44986. weight: math.unit(1, "tonne"),
  44987. name: "Sitting",
  44988. image: {
  44989. source: "./media/characters/rylide/sitting.svg",
  44990. extra: 1303/1103,
  44991. bottom: 36/1339
  44992. }
  44993. },
  44994. },
  44995. [
  44996. {
  44997. name: "Normal",
  44998. height: math.unit(8 + 2/12, "feet"),
  44999. default: true
  45000. },
  45001. ]
  45002. ))
  45003. characterMakers.push(() => makeCharacter(
  45004. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45005. {
  45006. front: {
  45007. height: math.unit(5 + 10/12, "feet"),
  45008. weight: math.unit(160, "lb"),
  45009. name: "Front",
  45010. image: {
  45011. source: "./media/characters/pudask/front.svg",
  45012. extra: 1616/1590,
  45013. bottom: 161/1777
  45014. }
  45015. },
  45016. },
  45017. [
  45018. {
  45019. name: "Ferret Height",
  45020. height: math.unit(2 + 5/12, "feet")
  45021. },
  45022. {
  45023. name: "Canon Height",
  45024. height: math.unit(5 + 10/12, "feet"),
  45025. default: true
  45026. },
  45027. ]
  45028. ))
  45029. characterMakers.push(() => makeCharacter(
  45030. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45031. {
  45032. front: {
  45033. height: math.unit(3 + 6/12, "feet"),
  45034. weight: math.unit(60, "lb"),
  45035. name: "Front",
  45036. image: {
  45037. source: "./media/characters/ramita/front.svg",
  45038. extra: 1402/1232,
  45039. bottom: 62/1464
  45040. }
  45041. },
  45042. dressed: {
  45043. height: math.unit(3 + 6/12, "feet"),
  45044. weight: math.unit(60, "lb"),
  45045. name: "Dressed",
  45046. image: {
  45047. source: "./media/characters/ramita/dressed.svg",
  45048. extra: 1534/1249,
  45049. bottom: 50/1584
  45050. }
  45051. },
  45052. },
  45053. [
  45054. {
  45055. name: "Normal",
  45056. height: math.unit(3 + 6/12, "feet"),
  45057. default: true
  45058. },
  45059. ]
  45060. ))
  45061. characterMakers.push(() => makeCharacter(
  45062. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45063. {
  45064. front: {
  45065. height: math.unit(8, "feet"),
  45066. name: "Front",
  45067. image: {
  45068. source: "./media/characters/ark/front.svg",
  45069. extra: 772/693,
  45070. bottom: 45/817
  45071. }
  45072. },
  45073. },
  45074. [
  45075. {
  45076. name: "Normal",
  45077. height: math.unit(8, "feet"),
  45078. default: true
  45079. },
  45080. ]
  45081. ))
  45082. characterMakers.push(() => makeCharacter(
  45083. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45084. {
  45085. front: {
  45086. height: math.unit(6, "feet"),
  45087. weight: math.unit(250, "lb"),
  45088. volume: math.unit(5/8, "gallons"),
  45089. name: "Front",
  45090. image: {
  45091. source: "./media/characters/ludwig-horn/front.svg",
  45092. extra: 1782/1635,
  45093. bottom: 96/1878
  45094. }
  45095. },
  45096. back: {
  45097. height: math.unit(6, "feet"),
  45098. weight: math.unit(250, "lb"),
  45099. volume: math.unit(5/8, "gallons"),
  45100. name: "Back",
  45101. image: {
  45102. source: "./media/characters/ludwig-horn/back.svg",
  45103. extra: 1874/1729,
  45104. bottom: 27/1901
  45105. }
  45106. },
  45107. dick: {
  45108. height: math.unit(1.05, "feet"),
  45109. weight: math.unit(15, "lb"),
  45110. volume: math.unit(5/8, "gallons"),
  45111. name: "Dick",
  45112. image: {
  45113. source: "./media/characters/ludwig-horn/dick.svg"
  45114. }
  45115. },
  45116. },
  45117. [
  45118. {
  45119. name: "Small",
  45120. height: math.unit(6, "feet")
  45121. },
  45122. {
  45123. name: "Typical",
  45124. height: math.unit(12, "feet"),
  45125. default: true
  45126. },
  45127. {
  45128. name: "Building",
  45129. height: math.unit(80, "feet")
  45130. },
  45131. {
  45132. name: "Town",
  45133. height: math.unit(800, "feet")
  45134. },
  45135. {
  45136. name: "Kingdom",
  45137. height: math.unit(80000, "feet")
  45138. },
  45139. {
  45140. name: "Planet",
  45141. height: math.unit(8000000, "feet")
  45142. },
  45143. {
  45144. name: "Universe",
  45145. height: math.unit(8000000000, "feet")
  45146. },
  45147. {
  45148. name: "Transcended",
  45149. height: math.unit(8e27, "feet")
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45155. {
  45156. front: {
  45157. height: math.unit(5, "feet"),
  45158. weight: math.unit(50, "kg"),
  45159. name: "Front",
  45160. image: {
  45161. source: "./media/characters/biot-avery/front.svg",
  45162. extra: 1295/1232,
  45163. bottom: 86/1381
  45164. }
  45165. },
  45166. },
  45167. [
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(5, "feet"),
  45171. default: true
  45172. },
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45177. {
  45178. front: {
  45179. height: math.unit(6, "feet"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/kitsune-kiro/front.svg",
  45183. extra: 1270/1158,
  45184. bottom: 42/1312
  45185. }
  45186. },
  45187. frontAlt: {
  45188. height: math.unit(6, "feet"),
  45189. name: "Front-alt",
  45190. image: {
  45191. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45192. extra: 1130/1081,
  45193. bottom: 36/1166
  45194. }
  45195. },
  45196. },
  45197. [
  45198. {
  45199. name: "Smol",
  45200. height: math.unit(3, "feet")
  45201. },
  45202. {
  45203. name: "Normal",
  45204. height: math.unit(6, "feet"),
  45205. default: true
  45206. },
  45207. ]
  45208. ))
  45209. characterMakers.push(() => makeCharacter(
  45210. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45211. {
  45212. front: {
  45213. height: math.unit(6, "feet"),
  45214. weight: math.unit(125, "lb"),
  45215. name: "Front",
  45216. image: {
  45217. source: "./media/characters/jack-thatcher/front.svg",
  45218. extra: 1474/1370,
  45219. bottom: 26/1500
  45220. }
  45221. },
  45222. back: {
  45223. height: math.unit(6, "feet"),
  45224. weight: math.unit(125, "lb"),
  45225. name: "Back",
  45226. image: {
  45227. source: "./media/characters/jack-thatcher/back.svg",
  45228. extra: 1489/1384,
  45229. bottom: 18/1507
  45230. }
  45231. },
  45232. },
  45233. [
  45234. {
  45235. name: "Normal",
  45236. height: math.unit(6, "feet"),
  45237. default: true
  45238. },
  45239. {
  45240. name: "Macro",
  45241. height: math.unit(75, "feet")
  45242. },
  45243. {
  45244. name: "Macro-er",
  45245. height: math.unit(250, "feet")
  45246. },
  45247. ]
  45248. ))
  45249. characterMakers.push(() => makeCharacter(
  45250. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45251. {
  45252. front: {
  45253. height: math.unit(7, "feet"),
  45254. weight: math.unit(110, "kg"),
  45255. name: "Front",
  45256. image: {
  45257. source: "./media/characters/max-hyper/front.svg",
  45258. extra: 1969/1881,
  45259. bottom: 49/2018
  45260. }
  45261. },
  45262. },
  45263. [
  45264. {
  45265. name: "Normal",
  45266. height: math.unit(7, "feet"),
  45267. default: true
  45268. },
  45269. ]
  45270. ))
  45271. characterMakers.push(() => makeCharacter(
  45272. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45273. {
  45274. front: {
  45275. height: math.unit(5 + 5/12, "feet"),
  45276. weight: math.unit(160, "lb"),
  45277. name: "Front",
  45278. image: {
  45279. source: "./media/characters/spook/front.svg",
  45280. extra: 794/791,
  45281. bottom: 54/848
  45282. }
  45283. },
  45284. back: {
  45285. height: math.unit(5 + 5/12, "feet"),
  45286. weight: math.unit(160, "lb"),
  45287. name: "Back",
  45288. image: {
  45289. source: "./media/characters/spook/back.svg",
  45290. extra: 812/798,
  45291. bottom: 32/844
  45292. }
  45293. },
  45294. },
  45295. [
  45296. {
  45297. name: "Normal",
  45298. height: math.unit(5 + 5/12, "feet"),
  45299. default: true
  45300. },
  45301. ]
  45302. ))
  45303. characterMakers.push(() => makeCharacter(
  45304. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45305. {
  45306. front: {
  45307. height: math.unit(18, "feet"),
  45308. name: "Front",
  45309. image: {
  45310. source: "./media/characters/xeaduulix/front.svg",
  45311. extra: 1380/1166,
  45312. bottom: 110/1490
  45313. }
  45314. },
  45315. back: {
  45316. height: math.unit(18, "feet"),
  45317. name: "Back",
  45318. image: {
  45319. source: "./media/characters/xeaduulix/back.svg",
  45320. extra: 1592/1170,
  45321. bottom: 128/1720
  45322. }
  45323. },
  45324. frontNsfw: {
  45325. height: math.unit(18, "feet"),
  45326. name: "Front (NSFW)",
  45327. image: {
  45328. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45329. extra: 1380/1166,
  45330. bottom: 110/1490
  45331. }
  45332. },
  45333. backNsfw: {
  45334. height: math.unit(18, "feet"),
  45335. name: "Back (NSFW)",
  45336. image: {
  45337. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45338. extra: 1592/1170,
  45339. bottom: 128/1720
  45340. }
  45341. },
  45342. },
  45343. [
  45344. {
  45345. name: "Normal",
  45346. height: math.unit(18, "feet"),
  45347. default: true
  45348. },
  45349. ]
  45350. ))
  45351. characterMakers.push(() => makeCharacter(
  45352. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45353. {
  45354. spreadWings: {
  45355. height: math.unit(20, "feet"),
  45356. name: "Spread Wings",
  45357. image: {
  45358. source: "./media/characters/fledge/spread-wings.svg",
  45359. extra: 693/635,
  45360. bottom: 26/719
  45361. }
  45362. },
  45363. front: {
  45364. height: math.unit(20, "feet"),
  45365. name: "Front",
  45366. image: {
  45367. source: "./media/characters/fledge/front.svg",
  45368. extra: 684/637,
  45369. bottom: 18/702
  45370. }
  45371. },
  45372. frontAlt: {
  45373. height: math.unit(20, "feet"),
  45374. name: "Front (Alt)",
  45375. image: {
  45376. source: "./media/characters/fledge/front-alt.svg",
  45377. extra: 708/664,
  45378. bottom: 13/721
  45379. }
  45380. },
  45381. back: {
  45382. height: math.unit(20, "feet"),
  45383. name: "Back",
  45384. image: {
  45385. source: "./media/characters/fledge/back.svg",
  45386. extra: 718/634,
  45387. bottom: 22/740
  45388. }
  45389. },
  45390. head: {
  45391. height: math.unit(5.55, "feet"),
  45392. name: "Head",
  45393. image: {
  45394. source: "./media/characters/fledge/head.svg"
  45395. }
  45396. },
  45397. headAlt: {
  45398. height: math.unit(5.1, "feet"),
  45399. name: "Head (Alt)",
  45400. image: {
  45401. source: "./media/characters/fledge/head-alt.svg"
  45402. }
  45403. },
  45404. },
  45405. [
  45406. {
  45407. name: "Small",
  45408. height: math.unit(6 + 2/12, "feet")
  45409. },
  45410. {
  45411. name: "Big",
  45412. height: math.unit(20, "feet"),
  45413. default: true
  45414. },
  45415. {
  45416. name: "Giant",
  45417. height: math.unit(100, "feet")
  45418. },
  45419. {
  45420. name: "Macro",
  45421. height: math.unit(200, "feet")
  45422. },
  45423. ]
  45424. ))
  45425. characterMakers.push(() => makeCharacter(
  45426. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45427. {
  45428. front: {
  45429. height: math.unit(1, "meter"),
  45430. name: "Front",
  45431. image: {
  45432. source: "./media/characters/atlas-morenai/front.svg",
  45433. extra: 1275/1043,
  45434. bottom: 19/1294
  45435. }
  45436. },
  45437. back: {
  45438. height: math.unit(1, "meter"),
  45439. name: "Back",
  45440. image: {
  45441. source: "./media/characters/atlas-morenai/back.svg",
  45442. extra: 1141/1001,
  45443. bottom: 25/1166
  45444. }
  45445. },
  45446. },
  45447. [
  45448. {
  45449. name: "Normal",
  45450. height: math.unit(1, "meter"),
  45451. default: true
  45452. },
  45453. {
  45454. name: "Magic-Infused",
  45455. height: math.unit(5, "meters")
  45456. },
  45457. ]
  45458. ))
  45459. characterMakers.push(() => makeCharacter(
  45460. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45461. {
  45462. front: {
  45463. height: math.unit(5, "meters"),
  45464. name: "Front",
  45465. image: {
  45466. source: "./media/characters/cintia/front.svg",
  45467. extra: 1312/1228,
  45468. bottom: 38/1350
  45469. }
  45470. },
  45471. back: {
  45472. height: math.unit(5, "meters"),
  45473. name: "Back",
  45474. image: {
  45475. source: "./media/characters/cintia/back.svg",
  45476. extra: 1260/1166,
  45477. bottom: 98/1358
  45478. }
  45479. },
  45480. frontDick: {
  45481. height: math.unit(5, "meters"),
  45482. name: "Front (Dick)",
  45483. image: {
  45484. source: "./media/characters/cintia/front-dick.svg",
  45485. extra: 1312/1228,
  45486. bottom: 38/1350
  45487. }
  45488. },
  45489. backDick: {
  45490. height: math.unit(5, "meters"),
  45491. name: "Back (Dick)",
  45492. image: {
  45493. source: "./media/characters/cintia/back-dick.svg",
  45494. extra: 1260/1166,
  45495. bottom: 98/1358
  45496. }
  45497. },
  45498. bust: {
  45499. height: math.unit(1.97, "meters"),
  45500. name: "Bust",
  45501. image: {
  45502. source: "./media/characters/cintia/bust.svg",
  45503. extra: 617/565,
  45504. bottom: 0/617
  45505. }
  45506. },
  45507. },
  45508. [
  45509. {
  45510. name: "Normal",
  45511. height: math.unit(5, "meters"),
  45512. default: true
  45513. },
  45514. ]
  45515. ))
  45516. characterMakers.push(() => makeCharacter(
  45517. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45518. {
  45519. side: {
  45520. height: math.unit(100, "feet"),
  45521. name: "Side",
  45522. image: {
  45523. source: "./media/characters/denora/side.svg",
  45524. extra: 875/803,
  45525. bottom: 9/884
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "Standard",
  45532. height: math.unit(100, "feet"),
  45533. default: true
  45534. },
  45535. {
  45536. name: "Grand",
  45537. height: math.unit(1000, "feet")
  45538. },
  45539. {
  45540. name: "Conquering",
  45541. height: math.unit(10000, "feet")
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45547. {
  45548. dressed: {
  45549. height: math.unit(8 + 5/12, "feet"),
  45550. weight: math.unit(700, "lb"),
  45551. name: "Dressed",
  45552. image: {
  45553. source: "./media/characters/kiva/dressed.svg",
  45554. extra: 1102/1055,
  45555. bottom: 60/1162
  45556. }
  45557. },
  45558. nude: {
  45559. height: math.unit(8 + 5/12, "feet"),
  45560. weight: math.unit(700, "lb"),
  45561. name: "Nude",
  45562. image: {
  45563. source: "./media/characters/kiva/nude.svg",
  45564. extra: 1102/1055,
  45565. bottom: 60/1162
  45566. }
  45567. },
  45568. },
  45569. [
  45570. {
  45571. name: "Base Height",
  45572. height: math.unit(8 + 5/12, "feet"),
  45573. default: true
  45574. },
  45575. {
  45576. name: "Macro",
  45577. height: math.unit(100, "feet")
  45578. },
  45579. {
  45580. name: "Max",
  45581. height: math.unit(3280, "feet")
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45587. {
  45588. front: {
  45589. height: math.unit(6 + 8/12, "feet"),
  45590. weight: math.unit(250, "lb"),
  45591. name: "Front",
  45592. image: {
  45593. source: "./media/characters/ztragon/front.svg",
  45594. extra: 1825/1684,
  45595. bottom: 98/1923
  45596. }
  45597. },
  45598. },
  45599. [
  45600. {
  45601. name: "Normal",
  45602. height: math.unit(6 + 8/12, "feet"),
  45603. default: true
  45604. },
  45605. {
  45606. name: "Macro",
  45607. height: math.unit(80, "feet")
  45608. },
  45609. ]
  45610. ))
  45611. characterMakers.push(() => makeCharacter(
  45612. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45613. {
  45614. front: {
  45615. height: math.unit(10.4, "feet"),
  45616. weight: math.unit(2, "tons"),
  45617. name: "Front",
  45618. image: {
  45619. source: "./media/characters/yesenia/front.svg",
  45620. extra: 1479/1474,
  45621. bottom: 233/1712
  45622. }
  45623. },
  45624. },
  45625. [
  45626. {
  45627. name: "Normal",
  45628. height: math.unit(10.4, "feet"),
  45629. default: true
  45630. },
  45631. ]
  45632. ))
  45633. characterMakers.push(() => makeCharacter(
  45634. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45635. {
  45636. normal: {
  45637. height: math.unit(6 + 1/12, "feet"),
  45638. weight: math.unit(180, "lb"),
  45639. name: "Normal",
  45640. image: {
  45641. source: "./media/characters/leanne-lycheborne/normal.svg",
  45642. extra: 1748/1660,
  45643. bottom: 98/1846
  45644. }
  45645. },
  45646. were: {
  45647. height: math.unit(12, "feet"),
  45648. weight: math.unit(1600, "lb"),
  45649. name: "Were",
  45650. image: {
  45651. source: "./media/characters/leanne-lycheborne/were.svg",
  45652. extra: 1485/1432,
  45653. bottom: 66/1551
  45654. }
  45655. },
  45656. },
  45657. [
  45658. {
  45659. name: "Normal",
  45660. height: math.unit(6 + 1/12, "feet"),
  45661. default: true
  45662. },
  45663. ]
  45664. ))
  45665. characterMakers.push(() => makeCharacter(
  45666. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45667. {
  45668. side: {
  45669. height: math.unit(13, "feet"),
  45670. name: "Side",
  45671. image: {
  45672. source: "./media/characters/kira-tyler/side.svg",
  45673. extra: 693/393,
  45674. bottom: 58/751
  45675. }
  45676. },
  45677. },
  45678. [
  45679. {
  45680. name: "Normal",
  45681. height: math.unit(13, "feet"),
  45682. default: true
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45688. {
  45689. front: {
  45690. height: math.unit(10.3, "feet"),
  45691. weight: math.unit(150, "lb"),
  45692. name: "Front",
  45693. image: {
  45694. source: "./media/characters/blaze/front.svg",
  45695. extra: 1378/1286,
  45696. bottom: 172/1550
  45697. }
  45698. },
  45699. },
  45700. [
  45701. {
  45702. name: "Normal",
  45703. height: math.unit(10.3, "feet"),
  45704. default: true
  45705. },
  45706. ]
  45707. ))
  45708. characterMakers.push(() => makeCharacter(
  45709. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45710. {
  45711. side: {
  45712. height: math.unit(2, "meters"),
  45713. weight: math.unit(400, "kg"),
  45714. name: "Side",
  45715. image: {
  45716. source: "./media/characters/anu/side.svg",
  45717. extra: 506/394,
  45718. bottom: 18/524
  45719. }
  45720. },
  45721. },
  45722. [
  45723. {
  45724. name: "Humanoid",
  45725. height: math.unit(2, "meters")
  45726. },
  45727. {
  45728. name: "Normal",
  45729. height: math.unit(5, "meters"),
  45730. default: true
  45731. },
  45732. ]
  45733. ))
  45734. characterMakers.push(() => makeCharacter(
  45735. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45736. {
  45737. front: {
  45738. height: math.unit(5 + 5/12, "feet"),
  45739. weight: math.unit(170, "lb"),
  45740. name: "Front",
  45741. image: {
  45742. source: "./media/characters/synx-the-lynx/front.svg",
  45743. extra: 1893/1745,
  45744. bottom: 17/1910
  45745. }
  45746. },
  45747. side: {
  45748. height: math.unit(5 + 5/12, "feet"),
  45749. weight: math.unit(170, "lb"),
  45750. name: "Side",
  45751. image: {
  45752. source: "./media/characters/synx-the-lynx/side.svg",
  45753. extra: 1884/1740,
  45754. bottom: 39/1923
  45755. }
  45756. },
  45757. back: {
  45758. height: math.unit(5 + 5/12, "feet"),
  45759. weight: math.unit(170, "lb"),
  45760. name: "Back",
  45761. image: {
  45762. source: "./media/characters/synx-the-lynx/back.svg",
  45763. extra: 1903/1755,
  45764. bottom: 14/1917
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Normal",
  45771. height: math.unit(5 + 5/12, "feet"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45778. {
  45779. back: {
  45780. height: math.unit(15, "feet"),
  45781. name: "Back",
  45782. image: {
  45783. source: "./media/characters/nadezda-fex/back.svg",
  45784. extra: 1695/1481,
  45785. bottom: 25/1720
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(15, "feet"),
  45793. default: true
  45794. },
  45795. {
  45796. name: "Macro",
  45797. height: math.unit(2.5, "miles")
  45798. },
  45799. {
  45800. name: "Goddess",
  45801. height: math.unit(2, "multiverses")
  45802. },
  45803. ]
  45804. ))
  45805. characterMakers.push(() => makeCharacter(
  45806. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45807. {
  45808. front: {
  45809. height: math.unit(216, "cm"),
  45810. name: "Front",
  45811. image: {
  45812. source: "./media/characters/lev/front.svg",
  45813. extra: 1728/1670,
  45814. bottom: 82/1810
  45815. }
  45816. },
  45817. back: {
  45818. height: math.unit(216, "cm"),
  45819. name: "Back",
  45820. image: {
  45821. source: "./media/characters/lev/back.svg",
  45822. extra: 1738/1675,
  45823. bottom: 24/1762
  45824. }
  45825. },
  45826. dressed: {
  45827. height: math.unit(216, "cm"),
  45828. name: "Dressed",
  45829. image: {
  45830. source: "./media/characters/lev/dressed.svg",
  45831. extra: 1397/1351,
  45832. bottom: 73/1470
  45833. }
  45834. },
  45835. head: {
  45836. height: math.unit(0.51, "meter"),
  45837. name: "Head",
  45838. image: {
  45839. source: "./media/characters/lev/head.svg"
  45840. }
  45841. },
  45842. },
  45843. [
  45844. {
  45845. name: "Normal",
  45846. height: math.unit(216, "cm"),
  45847. default: true
  45848. },
  45849. {
  45850. name: "Relatively Macro",
  45851. height: math.unit(80, "meters")
  45852. },
  45853. {
  45854. name: "Megamacro",
  45855. height: math.unit(21600, "meters")
  45856. },
  45857. {
  45858. name: "Megamacro+",
  45859. height: math.unit(64800, "meters")
  45860. },
  45861. ]
  45862. ))
  45863. characterMakers.push(() => makeCharacter(
  45864. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45865. {
  45866. front: {
  45867. height: math.unit(2, "meters"),
  45868. weight: math.unit(80, "kg"),
  45869. name: "Front",
  45870. image: {
  45871. source: "./media/characters/moka/front.svg",
  45872. extra: 1337/1255,
  45873. bottom: 58/1395
  45874. }
  45875. },
  45876. },
  45877. [
  45878. {
  45879. name: "Micro",
  45880. height: math.unit(15, "cm")
  45881. },
  45882. {
  45883. name: "Normal",
  45884. height: math.unit(2, "meters"),
  45885. default: true
  45886. },
  45887. {
  45888. name: "Macro",
  45889. height: math.unit(20, "meters"),
  45890. },
  45891. ]
  45892. ))
  45893. characterMakers.push(() => makeCharacter(
  45894. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45895. {
  45896. front: {
  45897. height: math.unit(9, "feet"),
  45898. weight: math.unit(240, "lb"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/kuzco/front.svg",
  45902. extra: 1593/1487,
  45903. bottom: 32/1625
  45904. }
  45905. },
  45906. side: {
  45907. height: math.unit(9, "feet"),
  45908. weight: math.unit(240, "lb"),
  45909. name: "Side",
  45910. image: {
  45911. source: "./media/characters/kuzco/side.svg",
  45912. extra: 1575/1485,
  45913. bottom: 30/1605
  45914. }
  45915. },
  45916. back: {
  45917. height: math.unit(9, "feet"),
  45918. weight: math.unit(240, "lb"),
  45919. name: "Back",
  45920. image: {
  45921. source: "./media/characters/kuzco/back.svg",
  45922. extra: 1603/1514,
  45923. bottom: 14/1617
  45924. }
  45925. },
  45926. },
  45927. [
  45928. {
  45929. name: "Normal",
  45930. height: math.unit(9, "feet"),
  45931. default: true
  45932. },
  45933. ]
  45934. ))
  45935. characterMakers.push(() => makeCharacter(
  45936. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45937. {
  45938. side: {
  45939. height: math.unit(2, "meters"),
  45940. weight: math.unit(300, "kg"),
  45941. name: "Side",
  45942. image: {
  45943. source: "./media/characters/ceruleus/side.svg",
  45944. extra: 1068/974,
  45945. bottom: 126/1194
  45946. }
  45947. },
  45948. },
  45949. [
  45950. {
  45951. name: "Normal",
  45952. height: math.unit(16, "meters"),
  45953. default: true
  45954. },
  45955. ]
  45956. ))
  45957. characterMakers.push(() => makeCharacter(
  45958. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45959. {
  45960. front: {
  45961. height: math.unit(9, "feet"),
  45962. weight: math.unit(500, "kg"),
  45963. name: "Front",
  45964. image: {
  45965. source: "./media/characters/acouya/front.svg",
  45966. extra: 1660/1473,
  45967. bottom: 28/1688
  45968. }
  45969. },
  45970. },
  45971. [
  45972. {
  45973. name: "Normal",
  45974. height: math.unit(9, "feet"),
  45975. default: true
  45976. },
  45977. ]
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45981. {
  45982. front: {
  45983. height: math.unit(5 + 6/12, "feet"),
  45984. weight: math.unit(195, "lb"),
  45985. name: "Front",
  45986. image: {
  45987. source: "./media/characters/vant/front.svg",
  45988. extra: 1396/1320,
  45989. bottom: 20/1416
  45990. }
  45991. },
  45992. back: {
  45993. height: math.unit(5 + 6/12, "feet"),
  45994. weight: math.unit(195, "lb"),
  45995. name: "Back",
  45996. image: {
  45997. source: "./media/characters/vant/back.svg",
  45998. extra: 1396/1320,
  45999. bottom: 20/1416
  46000. }
  46001. },
  46002. maw: {
  46003. height: math.unit(0.75, "feet"),
  46004. name: "Maw",
  46005. image: {
  46006. source: "./media/characters/vant/maw.svg"
  46007. }
  46008. },
  46009. paw: {
  46010. height: math.unit(1.07, "feet"),
  46011. name: "Paw",
  46012. image: {
  46013. source: "./media/characters/vant/paw.svg"
  46014. }
  46015. },
  46016. },
  46017. [
  46018. {
  46019. name: "Micro",
  46020. height: math.unit(0.25, "inches")
  46021. },
  46022. {
  46023. name: "Normal",
  46024. height: math.unit(5 + 6/12, "feet"),
  46025. default: true
  46026. },
  46027. {
  46028. name: "Macro",
  46029. height: math.unit(75, "feet")
  46030. },
  46031. ]
  46032. ))
  46033. characterMakers.push(() => makeCharacter(
  46034. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46035. {
  46036. front: {
  46037. height: math.unit(30, "meters"),
  46038. weight: math.unit(363, "tons"),
  46039. name: "Front",
  46040. image: {
  46041. source: "./media/characters/ahra/front.svg",
  46042. extra: 1914/1814,
  46043. bottom: 46/1960
  46044. }
  46045. },
  46046. },
  46047. [
  46048. {
  46049. name: "Macro",
  46050. height: math.unit(30, "meters"),
  46051. default: true
  46052. },
  46053. ]
  46054. ))
  46055. characterMakers.push(() => makeCharacter(
  46056. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46057. {
  46058. undressed: {
  46059. height: math.unit(2, "m"),
  46060. weight: math.unit(250, "kg"),
  46061. name: "Undressed",
  46062. image: {
  46063. source: "./media/characters/coriander/undressed.svg",
  46064. extra: 1757/1606,
  46065. bottom: 107/1864
  46066. }
  46067. },
  46068. dressed: {
  46069. height: math.unit(2, "m"),
  46070. weight: math.unit(250, "kg"),
  46071. name: "Dressed",
  46072. image: {
  46073. source: "./media/characters/coriander/dressed.svg",
  46074. extra: 1757/1606,
  46075. bottom: 107/1864
  46076. }
  46077. },
  46078. },
  46079. [
  46080. {
  46081. name: "Normal",
  46082. height: math.unit(4, "meters"),
  46083. default: true
  46084. },
  46085. {
  46086. name: "XL",
  46087. height: math.unit(6, "meters")
  46088. },
  46089. {
  46090. name: "XXL",
  46091. height: math.unit(8, "meters")
  46092. },
  46093. ]
  46094. ))
  46095. characterMakers.push(() => makeCharacter(
  46096. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46097. {
  46098. front: {
  46099. height: math.unit(6, "feet"),
  46100. name: "Front",
  46101. image: {
  46102. source: "./media/characters/syrinx/front.svg",
  46103. extra: 1557/1259,
  46104. bottom: 171/1728
  46105. }
  46106. },
  46107. },
  46108. [
  46109. {
  46110. name: "Normal",
  46111. height: math.unit(6 + 3/12, "feet"),
  46112. default: true
  46113. },
  46114. ]
  46115. ))
  46116. characterMakers.push(() => makeCharacter(
  46117. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46118. {
  46119. front: {
  46120. height: math.unit(11 + 6/12, "feet"),
  46121. weight: math.unit(1.5, "tons"),
  46122. name: "Front",
  46123. image: {
  46124. source: "./media/characters/bor/front.svg",
  46125. extra: 1189/1109,
  46126. bottom: 170/1359
  46127. }
  46128. },
  46129. },
  46130. [
  46131. {
  46132. name: "Normal",
  46133. height: math.unit(11 + 6/12, "feet"),
  46134. default: true
  46135. },
  46136. {
  46137. name: "Macro",
  46138. height: math.unit(32 + 9/12, "feet")
  46139. },
  46140. ]
  46141. ))
  46142. characterMakers.push(() => makeCharacter(
  46143. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46144. {
  46145. anthro: {
  46146. height: math.unit(9, "feet"),
  46147. weight: math.unit(2076, "lb"),
  46148. name: "Anthro",
  46149. image: {
  46150. source: "./media/characters/abacus/anthro.svg",
  46151. extra: 1540/1494,
  46152. bottom: 233/1773
  46153. }
  46154. },
  46155. pigeon: {
  46156. height: math.unit(1, "feet"),
  46157. name: "Pigeon",
  46158. image: {
  46159. source: "./media/characters/abacus/pigeon.svg",
  46160. extra: 528/525,
  46161. bottom: 46/574
  46162. }
  46163. },
  46164. },
  46165. [
  46166. {
  46167. name: "Normal",
  46168. height: math.unit(9, "feet"),
  46169. default: true
  46170. },
  46171. ]
  46172. ))
  46173. characterMakers.push(() => makeCharacter(
  46174. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46175. {
  46176. side: {
  46177. height: math.unit(6, "feet"),
  46178. name: "Side",
  46179. image: {
  46180. source: "./media/characters/delkhan/side.svg",
  46181. extra: 1884/1786,
  46182. bottom: 308/2192
  46183. }
  46184. },
  46185. head: {
  46186. height: math.unit(3.38, "feet"),
  46187. name: "Head",
  46188. image: {
  46189. source: "./media/characters/delkhan/head.svg"
  46190. }
  46191. },
  46192. },
  46193. [
  46194. {
  46195. name: "Normal",
  46196. height: math.unit(72, "feet"),
  46197. default: true
  46198. },
  46199. {
  46200. name: "Giant",
  46201. height: math.unit(172, "feet")
  46202. },
  46203. ]
  46204. ))
  46205. characterMakers.push(() => makeCharacter(
  46206. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46207. {
  46208. standing: {
  46209. height: math.unit(6, "feet"),
  46210. name: "Standing",
  46211. image: {
  46212. source: "./media/characters/euchidat/standing.svg",
  46213. extra: 1612/1553,
  46214. bottom: 116/1728
  46215. }
  46216. },
  46217. leaning: {
  46218. height: math.unit(6, "feet"),
  46219. name: "Leaning",
  46220. image: {
  46221. source: "./media/characters/euchidat/leaning.svg",
  46222. extra: 1719/1674,
  46223. bottom: 27/1746
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Normal",
  46230. height: math.unit(175, "feet"),
  46231. default: true
  46232. },
  46233. {
  46234. name: "Megamacro",
  46235. height: math.unit(190, "miles")
  46236. },
  46237. {
  46238. name: "Gigamacro",
  46239. height: math.unit(190000, "miles")
  46240. },
  46241. ]
  46242. ))
  46243. characterMakers.push(() => makeCharacter(
  46244. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46245. {
  46246. front: {
  46247. height: math.unit(6, "feet"),
  46248. weight: math.unit(150, "lb"),
  46249. name: "Front",
  46250. image: {
  46251. source: "./media/characters/rebecca-stack/front.svg",
  46252. extra: 1256/1201,
  46253. bottom: 18/1274
  46254. }
  46255. },
  46256. },
  46257. [
  46258. {
  46259. name: "Normal",
  46260. height: math.unit(5 + 8/12, "feet"),
  46261. default: true
  46262. },
  46263. {
  46264. name: "Demolitionist",
  46265. height: math.unit(200, "feet")
  46266. },
  46267. {
  46268. name: "Out of Control",
  46269. height: math.unit(2, "miles")
  46270. },
  46271. {
  46272. name: "Giga",
  46273. height: math.unit(7200, "miles")
  46274. },
  46275. ]
  46276. ))
  46277. characterMakers.push(() => makeCharacter(
  46278. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46279. {
  46280. front: {
  46281. height: math.unit(6, "feet"),
  46282. weight: math.unit(150, "lb"),
  46283. name: "Front",
  46284. image: {
  46285. source: "./media/characters/jenny-cartwright/front.svg",
  46286. extra: 1384/1376,
  46287. bottom: 58/1442
  46288. }
  46289. },
  46290. },
  46291. [
  46292. {
  46293. name: "Normal",
  46294. height: math.unit(6 + 7/12, "feet"),
  46295. default: true
  46296. },
  46297. {
  46298. name: "Librarian",
  46299. height: math.unit(55, "feet")
  46300. },
  46301. {
  46302. name: "Sightseer",
  46303. height: math.unit(50, "miles")
  46304. },
  46305. {
  46306. name: "Giga",
  46307. height: math.unit(30000, "miles")
  46308. },
  46309. ]
  46310. ))
  46311. characterMakers.push(() => makeCharacter(
  46312. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46313. {
  46314. nude: {
  46315. height: math.unit(8, "feet"),
  46316. weight: math.unit(225, "lb"),
  46317. name: "Nude",
  46318. image: {
  46319. source: "./media/characters/marvy/nude.svg",
  46320. extra: 1900/1683,
  46321. bottom: 89/1989
  46322. }
  46323. },
  46324. dressed: {
  46325. height: math.unit(8, "feet"),
  46326. weight: math.unit(225, "lb"),
  46327. name: "Dressed",
  46328. image: {
  46329. source: "./media/characters/marvy/dressed.svg",
  46330. extra: 1900/1683,
  46331. bottom: 89/1989
  46332. }
  46333. },
  46334. head: {
  46335. height: math.unit(2.85, "feet"),
  46336. name: "Head",
  46337. image: {
  46338. source: "./media/characters/marvy/head.svg"
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Normal",
  46345. height: math.unit(8, "feet"),
  46346. default: true
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(8, "feet"),
  46355. weight: math.unit(250, "lb"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/leah/front.svg",
  46359. extra: 1257/1149,
  46360. bottom: 109/1366
  46361. }
  46362. },
  46363. },
  46364. [
  46365. {
  46366. name: "Normal",
  46367. height: math.unit(8, "feet"),
  46368. default: true
  46369. },
  46370. {
  46371. name: "Minimacro",
  46372. height: math.unit(40, "feet")
  46373. },
  46374. {
  46375. name: "Macro",
  46376. height: math.unit(124, "feet")
  46377. },
  46378. {
  46379. name: "Megamacro",
  46380. height: math.unit(850, "feet")
  46381. },
  46382. ]
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46386. {
  46387. side: {
  46388. height: math.unit(13 + 6/12, "feet"),
  46389. weight: math.unit(3200, "lb"),
  46390. name: "Side",
  46391. image: {
  46392. source: "./media/characters/alvir/side.svg",
  46393. extra: 896/589,
  46394. bottom: 26/922
  46395. }
  46396. },
  46397. },
  46398. [
  46399. {
  46400. name: "Normal",
  46401. height: math.unit(13 + 6/12, "feet"),
  46402. default: true
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46408. {
  46409. front: {
  46410. height: math.unit(5 + 4/12, "feet"),
  46411. weight: math.unit(236, "lb"),
  46412. name: "Front",
  46413. image: {
  46414. source: "./media/characters/zaina-khalil/front.svg",
  46415. extra: 1533/1485,
  46416. bottom: 94/1627
  46417. }
  46418. },
  46419. side: {
  46420. height: math.unit(5 + 4/12, "feet"),
  46421. weight: math.unit(236, "lb"),
  46422. name: "Side",
  46423. image: {
  46424. source: "./media/characters/zaina-khalil/side.svg",
  46425. extra: 1537/1498,
  46426. bottom: 66/1603
  46427. }
  46428. },
  46429. back: {
  46430. height: math.unit(5 + 4/12, "feet"),
  46431. weight: math.unit(236, "lb"),
  46432. name: "Back",
  46433. image: {
  46434. source: "./media/characters/zaina-khalil/back.svg",
  46435. extra: 1546/1494,
  46436. bottom: 89/1635
  46437. }
  46438. },
  46439. },
  46440. [
  46441. {
  46442. name: "Normal",
  46443. height: math.unit(5 + 4/12, "feet"),
  46444. default: true
  46445. },
  46446. ]
  46447. ))
  46448. characterMakers.push(() => makeCharacter(
  46449. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46450. {
  46451. side: {
  46452. height: math.unit(12, "feet"),
  46453. weight: math.unit(4000, "lb"),
  46454. name: "Side",
  46455. image: {
  46456. source: "./media/characters/terry/side.svg",
  46457. extra: 1518/1439,
  46458. bottom: 149/1667
  46459. }
  46460. },
  46461. },
  46462. [
  46463. {
  46464. name: "Normal",
  46465. height: math.unit(12, "feet"),
  46466. default: true
  46467. },
  46468. ]
  46469. ))
  46470. characterMakers.push(() => makeCharacter(
  46471. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46472. {
  46473. front: {
  46474. height: math.unit(12, "feet"),
  46475. weight: math.unit(1500, "lb"),
  46476. name: "Front",
  46477. image: {
  46478. source: "./media/characters/kahea/front.svg",
  46479. extra: 1722/1617,
  46480. bottom: 179/1901
  46481. }
  46482. },
  46483. },
  46484. [
  46485. {
  46486. name: "Normal",
  46487. height: math.unit(12, "feet"),
  46488. default: true
  46489. },
  46490. ]
  46491. ))
  46492. characterMakers.push(() => makeCharacter(
  46493. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46494. {
  46495. demonFront: {
  46496. height: math.unit(36, "feet"),
  46497. name: "Front",
  46498. image: {
  46499. source: "./media/characters/alex-xuria/demon-front.svg",
  46500. extra: 1705/1673,
  46501. bottom: 198/1903
  46502. },
  46503. form: "demon",
  46504. default: true
  46505. },
  46506. demonBack: {
  46507. height: math.unit(36, "feet"),
  46508. name: "Back",
  46509. image: {
  46510. source: "./media/characters/alex-xuria/demon-back.svg",
  46511. extra: 1725/1693,
  46512. bottom: 70/1795
  46513. },
  46514. form: "demon"
  46515. },
  46516. demonHead: {
  46517. height: math.unit(2.14, "meters"),
  46518. name: "Head",
  46519. image: {
  46520. source: "./media/characters/alex-xuria/demon-head.svg"
  46521. },
  46522. form: "demon"
  46523. },
  46524. demonHand: {
  46525. height: math.unit(1.61, "meters"),
  46526. name: "Hand",
  46527. image: {
  46528. source: "./media/characters/alex-xuria/demon-hand.svg"
  46529. },
  46530. form: "demon"
  46531. },
  46532. demonPaw: {
  46533. height: math.unit(1.35, "meters"),
  46534. name: "Paw",
  46535. image: {
  46536. source: "./media/characters/alex-xuria/demon-paw.svg"
  46537. },
  46538. form: "demon"
  46539. },
  46540. demonFoot: {
  46541. height: math.unit(2.2, "meters"),
  46542. name: "Foot",
  46543. image: {
  46544. source: "./media/characters/alex-xuria/demon-foot.svg"
  46545. },
  46546. form: "demon"
  46547. },
  46548. demonCock: {
  46549. height: math.unit(1.74, "meters"),
  46550. name: "Cock",
  46551. image: {
  46552. source: "./media/characters/alex-xuria/demon-cock.svg"
  46553. },
  46554. form: "demon"
  46555. },
  46556. demonTailClosed: {
  46557. height: math.unit(1.47, "meters"),
  46558. name: "Tail (Closed)",
  46559. image: {
  46560. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46561. },
  46562. form: "demon"
  46563. },
  46564. demonTailOpen: {
  46565. height: math.unit(2.85, "meters"),
  46566. name: "Tail (Open)",
  46567. image: {
  46568. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46569. },
  46570. form: "demon"
  46571. },
  46572. incubusFront: {
  46573. height: math.unit(12, "feet"),
  46574. name: "Front",
  46575. image: {
  46576. source: "./media/characters/alex-xuria/incubus-front.svg",
  46577. extra: 1754/1677,
  46578. bottom: 125/1879
  46579. },
  46580. form: "incubus",
  46581. default: true
  46582. },
  46583. incubusBack: {
  46584. height: math.unit(12, "feet"),
  46585. name: "Back",
  46586. image: {
  46587. source: "./media/characters/alex-xuria/incubus-back.svg",
  46588. extra: 1702/1647,
  46589. bottom: 30/1732
  46590. },
  46591. form: "incubus"
  46592. },
  46593. incubusHead: {
  46594. height: math.unit(3.45, "feet"),
  46595. name: "Head",
  46596. image: {
  46597. source: "./media/characters/alex-xuria/incubus-head.svg"
  46598. },
  46599. form: "incubus"
  46600. },
  46601. rabbitFront: {
  46602. height: math.unit(6, "feet"),
  46603. name: "Front",
  46604. image: {
  46605. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46606. extra: 1369/1349,
  46607. bottom: 45/1414
  46608. },
  46609. form: "rabbit",
  46610. default: true
  46611. },
  46612. rabbitSide: {
  46613. height: math.unit(6, "feet"),
  46614. name: "Side",
  46615. image: {
  46616. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46617. extra: 1370/1356,
  46618. bottom: 37/1407
  46619. },
  46620. form: "rabbit"
  46621. },
  46622. rabbitBack: {
  46623. height: math.unit(6, "feet"),
  46624. name: "Back",
  46625. image: {
  46626. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46627. extra: 1375/1358,
  46628. bottom: 43/1418
  46629. },
  46630. form: "rabbit"
  46631. },
  46632. },
  46633. [
  46634. {
  46635. name: "Normal",
  46636. height: math.unit(6, "feet"),
  46637. default: true,
  46638. form: "rabbit"
  46639. },
  46640. {
  46641. name: "Incubus",
  46642. height: math.unit(12, "feet"),
  46643. default: true,
  46644. form: "incubus"
  46645. },
  46646. {
  46647. name: "Demon",
  46648. height: math.unit(36, "feet"),
  46649. default: true,
  46650. form: "demon"
  46651. }
  46652. ],
  46653. {
  46654. "demon": {
  46655. name: "Demon",
  46656. default: true
  46657. },
  46658. "incubus": {
  46659. name: "Incubus",
  46660. },
  46661. "rabbit": {
  46662. name: "Rabbit"
  46663. }
  46664. }
  46665. ))
  46666. characterMakers.push(() => makeCharacter(
  46667. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46668. {
  46669. front: {
  46670. height: math.unit(7 + 5/12, "feet"),
  46671. weight: math.unit(510, "lb"),
  46672. name: "Front",
  46673. image: {
  46674. source: "./media/characters/syrup/front.svg",
  46675. extra: 932/916,
  46676. bottom: 26/958
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Normal",
  46683. height: math.unit(7 + 5/12, "feet"),
  46684. default: true
  46685. },
  46686. {
  46687. name: "Big",
  46688. height: math.unit(50, "feet")
  46689. },
  46690. {
  46691. name: "Macro",
  46692. height: math.unit(300, "feet")
  46693. },
  46694. {
  46695. name: "Megamacro",
  46696. height: math.unit(1, "mile")
  46697. },
  46698. ]
  46699. ))
  46700. characterMakers.push(() => makeCharacter(
  46701. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46702. {
  46703. front: {
  46704. height: math.unit(6 + 9/12, "feet"),
  46705. name: "Front",
  46706. image: {
  46707. source: "./media/characters/zeimne/front.svg",
  46708. extra: 1969/1806,
  46709. bottom: 53/2022
  46710. }
  46711. },
  46712. },
  46713. [
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(6 + 9/12, "feet"),
  46717. default: true
  46718. },
  46719. {
  46720. name: "Giant",
  46721. height: math.unit(550, "feet")
  46722. },
  46723. {
  46724. name: "Mega",
  46725. height: math.unit(3, "miles")
  46726. },
  46727. {
  46728. name: "Giga",
  46729. height: math.unit(250, "miles")
  46730. },
  46731. {
  46732. name: "Tera",
  46733. height: math.unit(1, "AU")
  46734. },
  46735. ]
  46736. ))
  46737. characterMakers.push(() => makeCharacter(
  46738. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46739. {
  46740. front: {
  46741. height: math.unit(5 + 2/12, "feet"),
  46742. name: "Front",
  46743. image: {
  46744. source: "./media/characters/grar/front.svg",
  46745. extra: 1331/1119,
  46746. bottom: 60/1391
  46747. }
  46748. },
  46749. back: {
  46750. height: math.unit(5 + 2/12, "feet"),
  46751. name: "Back",
  46752. image: {
  46753. source: "./media/characters/grar/back.svg",
  46754. extra: 1385/1169,
  46755. bottom: 23/1408
  46756. }
  46757. },
  46758. },
  46759. [
  46760. {
  46761. name: "Normal",
  46762. height: math.unit(5 + 2/12, "feet"),
  46763. default: true
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46769. {
  46770. front: {
  46771. height: math.unit(13 + 7/12, "feet"),
  46772. weight: math.unit(2200, "lb"),
  46773. name: "Front",
  46774. image: {
  46775. source: "./media/characters/endraya/front.svg",
  46776. extra: 1289/1215,
  46777. bottom: 50/1339
  46778. }
  46779. },
  46780. nude: {
  46781. height: math.unit(13 + 7/12, "feet"),
  46782. weight: math.unit(2200, "lb"),
  46783. name: "Nude",
  46784. image: {
  46785. source: "./media/characters/endraya/nude.svg",
  46786. extra: 1247/1171,
  46787. bottom: 40/1287
  46788. }
  46789. },
  46790. head: {
  46791. height: math.unit(2.6, "feet"),
  46792. name: "Head",
  46793. image: {
  46794. source: "./media/characters/endraya/head.svg"
  46795. }
  46796. },
  46797. slit: {
  46798. height: math.unit(3.4, "feet"),
  46799. name: "Slit",
  46800. image: {
  46801. source: "./media/characters/endraya/slit.svg"
  46802. }
  46803. },
  46804. },
  46805. [
  46806. {
  46807. name: "Normal",
  46808. height: math.unit(13 + 7/12, "feet"),
  46809. default: true
  46810. },
  46811. {
  46812. name: "Macro",
  46813. height: math.unit(200, "feet")
  46814. },
  46815. ]
  46816. ))
  46817. characterMakers.push(() => makeCharacter(
  46818. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46819. {
  46820. front: {
  46821. height: math.unit(1.81, "meters"),
  46822. weight: math.unit(69, "kg"),
  46823. name: "Front",
  46824. image: {
  46825. source: "./media/characters/rodryana/front.svg",
  46826. extra: 2002/1921,
  46827. bottom: 53/2055
  46828. }
  46829. },
  46830. back: {
  46831. height: math.unit(1.81, "meters"),
  46832. weight: math.unit(69, "kg"),
  46833. name: "Back",
  46834. image: {
  46835. source: "./media/characters/rodryana/back.svg",
  46836. extra: 1993/1926,
  46837. bottom: 48/2041
  46838. }
  46839. },
  46840. maw: {
  46841. height: math.unit(0.19769417475, "meters"),
  46842. name: "Maw",
  46843. image: {
  46844. source: "./media/characters/rodryana/maw.svg"
  46845. }
  46846. },
  46847. slit: {
  46848. height: math.unit(0.31631067961, "meters"),
  46849. name: "Slit",
  46850. image: {
  46851. source: "./media/characters/rodryana/slit.svg"
  46852. }
  46853. },
  46854. },
  46855. [
  46856. {
  46857. name: "Normal",
  46858. height: math.unit(1.81, "meters")
  46859. },
  46860. {
  46861. name: "Mini Macro",
  46862. height: math.unit(181, "meters")
  46863. },
  46864. {
  46865. name: "Macro",
  46866. height: math.unit(452, "meters"),
  46867. default: true
  46868. },
  46869. {
  46870. name: "Mega Macro",
  46871. height: math.unit(1.375, "km")
  46872. },
  46873. {
  46874. name: "Giga Macro",
  46875. height: math.unit(13.575, "km")
  46876. },
  46877. ]
  46878. ))
  46879. characterMakers.push(() => makeCharacter(
  46880. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46881. {
  46882. front: {
  46883. height: math.unit(6, "feet"),
  46884. weight: math.unit(1000, "lb"),
  46885. name: "Front",
  46886. image: {
  46887. source: "./media/characters/asaya/front.svg",
  46888. extra: 1460/1200,
  46889. bottom: 71/1531
  46890. }
  46891. },
  46892. },
  46893. [
  46894. {
  46895. name: "Normal",
  46896. height: math.unit(8, "km"),
  46897. default: true
  46898. },
  46899. ]
  46900. ))
  46901. characterMakers.push(() => makeCharacter(
  46902. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46903. {
  46904. front: {
  46905. height: math.unit(3.5, "meters"),
  46906. name: "Front",
  46907. image: {
  46908. source: "./media/characters/sarzu-and-israz/front.svg",
  46909. extra: 1570/1558,
  46910. bottom: 150/1720
  46911. },
  46912. },
  46913. back: {
  46914. height: math.unit(3.5, "meters"),
  46915. name: "Back",
  46916. image: {
  46917. source: "./media/characters/sarzu-and-israz/back.svg",
  46918. extra: 1523/1509,
  46919. bottom: 132/1655
  46920. },
  46921. },
  46922. frontFemale: {
  46923. height: math.unit(3.5, "meters"),
  46924. name: "Front (Female)",
  46925. image: {
  46926. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46927. extra: 1570/1558,
  46928. bottom: 150/1720
  46929. },
  46930. },
  46931. frontHerm: {
  46932. height: math.unit(3.5, "meters"),
  46933. name: "Front (Herm)",
  46934. image: {
  46935. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46936. extra: 1570/1558,
  46937. bottom: 150/1720
  46938. },
  46939. },
  46940. },
  46941. [
  46942. {
  46943. name: "Normal",
  46944. height: math.unit(3.5, "meters"),
  46945. default: true,
  46946. },
  46947. {
  46948. name: "Macro",
  46949. height: math.unit(65.5, "meters"),
  46950. },
  46951. ],
  46952. ))
  46953. characterMakers.push(() => makeCharacter(
  46954. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46955. {
  46956. front: {
  46957. height: math.unit(6, "feet"),
  46958. weight: math.unit(250, "lb"),
  46959. name: "Front",
  46960. image: {
  46961. source: "./media/characters/zenimma/front.svg",
  46962. extra: 1346/1320,
  46963. bottom: 58/1404
  46964. }
  46965. },
  46966. back: {
  46967. height: math.unit(6, "feet"),
  46968. weight: math.unit(250, "lb"),
  46969. name: "Back",
  46970. image: {
  46971. source: "./media/characters/zenimma/back.svg",
  46972. extra: 1324/1308,
  46973. bottom: 44/1368
  46974. }
  46975. },
  46976. dick: {
  46977. height: math.unit(1.44, "feet"),
  46978. name: "Dick",
  46979. image: {
  46980. source: "./media/characters/zenimma/dick.svg"
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Canon Height",
  46987. height: math.unit(66, "miles"),
  46988. default: true
  46989. },
  46990. ]
  46991. ))
  46992. characterMakers.push(() => makeCharacter(
  46993. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46994. {
  46995. nude: {
  46996. height: math.unit(6, "feet"),
  46997. weight: math.unit(150, "lb"),
  46998. name: "Nude",
  46999. image: {
  47000. source: "./media/characters/shavon/nude.svg",
  47001. extra: 1242/1096,
  47002. bottom: 98/1340
  47003. }
  47004. },
  47005. dressed: {
  47006. height: math.unit(6, "feet"),
  47007. weight: math.unit(150, "lb"),
  47008. name: "Dressed",
  47009. image: {
  47010. source: "./media/characters/shavon/dressed.svg",
  47011. extra: 1242/1096,
  47012. bottom: 98/1340
  47013. }
  47014. },
  47015. },
  47016. [
  47017. {
  47018. name: "Macro",
  47019. height: math.unit(255, "feet"),
  47020. default: true
  47021. },
  47022. ]
  47023. ))
  47024. characterMakers.push(() => makeCharacter(
  47025. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47026. {
  47027. front: {
  47028. height: math.unit(6, "feet"),
  47029. name: "Front",
  47030. image: {
  47031. source: "./media/characters/steph/front.svg",
  47032. extra: 1430/1330,
  47033. bottom: 54/1484
  47034. }
  47035. },
  47036. },
  47037. [
  47038. {
  47039. name: "Normal",
  47040. height: math.unit(6, "feet"),
  47041. default: true
  47042. },
  47043. ]
  47044. ))
  47045. characterMakers.push(() => makeCharacter(
  47046. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47047. {
  47048. front: {
  47049. height: math.unit(9, "feet"),
  47050. weight: math.unit(400, "lb"),
  47051. name: "Front",
  47052. image: {
  47053. source: "./media/characters/kil'aman/front.svg",
  47054. extra: 1210/1159,
  47055. bottom: 109/1319
  47056. }
  47057. },
  47058. head: {
  47059. height: math.unit(2.14, "feet"),
  47060. name: "Head",
  47061. image: {
  47062. source: "./media/characters/kil'aman/head.svg"
  47063. }
  47064. },
  47065. maw: {
  47066. height: math.unit(1.21, "feet"),
  47067. name: "Maw",
  47068. image: {
  47069. source: "./media/characters/kil'aman/maw.svg"
  47070. }
  47071. },
  47072. foot: {
  47073. height: math.unit(1.7, "feet"),
  47074. name: "Foot",
  47075. image: {
  47076. source: "./media/characters/kil'aman/foot.svg"
  47077. }
  47078. },
  47079. dick: {
  47080. height: math.unit(2.1, "feet"),
  47081. name: "Dick",
  47082. image: {
  47083. source: "./media/characters/kil'aman/dick.svg"
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Normal",
  47090. height: math.unit(9, "feet")
  47091. },
  47092. {
  47093. name: "Canon Height",
  47094. height: math.unit(10, "miles"),
  47095. default: true
  47096. },
  47097. {
  47098. name: "Maximum",
  47099. height: math.unit(6e9, "miles")
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47105. {
  47106. front: {
  47107. height: math.unit(90, "feet"),
  47108. weight: math.unit(675000, "lb"),
  47109. name: "Front",
  47110. image: {
  47111. source: "./media/characters/qadan/front.svg",
  47112. extra: 1012/1004,
  47113. bottom: 78/1090
  47114. }
  47115. },
  47116. back: {
  47117. height: math.unit(90, "feet"),
  47118. weight: math.unit(675000, "lb"),
  47119. name: "Back",
  47120. image: {
  47121. source: "./media/characters/qadan/back.svg",
  47122. extra: 1042/1031,
  47123. bottom: 55/1097
  47124. }
  47125. },
  47126. armored: {
  47127. height: math.unit(90, "feet"),
  47128. weight: math.unit(675000, "lb"),
  47129. name: "Armored",
  47130. image: {
  47131. source: "./media/characters/qadan/armored.svg",
  47132. extra: 1047/1037,
  47133. bottom: 48/1095
  47134. }
  47135. },
  47136. },
  47137. [
  47138. {
  47139. name: "Normal",
  47140. height: math.unit(90, "feet"),
  47141. default: true
  47142. },
  47143. ]
  47144. ))
  47145. characterMakers.push(() => makeCharacter(
  47146. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47147. {
  47148. front: {
  47149. height: math.unit(6, "feet"),
  47150. weight: math.unit(225, "lb"),
  47151. name: "Front",
  47152. image: {
  47153. source: "./media/characters/brooke/front.svg",
  47154. extra: 1050/1010,
  47155. bottom: 66/1116
  47156. }
  47157. },
  47158. back: {
  47159. height: math.unit(6, "feet"),
  47160. weight: math.unit(225, "lb"),
  47161. name: "Back",
  47162. image: {
  47163. source: "./media/characters/brooke/back.svg",
  47164. extra: 1053/1013,
  47165. bottom: 41/1094
  47166. }
  47167. },
  47168. dressed: {
  47169. height: math.unit(6, "feet"),
  47170. weight: math.unit(225, "lb"),
  47171. name: "Dressed",
  47172. image: {
  47173. source: "./media/characters/brooke/dressed.svg",
  47174. extra: 1050/1010,
  47175. bottom: 66/1116
  47176. }
  47177. },
  47178. },
  47179. [
  47180. {
  47181. name: "Canon Height",
  47182. height: math.unit(500, "miles"),
  47183. default: true
  47184. },
  47185. ]
  47186. ))
  47187. characterMakers.push(() => makeCharacter(
  47188. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47189. {
  47190. front: {
  47191. height: math.unit(6 + 2/12, "feet"),
  47192. weight: math.unit(210, "lb"),
  47193. name: "Front",
  47194. image: {
  47195. source: "./media/characters/wubs/front.svg",
  47196. extra: 1345/1325,
  47197. bottom: 70/1415
  47198. }
  47199. },
  47200. back: {
  47201. height: math.unit(6 + 2/12, "feet"),
  47202. weight: math.unit(210, "lb"),
  47203. name: "Back",
  47204. image: {
  47205. source: "./media/characters/wubs/back.svg",
  47206. extra: 1296/1275,
  47207. bottom: 58/1354
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Normal",
  47214. height: math.unit(6 + 2/12, "feet"),
  47215. default: true
  47216. },
  47217. {
  47218. name: "Macro",
  47219. height: math.unit(1000, "feet")
  47220. },
  47221. {
  47222. name: "Megamacro",
  47223. height: math.unit(1, "mile")
  47224. },
  47225. ]
  47226. ))
  47227. characterMakers.push(() => makeCharacter(
  47228. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47229. {
  47230. front: {
  47231. height: math.unit(4, "feet"),
  47232. weight: math.unit(120, "lb"),
  47233. name: "Front",
  47234. image: {
  47235. source: "./media/characters/blue/front.svg",
  47236. extra: 1636/1525,
  47237. bottom: 43/1679
  47238. }
  47239. },
  47240. back: {
  47241. height: math.unit(4, "feet"),
  47242. weight: math.unit(120, "lb"),
  47243. name: "Back",
  47244. image: {
  47245. source: "./media/characters/blue/back.svg",
  47246. extra: 1660/1560,
  47247. bottom: 57/1717
  47248. }
  47249. },
  47250. paws: {
  47251. height: math.unit(0.826, "feet"),
  47252. name: "Paws",
  47253. image: {
  47254. source: "./media/characters/blue/paws.svg"
  47255. }
  47256. },
  47257. },
  47258. [
  47259. {
  47260. name: "Micro",
  47261. height: math.unit(3, "inches")
  47262. },
  47263. {
  47264. name: "Normal",
  47265. height: math.unit(4, "feet"),
  47266. default: true
  47267. },
  47268. {
  47269. name: "Femenine Form",
  47270. height: math.unit(14, "feet")
  47271. },
  47272. {
  47273. name: "Werebat Form",
  47274. height: math.unit(18, "feet")
  47275. },
  47276. ]
  47277. ))
  47278. characterMakers.push(() => makeCharacter(
  47279. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47280. {
  47281. female: {
  47282. height: math.unit(7 + 4/12, "feet"),
  47283. weight: math.unit(243, "lb"),
  47284. name: "Female",
  47285. image: {
  47286. source: "./media/characters/kaya/female.svg",
  47287. extra: 975/898,
  47288. bottom: 34/1009
  47289. }
  47290. },
  47291. herm: {
  47292. height: math.unit(7 + 4/12, "feet"),
  47293. weight: math.unit(243, "lb"),
  47294. name: "Herm",
  47295. image: {
  47296. source: "./media/characters/kaya/herm.svg",
  47297. extra: 975/898,
  47298. bottom: 34/1009
  47299. }
  47300. },
  47301. },
  47302. [
  47303. {
  47304. name: "Normal",
  47305. height: math.unit(7 + 4/12, "feet"),
  47306. default: true
  47307. },
  47308. ]
  47309. ))
  47310. characterMakers.push(() => makeCharacter(
  47311. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47312. {
  47313. female: {
  47314. height: math.unit(9 + 4/12, "feet"),
  47315. weight: math.unit(398, "lb"),
  47316. name: "Female",
  47317. image: {
  47318. source: "./media/characters/kassandra/female.svg",
  47319. extra: 908/839,
  47320. bottom: 61/969
  47321. }
  47322. },
  47323. intersex: {
  47324. height: math.unit(9 + 4/12, "feet"),
  47325. weight: math.unit(398, "lb"),
  47326. name: "Intersex",
  47327. image: {
  47328. source: "./media/characters/kassandra/intersex.svg",
  47329. extra: 908/839,
  47330. bottom: 61/969
  47331. }
  47332. },
  47333. },
  47334. [
  47335. {
  47336. name: "Normal",
  47337. height: math.unit(9 + 4/12, "feet"),
  47338. default: true
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47344. {
  47345. front: {
  47346. height: math.unit(3, "meters"),
  47347. name: "Front",
  47348. image: {
  47349. source: "./media/characters/amy/front.svg",
  47350. extra: 1380/1343,
  47351. bottom: 70/1450
  47352. }
  47353. },
  47354. back: {
  47355. height: math.unit(3, "meters"),
  47356. name: "Back",
  47357. image: {
  47358. source: "./media/characters/amy/back.svg",
  47359. extra: 1380/1347,
  47360. bottom: 66/1446
  47361. }
  47362. },
  47363. },
  47364. [
  47365. {
  47366. name: "Normal",
  47367. height: math.unit(3, "meters"),
  47368. default: true
  47369. },
  47370. ]
  47371. ))
  47372. characterMakers.push(() => makeCharacter(
  47373. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47374. {
  47375. side: {
  47376. height: math.unit(47, "cm"),
  47377. weight: math.unit(10.8, "kg"),
  47378. name: "Side",
  47379. image: {
  47380. source: "./media/characters/alphaschakal/side.svg",
  47381. extra: 1058/568,
  47382. bottom: 62/1120
  47383. }
  47384. },
  47385. back: {
  47386. height: math.unit(78, "cm"),
  47387. weight: math.unit(10.8, "kg"),
  47388. name: "Back",
  47389. image: {
  47390. source: "./media/characters/alphaschakal/back.svg",
  47391. extra: 1102/942,
  47392. bottom: 185/1287
  47393. }
  47394. },
  47395. head: {
  47396. height: math.unit(28, "cm"),
  47397. name: "Head",
  47398. image: {
  47399. source: "./media/characters/alphaschakal/head.svg",
  47400. extra: 696/508,
  47401. bottom: 0/696
  47402. }
  47403. },
  47404. paw: {
  47405. height: math.unit(16, "cm"),
  47406. name: "Paw",
  47407. image: {
  47408. source: "./media/characters/alphaschakal/paw.svg"
  47409. }
  47410. },
  47411. },
  47412. [
  47413. {
  47414. name: "Normal",
  47415. height: math.unit(47, "cm"),
  47416. default: true
  47417. },
  47418. {
  47419. name: "Macro",
  47420. height: math.unit(340, "cm")
  47421. },
  47422. ]
  47423. ))
  47424. characterMakers.push(() => makeCharacter(
  47425. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47426. {
  47427. front: {
  47428. height: math.unit(36, "earths"),
  47429. name: "Front",
  47430. image: {
  47431. source: "./media/characters/ecobyss/front.svg",
  47432. extra: 1282/1215,
  47433. bottom: 11/1293
  47434. }
  47435. },
  47436. back: {
  47437. height: math.unit(36, "earths"),
  47438. name: "Back",
  47439. image: {
  47440. source: "./media/characters/ecobyss/back.svg",
  47441. extra: 1291/1222,
  47442. bottom: 8/1299
  47443. }
  47444. },
  47445. },
  47446. [
  47447. {
  47448. name: "Normal",
  47449. height: math.unit(36, "earths"),
  47450. default: true
  47451. },
  47452. ]
  47453. ))
  47454. characterMakers.push(() => makeCharacter(
  47455. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47456. {
  47457. front: {
  47458. height: math.unit(12, "feet"),
  47459. name: "Front",
  47460. image: {
  47461. source: "./media/characters/vasuk/front.svg",
  47462. extra: 1326/1207,
  47463. bottom: 64/1390
  47464. }
  47465. },
  47466. },
  47467. [
  47468. {
  47469. name: "Normal",
  47470. height: math.unit(12, "feet"),
  47471. default: true
  47472. },
  47473. ]
  47474. ))
  47475. characterMakers.push(() => makeCharacter(
  47476. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47477. {
  47478. side: {
  47479. height: math.unit(100, "feet"),
  47480. name: "Side",
  47481. image: {
  47482. source: "./media/characters/linneaus/side.svg",
  47483. extra: 987/807,
  47484. bottom: 47/1034
  47485. }
  47486. },
  47487. },
  47488. [
  47489. {
  47490. name: "Macro",
  47491. height: math.unit(100, "feet"),
  47492. default: true
  47493. },
  47494. ]
  47495. ))
  47496. characterMakers.push(() => makeCharacter(
  47497. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47498. {
  47499. front: {
  47500. height: math.unit(8, "feet"),
  47501. weight: math.unit(1200, "lb"),
  47502. name: "Front",
  47503. image: {
  47504. source: "./media/characters/nyterious-daligdig/front.svg",
  47505. extra: 1284/1094,
  47506. bottom: 84/1368
  47507. }
  47508. },
  47509. back: {
  47510. height: math.unit(8, "feet"),
  47511. weight: math.unit(1200, "lb"),
  47512. name: "Back",
  47513. image: {
  47514. source: "./media/characters/nyterious-daligdig/back.svg",
  47515. extra: 1301/1121,
  47516. bottom: 129/1430
  47517. }
  47518. },
  47519. mouth: {
  47520. height: math.unit(1.464, "feet"),
  47521. name: "Mouth",
  47522. image: {
  47523. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47524. }
  47525. },
  47526. },
  47527. [
  47528. {
  47529. name: "Small",
  47530. height: math.unit(8, "feet"),
  47531. default: true
  47532. },
  47533. {
  47534. name: "Normal",
  47535. height: math.unit(15, "feet")
  47536. },
  47537. {
  47538. name: "Macro",
  47539. height: math.unit(90, "feet")
  47540. },
  47541. ]
  47542. ))
  47543. characterMakers.push(() => makeCharacter(
  47544. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47545. {
  47546. front: {
  47547. height: math.unit(7 + 4/12, "feet"),
  47548. weight: math.unit(252, "lb"),
  47549. name: "Front",
  47550. image: {
  47551. source: "./media/characters/bandel/front.svg",
  47552. extra: 1946/1775,
  47553. bottom: 26/1972
  47554. }
  47555. },
  47556. back: {
  47557. height: math.unit(7 + 4/12, "feet"),
  47558. weight: math.unit(252, "lb"),
  47559. name: "Back",
  47560. image: {
  47561. source: "./media/characters/bandel/back.svg",
  47562. extra: 1940/1770,
  47563. bottom: 25/1965
  47564. }
  47565. },
  47566. maw: {
  47567. height: math.unit(2.15, "feet"),
  47568. name: "Maw",
  47569. image: {
  47570. source: "./media/characters/bandel/maw.svg"
  47571. }
  47572. },
  47573. stomach: {
  47574. height: math.unit(1.95, "feet"),
  47575. name: "Stomach",
  47576. image: {
  47577. source: "./media/characters/bandel/stomach.svg"
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Normal",
  47584. height: math.unit(7 + 4/12, "feet"),
  47585. default: true
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47591. {
  47592. front: {
  47593. height: math.unit(10 + 5/12, "feet"),
  47594. weight: math.unit(773.5, "kg"),
  47595. name: "Front",
  47596. image: {
  47597. source: "./media/characters/zed/front.svg",
  47598. extra: 987/941,
  47599. bottom: 52/1039
  47600. }
  47601. },
  47602. },
  47603. [
  47604. {
  47605. name: "Short",
  47606. height: math.unit(5 + 4/12, "feet")
  47607. },
  47608. {
  47609. name: "Average",
  47610. height: math.unit(10 + 5/12, "feet"),
  47611. default: true
  47612. },
  47613. {
  47614. name: "Mini-Macro",
  47615. height: math.unit(24 + 9/12, "feet")
  47616. },
  47617. {
  47618. name: "Macro",
  47619. height: math.unit(249, "feet")
  47620. },
  47621. {
  47622. name: "Mega-Macro",
  47623. height: math.unit(12490, "feet")
  47624. },
  47625. {
  47626. name: "Giga-Macro",
  47627. height: math.unit(24.9, "miles")
  47628. },
  47629. {
  47630. name: "Tera-Macro",
  47631. height: math.unit(24900, "miles")
  47632. },
  47633. {
  47634. name: "Cosmic Scale",
  47635. height: math.unit(38.9, "lightyears")
  47636. },
  47637. {
  47638. name: "Universal Scale",
  47639. height: math.unit(138e12, "lightyears")
  47640. },
  47641. ]
  47642. ))
  47643. characterMakers.push(() => makeCharacter(
  47644. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47645. {
  47646. front: {
  47647. height: math.unit(1561, "inches"),
  47648. name: "Front",
  47649. image: {
  47650. source: "./media/characters/ivan/front.svg",
  47651. extra: 1126/1071,
  47652. bottom: 26/1152
  47653. }
  47654. },
  47655. back: {
  47656. height: math.unit(1561, "inches"),
  47657. name: "Back",
  47658. image: {
  47659. source: "./media/characters/ivan/back.svg",
  47660. extra: 1134/1079,
  47661. bottom: 30/1164
  47662. }
  47663. },
  47664. },
  47665. [
  47666. {
  47667. name: "Normal",
  47668. height: math.unit(1561, "inches"),
  47669. default: true
  47670. },
  47671. ]
  47672. ))
  47673. characterMakers.push(() => makeCharacter(
  47674. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47675. {
  47676. front: {
  47677. height: math.unit(5 + 7/12, "feet"),
  47678. weight: math.unit(150, "lb"),
  47679. name: "Front",
  47680. image: {
  47681. source: "./media/characters/robin-arctic-hare/front.svg",
  47682. extra: 1148/974,
  47683. bottom: 20/1168
  47684. }
  47685. },
  47686. },
  47687. [
  47688. {
  47689. name: "Normal",
  47690. height: math.unit(5 + 7/12, "feet"),
  47691. default: true
  47692. },
  47693. ]
  47694. ))
  47695. characterMakers.push(() => makeCharacter(
  47696. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47697. {
  47698. side: {
  47699. height: math.unit(5, "feet"),
  47700. name: "Side",
  47701. image: {
  47702. source: "./media/characters/birch/side.svg",
  47703. extra: 985/796,
  47704. bottom: 111/1096
  47705. }
  47706. },
  47707. },
  47708. [
  47709. {
  47710. name: "Normal",
  47711. height: math.unit(5, "feet"),
  47712. default: true
  47713. },
  47714. ]
  47715. ))
  47716. characterMakers.push(() => makeCharacter(
  47717. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47718. {
  47719. front: {
  47720. height: math.unit(4, "feet"),
  47721. name: "Front",
  47722. image: {
  47723. source: "./media/characters/rasp/front.svg",
  47724. extra: 561/478,
  47725. bottom: 74/635
  47726. }
  47727. },
  47728. },
  47729. [
  47730. {
  47731. name: "Normal",
  47732. height: math.unit(4, "feet"),
  47733. default: true
  47734. },
  47735. ]
  47736. ))
  47737. characterMakers.push(() => makeCharacter(
  47738. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47739. {
  47740. front: {
  47741. height: math.unit(4 + 6/12, "feet"),
  47742. name: "Front",
  47743. image: {
  47744. source: "./media/characters/agatha/front.svg",
  47745. extra: 947/933,
  47746. bottom: 42/989
  47747. }
  47748. },
  47749. back: {
  47750. height: math.unit(4 + 6/12, "feet"),
  47751. name: "Back",
  47752. image: {
  47753. source: "./media/characters/agatha/back.svg",
  47754. extra: 935/922,
  47755. bottom: 48/983
  47756. }
  47757. },
  47758. },
  47759. [
  47760. {
  47761. name: "Normal",
  47762. height: math.unit(4 + 6 /12, "feet"),
  47763. default: true
  47764. },
  47765. {
  47766. name: "Max Size",
  47767. height: math.unit(500, "feet")
  47768. },
  47769. ]
  47770. ))
  47771. characterMakers.push(() => makeCharacter(
  47772. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47773. {
  47774. side: {
  47775. height: math.unit(30, "feet"),
  47776. name: "Side",
  47777. image: {
  47778. source: "./media/characters/roggy/side.svg",
  47779. extra: 909/643,
  47780. bottom: 63/972
  47781. }
  47782. },
  47783. lounging: {
  47784. height: math.unit(20, "feet"),
  47785. name: "Lounging",
  47786. image: {
  47787. source: "./media/characters/roggy/lounging.svg",
  47788. extra: 643/479,
  47789. bottom: 145/788
  47790. }
  47791. },
  47792. handpaw: {
  47793. height: math.unit(13.1, "feet"),
  47794. name: "Handpaw",
  47795. image: {
  47796. source: "./media/characters/roggy/handpaw.svg"
  47797. }
  47798. },
  47799. footpaw: {
  47800. height: math.unit(15.8, "feet"),
  47801. name: "Footpaw",
  47802. image: {
  47803. source: "./media/characters/roggy/footpaw.svg"
  47804. }
  47805. },
  47806. },
  47807. [
  47808. {
  47809. name: "Menacing",
  47810. height: math.unit(30, "feet"),
  47811. default: true
  47812. },
  47813. ]
  47814. ))
  47815. characterMakers.push(() => makeCharacter(
  47816. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47817. {
  47818. front: {
  47819. height: math.unit(5 + 7/12, "feet"),
  47820. weight: math.unit(135, "lb"),
  47821. name: "Front",
  47822. image: {
  47823. source: "./media/characters/naomi/front.svg",
  47824. extra: 1209/1154,
  47825. bottom: 129/1338
  47826. }
  47827. },
  47828. back: {
  47829. height: math.unit(5 + 7/12, "feet"),
  47830. weight: math.unit(135, "lb"),
  47831. name: "Back",
  47832. image: {
  47833. source: "./media/characters/naomi/back.svg",
  47834. extra: 1252/1190,
  47835. bottom: 23/1275
  47836. }
  47837. },
  47838. },
  47839. [
  47840. {
  47841. name: "Normal",
  47842. height: math.unit(5 + 7 /12, "feet"),
  47843. default: true
  47844. },
  47845. ]
  47846. ))
  47847. characterMakers.push(() => makeCharacter(
  47848. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47849. {
  47850. side: {
  47851. height: math.unit(35, "meters"),
  47852. name: "Side",
  47853. image: {
  47854. source: "./media/characters/kimpi/side.svg",
  47855. extra: 419/382,
  47856. bottom: 63/482
  47857. }
  47858. },
  47859. hand: {
  47860. height: math.unit(8.96, "meters"),
  47861. name: "Hand",
  47862. image: {
  47863. source: "./media/characters/kimpi/hand.svg"
  47864. }
  47865. },
  47866. },
  47867. [
  47868. {
  47869. name: "Normal",
  47870. height: math.unit(35, "meters"),
  47871. default: true
  47872. },
  47873. ]
  47874. ))
  47875. characterMakers.push(() => makeCharacter(
  47876. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47877. {
  47878. front: {
  47879. height: math.unit(4 + 4/12, "feet"),
  47880. name: "Front",
  47881. image: {
  47882. source: "./media/characters/pepper-purrloin/front.svg",
  47883. extra: 1141/1024,
  47884. bottom: 21/1162
  47885. }
  47886. },
  47887. },
  47888. [
  47889. {
  47890. name: "Normal",
  47891. height: math.unit(4 + 4/12, "feet"),
  47892. default: true
  47893. },
  47894. ]
  47895. ))
  47896. characterMakers.push(() => makeCharacter(
  47897. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47898. {
  47899. front: {
  47900. height: math.unit(6 + 2/12, "feet"),
  47901. name: "Front",
  47902. image: {
  47903. source: "./media/characters/raphael/front.svg",
  47904. extra: 1101/962,
  47905. bottom: 59/1160
  47906. }
  47907. },
  47908. },
  47909. [
  47910. {
  47911. name: "Normal",
  47912. height: math.unit(6 + 2/12, "feet"),
  47913. default: true
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47919. {
  47920. front: {
  47921. height: math.unit(6, "feet"),
  47922. weight: math.unit(150, "lb"),
  47923. name: "Front",
  47924. image: {
  47925. source: "./media/characters/victor-williams/front.svg",
  47926. extra: 1894/1825,
  47927. bottom: 67/1961
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Normal",
  47934. height: math.unit(6, "feet"),
  47935. default: true
  47936. },
  47937. ]
  47938. ))
  47939. characterMakers.push(() => makeCharacter(
  47940. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47941. {
  47942. front: {
  47943. height: math.unit(5 + 8/12, "feet"),
  47944. weight: math.unit(150, "lb"),
  47945. name: "Front",
  47946. image: {
  47947. source: "./media/characters/rachel/front.svg",
  47948. extra: 1902/1787,
  47949. bottom: 46/1948
  47950. }
  47951. },
  47952. },
  47953. [
  47954. {
  47955. name: "Base Height",
  47956. height: math.unit(5 + 8/12, "feet"),
  47957. default: true
  47958. },
  47959. {
  47960. name: "Macro",
  47961. height: math.unit(200, "feet")
  47962. },
  47963. {
  47964. name: "Mega Macro",
  47965. height: math.unit(1, "mile")
  47966. },
  47967. {
  47968. name: "Giga Macro",
  47969. height: math.unit(1500, "miles")
  47970. },
  47971. {
  47972. name: "Tera Macro",
  47973. height: math.unit(8000, "miles")
  47974. },
  47975. {
  47976. name: "Tera Macro+",
  47977. height: math.unit(2e5, "miles")
  47978. },
  47979. ]
  47980. ))
  47981. characterMakers.push(() => makeCharacter(
  47982. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47983. {
  47984. front: {
  47985. height: math.unit(6.5, "feet"),
  47986. name: "Front",
  47987. image: {
  47988. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47989. extra: 860/819,
  47990. bottom: 307/1167
  47991. }
  47992. },
  47993. back: {
  47994. height: math.unit(6.5, "feet"),
  47995. name: "Back",
  47996. image: {
  47997. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47998. extra: 880/837,
  47999. bottom: 395/1275
  48000. }
  48001. },
  48002. sleeping: {
  48003. height: math.unit(2.79, "feet"),
  48004. name: "Sleeping",
  48005. image: {
  48006. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48007. extra: 465/383,
  48008. bottom: 263/728
  48009. }
  48010. },
  48011. maw: {
  48012. height: math.unit(2.52, "feet"),
  48013. name: "Maw",
  48014. image: {
  48015. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48016. }
  48017. },
  48018. },
  48019. [
  48020. {
  48021. name: "Normal",
  48022. height: math.unit(6.5, "feet"),
  48023. default: true
  48024. },
  48025. ]
  48026. ))
  48027. characterMakers.push(() => makeCharacter(
  48028. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48029. {
  48030. front: {
  48031. height: math.unit(5, "feet"),
  48032. name: "Front",
  48033. image: {
  48034. source: "./media/characters/nova-nerium/front.svg",
  48035. extra: 1548/1392,
  48036. bottom: 374/1922
  48037. }
  48038. },
  48039. back: {
  48040. height: math.unit(5, "feet"),
  48041. name: "Back",
  48042. image: {
  48043. source: "./media/characters/nova-nerium/back.svg",
  48044. extra: 1658/1468,
  48045. bottom: 257/1915
  48046. }
  48047. },
  48048. },
  48049. [
  48050. {
  48051. name: "Normal",
  48052. height: math.unit(5, "feet"),
  48053. default: true
  48054. },
  48055. ]
  48056. ))
  48057. characterMakers.push(() => makeCharacter(
  48058. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48059. {
  48060. front: {
  48061. height: math.unit(5 + 4/12, "feet"),
  48062. name: "Front",
  48063. image: {
  48064. source: "./media/characters/ashe-pyriph/front.svg",
  48065. extra: 1935/1747,
  48066. bottom: 60/1995
  48067. }
  48068. },
  48069. },
  48070. [
  48071. {
  48072. name: "Normal",
  48073. height: math.unit(5 + 4/12, "feet"),
  48074. default: true
  48075. },
  48076. ]
  48077. ))
  48078. characterMakers.push(() => makeCharacter(
  48079. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48080. {
  48081. front: {
  48082. height: math.unit(8.7, "feet"),
  48083. name: "Front",
  48084. image: {
  48085. source: "./media/characters/flicker-wisp/front.svg",
  48086. extra: 1835/1613,
  48087. bottom: 449/2284
  48088. }
  48089. },
  48090. side: {
  48091. height: math.unit(8.7, "feet"),
  48092. name: "Side",
  48093. image: {
  48094. source: "./media/characters/flicker-wisp/side.svg",
  48095. extra: 1841/1642,
  48096. bottom: 336/2177
  48097. },
  48098. default: true
  48099. },
  48100. maw: {
  48101. height: math.unit(3.35, "feet"),
  48102. name: "Maw",
  48103. image: {
  48104. source: "./media/characters/flicker-wisp/maw.svg",
  48105. extra: 2338/1506,
  48106. bottom: 0/2338
  48107. }
  48108. },
  48109. ovipositor: {
  48110. height: math.unit(4.95, "feet"),
  48111. name: "Ovipositor",
  48112. image: {
  48113. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48114. }
  48115. },
  48116. egg: {
  48117. height: math.unit(0.385, "feet"),
  48118. weight: math.unit(2, "lb"),
  48119. name: "Egg",
  48120. image: {
  48121. source: "./media/characters/flicker-wisp/egg.svg"
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(8.7, "feet"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48135. {
  48136. side: {
  48137. height: math.unit(11, "feet"),
  48138. name: "Side",
  48139. image: {
  48140. source: "./media/characters/faefnul/side.svg",
  48141. extra: 1100/1007,
  48142. bottom: 0/1100
  48143. }
  48144. },
  48145. },
  48146. [
  48147. {
  48148. name: "Normal",
  48149. height: math.unit(11, "feet"),
  48150. default: true
  48151. },
  48152. ]
  48153. ))
  48154. characterMakers.push(() => makeCharacter(
  48155. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48156. {
  48157. front: {
  48158. height: math.unit(6 + 2/12, "feet"),
  48159. name: "Front",
  48160. image: {
  48161. source: "./media/characters/shady/front.svg",
  48162. extra: 502/461,
  48163. bottom: 9/511
  48164. }
  48165. },
  48166. kneeling: {
  48167. height: math.unit(4.6, "feet"),
  48168. name: "Kneeling",
  48169. image: {
  48170. source: "./media/characters/shady/kneeling.svg",
  48171. extra: 1328/1219,
  48172. bottom: 117/1445
  48173. }
  48174. },
  48175. maw: {
  48176. height: math.unit(2, "feet"),
  48177. name: "Maw",
  48178. image: {
  48179. source: "./media/characters/shady/maw.svg"
  48180. }
  48181. },
  48182. },
  48183. [
  48184. {
  48185. name: "Nano",
  48186. height: math.unit(1, "mm")
  48187. },
  48188. {
  48189. name: "Micro",
  48190. height: math.unit(12, "mm")
  48191. },
  48192. {
  48193. name: "Tiny",
  48194. height: math.unit(3, "inches")
  48195. },
  48196. {
  48197. name: "Normal",
  48198. height: math.unit(6 + 2/12, "feet"),
  48199. default: true
  48200. },
  48201. {
  48202. name: "Big",
  48203. height: math.unit(15, "feet")
  48204. },
  48205. {
  48206. name: "Macro",
  48207. height: math.unit(150, "feet")
  48208. },
  48209. {
  48210. name: "Titanic",
  48211. height: math.unit(500, "feet")
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48217. {
  48218. front: {
  48219. height: math.unit(12, "feet"),
  48220. name: "Front",
  48221. image: {
  48222. source: "./media/characters/fenrir/front.svg",
  48223. extra: 968/875,
  48224. bottom: 22/990
  48225. }
  48226. },
  48227. },
  48228. [
  48229. {
  48230. name: "Big",
  48231. height: math.unit(12, "feet"),
  48232. default: true
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48238. {
  48239. front: {
  48240. height: math.unit(5 + 4/12, "feet"),
  48241. name: "Front",
  48242. image: {
  48243. source: "./media/characters/makar/front.svg",
  48244. extra: 1181/1112,
  48245. bottom: 78/1259
  48246. }
  48247. },
  48248. },
  48249. [
  48250. {
  48251. name: "Normal",
  48252. height: math.unit(5 + 4/12, "feet"),
  48253. default: true
  48254. },
  48255. ]
  48256. ))
  48257. characterMakers.push(() => makeCharacter(
  48258. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48259. {
  48260. front: {
  48261. height: math.unit(5 + 7/12, "feet"),
  48262. name: "Front",
  48263. image: {
  48264. source: "./media/characters/callow/front.svg",
  48265. extra: 1482/1304,
  48266. bottom: 23/1505
  48267. }
  48268. },
  48269. back: {
  48270. height: math.unit(5 + 7/12, "feet"),
  48271. name: "Back",
  48272. image: {
  48273. source: "./media/characters/callow/back.svg",
  48274. extra: 1484/1296,
  48275. bottom: 25/1509
  48276. }
  48277. },
  48278. },
  48279. [
  48280. {
  48281. name: "Micro",
  48282. height: math.unit(3, "inches"),
  48283. default: true
  48284. },
  48285. {
  48286. name: "Normal",
  48287. height: math.unit(5 + 7/12, "feet")
  48288. },
  48289. ]
  48290. ))
  48291. characterMakers.push(() => makeCharacter(
  48292. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48293. {
  48294. front: {
  48295. height: math.unit(6 + 2/12, "feet"),
  48296. name: "Front",
  48297. image: {
  48298. source: "./media/characters/natel/front.svg",
  48299. extra: 1833/1692,
  48300. bottom: 166/1999
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(6 + 2/12, "feet"),
  48308. default: true
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48314. {
  48315. front: {
  48316. height: math.unit(1.75, "meters"),
  48317. name: "Front",
  48318. image: {
  48319. source: "./media/characters/misu/front.svg",
  48320. extra: 1690/1558,
  48321. bottom: 234/1924
  48322. }
  48323. },
  48324. back: {
  48325. height: math.unit(1.75, "meters"),
  48326. name: "Back",
  48327. image: {
  48328. source: "./media/characters/misu/back.svg",
  48329. extra: 1762/1618,
  48330. bottom: 146/1908
  48331. }
  48332. },
  48333. frontNude: {
  48334. height: math.unit(1.75, "meters"),
  48335. name: "Front (Nude)",
  48336. image: {
  48337. source: "./media/characters/misu/front-nude.svg",
  48338. extra: 1690/1558,
  48339. bottom: 234/1924
  48340. }
  48341. },
  48342. backNude: {
  48343. height: math.unit(1.75, "meters"),
  48344. name: "Back (Nude)",
  48345. image: {
  48346. source: "./media/characters/misu/back-nude.svg",
  48347. extra: 1762/1618,
  48348. bottom: 146/1908
  48349. }
  48350. },
  48351. frontErect: {
  48352. height: math.unit(1.75, "meters"),
  48353. name: "Front (Erect)",
  48354. image: {
  48355. source: "./media/characters/misu/front-erect.svg",
  48356. extra: 1690/1558,
  48357. bottom: 234/1924
  48358. }
  48359. },
  48360. maw: {
  48361. height: math.unit(0.47, "meters"),
  48362. name: "Maw",
  48363. image: {
  48364. source: "./media/characters/misu/maw.svg"
  48365. }
  48366. },
  48367. head: {
  48368. height: math.unit(0.35, "meters"),
  48369. name: "Head",
  48370. image: {
  48371. source: "./media/characters/misu/head.svg"
  48372. }
  48373. },
  48374. rear: {
  48375. height: math.unit(0.47, "meters"),
  48376. name: "Rear",
  48377. image: {
  48378. source: "./media/characters/misu/rear.svg"
  48379. }
  48380. },
  48381. },
  48382. [
  48383. {
  48384. name: "Normal",
  48385. height: math.unit(1.75, "meters")
  48386. },
  48387. {
  48388. name: "Not good for the people",
  48389. height: math.unit(42, "meters")
  48390. },
  48391. {
  48392. name: "Not good for the neighborhood",
  48393. height: math.unit(135, "meters")
  48394. },
  48395. {
  48396. name: "Bit bigger problem",
  48397. height: math.unit(380, "meters"),
  48398. default: true
  48399. },
  48400. {
  48401. name: "Not good for the city",
  48402. height: math.unit(1.5, "km")
  48403. },
  48404. {
  48405. name: "Not good for the county",
  48406. height: math.unit(5.5, "km")
  48407. },
  48408. {
  48409. name: "Not good for the state",
  48410. height: math.unit(25, "km")
  48411. },
  48412. {
  48413. name: "Not good for the country",
  48414. height: math.unit(125, "km")
  48415. },
  48416. {
  48417. name: "Not good for the continent",
  48418. height: math.unit(2100, "km")
  48419. },
  48420. {
  48421. name: "Not good for the planet",
  48422. height: math.unit(35000, "km")
  48423. },
  48424. {
  48425. name: "Just no",
  48426. height: math.unit(8.5e18, "km")
  48427. },
  48428. ]
  48429. ))
  48430. characterMakers.push(() => makeCharacter(
  48431. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48432. {
  48433. front: {
  48434. height: math.unit(6.5, "feet"),
  48435. name: "Front",
  48436. image: {
  48437. source: "./media/characters/poppy/front.svg",
  48438. extra: 1878/1812,
  48439. bottom: 43/1921
  48440. }
  48441. },
  48442. feet: {
  48443. height: math.unit(1.06, "feet"),
  48444. name: "Feet",
  48445. image: {
  48446. source: "./media/characters/poppy/feet.svg",
  48447. extra: 1083/1083,
  48448. bottom: 87/1170
  48449. }
  48450. },
  48451. },
  48452. [
  48453. {
  48454. name: "Human",
  48455. height: math.unit(6.5, "feet")
  48456. },
  48457. {
  48458. name: "Default",
  48459. height: math.unit(300, "feet"),
  48460. default: true
  48461. },
  48462. {
  48463. name: "Huge",
  48464. height: math.unit(850, "feet")
  48465. },
  48466. {
  48467. name: "Mega",
  48468. height: math.unit(8000, "feet")
  48469. },
  48470. {
  48471. name: "Giga",
  48472. height: math.unit(300, "miles")
  48473. },
  48474. ]
  48475. ))
  48476. characterMakers.push(() => makeCharacter(
  48477. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48478. {
  48479. bipedal: {
  48480. height: math.unit(7, "feet"),
  48481. name: "Bipedal",
  48482. image: {
  48483. source: "./media/characters/zener/bipedal.svg",
  48484. extra: 874/805,
  48485. bottom: 109/983
  48486. }
  48487. },
  48488. quadrupedal: {
  48489. height: math.unit(4.64, "feet"),
  48490. name: "Quadrupedal",
  48491. image: {
  48492. source: "./media/characters/zener/quadrupedal.svg",
  48493. extra: 638/507,
  48494. bottom: 190/828
  48495. }
  48496. },
  48497. cock: {
  48498. height: math.unit(18, "inches"),
  48499. name: "Cock",
  48500. image: {
  48501. source: "./media/characters/zener/cock.svg"
  48502. }
  48503. },
  48504. },
  48505. [
  48506. {
  48507. name: "Normal",
  48508. height: math.unit(7, "feet"),
  48509. default: true
  48510. },
  48511. ]
  48512. ))
  48513. characterMakers.push(() => makeCharacter(
  48514. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48515. {
  48516. nude: {
  48517. height: math.unit(5 + 6/12, "feet"),
  48518. name: "Nude",
  48519. image: {
  48520. source: "./media/characters/charlie-dog/nude.svg",
  48521. extra: 768/734,
  48522. bottom: 26/794
  48523. }
  48524. },
  48525. dressed: {
  48526. height: math.unit(5 + 6/12, "feet"),
  48527. name: "Dressed",
  48528. image: {
  48529. source: "./media/characters/charlie-dog/dressed.svg",
  48530. extra: 768/734,
  48531. bottom: 26/794
  48532. }
  48533. },
  48534. },
  48535. [
  48536. {
  48537. name: "Normal",
  48538. height: math.unit(5 + 6/12, "feet"),
  48539. default: true
  48540. },
  48541. ]
  48542. ))
  48543. characterMakers.push(() => makeCharacter(
  48544. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48545. {
  48546. front: {
  48547. height: math.unit(6 + 4/12, "feet"),
  48548. name: "Front",
  48549. image: {
  48550. source: "./media/characters/ir'istrasz/front.svg",
  48551. extra: 1014/977,
  48552. bottom: 65/1079
  48553. }
  48554. },
  48555. back: {
  48556. height: math.unit(6 + 4/12, "feet"),
  48557. name: "Back",
  48558. image: {
  48559. source: "./media/characters/ir'istrasz/back.svg",
  48560. extra: 1024/992,
  48561. bottom: 34/1058
  48562. }
  48563. },
  48564. },
  48565. [
  48566. {
  48567. name: "Normal",
  48568. height: math.unit(6 + 4/12, "feet"),
  48569. default: true
  48570. },
  48571. ]
  48572. ))
  48573. characterMakers.push(() => makeCharacter(
  48574. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48575. {
  48576. front: {
  48577. height: math.unit(5 + 8/12, "feet"),
  48578. name: "Front",
  48579. image: {
  48580. source: "./media/characters/dee-ditto/front.svg",
  48581. extra: 1874/1785,
  48582. bottom: 68/1942
  48583. }
  48584. },
  48585. back: {
  48586. height: math.unit(5 + 8/12, "feet"),
  48587. name: "Back",
  48588. image: {
  48589. source: "./media/characters/dee-ditto/back.svg",
  48590. extra: 1870/1783,
  48591. bottom: 77/1947
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Normal",
  48598. height: math.unit(5 + 8/12, "feet"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(7 + 6/12, "feet"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/fey/front.svg",
  48611. extra: 995/979,
  48612. bottom: 30/1025
  48613. }
  48614. },
  48615. back: {
  48616. height: math.unit(7 + 6/12, "feet"),
  48617. name: "Back",
  48618. image: {
  48619. source: "./media/characters/fey/back.svg",
  48620. extra: 1079/1008,
  48621. bottom: 5/1084
  48622. }
  48623. },
  48624. dressed: {
  48625. height: math.unit(7 + 6/12, "feet"),
  48626. name: "Dressed",
  48627. image: {
  48628. source: "./media/characters/fey/dressed.svg",
  48629. extra: 995/979,
  48630. bottom: 30/1025
  48631. }
  48632. },
  48633. },
  48634. [
  48635. {
  48636. name: "Normal",
  48637. height: math.unit(7 + 6/12, "feet"),
  48638. default: true
  48639. },
  48640. ]
  48641. ))
  48642. characterMakers.push(() => makeCharacter(
  48643. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48644. {
  48645. standing: {
  48646. height: math.unit(17, "feet"),
  48647. name: "Standing",
  48648. image: {
  48649. source: "./media/characters/aster/standing.svg",
  48650. extra: 1798/1598,
  48651. bottom: 117/1915
  48652. }
  48653. },
  48654. },
  48655. [
  48656. {
  48657. name: "Normal",
  48658. height: math.unit(17, "feet"),
  48659. default: true
  48660. },
  48661. {
  48662. name: "Homewrecker",
  48663. height: math.unit(95, "feet")
  48664. },
  48665. {
  48666. name: "Planet Devourer",
  48667. height: math.unit(1008000, "miles")
  48668. },
  48669. ]
  48670. ))
  48671. characterMakers.push(() => makeCharacter(
  48672. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48673. {
  48674. front: {
  48675. height: math.unit(6 + 5/12, "feet"),
  48676. weight: math.unit(265, "lb"),
  48677. name: "Front",
  48678. image: {
  48679. source: "./media/characters/devon-childs/front.svg",
  48680. extra: 1795/1721,
  48681. bottom: 41/1836
  48682. }
  48683. },
  48684. side: {
  48685. height: math.unit(6 + 5/12, "feet"),
  48686. weight: math.unit(265, "lb"),
  48687. name: "Side",
  48688. image: {
  48689. source: "./media/characters/devon-childs/side.svg",
  48690. extra: 1812/1738,
  48691. bottom: 30/1842
  48692. }
  48693. },
  48694. back: {
  48695. height: math.unit(6 + 5/12, "feet"),
  48696. weight: math.unit(265, "lb"),
  48697. name: "Back",
  48698. image: {
  48699. source: "./media/characters/devon-childs/back.svg",
  48700. extra: 1808/1735,
  48701. bottom: 23/1831
  48702. }
  48703. },
  48704. hand: {
  48705. height: math.unit(1.464, "feet"),
  48706. name: "Hand",
  48707. image: {
  48708. source: "./media/characters/devon-childs/hand.svg"
  48709. }
  48710. },
  48711. foot: {
  48712. height: math.unit(1.6, "feet"),
  48713. name: "Foot",
  48714. image: {
  48715. source: "./media/characters/devon-childs/foot.svg"
  48716. }
  48717. },
  48718. },
  48719. [
  48720. {
  48721. name: "Micro",
  48722. height: math.unit(7, "cm")
  48723. },
  48724. {
  48725. name: "Normal",
  48726. height: math.unit(6 + 5/12, "feet"),
  48727. default: true
  48728. },
  48729. {
  48730. name: "Macro",
  48731. height: math.unit(154, "feet")
  48732. },
  48733. ]
  48734. ))
  48735. characterMakers.push(() => makeCharacter(
  48736. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48737. {
  48738. front: {
  48739. height: math.unit(6, "feet"),
  48740. weight: math.unit(180, "lb"),
  48741. name: "Front",
  48742. image: {
  48743. source: "./media/characters/lydemox-vir/front.svg",
  48744. extra: 1632/1435,
  48745. bottom: 58/1690
  48746. }
  48747. },
  48748. frontSFW: {
  48749. height: math.unit(6, "feet"),
  48750. weight: math.unit(180, "lb"),
  48751. name: "Front (SFW)",
  48752. image: {
  48753. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48754. extra: 1632/1435,
  48755. bottom: 58/1690
  48756. }
  48757. },
  48758. back: {
  48759. height: math.unit(6, "feet"),
  48760. weight: math.unit(180, "lb"),
  48761. name: "Back",
  48762. image: {
  48763. source: "./media/characters/lydemox-vir/back.svg",
  48764. extra: 1593/1408,
  48765. bottom: 31/1624
  48766. }
  48767. },
  48768. paw: {
  48769. height: math.unit(1.85, "feet"),
  48770. name: "Paw",
  48771. image: {
  48772. source: "./media/characters/lydemox-vir/paw.svg"
  48773. }
  48774. },
  48775. dick: {
  48776. height: math.unit(1.8, "feet"),
  48777. name: "Dick",
  48778. image: {
  48779. source: "./media/characters/lydemox-vir/dick.svg"
  48780. }
  48781. },
  48782. },
  48783. [
  48784. {
  48785. name: "Macro",
  48786. height: math.unit(100, "feet"),
  48787. default: true
  48788. },
  48789. {
  48790. name: "Teramacro",
  48791. height: math.unit(1, "earth")
  48792. },
  48793. {
  48794. name: "Planetary",
  48795. height: math.unit(20, "earths")
  48796. },
  48797. ]
  48798. ))
  48799. characterMakers.push(() => makeCharacter(
  48800. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48801. {
  48802. front: {
  48803. height: math.unit(15 + 8/12, "feet"),
  48804. weight: math.unit(1237, "kg"),
  48805. name: "Front",
  48806. image: {
  48807. source: "./media/characters/mia/front.svg",
  48808. extra: 1573/1446,
  48809. bottom: 58/1631
  48810. }
  48811. },
  48812. },
  48813. [
  48814. {
  48815. name: "Small",
  48816. height: math.unit(9 + 5/12, "feet")
  48817. },
  48818. {
  48819. name: "Normal",
  48820. height: math.unit(15 + 8/12, "feet"),
  48821. default: true
  48822. },
  48823. ]
  48824. ))
  48825. characterMakers.push(() => makeCharacter(
  48826. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48827. {
  48828. front: {
  48829. height: math.unit(10 + 6/12, "feet"),
  48830. weight: math.unit(1.3, "tons"),
  48831. name: "Front",
  48832. image: {
  48833. source: "./media/characters/mr-graves/front.svg",
  48834. extra: 1779/1695,
  48835. bottom: 198/1977
  48836. }
  48837. },
  48838. },
  48839. [
  48840. {
  48841. name: "Normal",
  48842. height: math.unit(10 + 6 /12, "feet"),
  48843. default: true
  48844. },
  48845. ]
  48846. ))
  48847. characterMakers.push(() => makeCharacter(
  48848. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48849. {
  48850. dressedFront: {
  48851. height: math.unit(5 + 8/12, "feet"),
  48852. weight: math.unit(125, "lb"),
  48853. name: "Dressed (Front)",
  48854. image: {
  48855. source: "./media/characters/jess/dressed-front.svg",
  48856. extra: 1176/1152,
  48857. bottom: 42/1218
  48858. }
  48859. },
  48860. dressedSide: {
  48861. height: math.unit(5 + 8/12, "feet"),
  48862. weight: math.unit(125, "lb"),
  48863. name: "Dressed (Side)",
  48864. image: {
  48865. source: "./media/characters/jess/dressed-side.svg",
  48866. extra: 1204/1190,
  48867. bottom: 6/1210
  48868. }
  48869. },
  48870. nudeFront: {
  48871. height: math.unit(5 + 8/12, "feet"),
  48872. weight: math.unit(125, "lb"),
  48873. name: "Nude (Front)",
  48874. image: {
  48875. source: "./media/characters/jess/nude-front.svg",
  48876. extra: 1176/1152,
  48877. bottom: 42/1218
  48878. }
  48879. },
  48880. nudeSide: {
  48881. height: math.unit(5 + 8/12, "feet"),
  48882. weight: math.unit(125, "lb"),
  48883. name: "Nude (Side)",
  48884. image: {
  48885. source: "./media/characters/jess/nude-side.svg",
  48886. extra: 1204/1190,
  48887. bottom: 6/1210
  48888. }
  48889. },
  48890. organsFront: {
  48891. height: math.unit(2.83799342105, "feet"),
  48892. name: "Organs (Front)",
  48893. image: {
  48894. source: "./media/characters/jess/organs-front.svg"
  48895. }
  48896. },
  48897. organsSide: {
  48898. height: math.unit(2.64225290474, "feet"),
  48899. name: "Organs (Side)",
  48900. image: {
  48901. source: "./media/characters/jess/organs-side.svg"
  48902. }
  48903. },
  48904. digestiveTractFront: {
  48905. height: math.unit(2.8106580871, "feet"),
  48906. name: "Digestive Tract (Front)",
  48907. image: {
  48908. source: "./media/characters/jess/digestive-tract-front.svg"
  48909. }
  48910. },
  48911. digestiveTractSide: {
  48912. height: math.unit(2.54365045014, "feet"),
  48913. name: "Digestive Tract (Side)",
  48914. image: {
  48915. source: "./media/characters/jess/digestive-tract-side.svg"
  48916. }
  48917. },
  48918. respiratorySystemFront: {
  48919. height: math.unit(1.11196233456, "feet"),
  48920. name: "Respiratory System (Front)",
  48921. image: {
  48922. source: "./media/characters/jess/respiratory-system-front.svg"
  48923. }
  48924. },
  48925. respiratorySystemSide: {
  48926. height: math.unit(0.89327966297, "feet"),
  48927. name: "Respiratory System (Side)",
  48928. image: {
  48929. source: "./media/characters/jess/respiratory-system-side.svg"
  48930. }
  48931. },
  48932. urinaryTractFront: {
  48933. height: math.unit(1.16126356186, "feet"),
  48934. name: "Urinary Tract (Front)",
  48935. image: {
  48936. source: "./media/characters/jess/urinary-tract-front.svg"
  48937. }
  48938. },
  48939. urinaryTractSide: {
  48940. height: math.unit(1.20910039627, "feet"),
  48941. name: "Urinary Tract (Side)",
  48942. image: {
  48943. source: "./media/characters/jess/urinary-tract-side.svg"
  48944. }
  48945. },
  48946. reproductiveOrgansFront: {
  48947. height: math.unit(0.48422591566, "feet"),
  48948. name: "Reproductive Organs (Front)",
  48949. image: {
  48950. source: "./media/characters/jess/reproductive-organs-front.svg"
  48951. }
  48952. },
  48953. reproductiveOrgansSide: {
  48954. height: math.unit(0.61553314481, "feet"),
  48955. name: "Reproductive Organs (Side)",
  48956. image: {
  48957. source: "./media/characters/jess/reproductive-organs-side.svg"
  48958. }
  48959. },
  48960. breastsFront: {
  48961. height: math.unit(0.47690395121, "feet"),
  48962. name: "Breasts (Front)",
  48963. image: {
  48964. source: "./media/characters/jess/breasts-front.svg"
  48965. }
  48966. },
  48967. breastsSide: {
  48968. height: math.unit(0.30556998307, "feet"),
  48969. name: "Breasts (Side)",
  48970. image: {
  48971. source: "./media/characters/jess/breasts-side.svg"
  48972. }
  48973. },
  48974. heartFront: {
  48975. height: math.unit(0.53011022622, "feet"),
  48976. name: "Heart (Front)",
  48977. image: {
  48978. source: "./media/characters/jess/heart-front.svg"
  48979. }
  48980. },
  48981. heartSide: {
  48982. height: math.unit(0.51790695213, "feet"),
  48983. name: "Heart (Side)",
  48984. image: {
  48985. source: "./media/characters/jess/heart-side.svg"
  48986. }
  48987. },
  48988. earsAndNoseFront: {
  48989. height: math.unit(0.29385483995, "feet"),
  48990. name: "Ears and Nose (Front)",
  48991. image: {
  48992. source: "./media/characters/jess/ears-and-nose-front.svg"
  48993. }
  48994. },
  48995. earsAndNoseSide: {
  48996. height: math.unit(0.18109658741, "feet"),
  48997. name: "Ears and Nose (Side)",
  48998. image: {
  48999. source: "./media/characters/jess/ears-and-nose-side.svg"
  49000. }
  49001. },
  49002. },
  49003. [
  49004. {
  49005. name: "Normal",
  49006. height: math.unit(5 + 8/12, "feet"),
  49007. default: true
  49008. },
  49009. ]
  49010. ))
  49011. characterMakers.push(() => makeCharacter(
  49012. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49013. {
  49014. front: {
  49015. height: math.unit(6, "feet"),
  49016. weight: math.unit(6.64467e-7, "grams"),
  49017. name: "Front",
  49018. image: {
  49019. source: "./media/characters/wimpering/front.svg",
  49020. extra: 597/587,
  49021. bottom: 34/631
  49022. }
  49023. },
  49024. },
  49025. [
  49026. {
  49027. name: "Micro",
  49028. height: math.unit(0.4, "mm"),
  49029. default: true
  49030. },
  49031. ]
  49032. ))
  49033. characterMakers.push(() => makeCharacter(
  49034. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49035. {
  49036. front: {
  49037. height: math.unit(5 + 2/12, "feet"),
  49038. weight: math.unit(110, "lb"),
  49039. name: "Front",
  49040. image: {
  49041. source: "./media/characters/keltre/front.svg",
  49042. extra: 1099/1057,
  49043. bottom: 22/1121
  49044. }
  49045. },
  49046. back: {
  49047. height: math.unit(5 + 2/12, "feet"),
  49048. weight: math.unit(110, "lb"),
  49049. name: "Back",
  49050. image: {
  49051. source: "./media/characters/keltre/back.svg",
  49052. extra: 1095/1053,
  49053. bottom: 17/1112
  49054. }
  49055. },
  49056. dressed: {
  49057. height: math.unit(5 + 2/12, "feet"),
  49058. weight: math.unit(110, "lb"),
  49059. name: "Dressed",
  49060. image: {
  49061. source: "./media/characters/keltre/dressed.svg",
  49062. extra: 1099/1057,
  49063. bottom: 22/1121
  49064. }
  49065. },
  49066. winter: {
  49067. height: math.unit(5 + 2/12, "feet"),
  49068. weight: math.unit(110, "lb"),
  49069. name: "Winter",
  49070. image: {
  49071. source: "./media/characters/keltre/winter.svg",
  49072. extra: 1099/1057,
  49073. bottom: 22/1121
  49074. }
  49075. },
  49076. head: {
  49077. height: math.unit(1.61 * 0.86, "feet"),
  49078. name: "Head",
  49079. image: {
  49080. source: "./media/characters/keltre/head.svg",
  49081. extra: 534/421,
  49082. bottom: 0/534
  49083. }
  49084. },
  49085. hand: {
  49086. height: math.unit(1.3 * 0.86, "feet"),
  49087. name: "Hand",
  49088. image: {
  49089. source: "./media/characters/keltre/hand.svg"
  49090. }
  49091. },
  49092. foot: {
  49093. height: math.unit(1.8 * 0.86, "feet"),
  49094. name: "Foot",
  49095. image: {
  49096. source: "./media/characters/keltre/foot.svg"
  49097. }
  49098. },
  49099. },
  49100. [
  49101. {
  49102. name: "Fine",
  49103. height: math.unit(1, "inch")
  49104. },
  49105. {
  49106. name: "Dimnutive",
  49107. height: math.unit(4, "inches")
  49108. },
  49109. {
  49110. name: "Tiny",
  49111. height: math.unit(1, "foot")
  49112. },
  49113. {
  49114. name: "Small",
  49115. height: math.unit(3, "feet")
  49116. },
  49117. {
  49118. name: "Normal",
  49119. height: math.unit(5 + 2/12, "feet"),
  49120. default: true
  49121. },
  49122. ]
  49123. ))
  49124. characterMakers.push(() => makeCharacter(
  49125. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49126. {
  49127. front: {
  49128. height: math.unit(6 + 2/12, "feet"),
  49129. name: "Front",
  49130. image: {
  49131. source: "./media/characters/nox/front.svg",
  49132. extra: 1917/1830,
  49133. bottom: 74/1991
  49134. }
  49135. },
  49136. back: {
  49137. height: math.unit(6 + 2/12, "feet"),
  49138. name: "Back",
  49139. image: {
  49140. source: "./media/characters/nox/back.svg",
  49141. extra: 1896/1815,
  49142. bottom: 21/1917
  49143. }
  49144. },
  49145. head: {
  49146. height: math.unit(1.1, "feet"),
  49147. name: "Head",
  49148. image: {
  49149. source: "./media/characters/nox/head.svg",
  49150. extra: 874/704,
  49151. bottom: 0/874
  49152. }
  49153. },
  49154. tattoo: {
  49155. height: math.unit(0.729, "feet"),
  49156. name: "Tattoo",
  49157. image: {
  49158. source: "./media/characters/nox/tattoo.svg"
  49159. }
  49160. },
  49161. },
  49162. [
  49163. {
  49164. name: "Normal",
  49165. height: math.unit(6 + 2/12, "feet")
  49166. },
  49167. {
  49168. name: "Gigamacro",
  49169. height: math.unit(2, "earths"),
  49170. default: true
  49171. },
  49172. {
  49173. name: "Cosmic",
  49174. height: math.unit(867, "yottameters")
  49175. },
  49176. ]
  49177. ))
  49178. characterMakers.push(() => makeCharacter(
  49179. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49180. {
  49181. front: {
  49182. height: math.unit(6, "feet"),
  49183. weight: math.unit(150, "lb"),
  49184. name: "Front",
  49185. image: {
  49186. source: "./media/characters/caspian/front.svg",
  49187. extra: 1443/1359,
  49188. bottom: 0/1443
  49189. }
  49190. },
  49191. back: {
  49192. height: math.unit(6, "feet"),
  49193. weight: math.unit(150, "lb"),
  49194. name: "Back",
  49195. image: {
  49196. source: "./media/characters/caspian/back.svg",
  49197. extra: 1379/1309,
  49198. bottom: 0/1379
  49199. }
  49200. },
  49201. head: {
  49202. height: math.unit(0.9, "feet"),
  49203. name: "Head",
  49204. image: {
  49205. source: "./media/characters/caspian/head.svg",
  49206. extra: 692/492,
  49207. bottom: 0/692
  49208. }
  49209. },
  49210. headAlt: {
  49211. height: math.unit(0.95, "feet"),
  49212. name: "Head (Alt)",
  49213. image: {
  49214. source: "./media/characters/caspian/head-alt.svg",
  49215. extra: 668/508,
  49216. bottom: 0/668
  49217. }
  49218. },
  49219. hand: {
  49220. height: math.unit(0.8, "feet"),
  49221. name: "Hand",
  49222. image: {
  49223. source: "./media/characters/caspian/hand.svg"
  49224. }
  49225. },
  49226. paw: {
  49227. height: math.unit(0.95, "feet"),
  49228. name: "Paw",
  49229. image: {
  49230. source: "./media/characters/caspian/paw.svg"
  49231. }
  49232. },
  49233. },
  49234. [
  49235. {
  49236. name: "Normal",
  49237. height: math.unit(162, "feet"),
  49238. default: true
  49239. },
  49240. ]
  49241. ))
  49242. characterMakers.push(() => makeCharacter(
  49243. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49244. {
  49245. front: {
  49246. height: math.unit(6, "feet"),
  49247. name: "Front",
  49248. image: {
  49249. source: "./media/characters/myra-aisling/front.svg",
  49250. extra: 1268/1166,
  49251. bottom: 73/1341
  49252. }
  49253. },
  49254. back: {
  49255. height: math.unit(6, "feet"),
  49256. name: "Back",
  49257. image: {
  49258. source: "./media/characters/myra-aisling/back.svg",
  49259. extra: 1249/1149,
  49260. bottom: 79/1328
  49261. }
  49262. },
  49263. dressed: {
  49264. height: math.unit(6, "feet"),
  49265. name: "Dressed",
  49266. image: {
  49267. source: "./media/characters/myra-aisling/dressed.svg",
  49268. extra: 1290/1189,
  49269. bottom: 47/1337
  49270. }
  49271. },
  49272. hand: {
  49273. height: math.unit(1.1, "feet"),
  49274. name: "Hand",
  49275. image: {
  49276. source: "./media/characters/myra-aisling/hand.svg"
  49277. }
  49278. },
  49279. paw: {
  49280. height: math.unit(1.23, "feet"),
  49281. name: "Paw",
  49282. image: {
  49283. source: "./media/characters/myra-aisling/paw.svg"
  49284. }
  49285. },
  49286. },
  49287. [
  49288. {
  49289. name: "Normal",
  49290. height: math.unit(160, "feet"),
  49291. default: true
  49292. },
  49293. ]
  49294. ))
  49295. characterMakers.push(() => makeCharacter(
  49296. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49297. {
  49298. front: {
  49299. height: math.unit(6, "feet"),
  49300. name: "Front",
  49301. image: {
  49302. source: "./media/characters/tenley-sidero/front.svg",
  49303. extra: 1365/1276,
  49304. bottom: 47/1412
  49305. }
  49306. },
  49307. back: {
  49308. height: math.unit(6, "feet"),
  49309. name: "Back",
  49310. image: {
  49311. source: "./media/characters/tenley-sidero/back.svg",
  49312. extra: 1383/1283,
  49313. bottom: 35/1418
  49314. }
  49315. },
  49316. dressed: {
  49317. height: math.unit(6, "feet"),
  49318. name: "Dressed",
  49319. image: {
  49320. source: "./media/characters/tenley-sidero/dressed.svg",
  49321. extra: 1364/1275,
  49322. bottom: 42/1406
  49323. }
  49324. },
  49325. head: {
  49326. height: math.unit(1.47, "feet"),
  49327. name: "Head",
  49328. image: {
  49329. source: "./media/characters/tenley-sidero/head.svg",
  49330. extra: 610/490,
  49331. bottom: 0/610
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Normal",
  49338. height: math.unit(154, "feet"),
  49339. default: true
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(5, "inches"),
  49348. name: "Front",
  49349. image: {
  49350. source: "./media/characters/mallory/front.svg",
  49351. extra: 1919/1678,
  49352. bottom: 29/1948
  49353. }
  49354. },
  49355. hand: {
  49356. height: math.unit(0.73, "inches"),
  49357. name: "Hand",
  49358. image: {
  49359. source: "./media/characters/mallory/hand.svg"
  49360. }
  49361. },
  49362. paw: {
  49363. height: math.unit(0.68, "inches"),
  49364. name: "Paw",
  49365. image: {
  49366. source: "./media/characters/mallory/paw.svg"
  49367. }
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Small",
  49373. height: math.unit(5, "inches"),
  49374. default: true
  49375. },
  49376. ]
  49377. ))
  49378. characterMakers.push(() => makeCharacter(
  49379. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49380. {
  49381. naked: {
  49382. height: math.unit(6, "feet"),
  49383. name: "Naked",
  49384. image: {
  49385. source: "./media/characters/mab/naked.svg",
  49386. extra: 1855/1757,
  49387. bottom: 208/2063
  49388. }
  49389. },
  49390. outside: {
  49391. height: math.unit(6, "feet"),
  49392. name: "Outside",
  49393. image: {
  49394. source: "./media/characters/mab/outside.svg",
  49395. extra: 1855/1757,
  49396. bottom: 208/2063
  49397. }
  49398. },
  49399. party: {
  49400. height: math.unit(6, "feet"),
  49401. name: "Party",
  49402. image: {
  49403. source: "./media/characters/mab/party.svg",
  49404. extra: 1855/1757,
  49405. bottom: 208/2063
  49406. }
  49407. },
  49408. },
  49409. [
  49410. {
  49411. name: "Normal",
  49412. height: math.unit(165, "feet"),
  49413. default: true
  49414. },
  49415. ]
  49416. ))
  49417. characterMakers.push(() => makeCharacter(
  49418. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49419. {
  49420. front: {
  49421. height: math.unit(12, "feet"),
  49422. weight: math.unit(4000, "lb"),
  49423. name: "Front",
  49424. image: {
  49425. source: "./media/characters/winter/front.svg",
  49426. extra: 1286/943,
  49427. bottom: 112/1398
  49428. }
  49429. },
  49430. frontNsfw: {
  49431. height: math.unit(12, "feet"),
  49432. weight: math.unit(4000, "lb"),
  49433. name: "Front (NSFW)",
  49434. image: {
  49435. source: "./media/characters/winter/front-nsfw.svg",
  49436. extra: 1286/943,
  49437. bottom: 112/1398
  49438. }
  49439. },
  49440. dick: {
  49441. height: math.unit(3.79, "feet"),
  49442. name: "Dick",
  49443. image: {
  49444. source: "./media/characters/winter/dick.svg"
  49445. }
  49446. },
  49447. },
  49448. [
  49449. {
  49450. name: "Big",
  49451. height: math.unit(12, "feet"),
  49452. default: true
  49453. },
  49454. ]
  49455. ))
  49456. characterMakers.push(() => makeCharacter(
  49457. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49458. {
  49459. front: {
  49460. height: math.unit(4.1, "inches"),
  49461. name: "Front",
  49462. image: {
  49463. source: "./media/characters/alto/front.svg",
  49464. extra: 736/627,
  49465. bottom: 90/826
  49466. }
  49467. },
  49468. },
  49469. [
  49470. {
  49471. name: "Normal",
  49472. height: math.unit(4.1, "inches"),
  49473. default: true
  49474. },
  49475. ]
  49476. ))
  49477. characterMakers.push(() => makeCharacter(
  49478. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49479. {
  49480. sitting: {
  49481. height: math.unit(3, "feet"),
  49482. name: "Sitting",
  49483. image: {
  49484. source: "./media/characters/ratstrid-v/sitting.svg",
  49485. extra: 355/310,
  49486. bottom: 136/491
  49487. }
  49488. },
  49489. },
  49490. [
  49491. {
  49492. name: "Normal",
  49493. height: math.unit(3, "feet"),
  49494. default: true
  49495. },
  49496. ]
  49497. ))
  49498. characterMakers.push(() => makeCharacter(
  49499. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49500. {
  49501. back: {
  49502. height: math.unit(6, "feet"),
  49503. weight: math.unit(350, "lb"),
  49504. name: "Back",
  49505. image: {
  49506. source: "./media/characters/siz/back.svg",
  49507. extra: 1449/1274,
  49508. bottom: 13/1462
  49509. }
  49510. },
  49511. },
  49512. [
  49513. {
  49514. name: "Over-Overcompressed",
  49515. height: math.unit(8, "feet")
  49516. },
  49517. {
  49518. name: "Overcompressed",
  49519. height: math.unit(32, "feet")
  49520. },
  49521. {
  49522. name: "Compressed",
  49523. height: math.unit(128, "feet"),
  49524. default: true
  49525. },
  49526. {
  49527. name: "Half-Compressed",
  49528. height: math.unit(512, "feet")
  49529. },
  49530. {
  49531. name: "Quarter-Compressed",
  49532. height: math.unit(2048, "feet")
  49533. },
  49534. {
  49535. name: "Uncompressed?",
  49536. height: math.unit(8192, "feet")
  49537. },
  49538. ]
  49539. ))
  49540. characterMakers.push(() => makeCharacter(
  49541. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49542. {
  49543. front: {
  49544. height: math.unit(5 + 9/12, "feet"),
  49545. weight: math.unit(150, "lb"),
  49546. name: "Front",
  49547. image: {
  49548. source: "./media/characters/ven/front.svg",
  49549. extra: 1372/1320,
  49550. bottom: 73/1445
  49551. }
  49552. },
  49553. side: {
  49554. height: math.unit(5 + 9/12, "feet"),
  49555. weight: math.unit(1150, "lb"),
  49556. name: "Side",
  49557. image: {
  49558. source: "./media/characters/ven/side.svg",
  49559. extra: 1119/1070,
  49560. bottom: 42/1161
  49561. },
  49562. default: true
  49563. },
  49564. },
  49565. [
  49566. {
  49567. name: "Normal",
  49568. height: math.unit(5 + 9/12, "feet"),
  49569. default: true
  49570. },
  49571. ]
  49572. ))
  49573. characterMakers.push(() => makeCharacter(
  49574. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49575. {
  49576. front: {
  49577. height: math.unit(12, "feet"),
  49578. weight: math.unit(1000, "kg"),
  49579. name: "Front",
  49580. image: {
  49581. source: "./media/characters/maple/front.svg",
  49582. extra: 1193/1081,
  49583. bottom: 22/1215
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Compressed",
  49590. height: math.unit(7, "feet")
  49591. },
  49592. {
  49593. name: "Normal",
  49594. height: math.unit(12, "feet"),
  49595. default: true
  49596. },
  49597. ]
  49598. ))
  49599. characterMakers.push(() => makeCharacter(
  49600. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49601. {
  49602. front: {
  49603. height: math.unit(9, "feet"),
  49604. weight: math.unit(1500, "lb"),
  49605. name: "Front",
  49606. image: {
  49607. source: "./media/characters/nora/front.svg",
  49608. extra: 1348/1286,
  49609. bottom: 218/1566
  49610. }
  49611. },
  49612. erect: {
  49613. height: math.unit(9, "feet"),
  49614. weight: math.unit(11500, "lb"),
  49615. name: "Erect",
  49616. image: {
  49617. source: "./media/characters/nora/erect.svg",
  49618. extra: 1488/1433,
  49619. bottom: 133/1621
  49620. }
  49621. },
  49622. },
  49623. [
  49624. {
  49625. name: "Normal",
  49626. height: math.unit(9, "feet"),
  49627. default: true
  49628. },
  49629. ]
  49630. ))
  49631. characterMakers.push(() => makeCharacter(
  49632. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49633. {
  49634. front: {
  49635. height: math.unit(25, "feet"),
  49636. weight: math.unit(27500, "lb"),
  49637. name: "Front",
  49638. image: {
  49639. source: "./media/characters/north-caudin/front.svg",
  49640. extra: 1184/1082,
  49641. bottom: 23/1207
  49642. }
  49643. },
  49644. },
  49645. [
  49646. {
  49647. name: "Compressed",
  49648. height: math.unit(10, "feet")
  49649. },
  49650. {
  49651. name: "Normal",
  49652. height: math.unit(25, "feet"),
  49653. default: true
  49654. },
  49655. ]
  49656. ))
  49657. characterMakers.push(() => makeCharacter(
  49658. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49659. {
  49660. front: {
  49661. height: math.unit(9, "feet"),
  49662. weight: math.unit(1250, "lb"),
  49663. name: "Front",
  49664. image: {
  49665. source: "./media/characters/merrian/front.svg",
  49666. extra: 2393/2304,
  49667. bottom: 40/2433
  49668. }
  49669. },
  49670. },
  49671. [
  49672. {
  49673. name: "Normal",
  49674. height: math.unit(9, "feet"),
  49675. default: true
  49676. },
  49677. ]
  49678. ))
  49679. characterMakers.push(() => makeCharacter(
  49680. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49681. {
  49682. front: {
  49683. height: math.unit(9, "feet"),
  49684. weight: math.unit(1000, "lb"),
  49685. name: "Front",
  49686. image: {
  49687. source: "./media/characters/hazel/front.svg",
  49688. extra: 2351/2298,
  49689. bottom: 38/2389
  49690. }
  49691. },
  49692. },
  49693. [
  49694. {
  49695. name: "Normal",
  49696. height: math.unit(9, "feet"),
  49697. default: true
  49698. },
  49699. ]
  49700. ))
  49701. characterMakers.push(() => makeCharacter(
  49702. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49703. {
  49704. front: {
  49705. height: math.unit(13, "feet"),
  49706. weight: math.unit(3200, "lb"),
  49707. name: "Front",
  49708. image: {
  49709. source: "./media/characters/emma/front.svg",
  49710. extra: 2263/2029,
  49711. bottom: 68/2331
  49712. }
  49713. },
  49714. },
  49715. [
  49716. {
  49717. name: "Normal",
  49718. height: math.unit(13, "feet"),
  49719. default: true
  49720. },
  49721. ]
  49722. ))
  49723. characterMakers.push(() => makeCharacter(
  49724. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49725. {
  49726. front: {
  49727. height: math.unit(11 + 9/12, "feet"),
  49728. weight: math.unit(2500, "lb"),
  49729. name: "Front",
  49730. image: {
  49731. source: "./media/characters/ilumina/front.svg",
  49732. extra: 2248/2209,
  49733. bottom: 164/2412
  49734. }
  49735. },
  49736. },
  49737. [
  49738. {
  49739. name: "Normal",
  49740. height: math.unit(11 + 9/12, "feet"),
  49741. default: true
  49742. },
  49743. ]
  49744. ))
  49745. characterMakers.push(() => makeCharacter(
  49746. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49747. {
  49748. front: {
  49749. height: math.unit(8 + 10/12, "feet"),
  49750. weight: math.unit(1350, "lb"),
  49751. name: "Front",
  49752. image: {
  49753. source: "./media/characters/moonshine/front.svg",
  49754. extra: 2395/2288,
  49755. bottom: 40/2435
  49756. }
  49757. },
  49758. },
  49759. [
  49760. {
  49761. name: "Normal",
  49762. height: math.unit(8 + 10/12, "feet"),
  49763. default: true
  49764. },
  49765. ]
  49766. ))
  49767. characterMakers.push(() => makeCharacter(
  49768. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49769. {
  49770. front: {
  49771. height: math.unit(14, "feet"),
  49772. weight: math.unit(3400, "lb"),
  49773. name: "Front",
  49774. image: {
  49775. source: "./media/characters/aletia/front.svg",
  49776. extra: 1185/1052,
  49777. bottom: 21/1206
  49778. }
  49779. },
  49780. },
  49781. [
  49782. {
  49783. name: "Compressed",
  49784. height: math.unit(8, "feet")
  49785. },
  49786. {
  49787. name: "Normal",
  49788. height: math.unit(14, "feet"),
  49789. default: true
  49790. },
  49791. ]
  49792. ))
  49793. characterMakers.push(() => makeCharacter(
  49794. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49795. {
  49796. front: {
  49797. height: math.unit(17, "feet"),
  49798. weight: math.unit(6500, "lb"),
  49799. name: "Front",
  49800. image: {
  49801. source: "./media/characters/deidra/front.svg",
  49802. extra: 1201/1081,
  49803. bottom: 16/1217
  49804. }
  49805. },
  49806. },
  49807. [
  49808. {
  49809. name: "Compressed",
  49810. height: math.unit(9 + 6/12, "feet")
  49811. },
  49812. {
  49813. name: "Normal",
  49814. height: math.unit(17, "feet"),
  49815. default: true
  49816. },
  49817. ]
  49818. ))
  49819. characterMakers.push(() => makeCharacter(
  49820. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49821. {
  49822. front: {
  49823. height: math.unit(7 + 4/12, "feet"),
  49824. weight: math.unit(280, "lb"),
  49825. name: "Front",
  49826. image: {
  49827. source: "./media/characters/freki-yrmori/front.svg",
  49828. extra: 1286/1182,
  49829. bottom: 29/1315
  49830. }
  49831. },
  49832. maw: {
  49833. height: math.unit(0.9, "feet"),
  49834. name: "Maw",
  49835. image: {
  49836. source: "./media/characters/freki-yrmori/maw.svg"
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Normal",
  49843. height: math.unit(7 + 4/12, "feet"),
  49844. default: true
  49845. },
  49846. {
  49847. name: "Macro",
  49848. height: math.unit(38.5, "meters")
  49849. },
  49850. ]
  49851. ))
  49852. characterMakers.push(() => makeCharacter(
  49853. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49854. {
  49855. side: {
  49856. height: math.unit(47.2, "meters"),
  49857. weight: math.unit(10000, "tons"),
  49858. name: "Side",
  49859. image: {
  49860. source: "./media/characters/aetherios/side.svg",
  49861. extra: 2363/642,
  49862. bottom: 221/2584
  49863. }
  49864. },
  49865. top: {
  49866. height: math.unit(240, "meters"),
  49867. weight: math.unit(10000, "tons"),
  49868. name: "Top",
  49869. image: {
  49870. source: "./media/characters/aetherios/top.svg"
  49871. }
  49872. },
  49873. bottom: {
  49874. height: math.unit(240, "meters"),
  49875. weight: math.unit(10000, "tons"),
  49876. name: "Bottom",
  49877. image: {
  49878. source: "./media/characters/aetherios/bottom.svg"
  49879. }
  49880. },
  49881. head: {
  49882. height: math.unit(38.6, "meters"),
  49883. name: "Head",
  49884. image: {
  49885. source: "./media/characters/aetherios/head.svg",
  49886. extra: 1335/1112,
  49887. bottom: 0/1335
  49888. }
  49889. },
  49890. front: {
  49891. height: math.unit(29, "meters"),
  49892. name: "Front",
  49893. image: {
  49894. source: "./media/characters/aetherios/front.svg",
  49895. extra: 1266/953,
  49896. bottom: 158/1424
  49897. }
  49898. },
  49899. maw: {
  49900. height: math.unit(16.37, "meters"),
  49901. name: "Maw",
  49902. image: {
  49903. source: "./media/characters/aetherios/maw.svg",
  49904. extra: 748/637,
  49905. bottom: 0/748
  49906. },
  49907. extraAttributes: {
  49908. preyCapacity: {
  49909. name: "Capacity",
  49910. power: 3,
  49911. type: "volume",
  49912. base: math.unit(1000, "people")
  49913. },
  49914. tongueSize: {
  49915. name: "Tongue Size",
  49916. power: 2,
  49917. type: "area",
  49918. base: math.unit(21, "m^2")
  49919. }
  49920. }
  49921. },
  49922. forepaw: {
  49923. height: math.unit(18, "meters"),
  49924. name: "Forepaw",
  49925. image: {
  49926. source: "./media/characters/aetherios/forepaw.svg"
  49927. }
  49928. },
  49929. hindpaw: {
  49930. height: math.unit(23, "meters"),
  49931. name: "Hindpaw",
  49932. image: {
  49933. source: "./media/characters/aetherios/hindpaw.svg"
  49934. }
  49935. },
  49936. genitals: {
  49937. height: math.unit(42, "meters"),
  49938. name: "Genitals",
  49939. image: {
  49940. source: "./media/characters/aetherios/genitals.svg"
  49941. }
  49942. },
  49943. },
  49944. [
  49945. {
  49946. name: "Normal",
  49947. height: math.unit(47.2, "meters"),
  49948. default: true
  49949. },
  49950. {
  49951. name: "Macro",
  49952. height: math.unit(160, "meters")
  49953. },
  49954. {
  49955. name: "Mega",
  49956. height: math.unit(1.87, "km")
  49957. },
  49958. {
  49959. name: "Giga",
  49960. height: math.unit(40000, "km")
  49961. },
  49962. {
  49963. name: "Stellar",
  49964. height: math.unit(158000000, "km")
  49965. },
  49966. {
  49967. name: "Cosmic",
  49968. height: math.unit(9.46e12, "km")
  49969. },
  49970. ]
  49971. ))
  49972. characterMakers.push(() => makeCharacter(
  49973. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49974. {
  49975. front: {
  49976. height: math.unit(5 + 4/12, "feet"),
  49977. weight: math.unit(80, "lb"),
  49978. name: "Front",
  49979. image: {
  49980. source: "./media/characters/mizu-gieeg/front.svg",
  49981. extra: 850/709,
  49982. bottom: 52/902
  49983. }
  49984. },
  49985. back: {
  49986. height: math.unit(5 + 4/12, "feet"),
  49987. weight: math.unit(80, "lb"),
  49988. name: "Back",
  49989. image: {
  49990. source: "./media/characters/mizu-gieeg/back.svg",
  49991. extra: 882/745,
  49992. bottom: 25/907
  49993. }
  49994. },
  49995. },
  49996. [
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(5 + 4/12, "feet"),
  50000. default: true
  50001. },
  50002. ]
  50003. ))
  50004. characterMakers.push(() => makeCharacter(
  50005. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50006. {
  50007. front: {
  50008. height: math.unit(6, "feet"),
  50009. name: "Front",
  50010. image: {
  50011. source: "./media/characters/roselle-st-papier/front.svg",
  50012. extra: 1430/1280,
  50013. bottom: 37/1467
  50014. }
  50015. },
  50016. back: {
  50017. height: math.unit(6, "feet"),
  50018. name: "Back",
  50019. image: {
  50020. source: "./media/characters/roselle-st-papier/back.svg",
  50021. extra: 1491/1296,
  50022. bottom: 23/1514
  50023. }
  50024. },
  50025. ear: {
  50026. height: math.unit(1.26, "feet"),
  50027. name: "Ear",
  50028. image: {
  50029. source: "./media/characters/roselle-st-papier/ear.svg"
  50030. }
  50031. },
  50032. },
  50033. [
  50034. {
  50035. name: "Normal",
  50036. height: math.unit(150, "feet"),
  50037. default: true
  50038. },
  50039. ]
  50040. ))
  50041. characterMakers.push(() => makeCharacter(
  50042. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50043. {
  50044. front: {
  50045. height: math.unit(1, "inches"),
  50046. name: "Front",
  50047. image: {
  50048. source: "./media/characters/valargent/front.svg",
  50049. extra: 1825/1694,
  50050. bottom: 62/1887
  50051. }
  50052. },
  50053. back: {
  50054. height: math.unit(1, "inches"),
  50055. name: "Back",
  50056. image: {
  50057. source: "./media/characters/valargent/back.svg",
  50058. extra: 1775/1682,
  50059. bottom: 88/1863
  50060. }
  50061. },
  50062. },
  50063. [
  50064. {
  50065. name: "Micro",
  50066. height: math.unit(1, "inch"),
  50067. default: true
  50068. },
  50069. ]
  50070. ))
  50071. characterMakers.push(() => makeCharacter(
  50072. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50073. {
  50074. front: {
  50075. height: math.unit(3.4, "meters"),
  50076. name: "Front",
  50077. image: {
  50078. source: "./media/characters/zarina/front.svg",
  50079. extra: 1733/1425,
  50080. bottom: 93/1826
  50081. }
  50082. },
  50083. squatting: {
  50084. height: math.unit(2.14, "meters"),
  50085. name: "Squatting",
  50086. image: {
  50087. source: "./media/characters/zarina/squatting.svg",
  50088. extra: 1073/788,
  50089. bottom: 63/1136
  50090. }
  50091. },
  50092. back: {
  50093. height: math.unit(2.14, "meters"),
  50094. name: "Back",
  50095. image: {
  50096. source: "./media/characters/zarina/back.svg",
  50097. extra: 1128/885,
  50098. bottom: 0/1128
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Normal",
  50105. height: math.unit(3.4, "meters"),
  50106. default: true
  50107. },
  50108. {
  50109. name: "Big",
  50110. height: math.unit(5, "meters")
  50111. },
  50112. {
  50113. name: "Macro",
  50114. height: math.unit(110, "meters")
  50115. },
  50116. ]
  50117. ))
  50118. characterMakers.push(() => makeCharacter(
  50119. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50120. {
  50121. front: {
  50122. height: math.unit(7, "feet"),
  50123. name: "Front",
  50124. image: {
  50125. source: "./media/characters/ventus-astro-fox/front.svg",
  50126. extra: 1792/1623,
  50127. bottom: 28/1820
  50128. }
  50129. },
  50130. back: {
  50131. height: math.unit(7, "feet"),
  50132. name: "Back",
  50133. image: {
  50134. source: "./media/characters/ventus-astro-fox/back.svg",
  50135. extra: 1789/1620,
  50136. bottom: 31/1820
  50137. }
  50138. },
  50139. outfit: {
  50140. height: math.unit(7, "feet"),
  50141. name: "Outfit",
  50142. image: {
  50143. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50144. extra: 1054/925,
  50145. bottom: 15/1069
  50146. }
  50147. },
  50148. head: {
  50149. height: math.unit(1.12, "feet"),
  50150. name: "Head",
  50151. image: {
  50152. source: "./media/characters/ventus-astro-fox/head.svg",
  50153. extra: 866/504,
  50154. bottom: 0/866
  50155. }
  50156. },
  50157. hand: {
  50158. height: math.unit(1, "feet"),
  50159. name: "Hand",
  50160. image: {
  50161. source: "./media/characters/ventus-astro-fox/hand.svg"
  50162. }
  50163. },
  50164. paw: {
  50165. height: math.unit(1.5, "feet"),
  50166. name: "Paw",
  50167. image: {
  50168. source: "./media/characters/ventus-astro-fox/paw.svg"
  50169. }
  50170. },
  50171. },
  50172. [
  50173. {
  50174. name: "Normal",
  50175. height: math.unit(7, "feet"),
  50176. default: true
  50177. },
  50178. {
  50179. name: "Macro",
  50180. height: math.unit(200, "feet")
  50181. },
  50182. {
  50183. name: "Cosmic",
  50184. height: math.unit(3, "universes")
  50185. },
  50186. ]
  50187. ))
  50188. characterMakers.push(() => makeCharacter(
  50189. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50190. {
  50191. front: {
  50192. height: math.unit(3, "meters"),
  50193. weight: math.unit(7000, "lb"),
  50194. name: "Front",
  50195. image: {
  50196. source: "./media/characters/core-t/front.svg",
  50197. extra: 5729/4941,
  50198. bottom: 1129/6858
  50199. }
  50200. },
  50201. },
  50202. [
  50203. {
  50204. name: "Big",
  50205. height: math.unit(3, "meters"),
  50206. default: true
  50207. },
  50208. ]
  50209. ))
  50210. characterMakers.push(() => makeCharacter(
  50211. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50212. {
  50213. normal: {
  50214. height: math.unit(6 + 6/12, "feet"),
  50215. weight: math.unit(275, "lb"),
  50216. name: "Front",
  50217. image: {
  50218. source: "./media/characters/cadbunny/normal.svg",
  50219. extra: 1129/947,
  50220. bottom: 93/1222
  50221. },
  50222. default: true,
  50223. form: "normal"
  50224. },
  50225. gigantamax: {
  50226. height: math.unit(26, "feet"),
  50227. weight: math.unit(16000, "lb"),
  50228. name: "Front",
  50229. image: {
  50230. source: "./media/characters/cadbunny/gigantamax.svg",
  50231. extra: 1133/944,
  50232. bottom: 90/1223
  50233. },
  50234. default: true,
  50235. form: "gigantamax"
  50236. },
  50237. },
  50238. [
  50239. {
  50240. name: "Normal",
  50241. height: math.unit(6 + 6/12, "feet"),
  50242. default: true,
  50243. form: "normal"
  50244. },
  50245. {
  50246. name: "Small",
  50247. height: math.unit(26, "feet"),
  50248. default: true,
  50249. form: "gigantamax"
  50250. },
  50251. {
  50252. name: "Large",
  50253. height: math.unit(78, "feet"),
  50254. form: "gigantamax"
  50255. },
  50256. ],
  50257. {
  50258. "normal": {
  50259. name: "Normal",
  50260. default: true
  50261. },
  50262. "gigantamax": {
  50263. name: "Gigantamax"
  50264. }
  50265. }
  50266. ))
  50267. characterMakers.push(() => makeCharacter(
  50268. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50269. {
  50270. anthroFront: {
  50271. height: math.unit(8, "feet"),
  50272. weight: math.unit(300, "lb"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50276. extra: 1272/1176,
  50277. bottom: 53/1325
  50278. },
  50279. form: "anthro",
  50280. default: true
  50281. },
  50282. feralSide: {
  50283. height: math.unit(4, "feet"),
  50284. weight: math.unit(250, "lb"),
  50285. name: "Side",
  50286. image: {
  50287. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50288. extra: 731/621,
  50289. bottom: 0/731
  50290. },
  50291. form: "feral",
  50292. default: true
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Regular",
  50298. height: math.unit(8, "feet"),
  50299. form: "anthro"
  50300. },
  50301. {
  50302. name: "Macro",
  50303. height: math.unit(250, "feet"),
  50304. form: "anthro",
  50305. default: true
  50306. },
  50307. {
  50308. name: "Regular",
  50309. height: math.unit(4, "feet"),
  50310. form: "feral"
  50311. },
  50312. {
  50313. name: "Macro",
  50314. height: math.unit(125, "feet"),
  50315. form: "feral",
  50316. default: true
  50317. },
  50318. ],
  50319. {
  50320. "anthro": {
  50321. name: "Anthro",
  50322. default: true
  50323. },
  50324. "feral": {
  50325. name: "Feral",
  50326. },
  50327. }
  50328. ))
  50329. characterMakers.push(() => makeCharacter(
  50330. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50331. {
  50332. front: {
  50333. height: math.unit(11 + 10/12, "feet"),
  50334. weight: math.unit(1587, "kg"),
  50335. name: "Front",
  50336. image: {
  50337. source: "./media/characters/maple-javira-dragon/front.svg",
  50338. extra: 1136/744,
  50339. bottom: 73/1209
  50340. }
  50341. },
  50342. side: {
  50343. height: math.unit(11 + 10/12, "feet"),
  50344. weight: math.unit(1587, "kg"),
  50345. name: "Side",
  50346. image: {
  50347. source: "./media/characters/maple-javira-dragon/side.svg",
  50348. extra: 712/505,
  50349. bottom: 17/729
  50350. }
  50351. },
  50352. head: {
  50353. height: math.unit(8.05, "feet"),
  50354. name: "Head",
  50355. image: {
  50356. source: "./media/characters/maple-javira-dragon/head.svg",
  50357. extra: 1420/1344,
  50358. bottom: 0/1420
  50359. }
  50360. },
  50361. },
  50362. [
  50363. {
  50364. name: "Normal",
  50365. height: math.unit(11 + 10/12, "feet"),
  50366. default: true
  50367. },
  50368. ]
  50369. ))
  50370. characterMakers.push(() => makeCharacter(
  50371. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50372. {
  50373. front: {
  50374. height: math.unit(117, "cm"),
  50375. weight: math.unit(50, "kg"),
  50376. name: "Front",
  50377. image: {
  50378. source: "./media/characters/sonia-wyverntail/front.svg",
  50379. extra: 708/592,
  50380. bottom: 25/733
  50381. }
  50382. },
  50383. },
  50384. [
  50385. {
  50386. name: "Normal",
  50387. height: math.unit(117, "cm"),
  50388. default: true
  50389. },
  50390. ]
  50391. ))
  50392. characterMakers.push(() => makeCharacter(
  50393. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50394. {
  50395. front: {
  50396. height: math.unit(6 + 5/12, "feet"),
  50397. name: "Front",
  50398. image: {
  50399. source: "./media/characters/micah/front.svg",
  50400. extra: 1758/1546,
  50401. bottom: 214/1972
  50402. }
  50403. },
  50404. },
  50405. [
  50406. {
  50407. name: "Normal",
  50408. height: math.unit(6 + 5/12, "feet"),
  50409. default: true
  50410. },
  50411. ]
  50412. ))
  50413. characterMakers.push(() => makeCharacter(
  50414. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50415. {
  50416. front: {
  50417. height: math.unit(5 + 10/12, "feet"),
  50418. weight: math.unit(220, "lb"),
  50419. name: "Front",
  50420. image: {
  50421. source: "./media/characters/zarya/front.svg",
  50422. extra: 593/572,
  50423. bottom: 50/643
  50424. }
  50425. },
  50426. back: {
  50427. height: math.unit(5 + 10/12, "feet"),
  50428. weight: math.unit(220, "lb"),
  50429. name: "Back",
  50430. image: {
  50431. source: "./media/characters/zarya/back.svg",
  50432. extra: 603/582,
  50433. bottom: 38/641
  50434. }
  50435. },
  50436. },
  50437. [
  50438. {
  50439. name: "Normal",
  50440. height: math.unit(5 + 10/12, "feet"),
  50441. default: true
  50442. },
  50443. ]
  50444. ))
  50445. characterMakers.push(() => makeCharacter(
  50446. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50447. {
  50448. front: {
  50449. height: math.unit(7.5, "feet"),
  50450. name: "Front",
  50451. image: {
  50452. source: "./media/characters/sven-hatisson/front.svg",
  50453. extra: 917/857,
  50454. bottom: 42/959
  50455. }
  50456. },
  50457. back: {
  50458. height: math.unit(7.5, "feet"),
  50459. name: "Back",
  50460. image: {
  50461. source: "./media/characters/sven-hatisson/back.svg",
  50462. extra: 903/856,
  50463. bottom: 15/918
  50464. }
  50465. },
  50466. },
  50467. [
  50468. {
  50469. name: "Base Height",
  50470. height: math.unit(7.5, "feet")
  50471. },
  50472. {
  50473. name: "Usual Height",
  50474. height: math.unit(13.5, "feet"),
  50475. default: true
  50476. },
  50477. {
  50478. name: "Smaller Macro",
  50479. height: math.unit(85, "feet")
  50480. },
  50481. {
  50482. name: "Moderate Macro",
  50483. height: math.unit(320, "feet")
  50484. },
  50485. {
  50486. name: "Large Macro",
  50487. height: math.unit(1000, "feet")
  50488. },
  50489. {
  50490. name: "Largest Size",
  50491. height: math.unit(2, "miles")
  50492. },
  50493. ]
  50494. ))
  50495. characterMakers.push(() => makeCharacter(
  50496. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50497. {
  50498. side: {
  50499. height: math.unit(1.8, "meters"),
  50500. weight: math.unit(275, "kg"),
  50501. name: "Side",
  50502. image: {
  50503. source: "./media/characters/terra/side.svg",
  50504. extra: 1273/1147,
  50505. bottom: 0/1273
  50506. }
  50507. },
  50508. },
  50509. [
  50510. {
  50511. name: "Normal",
  50512. height: math.unit(16.2, "meters"),
  50513. default: true
  50514. },
  50515. ]
  50516. ))
  50517. characterMakers.push(() => makeCharacter(
  50518. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50519. {
  50520. borzoiFront: {
  50521. height: math.unit(6 + 9/12, "feet"),
  50522. name: "Front",
  50523. image: {
  50524. source: "./media/characters/rae/borzoi-front.svg",
  50525. extra: 1161/1098,
  50526. bottom: 31/1192
  50527. },
  50528. form: "borzoi",
  50529. default: true
  50530. },
  50531. werewolfFront: {
  50532. height: math.unit(8 + 7/12, "feet"),
  50533. name: "Front",
  50534. image: {
  50535. source: "./media/characters/rae/werewolf-front.svg",
  50536. extra: 1411/1334,
  50537. bottom: 127/1538
  50538. },
  50539. form: "werewolf",
  50540. default: true
  50541. },
  50542. },
  50543. [
  50544. {
  50545. name: "Normal",
  50546. height: math.unit(6 + 9/12, "feet"),
  50547. default: true,
  50548. form: "borzoi"
  50549. },
  50550. {
  50551. name: "Normal",
  50552. height: math.unit(8 + 7/12, "feet"),
  50553. default: true,
  50554. form: "werewolf"
  50555. },
  50556. ],
  50557. {
  50558. "borzoi": {
  50559. name: "Borzoi",
  50560. default: true
  50561. },
  50562. "werewolf": {
  50563. name: "Werewolf",
  50564. },
  50565. }
  50566. ))
  50567. characterMakers.push(() => makeCharacter(
  50568. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50569. {
  50570. front: {
  50571. height: math.unit(8 + 7/12, "feet"),
  50572. weight: math.unit(482, "lb"),
  50573. name: "Front",
  50574. image: {
  50575. source: "./media/characters/kit/front.svg",
  50576. extra: 1247/1103,
  50577. bottom: 41/1288
  50578. }
  50579. },
  50580. back: {
  50581. height: math.unit(8 + 7/12, "feet"),
  50582. weight: math.unit(482, "lb"),
  50583. name: "Back",
  50584. image: {
  50585. source: "./media/characters/kit/back.svg",
  50586. extra: 1252/1123,
  50587. bottom: 21/1273
  50588. }
  50589. },
  50590. paw: {
  50591. height: math.unit(1.46, "feet"),
  50592. name: "Paw",
  50593. image: {
  50594. source: "./media/characters/kit/paw.svg"
  50595. }
  50596. },
  50597. },
  50598. [
  50599. {
  50600. name: "Normal",
  50601. height: math.unit(2.61, "meters"),
  50602. default: true
  50603. },
  50604. {
  50605. name: "\"Tall\"",
  50606. height: math.unit(8.21, "meters")
  50607. },
  50608. {
  50609. name: "Tall",
  50610. height: math.unit(19.6, "meters")
  50611. },
  50612. {
  50613. name: "Very Tall",
  50614. height: math.unit(57.91, "meters")
  50615. },
  50616. {
  50617. name: "Semi-Macro",
  50618. height: math.unit(138.64, "meters")
  50619. },
  50620. {
  50621. name: "Macro",
  50622. height: math.unit(831.99, "meters")
  50623. },
  50624. {
  50625. name: "EX-Macro",
  50626. height: math.unit(96451121, "meters")
  50627. },
  50628. {
  50629. name: "S1-Omnipotent",
  50630. height: math.unit(4.42074e+9, "meters")
  50631. },
  50632. {
  50633. name: "S2-Omnipotent",
  50634. height: math.unit(9.42074e+17, "meters")
  50635. },
  50636. {
  50637. name: "Omnipotent",
  50638. height: math.unit(4.23112e+24, "meters")
  50639. },
  50640. {
  50641. name: "Hypergod",
  50642. height: math.unit(5.05176e+27, "meters")
  50643. },
  50644. {
  50645. name: "Hypergod-EX",
  50646. height: math.unit(9.45532e+49, "meters")
  50647. },
  50648. {
  50649. name: "Hypergod-SP",
  50650. height: math.unit(9.45532e+195, "meters")
  50651. },
  50652. ]
  50653. ))
  50654. characterMakers.push(() => makeCharacter(
  50655. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50656. {
  50657. side: {
  50658. height: math.unit(0.6, "meters"),
  50659. weight: math.unit(24, "kg"),
  50660. name: "Side",
  50661. image: {
  50662. source: "./media/characters/celeste/side.svg",
  50663. extra: 810/517,
  50664. bottom: 53/863
  50665. }
  50666. },
  50667. },
  50668. [
  50669. {
  50670. name: "Velociraptor",
  50671. height: math.unit(0.6, "meters"),
  50672. default: true
  50673. },
  50674. {
  50675. name: "Utahraptor",
  50676. height: math.unit(1.8, "meters")
  50677. },
  50678. {
  50679. name: "Gallimimus",
  50680. height: math.unit(4.0, "meters")
  50681. },
  50682. {
  50683. name: "Large",
  50684. height: math.unit(20, "meters")
  50685. },
  50686. {
  50687. name: "Planetary",
  50688. height: math.unit(50, "megameters")
  50689. },
  50690. {
  50691. name: "Stellar",
  50692. height: math.unit(1.5, "gigameters")
  50693. },
  50694. {
  50695. name: "Galactic",
  50696. height: math.unit(100, "exameters")
  50697. },
  50698. ]
  50699. ))
  50700. characterMakers.push(() => makeCharacter(
  50701. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50702. {
  50703. front: {
  50704. height: math.unit(6, "feet"),
  50705. weight: math.unit(210, "lb"),
  50706. name: "Front",
  50707. image: {
  50708. source: "./media/characters/glacia/front.svg",
  50709. extra: 958/901,
  50710. bottom: 45/1003
  50711. }
  50712. },
  50713. },
  50714. [
  50715. {
  50716. name: "Macro",
  50717. height: math.unit(1000, "meters"),
  50718. default: true
  50719. },
  50720. ]
  50721. ))
  50722. characterMakers.push(() => makeCharacter(
  50723. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50724. {
  50725. front: {
  50726. height: math.unit(4, "meters"),
  50727. name: "Front",
  50728. image: {
  50729. source: "./media/characters/giri/front.svg",
  50730. extra: 966/894,
  50731. bottom: 21/987
  50732. }
  50733. },
  50734. },
  50735. [
  50736. {
  50737. name: "Normal",
  50738. height: math.unit(4, "meters"),
  50739. default: true
  50740. },
  50741. ]
  50742. ))
  50743. characterMakers.push(() => makeCharacter(
  50744. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50745. {
  50746. back: {
  50747. height: math.unit(4, "feet"),
  50748. weight: math.unit(37, "lb"),
  50749. name: "Back",
  50750. image: {
  50751. source: "./media/characters/tin/back.svg",
  50752. extra: 845/780,
  50753. bottom: 28/873
  50754. }
  50755. },
  50756. },
  50757. [
  50758. {
  50759. name: "Normal",
  50760. height: math.unit(4, "feet"),
  50761. default: true
  50762. },
  50763. ]
  50764. ))
  50765. characterMakers.push(() => makeCharacter(
  50766. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50767. {
  50768. front: {
  50769. height: math.unit(25, "feet"),
  50770. name: "Front",
  50771. image: {
  50772. source: "./media/characters/cadenza-vivace/front.svg",
  50773. extra: 1842/1578,
  50774. bottom: 30/1872
  50775. }
  50776. },
  50777. },
  50778. [
  50779. {
  50780. name: "Macro",
  50781. height: math.unit(25, "feet"),
  50782. default: true
  50783. },
  50784. ]
  50785. ))
  50786. characterMakers.push(() => makeCharacter(
  50787. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50788. {
  50789. front: {
  50790. height: math.unit(10, "feet"),
  50791. weight: math.unit(625, "kg"),
  50792. name: "Front",
  50793. image: {
  50794. source: "./media/characters/zain/front.svg",
  50795. extra: 1682/1498,
  50796. bottom: 223/1905
  50797. }
  50798. },
  50799. back: {
  50800. height: math.unit(10, "feet"),
  50801. weight: math.unit(625, "kg"),
  50802. name: "Back",
  50803. image: {
  50804. source: "./media/characters/zain/back.svg",
  50805. extra: 1814/1657,
  50806. bottom: 152/1966
  50807. }
  50808. },
  50809. head: {
  50810. height: math.unit(10, "feet"),
  50811. weight: math.unit(625, "kg"),
  50812. name: "Head",
  50813. image: {
  50814. source: "./media/characters/zain/head.svg",
  50815. extra: 1059/762,
  50816. bottom: 0/1059
  50817. }
  50818. },
  50819. },
  50820. [
  50821. {
  50822. name: "Normal",
  50823. height: math.unit(10, "feet"),
  50824. default: true
  50825. },
  50826. ]
  50827. ))
  50828. characterMakers.push(() => makeCharacter(
  50829. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50830. {
  50831. front: {
  50832. height: math.unit(6 + 5/12, "feet"),
  50833. weight: math.unit(750, "lb"),
  50834. name: "Front",
  50835. image: {
  50836. source: "./media/characters/ruchex/front.svg",
  50837. extra: 877/820,
  50838. bottom: 17/894
  50839. },
  50840. extraAttributes: {
  50841. "width": {
  50842. name: "Width",
  50843. power: 1,
  50844. type: "length",
  50845. base: math.unit(4.757, "feet")
  50846. },
  50847. }
  50848. },
  50849. },
  50850. [
  50851. {
  50852. name: "Normal",
  50853. height: math.unit(6 + 5/12, "feet"),
  50854. default: true
  50855. },
  50856. ]
  50857. ))
  50858. characterMakers.push(() => makeCharacter(
  50859. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50860. {
  50861. dressedFront: {
  50862. height: math.unit(191, "cm"),
  50863. weight: math.unit(80, "kg"),
  50864. name: "Front",
  50865. image: {
  50866. source: "./media/characters/buster/dressed-front.svg",
  50867. extra: 1022/973,
  50868. bottom: 69/1091
  50869. }
  50870. },
  50871. dressedBack: {
  50872. height: math.unit(191, "cm"),
  50873. weight: math.unit(80, "kg"),
  50874. name: "Back",
  50875. image: {
  50876. source: "./media/characters/buster/dressed-back.svg",
  50877. extra: 1018/970,
  50878. bottom: 55/1073
  50879. }
  50880. },
  50881. nudeFront: {
  50882. height: math.unit(191, "cm"),
  50883. weight: math.unit(80, "kg"),
  50884. name: "Front (Nude)",
  50885. image: {
  50886. source: "./media/characters/buster/nude-front.svg",
  50887. extra: 1022/973,
  50888. bottom: 69/1091
  50889. }
  50890. },
  50891. nudeBack: {
  50892. height: math.unit(191, "cm"),
  50893. weight: math.unit(80, "kg"),
  50894. name: "Back (Nude)",
  50895. image: {
  50896. source: "./media/characters/buster/nude-back.svg",
  50897. extra: 1018/970,
  50898. bottom: 55/1073
  50899. }
  50900. },
  50901. dick: {
  50902. height: math.unit(2.59, "feet"),
  50903. name: "Dick",
  50904. image: {
  50905. source: "./media/characters/buster/dick.svg"
  50906. }
  50907. },
  50908. ass: {
  50909. height: math.unit(1.2, "feet"),
  50910. name: "Ass",
  50911. image: {
  50912. source: "./media/characters/buster/ass.svg"
  50913. }
  50914. },
  50915. },
  50916. [
  50917. {
  50918. name: "Normal",
  50919. height: math.unit(191, "cm"),
  50920. default: true
  50921. },
  50922. ]
  50923. ))
  50924. characterMakers.push(() => makeCharacter(
  50925. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50926. {
  50927. side: {
  50928. height: math.unit(8.1, "feet"),
  50929. weight: math.unit(3500, "lb"),
  50930. name: "Side",
  50931. image: {
  50932. source: "./media/characters/sonya/side.svg",
  50933. extra: 1730/1317,
  50934. bottom: 86/1816
  50935. }
  50936. },
  50937. },
  50938. [
  50939. {
  50940. name: "Normal",
  50941. height: math.unit(8.1, "feet"),
  50942. default: true
  50943. },
  50944. ]
  50945. ))
  50946. characterMakers.push(() => makeCharacter(
  50947. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  50948. {
  50949. front: {
  50950. height: math.unit(6, "feet"),
  50951. weight: math.unit(150, "lb"),
  50952. name: "Front",
  50953. image: {
  50954. source: "./media/characters/cadence-andrysiak/front.svg",
  50955. extra: 1164/1121,
  50956. bottom: 60/1224
  50957. }
  50958. },
  50959. back: {
  50960. height: math.unit(6, "feet"),
  50961. weight: math.unit(150, "lb"),
  50962. name: "Back",
  50963. image: {
  50964. source: "./media/characters/cadence-andrysiak/back.svg",
  50965. extra: 1200/1165,
  50966. bottom: 9/1209
  50967. }
  50968. },
  50969. dressed: {
  50970. height: math.unit(6, "feet"),
  50971. weight: math.unit(150, "lb"),
  50972. name: "Dressed",
  50973. image: {
  50974. source: "./media/characters/cadence-andrysiak/dressed.svg",
  50975. extra: 1164/1121,
  50976. bottom: 60/1224
  50977. }
  50978. },
  50979. },
  50980. [
  50981. {
  50982. name: "Micro",
  50983. height: math.unit(1, "mm")
  50984. },
  50985. {
  50986. name: "Normal",
  50987. height: math.unit(6, "feet"),
  50988. default: true
  50989. },
  50990. ]
  50991. ))
  50992. characterMakers.push(() => makeCharacter(
  50993. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  50994. {
  50995. front: {
  50996. height: math.unit(60, "inches"),
  50997. weight: math.unit(16, "lb"),
  50998. preyCapacity: math.unit(80, "liters"),
  50999. name: "Front",
  51000. image: {
  51001. source: "./media/characters/penny-lynx/front.svg",
  51002. extra: 1959/1769,
  51003. bottom: 49/2008
  51004. }
  51005. },
  51006. },
  51007. [
  51008. {
  51009. name: "Nokia",
  51010. height: math.unit(2, "inches")
  51011. },
  51012. {
  51013. name: "Desktop",
  51014. height: math.unit(24, "inches")
  51015. },
  51016. {
  51017. name: "TV",
  51018. height: math.unit(60, "inches")
  51019. },
  51020. {
  51021. name: "Jumbotron",
  51022. height: math.unit(12, "feet")
  51023. },
  51024. {
  51025. name: "Billboard",
  51026. height: math.unit(48, "feet"),
  51027. default: true
  51028. },
  51029. {
  51030. name: "IMAX",
  51031. height: math.unit(96, "feet")
  51032. },
  51033. {
  51034. name: "SINGULARITY",
  51035. height: math.unit(864938, "miles")
  51036. },
  51037. ]
  51038. ))
  51039. characterMakers.push(() => makeCharacter(
  51040. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51041. {
  51042. front: {
  51043. height: math.unit(5 + 4/12, "feet"),
  51044. weight: math.unit(230, "lb"),
  51045. name: "Front",
  51046. image: {
  51047. source: "./media/characters/sukebe/front.svg",
  51048. extra: 2130/2038,
  51049. bottom: 90/2220
  51050. }
  51051. },
  51052. back: {
  51053. height: math.unit(3.48, "feet"),
  51054. weight: math.unit(230, "lb"),
  51055. name: "Back",
  51056. image: {
  51057. source: "./media/characters/sukebe/back.svg",
  51058. extra: 1670/1604,
  51059. bottom: 0/1670
  51060. }
  51061. },
  51062. },
  51063. [
  51064. {
  51065. name: "Normal",
  51066. height: math.unit(5 + 4/12, "feet"),
  51067. default: true
  51068. },
  51069. ]
  51070. ))
  51071. characterMakers.push(() => makeCharacter(
  51072. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51073. {
  51074. front: {
  51075. height: math.unit(6, "feet"),
  51076. name: "Front",
  51077. image: {
  51078. source: "./media/characters/nylla/front.svg",
  51079. extra: 1868/1699,
  51080. bottom: 97/1965
  51081. }
  51082. },
  51083. back: {
  51084. height: math.unit(6, "feet"),
  51085. name: "Back",
  51086. image: {
  51087. source: "./media/characters/nylla/back.svg",
  51088. extra: 1889/1712,
  51089. bottom: 93/1982
  51090. }
  51091. },
  51092. frontNsfw: {
  51093. height: math.unit(6, "feet"),
  51094. name: "Front (NSFW)",
  51095. image: {
  51096. source: "./media/characters/nylla/front-nsfw.svg",
  51097. extra: 1868/1699,
  51098. bottom: 97/1965
  51099. },
  51100. extraAttributes: {
  51101. "dickLength": {
  51102. name: "Dick Length",
  51103. power: 1,
  51104. type: "length",
  51105. base: math.unit(1.4, "feet")
  51106. },
  51107. "cumVolume": {
  51108. name: "Cum Volume",
  51109. power: 3,
  51110. type: "volume",
  51111. base: math.unit(100, "mL")
  51112. },
  51113. }
  51114. },
  51115. backNsfw: {
  51116. height: math.unit(6, "feet"),
  51117. name: "Back (NSFW)",
  51118. image: {
  51119. source: "./media/characters/nylla/back-nsfw.svg",
  51120. extra: 1889/1712,
  51121. bottom: 93/1982
  51122. }
  51123. },
  51124. maw: {
  51125. height: math.unit(2.10, "feet"),
  51126. name: "Maw",
  51127. image: {
  51128. source: "./media/characters/nylla/maw.svg"
  51129. }
  51130. },
  51131. paws: {
  51132. height: math.unit(2.06, "feet"),
  51133. name: "Paws",
  51134. image: {
  51135. source: "./media/characters/nylla/paws.svg"
  51136. }
  51137. },
  51138. muzzle: {
  51139. height: math.unit(0.61, "feet"),
  51140. name: "Muzzle",
  51141. image: {
  51142. source: "./media/characters/nylla/muzzle.svg"
  51143. }
  51144. },
  51145. sheath: {
  51146. height: math.unit(1.305, "feet"),
  51147. name: "Sheath",
  51148. image: {
  51149. source: "./media/characters/nylla/sheath.svg"
  51150. }
  51151. },
  51152. },
  51153. [
  51154. {
  51155. name: "Micro",
  51156. height: math.unit(7.5, "inches")
  51157. },
  51158. {
  51159. name: "Normal",
  51160. height: math.unit(7, "feet"),
  51161. default: true
  51162. },
  51163. {
  51164. name: "Macro",
  51165. height: math.unit(60, "feet")
  51166. },
  51167. {
  51168. name: "Mega",
  51169. height: math.unit(200, "feet")
  51170. },
  51171. ]
  51172. ))
  51173. characterMakers.push(() => makeCharacter(
  51174. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51175. {
  51176. front: {
  51177. height: math.unit(10, "feet"),
  51178. weight: math.unit(2300, "lb"),
  51179. name: "Front",
  51180. image: {
  51181. source: "./media/characters/hunt3r/front.svg",
  51182. extra: 1909/1742,
  51183. bottom: 46/1955
  51184. }
  51185. },
  51186. },
  51187. [
  51188. {
  51189. name: "Normal",
  51190. height: math.unit(10, "feet"),
  51191. default: true
  51192. },
  51193. ]
  51194. ))
  51195. characterMakers.push(() => makeCharacter(
  51196. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51197. {
  51198. dressed: {
  51199. height: math.unit(11, "feet"),
  51200. weight: math.unit(18500, "lb"),
  51201. preyCapacity: math.unit(9, "people"),
  51202. name: "Dressed",
  51203. image: {
  51204. source: "./media/characters/cylphis/dressed.svg",
  51205. extra: 1028/1003,
  51206. bottom: 75/1103
  51207. },
  51208. },
  51209. undressed: {
  51210. height: math.unit(11, "feet"),
  51211. weight: math.unit(18500, "lb"),
  51212. preyCapacity: math.unit(9, "people"),
  51213. name: "Undressed",
  51214. image: {
  51215. source: "./media/characters/cylphis/undressed.svg",
  51216. extra: 1028/1003,
  51217. bottom: 75/1103
  51218. }
  51219. },
  51220. full: {
  51221. height: math.unit(11, "feet"),
  51222. weight: math.unit(18500 + 150*9, "lb"),
  51223. preyCapacity: math.unit(9, "people"),
  51224. name: "Full",
  51225. image: {
  51226. source: "./media/characters/cylphis/full.svg",
  51227. extra: 1028/1003,
  51228. bottom: 75/1103
  51229. }
  51230. },
  51231. },
  51232. [
  51233. {
  51234. name: "Small",
  51235. height: math.unit(8, "feet")
  51236. },
  51237. {
  51238. name: "Normal",
  51239. height: math.unit(11, "feet"),
  51240. default: true
  51241. },
  51242. ]
  51243. ))
  51244. characterMakers.push(() => makeCharacter(
  51245. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51246. {
  51247. front: {
  51248. height: math.unit(2 + 7/12, "feet"),
  51249. name: "Front",
  51250. image: {
  51251. source: "./media/characters/orishan/front.svg",
  51252. extra: 1058/1023,
  51253. bottom: 23/1081
  51254. }
  51255. },
  51256. back: {
  51257. height: math.unit(2 + 7/12, "feet"),
  51258. name: "Back",
  51259. image: {
  51260. source: "./media/characters/orishan/back.svg",
  51261. extra: 1058/1023,
  51262. bottom: 23/1081
  51263. }
  51264. },
  51265. },
  51266. [
  51267. {
  51268. name: "Micro",
  51269. height: math.unit(2, "cm")
  51270. },
  51271. {
  51272. name: "Normal",
  51273. height: math.unit(2 + 7/12, "feet"),
  51274. default: true
  51275. },
  51276. ]
  51277. ))
  51278. characterMakers.push(() => makeCharacter(
  51279. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51280. {
  51281. front: {
  51282. height: math.unit(3, "meters"),
  51283. weight: math.unit(508, "kg"),
  51284. name: "Front",
  51285. image: {
  51286. source: "./media/characters/seranis/front.svg",
  51287. extra: 1478/1454,
  51288. bottom: 41/1519
  51289. }
  51290. },
  51291. },
  51292. [
  51293. {
  51294. name: "Normal",
  51295. height: math.unit(3, "meters"),
  51296. default: true
  51297. },
  51298. {
  51299. name: "Macro",
  51300. height: math.unit(108, "meters")
  51301. },
  51302. {
  51303. name: "Megamacro",
  51304. height: math.unit(1250, "meters")
  51305. },
  51306. ]
  51307. ))
  51308. //characters
  51309. function makeCharacters() {
  51310. const results = [];
  51311. characterMakers.forEach(character => {
  51312. results.push(character());
  51313. });
  51314. return results;
  51315. }