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.
 
 
 

52547 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. front: {
  29120. height: math.unit(175, "cm"),
  29121. weight: math.unit(60, "kg"),
  29122. name: "Front",
  29123. image: {
  29124. source: "./media/characters/fei/front.svg",
  29125. extra: 1873/1723,
  29126. bottom: 53/1926
  29127. }
  29128. },
  29129. },
  29130. [
  29131. {
  29132. name: "Mortal",
  29133. height: math.unit(175, "cm")
  29134. },
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(3500, "m"),
  29138. default: true
  29139. },
  29140. {
  29141. name: "Stroll",
  29142. height: math.unit(17.5, "km")
  29143. },
  29144. {
  29145. name: "Showoff",
  29146. height: math.unit(175, "km")
  29147. },
  29148. ]
  29149. ))
  29150. characterMakers.push(() => makeCharacter(
  29151. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29152. {
  29153. front: {
  29154. height: math.unit(7, "feet"),
  29155. weight: math.unit(1000, "kg"),
  29156. name: "Front",
  29157. image: {
  29158. source: "./media/characters/edrax/front.svg",
  29159. extra: 2838 / 2550,
  29160. bottom: 130 / 2968
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Small",
  29167. height: math.unit(7, "feet")
  29168. },
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(1500, "meters")
  29172. },
  29173. {
  29174. name: "Mega",
  29175. height: math.unit(12000000, "km"),
  29176. default: true
  29177. },
  29178. {
  29179. name: "Megamacro",
  29180. height: math.unit(10600000, "lightyears")
  29181. },
  29182. {
  29183. name: "Hypermacro",
  29184. height: math.unit(256, "yottameters")
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29190. {
  29191. front: {
  29192. height: math.unit(10, "feet"),
  29193. weight: math.unit(750, "lb"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/clove/front.svg",
  29197. extra: 1918/1751,
  29198. bottom: 52/1970
  29199. }
  29200. },
  29201. back: {
  29202. height: math.unit(10, "feet"),
  29203. weight: math.unit(750, "lb"),
  29204. name: "Back",
  29205. image: {
  29206. source: "./media/characters/clove/back.svg",
  29207. extra: 1912/1747,
  29208. bottom: 50/1962
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Normal",
  29215. height: math.unit(10, "feet"),
  29216. default: true
  29217. },
  29218. ]
  29219. ))
  29220. characterMakers.push(() => makeCharacter(
  29221. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29222. {
  29223. front: {
  29224. height: math.unit(4, "feet"),
  29225. weight: math.unit(50, "lb"),
  29226. name: "Front",
  29227. image: {
  29228. source: "./media/characters/alex-rabbit/front.svg",
  29229. extra: 507 / 458,
  29230. bottom: 18.5 / 527
  29231. }
  29232. },
  29233. back: {
  29234. height: math.unit(4, "feet"),
  29235. weight: math.unit(50, "lb"),
  29236. name: "Back",
  29237. image: {
  29238. source: "./media/characters/alex-rabbit/back.svg",
  29239. extra: 502 / 460,
  29240. bottom: 18.9 / 521
  29241. }
  29242. },
  29243. },
  29244. [
  29245. {
  29246. name: "Normal",
  29247. height: math.unit(4, "feet"),
  29248. default: true
  29249. },
  29250. ]
  29251. ))
  29252. characterMakers.push(() => makeCharacter(
  29253. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29254. {
  29255. front: {
  29256. height: math.unit(1 + 3 / 12, "feet"),
  29257. weight: math.unit(80, "lb"),
  29258. name: "Front",
  29259. image: {
  29260. source: "./media/characters/zander-rose/front.svg",
  29261. extra: 916 / 797,
  29262. bottom: 17 / 933
  29263. }
  29264. },
  29265. back: {
  29266. height: math.unit(1 + 3 / 12, "feet"),
  29267. weight: math.unit(80, "lb"),
  29268. name: "Back",
  29269. image: {
  29270. source: "./media/characters/zander-rose/back.svg",
  29271. extra: 903 / 779,
  29272. bottom: 31 / 934
  29273. }
  29274. },
  29275. },
  29276. [
  29277. {
  29278. name: "Normal",
  29279. height: math.unit(1 + 3 / 12, "feet"),
  29280. default: true
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29286. {
  29287. anthro: {
  29288. height: math.unit(6, "feet"),
  29289. weight: math.unit(150, "lb"),
  29290. name: "Anthro",
  29291. image: {
  29292. source: "./media/characters/razz/anthro.svg",
  29293. extra: 1437 / 1343,
  29294. bottom: 48 / 1485
  29295. }
  29296. },
  29297. feral: {
  29298. height: math.unit(6, "feet"),
  29299. weight: math.unit(150, "lb"),
  29300. name: "Feral",
  29301. image: {
  29302. source: "./media/characters/razz/feral.svg",
  29303. extra: 2569 / 1385,
  29304. bottom: 95 / 2664
  29305. }
  29306. },
  29307. },
  29308. [
  29309. {
  29310. name: "Normal",
  29311. height: math.unit(6, "feet"),
  29312. default: true
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29318. {
  29319. front: {
  29320. height: math.unit(9 + 4 / 12, "feet"),
  29321. weight: math.unit(500, "lb"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/morrigan/front.svg",
  29325. extra: 2707 / 2579,
  29326. bottom: 156 / 2863
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(9 + 4 / 12, "feet"),
  29334. default: true
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(5, "stories"),
  29343. weight: math.unit(4000, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/jenene/front.svg",
  29347. extra: 1780 / 1710,
  29348. bottom: 57 / 1837
  29349. }
  29350. },
  29351. },
  29352. [
  29353. {
  29354. name: "Normal",
  29355. height: math.unit(5, "stories"),
  29356. default: true
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29362. {
  29363. taurSfw: {
  29364. height: math.unit(10, "meters"),
  29365. weight: math.unit(17500, "kg"),
  29366. name: "Taur",
  29367. image: {
  29368. source: "./media/characters/faey/taur-sfw.svg",
  29369. extra: 1200 / 968,
  29370. bottom: 41 / 1241
  29371. }
  29372. },
  29373. chestmaw: {
  29374. height: math.unit(2.01, "meters"),
  29375. name: "Chestmaw",
  29376. image: {
  29377. source: "./media/characters/faey/chestmaw.svg"
  29378. }
  29379. },
  29380. foot: {
  29381. height: math.unit(2.43, "meters"),
  29382. name: "Foot",
  29383. image: {
  29384. source: "./media/characters/faey/foot.svg"
  29385. }
  29386. },
  29387. jaws: {
  29388. height: math.unit(1.66, "meters"),
  29389. name: "Jaws",
  29390. image: {
  29391. source: "./media/characters/faey/jaws.svg"
  29392. }
  29393. },
  29394. tongues: {
  29395. height: math.unit(2.01, "meters"),
  29396. name: "Tongues",
  29397. image: {
  29398. source: "./media/characters/faey/tongues.svg"
  29399. }
  29400. },
  29401. },
  29402. [
  29403. {
  29404. name: "Small",
  29405. height: math.unit(10, "meters"),
  29406. default: true
  29407. },
  29408. {
  29409. name: "Big",
  29410. height: math.unit(500000, "km")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(7, "feet"),
  29419. weight: math.unit(275, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/roku/front.svg",
  29423. extra: 903 / 878,
  29424. bottom: 37 / 940
  29425. }
  29426. },
  29427. },
  29428. [
  29429. {
  29430. name: "Normal",
  29431. height: math.unit(7, "feet"),
  29432. default: true
  29433. },
  29434. {
  29435. name: "Macro",
  29436. height: math.unit(500, "feet")
  29437. },
  29438. {
  29439. name: "Megamacro",
  29440. height: math.unit(200, "miles")
  29441. },
  29442. ]
  29443. ))
  29444. characterMakers.push(() => makeCharacter(
  29445. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29446. {
  29447. front: {
  29448. height: math.unit(6 + 2 / 12, "feet"),
  29449. weight: math.unit(150, "lb"),
  29450. name: "Front",
  29451. image: {
  29452. source: "./media/characters/lira/front.svg",
  29453. extra: 1727 / 1605,
  29454. bottom: 26 / 1753
  29455. }
  29456. },
  29457. back: {
  29458. height: math.unit(6 + 2 / 12, "feet"),
  29459. weight: math.unit(150, "lb"),
  29460. name: "Back",
  29461. image: {
  29462. source: "./media/characters/lira/back.svg",
  29463. extra: 1713/1621,
  29464. bottom: 20/1733
  29465. }
  29466. },
  29467. hand: {
  29468. height: math.unit(0.75, "feet"),
  29469. name: "Hand",
  29470. image: {
  29471. source: "./media/characters/lira/hand.svg"
  29472. }
  29473. },
  29474. maw: {
  29475. height: math.unit(0.65, "feet"),
  29476. name: "Maw",
  29477. image: {
  29478. source: "./media/characters/lira/maw.svg"
  29479. }
  29480. },
  29481. pawDigi: {
  29482. height: math.unit(1.6, "feet"),
  29483. name: "Paw Digi",
  29484. image: {
  29485. source: "./media/characters/lira/paw-digi.svg"
  29486. }
  29487. },
  29488. pawPlanti: {
  29489. height: math.unit(1.4, "feet"),
  29490. name: "Paw Planti",
  29491. image: {
  29492. source: "./media/characters/lira/paw-planti.svg"
  29493. }
  29494. },
  29495. },
  29496. [
  29497. {
  29498. name: "Normal",
  29499. height: math.unit(6 + 2 / 12, "feet"),
  29500. default: true
  29501. },
  29502. {
  29503. name: "Macro",
  29504. height: math.unit(100, "feet")
  29505. },
  29506. {
  29507. name: "Macro²",
  29508. height: math.unit(1600, "feet")
  29509. },
  29510. {
  29511. name: "Planetary",
  29512. height: math.unit(20, "earths")
  29513. },
  29514. ]
  29515. ))
  29516. characterMakers.push(() => makeCharacter(
  29517. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29518. {
  29519. front: {
  29520. height: math.unit(6, "feet"),
  29521. weight: math.unit(150, "lb"),
  29522. name: "Front",
  29523. image: {
  29524. source: "./media/characters/hadjet/front.svg",
  29525. extra: 1480 / 1346,
  29526. bottom: 26 / 1506
  29527. }
  29528. },
  29529. frontNsfw: {
  29530. height: math.unit(6, "feet"),
  29531. weight: math.unit(150, "lb"),
  29532. name: "Front (NSFW)",
  29533. image: {
  29534. source: "./media/characters/hadjet/front-nsfw.svg",
  29535. extra: 1440 / 1358,
  29536. bottom: 52 / 1492
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Macro",
  29543. height: math.unit(10, "stories"),
  29544. default: true
  29545. },
  29546. {
  29547. name: "Megamacro",
  29548. height: math.unit(1.5, "miles")
  29549. },
  29550. {
  29551. name: "Megamacro+",
  29552. height: math.unit(5, "miles")
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29558. {
  29559. side: {
  29560. height: math.unit(106, "feet"),
  29561. weight: math.unit(500, "tonnes"),
  29562. name: "Side",
  29563. image: {
  29564. source: "./media/characters/kodran/side.svg",
  29565. extra: 553 / 480,
  29566. bottom: 33 / 586
  29567. }
  29568. },
  29569. front: {
  29570. height: math.unit(132, "feet"),
  29571. weight: math.unit(500, "tonnes"),
  29572. name: "Front",
  29573. image: {
  29574. source: "./media/characters/kodran/front.svg",
  29575. extra: 667 / 643,
  29576. bottom: 42 / 709
  29577. }
  29578. },
  29579. flying: {
  29580. height: math.unit(350, "feet"),
  29581. weight: math.unit(500, "tonnes"),
  29582. name: "Flying",
  29583. image: {
  29584. source: "./media/characters/kodran/flying.svg"
  29585. }
  29586. },
  29587. foot: {
  29588. height: math.unit(33, "feet"),
  29589. name: "Foot",
  29590. image: {
  29591. source: "./media/characters/kodran/foot.svg"
  29592. }
  29593. },
  29594. footFront: {
  29595. height: math.unit(19, "feet"),
  29596. name: "Foot (Front)",
  29597. image: {
  29598. source: "./media/characters/kodran/foot-front.svg",
  29599. extra: 261 / 261,
  29600. bottom: 91 / 352
  29601. }
  29602. },
  29603. headFront: {
  29604. height: math.unit(53, "feet"),
  29605. name: "Head (Front)",
  29606. image: {
  29607. source: "./media/characters/kodran/head-front.svg"
  29608. }
  29609. },
  29610. headSide: {
  29611. height: math.unit(65, "feet"),
  29612. name: "Head (Side)",
  29613. image: {
  29614. source: "./media/characters/kodran/head-side.svg"
  29615. }
  29616. },
  29617. throat: {
  29618. height: math.unit(79, "feet"),
  29619. name: "Throat",
  29620. image: {
  29621. source: "./media/characters/kodran/throat.svg"
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Large",
  29628. height: math.unit(106, "feet"),
  29629. default: true
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29635. {
  29636. side: {
  29637. height: math.unit(11, "feet"),
  29638. weight: math.unit(150, "lb"),
  29639. name: "Side",
  29640. image: {
  29641. source: "./media/characters/pyxaron/side.svg",
  29642. extra: 305 / 195,
  29643. bottom: 17 / 322
  29644. }
  29645. },
  29646. },
  29647. [
  29648. {
  29649. name: "Normal",
  29650. height: math.unit(11, "feet"),
  29651. default: true
  29652. },
  29653. ]
  29654. ))
  29655. characterMakers.push(() => makeCharacter(
  29656. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29657. {
  29658. front: {
  29659. height: math.unit(6, "feet"),
  29660. weight: math.unit(150, "lb"),
  29661. name: "Front",
  29662. image: {
  29663. source: "./media/characters/meep/front.svg",
  29664. extra: 88 / 80,
  29665. bottom: 6 / 94
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Fun Sized",
  29672. height: math.unit(2, "inches"),
  29673. default: true
  29674. },
  29675. {
  29676. name: "Friend Sized",
  29677. height: math.unit(8, "inches")
  29678. },
  29679. ]
  29680. ))
  29681. characterMakers.push(() => makeCharacter(
  29682. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29683. {
  29684. front: {
  29685. height: math.unit(15, "feet"),
  29686. weight: math.unit(2500, "lb"),
  29687. name: "Front",
  29688. image: {
  29689. source: "./media/characters/holly-rabbit/front.svg",
  29690. extra: 1433 / 1233,
  29691. bottom: 125 / 1558
  29692. }
  29693. },
  29694. dick: {
  29695. height: math.unit(4.6, "feet"),
  29696. name: "Dick",
  29697. image: {
  29698. source: "./media/characters/holly-rabbit/dick.svg"
  29699. }
  29700. },
  29701. },
  29702. [
  29703. {
  29704. name: "Normal",
  29705. height: math.unit(15, "feet"),
  29706. default: true
  29707. },
  29708. {
  29709. name: "Macro",
  29710. height: math.unit(250, "feet")
  29711. },
  29712. {
  29713. name: "Macro+",
  29714. height: math.unit(2500, "feet")
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29720. {
  29721. front: {
  29722. height: math.unit(3.02, "meters"),
  29723. weight: math.unit(500, "kg"),
  29724. name: "Front",
  29725. image: {
  29726. source: "./media/characters/drena/front.svg",
  29727. extra: 282 / 243,
  29728. bottom: 8 / 290
  29729. }
  29730. },
  29731. side: {
  29732. height: math.unit(3.02, "meters"),
  29733. weight: math.unit(500, "kg"),
  29734. name: "Side",
  29735. image: {
  29736. source: "./media/characters/drena/side.svg",
  29737. extra: 280 / 245,
  29738. bottom: 10 / 290
  29739. }
  29740. },
  29741. back: {
  29742. height: math.unit(3.02, "meters"),
  29743. weight: math.unit(500, "kg"),
  29744. name: "Back",
  29745. image: {
  29746. source: "./media/characters/drena/back.svg",
  29747. extra: 278 / 243,
  29748. bottom: 2 / 280
  29749. }
  29750. },
  29751. foot: {
  29752. height: math.unit(0.75, "meters"),
  29753. name: "Foot",
  29754. image: {
  29755. source: "./media/characters/drena/foot.svg"
  29756. }
  29757. },
  29758. maw: {
  29759. height: math.unit(0.82, "meters"),
  29760. name: "Maw",
  29761. image: {
  29762. source: "./media/characters/drena/maw.svg"
  29763. }
  29764. },
  29765. eating: {
  29766. height: math.unit(0.75, "meters"),
  29767. name: "Eating",
  29768. image: {
  29769. source: "./media/characters/drena/eating.svg"
  29770. }
  29771. },
  29772. rump: {
  29773. height: math.unit(0.93, "meters"),
  29774. name: "Rump",
  29775. image: {
  29776. source: "./media/characters/drena/rump.svg"
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Normal",
  29783. height: math.unit(3.02, "meters"),
  29784. default: true
  29785. },
  29786. ]
  29787. ))
  29788. characterMakers.push(() => makeCharacter(
  29789. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29790. {
  29791. front: {
  29792. height: math.unit(6 + 4 / 12, "feet"),
  29793. weight: math.unit(250, "lb"),
  29794. name: "Front",
  29795. image: {
  29796. source: "./media/characters/remmyzilla/front.svg",
  29797. extra: 4033 / 3588,
  29798. bottom: 123 / 4156
  29799. }
  29800. },
  29801. back: {
  29802. height: math.unit(6 + 4 / 12, "feet"),
  29803. weight: math.unit(250, "lb"),
  29804. name: "Back",
  29805. image: {
  29806. source: "./media/characters/remmyzilla/back.svg",
  29807. extra: 2687 / 2555,
  29808. bottom: 48 / 2735
  29809. }
  29810. },
  29811. paw: {
  29812. height: math.unit(1.73, "feet"),
  29813. name: "Paw",
  29814. image: {
  29815. source: "./media/characters/remmyzilla/paw.svg"
  29816. },
  29817. extraAttributes: {
  29818. "toeSize": {
  29819. name: "Toe Size",
  29820. power: 2,
  29821. type: "area",
  29822. base: math.unit(0.0035, "m^2")
  29823. },
  29824. "padSize": {
  29825. name: "Pad Size",
  29826. power: 2,
  29827. type: "area",
  29828. base: math.unit(0.015, "m^2")
  29829. },
  29830. "pawsize": {
  29831. name: "Paw Size",
  29832. power: 2,
  29833. type: "area",
  29834. base: math.unit(0.072, "m^2")
  29835. },
  29836. }
  29837. },
  29838. maw: {
  29839. height: math.unit(1.73, "feet"),
  29840. name: "Maw",
  29841. image: {
  29842. source: "./media/characters/remmyzilla/maw.svg"
  29843. }
  29844. },
  29845. },
  29846. [
  29847. {
  29848. name: "Normal",
  29849. height: math.unit(6 + 4 / 12, "feet")
  29850. },
  29851. {
  29852. name: "Minimacro",
  29853. height: math.unit(12 + 8 / 12, "feet")
  29854. },
  29855. {
  29856. name: "Normal",
  29857. height: math.unit(640, "feet"),
  29858. default: true
  29859. },
  29860. {
  29861. name: "Megamacro",
  29862. height: math.unit(6400, "feet")
  29863. },
  29864. {
  29865. name: "Gigamacro",
  29866. height: math.unit(64000, "miles")
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29872. {
  29873. front: {
  29874. height: math.unit(2.5, "meters"),
  29875. weight: math.unit(300, "lb"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/lawrence/front.svg",
  29879. extra: 357 / 335,
  29880. bottom: 30 / 387
  29881. }
  29882. },
  29883. back: {
  29884. height: math.unit(2.5, "meters"),
  29885. weight: math.unit(300, "lb"),
  29886. name: "Back",
  29887. image: {
  29888. source: "./media/characters/lawrence/back.svg",
  29889. extra: 357 / 338,
  29890. bottom: 16 / 373
  29891. }
  29892. },
  29893. head: {
  29894. height: math.unit(0.9, "meter"),
  29895. name: "Head",
  29896. image: {
  29897. source: "./media/characters/lawrence/head.svg"
  29898. }
  29899. },
  29900. maw: {
  29901. height: math.unit(0.7, "meter"),
  29902. name: "Maw",
  29903. image: {
  29904. source: "./media/characters/lawrence/maw.svg"
  29905. }
  29906. },
  29907. footBottom: {
  29908. height: math.unit(0.5, "meter"),
  29909. name: "Foot (Bottom)",
  29910. image: {
  29911. source: "./media/characters/lawrence/foot-bottom.svg"
  29912. }
  29913. },
  29914. footTop: {
  29915. height: math.unit(0.5, "meter"),
  29916. name: "Foot (Top)",
  29917. image: {
  29918. source: "./media/characters/lawrence/foot-top.svg"
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(2.5, "meters"),
  29926. default: true
  29927. },
  29928. {
  29929. name: "Macro",
  29930. height: math.unit(95, "meters")
  29931. },
  29932. {
  29933. name: "Megamacro",
  29934. height: math.unit(150, "km")
  29935. },
  29936. ]
  29937. ))
  29938. characterMakers.push(() => makeCharacter(
  29939. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29940. {
  29941. front: {
  29942. height: math.unit(4.2, "meters"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/sydney/front.svg",
  29946. extra: 1323 / 1277,
  29947. bottom: 111 / 1434
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Normal",
  29954. height: math.unit(4.2, "meters"),
  29955. default: true
  29956. },
  29957. ]
  29958. ))
  29959. characterMakers.push(() => makeCharacter(
  29960. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29961. {
  29962. back: {
  29963. height: math.unit(201, "feet"),
  29964. name: "Back",
  29965. image: {
  29966. source: "./media/characters/jessica/back.svg",
  29967. extra: 273 / 259,
  29968. bottom: 7 / 280
  29969. }
  29970. },
  29971. },
  29972. [
  29973. {
  29974. name: "Normal",
  29975. height: math.unit(201, "feet"),
  29976. default: true
  29977. },
  29978. {
  29979. name: "Megamacro",
  29980. height: math.unit(8, "miles")
  29981. },
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29986. {
  29987. side: {
  29988. height: math.unit(5.6, "m"),
  29989. weight: math.unit(8000, "kg"),
  29990. name: "Side",
  29991. image: {
  29992. source: "./media/characters/victoria/side.svg",
  29993. extra: 1542/1229,
  29994. bottom: 124/1666
  29995. }
  29996. },
  29997. maw: {
  29998. height: math.unit(7.14, "feet"),
  29999. name: "Maw",
  30000. image: {
  30001. source: "./media/characters/victoria/maw.svg"
  30002. }
  30003. },
  30004. },
  30005. [
  30006. {
  30007. name: "Normal",
  30008. height: math.unit(5.6, "m"),
  30009. default: true
  30010. },
  30011. ]
  30012. ))
  30013. characterMakers.push(() => makeCharacter(
  30014. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30015. {
  30016. front: {
  30017. height: math.unit(5 + 6 / 12, "feet"),
  30018. name: "Front",
  30019. image: {
  30020. source: "./media/characters/cat/front.svg",
  30021. extra: 1449/1295,
  30022. bottom: 34/1483
  30023. },
  30024. form: "cat",
  30025. default: true
  30026. },
  30027. back: {
  30028. height: math.unit(5 + 6 / 12, "feet"),
  30029. name: "Back",
  30030. image: {
  30031. source: "./media/characters/cat/back.svg",
  30032. extra: 1466/1301,
  30033. bottom: 19/1485
  30034. },
  30035. form: "cat"
  30036. },
  30037. taur: {
  30038. height: math.unit(7, "feet"),
  30039. name: "Taur",
  30040. image: {
  30041. source: "./media/characters/cat/taur.svg",
  30042. extra: 1389/1233,
  30043. bottom: 83/1472
  30044. },
  30045. form: "taur",
  30046. default: true
  30047. },
  30048. lucarioFront: {
  30049. height: math.unit(4, "feet"),
  30050. name: "Lucario (Front)",
  30051. image: {
  30052. source: "./media/characters/cat/lucario-front.svg",
  30053. extra: 1149/1019,
  30054. bottom: 84/1233
  30055. },
  30056. form: "lucario",
  30057. default: true
  30058. },
  30059. lucarioBack: {
  30060. height: math.unit(4, "feet"),
  30061. name: "Lucario (Back)",
  30062. image: {
  30063. source: "./media/characters/cat/lucario-back.svg",
  30064. extra: 1190/1059,
  30065. bottom: 33/1223
  30066. },
  30067. form: "lucario"
  30068. },
  30069. megaLucario: {
  30070. height: math.unit(4, "feet"),
  30071. name: "Mega Lucario",
  30072. image: {
  30073. source: "./media/characters/cat/mega-lucario.svg",
  30074. extra: 1515 / 1319,
  30075. bottom: 63 / 1578
  30076. },
  30077. form: "lucario"
  30078. },
  30079. nickit: {
  30080. height: math.unit(2, "feet"),
  30081. name: "Nickit",
  30082. image: {
  30083. source: "./media/characters/cat/nickit.svg",
  30084. extra: 1980 / 1585,
  30085. bottom: 102 / 2082
  30086. },
  30087. form: "nickit",
  30088. default: true
  30089. },
  30090. lopunnyFront: {
  30091. height: math.unit(5, "feet"),
  30092. name: "Lopunny (Front)",
  30093. image: {
  30094. source: "./media/characters/cat/lopunny-front.svg",
  30095. extra: 1782 / 1469,
  30096. bottom: 38 / 1820
  30097. },
  30098. form: "lopunny",
  30099. default: true
  30100. },
  30101. lopunnyBack: {
  30102. height: math.unit(5, "feet"),
  30103. name: "Lopunny (Back)",
  30104. image: {
  30105. source: "./media/characters/cat/lopunny-back.svg",
  30106. extra: 1660 / 1490,
  30107. bottom: 25 / 1685
  30108. },
  30109. form: "lopunny"
  30110. },
  30111. },
  30112. [
  30113. {
  30114. name: "Really small",
  30115. height: math.unit(1, "nm")
  30116. },
  30117. {
  30118. name: "Micro",
  30119. height: math.unit(5, "inches")
  30120. },
  30121. {
  30122. name: "Normal",
  30123. height: math.unit(5 + 6 / 12, "feet"),
  30124. default: true
  30125. },
  30126. {
  30127. name: "Macro",
  30128. height: math.unit(50, "feet")
  30129. },
  30130. {
  30131. name: "Macro+",
  30132. height: math.unit(150, "feet")
  30133. },
  30134. {
  30135. name: "Megamacro",
  30136. height: math.unit(100, "miles")
  30137. },
  30138. ]
  30139. ))
  30140. characterMakers.push(() => makeCharacter(
  30141. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30142. {
  30143. front: {
  30144. height: math.unit(63.4, "meters"),
  30145. weight: math.unit(3.28349e+6, "kilograms"),
  30146. name: "Front",
  30147. image: {
  30148. source: "./media/characters/kirina-violet/front.svg",
  30149. extra: 2812 / 2725,
  30150. bottom: 0 / 2812
  30151. }
  30152. },
  30153. back: {
  30154. height: math.unit(63.4, "meters"),
  30155. weight: math.unit(3.28349e+6, "kilograms"),
  30156. name: "Back",
  30157. image: {
  30158. source: "./media/characters/kirina-violet/back.svg",
  30159. extra: 2812 / 2725,
  30160. bottom: 0 / 2812
  30161. }
  30162. },
  30163. mouth: {
  30164. height: math.unit(4.35, "meters"),
  30165. name: "Mouth",
  30166. image: {
  30167. source: "./media/characters/kirina-violet/mouth.svg"
  30168. }
  30169. },
  30170. paw: {
  30171. height: math.unit(5.6, "meters"),
  30172. name: "Paw",
  30173. image: {
  30174. source: "./media/characters/kirina-violet/paw.svg"
  30175. }
  30176. },
  30177. tail: {
  30178. height: math.unit(18, "meters"),
  30179. name: "Tail",
  30180. image: {
  30181. source: "./media/characters/kirina-violet/tail.svg"
  30182. }
  30183. },
  30184. },
  30185. [
  30186. {
  30187. name: "Macro",
  30188. height: math.unit(63.4, "meters"),
  30189. default: true
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30195. {
  30196. front: {
  30197. height: math.unit(75, "feet"),
  30198. name: "Front",
  30199. image: {
  30200. source: "./media/characters/cat-gigachu/front.svg",
  30201. extra: 1239/1027,
  30202. bottom: 32/1271
  30203. }
  30204. },
  30205. back: {
  30206. height: math.unit(75, "feet"),
  30207. name: "Back",
  30208. image: {
  30209. source: "./media/characters/cat-gigachu/back.svg",
  30210. extra: 1229/1030,
  30211. bottom: 9/1238
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Dynamax",
  30218. height: math.unit(75, "feet"),
  30219. default: true
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30225. {
  30226. front: {
  30227. height: math.unit(6, "feet"),
  30228. weight: math.unit(150, "lb"),
  30229. name: "Front",
  30230. image: {
  30231. source: "./media/characters/sfaiyan/front.svg",
  30232. extra: 999 / 978,
  30233. bottom: 5 / 1004
  30234. }
  30235. },
  30236. },
  30237. [
  30238. {
  30239. name: "Normal",
  30240. height: math.unit(1.82, "meters")
  30241. },
  30242. {
  30243. name: "Giant",
  30244. height: math.unit(2.27, "km"),
  30245. default: true
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30251. {
  30252. front: {
  30253. height: math.unit(179, "cm"),
  30254. weight: math.unit(100, "kg"),
  30255. name: "Front",
  30256. image: {
  30257. source: "./media/characters/raunehkeli/front.svg",
  30258. extra: 1934 / 1926,
  30259. bottom: 0 / 1934
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Normal",
  30266. height: math.unit(179, "cm")
  30267. },
  30268. {
  30269. name: "Maximum",
  30270. height: math.unit(575, "meters"),
  30271. default: true
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30277. {
  30278. front: {
  30279. height: math.unit(6, "feet"),
  30280. weight: math.unit(150, "lb"),
  30281. name: "Front",
  30282. image: {
  30283. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30284. extra: 2625 / 2518,
  30285. bottom: 60 / 2685
  30286. }
  30287. },
  30288. },
  30289. [
  30290. {
  30291. name: "Normal",
  30292. height: math.unit(6 + 2 / 12, "feet")
  30293. },
  30294. {
  30295. name: "Macro",
  30296. height: math.unit(1180, "feet"),
  30297. default: true
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30303. {
  30304. front: {
  30305. height: math.unit(5 + 6 / 12, "feet"),
  30306. weight: math.unit(108, "lb"),
  30307. name: "Front",
  30308. image: {
  30309. source: "./media/characters/lilith-zott/front.svg",
  30310. extra: 2510 / 2238,
  30311. bottom: 100 / 2610
  30312. }
  30313. },
  30314. frontDressed: {
  30315. height: math.unit(5 + 6 / 12, "feet"),
  30316. weight: math.unit(108, "lb"),
  30317. name: "Front (Dressed)",
  30318. image: {
  30319. source: "./media/characters/lilith-zott/front-dressed.svg",
  30320. extra: 2510 / 2238,
  30321. bottom: 100 / 2610
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Normal",
  30328. height: math.unit(5 + 6 / 12, "feet")
  30329. },
  30330. {
  30331. name: "Macro",
  30332. height: math.unit(1030, "feet"),
  30333. default: true
  30334. },
  30335. ]
  30336. ))
  30337. characterMakers.push(() => makeCharacter(
  30338. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30339. {
  30340. front: {
  30341. height: math.unit(6, "feet"),
  30342. weight: math.unit(150, "lb"),
  30343. name: "Front",
  30344. image: {
  30345. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30346. extra: 2567 / 2435,
  30347. bottom: 39 / 2606
  30348. }
  30349. },
  30350. frontSuper: {
  30351. height: math.unit(6, "feet"),
  30352. name: "Front (Super)",
  30353. image: {
  30354. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30355. extra: 2567 / 2435,
  30356. bottom: 39 / 2606
  30357. }
  30358. },
  30359. },
  30360. [
  30361. {
  30362. name: "Normal",
  30363. height: math.unit(5 + 10 / 12, "feet")
  30364. },
  30365. {
  30366. name: "Macro",
  30367. height: math.unit(1100, "feet"),
  30368. default: true
  30369. },
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(100, "miles"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/sona/front.svg",
  30380. extra: 2433 / 2201,
  30381. bottom: 53 / 2486
  30382. }
  30383. },
  30384. foot: {
  30385. height: math.unit(16.1, "miles"),
  30386. name: "Foot",
  30387. image: {
  30388. source: "./media/characters/sona/foot.svg"
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Macro",
  30395. height: math.unit(100, "miles"),
  30396. default: true
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(6, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/bailey/front.svg",
  30409. extra: 1778 / 1724,
  30410. bottom: 30 / 1808
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Micro",
  30417. height: math.unit(4, "inches")
  30418. },
  30419. {
  30420. name: "Normal",
  30421. height: math.unit(5 + 5 / 12, "feet"),
  30422. default: true
  30423. },
  30424. {
  30425. name: "Macro",
  30426. height: math.unit(250, "feet")
  30427. },
  30428. {
  30429. name: "Megamacro",
  30430. height: math.unit(100, "miles")
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30436. {
  30437. front: {
  30438. height: math.unit(5 + 2 / 12, "feet"),
  30439. weight: math.unit(120, "lb"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/snaps/front.svg",
  30443. extra: 2370 / 2177,
  30444. bottom: 48 / 2418
  30445. }
  30446. },
  30447. back: {
  30448. height: math.unit(5 + 2 / 12, "feet"),
  30449. weight: math.unit(120, "lb"),
  30450. name: "Back",
  30451. image: {
  30452. source: "./media/characters/snaps/back.svg",
  30453. extra: 2408 / 2258,
  30454. bottom: 15 / 2423
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Micro",
  30461. height: math.unit(9, "inches")
  30462. },
  30463. {
  30464. name: "Normal",
  30465. height: math.unit(5 + 2 / 12, "feet"),
  30466. default: true
  30467. },
  30468. {
  30469. name: "Mini Macro",
  30470. height: math.unit(10, "feet")
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30476. {
  30477. front: {
  30478. height: math.unit(1.8, "meters"),
  30479. weight: math.unit(85, "kg"),
  30480. name: "Front",
  30481. image: {
  30482. source: "./media/characters/azteck/front.svg",
  30483. extra: 2815 / 2625,
  30484. bottom: 89 / 2904
  30485. }
  30486. },
  30487. back: {
  30488. height: math.unit(1.8, "meters"),
  30489. weight: math.unit(85, "kg"),
  30490. name: "Back",
  30491. image: {
  30492. source: "./media/characters/azteck/back.svg",
  30493. extra: 2856 / 2648,
  30494. bottom: 85 / 2941
  30495. }
  30496. },
  30497. frontDressed: {
  30498. height: math.unit(1.8, "meters"),
  30499. weight: math.unit(85, "kg"),
  30500. name: "Front (Dressed)",
  30501. image: {
  30502. source: "./media/characters/azteck/front-dressed.svg",
  30503. extra: 2147 / 2003,
  30504. bottom: 68 / 2215
  30505. }
  30506. },
  30507. head: {
  30508. height: math.unit(0.47, "meters"),
  30509. weight: math.unit(85, "kg"),
  30510. name: "Head",
  30511. image: {
  30512. source: "./media/characters/azteck/head.svg"
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Bite sized",
  30519. height: math.unit(16, "cm")
  30520. },
  30521. {
  30522. name: "Normal",
  30523. height: math.unit(1.8, "meters"),
  30524. default: true
  30525. },
  30526. ]
  30527. ))
  30528. characterMakers.push(() => makeCharacter(
  30529. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30530. {
  30531. front: {
  30532. height: math.unit(6, "feet"),
  30533. weight: math.unit(150, "lb"),
  30534. name: "Front",
  30535. image: {
  30536. source: "./media/characters/pidge/front.svg",
  30537. extra: 1936/1820,
  30538. bottom: 0/1936
  30539. }
  30540. },
  30541. back: {
  30542. height: math.unit(6, "feet"),
  30543. weight: math.unit(150, "lb"),
  30544. name: "Back",
  30545. image: {
  30546. source: "./media/characters/pidge/back.svg",
  30547. extra: 1938/1843,
  30548. bottom: 0/1938
  30549. }
  30550. },
  30551. casual: {
  30552. height: math.unit(6, "feet"),
  30553. weight: math.unit(150, "lb"),
  30554. name: "Casual",
  30555. image: {
  30556. source: "./media/characters/pidge/casual.svg",
  30557. extra: 1936/1820,
  30558. bottom: 0/1936
  30559. }
  30560. },
  30561. tech: {
  30562. height: math.unit(6, "feet"),
  30563. weight: math.unit(150, "lb"),
  30564. name: "Tech",
  30565. image: {
  30566. source: "./media/characters/pidge/tech.svg",
  30567. extra: 1802/1682,
  30568. bottom: 0/1802
  30569. }
  30570. },
  30571. head: {
  30572. height: math.unit(1.61, "feet"),
  30573. name: "Head",
  30574. image: {
  30575. source: "./media/characters/pidge/head.svg"
  30576. }
  30577. },
  30578. collar: {
  30579. height: math.unit(0.82, "feet"),
  30580. name: "Collar",
  30581. image: {
  30582. source: "./media/characters/pidge/collar.svg"
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Macro",
  30589. height: math.unit(2, "mile"),
  30590. default: true
  30591. },
  30592. {
  30593. name: "PUPPY",
  30594. height: math.unit(20, "miles")
  30595. },
  30596. ]
  30597. ))
  30598. characterMakers.push(() => makeCharacter(
  30599. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30600. {
  30601. front: {
  30602. height: math.unit(6, "feet"),
  30603. weight: math.unit(150, "lb"),
  30604. name: "Front",
  30605. image: {
  30606. source: "./media/characters/en/front.svg",
  30607. extra: 1697 / 1563,
  30608. bottom: 103 / 1800
  30609. }
  30610. },
  30611. back: {
  30612. height: math.unit(6, "feet"),
  30613. weight: math.unit(150, "lb"),
  30614. name: "Back",
  30615. image: {
  30616. source: "./media/characters/en/back.svg",
  30617. extra: 1700 / 1570,
  30618. bottom: 51 / 1751
  30619. }
  30620. },
  30621. frontDressed: {
  30622. height: math.unit(6, "feet"),
  30623. weight: math.unit(150, "lb"),
  30624. name: "Front (Dressed)",
  30625. image: {
  30626. source: "./media/characters/en/front-dressed.svg",
  30627. extra: 1697 / 1563,
  30628. bottom: 103 / 1800
  30629. }
  30630. },
  30631. backDressed: {
  30632. height: math.unit(6, "feet"),
  30633. weight: math.unit(150, "lb"),
  30634. name: "Back (Dressed)",
  30635. image: {
  30636. source: "./media/characters/en/back-dressed.svg",
  30637. extra: 1700 / 1570,
  30638. bottom: 51 / 1751
  30639. }
  30640. },
  30641. },
  30642. [
  30643. {
  30644. name: "Macro",
  30645. height: math.unit(210, "feet"),
  30646. default: true
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30652. {
  30653. front: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Front",
  30657. image: {
  30658. source: "./media/characters/haze-orris/front.svg",
  30659. extra: 3975 / 3525,
  30660. bottom: 137 / 4112
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Micro",
  30667. height: math.unit(150, "mm"),
  30668. default: true
  30669. },
  30670. ]
  30671. ))
  30672. characterMakers.push(() => makeCharacter(
  30673. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30674. {
  30675. front: {
  30676. height: math.unit(6, "feet"),
  30677. weight: math.unit(150, "lb"),
  30678. name: "Front",
  30679. image: {
  30680. source: "./media/characters/casselene-yaro/front.svg",
  30681. extra: 4721 / 4541,
  30682. bottom: 82 / 4803
  30683. }
  30684. },
  30685. back: {
  30686. height: math.unit(6, "feet"),
  30687. weight: math.unit(150, "lb"),
  30688. name: "Back",
  30689. image: {
  30690. source: "./media/characters/casselene-yaro/back.svg",
  30691. extra: 4569 / 4377,
  30692. bottom: 69 / 4638
  30693. }
  30694. },
  30695. dressed: {
  30696. height: math.unit(6, "feet"),
  30697. weight: math.unit(150, "lb"),
  30698. name: "Dressed",
  30699. image: {
  30700. source: "./media/characters/casselene-yaro/dressed.svg",
  30701. extra: 4721 / 4541,
  30702. bottom: 82 / 4803
  30703. }
  30704. },
  30705. maw: {
  30706. height: math.unit(1, "feet"),
  30707. name: "Maw",
  30708. image: {
  30709. source: "./media/characters/casselene-yaro/maw.svg"
  30710. }
  30711. },
  30712. },
  30713. [
  30714. {
  30715. name: "Macro",
  30716. height: math.unit(190, "feet"),
  30717. default: true
  30718. },
  30719. ]
  30720. ))
  30721. characterMakers.push(() => makeCharacter(
  30722. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30723. {
  30724. front: {
  30725. height: math.unit(10, "feet"),
  30726. weight: math.unit(15015, "lb"),
  30727. name: "Front",
  30728. image: {
  30729. source: "./media/characters/platine/front.svg",
  30730. extra: 1428/1353,
  30731. bottom: 31/1459
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Normal",
  30738. height: math.unit(10, "feet"),
  30739. default: true
  30740. },
  30741. {
  30742. name: "Macro",
  30743. height: math.unit(100, "feet")
  30744. },
  30745. {
  30746. name: "Megamacro",
  30747. height: math.unit(1000, "feet")
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30753. {
  30754. front: {
  30755. height: math.unit(15 + 5 / 12, "feet"),
  30756. weight: math.unit(4600, "lb"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/neapolitan-ananassa/front.svg",
  30760. extra: 2903 / 2736,
  30761. bottom: 0 / 2903
  30762. }
  30763. },
  30764. side: {
  30765. height: math.unit(15 + 5 / 12, "feet"),
  30766. weight: math.unit(4600, "lb"),
  30767. name: "Side",
  30768. image: {
  30769. source: "./media/characters/neapolitan-ananassa/side.svg",
  30770. extra: 2925 / 2719,
  30771. bottom: 0 / 2925
  30772. }
  30773. },
  30774. back: {
  30775. height: math.unit(15 + 5 / 12, "feet"),
  30776. weight: math.unit(4600, "lb"),
  30777. name: "Back",
  30778. image: {
  30779. source: "./media/characters/neapolitan-ananassa/back.svg",
  30780. extra: 2903 / 2736,
  30781. bottom: 0 / 2903
  30782. }
  30783. },
  30784. },
  30785. [
  30786. {
  30787. name: "Normal",
  30788. height: math.unit(15 + 5 / 12, "feet"),
  30789. default: true
  30790. },
  30791. {
  30792. name: "Post-Millenium",
  30793. height: math.unit(35 + 5 / 12, "feet")
  30794. },
  30795. {
  30796. name: "Post-Era",
  30797. height: math.unit(450 + 5 / 12, "feet")
  30798. },
  30799. ]
  30800. ))
  30801. characterMakers.push(() => makeCharacter(
  30802. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30803. {
  30804. front: {
  30805. height: math.unit(300, "meters"),
  30806. weight: math.unit(125000, "tonnes"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/pazuzu/front.svg",
  30810. extra: 877 / 794,
  30811. bottom: 47 / 924
  30812. }
  30813. },
  30814. },
  30815. [
  30816. {
  30817. name: "Macro",
  30818. height: math.unit(300, "meters"),
  30819. default: true
  30820. },
  30821. ]
  30822. ))
  30823. characterMakers.push(() => makeCharacter(
  30824. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30825. {
  30826. side: {
  30827. height: math.unit(10 + 7 / 12, "feet"),
  30828. weight: math.unit(2.5, "tons"),
  30829. name: "Side",
  30830. image: {
  30831. source: "./media/characters/aasha/side.svg",
  30832. extra: 1345 / 1245,
  30833. bottom: 111 / 1456
  30834. }
  30835. },
  30836. back: {
  30837. height: math.unit(10 + 7 / 12, "feet"),
  30838. weight: math.unit(2.5, "tons"),
  30839. name: "Back",
  30840. image: {
  30841. source: "./media/characters/aasha/back.svg",
  30842. extra: 1133 / 1057,
  30843. bottom: 257 / 1390
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(10 + 7 / 12, "feet"),
  30851. default: true
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(6 + 3 / 12, "feet"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/nevan/front.svg",
  30863. extra: 704 / 704,
  30864. bottom: 28 / 732
  30865. }
  30866. },
  30867. back: {
  30868. height: math.unit(6 + 3 / 12, "feet"),
  30869. name: "Back",
  30870. image: {
  30871. source: "./media/characters/nevan/back.svg",
  30872. extra: 714 / 714,
  30873. bottom: 21 / 735
  30874. }
  30875. },
  30876. frontFlaccid: {
  30877. height: math.unit(6 + 3 / 12, "feet"),
  30878. name: "Front (Flaccid)",
  30879. image: {
  30880. source: "./media/characters/nevan/front-flaccid.svg",
  30881. extra: 704 / 704,
  30882. bottom: 28 / 732
  30883. }
  30884. },
  30885. frontErect: {
  30886. height: math.unit(6 + 3 / 12, "feet"),
  30887. name: "Front (Erect)",
  30888. image: {
  30889. source: "./media/characters/nevan/front-erect.svg",
  30890. extra: 704 / 704,
  30891. bottom: 28 / 732
  30892. }
  30893. },
  30894. backFlaccid: {
  30895. height: math.unit(6 + 3 / 12, "feet"),
  30896. name: "Back (Flaccid)",
  30897. image: {
  30898. source: "./media/characters/nevan/back-flaccid.svg",
  30899. extra: 714 / 714,
  30900. bottom: 21 / 735
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Normal",
  30907. height: math.unit(6 + 3 / 12, "feet"),
  30908. default: true
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(4, "feet"),
  30917. name: "Front",
  30918. image: {
  30919. source: "./media/characters/arhan/front.svg",
  30920. extra: 3368 / 3133,
  30921. bottom: 0 / 3368
  30922. }
  30923. },
  30924. side: {
  30925. height: math.unit(4, "feet"),
  30926. name: "Side",
  30927. image: {
  30928. source: "./media/characters/arhan/side.svg",
  30929. extra: 3347 / 3105,
  30930. bottom: 0 / 3347
  30931. }
  30932. },
  30933. tongue: {
  30934. height: math.unit(1.42, "feet"),
  30935. name: "Tongue",
  30936. image: {
  30937. source: "./media/characters/arhan/tongue.svg"
  30938. }
  30939. },
  30940. head: {
  30941. height: math.unit(0.85, "feet"),
  30942. name: "Head",
  30943. image: {
  30944. source: "./media/characters/arhan/head.svg"
  30945. }
  30946. },
  30947. },
  30948. [
  30949. {
  30950. name: "Normal",
  30951. height: math.unit(4, "feet"),
  30952. default: true
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30958. {
  30959. front: {
  30960. height: math.unit(5 + 7.5 / 12, "feet"),
  30961. weight: math.unit(120, "lb"),
  30962. name: "Front",
  30963. image: {
  30964. source: "./media/characters/digi-duncan/front.svg",
  30965. extra: 330 / 326,
  30966. bottom: 16 / 346
  30967. }
  30968. },
  30969. side: {
  30970. height: math.unit(5 + 7.5 / 12, "feet"),
  30971. weight: math.unit(120, "lb"),
  30972. name: "Side",
  30973. image: {
  30974. source: "./media/characters/digi-duncan/side.svg",
  30975. extra: 341 / 337,
  30976. bottom: 1 / 342
  30977. }
  30978. },
  30979. back: {
  30980. height: math.unit(5 + 7.5 / 12, "feet"),
  30981. weight: math.unit(120, "lb"),
  30982. name: "Back",
  30983. image: {
  30984. source: "./media/characters/digi-duncan/back.svg",
  30985. extra: 330 / 326,
  30986. bottom: 12 / 342
  30987. }
  30988. },
  30989. },
  30990. [
  30991. {
  30992. name: "Speck",
  30993. height: math.unit(0.25, "mm")
  30994. },
  30995. {
  30996. name: "Micro",
  30997. height: math.unit(5, "mm")
  30998. },
  30999. {
  31000. name: "Tiny",
  31001. height: math.unit(0.5, "inches"),
  31002. default: true
  31003. },
  31004. {
  31005. name: "Human",
  31006. height: math.unit(5 + 7.5 / 12, "feet")
  31007. },
  31008. {
  31009. name: "Minigiant",
  31010. height: math.unit(8 + 5.25, "feet")
  31011. },
  31012. {
  31013. name: "Giant",
  31014. height: math.unit(2000, "feet")
  31015. },
  31016. {
  31017. name: "Mega",
  31018. height: math.unit(371.1, "miles")
  31019. },
  31020. ]
  31021. ))
  31022. characterMakers.push(() => makeCharacter(
  31023. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31024. {
  31025. front: {
  31026. height: math.unit(2, "meters"),
  31027. weight: math.unit(350, "kg"),
  31028. name: "Front",
  31029. image: {
  31030. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31031. extra: 898 / 838,
  31032. bottom: 9 / 907
  31033. }
  31034. },
  31035. },
  31036. [
  31037. {
  31038. name: "Micro",
  31039. height: math.unit(8, "meters")
  31040. },
  31041. {
  31042. name: "Normal",
  31043. height: math.unit(50, "meters"),
  31044. default: true
  31045. },
  31046. {
  31047. name: "Macro",
  31048. height: math.unit(500, "meters")
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31054. {
  31055. front: {
  31056. height: math.unit(6 + 6 / 12, "feet"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/khardesh/front.svg",
  31060. extra: 1788/1596,
  31061. bottom: 66/1854
  31062. }
  31063. },
  31064. back: {
  31065. height: math.unit(6 + 6 / 12, "feet"),
  31066. name: "Back",
  31067. image: {
  31068. source: "./media/characters/khardesh/back.svg",
  31069. extra: 1781/1584,
  31070. bottom: 68/1849
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Normal",
  31077. height: math.unit(6 + 6 / 12, "feet"),
  31078. default: true
  31079. },
  31080. {
  31081. name: "Normal+",
  31082. height: math.unit(4, "meters")
  31083. },
  31084. {
  31085. name: "Macro",
  31086. height: math.unit(50, "meters")
  31087. },
  31088. {
  31089. name: "Macro+",
  31090. height: math.unit(100, "meters")
  31091. },
  31092. {
  31093. name: "Megamacro",
  31094. height: math.unit(20, "km")
  31095. },
  31096. ]
  31097. ))
  31098. characterMakers.push(() => makeCharacter(
  31099. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31100. {
  31101. front: {
  31102. height: math.unit(6, "feet"),
  31103. weight: math.unit(150, "lb"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/kosho/front.svg",
  31107. extra: 1847 / 1847,
  31108. bottom: 86 / 1933
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Second-stage micro",
  31115. height: math.unit(0.5, "inches")
  31116. },
  31117. {
  31118. name: "First-stage micro",
  31119. height: math.unit(6, "inches")
  31120. },
  31121. {
  31122. name: "Normal",
  31123. height: math.unit(6, "feet"),
  31124. default: true
  31125. },
  31126. {
  31127. name: "First-stage macro",
  31128. height: math.unit(72, "feet")
  31129. },
  31130. {
  31131. name: "Second-stage macro",
  31132. height: math.unit(864, "feet")
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31138. {
  31139. normal: {
  31140. height: math.unit(4 + 6 / 12, "feet"),
  31141. name: "Normal",
  31142. image: {
  31143. source: "./media/characters/hydra/normal.svg",
  31144. extra: 2833 / 2634,
  31145. bottom: 68 / 2901
  31146. }
  31147. },
  31148. smol: {
  31149. height: math.unit(0.705, "inches"),
  31150. name: "Smol",
  31151. image: {
  31152. source: "./media/characters/hydra/smol.svg",
  31153. extra: 2715 / 2540,
  31154. bottom: 0 / 2715
  31155. }
  31156. },
  31157. },
  31158. [
  31159. {
  31160. name: "Normal",
  31161. height: math.unit(4 + 6 / 12, "feet"),
  31162. default: true
  31163. }
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(0.6, "cm"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/daz/front.svg",
  31174. extra: 1682 / 1164,
  31175. bottom: 42 / 1724
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Normal",
  31182. height: math.unit(0.6, "cm"),
  31183. default: true
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31189. {
  31190. front: {
  31191. height: math.unit(6, "feet"),
  31192. weight: math.unit(235, "lb"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/theo-pangolin/front.svg",
  31196. extra: 1996 / 1969,
  31197. bottom: 115 / 2111
  31198. }
  31199. },
  31200. back: {
  31201. height: math.unit(6, "feet"),
  31202. weight: math.unit(235, "lb"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/theo-pangolin/back.svg",
  31206. extra: 1979 / 1979,
  31207. bottom: 40 / 2019
  31208. }
  31209. },
  31210. feral: {
  31211. height: math.unit(2, "feet"),
  31212. weight: math.unit(30, "lb"),
  31213. name: "Feral",
  31214. image: {
  31215. source: "./media/characters/theo-pangolin/feral.svg",
  31216. extra: 803 / 791,
  31217. bottom: 181 / 984
  31218. }
  31219. },
  31220. footFive: {
  31221. height: math.unit(1.43, "feet"),
  31222. name: "Foot (Five Toes)",
  31223. image: {
  31224. source: "./media/characters/theo-pangolin/foot-five.svg"
  31225. }
  31226. },
  31227. footFour: {
  31228. height: math.unit(1.43, "feet"),
  31229. name: "Foot (Four Toes)",
  31230. image: {
  31231. source: "./media/characters/theo-pangolin/foot-four.svg"
  31232. }
  31233. },
  31234. handFour: {
  31235. height: math.unit(0.81, "feet"),
  31236. name: "Hand (Four Fingers)",
  31237. image: {
  31238. source: "./media/characters/theo-pangolin/hand-four.svg"
  31239. }
  31240. },
  31241. handThree: {
  31242. height: math.unit(0.81, "feet"),
  31243. name: "Hand (Three Fingers)",
  31244. image: {
  31245. source: "./media/characters/theo-pangolin/hand-three.svg"
  31246. }
  31247. },
  31248. headFront: {
  31249. height: math.unit(1.37, "feet"),
  31250. name: "Head (Front)",
  31251. image: {
  31252. source: "./media/characters/theo-pangolin/head-front.svg"
  31253. }
  31254. },
  31255. headSide: {
  31256. height: math.unit(1.43, "feet"),
  31257. name: "Head (Side)",
  31258. image: {
  31259. source: "./media/characters/theo-pangolin/head-side.svg"
  31260. }
  31261. },
  31262. tongue: {
  31263. height: math.unit(2.29, "feet"),
  31264. name: "Tongue",
  31265. image: {
  31266. source: "./media/characters/theo-pangolin/tongue.svg"
  31267. }
  31268. },
  31269. },
  31270. [
  31271. {
  31272. name: "Normal",
  31273. height: math.unit(6, "feet")
  31274. },
  31275. {
  31276. name: "Macro",
  31277. height: math.unit(400, "feet"),
  31278. default: true
  31279. },
  31280. ]
  31281. ))
  31282. characterMakers.push(() => makeCharacter(
  31283. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31284. {
  31285. front: {
  31286. height: math.unit(6, "inches"),
  31287. weight: math.unit(0.036, "kg"),
  31288. name: "Front",
  31289. image: {
  31290. source: "./media/characters/renée/front.svg",
  31291. extra: 900 / 886,
  31292. bottom: 8 / 908
  31293. }
  31294. },
  31295. },
  31296. [
  31297. {
  31298. name: "Nano",
  31299. height: math.unit(1, "nm")
  31300. },
  31301. {
  31302. name: "Micro",
  31303. height: math.unit(1, "mm")
  31304. },
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(6, "inches")
  31308. },
  31309. {
  31310. name: "Macro",
  31311. height: math.unit(2000, "feet"),
  31312. default: true
  31313. },
  31314. {
  31315. name: "Megamacro",
  31316. height: math.unit(2, "km")
  31317. },
  31318. {
  31319. name: "Gigamacro",
  31320. height: math.unit(2000, "km")
  31321. },
  31322. {
  31323. name: "Teramacro",
  31324. height: math.unit(250000, "km")
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31330. {
  31331. front: {
  31332. height: math.unit(4, "meters"),
  31333. weight: math.unit(150, "kg"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/caledvwlch/front.svg",
  31337. extra: 1760 / 1551,
  31338. bottom: 28 / 1788
  31339. }
  31340. },
  31341. side: {
  31342. height: math.unit(4, "meters"),
  31343. weight: math.unit(150, "kg"),
  31344. name: "Side",
  31345. image: {
  31346. source: "./media/characters/caledvwlch/side.svg",
  31347. extra: 1605 / 1536,
  31348. bottom: 31 / 1636
  31349. }
  31350. },
  31351. back: {
  31352. height: math.unit(4, "meters"),
  31353. weight: math.unit(150, "kg"),
  31354. name: "Back",
  31355. image: {
  31356. source: "./media/characters/caledvwlch/back.svg",
  31357. extra: 1635 / 1565,
  31358. bottom: 27 / 1662
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "\"Incognito\"",
  31365. height: math.unit(4, "meters")
  31366. },
  31367. {
  31368. name: "Small rampage",
  31369. height: math.unit(600, "meters")
  31370. },
  31371. {
  31372. name: "Mega",
  31373. height: math.unit(30, "km")
  31374. },
  31375. {
  31376. name: "Home-size",
  31377. height: math.unit(50, "km"),
  31378. default: true
  31379. },
  31380. {
  31381. name: "Giga",
  31382. height: math.unit(300, "km")
  31383. },
  31384. {
  31385. name: "Lounging",
  31386. height: math.unit(11000, "km")
  31387. },
  31388. {
  31389. name: "Planet snacking",
  31390. height: math.unit(2000000, "km")
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31396. {
  31397. front: {
  31398. height: math.unit(6, "feet"),
  31399. weight: math.unit(215, "lb"),
  31400. name: "Front",
  31401. image: {
  31402. source: "./media/characters/sapphire-svell/front.svg",
  31403. extra: 495 / 455,
  31404. bottom: 20 / 515
  31405. }
  31406. },
  31407. back: {
  31408. height: math.unit(6, "feet"),
  31409. weight: math.unit(216, "lb"),
  31410. name: "Back",
  31411. image: {
  31412. source: "./media/characters/sapphire-svell/back.svg",
  31413. extra: 497 / 477,
  31414. bottom: 7 / 504
  31415. }
  31416. },
  31417. maw: {
  31418. height: math.unit(1.57, "feet"),
  31419. name: "Maw",
  31420. image: {
  31421. source: "./media/characters/sapphire-svell/maw.svg"
  31422. }
  31423. },
  31424. foot: {
  31425. height: math.unit(1.07, "feet"),
  31426. name: "Foot",
  31427. image: {
  31428. source: "./media/characters/sapphire-svell/foot.svg"
  31429. }
  31430. },
  31431. toering: {
  31432. height: math.unit(1.7, "inch"),
  31433. name: "Toering",
  31434. image: {
  31435. source: "./media/characters/sapphire-svell/toering.svg"
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(300, "feet"),
  31443. default: true
  31444. },
  31445. {
  31446. name: "Augmented",
  31447. height: math.unit(1250, "feet")
  31448. },
  31449. {
  31450. name: "Unleashed",
  31451. height: math.unit(3000, "feet")
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31457. {
  31458. side: {
  31459. height: math.unit(2 + 3 / 12, "feet"),
  31460. weight: math.unit(110, "lb"),
  31461. name: "Side",
  31462. image: {
  31463. source: "./media/characters/glitch-flux/side.svg",
  31464. extra: 997 / 805,
  31465. bottom: 20 / 1017
  31466. }
  31467. },
  31468. },
  31469. [
  31470. {
  31471. name: "Normal",
  31472. height: math.unit(2 + 3 / 12, "feet"),
  31473. default: true
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31479. {
  31480. front: {
  31481. height: math.unit(4, "meters"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/mid/front.svg",
  31485. extra: 507 / 476,
  31486. bottom: 17 / 524
  31487. }
  31488. },
  31489. back: {
  31490. height: math.unit(4, "meters"),
  31491. name: "Back",
  31492. image: {
  31493. source: "./media/characters/mid/back.svg",
  31494. extra: 519 / 487,
  31495. bottom: 7 / 526
  31496. }
  31497. },
  31498. stuck: {
  31499. height: math.unit(2.2, "meters"),
  31500. name: "Stuck",
  31501. image: {
  31502. source: "./media/characters/mid/stuck.svg",
  31503. extra: 1951 / 1869,
  31504. bottom: 88 / 2039
  31505. }
  31506. }
  31507. },
  31508. [
  31509. {
  31510. name: "Normal",
  31511. height: math.unit(4, "meters"),
  31512. default: true
  31513. },
  31514. {
  31515. name: "Big",
  31516. height: math.unit(10, "meters")
  31517. },
  31518. {
  31519. name: "Macro",
  31520. height: math.unit(800, "meters")
  31521. },
  31522. {
  31523. name: "Megamacro",
  31524. height: math.unit(100, "km")
  31525. },
  31526. {
  31527. name: "Overgrown",
  31528. height: math.unit(1, "parsec")
  31529. },
  31530. ]
  31531. ))
  31532. characterMakers.push(() => makeCharacter(
  31533. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31534. {
  31535. front: {
  31536. height: math.unit(2.5, "meters"),
  31537. weight: math.unit(225, "kg"),
  31538. name: "Front",
  31539. image: {
  31540. source: "./media/characters/iris/front.svg",
  31541. extra: 3348 / 3251,
  31542. bottom: 205 / 3553
  31543. }
  31544. },
  31545. maw: {
  31546. height: math.unit(0.56, "meter"),
  31547. name: "Maw",
  31548. image: {
  31549. source: "./media/characters/iris/maw.svg"
  31550. }
  31551. },
  31552. },
  31553. [
  31554. {
  31555. name: "Mewter cat",
  31556. height: math.unit(1.2, "meters")
  31557. },
  31558. {
  31559. name: "Minimacro",
  31560. height: math.unit(2.5, "meters"),
  31561. default: true
  31562. },
  31563. {
  31564. name: "Macro",
  31565. height: math.unit(180, "meters")
  31566. },
  31567. {
  31568. name: "Megamacro",
  31569. height: math.unit(2746, "meters")
  31570. },
  31571. ]
  31572. ))
  31573. characterMakers.push(() => makeCharacter(
  31574. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31575. {
  31576. front: {
  31577. height: math.unit(6, "feet"),
  31578. weight: math.unit(135, "lb"),
  31579. name: "Front",
  31580. image: {
  31581. source: "./media/characters/axel/front.svg",
  31582. extra: 908 / 908,
  31583. bottom: 58 / 966
  31584. }
  31585. },
  31586. side: {
  31587. height: math.unit(6, "feet"),
  31588. weight: math.unit(135, "lb"),
  31589. name: "Side",
  31590. image: {
  31591. source: "./media/characters/axel/side.svg",
  31592. extra: 958 / 958,
  31593. bottom: 11 / 969
  31594. }
  31595. },
  31596. back: {
  31597. height: math.unit(6, "feet"),
  31598. weight: math.unit(135, "lb"),
  31599. name: "Back",
  31600. image: {
  31601. source: "./media/characters/axel/back.svg",
  31602. extra: 887 / 887,
  31603. bottom: 34 / 921
  31604. }
  31605. },
  31606. head: {
  31607. height: math.unit(1.07, "feet"),
  31608. name: "Head",
  31609. image: {
  31610. source: "./media/characters/axel/head.svg"
  31611. }
  31612. },
  31613. beak: {
  31614. height: math.unit(1.4, "feet"),
  31615. name: "Beak",
  31616. image: {
  31617. source: "./media/characters/axel/beak.svg"
  31618. }
  31619. },
  31620. beakSide: {
  31621. height: math.unit(1.4, "feet"),
  31622. name: "Beak Side",
  31623. image: {
  31624. source: "./media/characters/axel/beak-side.svg"
  31625. }
  31626. },
  31627. sheath: {
  31628. height: math.unit(0.5, "feet"),
  31629. name: "Sheath",
  31630. image: {
  31631. source: "./media/characters/axel/sheath.svg"
  31632. }
  31633. },
  31634. dick: {
  31635. height: math.unit(0.98, "feet"),
  31636. name: "Dick",
  31637. image: {
  31638. source: "./media/characters/axel/dick.svg"
  31639. }
  31640. },
  31641. },
  31642. [
  31643. {
  31644. name: "Macro",
  31645. height: math.unit(68, "meters"),
  31646. default: true
  31647. },
  31648. ]
  31649. ))
  31650. characterMakers.push(() => makeCharacter(
  31651. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31652. {
  31653. front: {
  31654. height: math.unit(3.5, "meters"),
  31655. weight: math.unit(1200, "kg"),
  31656. name: "Front",
  31657. image: {
  31658. source: "./media/characters/joanna/front.svg",
  31659. extra: 1596 / 1488,
  31660. bottom: 29 / 1625
  31661. }
  31662. },
  31663. back: {
  31664. height: math.unit(3.5, "meters"),
  31665. weight: math.unit(1200, "kg"),
  31666. name: "Back",
  31667. image: {
  31668. source: "./media/characters/joanna/back.svg",
  31669. extra: 1594 / 1495,
  31670. bottom: 26 / 1620
  31671. }
  31672. },
  31673. frontShorts: {
  31674. height: math.unit(3.5, "meters"),
  31675. weight: math.unit(1200, "kg"),
  31676. name: "Front (Shorts)",
  31677. image: {
  31678. source: "./media/characters/joanna/front-shorts.svg",
  31679. extra: 1596 / 1488,
  31680. bottom: 29 / 1625
  31681. }
  31682. },
  31683. frontBiker: {
  31684. height: math.unit(3.5, "meters"),
  31685. weight: math.unit(1200, "kg"),
  31686. name: "Front (Biker)",
  31687. image: {
  31688. source: "./media/characters/joanna/front-biker.svg",
  31689. extra: 1596 / 1488,
  31690. bottom: 29 / 1625
  31691. }
  31692. },
  31693. backBiker: {
  31694. height: math.unit(3.5, "meters"),
  31695. weight: math.unit(1200, "kg"),
  31696. name: "Back (Biker)",
  31697. image: {
  31698. source: "./media/characters/joanna/back-biker.svg",
  31699. extra: 1594 / 1495,
  31700. bottom: 88 / 1682
  31701. }
  31702. },
  31703. bikeLeft: {
  31704. height: math.unit(2.4, "meters"),
  31705. weight: math.unit(1600, "kg"),
  31706. name: "Bike (Left)",
  31707. image: {
  31708. source: "./media/characters/joanna/bike-left.svg",
  31709. extra: 720 / 720,
  31710. bottom: 8 / 728
  31711. }
  31712. },
  31713. bikeRight: {
  31714. height: math.unit(2.4, "meters"),
  31715. weight: math.unit(1600, "kg"),
  31716. name: "Bike (Right)",
  31717. image: {
  31718. source: "./media/characters/joanna/bike-right.svg",
  31719. extra: 720 / 720,
  31720. bottom: 8 / 728
  31721. }
  31722. },
  31723. },
  31724. [
  31725. {
  31726. name: "Incognito",
  31727. height: math.unit(3.5, "meters")
  31728. },
  31729. {
  31730. name: "Casual Big",
  31731. height: math.unit(200, "meters")
  31732. },
  31733. {
  31734. name: "Macro",
  31735. height: math.unit(600, "meters")
  31736. },
  31737. {
  31738. name: "Original",
  31739. height: math.unit(20, "km"),
  31740. default: true
  31741. },
  31742. {
  31743. name: "Giga",
  31744. height: math.unit(400, "km")
  31745. },
  31746. {
  31747. name: "Lounging",
  31748. height: math.unit(1500, "km")
  31749. },
  31750. {
  31751. name: "Planetary",
  31752. height: math.unit(200000, "km")
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(6, "feet"),
  31761. weight: math.unit(150, "lb"),
  31762. name: "Front",
  31763. image: {
  31764. source: "./media/characters/hugo-sigil/front.svg",
  31765. extra: 522 / 500,
  31766. bottom: 2 / 524
  31767. }
  31768. },
  31769. back: {
  31770. height: math.unit(6, "feet"),
  31771. weight: math.unit(150, "lb"),
  31772. name: "Back",
  31773. image: {
  31774. source: "./media/characters/hugo-sigil/back.svg",
  31775. extra: 519 / 495,
  31776. bottom: 5 / 524
  31777. }
  31778. },
  31779. maw: {
  31780. height: math.unit(1.4, "feet"),
  31781. weight: math.unit(150, "lb"),
  31782. name: "Maw",
  31783. image: {
  31784. source: "./media/characters/hugo-sigil/maw.svg"
  31785. }
  31786. },
  31787. feet: {
  31788. height: math.unit(1.56, "feet"),
  31789. weight: math.unit(150, "lb"),
  31790. name: "Feet",
  31791. image: {
  31792. source: "./media/characters/hugo-sigil/feet.svg",
  31793. extra: 177 / 177,
  31794. bottom: 12 / 189
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "Normal",
  31801. height: math.unit(6, "feet")
  31802. },
  31803. {
  31804. name: "Macro",
  31805. height: math.unit(200, "feet"),
  31806. default: true
  31807. },
  31808. ]
  31809. ))
  31810. characterMakers.push(() => makeCharacter(
  31811. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31812. {
  31813. front: {
  31814. height: math.unit(6, "feet"),
  31815. weight: math.unit(150, "lb"),
  31816. name: "Front",
  31817. image: {
  31818. source: "./media/characters/peri/front.svg",
  31819. extra: 2354 / 2233,
  31820. bottom: 49 / 2403
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Really Small",
  31827. height: math.unit(1, "nm")
  31828. },
  31829. {
  31830. name: "Micro",
  31831. height: math.unit(4, "inches")
  31832. },
  31833. {
  31834. name: "Normal",
  31835. height: math.unit(7, "inches"),
  31836. default: true
  31837. },
  31838. {
  31839. name: "Macro",
  31840. height: math.unit(400, "feet")
  31841. },
  31842. {
  31843. name: "Megamacro",
  31844. height: math.unit(100, "miles")
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31850. {
  31851. frontSlim: {
  31852. height: math.unit(7, "feet"),
  31853. name: "Front (Slim)",
  31854. image: {
  31855. source: "./media/characters/issilora/front-slim.svg",
  31856. extra: 529 / 449,
  31857. bottom: 53 / 582
  31858. }
  31859. },
  31860. sideSlim: {
  31861. height: math.unit(7, "feet"),
  31862. name: "Side (Slim)",
  31863. image: {
  31864. source: "./media/characters/issilora/side-slim.svg",
  31865. extra: 570 / 480,
  31866. bottom: 30 / 600
  31867. }
  31868. },
  31869. backSlim: {
  31870. height: math.unit(7, "feet"),
  31871. name: "Back (Slim)",
  31872. image: {
  31873. source: "./media/characters/issilora/back-slim.svg",
  31874. extra: 537 / 455,
  31875. bottom: 46 / 583
  31876. }
  31877. },
  31878. frontBuff: {
  31879. height: math.unit(7, "feet"),
  31880. name: "Front (Buff)",
  31881. image: {
  31882. source: "./media/characters/issilora/front-buff.svg",
  31883. extra: 2310 / 2035,
  31884. bottom: 335 / 2645
  31885. }
  31886. },
  31887. head: {
  31888. height: math.unit(1.94, "feet"),
  31889. name: "Head",
  31890. image: {
  31891. source: "./media/characters/issilora/head.svg"
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Minimum",
  31898. height: math.unit(7, "feet")
  31899. },
  31900. {
  31901. name: "Comfortable",
  31902. height: math.unit(17, "feet")
  31903. },
  31904. {
  31905. name: "Fun Size",
  31906. height: math.unit(47, "feet")
  31907. },
  31908. {
  31909. name: "Natural Macro",
  31910. height: math.unit(137, "feet"),
  31911. default: true
  31912. },
  31913. {
  31914. name: "Maximum Kaiju",
  31915. height: math.unit(397, "feet")
  31916. },
  31917. ]
  31918. ))
  31919. characterMakers.push(() => makeCharacter(
  31920. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31921. {
  31922. front: {
  31923. height: math.unit(50 + 9/12, "feet"),
  31924. weight: math.unit(32.8, "tons"),
  31925. name: "Front",
  31926. image: {
  31927. source: "./media/characters/irb'iiritaahn/front.svg",
  31928. extra: 1878/1826,
  31929. bottom: 326/2204
  31930. }
  31931. },
  31932. back: {
  31933. height: math.unit(50 + 9/12, "feet"),
  31934. weight: math.unit(32.8, "tons"),
  31935. name: "Back",
  31936. image: {
  31937. source: "./media/characters/irb'iiritaahn/back.svg",
  31938. extra: 2052/2018,
  31939. bottom: 152/2204
  31940. }
  31941. },
  31942. head: {
  31943. height: math.unit(12.86, "feet"),
  31944. name: "Head",
  31945. image: {
  31946. source: "./media/characters/irb'iiritaahn/head.svg"
  31947. }
  31948. },
  31949. maw: {
  31950. height: math.unit(9.66, "feet"),
  31951. name: "Maw",
  31952. image: {
  31953. source: "./media/characters/irb'iiritaahn/maw.svg"
  31954. }
  31955. },
  31956. frontDick: {
  31957. height: math.unit(8.78461, "feet"),
  31958. name: "Front Dick",
  31959. image: {
  31960. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31961. }
  31962. },
  31963. rearDick: {
  31964. height: math.unit(8.78461, "feet"),
  31965. name: "Rear Dick",
  31966. image: {
  31967. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31968. }
  31969. },
  31970. rearDickUnfolded: {
  31971. height: math.unit(8.78, "feet"),
  31972. name: "Rear Dick (Unfolded)",
  31973. image: {
  31974. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31975. }
  31976. },
  31977. wings: {
  31978. height: math.unit(43, "feet"),
  31979. name: "Wings",
  31980. image: {
  31981. source: "./media/characters/irb'iiritaahn/wings.svg"
  31982. }
  31983. },
  31984. },
  31985. [
  31986. {
  31987. name: "Macro",
  31988. height: math.unit(50 + 9/12, "feet"),
  31989. default: true
  31990. },
  31991. ]
  31992. ))
  31993. characterMakers.push(() => makeCharacter(
  31994. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31995. {
  31996. front: {
  31997. height: math.unit(205, "cm"),
  31998. weight: math.unit(102, "kg"),
  31999. name: "Front",
  32000. image: {
  32001. source: "./media/characters/irbisgreif/front.svg",
  32002. extra: 785/706,
  32003. bottom: 13/798
  32004. }
  32005. },
  32006. back: {
  32007. height: math.unit(205, "cm"),
  32008. weight: math.unit(102, "kg"),
  32009. name: "Back",
  32010. image: {
  32011. source: "./media/characters/irbisgreif/back.svg",
  32012. extra: 713/701,
  32013. bottom: 26/739
  32014. }
  32015. },
  32016. frontDressed: {
  32017. height: math.unit(216, "cm"),
  32018. weight: math.unit(102, "kg"),
  32019. name: "Front-dressed",
  32020. image: {
  32021. source: "./media/characters/irbisgreif/front-dressed.svg",
  32022. extra: 902/776,
  32023. bottom: 14/916
  32024. }
  32025. },
  32026. sideDressed: {
  32027. height: math.unit(195, "cm"),
  32028. weight: math.unit(102, "kg"),
  32029. name: "Side-dressed",
  32030. image: {
  32031. source: "./media/characters/irbisgreif/side-dressed.svg",
  32032. extra: 788/688,
  32033. bottom: 21/809
  32034. }
  32035. },
  32036. backDressed: {
  32037. height: math.unit(216, "cm"),
  32038. weight: math.unit(102, "kg"),
  32039. name: "Back-dressed",
  32040. image: {
  32041. source: "./media/characters/irbisgreif/back-dressed.svg",
  32042. extra: 901/783,
  32043. bottom: 10/911
  32044. }
  32045. },
  32046. dick: {
  32047. height: math.unit(0.49, "feet"),
  32048. name: "Dick",
  32049. image: {
  32050. source: "./media/characters/irbisgreif/dick.svg"
  32051. }
  32052. },
  32053. wingTop: {
  32054. height: math.unit(1.93 , "feet"),
  32055. name: "Wing-top",
  32056. image: {
  32057. source: "./media/characters/irbisgreif/wing-top.svg"
  32058. }
  32059. },
  32060. wingBottom: {
  32061. height: math.unit(1.93 , "feet"),
  32062. name: "Wing-bottom",
  32063. image: {
  32064. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32065. }
  32066. },
  32067. },
  32068. [
  32069. {
  32070. name: "Normal",
  32071. height: math.unit(216, "cm"),
  32072. default: true
  32073. },
  32074. ]
  32075. ))
  32076. characterMakers.push(() => makeCharacter(
  32077. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32078. {
  32079. front: {
  32080. height: math.unit(6, "feet"),
  32081. weight: math.unit(150, "lb"),
  32082. name: "Front",
  32083. image: {
  32084. source: "./media/characters/pride/front.svg",
  32085. extra: 1299/1230,
  32086. bottom: 18/1317
  32087. }
  32088. },
  32089. },
  32090. [
  32091. {
  32092. name: "Normal",
  32093. height: math.unit(7, "feet")
  32094. },
  32095. {
  32096. name: "Mini-macro",
  32097. height: math.unit(11, "feet")
  32098. },
  32099. {
  32100. name: "Macro",
  32101. height: math.unit(15, "meters"),
  32102. default: true
  32103. },
  32104. {
  32105. name: "Macro+",
  32106. height: math.unit(40, "meters")
  32107. },
  32108. ]
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32112. {
  32113. front: {
  32114. height: math.unit(4 + 2 / 12, "feet"),
  32115. weight: math.unit(95, "lb"),
  32116. name: "Front",
  32117. image: {
  32118. source: "./media/characters/vaelophis-nyx/front.svg",
  32119. extra: 2532/2330,
  32120. bottom: 0/2532
  32121. }
  32122. },
  32123. back: {
  32124. height: math.unit(4 + 2 / 12, "feet"),
  32125. weight: math.unit(95, "lb"),
  32126. name: "Back",
  32127. image: {
  32128. source: "./media/characters/vaelophis-nyx/back.svg",
  32129. extra: 2484/2361,
  32130. bottom: 0/2484
  32131. }
  32132. },
  32133. feralSide: {
  32134. height: math.unit(2 + 1/12, "feet"),
  32135. weight: math.unit(20, "lb"),
  32136. name: "Feral (Side)",
  32137. image: {
  32138. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32139. extra: 1721/1581,
  32140. bottom: 70/1791
  32141. }
  32142. },
  32143. feralLazing: {
  32144. height: math.unit(1.08, "feet"),
  32145. weight: math.unit(20, "lb"),
  32146. name: "Feral (Lazing)",
  32147. image: {
  32148. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32149. extra: 822/822,
  32150. bottom: 248/1070
  32151. }
  32152. },
  32153. ear: {
  32154. height: math.unit(0.416, "feet"),
  32155. name: "Ear",
  32156. image: {
  32157. source: "./media/characters/vaelophis-nyx/ear.svg"
  32158. }
  32159. },
  32160. eye: {
  32161. height: math.unit(0.0748, "feet"),
  32162. name: "Eye",
  32163. image: {
  32164. source: "./media/characters/vaelophis-nyx/eye.svg"
  32165. }
  32166. },
  32167. mouth: {
  32168. height: math.unit(0.378, "feet"),
  32169. name: "Mouth",
  32170. image: {
  32171. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32172. }
  32173. },
  32174. spade: {
  32175. height: math.unit(0.55, "feet"),
  32176. name: "Spade",
  32177. image: {
  32178. source: "./media/characters/vaelophis-nyx/spade.svg"
  32179. }
  32180. },
  32181. },
  32182. [
  32183. {
  32184. name: "Normal",
  32185. height: math.unit(4 + 2/12, "feet"),
  32186. default: true
  32187. },
  32188. ]
  32189. ))
  32190. characterMakers.push(() => makeCharacter(
  32191. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32192. {
  32193. front: {
  32194. height: math.unit(7, "feet"),
  32195. weight: math.unit(231, "lb"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/flux/front.svg",
  32199. extra: 919/871,
  32200. bottom: 0/919
  32201. }
  32202. },
  32203. back: {
  32204. height: math.unit(7, "feet"),
  32205. weight: math.unit(231, "lb"),
  32206. name: "Back",
  32207. image: {
  32208. source: "./media/characters/flux/back.svg",
  32209. extra: 1040/992,
  32210. bottom: 0/1040
  32211. }
  32212. },
  32213. frontDressed: {
  32214. height: math.unit(7, "feet"),
  32215. weight: math.unit(231, "lb"),
  32216. name: "Front (Dressed)",
  32217. image: {
  32218. source: "./media/characters/flux/front-dressed.svg",
  32219. extra: 919/871,
  32220. bottom: 0/919
  32221. }
  32222. },
  32223. feralSide: {
  32224. height: math.unit(5, "feet"),
  32225. weight: math.unit(150, "lb"),
  32226. name: "Feral (Side)",
  32227. image: {
  32228. source: "./media/characters/flux/feral-side.svg",
  32229. extra: 598/528,
  32230. bottom: 28/626
  32231. }
  32232. },
  32233. head: {
  32234. height: math.unit(1.585, "feet"),
  32235. name: "Head",
  32236. image: {
  32237. source: "./media/characters/flux/head.svg"
  32238. }
  32239. },
  32240. headSide: {
  32241. height: math.unit(1.74, "feet"),
  32242. name: "Head (Side)",
  32243. image: {
  32244. source: "./media/characters/flux/head-side.svg"
  32245. }
  32246. },
  32247. headSideFire: {
  32248. height: math.unit(1.76, "feet"),
  32249. name: "Head (Side, Fire)",
  32250. image: {
  32251. source: "./media/characters/flux/head-side-fire.svg"
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(7, "feet"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32265. {
  32266. front: {
  32267. height: math.unit(9, "feet"),
  32268. weight: math.unit(1012, "lb"),
  32269. name: "Front",
  32270. image: {
  32271. source: "./media/characters/ulfra-lupae/front.svg",
  32272. extra: 1083/1011,
  32273. bottom: 67/1150
  32274. }
  32275. },
  32276. },
  32277. [
  32278. {
  32279. name: "Micro",
  32280. height: math.unit(6, "inches")
  32281. },
  32282. {
  32283. name: "Socializing",
  32284. height: math.unit(6 + 5/12, "feet")
  32285. },
  32286. {
  32287. name: "Normal",
  32288. height: math.unit(9, "feet"),
  32289. default: true
  32290. },
  32291. {
  32292. name: "Macro",
  32293. height: math.unit(150, "feet")
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32299. {
  32300. front: {
  32301. height: math.unit(5 + 2/12, "feet"),
  32302. weight: math.unit(120, "lb"),
  32303. name: "Front",
  32304. image: {
  32305. source: "./media/characters/timber/front.svg",
  32306. extra: 2814/2705,
  32307. bottom: 181/2995
  32308. }
  32309. },
  32310. },
  32311. [
  32312. {
  32313. name: "Normal",
  32314. height: math.unit(5 + 2/12, "feet"),
  32315. default: true
  32316. },
  32317. ]
  32318. ))
  32319. characterMakers.push(() => makeCharacter(
  32320. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32321. {
  32322. front: {
  32323. height: math.unit(9, "feet"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/nicki/front.svg",
  32327. extra: 1240/990,
  32328. bottom: 45/1285
  32329. },
  32330. form: "anthro",
  32331. default: true
  32332. },
  32333. side: {
  32334. height: math.unit(9, "feet"),
  32335. name: "Side",
  32336. image: {
  32337. source: "./media/characters/nicki/side.svg",
  32338. extra: 1047/973,
  32339. bottom: 61/1108
  32340. },
  32341. form: "anthro"
  32342. },
  32343. back: {
  32344. height: math.unit(9, "feet"),
  32345. name: "Back",
  32346. image: {
  32347. source: "./media/characters/nicki/back.svg",
  32348. extra: 1006/965,
  32349. bottom: 39/1045
  32350. },
  32351. form: "anthro"
  32352. },
  32353. taur: {
  32354. height: math.unit(15, "feet"),
  32355. name: "Taur",
  32356. image: {
  32357. source: "./media/characters/nicki/taur.svg",
  32358. extra: 1592/1347,
  32359. bottom: 0/1592
  32360. },
  32361. form: "taur",
  32362. default: true
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Normal",
  32368. height: math.unit(9, "feet"),
  32369. form: "anthro",
  32370. default: true
  32371. },
  32372. {
  32373. name: "Normal",
  32374. height: math.unit(15, "feet"),
  32375. form: "taur",
  32376. default: true
  32377. }
  32378. ],
  32379. {
  32380. "anthro": {
  32381. name: "Anthro",
  32382. default: true
  32383. },
  32384. "taur": {
  32385. name: "Taur"
  32386. }
  32387. }
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(7 + 10/12, "feet"),
  32394. weight: math.unit(3.5, "tons"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/lee/front.svg",
  32398. extra: 1773/1615,
  32399. bottom: 86/1859
  32400. }
  32401. },
  32402. hand: {
  32403. height: math.unit(1.78, "feet"),
  32404. name: "Hand",
  32405. image: {
  32406. source: "./media/characters/lee/hand.svg"
  32407. }
  32408. },
  32409. maw: {
  32410. height: math.unit(1.18, "feet"),
  32411. name: "Maw",
  32412. image: {
  32413. source: "./media/characters/lee/maw.svg"
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Normal",
  32420. height: math.unit(7 + 10/12, "feet"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32427. {
  32428. front: {
  32429. height: math.unit(9, "feet"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/guti/front.svg",
  32433. extra: 4551/4355,
  32434. bottom: 123/4674
  32435. }
  32436. },
  32437. tongue: {
  32438. height: math.unit(1, "feet"),
  32439. name: "Tongue",
  32440. image: {
  32441. source: "./media/characters/guti/tongue.svg"
  32442. }
  32443. },
  32444. paw: {
  32445. height: math.unit(1.18, "feet"),
  32446. name: "Paw",
  32447. image: {
  32448. source: "./media/characters/guti/paw.svg"
  32449. }
  32450. },
  32451. },
  32452. [
  32453. {
  32454. name: "Normal",
  32455. height: math.unit(9, "feet"),
  32456. default: true
  32457. },
  32458. ]
  32459. ))
  32460. characterMakers.push(() => makeCharacter(
  32461. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32462. {
  32463. side: {
  32464. height: math.unit(5, "meters"),
  32465. name: "Side",
  32466. image: {
  32467. source: "./media/characters/vesper/side.svg",
  32468. extra: 1605/1518,
  32469. bottom: 0/1605
  32470. }
  32471. },
  32472. },
  32473. [
  32474. {
  32475. name: "Small",
  32476. height: math.unit(5, "meters")
  32477. },
  32478. {
  32479. name: "Sage",
  32480. height: math.unit(100, "meters"),
  32481. default: true
  32482. },
  32483. {
  32484. name: "Fun Size",
  32485. height: math.unit(600, "meters")
  32486. },
  32487. {
  32488. name: "Goddess",
  32489. height: math.unit(20000, "km")
  32490. },
  32491. {
  32492. name: "Maximum",
  32493. height: math.unit(5, "galaxies")
  32494. },
  32495. ]
  32496. ))
  32497. characterMakers.push(() => makeCharacter(
  32498. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32499. {
  32500. front: {
  32501. height: math.unit(6 + 3/12, "feet"),
  32502. weight: math.unit(190, "lb"),
  32503. name: "Front",
  32504. image: {
  32505. source: "./media/characters/gawain/front.svg",
  32506. extra: 2222/2139,
  32507. bottom: 90/2312
  32508. }
  32509. },
  32510. back: {
  32511. height: math.unit(6 + 3/12, "feet"),
  32512. weight: math.unit(190, "lb"),
  32513. name: "Back",
  32514. image: {
  32515. source: "./media/characters/gawain/back.svg",
  32516. extra: 2199/2111,
  32517. bottom: 73/2272
  32518. }
  32519. },
  32520. },
  32521. [
  32522. {
  32523. name: "Normal",
  32524. height: math.unit(6 + 3/12, "feet"),
  32525. default: true
  32526. },
  32527. ]
  32528. ))
  32529. characterMakers.push(() => makeCharacter(
  32530. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32531. {
  32532. side: {
  32533. height: math.unit(3.5, "meters"),
  32534. weight: math.unit(16000, "lb"),
  32535. name: "Side",
  32536. image: {
  32537. source: "./media/characters/dascalti/side.svg",
  32538. extra: 392/273,
  32539. bottom: 47/439
  32540. }
  32541. },
  32542. breath: {
  32543. height: math.unit(7.4, "feet"),
  32544. name: "Breath",
  32545. image: {
  32546. source: "./media/characters/dascalti/breath.svg"
  32547. }
  32548. },
  32549. fed: {
  32550. height: math.unit(3.6, "meters"),
  32551. weight: math.unit(16000, "lb"),
  32552. name: "Fed",
  32553. image: {
  32554. source: "./media/characters/dascalti/fed.svg",
  32555. extra: 1419/820,
  32556. bottom: 95/1514
  32557. }
  32558. },
  32559. },
  32560. [
  32561. {
  32562. name: "Normal",
  32563. height: math.unit(3.5, "meters"),
  32564. default: true
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32570. {
  32571. front: {
  32572. height: math.unit(3 + 5/12, "feet"),
  32573. name: "Front",
  32574. image: {
  32575. source: "./media/characters/mauve/front.svg",
  32576. extra: 1126/1033,
  32577. bottom: 65/1191
  32578. }
  32579. },
  32580. side: {
  32581. height: math.unit(3 + 5/12, "feet"),
  32582. name: "Side",
  32583. image: {
  32584. source: "./media/characters/mauve/side.svg",
  32585. extra: 1089/1001,
  32586. bottom: 29/1118
  32587. }
  32588. },
  32589. back: {
  32590. height: math.unit(3 + 5/12, "feet"),
  32591. name: "Back",
  32592. image: {
  32593. source: "./media/characters/mauve/back.svg",
  32594. extra: 1173/1053,
  32595. bottom: 109/1282
  32596. }
  32597. },
  32598. },
  32599. [
  32600. {
  32601. name: "Normal",
  32602. height: math.unit(3 + 5/12, "feet"),
  32603. default: true
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32609. {
  32610. front: {
  32611. height: math.unit(6 + 3/12, "feet"),
  32612. weight: math.unit(430, "lb"),
  32613. name: "Front",
  32614. image: {
  32615. source: "./media/characters/carlos/front.svg",
  32616. extra: 1964/1913,
  32617. bottom: 70/2034
  32618. }
  32619. },
  32620. },
  32621. [
  32622. {
  32623. name: "Normal",
  32624. height: math.unit(6 + 3/12, "feet"),
  32625. default: true
  32626. },
  32627. ]
  32628. ))
  32629. characterMakers.push(() => makeCharacter(
  32630. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32631. {
  32632. back: {
  32633. height: math.unit(5 + 10/12, "feet"),
  32634. weight: math.unit(200, "lb"),
  32635. name: "Back",
  32636. image: {
  32637. source: "./media/characters/jax/back.svg",
  32638. extra: 764/739,
  32639. bottom: 25/789
  32640. }
  32641. },
  32642. },
  32643. [
  32644. {
  32645. name: "Normal",
  32646. height: math.unit(5 + 10/12, "feet"),
  32647. default: true
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32653. {
  32654. front: {
  32655. height: math.unit(8, "feet"),
  32656. weight: math.unit(250, "lb"),
  32657. name: "Front",
  32658. image: {
  32659. source: "./media/characters/eikthynir/front.svg",
  32660. extra: 1332/1166,
  32661. bottom: 82/1414
  32662. }
  32663. },
  32664. back: {
  32665. height: math.unit(8, "feet"),
  32666. weight: math.unit(250, "lb"),
  32667. name: "Back",
  32668. image: {
  32669. source: "./media/characters/eikthynir/back.svg",
  32670. extra: 1342/1190,
  32671. bottom: 19/1361
  32672. }
  32673. },
  32674. dick: {
  32675. height: math.unit(2.35, "feet"),
  32676. name: "Dick",
  32677. image: {
  32678. source: "./media/characters/eikthynir/dick.svg"
  32679. }
  32680. },
  32681. },
  32682. [
  32683. {
  32684. name: "Normal",
  32685. height: math.unit(8, "feet"),
  32686. default: true
  32687. },
  32688. ]
  32689. ))
  32690. characterMakers.push(() => makeCharacter(
  32691. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32692. {
  32693. front: {
  32694. height: math.unit(99, "meters"),
  32695. weight: math.unit(13000, "tons"),
  32696. name: "Front",
  32697. image: {
  32698. source: "./media/characters/zlmos/front.svg",
  32699. extra: 2202/1992,
  32700. bottom: 315/2517
  32701. }
  32702. },
  32703. },
  32704. [
  32705. {
  32706. name: "Macro",
  32707. height: math.unit(99, "meters"),
  32708. default: true
  32709. },
  32710. ]
  32711. ))
  32712. characterMakers.push(() => makeCharacter(
  32713. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32714. {
  32715. front: {
  32716. height: math.unit(6 + 5/12, "feet"),
  32717. name: "Front",
  32718. image: {
  32719. source: "./media/characters/purri/front.svg",
  32720. extra: 1698/1610,
  32721. bottom: 32/1730
  32722. }
  32723. },
  32724. frontAlt: {
  32725. height: math.unit(6 + 5/12, "feet"),
  32726. name: "Front (Alt)",
  32727. image: {
  32728. source: "./media/characters/purri/front-alt.svg",
  32729. extra: 450/420,
  32730. bottom: 26/476
  32731. }
  32732. },
  32733. boots: {
  32734. height: math.unit(5.5, "feet"),
  32735. name: "Boots",
  32736. image: {
  32737. source: "./media/characters/purri/boots.svg",
  32738. extra: 905/853,
  32739. bottom: 18/923
  32740. }
  32741. },
  32742. lying: {
  32743. height: math.unit(2, "feet"),
  32744. name: "Lying",
  32745. image: {
  32746. source: "./media/characters/purri/lying.svg",
  32747. extra: 940/843,
  32748. bottom: 146/1086
  32749. }
  32750. },
  32751. devious: {
  32752. height: math.unit(1.77, "feet"),
  32753. name: "Devious",
  32754. image: {
  32755. source: "./media/characters/purri/devious.svg",
  32756. extra: 1440/1155,
  32757. bottom: 147/1587
  32758. }
  32759. },
  32760. bean: {
  32761. height: math.unit(1.94, "feet"),
  32762. name: "Bean",
  32763. image: {
  32764. source: "./media/characters/purri/bean.svg"
  32765. }
  32766. },
  32767. },
  32768. [
  32769. {
  32770. name: "Micro",
  32771. height: math.unit(1, "mm")
  32772. },
  32773. {
  32774. name: "Normal",
  32775. height: math.unit(6 + 5/12, "feet"),
  32776. default: true
  32777. },
  32778. {
  32779. name: "Macro :3c",
  32780. height: math.unit(2, "miles")
  32781. },
  32782. ]
  32783. ))
  32784. characterMakers.push(() => makeCharacter(
  32785. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32786. {
  32787. front: {
  32788. height: math.unit(6 + 2/12, "feet"),
  32789. weight: math.unit(250, "lb"),
  32790. name: "Front",
  32791. image: {
  32792. source: "./media/characters/moonlight/front.svg",
  32793. extra: 1044/908,
  32794. bottom: 56/1100
  32795. }
  32796. },
  32797. feral: {
  32798. height: math.unit(3 + 1/12, "feet"),
  32799. weight: math.unit(50, "kg"),
  32800. name: "Feral",
  32801. image: {
  32802. source: "./media/characters/moonlight/feral.svg",
  32803. extra: 3705/2791,
  32804. bottom: 145/3850
  32805. }
  32806. },
  32807. paw: {
  32808. height: math.unit(1, "feet"),
  32809. name: "Paw",
  32810. image: {
  32811. source: "./media/characters/moonlight/paw.svg"
  32812. }
  32813. },
  32814. paws: {
  32815. height: math.unit(0.98, "feet"),
  32816. name: "Paws",
  32817. image: {
  32818. source: "./media/characters/moonlight/paws.svg",
  32819. extra: 939/939,
  32820. bottom: 50/989
  32821. }
  32822. },
  32823. mouth: {
  32824. height: math.unit(0.48, "feet"),
  32825. name: "Mouth",
  32826. image: {
  32827. source: "./media/characters/moonlight/mouth.svg"
  32828. }
  32829. },
  32830. dick: {
  32831. height: math.unit(1.46, "feet"),
  32832. name: "Dick",
  32833. image: {
  32834. source: "./media/characters/moonlight/dick.svg"
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Normal",
  32841. height: math.unit(6 + 2/12, "feet"),
  32842. default: true
  32843. },
  32844. {
  32845. name: "Macro",
  32846. height: math.unit(300, "feet")
  32847. },
  32848. {
  32849. name: "Macro+",
  32850. height: math.unit(1, "mile")
  32851. },
  32852. {
  32853. name: "Mt. Moon",
  32854. height: math.unit(5, "miles")
  32855. },
  32856. {
  32857. name: "Megamacro",
  32858. height: math.unit(15, "miles")
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32864. {
  32865. back: {
  32866. height: math.unit(6, "feet"),
  32867. weight: math.unit(150, "lb"),
  32868. name: "Back",
  32869. image: {
  32870. source: "./media/characters/sylen/back.svg",
  32871. extra: 1335/1273,
  32872. bottom: 107/1442
  32873. }
  32874. },
  32875. },
  32876. [
  32877. {
  32878. name: "Normal",
  32879. height: math.unit(5 + 5/12, "feet")
  32880. },
  32881. {
  32882. name: "Megamacro",
  32883. height: math.unit(3, "miles"),
  32884. default: true
  32885. },
  32886. ]
  32887. ))
  32888. characterMakers.push(() => makeCharacter(
  32889. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32890. {
  32891. front: {
  32892. height: math.unit(6, "feet"),
  32893. weight: math.unit(190, "lb"),
  32894. name: "Front",
  32895. image: {
  32896. source: "./media/characters/huttser/front.svg",
  32897. extra: 1152/1058,
  32898. bottom: 23/1175
  32899. }
  32900. },
  32901. side: {
  32902. height: math.unit(6, "feet"),
  32903. weight: math.unit(190, "lb"),
  32904. name: "Side",
  32905. image: {
  32906. source: "./media/characters/huttser/side.svg",
  32907. extra: 1174/1065,
  32908. bottom: 18/1192
  32909. }
  32910. },
  32911. back: {
  32912. height: math.unit(6, "feet"),
  32913. weight: math.unit(190, "lb"),
  32914. name: "Back",
  32915. image: {
  32916. source: "./media/characters/huttser/back.svg",
  32917. extra: 1158/1056,
  32918. bottom: 12/1170
  32919. }
  32920. },
  32921. },
  32922. [
  32923. ]
  32924. ))
  32925. characterMakers.push(() => makeCharacter(
  32926. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32927. {
  32928. side: {
  32929. height: math.unit(12 + 9/12, "feet"),
  32930. weight: math.unit(15000, "lb"),
  32931. name: "Side",
  32932. image: {
  32933. source: "./media/characters/faan/side.svg",
  32934. extra: 2747/2697,
  32935. bottom: 0/2747
  32936. }
  32937. },
  32938. front: {
  32939. height: math.unit(12 + 9/12, "feet"),
  32940. weight: math.unit(15000, "lb"),
  32941. name: "Front",
  32942. image: {
  32943. source: "./media/characters/faan/front.svg",
  32944. extra: 607/571,
  32945. bottom: 24/631
  32946. }
  32947. },
  32948. head: {
  32949. height: math.unit(2.85, "feet"),
  32950. name: "Head",
  32951. image: {
  32952. source: "./media/characters/faan/head.svg"
  32953. }
  32954. },
  32955. headAlt: {
  32956. height: math.unit(3.13, "feet"),
  32957. name: "Head-alt",
  32958. image: {
  32959. source: "./media/characters/faan/head-alt.svg"
  32960. }
  32961. },
  32962. },
  32963. [
  32964. {
  32965. name: "Normal",
  32966. height: math.unit(12 + 9/12, "feet"),
  32967. default: true
  32968. },
  32969. ]
  32970. ))
  32971. characterMakers.push(() => makeCharacter(
  32972. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32973. {
  32974. front: {
  32975. height: math.unit(6, "feet"),
  32976. weight: math.unit(300, "lb"),
  32977. name: "Front",
  32978. image: {
  32979. source: "./media/characters/tanio/front.svg",
  32980. extra: 711/673,
  32981. bottom: 25/736
  32982. }
  32983. },
  32984. },
  32985. [
  32986. {
  32987. name: "Normal",
  32988. height: math.unit(6, "feet"),
  32989. default: true
  32990. },
  32991. ]
  32992. ))
  32993. characterMakers.push(() => makeCharacter(
  32994. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32995. {
  32996. front: {
  32997. height: math.unit(3, "inches"),
  32998. name: "Front",
  32999. image: {
  33000. source: "./media/characters/noboru/front.svg",
  33001. extra: 1039/932,
  33002. bottom: 18/1057
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Micro",
  33009. height: math.unit(3, "inches"),
  33010. default: true
  33011. },
  33012. ]
  33013. ))
  33014. characterMakers.push(() => makeCharacter(
  33015. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33016. {
  33017. front: {
  33018. height: math.unit(1.85, "meters"),
  33019. weight: math.unit(80, "kg"),
  33020. name: "Front",
  33021. image: {
  33022. source: "./media/characters/daniel-barrett/front.svg",
  33023. extra: 355/337,
  33024. bottom: 9/364
  33025. }
  33026. },
  33027. },
  33028. [
  33029. {
  33030. name: "Pico",
  33031. height: math.unit(0.0433, "mm")
  33032. },
  33033. {
  33034. name: "Nano",
  33035. height: math.unit(1.5, "mm")
  33036. },
  33037. {
  33038. name: "Micro",
  33039. height: math.unit(5.3, "cm"),
  33040. default: true
  33041. },
  33042. {
  33043. name: "Normal",
  33044. height: math.unit(1.85, "meters")
  33045. },
  33046. {
  33047. name: "Macro",
  33048. height: math.unit(64.7, "meters")
  33049. },
  33050. {
  33051. name: "Megamacro",
  33052. height: math.unit(2.26, "km")
  33053. },
  33054. {
  33055. name: "Gigamacro",
  33056. height: math.unit(79, "km")
  33057. },
  33058. {
  33059. name: "Teramacro",
  33060. height: math.unit(2765, "km")
  33061. },
  33062. {
  33063. name: "Petamacro",
  33064. height: math.unit(96678, "km")
  33065. },
  33066. ]
  33067. ))
  33068. characterMakers.push(() => makeCharacter(
  33069. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33070. {
  33071. front: {
  33072. height: math.unit(30, "meters"),
  33073. weight: math.unit(400, "tons"),
  33074. name: "Front",
  33075. image: {
  33076. source: "./media/characters/zeel/front.svg",
  33077. extra: 2599/2599,
  33078. bottom: 226/2825
  33079. }
  33080. },
  33081. },
  33082. [
  33083. {
  33084. name: "Macro",
  33085. height: math.unit(30, "meters"),
  33086. default: true
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33092. {
  33093. front: {
  33094. height: math.unit(6 + 7/12, "feet"),
  33095. weight: math.unit(210, "lb"),
  33096. name: "Front",
  33097. image: {
  33098. source: "./media/characters/tarn/front.svg",
  33099. extra: 3517/3220,
  33100. bottom: 91/3608
  33101. }
  33102. },
  33103. back: {
  33104. height: math.unit(6 + 7/12, "feet"),
  33105. weight: math.unit(210, "lb"),
  33106. name: "Back",
  33107. image: {
  33108. source: "./media/characters/tarn/back.svg",
  33109. extra: 3566/3241,
  33110. bottom: 34/3600
  33111. }
  33112. },
  33113. dick: {
  33114. height: math.unit(1.65, "feet"),
  33115. name: "Dick",
  33116. image: {
  33117. source: "./media/characters/tarn/dick.svg"
  33118. }
  33119. },
  33120. paw: {
  33121. height: math.unit(1.80, "feet"),
  33122. name: "Paw",
  33123. image: {
  33124. source: "./media/characters/tarn/paw.svg"
  33125. }
  33126. },
  33127. tongue: {
  33128. height: math.unit(0.97, "feet"),
  33129. name: "Tongue",
  33130. image: {
  33131. source: "./media/characters/tarn/tongue.svg"
  33132. }
  33133. },
  33134. },
  33135. [
  33136. {
  33137. name: "Micro",
  33138. height: math.unit(4, "inches")
  33139. },
  33140. {
  33141. name: "Normal",
  33142. height: math.unit(6 + 7/12, "feet"),
  33143. default: true
  33144. },
  33145. {
  33146. name: "Macro",
  33147. height: math.unit(300, "feet")
  33148. },
  33149. ]
  33150. ))
  33151. characterMakers.push(() => makeCharacter(
  33152. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33153. {
  33154. front: {
  33155. height: math.unit(5 + 7/12, "feet"),
  33156. weight: math.unit(80, "kg"),
  33157. name: "Front",
  33158. image: {
  33159. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33160. extra: 3023/2865,
  33161. bottom: 33/3056
  33162. }
  33163. },
  33164. back: {
  33165. height: math.unit(5 + 7/12, "feet"),
  33166. weight: math.unit(80, "kg"),
  33167. name: "Back",
  33168. image: {
  33169. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33170. extra: 3020/2886,
  33171. bottom: 30/3050
  33172. }
  33173. },
  33174. dick: {
  33175. height: math.unit(0.98, "feet"),
  33176. name: "Dick",
  33177. image: {
  33178. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33179. }
  33180. },
  33181. anatomy: {
  33182. height: math.unit(2.86, "feet"),
  33183. name: "Anatomy",
  33184. image: {
  33185. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33186. }
  33187. },
  33188. },
  33189. [
  33190. {
  33191. name: "Really Small",
  33192. height: math.unit(2, "inches")
  33193. },
  33194. {
  33195. name: "Micro",
  33196. height: math.unit(5.583, "inches")
  33197. },
  33198. {
  33199. name: "Normal",
  33200. height: math.unit(5 + 7/12, "feet"),
  33201. default: true
  33202. },
  33203. {
  33204. name: "Macro",
  33205. height: math.unit(67, "feet")
  33206. },
  33207. {
  33208. name: "Megamacro",
  33209. height: math.unit(134, "feet")
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33215. {
  33216. front: {
  33217. height: math.unit(9, "feet"),
  33218. weight: math.unit(120, "lb"),
  33219. name: "Front",
  33220. image: {
  33221. source: "./media/characters/sally/front.svg",
  33222. extra: 1506/1349,
  33223. bottom: 66/1572
  33224. }
  33225. },
  33226. },
  33227. [
  33228. {
  33229. name: "Normal",
  33230. height: math.unit(9, "feet"),
  33231. default: true
  33232. },
  33233. ]
  33234. ))
  33235. characterMakers.push(() => makeCharacter(
  33236. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33237. {
  33238. front: {
  33239. height: math.unit(8, "feet"),
  33240. weight: math.unit(900, "lb"),
  33241. name: "Front",
  33242. image: {
  33243. source: "./media/characters/owen/front.svg",
  33244. extra: 1761/1657,
  33245. bottom: 74/1835
  33246. }
  33247. },
  33248. side: {
  33249. height: math.unit(8, "feet"),
  33250. weight: math.unit(900, "lb"),
  33251. name: "Side",
  33252. image: {
  33253. source: "./media/characters/owen/side.svg",
  33254. extra: 1797/1734,
  33255. bottom: 30/1827
  33256. }
  33257. },
  33258. back: {
  33259. height: math.unit(8, "feet"),
  33260. weight: math.unit(900, "lb"),
  33261. name: "Back",
  33262. image: {
  33263. source: "./media/characters/owen/back.svg",
  33264. extra: 1796/1706,
  33265. bottom: 59/1855
  33266. }
  33267. },
  33268. maw: {
  33269. height: math.unit(1.76, "feet"),
  33270. name: "Maw",
  33271. image: {
  33272. source: "./media/characters/owen/maw.svg"
  33273. }
  33274. },
  33275. },
  33276. [
  33277. {
  33278. name: "Normal",
  33279. height: math.unit(8, "feet"),
  33280. default: true
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33286. {
  33287. front: {
  33288. height: math.unit(4, "feet"),
  33289. weight: math.unit(400, "lb"),
  33290. name: "Front",
  33291. image: {
  33292. source: "./media/characters/ryth/front.svg",
  33293. extra: 1920/1748,
  33294. bottom: 42/1962
  33295. }
  33296. },
  33297. back: {
  33298. height: math.unit(4, "feet"),
  33299. weight: math.unit(400, "lb"),
  33300. name: "Back",
  33301. image: {
  33302. source: "./media/characters/ryth/back.svg",
  33303. extra: 1897/1690,
  33304. bottom: 89/1986
  33305. }
  33306. },
  33307. mouth: {
  33308. height: math.unit(1.39, "feet"),
  33309. name: "Mouth",
  33310. image: {
  33311. source: "./media/characters/ryth/mouth.svg"
  33312. }
  33313. },
  33314. tailmaw: {
  33315. height: math.unit(1.23, "feet"),
  33316. name: "Tailmaw",
  33317. image: {
  33318. source: "./media/characters/ryth/tailmaw.svg"
  33319. }
  33320. },
  33321. goia: {
  33322. height: math.unit(4, "meters"),
  33323. weight: math.unit(10800, "lb"),
  33324. name: "Goia",
  33325. image: {
  33326. source: "./media/characters/ryth/goia.svg",
  33327. extra: 745/640,
  33328. bottom: 107/852
  33329. }
  33330. },
  33331. goiaFront: {
  33332. height: math.unit(4, "meters"),
  33333. weight: math.unit(10800, "lb"),
  33334. name: "Goia (Front)",
  33335. image: {
  33336. source: "./media/characters/ryth/goia-front.svg",
  33337. extra: 750/586,
  33338. bottom: 114/864
  33339. }
  33340. },
  33341. goiaMaw: {
  33342. height: math.unit(5.55, "feet"),
  33343. name: "Goia Maw",
  33344. image: {
  33345. source: "./media/characters/ryth/goia-maw.svg"
  33346. }
  33347. },
  33348. goiaForepaw: {
  33349. height: math.unit(3.5, "feet"),
  33350. name: "Goia Forepaw",
  33351. image: {
  33352. source: "./media/characters/ryth/goia-forepaw.svg"
  33353. }
  33354. },
  33355. goiaHindpaw: {
  33356. height: math.unit(5.55, "feet"),
  33357. name: "Goia Hindpaw",
  33358. image: {
  33359. source: "./media/characters/ryth/goia-hindpaw.svg"
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Normal",
  33366. height: math.unit(4, "feet"),
  33367. default: true
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33373. {
  33374. front: {
  33375. height: math.unit(7, "feet"),
  33376. weight: math.unit(180, "lb"),
  33377. name: "Front",
  33378. image: {
  33379. source: "./media/characters/necrolance/front.svg",
  33380. extra: 1062/947,
  33381. bottom: 41/1103
  33382. }
  33383. },
  33384. back: {
  33385. height: math.unit(7, "feet"),
  33386. weight: math.unit(180, "lb"),
  33387. name: "Back",
  33388. image: {
  33389. source: "./media/characters/necrolance/back.svg",
  33390. extra: 1045/984,
  33391. bottom: 14/1059
  33392. }
  33393. },
  33394. wing: {
  33395. height: math.unit(2.67, "feet"),
  33396. name: "Wing",
  33397. image: {
  33398. source: "./media/characters/necrolance/wing.svg"
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(7, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33412. {
  33413. front: {
  33414. height: math.unit(76, "meters"),
  33415. weight: math.unit(30000, "tons"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/tyler/front.svg",
  33419. extra: 1640/1640,
  33420. bottom: 114/1754
  33421. }
  33422. },
  33423. },
  33424. [
  33425. {
  33426. name: "Macro",
  33427. height: math.unit(76, "meters"),
  33428. default: true
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33434. {
  33435. front: {
  33436. height: math.unit(4 + 11/12, "feet"),
  33437. weight: math.unit(132, "lb"),
  33438. name: "Front",
  33439. image: {
  33440. source: "./media/characters/icey/front.svg",
  33441. extra: 2750/2550,
  33442. bottom: 33/2783
  33443. }
  33444. },
  33445. back: {
  33446. height: math.unit(4 + 11/12, "feet"),
  33447. weight: math.unit(132, "lb"),
  33448. name: "Back",
  33449. image: {
  33450. source: "./media/characters/icey/back.svg",
  33451. extra: 2624/2481,
  33452. bottom: 35/2659
  33453. }
  33454. },
  33455. },
  33456. [
  33457. {
  33458. name: "Normal",
  33459. height: math.unit(4 + 11/12, "feet"),
  33460. default: true
  33461. },
  33462. ]
  33463. ))
  33464. characterMakers.push(() => makeCharacter(
  33465. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33466. {
  33467. front: {
  33468. height: math.unit(100, "feet"),
  33469. weight: math.unit(0, "lb"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/smile/front.svg",
  33473. extra: 2983/2912,
  33474. bottom: 162/3145
  33475. }
  33476. },
  33477. back: {
  33478. height: math.unit(100, "feet"),
  33479. weight: math.unit(0, "lb"),
  33480. name: "Back",
  33481. image: {
  33482. source: "./media/characters/smile/back.svg",
  33483. extra: 3143/3031,
  33484. bottom: 91/3234
  33485. }
  33486. },
  33487. head: {
  33488. height: math.unit(26.3, "feet"),
  33489. weight: math.unit(0, "lb"),
  33490. name: "Head",
  33491. image: {
  33492. source: "./media/characters/smile/head.svg"
  33493. }
  33494. },
  33495. collar: {
  33496. height: math.unit(5.3, "feet"),
  33497. weight: math.unit(0, "lb"),
  33498. name: "Collar",
  33499. image: {
  33500. source: "./media/characters/smile/collar.svg"
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Macro",
  33507. height: math.unit(100, "feet"),
  33508. default: true
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33514. {
  33515. dragon: {
  33516. height: math.unit(26, "feet"),
  33517. weight: math.unit(36, "tons"),
  33518. name: "Dragon",
  33519. image: {
  33520. source: "./media/characters/arimphae/dragon.svg",
  33521. extra: 1574/983,
  33522. bottom: 357/1931
  33523. }
  33524. },
  33525. drake: {
  33526. height: math.unit(9, "feet"),
  33527. weight: math.unit(1.5, "tons"),
  33528. name: "Drake",
  33529. image: {
  33530. source: "./media/characters/arimphae/drake.svg",
  33531. extra: 1120/925,
  33532. bottom: 435/1555
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Small",
  33539. height: math.unit(26*5/9, "feet")
  33540. },
  33541. {
  33542. name: "Normal",
  33543. height: math.unit(26, "feet"),
  33544. default: true
  33545. },
  33546. ]
  33547. ))
  33548. characterMakers.push(() => makeCharacter(
  33549. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33550. {
  33551. front: {
  33552. height: math.unit(8 + 9/12, "feet"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/xander/front.svg",
  33556. extra: 1237/974,
  33557. bottom: 94/1331
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(8 + 9/12, "feet"),
  33565. default: true
  33566. },
  33567. {
  33568. name: "Gaze Grabber",
  33569. height: math.unit(13 + 8/12, "feet")
  33570. },
  33571. {
  33572. name: "Jaw Dropper",
  33573. height: math.unit(27, "feet")
  33574. },
  33575. {
  33576. name: "Show Stopper",
  33577. height: math.unit(136, "feet")
  33578. },
  33579. {
  33580. name: "Superstar",
  33581. height: math.unit(1.9e6, "miles")
  33582. },
  33583. ]
  33584. ))
  33585. characterMakers.push(() => makeCharacter(
  33586. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33587. {
  33588. side: {
  33589. height: math.unit(2100, "feet"),
  33590. name: "Side",
  33591. image: {
  33592. source: "./media/characters/osiris/side.svg",
  33593. extra: 1105/939,
  33594. bottom: 167/1272
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Macro",
  33601. height: math.unit(2100, "feet"),
  33602. default: true
  33603. },
  33604. ]
  33605. ))
  33606. characterMakers.push(() => makeCharacter(
  33607. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33608. {
  33609. front: {
  33610. height: math.unit(6 + 8/12, "feet"),
  33611. weight: math.unit(225, "lb"),
  33612. name: "Front",
  33613. image: {
  33614. source: "./media/characters/rhys-londe/front.svg",
  33615. extra: 2258/2141,
  33616. bottom: 188/2446
  33617. }
  33618. },
  33619. back: {
  33620. height: math.unit(6 + 8/12, "feet"),
  33621. weight: math.unit(225, "lb"),
  33622. name: "Back",
  33623. image: {
  33624. source: "./media/characters/rhys-londe/back.svg",
  33625. extra: 2237/2137,
  33626. bottom: 63/2300
  33627. }
  33628. },
  33629. frontNsfw: {
  33630. height: math.unit(6 + 8/12, "feet"),
  33631. weight: math.unit(225, "lb"),
  33632. name: "Front (NSFW)",
  33633. image: {
  33634. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33635. extra: 2258/2141,
  33636. bottom: 188/2446
  33637. }
  33638. },
  33639. backNsfw: {
  33640. height: math.unit(6 + 8/12, "feet"),
  33641. weight: math.unit(225, "lb"),
  33642. name: "Back (NSFW)",
  33643. image: {
  33644. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33645. extra: 2237/2137,
  33646. bottom: 63/2300
  33647. }
  33648. },
  33649. dick: {
  33650. height: math.unit(30, "inches"),
  33651. name: "Dick",
  33652. image: {
  33653. source: "./media/characters/rhys-londe/dick.svg"
  33654. }
  33655. },
  33656. maw: {
  33657. height: math.unit(1.6, "feet"),
  33658. name: "Maw",
  33659. image: {
  33660. source: "./media/characters/rhys-londe/maw.svg"
  33661. }
  33662. },
  33663. },
  33664. [
  33665. {
  33666. name: "Normal",
  33667. height: math.unit(6 + 8/12, "feet"),
  33668. default: true
  33669. },
  33670. ]
  33671. ))
  33672. characterMakers.push(() => makeCharacter(
  33673. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33674. {
  33675. front: {
  33676. height: math.unit(3 + 10/12, "feet"),
  33677. weight: math.unit(90, "lb"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/taivas-ensim/front.svg",
  33681. extra: 1327/1216,
  33682. bottom: 96/1423
  33683. }
  33684. },
  33685. back: {
  33686. height: math.unit(3 + 10/12, "feet"),
  33687. weight: math.unit(90, "lb"),
  33688. name: "Back",
  33689. image: {
  33690. source: "./media/characters/taivas-ensim/back.svg",
  33691. extra: 1355/1247,
  33692. bottom: 11/1366
  33693. }
  33694. },
  33695. frontNsfw: {
  33696. height: math.unit(3 + 10/12, "feet"),
  33697. weight: math.unit(90, "lb"),
  33698. name: "Front (NSFW)",
  33699. image: {
  33700. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33701. extra: 1327/1216,
  33702. bottom: 96/1423
  33703. }
  33704. },
  33705. backNsfw: {
  33706. height: math.unit(3 + 10/12, "feet"),
  33707. weight: math.unit(90, "lb"),
  33708. name: "Back (NSFW)",
  33709. image: {
  33710. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33711. extra: 1355/1247,
  33712. bottom: 11/1366
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Normal",
  33719. height: math.unit(3 + 10/12, "feet"),
  33720. default: true
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33726. {
  33727. front: {
  33728. height: math.unit(9 + 6/12, "feet"),
  33729. weight: math.unit(940, "lb"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/byliss/front.svg",
  33733. extra: 1327/1290,
  33734. bottom: 82/1409
  33735. }
  33736. },
  33737. back: {
  33738. height: math.unit(9 + 6/12, "feet"),
  33739. weight: math.unit(940, "lb"),
  33740. name: "Back",
  33741. image: {
  33742. source: "./media/characters/byliss/back.svg",
  33743. extra: 1376/1349,
  33744. bottom: 9/1385
  33745. }
  33746. },
  33747. frontNsfw: {
  33748. height: math.unit(9 + 6/12, "feet"),
  33749. weight: math.unit(940, "lb"),
  33750. name: "Front (NSFW)",
  33751. image: {
  33752. source: "./media/characters/byliss/front-nsfw.svg",
  33753. extra: 1327/1290,
  33754. bottom: 82/1409
  33755. }
  33756. },
  33757. backNsfw: {
  33758. height: math.unit(9 + 6/12, "feet"),
  33759. weight: math.unit(940, "lb"),
  33760. name: "Back (NSFW)",
  33761. image: {
  33762. source: "./media/characters/byliss/back-nsfw.svg",
  33763. extra: 1376/1349,
  33764. bottom: 9/1385
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(9 + 6/12, "feet"),
  33772. default: true
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(5 + 2/12, "feet"),
  33781. weight: math.unit(200, "lb"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/noraly/front.svg",
  33785. extra: 4985/4773,
  33786. bottom: 150/5135
  33787. }
  33788. },
  33789. full: {
  33790. height: math.unit(5 + 2/12, "feet"),
  33791. weight: math.unit(164, "lb"),
  33792. name: "Full",
  33793. image: {
  33794. source: "./media/characters/noraly/full.svg",
  33795. extra: 1114/1059,
  33796. bottom: 35/1149
  33797. }
  33798. },
  33799. fuller: {
  33800. height: math.unit(5 + 2/12, "feet"),
  33801. weight: math.unit(230, "lb"),
  33802. name: "Fuller",
  33803. image: {
  33804. source: "./media/characters/noraly/fuller.svg",
  33805. extra: 1114/1059,
  33806. bottom: 35/1149
  33807. }
  33808. },
  33809. fullest: {
  33810. height: math.unit(5 + 2/12, "feet"),
  33811. weight: math.unit(300, "lb"),
  33812. name: "Fullest",
  33813. image: {
  33814. source: "./media/characters/noraly/fullest.svg",
  33815. extra: 1114/1059,
  33816. bottom: 35/1149
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Normal",
  33823. height: math.unit(5 + 2/12, "feet"),
  33824. default: true
  33825. },
  33826. ]
  33827. ))
  33828. characterMakers.push(() => makeCharacter(
  33829. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33830. {
  33831. front: {
  33832. height: math.unit(5 + 2/12, "feet"),
  33833. weight: math.unit(210, "lb"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/pera/front.svg",
  33837. extra: 1560/1531,
  33838. bottom: 165/1725
  33839. }
  33840. },
  33841. back: {
  33842. height: math.unit(5 + 2/12, "feet"),
  33843. weight: math.unit(210, "lb"),
  33844. name: "Back",
  33845. image: {
  33846. source: "./media/characters/pera/back.svg",
  33847. extra: 1523/1493,
  33848. bottom: 152/1675
  33849. }
  33850. },
  33851. dick: {
  33852. height: math.unit(2.4, "feet"),
  33853. name: "Dick",
  33854. image: {
  33855. source: "./media/characters/pera/dick.svg"
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(5 + 2/12, "feet"),
  33863. default: true
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(12, "feet"),
  33872. weight: math.unit(3200, "lb"),
  33873. name: "Front",
  33874. image: {
  33875. source: "./media/characters/julian/front.svg",
  33876. extra: 2962/2701,
  33877. bottom: 184/3146
  33878. }
  33879. },
  33880. maw: {
  33881. height: math.unit(5.35, "feet"),
  33882. name: "Maw",
  33883. image: {
  33884. source: "./media/characters/julian/maw.svg"
  33885. }
  33886. },
  33887. paw: {
  33888. height: math.unit(3.07, "feet"),
  33889. name: "Paw",
  33890. image: {
  33891. source: "./media/characters/julian/paw.svg"
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Default",
  33898. height: math.unit(12, "feet"),
  33899. default: true
  33900. },
  33901. {
  33902. name: "Big",
  33903. height: math.unit(50, "feet")
  33904. },
  33905. {
  33906. name: "Really Big",
  33907. height: math.unit(1, "mile")
  33908. },
  33909. {
  33910. name: "Extremely Big",
  33911. height: math.unit(100, "miles")
  33912. },
  33913. {
  33914. name: "Planet Hugger",
  33915. height: math.unit(200, "megameters")
  33916. },
  33917. {
  33918. name: "Unreasonably Big",
  33919. height: math.unit(1e300, "meters")
  33920. },
  33921. ]
  33922. ))
  33923. characterMakers.push(() => makeCharacter(
  33924. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33925. {
  33926. solgooleo: {
  33927. height: math.unit(4, "meters"),
  33928. weight: math.unit(6000*1.5, "kg"),
  33929. volume: math.unit(6000, "liters"),
  33930. name: "Solgooleo",
  33931. image: {
  33932. source: "./media/characters/pi/solgooleo.svg",
  33933. extra: 388/331,
  33934. bottom: 29/417
  33935. }
  33936. },
  33937. },
  33938. [
  33939. {
  33940. name: "Normal",
  33941. height: math.unit(4, "meters"),
  33942. default: true
  33943. },
  33944. ]
  33945. ))
  33946. characterMakers.push(() => makeCharacter(
  33947. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33948. {
  33949. front: {
  33950. height: math.unit(8, "feet"),
  33951. weight: math.unit(4, "tons"),
  33952. name: "Front",
  33953. image: {
  33954. source: "./media/characters/shaun/front.svg",
  33955. extra: 503/495,
  33956. bottom: 20/523
  33957. }
  33958. },
  33959. back: {
  33960. height: math.unit(8, "feet"),
  33961. weight: math.unit(4, "tons"),
  33962. name: "Back",
  33963. image: {
  33964. source: "./media/characters/shaun/back.svg",
  33965. extra: 487/480,
  33966. bottom: 20/507
  33967. }
  33968. },
  33969. },
  33970. [
  33971. {
  33972. name: "Lorg",
  33973. height: math.unit(8, "feet"),
  33974. default: true
  33975. },
  33976. ]
  33977. ))
  33978. characterMakers.push(() => makeCharacter(
  33979. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33980. {
  33981. frontAnthro: {
  33982. height: math.unit(7, "feet"),
  33983. name: "Front",
  33984. image: {
  33985. source: "./media/characters/sini/front-anthro.svg",
  33986. extra: 726/678,
  33987. bottom: 35/761
  33988. },
  33989. form: "anthro",
  33990. default: true
  33991. },
  33992. backAnthro: {
  33993. height: math.unit(7, "feet"),
  33994. name: "Back",
  33995. image: {
  33996. source: "./media/characters/sini/back-anthro.svg",
  33997. extra: 743/701,
  33998. bottom: 12/755
  33999. },
  34000. form: "anthro",
  34001. },
  34002. frontAnthroNsfw: {
  34003. height: math.unit(7, "feet"),
  34004. name: "Front (NSFW)",
  34005. image: {
  34006. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34007. extra: 726/678,
  34008. bottom: 35/761
  34009. },
  34010. form: "anthro"
  34011. },
  34012. backAnthroNsfw: {
  34013. height: math.unit(7, "feet"),
  34014. name: "Back (NSFW)",
  34015. image: {
  34016. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34017. extra: 743/701,
  34018. bottom: 12/755
  34019. },
  34020. form: "anthro",
  34021. },
  34022. mawAnthro: {
  34023. height: math.unit(2.14, "feet"),
  34024. name: "Maw",
  34025. image: {
  34026. source: "./media/characters/sini/maw-anthro.svg"
  34027. },
  34028. form: "anthro"
  34029. },
  34030. dick: {
  34031. height: math.unit(1.45, "feet"),
  34032. name: "Dick",
  34033. image: {
  34034. source: "./media/characters/sini/dick-anthro.svg"
  34035. },
  34036. form: "anthro"
  34037. },
  34038. feral: {
  34039. height: math.unit(16, "feet"),
  34040. name: "Feral",
  34041. image: {
  34042. source: "./media/characters/sini/feral.svg",
  34043. extra: 814/605,
  34044. bottom: 11/825
  34045. },
  34046. form: "feral",
  34047. default: true
  34048. },
  34049. feralNsfw: {
  34050. height: math.unit(16, "feet"),
  34051. name: "Feral (NSFW)",
  34052. image: {
  34053. source: "./media/characters/sini/feral-nsfw.svg",
  34054. extra: 814/605,
  34055. bottom: 11/825
  34056. },
  34057. form: "feral"
  34058. },
  34059. mawFeral: {
  34060. height: math.unit(5.66, "feet"),
  34061. name: "Maw",
  34062. image: {
  34063. source: "./media/characters/sini/maw-feral.svg"
  34064. },
  34065. form: "feral",
  34066. },
  34067. pawFeral: {
  34068. height: math.unit(5.17, "feet"),
  34069. name: "Paw",
  34070. image: {
  34071. source: "./media/characters/sini/paw-feral.svg"
  34072. },
  34073. form: "feral",
  34074. },
  34075. rumpFeral: {
  34076. height: math.unit(13.11, "feet"),
  34077. name: "Rump",
  34078. image: {
  34079. source: "./media/characters/sini/rump-feral.svg"
  34080. },
  34081. form: "feral",
  34082. },
  34083. dickFeral: {
  34084. height: math.unit(1, "feet"),
  34085. name: "Dick",
  34086. image: {
  34087. source: "./media/characters/sini/dick-feral.svg"
  34088. },
  34089. form: "feral",
  34090. },
  34091. eyeFeral: {
  34092. height: math.unit(1.23, "feet"),
  34093. name: "Eye",
  34094. image: {
  34095. source: "./media/characters/sini/eye-feral.svg"
  34096. },
  34097. form: "feral",
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Normal",
  34103. height: math.unit(7, "feet"),
  34104. default: true,
  34105. form: "anthro"
  34106. },
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(16, "feet"),
  34110. default: true,
  34111. form: "feral"
  34112. },
  34113. ],
  34114. {
  34115. "anthro": {
  34116. name: "Anthro",
  34117. default: true
  34118. },
  34119. "feral": {
  34120. name: "Feral",
  34121. }
  34122. }
  34123. ))
  34124. characterMakers.push(() => makeCharacter(
  34125. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34126. {
  34127. side: {
  34128. height: math.unit(47.2, "meters"),
  34129. weight: math.unit(10000, "tons"),
  34130. name: "Side",
  34131. image: {
  34132. source: "./media/characters/raylldo/side.svg",
  34133. extra: 2363/642,
  34134. bottom: 221/2584
  34135. }
  34136. },
  34137. top: {
  34138. height: math.unit(240, "meters"),
  34139. weight: math.unit(10000, "tons"),
  34140. name: "Top",
  34141. image: {
  34142. source: "./media/characters/raylldo/top.svg"
  34143. }
  34144. },
  34145. bottom: {
  34146. height: math.unit(240, "meters"),
  34147. weight: math.unit(10000, "tons"),
  34148. name: "Bottom",
  34149. image: {
  34150. source: "./media/characters/raylldo/bottom.svg"
  34151. }
  34152. },
  34153. head: {
  34154. height: math.unit(38.6, "meters"),
  34155. name: "Head",
  34156. image: {
  34157. source: "./media/characters/raylldo/head.svg",
  34158. extra: 1335/1112,
  34159. bottom: 0/1335
  34160. }
  34161. },
  34162. maw: {
  34163. height: math.unit(16.37, "meters"),
  34164. name: "Maw",
  34165. image: {
  34166. source: "./media/characters/raylldo/maw.svg",
  34167. extra: 883/660,
  34168. bottom: 0/883
  34169. },
  34170. extraAttributes: {
  34171. preyCapacity: {
  34172. name: "Capacity",
  34173. power: 3,
  34174. type: "volume",
  34175. base: math.unit(1000, "people")
  34176. },
  34177. tongueSize: {
  34178. name: "Tongue Size",
  34179. power: 2,
  34180. type: "area",
  34181. base: math.unit(21, "m^2")
  34182. }
  34183. }
  34184. },
  34185. forepaw: {
  34186. height: math.unit(18, "meters"),
  34187. name: "Forepaw",
  34188. image: {
  34189. source: "./media/characters/raylldo/forepaw.svg"
  34190. }
  34191. },
  34192. hindpaw: {
  34193. height: math.unit(23, "meters"),
  34194. name: "Hindpaw",
  34195. image: {
  34196. source: "./media/characters/raylldo/hindpaw.svg"
  34197. }
  34198. },
  34199. genitals: {
  34200. height: math.unit(42, "meters"),
  34201. name: "Genitals",
  34202. image: {
  34203. source: "./media/characters/raylldo/genitals.svg"
  34204. }
  34205. },
  34206. },
  34207. [
  34208. {
  34209. name: "Normal",
  34210. height: math.unit(47.2, "meters"),
  34211. default: true
  34212. },
  34213. ]
  34214. ))
  34215. characterMakers.push(() => makeCharacter(
  34216. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34217. {
  34218. anthroFront: {
  34219. height: math.unit(9, "feet"),
  34220. weight: math.unit(600, "lb"),
  34221. name: "Anthro (Front)",
  34222. image: {
  34223. source: "./media/characters/glint/anthro-front.svg",
  34224. extra: 1097/1018,
  34225. bottom: 28/1125
  34226. }
  34227. },
  34228. anthroBack: {
  34229. height: math.unit(9, "feet"),
  34230. weight: math.unit(600, "lb"),
  34231. name: "Anthro (Back)",
  34232. image: {
  34233. source: "./media/characters/glint/anthro-back.svg",
  34234. extra: 1154/997,
  34235. bottom: 36/1190
  34236. }
  34237. },
  34238. feral: {
  34239. height: math.unit(11, "feet"),
  34240. weight: math.unit(50000, "lb"),
  34241. name: "Feral",
  34242. image: {
  34243. source: "./media/characters/glint/feral.svg",
  34244. extra: 3035/1585,
  34245. bottom: 1169/4204
  34246. }
  34247. },
  34248. dickAnthro: {
  34249. height: math.unit(0.7, "meters"),
  34250. name: "Dick (Anthro)",
  34251. image: {
  34252. source: "./media/characters/glint/dick-anthro.svg"
  34253. }
  34254. },
  34255. dickFeral: {
  34256. height: math.unit(2.65, "meters"),
  34257. name: "Dick (Feral)",
  34258. image: {
  34259. source: "./media/characters/glint/dick-feral.svg"
  34260. }
  34261. },
  34262. slitHidden: {
  34263. height: math.unit(5.85, "meters"),
  34264. name: "Slit (Hidden)",
  34265. image: {
  34266. source: "./media/characters/glint/slit-hidden.svg"
  34267. }
  34268. },
  34269. slitErect: {
  34270. height: math.unit(5.85, "meters"),
  34271. name: "Slit (Erect)",
  34272. image: {
  34273. source: "./media/characters/glint/slit-erect.svg"
  34274. }
  34275. },
  34276. mawAnthro: {
  34277. height: math.unit(0.63, "meters"),
  34278. name: "Maw (Anthro)",
  34279. image: {
  34280. source: "./media/characters/glint/maw.svg"
  34281. }
  34282. },
  34283. mawFeral: {
  34284. height: math.unit(2.89, "meters"),
  34285. name: "Maw (Feral)",
  34286. image: {
  34287. source: "./media/characters/glint/maw.svg"
  34288. }
  34289. },
  34290. },
  34291. [
  34292. {
  34293. name: "Normal",
  34294. height: math.unit(9, "feet"),
  34295. default: true
  34296. },
  34297. ]
  34298. ))
  34299. characterMakers.push(() => makeCharacter(
  34300. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34301. {
  34302. side: {
  34303. height: math.unit(15, "feet"),
  34304. weight: math.unit(5000, "kg"),
  34305. name: "Side",
  34306. image: {
  34307. source: "./media/characters/kairne/side.svg",
  34308. extra: 979/811,
  34309. bottom: 13/992
  34310. }
  34311. },
  34312. front: {
  34313. height: math.unit(15, "feet"),
  34314. weight: math.unit(5000, "kg"),
  34315. name: "Front",
  34316. image: {
  34317. source: "./media/characters/kairne/front.svg",
  34318. extra: 908/814,
  34319. bottom: 26/934
  34320. }
  34321. },
  34322. sideNsfw: {
  34323. height: math.unit(15, "feet"),
  34324. weight: math.unit(5000, "kg"),
  34325. name: "Side (NSFW)",
  34326. image: {
  34327. source: "./media/characters/kairne/side-nsfw.svg",
  34328. extra: 979/811,
  34329. bottom: 13/992
  34330. }
  34331. },
  34332. frontNsfw: {
  34333. height: math.unit(15, "feet"),
  34334. weight: math.unit(5000, "kg"),
  34335. name: "Front (NSFW)",
  34336. image: {
  34337. source: "./media/characters/kairne/front-nsfw.svg",
  34338. extra: 908/814,
  34339. bottom: 26/934
  34340. }
  34341. },
  34342. dickCaged: {
  34343. height: math.unit(0.65, "meters"),
  34344. name: "Dick-caged",
  34345. image: {
  34346. source: "./media/characters/kairne/dick-caged.svg"
  34347. }
  34348. },
  34349. dick: {
  34350. height: math.unit(0.79, "meters"),
  34351. name: "Dick",
  34352. image: {
  34353. source: "./media/characters/kairne/dick.svg"
  34354. }
  34355. },
  34356. genitals: {
  34357. height: math.unit(1.29, "meters"),
  34358. name: "Genitals",
  34359. image: {
  34360. source: "./media/characters/kairne/genitals.svg"
  34361. }
  34362. },
  34363. maw: {
  34364. height: math.unit(1.73, "meters"),
  34365. name: "Maw",
  34366. image: {
  34367. source: "./media/characters/kairne/maw.svg"
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(15, "feet"),
  34375. default: true
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34381. {
  34382. front: {
  34383. height: math.unit(5 + 8/12, "feet"),
  34384. weight: math.unit(139, "lb"),
  34385. name: "Front",
  34386. image: {
  34387. source: "./media/characters/biscuit-jackal/front.svg",
  34388. extra: 2106/1961,
  34389. bottom: 58/2164
  34390. }
  34391. },
  34392. back: {
  34393. height: math.unit(5 + 8/12, "feet"),
  34394. weight: math.unit(139, "lb"),
  34395. name: "Back",
  34396. image: {
  34397. source: "./media/characters/biscuit-jackal/back.svg",
  34398. extra: 2132/1976,
  34399. bottom: 57/2189
  34400. }
  34401. },
  34402. werejackal: {
  34403. height: math.unit(6 + 3/12, "feet"),
  34404. weight: math.unit(188, "lb"),
  34405. name: "Werejackal",
  34406. image: {
  34407. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34408. extra: 2373/2178,
  34409. bottom: 53/2426
  34410. }
  34411. },
  34412. },
  34413. [
  34414. {
  34415. name: "Normal",
  34416. height: math.unit(5 + 8/12, "feet"),
  34417. default: true
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34423. {
  34424. front: {
  34425. height: math.unit(140, "cm"),
  34426. weight: math.unit(45, "kg"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/tayra-white/front.svg",
  34430. extra: 2229/2192,
  34431. bottom: 75/2304
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Normal",
  34438. height: math.unit(140, "cm"),
  34439. default: true
  34440. },
  34441. ]
  34442. ))
  34443. characterMakers.push(() => makeCharacter(
  34444. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34445. {
  34446. front: {
  34447. height: math.unit(4 + 5/12, "feet"),
  34448. name: "Front",
  34449. image: {
  34450. source: "./media/characters/scoop/front.svg",
  34451. extra: 1257/1136,
  34452. bottom: 69/1326
  34453. }
  34454. },
  34455. back: {
  34456. height: math.unit(4 + 5/12, "feet"),
  34457. name: "Back",
  34458. image: {
  34459. source: "./media/characters/scoop/back.svg",
  34460. extra: 1321/1152,
  34461. bottom: 32/1353
  34462. }
  34463. },
  34464. maw: {
  34465. height: math.unit(0.68, "feet"),
  34466. name: "Maw",
  34467. image: {
  34468. source: "./media/characters/scoop/maw.svg"
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Really Small",
  34475. height: math.unit(1, "mm")
  34476. },
  34477. {
  34478. name: "Micro",
  34479. height: math.unit(1, "inch")
  34480. },
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(4 + 5/12, "feet"),
  34484. default: true
  34485. },
  34486. {
  34487. name: "Macro",
  34488. height: math.unit(200, "feet")
  34489. },
  34490. {
  34491. name: "Megamacro",
  34492. height: math.unit(3240, "feet")
  34493. },
  34494. {
  34495. name: "Teramacro",
  34496. height: math.unit(2500, "miles")
  34497. },
  34498. ]
  34499. ))
  34500. characterMakers.push(() => makeCharacter(
  34501. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34502. {
  34503. front: {
  34504. height: math.unit(15 + 7/12, "feet"),
  34505. weight: math.unit(1150, "tons"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/saphinara/front.svg",
  34509. extra: 1837/1643,
  34510. bottom: 84/1921
  34511. },
  34512. form: "normal",
  34513. default: true
  34514. },
  34515. side: {
  34516. height: math.unit(15 + 7/12, "feet"),
  34517. weight: math.unit(1150, "tons"),
  34518. name: "Side",
  34519. image: {
  34520. source: "./media/characters/saphinara/side.svg",
  34521. extra: 605/547,
  34522. bottom: 6/611
  34523. },
  34524. form: "normal"
  34525. },
  34526. back: {
  34527. height: math.unit(15 + 7/12, "feet"),
  34528. weight: math.unit(1150, "tons"),
  34529. name: "Back",
  34530. image: {
  34531. source: "./media/characters/saphinara/back.svg",
  34532. extra: 591/531,
  34533. bottom: 13/604
  34534. },
  34535. form: "normal"
  34536. },
  34537. frontTail: {
  34538. height: math.unit(15 + 7/12, "feet"),
  34539. weight: math.unit(1150, "tons"),
  34540. name: "Front (Full Tail)",
  34541. image: {
  34542. source: "./media/characters/saphinara/front-tail.svg",
  34543. extra: 2256/1630,
  34544. bottom: 261/2517
  34545. },
  34546. form: "normal"
  34547. },
  34548. insides: {
  34549. height: math.unit(11.92, "feet"),
  34550. name: "Insides",
  34551. image: {
  34552. source: "./media/characters/saphinara/insides.svg"
  34553. },
  34554. form: "normal"
  34555. },
  34556. head: {
  34557. height: math.unit(4.17, "feet"),
  34558. name: "Head",
  34559. image: {
  34560. source: "./media/characters/saphinara/head.svg"
  34561. },
  34562. form: "normal"
  34563. },
  34564. tongue: {
  34565. height: math.unit(4.60, "feet"),
  34566. name: "Tongue",
  34567. image: {
  34568. source: "./media/characters/saphinara/tongue.svg"
  34569. },
  34570. form: "normal"
  34571. },
  34572. headEnraged: {
  34573. height: math.unit(5.55, "feet"),
  34574. name: "Head (Enraged)",
  34575. image: {
  34576. source: "./media/characters/saphinara/head-enraged.svg"
  34577. },
  34578. form: "normal"
  34579. },
  34580. wings: {
  34581. height: math.unit(11.95, "feet"),
  34582. name: "Wings",
  34583. image: {
  34584. source: "./media/characters/saphinara/wings.svg"
  34585. },
  34586. form: "normal"
  34587. },
  34588. feathers: {
  34589. height: math.unit(8.92, "feet"),
  34590. name: "Feathers",
  34591. image: {
  34592. source: "./media/characters/saphinara/feathers.svg"
  34593. },
  34594. form: "normal"
  34595. },
  34596. shackles: {
  34597. height: math.unit(2, "feet"),
  34598. name: "Shackles",
  34599. image: {
  34600. source: "./media/characters/saphinara/shackles.svg"
  34601. },
  34602. form: "normal"
  34603. },
  34604. eyes: {
  34605. height: math.unit(1.331, "feet"),
  34606. name: "Eyes",
  34607. image: {
  34608. source: "./media/characters/saphinara/eyes.svg"
  34609. },
  34610. form: "normal"
  34611. },
  34612. eyesEnraged: {
  34613. height: math.unit(1.331, "feet"),
  34614. name: "Eyes (Enraged)",
  34615. image: {
  34616. source: "./media/characters/saphinara/eyes-enraged.svg"
  34617. },
  34618. form: "normal"
  34619. },
  34620. trueFormSide: {
  34621. height: math.unit(200, "feet"),
  34622. weight: math.unit(1e7, "tons"),
  34623. name: "Side",
  34624. image: {
  34625. source: "./media/characters/saphinara/true-form-side.svg",
  34626. extra: 1399/770,
  34627. bottom: 97/1496
  34628. },
  34629. form: "true-form",
  34630. default: true
  34631. },
  34632. trueFormMaw: {
  34633. height: math.unit(71.5, "feet"),
  34634. name: "Maw",
  34635. image: {
  34636. source: "./media/characters/saphinara/true-form-maw.svg",
  34637. extra: 2302/1453,
  34638. bottom: 0/2302
  34639. },
  34640. form: "true-form"
  34641. },
  34642. meowberusSide: {
  34643. height: math.unit(75, "feet"),
  34644. weight: math.unit(180000, "kg"),
  34645. preyCapacity: math.unit(50000, "people"),
  34646. name: "Side",
  34647. image: {
  34648. source: "./media/characters/saphinara/meowberus-side.svg",
  34649. extra: 1400/711,
  34650. bottom: 126/1526
  34651. },
  34652. form: "meowberus",
  34653. extraAttributes: {
  34654. "pawArea": {
  34655. name: "Paw Size",
  34656. power: 2,
  34657. type: "area",
  34658. base: math.unit(35, "m^2")
  34659. }
  34660. }
  34661. },
  34662. },
  34663. [
  34664. {
  34665. name: "Normal",
  34666. height: math.unit(15 + 7/12, "feet"),
  34667. default: true,
  34668. form: "normal"
  34669. },
  34670. {
  34671. name: "Angry",
  34672. height: math.unit(30 + 6/12, "feet"),
  34673. form: "normal"
  34674. },
  34675. {
  34676. name: "Enraged",
  34677. height: math.unit(102 + 1/12, "feet"),
  34678. form: "normal"
  34679. },
  34680. {
  34681. name: "True",
  34682. height: math.unit(200, "feet"),
  34683. default: true,
  34684. form: "true-form"
  34685. },
  34686. {
  34687. name: "Normal",
  34688. height: math.unit(75, "feet"),
  34689. default: true,
  34690. form: "meowberus"
  34691. },
  34692. ],
  34693. {
  34694. "normal": {
  34695. name: "Normal",
  34696. default: true
  34697. },
  34698. "true-form": {
  34699. name: "True Form"
  34700. },
  34701. "meowberus": {
  34702. name: "Meowberus",
  34703. },
  34704. }
  34705. ))
  34706. characterMakers.push(() => makeCharacter(
  34707. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34708. {
  34709. front: {
  34710. height: math.unit(6 + 8/12, "feet"),
  34711. weight: math.unit(300, "lb"),
  34712. name: "Front",
  34713. image: {
  34714. source: "./media/characters/jrain/front.svg",
  34715. extra: 3039/2865,
  34716. bottom: 399/3438
  34717. }
  34718. },
  34719. back: {
  34720. height: math.unit(6 + 8/12, "feet"),
  34721. weight: math.unit(300, "lb"),
  34722. name: "Back",
  34723. image: {
  34724. source: "./media/characters/jrain/back.svg",
  34725. extra: 3089/2938,
  34726. bottom: 172/3261
  34727. }
  34728. },
  34729. head: {
  34730. height: math.unit(2.14, "feet"),
  34731. name: "Head",
  34732. image: {
  34733. source: "./media/characters/jrain/head.svg"
  34734. }
  34735. },
  34736. maw: {
  34737. height: math.unit(1.77, "feet"),
  34738. name: "Maw",
  34739. image: {
  34740. source: "./media/characters/jrain/maw.svg"
  34741. }
  34742. },
  34743. leftHand: {
  34744. height: math.unit(1.1, "feet"),
  34745. name: "Left Hand",
  34746. image: {
  34747. source: "./media/characters/jrain/left-hand.svg"
  34748. }
  34749. },
  34750. rightHand: {
  34751. height: math.unit(1.1, "feet"),
  34752. name: "Right Hand",
  34753. image: {
  34754. source: "./media/characters/jrain/right-hand.svg"
  34755. }
  34756. },
  34757. eye: {
  34758. height: math.unit(0.35, "feet"),
  34759. name: "Eye",
  34760. image: {
  34761. source: "./media/characters/jrain/eye.svg"
  34762. }
  34763. },
  34764. },
  34765. [
  34766. {
  34767. name: "Normal",
  34768. height: math.unit(6 + 8/12, "feet"),
  34769. default: true
  34770. },
  34771. {
  34772. name: "Casually Large",
  34773. height: math.unit(25, "feet")
  34774. },
  34775. {
  34776. name: "Giant",
  34777. height: math.unit(100, "feet")
  34778. },
  34779. {
  34780. name: "Kaiju",
  34781. height: math.unit(300, "feet")
  34782. },
  34783. ]
  34784. ))
  34785. characterMakers.push(() => makeCharacter(
  34786. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34787. {
  34788. dragon: {
  34789. height: math.unit(5, "meters"),
  34790. name: "Dragon",
  34791. image: {
  34792. source: "./media/characters/sabrina/dragon.svg",
  34793. extra: 3670 / 2365,
  34794. bottom: 333 / 4003
  34795. }
  34796. },
  34797. gryphon: {
  34798. height: math.unit(3, "meters"),
  34799. name: "Gryphon",
  34800. image: {
  34801. source: "./media/characters/sabrina/gryphon.svg",
  34802. extra: 1576 / 945,
  34803. bottom: 71 / 1647
  34804. }
  34805. },
  34806. snake: {
  34807. height: math.unit(12, "meters"),
  34808. name: "Snake",
  34809. image: {
  34810. source: "./media/characters/sabrina/snake.svg",
  34811. extra: 1758 / 1320,
  34812. bottom: 186 / 1944
  34813. }
  34814. },
  34815. collar: {
  34816. height: math.unit(1.86, "meters"),
  34817. name: "Collar",
  34818. image: {
  34819. source: "./media/characters/sabrina/collar.svg"
  34820. }
  34821. },
  34822. eye: {
  34823. height: math.unit(0.53, "meters"),
  34824. name: "Eye",
  34825. image: {
  34826. source: "./media/characters/sabrina/eye.svg"
  34827. }
  34828. },
  34829. foot: {
  34830. height: math.unit(1.86, "meters"),
  34831. name: "Foot",
  34832. image: {
  34833. source: "./media/characters/sabrina/foot.svg"
  34834. }
  34835. },
  34836. hand: {
  34837. height: math.unit(1.32, "meters"),
  34838. name: "Hand",
  34839. image: {
  34840. source: "./media/characters/sabrina/hand.svg"
  34841. }
  34842. },
  34843. head: {
  34844. height: math.unit(2.44, "meters"),
  34845. name: "Head",
  34846. image: {
  34847. source: "./media/characters/sabrina/head.svg"
  34848. }
  34849. },
  34850. headAngry: {
  34851. height: math.unit(2.44, "meters"),
  34852. name: "Head (Angry))",
  34853. image: {
  34854. source: "./media/characters/sabrina/head-angry.svg"
  34855. }
  34856. },
  34857. maw: {
  34858. height: math.unit(1.65, "meters"),
  34859. name: "Maw",
  34860. image: {
  34861. source: "./media/characters/sabrina/maw.svg"
  34862. }
  34863. },
  34864. spikes: {
  34865. height: math.unit(1.69, "meters"),
  34866. name: "Spikes",
  34867. image: {
  34868. source: "./media/characters/sabrina/spikes.svg"
  34869. }
  34870. },
  34871. stomach: {
  34872. height: math.unit(1.15, "meters"),
  34873. name: "Stomach",
  34874. image: {
  34875. source: "./media/characters/sabrina/stomach.svg"
  34876. }
  34877. },
  34878. tongue: {
  34879. height: math.unit(1.27, "meters"),
  34880. name: "Tongue",
  34881. image: {
  34882. source: "./media/characters/sabrina/tongue.svg"
  34883. }
  34884. },
  34885. wingDorsal: {
  34886. height: math.unit(4.85, "meters"),
  34887. name: "Wing (Dorsal)",
  34888. image: {
  34889. source: "./media/characters/sabrina/wing-dorsal.svg"
  34890. }
  34891. },
  34892. wingVentral: {
  34893. height: math.unit(4.85, "meters"),
  34894. name: "Wing (Ventral)",
  34895. image: {
  34896. source: "./media/characters/sabrina/wing-ventral.svg"
  34897. }
  34898. },
  34899. },
  34900. [
  34901. {
  34902. name: "Normal",
  34903. height: math.unit(5, "meters"),
  34904. default: true
  34905. },
  34906. ]
  34907. ))
  34908. characterMakers.push(() => makeCharacter(
  34909. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34910. {
  34911. frontMaid: {
  34912. height: math.unit(5 + 5/12, "feet"),
  34913. weight: math.unit(130, "lb"),
  34914. name: "Front (Maid)",
  34915. image: {
  34916. source: "./media/characters/midnight-tales/front-maid.svg",
  34917. extra: 489/454,
  34918. bottom: 61/550
  34919. }
  34920. },
  34921. frontFormal: {
  34922. height: math.unit(5 + 5/12, "feet"),
  34923. weight: math.unit(130, "lb"),
  34924. name: "Front (Formal)",
  34925. image: {
  34926. source: "./media/characters/midnight-tales/front-formal.svg",
  34927. extra: 489/454,
  34928. bottom: 61/550
  34929. }
  34930. },
  34931. back: {
  34932. height: math.unit(5 + 5/12, "feet"),
  34933. weight: math.unit(130, "lb"),
  34934. name: "Back",
  34935. image: {
  34936. source: "./media/characters/midnight-tales/back.svg",
  34937. extra: 498/456,
  34938. bottom: 33/531
  34939. }
  34940. },
  34941. frontBeast: {
  34942. height: math.unit(40, "feet"),
  34943. weight: math.unit(64000, "lb"),
  34944. name: "Front (Beast)",
  34945. image: {
  34946. source: "./media/characters/midnight-tales/front-beast.svg",
  34947. extra: 927/860,
  34948. bottom: 53/980
  34949. }
  34950. },
  34951. backBeast: {
  34952. height: math.unit(40, "feet"),
  34953. weight: math.unit(64000, "lb"),
  34954. name: "Back (Beast)",
  34955. image: {
  34956. source: "./media/characters/midnight-tales/back-beast.svg",
  34957. extra: 929/855,
  34958. bottom: 16/945
  34959. }
  34960. },
  34961. footBeast: {
  34962. height: math.unit(6.7, "feet"),
  34963. name: "Foot (Beast)",
  34964. image: {
  34965. source: "./media/characters/midnight-tales/foot-beast.svg"
  34966. }
  34967. },
  34968. headBeast: {
  34969. height: math.unit(8, "feet"),
  34970. name: "Head (Beast)",
  34971. image: {
  34972. source: "./media/characters/midnight-tales/head-beast.svg"
  34973. }
  34974. },
  34975. },
  34976. [
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(5 + 5 / 12, "feet"),
  34980. default: true
  34981. },
  34982. {
  34983. name: "Macro",
  34984. height: math.unit(25, "feet")
  34985. },
  34986. ]
  34987. ))
  34988. characterMakers.push(() => makeCharacter(
  34989. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34990. {
  34991. front: {
  34992. height: math.unit(5 + 10/12, "feet"),
  34993. name: "Front",
  34994. image: {
  34995. source: "./media/characters/argon/front.svg",
  34996. extra: 2009/1935,
  34997. bottom: 118/2127
  34998. }
  34999. },
  35000. back: {
  35001. height: math.unit(5 + 10/12, "feet"),
  35002. name: "Back",
  35003. image: {
  35004. source: "./media/characters/argon/back.svg",
  35005. extra: 2047/1992,
  35006. bottom: 20/2067
  35007. }
  35008. },
  35009. frontDressed: {
  35010. height: math.unit(5 + 10/12, "feet"),
  35011. name: "Front (Dressed)",
  35012. image: {
  35013. source: "./media/characters/argon/front-dressed.svg",
  35014. extra: 2009/1935,
  35015. bottom: 118/2127
  35016. }
  35017. },
  35018. },
  35019. [
  35020. {
  35021. name: "Normal",
  35022. height: math.unit(5 + 10/12, "feet"),
  35023. default: true
  35024. },
  35025. ]
  35026. ))
  35027. characterMakers.push(() => makeCharacter(
  35028. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35029. {
  35030. front: {
  35031. height: math.unit(8 + 6/12, "feet"),
  35032. weight: math.unit(1150, "lb"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/kichi/front.svg",
  35036. extra: 1267/1164,
  35037. bottom: 61/1328
  35038. }
  35039. },
  35040. back: {
  35041. height: math.unit(8 + 6/12, "feet"),
  35042. weight: math.unit(1150, "lb"),
  35043. name: "Back",
  35044. image: {
  35045. source: "./media/characters/kichi/back.svg",
  35046. extra: 1273/1166,
  35047. bottom: 33/1306
  35048. }
  35049. },
  35050. },
  35051. [
  35052. {
  35053. name: "Normal",
  35054. height: math.unit(8 + 6/12, "feet"),
  35055. default: true
  35056. },
  35057. ]
  35058. ))
  35059. characterMakers.push(() => makeCharacter(
  35060. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35061. {
  35062. front: {
  35063. height: math.unit(6, "feet"),
  35064. weight: math.unit(210, "lb"),
  35065. name: "Front",
  35066. image: {
  35067. source: "./media/characters/manetel-greyscale/front.svg",
  35068. extra: 350/312,
  35069. bottom: 8/358
  35070. }
  35071. },
  35072. },
  35073. [
  35074. {
  35075. name: "Micro",
  35076. height: math.unit(2, "inches")
  35077. },
  35078. {
  35079. name: "Normal",
  35080. height: math.unit(6, "feet"),
  35081. default: true
  35082. },
  35083. {
  35084. name: "Minimacro",
  35085. height: math.unit(17, "feet")
  35086. },
  35087. {
  35088. name: "Macro",
  35089. height: math.unit(117, "feet")
  35090. },
  35091. ]
  35092. ))
  35093. characterMakers.push(() => makeCharacter(
  35094. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35095. {
  35096. side: {
  35097. height: math.unit(5 + 1/12, "feet"),
  35098. weight: math.unit(418, "lb"),
  35099. name: "Side",
  35100. image: {
  35101. source: "./media/characters/softpurr/side.svg",
  35102. extra: 1993/1945,
  35103. bottom: 134/2127
  35104. }
  35105. },
  35106. front: {
  35107. height: math.unit(5 + 1/12, "feet"),
  35108. weight: math.unit(418, "lb"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/softpurr/front.svg",
  35112. extra: 1950/1856,
  35113. bottom: 174/2124
  35114. }
  35115. },
  35116. paw: {
  35117. height: math.unit(1, "feet"),
  35118. name: "Paw",
  35119. image: {
  35120. source: "./media/characters/softpurr/paw.svg"
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Normal",
  35127. height: math.unit(5 + 1/12, "feet"),
  35128. default: true
  35129. },
  35130. ]
  35131. ))
  35132. characterMakers.push(() => makeCharacter(
  35133. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35134. {
  35135. front: {
  35136. height: math.unit(260, "meters"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/anahita/front.svg",
  35140. extra: 665/635,
  35141. bottom: 89/754
  35142. }
  35143. },
  35144. },
  35145. [
  35146. {
  35147. name: "Macro",
  35148. height: math.unit(260, "meters"),
  35149. default: true
  35150. },
  35151. ]
  35152. ))
  35153. characterMakers.push(() => makeCharacter(
  35154. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35155. {
  35156. front: {
  35157. height: math.unit(4 + 10/12, "feet"),
  35158. weight: math.unit(160, "lb"),
  35159. name: "Front",
  35160. image: {
  35161. source: "./media/characters/chip-mouse/front.svg",
  35162. extra: 3528/3408,
  35163. bottom: 0/3528
  35164. }
  35165. },
  35166. frontNsfw: {
  35167. height: math.unit(4 + 10/12, "feet"),
  35168. weight: math.unit(160, "lb"),
  35169. name: "Front (NSFW)",
  35170. image: {
  35171. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35172. extra: 3528/3408,
  35173. bottom: 0/3528
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(4 + 10/12, "feet"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35187. {
  35188. side: {
  35189. height: math.unit(10, "feet"),
  35190. weight: math.unit(14000, "lb"),
  35191. name: "Side",
  35192. image: {
  35193. source: "./media/characters/kremm/side.svg",
  35194. extra: 1390/1053,
  35195. bottom: 90/1480
  35196. }
  35197. },
  35198. gut: {
  35199. height: math.unit(5.8, "feet"),
  35200. name: "Gut",
  35201. image: {
  35202. source: "./media/characters/kremm/gut.svg"
  35203. }
  35204. },
  35205. ass: {
  35206. height: math.unit(6.1, "feet"),
  35207. name: "Ass",
  35208. image: {
  35209. source: "./media/characters/kremm/ass.svg"
  35210. }
  35211. },
  35212. jaws: {
  35213. height: math.unit(2.2, "feet"),
  35214. name: "Jaws",
  35215. image: {
  35216. source: "./media/characters/kremm/jaws.svg"
  35217. }
  35218. },
  35219. dick: {
  35220. height: math.unit(4.26, "feet"),
  35221. name: "Dick",
  35222. image: {
  35223. source: "./media/characters/kremm/dick.svg"
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(10, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35237. {
  35238. front: {
  35239. height: math.unit(30, "stories"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/kai/front.svg",
  35243. extra: 1892/1718,
  35244. bottom: 162/2054
  35245. }
  35246. },
  35247. },
  35248. [
  35249. {
  35250. name: "Macro",
  35251. height: math.unit(30, "stories"),
  35252. default: true
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35258. {
  35259. front: {
  35260. height: math.unit(6 + 4/12, "feet"),
  35261. weight: math.unit(145, "lb"),
  35262. name: "Front",
  35263. image: {
  35264. source: "./media/characters/sykes/front.svg",
  35265. extra: 1321 / 1187,
  35266. bottom: 66 / 1387
  35267. }
  35268. },
  35269. back: {
  35270. height: math.unit(6 + 4/12, "feet"),
  35271. weight: math.unit(145, "lb"),
  35272. name: "Back",
  35273. image: {
  35274. source: "./media/characters/sykes/back.svg",
  35275. extra: 1326/1181,
  35276. bottom: 31/1357
  35277. }
  35278. },
  35279. traditionalOutfit: {
  35280. height: math.unit(6 + 4/12, "feet"),
  35281. weight: math.unit(145, "lb"),
  35282. name: "Traditional Outfit",
  35283. image: {
  35284. source: "./media/characters/sykes/traditional-outfit.svg",
  35285. extra: 1321 / 1187,
  35286. bottom: 66 / 1387
  35287. }
  35288. },
  35289. adventureOutfit: {
  35290. height: math.unit(6 + 4/12, "feet"),
  35291. weight: math.unit(145, "lb"),
  35292. name: "Adventure Outfit",
  35293. image: {
  35294. source: "./media/characters/sykes/adventure-outfit.svg",
  35295. extra: 1321 / 1187,
  35296. bottom: 66 / 1387
  35297. }
  35298. },
  35299. handLeft: {
  35300. height: math.unit(0.9, "feet"),
  35301. name: "Hand (Left)",
  35302. image: {
  35303. source: "./media/characters/sykes/hand-left.svg"
  35304. }
  35305. },
  35306. handRight: {
  35307. height: math.unit(0.839, "feet"),
  35308. name: "Hand (Right)",
  35309. image: {
  35310. source: "./media/characters/sykes/hand-right.svg"
  35311. }
  35312. },
  35313. leftFoot: {
  35314. height: math.unit(1.2, "feet"),
  35315. name: "Foot (Left)",
  35316. image: {
  35317. source: "./media/characters/sykes/foot-left.svg"
  35318. }
  35319. },
  35320. rightFoot: {
  35321. height: math.unit(1.2, "feet"),
  35322. name: "Foot (Right)",
  35323. image: {
  35324. source: "./media/characters/sykes/foot-right.svg"
  35325. }
  35326. },
  35327. maw: {
  35328. height: math.unit(1.93, "feet"),
  35329. name: "Maw",
  35330. image: {
  35331. source: "./media/characters/sykes/maw.svg"
  35332. }
  35333. },
  35334. teeth: {
  35335. height: math.unit(0.51, "feet"),
  35336. name: "Teeth",
  35337. image: {
  35338. source: "./media/characters/sykes/teeth.svg"
  35339. }
  35340. },
  35341. tongue: {
  35342. height: math.unit(2.13, "feet"),
  35343. name: "Tongue",
  35344. image: {
  35345. source: "./media/characters/sykes/tongue.svg"
  35346. }
  35347. },
  35348. uvula: {
  35349. height: math.unit(0.16, "feet"),
  35350. name: "Uvula",
  35351. image: {
  35352. source: "./media/characters/sykes/uvula.svg"
  35353. }
  35354. },
  35355. collar: {
  35356. height: math.unit(0.287, "feet"),
  35357. name: "Collar",
  35358. image: {
  35359. source: "./media/characters/sykes/collar.svg"
  35360. }
  35361. },
  35362. tail: {
  35363. height: math.unit(3.8, "feet"),
  35364. name: "Tail",
  35365. image: {
  35366. source: "./media/characters/sykes/tail.svg"
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Shrunken",
  35373. height: math.unit(5, "inches")
  35374. },
  35375. {
  35376. name: "Normal",
  35377. height: math.unit(6 + 4 / 12, "feet"),
  35378. default: true
  35379. },
  35380. {
  35381. name: "Big",
  35382. height: math.unit(15, "feet")
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(5 + 8/12, "feet"),
  35391. weight: math.unit(190, "lb"),
  35392. name: "Front",
  35393. image: {
  35394. source: "./media/characters/oven-otter/front.svg",
  35395. extra: 1809/1740,
  35396. bottom: 181/1990
  35397. }
  35398. },
  35399. back: {
  35400. height: math.unit(5 + 8/12, "feet"),
  35401. weight: math.unit(190, "lb"),
  35402. name: "Back",
  35403. image: {
  35404. source: "./media/characters/oven-otter/back.svg",
  35405. extra: 1709/1635,
  35406. bottom: 118/1827
  35407. }
  35408. },
  35409. hand: {
  35410. height: math.unit(1.07, "feet"),
  35411. name: "Hand",
  35412. image: {
  35413. source: "./media/characters/oven-otter/hand.svg"
  35414. }
  35415. },
  35416. beans: {
  35417. height: math.unit(1.74, "feet"),
  35418. name: "Beans",
  35419. image: {
  35420. source: "./media/characters/oven-otter/beans.svg"
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Micro",
  35427. height: math.unit(0.5, "inches")
  35428. },
  35429. {
  35430. name: "Normal",
  35431. height: math.unit(5 + 8/12, "feet"),
  35432. default: true
  35433. },
  35434. {
  35435. name: "Macro",
  35436. height: math.unit(250, "feet")
  35437. },
  35438. {
  35439. name: "Really High",
  35440. height: math.unit(420, "feet")
  35441. },
  35442. ]
  35443. ))
  35444. characterMakers.push(() => makeCharacter(
  35445. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35446. {
  35447. front: {
  35448. height: math.unit(5, "meters"),
  35449. weight: math.unit(292000000000000, "kg"),
  35450. name: "Front",
  35451. image: {
  35452. source: "./media/characters/devourer/front.svg",
  35453. extra: 1800/1733,
  35454. bottom: 211/2011
  35455. }
  35456. },
  35457. maw: {
  35458. height: math.unit(1.1, "meter"),
  35459. name: "Maw",
  35460. image: {
  35461. source: "./media/characters/devourer/maw.svg"
  35462. }
  35463. },
  35464. },
  35465. [
  35466. {
  35467. name: "Small",
  35468. height: math.unit(3, "meters")
  35469. },
  35470. {
  35471. name: "Large",
  35472. height: math.unit(5, "meters"),
  35473. default: true
  35474. },
  35475. ]
  35476. ))
  35477. characterMakers.push(() => makeCharacter(
  35478. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35479. {
  35480. front: {
  35481. height: math.unit(6, "feet"),
  35482. weight: math.unit(400, "lb"),
  35483. name: "Front",
  35484. image: {
  35485. source: "./media/characters/ellarby/front.svg",
  35486. extra: 1909/1763,
  35487. bottom: 80/1989
  35488. }
  35489. },
  35490. back: {
  35491. height: math.unit(6, "feet"),
  35492. weight: math.unit(400, "lb"),
  35493. name: "Back",
  35494. image: {
  35495. source: "./media/characters/ellarby/back.svg",
  35496. extra: 1914/1784,
  35497. bottom: 172/2086
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Mischief",
  35504. height: math.unit(18, "inches")
  35505. },
  35506. {
  35507. name: "Trouble",
  35508. height: math.unit(12, "feet")
  35509. },
  35510. {
  35511. name: "Havoc",
  35512. height: math.unit(200, "feet"),
  35513. default: true
  35514. },
  35515. {
  35516. name: "Pandemonium",
  35517. height: math.unit(1, "mile")
  35518. },
  35519. {
  35520. name: "Catastrophe",
  35521. height: math.unit(100, "miles")
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35527. {
  35528. front: {
  35529. height: math.unit(4.7, "meters"),
  35530. weight: math.unit(6500, "kg"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/vex/front.svg",
  35534. extra: 1288/1140,
  35535. bottom: 100/1388
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(4.7, "meters"),
  35543. default: true
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35549. {
  35550. normal: {
  35551. height: math.unit(6, "feet"),
  35552. weight: math.unit(350, "lb"),
  35553. name: "Normal",
  35554. image: {
  35555. source: "./media/characters/teshy/normal.svg",
  35556. extra: 1795/1735,
  35557. bottom: 16/1811
  35558. }
  35559. },
  35560. monsterFront: {
  35561. height: math.unit(12, "feet"),
  35562. weight: math.unit(4700, "lb"),
  35563. name: "Monster (Front)",
  35564. image: {
  35565. source: "./media/characters/teshy/monster-front.svg",
  35566. extra: 2042/2034,
  35567. bottom: 128/2170
  35568. }
  35569. },
  35570. monsterSide: {
  35571. height: math.unit(12, "feet"),
  35572. weight: math.unit(4700, "lb"),
  35573. name: "Monster (Side)",
  35574. image: {
  35575. source: "./media/characters/teshy/monster-side.svg",
  35576. extra: 2067/2056,
  35577. bottom: 70/2137
  35578. }
  35579. },
  35580. monsterBack: {
  35581. height: math.unit(12, "feet"),
  35582. weight: math.unit(4700, "lb"),
  35583. name: "Monster (Back)",
  35584. image: {
  35585. source: "./media/characters/teshy/monster-back.svg",
  35586. extra: 1921/1914,
  35587. bottom: 171/2092
  35588. }
  35589. },
  35590. },
  35591. [
  35592. {
  35593. name: "Normal",
  35594. height: math.unit(6, "feet"),
  35595. default: true
  35596. },
  35597. ]
  35598. ))
  35599. characterMakers.push(() => makeCharacter(
  35600. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35601. {
  35602. front: {
  35603. height: math.unit(6, "feet"),
  35604. name: "Front",
  35605. image: {
  35606. source: "./media/characters/ramey/front.svg",
  35607. extra: 790/787,
  35608. bottom: 27/817
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(6, "feet"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(5 + 5/12, "feet"),
  35625. weight: math.unit(120, "lb"),
  35626. name: "Front",
  35627. image: {
  35628. source: "./media/characters/phirae/front.svg",
  35629. extra: 2491/2436,
  35630. bottom: 38/2529
  35631. }
  35632. },
  35633. },
  35634. [
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(5 + 5/12, "feet"),
  35638. default: true
  35639. },
  35640. ]
  35641. ))
  35642. characterMakers.push(() => makeCharacter(
  35643. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35644. {
  35645. front: {
  35646. height: math.unit(5 + 3/12, "feet"),
  35647. name: "Front",
  35648. image: {
  35649. source: "./media/characters/stagglas/front.svg",
  35650. extra: 962/882,
  35651. bottom: 53/1015
  35652. }
  35653. },
  35654. feral: {
  35655. height: math.unit(335, "cm"),
  35656. name: "Feral",
  35657. image: {
  35658. source: "./media/characters/stagglas/feral.svg",
  35659. extra: 1732/1090,
  35660. bottom: 48/1780
  35661. }
  35662. },
  35663. },
  35664. [
  35665. {
  35666. name: "Normal",
  35667. height: math.unit(5 + 3/12, "feet"),
  35668. default: true
  35669. },
  35670. ]
  35671. ))
  35672. characterMakers.push(() => makeCharacter(
  35673. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35674. {
  35675. front: {
  35676. height: math.unit(5 + 4/12, "feet"),
  35677. weight: math.unit(145, "lb"),
  35678. name: "Front",
  35679. image: {
  35680. source: "./media/characters/starra/front.svg",
  35681. extra: 1790/1691,
  35682. bottom: 91/1881
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(5 + 4/12, "feet"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35696. {
  35697. front: {
  35698. height: math.unit(2.2, "meters"),
  35699. name: "Front",
  35700. image: {
  35701. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35702. extra: 1194/1005,
  35703. bottom: 25/1219
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(2.2, "meters"),
  35711. default: true
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35717. {
  35718. side: {
  35719. height: math.unit(8 + 2/12, "feet"),
  35720. weight: math.unit(1240, "lb"),
  35721. name: "Side",
  35722. image: {
  35723. source: "./media/characters/mika-valentine/side.svg",
  35724. extra: 2670/2501,
  35725. bottom: 250/2920
  35726. }
  35727. },
  35728. },
  35729. [
  35730. {
  35731. name: "Normal",
  35732. height: math.unit(8 + 2/12, "feet"),
  35733. default: true
  35734. },
  35735. ]
  35736. ))
  35737. characterMakers.push(() => makeCharacter(
  35738. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35739. {
  35740. front: {
  35741. height: math.unit(7 + 2/12, "feet"),
  35742. name: "Front",
  35743. image: {
  35744. source: "./media/characters/xoltol/front.svg",
  35745. extra: 2212/2124,
  35746. bottom: 84/2296
  35747. }
  35748. },
  35749. side: {
  35750. height: math.unit(7 + 2/12, "feet"),
  35751. name: "Side",
  35752. image: {
  35753. source: "./media/characters/xoltol/side.svg",
  35754. extra: 2273/2197,
  35755. bottom: 26/2299
  35756. }
  35757. },
  35758. hand: {
  35759. height: math.unit(2.5, "feet"),
  35760. name: "Hand",
  35761. image: {
  35762. source: "./media/characters/xoltol/hand.svg"
  35763. }
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "Small-ish",
  35769. height: math.unit(5 + 11/12, "feet")
  35770. },
  35771. {
  35772. name: "Normal",
  35773. height: math.unit(7 + 2/12, "feet")
  35774. },
  35775. {
  35776. name: "\"Macro\"",
  35777. height: math.unit(14 + 9/12, "feet"),
  35778. default: true
  35779. },
  35780. {
  35781. name: "Alternate Height",
  35782. height: math.unit(20, "feet")
  35783. },
  35784. {
  35785. name: "Actually Macro",
  35786. height: math.unit(100, "feet")
  35787. },
  35788. ]
  35789. ))
  35790. characterMakers.push(() => makeCharacter(
  35791. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35792. {
  35793. front: {
  35794. height: math.unit(5 + 2/12, "feet"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/kotetsu-redwood/front.svg",
  35798. extra: 1053/942,
  35799. bottom: 60/1113
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(5 + 2/12, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35813. {
  35814. front: {
  35815. height: math.unit(2.4, "meters"),
  35816. weight: math.unit(125, "kg"),
  35817. name: "Front",
  35818. image: {
  35819. source: "./media/characters/lilith/front.svg",
  35820. extra: 1590/1513,
  35821. bottom: 203/1793
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Humanoid",
  35828. height: math.unit(2.4, "meters")
  35829. },
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(6, "meters"),
  35833. default: true
  35834. },
  35835. {
  35836. name: "Largest",
  35837. height: math.unit(55, "meters")
  35838. },
  35839. ]
  35840. ))
  35841. characterMakers.push(() => makeCharacter(
  35842. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35843. {
  35844. front: {
  35845. height: math.unit(8 + 4/12, "feet"),
  35846. weight: math.unit(535, "lb"),
  35847. name: "Front",
  35848. image: {
  35849. source: "./media/characters/beh'kah-bolger/front.svg",
  35850. extra: 1660/1603,
  35851. bottom: 37/1697
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(8 + 4/12, "feet"),
  35859. default: true
  35860. },
  35861. {
  35862. name: "Kaiju",
  35863. height: math.unit(250, "feet")
  35864. },
  35865. {
  35866. name: "Still Growing",
  35867. height: math.unit(10, "miles")
  35868. },
  35869. {
  35870. name: "Continental",
  35871. height: math.unit(5000, "miles")
  35872. },
  35873. {
  35874. name: "Final Form",
  35875. height: math.unit(2500000, "miles")
  35876. },
  35877. ]
  35878. ))
  35879. characterMakers.push(() => makeCharacter(
  35880. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35881. {
  35882. front: {
  35883. height: math.unit(7 + 2/12, "feet"),
  35884. weight: math.unit(230, "kg"),
  35885. name: "Front",
  35886. image: {
  35887. source: "./media/characters/tatyana-milewska/front.svg",
  35888. extra: 1199/1150,
  35889. bottom: 86/1285
  35890. }
  35891. },
  35892. },
  35893. [
  35894. {
  35895. name: "Normal",
  35896. height: math.unit(7 + 2/12, "feet"),
  35897. default: true
  35898. },
  35899. {
  35900. name: "Big",
  35901. height: math.unit(12, "feet")
  35902. },
  35903. {
  35904. name: "Minimacro",
  35905. height: math.unit(20, "feet")
  35906. },
  35907. {
  35908. name: "Macro",
  35909. height: math.unit(120, "feet")
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35915. {
  35916. front: {
  35917. height: math.unit(7 + 8/12, "feet"),
  35918. weight: math.unit(152, "kg"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/helen-arri/front.svg",
  35922. extra: 440/423,
  35923. bottom: 14/454
  35924. }
  35925. },
  35926. back: {
  35927. height: math.unit(7 + 8/12, "feet"),
  35928. weight: math.unit(152, "kg"),
  35929. name: "Back",
  35930. image: {
  35931. source: "./media/characters/helen-arri/back.svg",
  35932. extra: 443/426,
  35933. bottom: 8/451
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(7 + 8/12, "feet"),
  35941. default: true
  35942. },
  35943. {
  35944. name: "Big",
  35945. height: math.unit(14, "feet")
  35946. },
  35947. {
  35948. name: "Minimacro",
  35949. height: math.unit(24, "feet")
  35950. },
  35951. {
  35952. name: "Macro",
  35953. height: math.unit(140, "feet")
  35954. },
  35955. ]
  35956. ))
  35957. characterMakers.push(() => makeCharacter(
  35958. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35959. {
  35960. front: {
  35961. height: math.unit(6, "meters"),
  35962. name: "Front",
  35963. image: {
  35964. source: "./media/characters/ehanu-rehu/front.svg",
  35965. extra: 1800/1800,
  35966. bottom: 59/1859
  35967. }
  35968. },
  35969. },
  35970. [
  35971. {
  35972. name: "Normal",
  35973. height: math.unit(6, "meters"),
  35974. default: true
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35980. {
  35981. front: {
  35982. height: math.unit(7 + 3/12, "feet"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/renholder/front.svg",
  35986. extra: 3096/2960,
  35987. bottom: 250/3346
  35988. }
  35989. },
  35990. },
  35991. [
  35992. {
  35993. name: "Normal Bat",
  35994. height: math.unit(7 + 3/12, "feet"),
  35995. default: true
  35996. },
  35997. {
  35998. name: "Slightly Tall Bat",
  35999. height: math.unit(100, "feet")
  36000. },
  36001. {
  36002. name: "Big Bat",
  36003. height: math.unit(1000, "feet")
  36004. },
  36005. {
  36006. name: "City-Sized Bat",
  36007. height: math.unit(200000, "feet")
  36008. },
  36009. {
  36010. name: "Bigger Bat",
  36011. height: math.unit(10000, "miles")
  36012. },
  36013. {
  36014. name: "Solar Sized Bat",
  36015. height: math.unit(100, "AU")
  36016. },
  36017. {
  36018. name: "Galactic Bat",
  36019. height: math.unit(200000, "lightyears")
  36020. },
  36021. {
  36022. name: "Universally Known Bat",
  36023. height: math.unit(1, "universe")
  36024. },
  36025. ]
  36026. ))
  36027. characterMakers.push(() => makeCharacter(
  36028. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36029. {
  36030. front: {
  36031. height: math.unit(6 + 11/12, "feet"),
  36032. weight: math.unit(250, "lb"),
  36033. name: "Front",
  36034. image: {
  36035. source: "./media/characters/cookiecat/front.svg",
  36036. extra: 893/827,
  36037. bottom: 14/907
  36038. }
  36039. },
  36040. },
  36041. [
  36042. {
  36043. name: "Micro",
  36044. height: math.unit(3, "inches")
  36045. },
  36046. {
  36047. name: "Normal",
  36048. height: math.unit(6 + 11/12, "feet"),
  36049. default: true
  36050. },
  36051. {
  36052. name: "Macro",
  36053. height: math.unit(100, "feet")
  36054. },
  36055. {
  36056. name: "Macro+",
  36057. height: math.unit(404, "feet")
  36058. },
  36059. {
  36060. name: "Megamacro",
  36061. height: math.unit(165, "miles")
  36062. },
  36063. {
  36064. name: "Planetary",
  36065. height: math.unit(4600, "miles")
  36066. },
  36067. ]
  36068. ))
  36069. characterMakers.push(() => makeCharacter(
  36070. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36071. {
  36072. front: {
  36073. height: math.unit(10 + 3/12, "feet"),
  36074. weight: math.unit(1500, "lb"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/tux-kusanagi/front.svg",
  36078. extra: 944/840,
  36079. bottom: 39/983
  36080. }
  36081. },
  36082. back: {
  36083. height: math.unit(10 + 3/12, "feet"),
  36084. weight: math.unit(1500, "lb"),
  36085. name: "Back",
  36086. image: {
  36087. source: "./media/characters/tux-kusanagi/back.svg",
  36088. extra: 941/842,
  36089. bottom: 28/969
  36090. }
  36091. },
  36092. rump: {
  36093. height: math.unit(5.25, "feet"),
  36094. name: "Rump",
  36095. image: {
  36096. source: "./media/characters/tux-kusanagi/rump.svg"
  36097. }
  36098. },
  36099. beak: {
  36100. height: math.unit(1.54, "feet"),
  36101. name: "Beak",
  36102. image: {
  36103. source: "./media/characters/tux-kusanagi/beak.svg"
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Normal",
  36110. height: math.unit(10 + 3/12, "feet"),
  36111. default: true
  36112. },
  36113. ]
  36114. ))
  36115. characterMakers.push(() => makeCharacter(
  36116. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36117. {
  36118. front: {
  36119. height: math.unit(58, "feet"),
  36120. weight: math.unit(200, "tons"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/uzarmazari/front.svg",
  36124. extra: 1575/1455,
  36125. bottom: 152/1727
  36126. }
  36127. },
  36128. back: {
  36129. height: math.unit(58, "feet"),
  36130. weight: math.unit(200, "tons"),
  36131. name: "Back",
  36132. image: {
  36133. source: "./media/characters/uzarmazari/back.svg",
  36134. extra: 1585/1510,
  36135. bottom: 157/1742
  36136. }
  36137. },
  36138. head: {
  36139. height: math.unit(26, "feet"),
  36140. name: "Head",
  36141. image: {
  36142. source: "./media/characters/uzarmazari/head.svg"
  36143. }
  36144. },
  36145. },
  36146. [
  36147. {
  36148. name: "Normal",
  36149. height: math.unit(58, "feet"),
  36150. default: true
  36151. },
  36152. ]
  36153. ))
  36154. characterMakers.push(() => makeCharacter(
  36155. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36156. {
  36157. side: {
  36158. height: math.unit(15, "feet"),
  36159. name: "Side",
  36160. image: {
  36161. source: "./media/characters/akitu/side.svg",
  36162. extra: 1421/1321,
  36163. bottom: 157/1578
  36164. }
  36165. },
  36166. front: {
  36167. height: math.unit(15, "feet"),
  36168. name: "Front",
  36169. image: {
  36170. source: "./media/characters/akitu/front.svg",
  36171. extra: 1435/1326,
  36172. bottom: 232/1667
  36173. }
  36174. },
  36175. },
  36176. [
  36177. {
  36178. name: "Normal",
  36179. height: math.unit(15, "feet"),
  36180. default: true
  36181. },
  36182. ]
  36183. ))
  36184. characterMakers.push(() => makeCharacter(
  36185. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36186. {
  36187. front: {
  36188. height: math.unit(10 + 8/12, "feet"),
  36189. name: "Front",
  36190. image: {
  36191. source: "./media/characters/azalie-croixland/front.svg",
  36192. extra: 1972/1856,
  36193. bottom: 31/2003
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Original Height",
  36200. height: math.unit(5 + 4/12, "feet")
  36201. },
  36202. {
  36203. name: "Normal Height",
  36204. height: math.unit(10 + 8/12, "feet"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36211. {
  36212. side: {
  36213. height: math.unit(7 + 1/12, "feet"),
  36214. weight: math.unit(245, "lb"),
  36215. name: "Side",
  36216. image: {
  36217. source: "./media/characters/kavus-kazian/side.svg",
  36218. extra: 349/342,
  36219. bottom: 15/364
  36220. }
  36221. },
  36222. },
  36223. [
  36224. {
  36225. name: "Normal",
  36226. height: math.unit(7 + 1/12, "feet"),
  36227. default: true
  36228. },
  36229. ]
  36230. ))
  36231. characterMakers.push(() => makeCharacter(
  36232. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36233. {
  36234. normalFront: {
  36235. height: math.unit(5 + 11/12, "feet"),
  36236. name: "Front",
  36237. image: {
  36238. source: "./media/characters/moonlight-rose/normal-front.svg",
  36239. extra: 1980/1825,
  36240. bottom: 18/1998
  36241. },
  36242. form: "normal",
  36243. default: true
  36244. },
  36245. normalBack: {
  36246. height: math.unit(5 + 11/12, "feet"),
  36247. name: "Back",
  36248. image: {
  36249. source: "./media/characters/moonlight-rose/normal-back.svg",
  36250. extra: 2010/1839,
  36251. bottom: 10/2020
  36252. },
  36253. form: "normal"
  36254. },
  36255. demonFront: {
  36256. height: math.unit(1.5, "earths"),
  36257. name: "Front",
  36258. image: {
  36259. source: "./media/characters/moonlight-rose/demon.svg",
  36260. extra: 1400/1294,
  36261. bottom: 45/1445
  36262. },
  36263. form: "demon",
  36264. default: true
  36265. },
  36266. terraFront: {
  36267. height: math.unit(1.5, "earths"),
  36268. name: "Front",
  36269. image: {
  36270. source: "./media/characters/moonlight-rose/terra.svg"
  36271. },
  36272. form: "terra",
  36273. default: true
  36274. },
  36275. jupiterFront: {
  36276. height: math.unit(69911*2, "km"),
  36277. name: "Front",
  36278. image: {
  36279. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36280. extra: 1367/1286,
  36281. bottom: 55/1422
  36282. },
  36283. form: "jupiter",
  36284. default: true
  36285. },
  36286. neptuneFront: {
  36287. height: math.unit(24622*2, "feet"),
  36288. name: "Front",
  36289. image: {
  36290. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36291. extra: 1851/1712,
  36292. bottom: 0/1851
  36293. },
  36294. form: "neptune",
  36295. default: true
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "\"Natural\" Height",
  36301. height: math.unit(5 + 11/12, "feet"),
  36302. form: "normal"
  36303. },
  36304. {
  36305. name: "Smallest comfortable size",
  36306. height: math.unit(40, "meters"),
  36307. form: "normal"
  36308. },
  36309. {
  36310. name: "Common size",
  36311. height: math.unit(50, "km"),
  36312. form: "normal",
  36313. default: true
  36314. },
  36315. {
  36316. name: "Normal",
  36317. height: math.unit(1.5, "earths"),
  36318. form: "demon",
  36319. default: true
  36320. },
  36321. {
  36322. name: "Universal",
  36323. height: math.unit(15, "universes"),
  36324. form: "demon"
  36325. },
  36326. {
  36327. name: "Earth",
  36328. height: math.unit(1.5, "earths"),
  36329. form: "terra",
  36330. default: true
  36331. },
  36332. {
  36333. name: "Super Earth",
  36334. height: math.unit(67.5, "earths"),
  36335. form: "terra"
  36336. },
  36337. {
  36338. name: "Doesn't fit in a solar system...",
  36339. height: math.unit(1, "galaxy"),
  36340. form: "terra"
  36341. },
  36342. {
  36343. name: "Saturn",
  36344. height: math.unit(58232*2, "km"),
  36345. form: "jupiter"
  36346. },
  36347. {
  36348. name: "Jupiter",
  36349. height: math.unit(69911*2, "km"),
  36350. form: "jupiter",
  36351. default: true
  36352. },
  36353. {
  36354. name: "HD 100546 b",
  36355. height: math.unit(482938, "km"),
  36356. form: "jupiter"
  36357. },
  36358. {
  36359. name: "Enceladus",
  36360. height: math.unit(513*2, "km"),
  36361. form: "neptune"
  36362. },
  36363. {
  36364. name: "Europe",
  36365. height: math.unit(1560*2, "km"),
  36366. form: "neptune"
  36367. },
  36368. {
  36369. name: "Neptune",
  36370. height: math.unit(24622*2, "km"),
  36371. form: "neptune",
  36372. default: true
  36373. },
  36374. {
  36375. name: "CoRoT-9b",
  36376. height: math.unit(75067*2, "km"),
  36377. form: "neptune"
  36378. },
  36379. ],
  36380. {
  36381. "normal": {
  36382. name: "Normal",
  36383. default: true
  36384. },
  36385. "demon": {
  36386. name: "Demon"
  36387. },
  36388. "terra": {
  36389. name: "Terra"
  36390. },
  36391. "jupiter": {
  36392. name: "Jupiter"
  36393. },
  36394. "neptune": {
  36395. name: "Neptune"
  36396. }
  36397. }
  36398. ))
  36399. characterMakers.push(() => makeCharacter(
  36400. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36401. {
  36402. front: {
  36403. height: math.unit(16, "feet"),
  36404. weight: math.unit(610, "kg"),
  36405. name: "Front",
  36406. image: {
  36407. source: "./media/characters/huckle/front.svg",
  36408. extra: 1731/1625,
  36409. bottom: 33/1764
  36410. }
  36411. },
  36412. back: {
  36413. height: math.unit(16, "feet"),
  36414. weight: math.unit(610, "kg"),
  36415. name: "Back",
  36416. image: {
  36417. source: "./media/characters/huckle/back.svg",
  36418. extra: 1738/1651,
  36419. bottom: 37/1775
  36420. }
  36421. },
  36422. laughing: {
  36423. height: math.unit(3.75, "feet"),
  36424. name: "Laughing",
  36425. image: {
  36426. source: "./media/characters/huckle/laughing.svg"
  36427. }
  36428. },
  36429. angry: {
  36430. height: math.unit(4.15, "feet"),
  36431. name: "Angry",
  36432. image: {
  36433. source: "./media/characters/huckle/angry.svg"
  36434. }
  36435. },
  36436. },
  36437. [
  36438. {
  36439. name: "Normal",
  36440. height: math.unit(16, "feet"),
  36441. default: true
  36442. },
  36443. {
  36444. name: "Mini Macro",
  36445. height: math.unit(463, "feet")
  36446. },
  36447. {
  36448. name: "Macro",
  36449. height: math.unit(1680, "meters")
  36450. },
  36451. {
  36452. name: "Mega Macro",
  36453. height: math.unit(175, "km")
  36454. },
  36455. {
  36456. name: "Terra Macro",
  36457. height: math.unit(32, "gigameters")
  36458. },
  36459. {
  36460. name: "Multiverse+",
  36461. height: math.unit(2.56e23, "yottameters")
  36462. },
  36463. ]
  36464. ))
  36465. characterMakers.push(() => makeCharacter(
  36466. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36467. {
  36468. front: {
  36469. height: math.unit(6 + 9/12, "feet"),
  36470. weight: math.unit(280, "lb"),
  36471. name: "Front",
  36472. image: {
  36473. source: "./media/characters/candy/front.svg",
  36474. extra: 234/217,
  36475. bottom: 11/245
  36476. }
  36477. },
  36478. },
  36479. [
  36480. {
  36481. name: "Really Small",
  36482. height: math.unit(0.1, "nm")
  36483. },
  36484. {
  36485. name: "Micro",
  36486. height: math.unit(2, "inches")
  36487. },
  36488. {
  36489. name: "Normal",
  36490. height: math.unit(6 + 9/12, "feet"),
  36491. default: true
  36492. },
  36493. {
  36494. name: "Small Macro",
  36495. height: math.unit(69, "feet")
  36496. },
  36497. {
  36498. name: "Macro",
  36499. height: math.unit(160, "feet")
  36500. },
  36501. {
  36502. name: "Megamacro",
  36503. height: math.unit(22000, "miles")
  36504. },
  36505. {
  36506. name: "Gigamacro",
  36507. height: math.unit(50000, "miles")
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(4, "feet"),
  36516. weight: math.unit(90, "lb"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/joey-mcdonald/front.svg",
  36520. extra: 1059/852,
  36521. bottom: 33/1092
  36522. }
  36523. },
  36524. back: {
  36525. height: math.unit(4, "feet"),
  36526. weight: math.unit(90, "lb"),
  36527. name: "Back",
  36528. image: {
  36529. source: "./media/characters/joey-mcdonald/back.svg",
  36530. extra: 1077/879,
  36531. bottom: 5/1082
  36532. }
  36533. },
  36534. frontKobold: {
  36535. height: math.unit(4, "feet"),
  36536. weight: math.unit(100, "lb"),
  36537. name: "Front-kobold",
  36538. image: {
  36539. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36540. extra: 1480/1367,
  36541. bottom: 0/1480
  36542. }
  36543. },
  36544. backKobold: {
  36545. height: math.unit(4, "feet"),
  36546. weight: math.unit(100, "lb"),
  36547. name: "Back-kobold",
  36548. image: {
  36549. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36550. extra: 1449/1361,
  36551. bottom: 0/1449
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Normal",
  36558. height: math.unit(4, "feet"),
  36559. default: true
  36560. },
  36561. ]
  36562. ))
  36563. characterMakers.push(() => makeCharacter(
  36564. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36565. {
  36566. front: {
  36567. height: math.unit(12 + 6/12, "feet"),
  36568. name: "Front",
  36569. image: {
  36570. source: "./media/characters/kass-lockheed/front.svg",
  36571. extra: 354/343,
  36572. bottom: 9/363
  36573. }
  36574. },
  36575. back: {
  36576. height: math.unit(12 + 6/12, "feet"),
  36577. name: "Back",
  36578. image: {
  36579. source: "./media/characters/kass-lockheed/back.svg",
  36580. extra: 364/352,
  36581. bottom: 3/367
  36582. }
  36583. },
  36584. dick: {
  36585. height: math.unit(3.12, "feet"),
  36586. name: "Dick",
  36587. image: {
  36588. source: "./media/characters/kass-lockheed/dick.svg"
  36589. }
  36590. },
  36591. head: {
  36592. height: math.unit(2.6, "feet"),
  36593. name: "Head",
  36594. image: {
  36595. source: "./media/characters/kass-lockheed/head.svg"
  36596. }
  36597. },
  36598. bleh: {
  36599. height: math.unit(2.85, "feet"),
  36600. name: "Bleh",
  36601. image: {
  36602. source: "./media/characters/kass-lockheed/bleh.svg"
  36603. }
  36604. },
  36605. smug: {
  36606. height: math.unit(2.85, "feet"),
  36607. name: "Smug",
  36608. image: {
  36609. source: "./media/characters/kass-lockheed/smug.svg"
  36610. }
  36611. },
  36612. },
  36613. [
  36614. {
  36615. name: "Normal",
  36616. height: math.unit(12 + 6/12, "feet"),
  36617. default: true
  36618. },
  36619. ]
  36620. ))
  36621. characterMakers.push(() => makeCharacter(
  36622. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36623. {
  36624. front: {
  36625. height: math.unit(6 + 2/12, "feet"),
  36626. name: "Front",
  36627. image: {
  36628. source: "./media/characters/taylor/front.svg",
  36629. extra: 639/495,
  36630. bottom: 12/651
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(6 + 2/12, "feet"),
  36638. default: true
  36639. },
  36640. {
  36641. name: "Big",
  36642. height: math.unit(15, "feet")
  36643. },
  36644. {
  36645. name: "Lorg",
  36646. height: math.unit(80, "feet")
  36647. },
  36648. {
  36649. name: "Too Lorg",
  36650. height: math.unit(120, "feet")
  36651. },
  36652. ]
  36653. ))
  36654. characterMakers.push(() => makeCharacter(
  36655. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36656. {
  36657. front: {
  36658. height: math.unit(15, "feet"),
  36659. name: "Front",
  36660. image: {
  36661. source: "./media/characters/kaizer/front.svg",
  36662. extra: 1612/1436,
  36663. bottom: 43/1655
  36664. }
  36665. },
  36666. },
  36667. [
  36668. {
  36669. name: "Normal",
  36670. height: math.unit(15, "feet"),
  36671. default: true
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(2, "feet"),
  36680. weight: math.unit(30, "lb"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/sandy/front.svg",
  36684. extra: 1439/1307,
  36685. bottom: 194/1633
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(2, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36699. {
  36700. front: {
  36701. height: math.unit(3, "feet"),
  36702. name: "Front",
  36703. image: {
  36704. source: "./media/characters/mellvi/front.svg",
  36705. extra: 1831/1630,
  36706. bottom: 58/1889
  36707. }
  36708. },
  36709. },
  36710. [
  36711. {
  36712. name: "Normal",
  36713. height: math.unit(3, "feet"),
  36714. default: true
  36715. },
  36716. ]
  36717. ))
  36718. characterMakers.push(() => makeCharacter(
  36719. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36720. {
  36721. front: {
  36722. height: math.unit(5 + 11/12, "feet"),
  36723. weight: math.unit(200, "lb"),
  36724. name: "Front",
  36725. image: {
  36726. source: "./media/characters/shirou/front.svg",
  36727. extra: 2491/2383,
  36728. bottom: 189/2680
  36729. }
  36730. },
  36731. back: {
  36732. height: math.unit(5 + 11/12, "feet"),
  36733. weight: math.unit(200, "lb"),
  36734. name: "Back",
  36735. image: {
  36736. source: "./media/characters/shirou/back.svg",
  36737. extra: 2554/2450,
  36738. bottom: 76/2630
  36739. }
  36740. },
  36741. },
  36742. [
  36743. {
  36744. name: "Normal",
  36745. height: math.unit(5 + 11/12, "feet"),
  36746. default: true
  36747. },
  36748. ]
  36749. ))
  36750. characterMakers.push(() => makeCharacter(
  36751. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36752. {
  36753. front: {
  36754. height: math.unit(6 + 3/12, "feet"),
  36755. weight: math.unit(177, "lb"),
  36756. name: "Front",
  36757. image: {
  36758. source: "./media/characters/noryu/front.svg",
  36759. extra: 973/885,
  36760. bottom: 10/983
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(6 + 3/12, "feet"),
  36768. default: true
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36774. {
  36775. front: {
  36776. height: math.unit(5 + 6/12, "feet"),
  36777. weight: math.unit(170, "lb"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/mevolas-rubenido/front.svg",
  36781. extra: 2109/1901,
  36782. bottom: 96/2205
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(5 + 6/12, "feet"),
  36790. default: true
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36796. {
  36797. front: {
  36798. height: math.unit(100, "feet"),
  36799. name: "Front",
  36800. image: {
  36801. source: "./media/characters/dee/front.svg",
  36802. extra: 2153/2036,
  36803. bottom: 59/2212
  36804. }
  36805. },
  36806. back: {
  36807. height: math.unit(100, "feet"),
  36808. name: "Back",
  36809. image: {
  36810. source: "./media/characters/dee/back.svg",
  36811. extra: 2183/2058,
  36812. bottom: 75/2258
  36813. }
  36814. },
  36815. foot: {
  36816. height: math.unit(19.43, "feet"),
  36817. name: "Foot",
  36818. image: {
  36819. source: "./media/characters/dee/foot.svg"
  36820. }
  36821. },
  36822. hoof: {
  36823. height: math.unit(20.6, "feet"),
  36824. name: "Hoof",
  36825. image: {
  36826. source: "./media/characters/dee/hoof.svg"
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Macro",
  36833. height: math.unit(100, "feet"),
  36834. default: true
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36840. {
  36841. front: {
  36842. height: math.unit(5 + 6/12, "feet"),
  36843. name: "Front",
  36844. image: {
  36845. source: "./media/characters/teh/front.svg",
  36846. extra: 1002/847,
  36847. bottom: 62/1064
  36848. }
  36849. },
  36850. },
  36851. [
  36852. {
  36853. name: "Normal",
  36854. height: math.unit(5 + 6/12, "feet"),
  36855. default: true
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36861. {
  36862. side: {
  36863. height: math.unit(6 + 1/12, "feet"),
  36864. weight: math.unit(204, "lb"),
  36865. name: "Side",
  36866. image: {
  36867. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36868. extra: 974/775,
  36869. bottom: 169/1143
  36870. }
  36871. },
  36872. sitting: {
  36873. height: math.unit(6 + 2/12, "feet"),
  36874. weight: math.unit(204, "lb"),
  36875. name: "Sitting",
  36876. image: {
  36877. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36878. extra: 1175/964,
  36879. bottom: 378/1553
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(6 + 1/12, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(6, "inches"),
  36896. name: "Front",
  36897. image: {
  36898. source: "./media/characters/tululi/front.svg",
  36899. extra: 1997/1876,
  36900. bottom: 20/2017
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(6, "inches"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(4 + 1/12, "feet"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/star/front.svg",
  36920. extra: 1493/1189,
  36921. bottom: 48/1541
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(4 + 1/12, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36935. {
  36936. front: {
  36937. height: math.unit(6 + 3/12, "feet"),
  36938. name: "Front",
  36939. image: {
  36940. source: "./media/characters/comet/front.svg",
  36941. extra: 1681/1462,
  36942. bottom: 26/1707
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(6 + 3/12, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36956. {
  36957. front: {
  36958. height: math.unit(950, "feet"),
  36959. name: "Front",
  36960. image: {
  36961. source: "./media/characters/vortex/front.svg",
  36962. extra: 1497/1434,
  36963. bottom: 56/1553
  36964. }
  36965. },
  36966. maw: {
  36967. height: math.unit(285, "feet"),
  36968. name: "Maw",
  36969. image: {
  36970. source: "./media/characters/vortex/maw.svg"
  36971. }
  36972. },
  36973. },
  36974. [
  36975. {
  36976. name: "Macro",
  36977. height: math.unit(950, "feet"),
  36978. default: true
  36979. },
  36980. ]
  36981. ))
  36982. characterMakers.push(() => makeCharacter(
  36983. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36984. {
  36985. front: {
  36986. height: math.unit(600, "feet"),
  36987. weight: math.unit(0.02, "grams"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/doodle/front.svg",
  36991. extra: 1578/1413,
  36992. bottom: 37/1615
  36993. }
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "Macro",
  36999. height: math.unit(600, "feet"),
  37000. default: true
  37001. },
  37002. ]
  37003. ))
  37004. characterMakers.push(() => makeCharacter(
  37005. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37006. {
  37007. front: {
  37008. height: math.unit(6 + 6/12, "feet"),
  37009. name: "Front",
  37010. image: {
  37011. source: "./media/characters/jai/front.svg",
  37012. extra: 1645/1534,
  37013. bottom: 115/1760
  37014. }
  37015. },
  37016. },
  37017. [
  37018. {
  37019. name: "Normal",
  37020. height: math.unit(6 + 6/12, "feet"),
  37021. default: true
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37027. {
  37028. front: {
  37029. height: math.unit(6 + 8/12, "feet"),
  37030. name: "Front",
  37031. image: {
  37032. source: "./media/characters/pixel/front.svg",
  37033. extra: 1900/1735,
  37034. bottom: 63/1963
  37035. }
  37036. },
  37037. },
  37038. [
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(6 + 8/12, "feet"),
  37042. default: true
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37048. {
  37049. back: {
  37050. height: math.unit(4 + 1/12, "feet"),
  37051. weight: math.unit(75, "lb"),
  37052. name: "Back",
  37053. image: {
  37054. source: "./media/characters/rhett/back.svg",
  37055. extra: 930/878,
  37056. bottom: 25/955
  37057. }
  37058. },
  37059. front: {
  37060. height: math.unit(4 + 1/12, "feet"),
  37061. weight: math.unit(75, "lb"),
  37062. name: "Front",
  37063. image: {
  37064. source: "./media/characters/rhett/front.svg",
  37065. extra: 1682/1586,
  37066. bottom: 92/1774
  37067. }
  37068. },
  37069. },
  37070. [
  37071. {
  37072. name: "Micro",
  37073. height: math.unit(8, "inches")
  37074. },
  37075. {
  37076. name: "Tiny",
  37077. height: math.unit(2, "feet")
  37078. },
  37079. {
  37080. name: "Normal",
  37081. height: math.unit(4 + 1/12, "feet"),
  37082. default: true
  37083. },
  37084. ]
  37085. ))
  37086. characterMakers.push(() => makeCharacter(
  37087. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37088. {
  37089. front: {
  37090. height: math.unit(3 + 3/12, "feet"),
  37091. name: "Front",
  37092. image: {
  37093. source: "./media/characters/penny/front.svg",
  37094. extra: 1406/1311,
  37095. bottom: 26/1432
  37096. }
  37097. },
  37098. },
  37099. [
  37100. {
  37101. name: "Normal",
  37102. height: math.unit(3 + 3/12, "feet"),
  37103. default: true
  37104. },
  37105. ]
  37106. ))
  37107. characterMakers.push(() => makeCharacter(
  37108. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37109. {
  37110. front: {
  37111. height: math.unit(4 + 11/12, "feet"),
  37112. name: "Front",
  37113. image: {
  37114. source: "./media/characters/monty/front.svg",
  37115. extra: 1479/1209,
  37116. bottom: 0/1479
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(4 + 11/12, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37130. {
  37131. front: {
  37132. height: math.unit(8 + 4/12, "feet"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/sterling/front.svg",
  37136. extra: 1420/1236,
  37137. bottom: 27/1447
  37138. }
  37139. },
  37140. },
  37141. [
  37142. {
  37143. name: "Normal",
  37144. height: math.unit(8 + 4/12, "feet"),
  37145. default: true
  37146. },
  37147. ]
  37148. ))
  37149. characterMakers.push(() => makeCharacter(
  37150. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37151. {
  37152. front: {
  37153. height: math.unit(15, "feet"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/marble/front.svg",
  37157. extra: 973/937,
  37158. bottom: 32/1005
  37159. }
  37160. },
  37161. },
  37162. [
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(15, "feet"),
  37166. default: true
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37172. {
  37173. front: {
  37174. height: math.unit(3, "inches"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/powder/front.svg",
  37178. extra: 1504/1334,
  37179. bottom: 518/2022
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Normal",
  37186. height: math.unit(3, "inches"),
  37187. default: true
  37188. },
  37189. ]
  37190. ))
  37191. characterMakers.push(() => makeCharacter(
  37192. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37193. {
  37194. front: {
  37195. height: math.unit(4 + 5/12, "feet"),
  37196. name: "Front",
  37197. image: {
  37198. source: "./media/characters/joey-raccoon/front.svg",
  37199. extra: 1273/1197,
  37200. bottom: 0/1273
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(4 + 5/12, "feet"),
  37208. default: true
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(8 + 4/12, "feet"),
  37217. name: "Front",
  37218. image: {
  37219. source: "./media/characters/vick/front.svg",
  37220. extra: 2187/2118,
  37221. bottom: 47/2234
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal",
  37228. height: math.unit(8 + 4/12, "feet"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(5 + 5/12, "feet"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/mitsy/front.svg",
  37241. extra: 1842/1695,
  37242. bottom: 0/1842
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(5 + 5/12, "feet"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(6 + 3/12, "feet"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/silvy/front.svg",
  37262. extra: 1995/1836,
  37263. bottom: 225/2220
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(6 + 3/12, "feet"),
  37271. default: true
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37277. {
  37278. front: {
  37279. height: math.unit(3 + 8/12, "feet"),
  37280. name: "Front",
  37281. image: {
  37282. source: "./media/characters/rodney/front.svg",
  37283. extra: 1956/1747,
  37284. bottom: 31/1987
  37285. }
  37286. },
  37287. frontDressed: {
  37288. height: math.unit(2.9, "feet"),
  37289. name: "Front (Dressed)",
  37290. image: {
  37291. source: "./media/characters/rodney/front-dressed.svg",
  37292. extra: 1382/1241,
  37293. bottom: 385/1767
  37294. }
  37295. },
  37296. },
  37297. [
  37298. {
  37299. name: "Normal",
  37300. height: math.unit(3 + 8/12, "feet"),
  37301. default: true
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37307. {
  37308. front: {
  37309. height: math.unit(5 + 9/12, "feet"),
  37310. weight: math.unit(194, "lbs"),
  37311. name: "Front",
  37312. image: {
  37313. source: "./media/characters/zakail-sudekai/front.svg",
  37314. extra: 2696/2533,
  37315. bottom: 248/2944
  37316. }
  37317. },
  37318. maw: {
  37319. height: math.unit(1.35, "feet"),
  37320. name: "Maw",
  37321. image: {
  37322. source: "./media/characters/zakail-sudekai/maw.svg"
  37323. }
  37324. },
  37325. },
  37326. [
  37327. {
  37328. name: "Normal",
  37329. height: math.unit(5 + 9/12, "feet"),
  37330. default: true
  37331. },
  37332. ]
  37333. ))
  37334. characterMakers.push(() => makeCharacter(
  37335. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37336. {
  37337. front: {
  37338. height: math.unit(8 + 4/12, "feet"),
  37339. weight: math.unit(1200, "lb"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/eleanor/front.svg",
  37343. extra: 1226/1192,
  37344. bottom: 52/1278
  37345. }
  37346. },
  37347. back: {
  37348. height: math.unit(8 + 4/12, "feet"),
  37349. weight: math.unit(1200, "lb"),
  37350. name: "Back",
  37351. image: {
  37352. source: "./media/characters/eleanor/back.svg",
  37353. extra: 1242/1184,
  37354. bottom: 60/1302
  37355. }
  37356. },
  37357. head: {
  37358. height: math.unit(2.62, "feet"),
  37359. name: "Head",
  37360. image: {
  37361. source: "./media/characters/eleanor/head.svg"
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Normal",
  37368. height: math.unit(8 + 4/12, "feet"),
  37369. default: true
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37375. {
  37376. front: {
  37377. height: math.unit(8 + 4/12, "feet"),
  37378. weight: math.unit(750, "lb"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/tanya/front.svg",
  37382. extra: 1749/1615,
  37383. bottom: 33/1782
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(8 + 4/12, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(5, "feet"),
  37400. weight: math.unit(225, "lb"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/cindy/front.svg",
  37404. extra: 1320/1250,
  37405. bottom: 42/1362
  37406. }
  37407. },
  37408. frontDressed: {
  37409. height: math.unit(5, "feet"),
  37410. weight: math.unit(225, "lb"),
  37411. name: "Front (Dressed)",
  37412. image: {
  37413. source: "./media/characters/cindy/front-dressed.svg",
  37414. extra: 1320/1250,
  37415. bottom: 42/1362
  37416. }
  37417. },
  37418. back: {
  37419. height: math.unit(5, "feet"),
  37420. weight: math.unit(225, "lb"),
  37421. name: "Back",
  37422. image: {
  37423. source: "./media/characters/cindy/back.svg",
  37424. extra: 1384/1346,
  37425. bottom: 14/1398
  37426. }
  37427. },
  37428. },
  37429. [
  37430. {
  37431. name: "Normal",
  37432. height: math.unit(5, "feet"),
  37433. default: true
  37434. },
  37435. ]
  37436. ))
  37437. characterMakers.push(() => makeCharacter(
  37438. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37439. {
  37440. front: {
  37441. height: math.unit(6 + 9/12, "feet"),
  37442. weight: math.unit(440, "lb"),
  37443. name: "Front",
  37444. image: {
  37445. source: "./media/characters/wilbur-owen/front.svg",
  37446. extra: 1575/1448,
  37447. bottom: 72/1647
  37448. }
  37449. },
  37450. back: {
  37451. height: math.unit(6 + 9/12, "feet"),
  37452. weight: math.unit(440, "lb"),
  37453. name: "Back",
  37454. image: {
  37455. source: "./media/characters/wilbur-owen/back.svg",
  37456. extra: 1578/1445,
  37457. bottom: 36/1614
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(6 + 9/12, "feet"),
  37465. default: true
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37471. {
  37472. front: {
  37473. height: math.unit(6 + 5/12, "feet"),
  37474. weight: math.unit(650, "lb"),
  37475. name: "Front",
  37476. image: {
  37477. source: "./media/characters/keegan/front.svg",
  37478. extra: 2387/2198,
  37479. bottom: 33/2420
  37480. }
  37481. },
  37482. side: {
  37483. height: math.unit(6 + 5/12, "feet"),
  37484. weight: math.unit(650, "lb"),
  37485. name: "Side",
  37486. image: {
  37487. source: "./media/characters/keegan/side.svg",
  37488. extra: 2390/2202,
  37489. bottom: 47/2437
  37490. }
  37491. },
  37492. back: {
  37493. height: math.unit(6 + 5/12, "feet"),
  37494. weight: math.unit(650, "lb"),
  37495. name: "Back",
  37496. image: {
  37497. source: "./media/characters/keegan/back.svg",
  37498. extra: 2418/2268,
  37499. bottom: 15/2433
  37500. }
  37501. },
  37502. frontSfw: {
  37503. height: math.unit(6 + 5/12, "feet"),
  37504. weight: math.unit(650, "lb"),
  37505. name: "Front (SFW)",
  37506. image: {
  37507. source: "./media/characters/keegan/front-sfw.svg",
  37508. extra: 2387/2198,
  37509. bottom: 33/2420
  37510. }
  37511. },
  37512. beans: {
  37513. height: math.unit(1.85, "feet"),
  37514. name: "Beans",
  37515. image: {
  37516. source: "./media/characters/keegan/beans.svg"
  37517. }
  37518. },
  37519. },
  37520. [
  37521. {
  37522. name: "Normal",
  37523. height: math.unit(6 + 5/12, "feet"),
  37524. default: true
  37525. },
  37526. ]
  37527. ))
  37528. characterMakers.push(() => makeCharacter(
  37529. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37530. {
  37531. front: {
  37532. height: math.unit(9, "feet"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/colton/front.svg",
  37536. extra: 1589/1326,
  37537. bottom: 139/1728
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(9, "feet"),
  37545. default: true
  37546. },
  37547. ]
  37548. ))
  37549. characterMakers.push(() => makeCharacter(
  37550. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37551. {
  37552. front: {
  37553. height: math.unit(2 + 9/12, "feet"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/bora/front.svg",
  37557. extra: 1265/1250,
  37558. bottom: 24/1289
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Normal",
  37565. height: math.unit(2 + 9/12, "feet"),
  37566. default: true
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37572. {
  37573. front: {
  37574. height: math.unit(8, "feet"),
  37575. name: "Front",
  37576. image: {
  37577. source: "./media/characters/myu-myu/front.svg",
  37578. extra: 1949/1857,
  37579. bottom: 90/2039
  37580. }
  37581. },
  37582. },
  37583. [
  37584. {
  37585. name: "Normal",
  37586. height: math.unit(8, "feet"),
  37587. default: true
  37588. },
  37589. {
  37590. name: "Big",
  37591. height: math.unit(15, "feet")
  37592. },
  37593. {
  37594. name: "BIG",
  37595. height: math.unit(25, "feet")
  37596. },
  37597. ]
  37598. ))
  37599. characterMakers.push(() => makeCharacter(
  37600. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37601. {
  37602. side: {
  37603. height: math.unit(7 + 5/12, "feet"),
  37604. weight: math.unit(2800, "lb"),
  37605. name: "Side",
  37606. image: {
  37607. source: "./media/characters/haloren/side.svg",
  37608. extra: 1793/409,
  37609. bottom: 59/1852
  37610. }
  37611. },
  37612. frontPaw: {
  37613. height: math.unit(2.36, "feet"),
  37614. name: "Front paw",
  37615. image: {
  37616. source: "./media/characters/haloren/front-paw.svg"
  37617. }
  37618. },
  37619. hindPaw: {
  37620. height: math.unit(3.18, "feet"),
  37621. name: "Hind paw",
  37622. image: {
  37623. source: "./media/characters/haloren/hind-paw.svg"
  37624. }
  37625. },
  37626. maw: {
  37627. height: math.unit(5.05, "feet"),
  37628. name: "Maw",
  37629. image: {
  37630. source: "./media/characters/haloren/maw.svg"
  37631. }
  37632. },
  37633. dick: {
  37634. height: math.unit(2.90, "feet"),
  37635. name: "Dick",
  37636. image: {
  37637. source: "./media/characters/haloren/dick.svg"
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(7 + 5/12, "feet"),
  37645. default: true
  37646. },
  37647. {
  37648. name: "Enhanced",
  37649. height: math.unit(14 + 3/12, "feet")
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(171, "cm"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/kimmy/front.svg",
  37661. extra: 1491/1435,
  37662. bottom: 53/1544
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Small",
  37669. height: math.unit(9, "cm")
  37670. },
  37671. {
  37672. name: "Normal",
  37673. height: math.unit(171, "cm"),
  37674. default: true
  37675. },
  37676. ]
  37677. ))
  37678. characterMakers.push(() => makeCharacter(
  37679. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37680. {
  37681. front: {
  37682. height: math.unit(8, "feet"),
  37683. weight: math.unit(300, "lb"),
  37684. name: "Front",
  37685. image: {
  37686. source: "./media/characters/galeboomer/front.svg",
  37687. extra: 4651/4415,
  37688. bottom: 162/4813
  37689. }
  37690. },
  37691. back: {
  37692. height: math.unit(8, "feet"),
  37693. weight: math.unit(300, "lb"),
  37694. name: "Back",
  37695. image: {
  37696. source: "./media/characters/galeboomer/back.svg",
  37697. extra: 4544/4314,
  37698. bottom: 16/4560
  37699. }
  37700. },
  37701. frontAlt: {
  37702. height: math.unit(8, "feet"),
  37703. weight: math.unit(300, "lb"),
  37704. name: "Front (Alt)",
  37705. image: {
  37706. source: "./media/characters/galeboomer/front-alt.svg",
  37707. extra: 4458/4228,
  37708. bottom: 68/4526
  37709. }
  37710. },
  37711. maw: {
  37712. height: math.unit(1.2, "feet"),
  37713. name: "Maw",
  37714. image: {
  37715. source: "./media/characters/galeboomer/maw.svg"
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(8, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(5 + 9/12, "feet"),
  37732. weight: math.unit(120, "lb"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/chyr/front.svg",
  37736. extra: 1323/1254,
  37737. bottom: 63/1386
  37738. }
  37739. },
  37740. back: {
  37741. height: math.unit(5 + 9/12, "feet"),
  37742. weight: math.unit(120, "lb"),
  37743. name: "Back",
  37744. image: {
  37745. source: "./media/characters/chyr/back.svg",
  37746. extra: 1323/1252,
  37747. bottom: 48/1371
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Normal",
  37754. height: math.unit(5 + 9/12, "feet"),
  37755. default: true
  37756. },
  37757. ]
  37758. ))
  37759. characterMakers.push(() => makeCharacter(
  37760. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37761. {
  37762. front: {
  37763. height: math.unit(7, "feet"),
  37764. weight: math.unit(310, "lb"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/solarus/front.svg",
  37768. extra: 2415/2021,
  37769. bottom: 103/2518
  37770. }
  37771. },
  37772. back: {
  37773. height: math.unit(7, "feet"),
  37774. weight: math.unit(310, "lb"),
  37775. name: "Back",
  37776. image: {
  37777. source: "./media/characters/solarus/back.svg",
  37778. extra: 2463/2089,
  37779. bottom: 79/2542
  37780. }
  37781. },
  37782. },
  37783. [
  37784. {
  37785. name: "Normal",
  37786. height: math.unit(7, "feet"),
  37787. default: true
  37788. },
  37789. ]
  37790. ))
  37791. characterMakers.push(() => makeCharacter(
  37792. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37793. {
  37794. front: {
  37795. height: math.unit(16, "feet"),
  37796. name: "Front",
  37797. image: {
  37798. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37799. extra: 1844/1780,
  37800. bottom: 58/1902
  37801. }
  37802. },
  37803. winterCoat: {
  37804. height: math.unit(16, "feet"),
  37805. name: "Winter Coat",
  37806. image: {
  37807. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37808. extra: 1807/1775,
  37809. bottom: 69/1876
  37810. }
  37811. },
  37812. },
  37813. [
  37814. {
  37815. name: "Normal",
  37816. height: math.unit(16, "feet"),
  37817. default: true
  37818. },
  37819. {
  37820. name: "Chicago Size",
  37821. height: math.unit(560, "feet")
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(11 + 6/12, "feet"),
  37830. weight: math.unit(1366, "lb"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/lexor/front.svg",
  37834. extra: 1560/1481,
  37835. bottom: 211/1771
  37836. }
  37837. },
  37838. back: {
  37839. height: math.unit(11 + 6/12, "feet"),
  37840. weight: math.unit(1366, "lb"),
  37841. name: "Back",
  37842. image: {
  37843. source: "./media/characters/lexor/back.svg",
  37844. extra: 1614/1533,
  37845. bottom: 76/1690
  37846. }
  37847. },
  37848. maw: {
  37849. height: math.unit(3, "feet"),
  37850. name: "Maw",
  37851. image: {
  37852. source: "./media/characters/lexor/maw.svg"
  37853. }
  37854. },
  37855. dick: {
  37856. height: math.unit(2.59, "feet"),
  37857. name: "Dick",
  37858. image: {
  37859. source: "./media/characters/lexor/dick.svg"
  37860. }
  37861. },
  37862. },
  37863. [
  37864. {
  37865. name: "Normal",
  37866. height: math.unit(11 + 6/12, "feet"),
  37867. default: true
  37868. },
  37869. ]
  37870. ))
  37871. characterMakers.push(() => makeCharacter(
  37872. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37873. {
  37874. front: {
  37875. height: math.unit(5 + 8/12, "feet"),
  37876. name: "Front",
  37877. image: {
  37878. source: "./media/characters/magnum/front.svg",
  37879. extra: 942/855,
  37880. bottom: 26/968
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(5 + 8/12, "feet"),
  37888. default: true
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(18 + 4/12, "feet"),
  37897. weight: math.unit(1500, "kg"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/solas-sharpsman/front.svg",
  37901. extra: 1698/1589,
  37902. bottom: 0/1698
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(18 + 4/12, "feet"),
  37910. default: true
  37911. },
  37912. ]
  37913. ))
  37914. characterMakers.push(() => makeCharacter(
  37915. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37916. {
  37917. front: {
  37918. height: math.unit(5 + 5/12, "feet"),
  37919. weight: math.unit(180, "lb"),
  37920. name: "Front",
  37921. image: {
  37922. source: "./media/characters/october/front.svg",
  37923. extra: 1800/1650,
  37924. bottom: 0/1800
  37925. }
  37926. },
  37927. frontNsfw: {
  37928. height: math.unit(5 + 5/12, "feet"),
  37929. weight: math.unit(180, "lb"),
  37930. name: "Front (NSFW)",
  37931. image: {
  37932. source: "./media/characters/october/front-nsfw.svg",
  37933. extra: 1392/1307,
  37934. bottom: 42/1434
  37935. }
  37936. },
  37937. },
  37938. [
  37939. {
  37940. name: "Normal",
  37941. height: math.unit(5 + 5/12, "feet"),
  37942. default: true
  37943. },
  37944. ]
  37945. ))
  37946. characterMakers.push(() => makeCharacter(
  37947. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37948. {
  37949. front: {
  37950. height: math.unit(8 + 6/12, "feet"),
  37951. name: "Front",
  37952. image: {
  37953. source: "./media/characters/essynkardi/front.svg",
  37954. extra: 1914/1846,
  37955. bottom: 22/1936
  37956. }
  37957. },
  37958. },
  37959. [
  37960. {
  37961. name: "Normal",
  37962. height: math.unit(8 + 6/12, "feet"),
  37963. default: true
  37964. },
  37965. ]
  37966. ))
  37967. characterMakers.push(() => makeCharacter(
  37968. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37969. {
  37970. front: {
  37971. height: math.unit(6 + 6/12, "feet"),
  37972. weight: math.unit(7, "lb"),
  37973. name: "Front",
  37974. image: {
  37975. source: "./media/characters/icky/front.svg",
  37976. extra: 813/782,
  37977. bottom: 66/879
  37978. }
  37979. },
  37980. back: {
  37981. height: math.unit(6 + 6/12, "feet"),
  37982. weight: math.unit(7, "lb"),
  37983. name: "Back",
  37984. image: {
  37985. source: "./media/characters/icky/back.svg",
  37986. extra: 754/735,
  37987. bottom: 56/810
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(6 + 6/12, "feet"),
  37995. default: true
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38001. {
  38002. front: {
  38003. height: math.unit(15, "feet"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/rojas/front.svg",
  38007. extra: 1462/1408,
  38008. bottom: 95/1557
  38009. }
  38010. },
  38011. back: {
  38012. height: math.unit(15, "feet"),
  38013. name: "Back",
  38014. image: {
  38015. source: "./media/characters/rojas/back.svg",
  38016. extra: 1023/954,
  38017. bottom: 28/1051
  38018. }
  38019. },
  38020. },
  38021. [
  38022. {
  38023. name: "Normal",
  38024. height: math.unit(15, "feet"),
  38025. default: true
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38031. {
  38032. frontHuman: {
  38033. height: math.unit(5 + 7/12, "feet"),
  38034. name: "Front (Human)",
  38035. image: {
  38036. source: "./media/characters/alek-dryagan/front-human.svg",
  38037. extra: 1687/1667,
  38038. bottom: 69/1756
  38039. }
  38040. },
  38041. backHuman: {
  38042. height: math.unit(5 + 7/12, "feet"),
  38043. name: "Back (Human)",
  38044. image: {
  38045. source: "./media/characters/alek-dryagan/back-human.svg",
  38046. extra: 1670/1649,
  38047. bottom: 65/1735
  38048. }
  38049. },
  38050. frontDemi: {
  38051. height: math.unit(65, "feet"),
  38052. name: "Front (Demi)",
  38053. image: {
  38054. source: "./media/characters/alek-dryagan/front-demi.svg",
  38055. extra: 1669/1642,
  38056. bottom: 49/1718
  38057. }
  38058. },
  38059. backDemi: {
  38060. height: math.unit(65, "feet"),
  38061. name: "Back (Demi)",
  38062. image: {
  38063. source: "./media/characters/alek-dryagan/back-demi.svg",
  38064. extra: 1658/1637,
  38065. bottom: 40/1698
  38066. }
  38067. },
  38068. mawHuman: {
  38069. height: math.unit(0.3, "feet"),
  38070. name: "Maw (Human)",
  38071. image: {
  38072. source: "./media/characters/alek-dryagan/maw-human.svg"
  38073. }
  38074. },
  38075. mawDemi: {
  38076. height: math.unit(3.8, "feet"),
  38077. name: "Maw (Demi)",
  38078. image: {
  38079. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(5 + 7/12, "feet"),
  38087. default: true
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38093. {
  38094. frontHuman: {
  38095. height: math.unit(5 + 2/12, "feet"),
  38096. name: "Front (Human)",
  38097. image: {
  38098. source: "./media/characters/gen/front-human.svg",
  38099. extra: 1627/1538,
  38100. bottom: 71/1698
  38101. }
  38102. },
  38103. backHuman: {
  38104. height: math.unit(5 + 2/12, "feet"),
  38105. name: "Back (Human)",
  38106. image: {
  38107. source: "./media/characters/gen/back-human.svg",
  38108. extra: 1638/1548,
  38109. bottom: 69/1707
  38110. }
  38111. },
  38112. frontDemi: {
  38113. height: math.unit(5 + 2/12, "feet"),
  38114. name: "Front (Demi)",
  38115. image: {
  38116. source: "./media/characters/gen/front-demi.svg",
  38117. extra: 1627/1538,
  38118. bottom: 71/1698
  38119. }
  38120. },
  38121. backDemi: {
  38122. height: math.unit(5 + 2/12, "feet"),
  38123. name: "Back (Demi)",
  38124. image: {
  38125. source: "./media/characters/gen/back-demi.svg",
  38126. extra: 1638/1548,
  38127. bottom: 69/1707
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Normal",
  38134. height: math.unit(5 + 2/12, "feet"),
  38135. default: true
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38141. {
  38142. frontImp: {
  38143. height: math.unit(1 + 11/12, "feet"),
  38144. name: "Front (Imp)",
  38145. image: {
  38146. source: "./media/characters/max-kobold/front-imp.svg",
  38147. extra: 1238/1134,
  38148. bottom: 81/1319
  38149. }
  38150. },
  38151. backImp: {
  38152. height: math.unit(1 + 11/12, "feet"),
  38153. name: "Back (Imp)",
  38154. image: {
  38155. source: "./media/characters/max-kobold/back-imp.svg",
  38156. extra: 1334/1175,
  38157. bottom: 34/1368
  38158. }
  38159. },
  38160. frontDemi: {
  38161. height: math.unit(5 + 9/12, "feet"),
  38162. name: "Front (Demi)",
  38163. image: {
  38164. source: "./media/characters/max-kobold/front-demi.svg",
  38165. extra: 1715/1685,
  38166. bottom: 54/1769
  38167. }
  38168. },
  38169. backDemi: {
  38170. height: math.unit(5 + 9/12, "feet"),
  38171. name: "Back (Demi)",
  38172. image: {
  38173. source: "./media/characters/max-kobold/back-demi.svg",
  38174. extra: 1752/1729,
  38175. bottom: 41/1793
  38176. }
  38177. },
  38178. handImp: {
  38179. height: math.unit(0.45, "feet"),
  38180. name: "Hand (Imp)",
  38181. image: {
  38182. source: "./media/characters/max-kobold/hand.svg"
  38183. }
  38184. },
  38185. pawImp: {
  38186. height: math.unit(0.46, "feet"),
  38187. name: "Paw (Imp)",
  38188. image: {
  38189. source: "./media/characters/max-kobold/paw.svg"
  38190. }
  38191. },
  38192. handDemi: {
  38193. height: math.unit(0.80, "feet"),
  38194. name: "Hand (Demi)",
  38195. image: {
  38196. source: "./media/characters/max-kobold/hand.svg"
  38197. }
  38198. },
  38199. pawDemi: {
  38200. height: math.unit(1.1, "feet"),
  38201. name: "Paw (Demi)",
  38202. image: {
  38203. source: "./media/characters/max-kobold/paw.svg"
  38204. }
  38205. },
  38206. headImp: {
  38207. height: math.unit(1.33, "feet"),
  38208. name: "Head (Imp)",
  38209. image: {
  38210. source: "./media/characters/max-kobold/head-imp.svg"
  38211. }
  38212. },
  38213. mawImp: {
  38214. height: math.unit(0.75, "feet"),
  38215. name: "Maw (Imp)",
  38216. image: {
  38217. source: "./media/characters/max-kobold/maw-imp.svg"
  38218. }
  38219. },
  38220. mawDemi: {
  38221. height: math.unit(0.42, "feet"),
  38222. name: "Maw (Demi)",
  38223. image: {
  38224. source: "./media/characters/max-kobold/maw-demi.svg"
  38225. }
  38226. },
  38227. },
  38228. [
  38229. {
  38230. name: "Normal",
  38231. height: math.unit(1 + 11/12, "feet"),
  38232. default: true
  38233. },
  38234. ]
  38235. ))
  38236. characterMakers.push(() => makeCharacter(
  38237. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38238. {
  38239. front: {
  38240. height: math.unit(7 + 5/12, "feet"),
  38241. name: "Front",
  38242. image: {
  38243. source: "./media/characters/carbon/front.svg",
  38244. extra: 1754/1689,
  38245. bottom: 65/1819
  38246. }
  38247. },
  38248. back: {
  38249. height: math.unit(7 + 5/12, "feet"),
  38250. name: "Back",
  38251. image: {
  38252. source: "./media/characters/carbon/back.svg",
  38253. extra: 1762/1695,
  38254. bottom: 24/1786
  38255. }
  38256. },
  38257. frontGigantamax: {
  38258. height: math.unit(150, "feet"),
  38259. name: "Front (Gigantamax)",
  38260. image: {
  38261. source: "./media/characters/carbon/front-gigantamax.svg",
  38262. extra: 1826/1669,
  38263. bottom: 59/1885
  38264. }
  38265. },
  38266. backGigantamax: {
  38267. height: math.unit(150, "feet"),
  38268. name: "Back (Gigantamax)",
  38269. image: {
  38270. source: "./media/characters/carbon/back-gigantamax.svg",
  38271. extra: 1796/1653,
  38272. bottom: 53/1849
  38273. }
  38274. },
  38275. maw: {
  38276. height: math.unit(0.48, "feet"),
  38277. name: "Maw",
  38278. image: {
  38279. source: "./media/characters/carbon/maw.svg"
  38280. }
  38281. },
  38282. mawGigantamax: {
  38283. height: math.unit(7.5, "feet"),
  38284. name: "Maw (Gigantamax)",
  38285. image: {
  38286. source: "./media/characters/carbon/maw-gigantamax.svg"
  38287. }
  38288. },
  38289. },
  38290. [
  38291. {
  38292. name: "Normal",
  38293. height: math.unit(7 + 5/12, "feet"),
  38294. default: true
  38295. },
  38296. ]
  38297. ))
  38298. characterMakers.push(() => makeCharacter(
  38299. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38300. {
  38301. front: {
  38302. height: math.unit(6, "feet"),
  38303. name: "Front",
  38304. image: {
  38305. source: "./media/characters/maverick/front.svg",
  38306. extra: 1672/1661,
  38307. bottom: 85/1757
  38308. }
  38309. },
  38310. back: {
  38311. height: math.unit(6, "feet"),
  38312. name: "Back",
  38313. image: {
  38314. source: "./media/characters/maverick/back.svg",
  38315. extra: 1642/1631,
  38316. bottom: 38/1680
  38317. }
  38318. },
  38319. },
  38320. [
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(6, "feet"),
  38324. default: true
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(15, "feet"),
  38333. weight: math.unit(615, "lb"),
  38334. name: "Front",
  38335. image: {
  38336. source: "./media/characters/grockle/front.svg",
  38337. extra: 1535/1427,
  38338. bottom: 56/1591
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(15, "feet"),
  38346. default: true
  38347. },
  38348. {
  38349. name: "Large",
  38350. height: math.unit(150, "feet")
  38351. },
  38352. {
  38353. name: "Macro",
  38354. height: math.unit(1876, "feet")
  38355. },
  38356. {
  38357. name: "Mega Macro",
  38358. height: math.unit(121940, "feet")
  38359. },
  38360. {
  38361. name: "Giga Macro",
  38362. height: math.unit(750, "km")
  38363. },
  38364. {
  38365. name: "Tera Macro",
  38366. height: math.unit(750000, "km")
  38367. },
  38368. {
  38369. name: "Galactic",
  38370. height: math.unit(1.4e5, "km")
  38371. },
  38372. {
  38373. name: "Godlike",
  38374. height: math.unit(9.8e280, "galaxies")
  38375. },
  38376. ]
  38377. ))
  38378. characterMakers.push(() => makeCharacter(
  38379. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38380. {
  38381. front: {
  38382. height: math.unit(11, "meters"),
  38383. weight: math.unit(20, "tonnes"),
  38384. name: "Front",
  38385. image: {
  38386. source: "./media/characters/alistair/front.svg",
  38387. extra: 1265/1009,
  38388. bottom: 93/1358
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(11, "meters"),
  38396. default: true
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38402. {
  38403. front: {
  38404. height: math.unit(5 + 8/12, "feet"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/haruka/front.svg",
  38408. extra: 2012/1952,
  38409. bottom: 0/2012
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(5 + 8/12, "feet"),
  38417. default: true
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38423. {
  38424. back: {
  38425. height: math.unit(9, "feet"),
  38426. name: "Back",
  38427. image: {
  38428. source: "./media/characters/vivian-sylveon/back.svg",
  38429. extra: 1853/1714,
  38430. bottom: 0/1853
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(9, "feet"),
  38438. default: true
  38439. },
  38440. {
  38441. name: "Macro",
  38442. height: math.unit(500, "feet")
  38443. },
  38444. {
  38445. name: "Megamacro",
  38446. height: math.unit(600, "miles")
  38447. },
  38448. {
  38449. name: "Gigamacro",
  38450. height: math.unit(30000, "miles")
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38456. {
  38457. anthro: {
  38458. height: math.unit(5 + 10/12, "feet"),
  38459. weight: math.unit(100, "lb"),
  38460. name: "Anthro",
  38461. image: {
  38462. source: "./media/characters/daiki/anthro.svg",
  38463. extra: 1115/1027,
  38464. bottom: 69/1184
  38465. }
  38466. },
  38467. feral: {
  38468. height: math.unit(200, "feet"),
  38469. name: "Feral",
  38470. image: {
  38471. source: "./media/characters/daiki/feral.svg",
  38472. extra: 1256/313,
  38473. bottom: 39/1295
  38474. }
  38475. },
  38476. feralHead: {
  38477. height: math.unit(171, "feet"),
  38478. name: "Feral Head",
  38479. image: {
  38480. source: "./media/characters/daiki/feral-head.svg"
  38481. }
  38482. },
  38483. manaDragon: {
  38484. height: math.unit(170, "meters"),
  38485. name: "Mana-dragon",
  38486. image: {
  38487. source: "./media/characters/daiki/mana-dragon.svg",
  38488. extra: 763/420,
  38489. bottom: 97/860
  38490. }
  38491. },
  38492. },
  38493. [
  38494. {
  38495. name: "Normal",
  38496. height: math.unit(5 + 10/12, "feet"),
  38497. default: true
  38498. },
  38499. ]
  38500. ))
  38501. characterMakers.push(() => makeCharacter(
  38502. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38503. {
  38504. fullyEquippedFront: {
  38505. height: math.unit(3 + 1/12, "feet"),
  38506. weight: math.unit(24, "lb"),
  38507. name: "Fully Equipped (Front)",
  38508. image: {
  38509. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38510. extra: 687/605,
  38511. bottom: 18/705
  38512. }
  38513. },
  38514. fullyEquippedBack: {
  38515. height: math.unit(3 + 1/12, "feet"),
  38516. weight: math.unit(24, "lb"),
  38517. name: "Fully Equipped (Back)",
  38518. image: {
  38519. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38520. extra: 689/590,
  38521. bottom: 18/707
  38522. }
  38523. },
  38524. dailyWear: {
  38525. height: math.unit(3 + 1/12, "feet"),
  38526. weight: math.unit(24, "lb"),
  38527. name: "Daily Wear",
  38528. image: {
  38529. source: "./media/characters/tea-spot/daily-wear.svg",
  38530. extra: 701/620,
  38531. bottom: 21/722
  38532. }
  38533. },
  38534. maidWork: {
  38535. height: math.unit(3 + 1/12, "feet"),
  38536. weight: math.unit(24, "lb"),
  38537. name: "Maid Work",
  38538. image: {
  38539. source: "./media/characters/tea-spot/maid-work.svg",
  38540. extra: 693/609,
  38541. bottom: 15/708
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(3 + 1/12, "feet"),
  38549. default: true
  38550. },
  38551. ]
  38552. ))
  38553. characterMakers.push(() => makeCharacter(
  38554. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38555. {
  38556. front: {
  38557. height: math.unit(175, "cm"),
  38558. weight: math.unit(75, "kg"),
  38559. name: "Front",
  38560. image: {
  38561. source: "./media/characters/chee/front.svg",
  38562. extra: 1796/1740,
  38563. bottom: 40/1836
  38564. }
  38565. },
  38566. },
  38567. [
  38568. {
  38569. name: "Micro-Micro",
  38570. height: math.unit(1, "nm")
  38571. },
  38572. {
  38573. name: "Micro-erst",
  38574. height: math.unit(1, "micrometer")
  38575. },
  38576. {
  38577. name: "Micro-er",
  38578. height: math.unit(1, "cm")
  38579. },
  38580. {
  38581. name: "Normal",
  38582. height: math.unit(175, "cm"),
  38583. default: true
  38584. },
  38585. {
  38586. name: "Macro",
  38587. height: math.unit(100, "m")
  38588. },
  38589. {
  38590. name: "Macro-er",
  38591. height: math.unit(1, "km")
  38592. },
  38593. {
  38594. name: "Macro-erst",
  38595. height: math.unit(10, "km")
  38596. },
  38597. {
  38598. name: "Macro-Macro",
  38599. height: math.unit(100, "km")
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(11 + 9/12, "feet"),
  38608. weight: math.unit(935, "lb"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/kingsley/front.svg",
  38612. extra: 1803/1674,
  38613. bottom: 127/1930
  38614. }
  38615. },
  38616. frontNude: {
  38617. height: math.unit(11 + 9/12, "feet"),
  38618. weight: math.unit(935, "lb"),
  38619. name: "Front (Nude)",
  38620. image: {
  38621. source: "./media/characters/kingsley/front-nude.svg",
  38622. extra: 1803/1674,
  38623. bottom: 127/1930
  38624. }
  38625. },
  38626. },
  38627. [
  38628. {
  38629. name: "Normal",
  38630. height: math.unit(11 + 9/12, "feet"),
  38631. default: true
  38632. },
  38633. ]
  38634. ))
  38635. characterMakers.push(() => makeCharacter(
  38636. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38637. {
  38638. side: {
  38639. height: math.unit(9, "feet"),
  38640. name: "Side",
  38641. image: {
  38642. source: "./media/characters/rymel/side.svg",
  38643. extra: 792/469,
  38644. bottom: 121/913
  38645. }
  38646. },
  38647. maw: {
  38648. height: math.unit(2.4, "meters"),
  38649. name: "Maw",
  38650. image: {
  38651. source: "./media/characters/rymel/maw.svg"
  38652. }
  38653. },
  38654. },
  38655. [
  38656. {
  38657. name: "House Drake",
  38658. height: math.unit(2, "feet")
  38659. },
  38660. {
  38661. name: "Reduced",
  38662. height: math.unit(4.5, "feet")
  38663. },
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(9, "feet"),
  38667. default: true
  38668. },
  38669. ]
  38670. ))
  38671. characterMakers.push(() => makeCharacter(
  38672. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38673. {
  38674. front: {
  38675. height: math.unit(1.74, "meters"),
  38676. weight: math.unit(55, "kg"),
  38677. name: "Front",
  38678. image: {
  38679. source: "./media/characters/rubus/front.svg",
  38680. extra: 1894/1742,
  38681. bottom: 44/1938
  38682. }
  38683. },
  38684. },
  38685. [
  38686. {
  38687. name: "Normal",
  38688. height: math.unit(1.74, "meters"),
  38689. default: true
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(5 + 2/12, "feet"),
  38698. weight: math.unit(112, "lb"),
  38699. name: "Front",
  38700. image: {
  38701. source: "./media/characters/cassie-kingston/front.svg",
  38702. extra: 1438/1390,
  38703. bottom: 47/1485
  38704. }
  38705. },
  38706. },
  38707. [
  38708. {
  38709. name: "Normal",
  38710. height: math.unit(5 + 2/12, "feet"),
  38711. default: true
  38712. },
  38713. {
  38714. name: "Macro",
  38715. height: math.unit(128, "feet")
  38716. },
  38717. {
  38718. name: "Megamacro",
  38719. height: math.unit(2.56, "miles")
  38720. },
  38721. ]
  38722. ))
  38723. characterMakers.push(() => makeCharacter(
  38724. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38725. {
  38726. front: {
  38727. height: math.unit(7, "feet"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/fox/front.svg",
  38731. extra: 1798/1703,
  38732. bottom: 55/1853
  38733. }
  38734. },
  38735. back: {
  38736. height: math.unit(7, "feet"),
  38737. name: "Back",
  38738. image: {
  38739. source: "./media/characters/fox/back.svg",
  38740. extra: 1748/1649,
  38741. bottom: 32/1780
  38742. }
  38743. },
  38744. head: {
  38745. height: math.unit(1.95, "feet"),
  38746. name: "Head",
  38747. image: {
  38748. source: "./media/characters/fox/head.svg"
  38749. }
  38750. },
  38751. dick: {
  38752. height: math.unit(1.33, "feet"),
  38753. name: "Dick",
  38754. image: {
  38755. source: "./media/characters/fox/dick.svg"
  38756. }
  38757. },
  38758. foot: {
  38759. height: math.unit(1, "feet"),
  38760. name: "Foot",
  38761. image: {
  38762. source: "./media/characters/fox/foot.svg"
  38763. }
  38764. },
  38765. paw: {
  38766. height: math.unit(0.92, "feet"),
  38767. name: "Paw",
  38768. image: {
  38769. source: "./media/characters/fox/paw.svg"
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Small",
  38776. height: math.unit(3, "inches")
  38777. },
  38778. {
  38779. name: "\"Realistic\"",
  38780. height: math.unit(7, "feet")
  38781. },
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(150, "feet"),
  38785. default: true
  38786. },
  38787. {
  38788. name: "BIG",
  38789. height: math.unit(1200, "feet")
  38790. },
  38791. {
  38792. name: "👀",
  38793. height: math.unit(5, "miles")
  38794. },
  38795. {
  38796. name: "👀👀👀",
  38797. height: math.unit(64, "miles")
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(625, "feet"),
  38806. name: "Front",
  38807. image: {
  38808. source: "./media/characters/asonja-rossa/front.svg",
  38809. extra: 1833/1686,
  38810. bottom: 24/1857
  38811. }
  38812. },
  38813. back: {
  38814. height: math.unit(625, "feet"),
  38815. name: "Back",
  38816. image: {
  38817. source: "./media/characters/asonja-rossa/back.svg",
  38818. extra: 1852/1753,
  38819. bottom: 26/1878
  38820. }
  38821. },
  38822. },
  38823. [
  38824. {
  38825. name: "Macro",
  38826. height: math.unit(625, "feet"),
  38827. default: true
  38828. },
  38829. ]
  38830. ))
  38831. characterMakers.push(() => makeCharacter(
  38832. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38833. {
  38834. side: {
  38835. height: math.unit(8, "feet"),
  38836. name: "Side",
  38837. image: {
  38838. source: "./media/characters/rezukii/side.svg",
  38839. extra: 979/542,
  38840. bottom: 87/1066
  38841. }
  38842. },
  38843. sitting: {
  38844. height: math.unit(14.6, "feet"),
  38845. name: "Sitting",
  38846. image: {
  38847. source: "./media/characters/rezukii/sitting.svg",
  38848. extra: 1023/813,
  38849. bottom: 45/1068
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Tiny",
  38856. height: math.unit(2, "feet")
  38857. },
  38858. {
  38859. name: "Smol",
  38860. height: math.unit(4, "feet")
  38861. },
  38862. {
  38863. name: "Normal",
  38864. height: math.unit(8, "feet"),
  38865. default: true
  38866. },
  38867. {
  38868. name: "Big",
  38869. height: math.unit(12, "feet")
  38870. },
  38871. {
  38872. name: "Macro",
  38873. height: math.unit(30, "feet")
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(14, "feet"),
  38882. weight: math.unit(9.5, "tonnes"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/dawnheart/front.svg",
  38886. extra: 2792/2675,
  38887. bottom: 64/2856
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Normal",
  38894. height: math.unit(14, "feet"),
  38895. default: true
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38901. {
  38902. front: {
  38903. height: math.unit(1.7, "m"),
  38904. name: "Front",
  38905. image: {
  38906. source: "./media/characters/gladi/front.svg",
  38907. extra: 1460/1362,
  38908. bottom: 19/1479
  38909. }
  38910. },
  38911. back: {
  38912. height: math.unit(1.7, "m"),
  38913. name: "Back",
  38914. image: {
  38915. source: "./media/characters/gladi/back.svg",
  38916. extra: 1459/1357,
  38917. bottom: 12/1471
  38918. }
  38919. },
  38920. feral: {
  38921. height: math.unit(2.05, "m"),
  38922. name: "Feral",
  38923. image: {
  38924. source: "./media/characters/gladi/feral.svg",
  38925. extra: 821/557,
  38926. bottom: 91/912
  38927. }
  38928. },
  38929. },
  38930. [
  38931. {
  38932. name: "Shortest",
  38933. height: math.unit(70, "cm")
  38934. },
  38935. {
  38936. name: "Normal",
  38937. height: math.unit(1.7, "m")
  38938. },
  38939. {
  38940. name: "Macro",
  38941. height: math.unit(10, "m"),
  38942. default: true
  38943. },
  38944. {
  38945. name: "Tallest",
  38946. height: math.unit(200, "m")
  38947. },
  38948. ]
  38949. ))
  38950. characterMakers.push(() => makeCharacter(
  38951. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38952. {
  38953. front: {
  38954. height: math.unit(5 + 7/12, "feet"),
  38955. weight: math.unit(2, "tons"),
  38956. name: "Front",
  38957. image: {
  38958. source: "./media/characters/erdno/front.svg",
  38959. extra: 1234/1129,
  38960. bottom: 35/1269
  38961. }
  38962. },
  38963. angled: {
  38964. height: math.unit(5 + 7/12, "feet"),
  38965. weight: math.unit(2, "tons"),
  38966. name: "Angled",
  38967. image: {
  38968. source: "./media/characters/erdno/angled.svg",
  38969. extra: 1185/1139,
  38970. bottom: 36/1221
  38971. }
  38972. },
  38973. side: {
  38974. height: math.unit(5 + 7/12, "feet"),
  38975. weight: math.unit(2, "tons"),
  38976. name: "Side",
  38977. image: {
  38978. source: "./media/characters/erdno/side.svg",
  38979. extra: 1191/1144,
  38980. bottom: 40/1231
  38981. }
  38982. },
  38983. back: {
  38984. height: math.unit(5 + 7/12, "feet"),
  38985. weight: math.unit(2, "tons"),
  38986. name: "Back",
  38987. image: {
  38988. source: "./media/characters/erdno/back.svg",
  38989. extra: 1202/1146,
  38990. bottom: 17/1219
  38991. }
  38992. },
  38993. frontNsfw: {
  38994. height: math.unit(5 + 7/12, "feet"),
  38995. weight: math.unit(2, "tons"),
  38996. name: "Front (NSFW)",
  38997. image: {
  38998. source: "./media/characters/erdno/front-nsfw.svg",
  38999. extra: 1234/1129,
  39000. bottom: 35/1269
  39001. }
  39002. },
  39003. angledNsfw: {
  39004. height: math.unit(5 + 7/12, "feet"),
  39005. weight: math.unit(2, "tons"),
  39006. name: "Angled (NSFW)",
  39007. image: {
  39008. source: "./media/characters/erdno/angled-nsfw.svg",
  39009. extra: 1185/1139,
  39010. bottom: 36/1221
  39011. }
  39012. },
  39013. sideNsfw: {
  39014. height: math.unit(5 + 7/12, "feet"),
  39015. weight: math.unit(2, "tons"),
  39016. name: "Side (NSFW)",
  39017. image: {
  39018. source: "./media/characters/erdno/side-nsfw.svg",
  39019. extra: 1191/1144,
  39020. bottom: 40/1231
  39021. }
  39022. },
  39023. backNsfw: {
  39024. height: math.unit(5 + 7/12, "feet"),
  39025. weight: math.unit(2, "tons"),
  39026. name: "Back (NSFW)",
  39027. image: {
  39028. source: "./media/characters/erdno/back-nsfw.svg",
  39029. extra: 1202/1146,
  39030. bottom: 17/1219
  39031. }
  39032. },
  39033. frontHyper: {
  39034. height: math.unit(5 + 7/12, "feet"),
  39035. weight: math.unit(2, "tons"),
  39036. name: "Front (Hyper)",
  39037. image: {
  39038. source: "./media/characters/erdno/front-hyper.svg",
  39039. extra: 1298/1136,
  39040. bottom: 35/1333
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(5 + 7/12, "feet"),
  39048. default: true
  39049. },
  39050. {
  39051. name: "Big",
  39052. height: math.unit(5.7, "meters")
  39053. },
  39054. {
  39055. name: "Macro",
  39056. height: math.unit(5.7, "kilometers")
  39057. },
  39058. {
  39059. name: "Megamacro",
  39060. height: math.unit(5.7, "earths")
  39061. },
  39062. ]
  39063. ))
  39064. characterMakers.push(() => makeCharacter(
  39065. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39066. {
  39067. front: {
  39068. height: math.unit(5 + 10/12, "feet"),
  39069. weight: math.unit(150, "lb"),
  39070. name: "Front",
  39071. image: {
  39072. source: "./media/characters/jamie/front.svg",
  39073. extra: 1908/1768,
  39074. bottom: 19/1927
  39075. }
  39076. },
  39077. },
  39078. [
  39079. {
  39080. name: "Minimum",
  39081. height: math.unit(2, "cm")
  39082. },
  39083. {
  39084. name: "Micro",
  39085. height: math.unit(3, "inches")
  39086. },
  39087. {
  39088. name: "Normal",
  39089. height: math.unit(5 + 10/12, "feet"),
  39090. default: true
  39091. },
  39092. {
  39093. name: "Macro",
  39094. height: math.unit(150, "feet")
  39095. },
  39096. {
  39097. name: "Megamacro",
  39098. height: math.unit(10000, "m")
  39099. },
  39100. ]
  39101. ))
  39102. characterMakers.push(() => makeCharacter(
  39103. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39104. {
  39105. front: {
  39106. height: math.unit(2, "meters"),
  39107. weight: math.unit(100, "kg"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/shiron/front.svg",
  39111. extra: 2103/1985,
  39112. bottom: 98/2201
  39113. }
  39114. },
  39115. back: {
  39116. height: math.unit(2, "meters"),
  39117. weight: math.unit(100, "kg"),
  39118. name: "Back",
  39119. image: {
  39120. source: "./media/characters/shiron/back.svg",
  39121. extra: 2110/2015,
  39122. bottom: 89/2199
  39123. }
  39124. },
  39125. hand: {
  39126. height: math.unit(0.96, "feet"),
  39127. name: "Hand",
  39128. image: {
  39129. source: "./media/characters/shiron/hand.svg"
  39130. }
  39131. },
  39132. foot: {
  39133. height: math.unit(1.464, "feet"),
  39134. name: "Foot",
  39135. image: {
  39136. source: "./media/characters/shiron/foot.svg"
  39137. }
  39138. },
  39139. },
  39140. [
  39141. {
  39142. name: "Normal",
  39143. height: math.unit(2, "meters")
  39144. },
  39145. {
  39146. name: "Macro",
  39147. height: math.unit(500, "meters"),
  39148. default: true
  39149. },
  39150. {
  39151. name: "Megamacro",
  39152. height: math.unit(20, "km")
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(6, "feet"),
  39161. name: "Front",
  39162. image: {
  39163. source: "./media/characters/sam/front.svg",
  39164. extra: 849/826,
  39165. bottom: 19/868
  39166. }
  39167. },
  39168. },
  39169. [
  39170. {
  39171. name: "Normal",
  39172. height: math.unit(6, "feet"),
  39173. default: true
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39179. {
  39180. front: {
  39181. height: math.unit(8 + 4/12, "feet"),
  39182. weight: math.unit(122, "kg"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/namori-kurogawa/front.svg",
  39186. extra: 1894/1576,
  39187. bottom: 34/1928
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(8 + 4/12, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39201. {
  39202. front: {
  39203. height: math.unit(9, "feet"),
  39204. weight: math.unit(621, "lb"),
  39205. name: "Front",
  39206. image: {
  39207. source: "./media/characters/unmru/front.svg",
  39208. extra: 1853/1747,
  39209. bottom: 73/1926
  39210. }
  39211. },
  39212. side: {
  39213. height: math.unit(9, "feet"),
  39214. weight: math.unit(621, "lb"),
  39215. name: "Side",
  39216. image: {
  39217. source: "./media/characters/unmru/side.svg",
  39218. extra: 1781/1671,
  39219. bottom: 127/1908
  39220. }
  39221. },
  39222. back: {
  39223. height: math.unit(9, "feet"),
  39224. weight: math.unit(621, "lb"),
  39225. name: "Back",
  39226. image: {
  39227. source: "./media/characters/unmru/back.svg",
  39228. extra: 1894/1765,
  39229. bottom: 75/1969
  39230. }
  39231. },
  39232. dick: {
  39233. height: math.unit(3, "feet"),
  39234. weight: math.unit(35, "lb"),
  39235. name: "Dick",
  39236. image: {
  39237. source: "./media/characters/unmru/dick.svg"
  39238. }
  39239. },
  39240. },
  39241. [
  39242. {
  39243. name: "Normal",
  39244. height: math.unit(9, "feet")
  39245. },
  39246. {
  39247. name: "Natural",
  39248. height: math.unit(27, "feet"),
  39249. default: true
  39250. },
  39251. {
  39252. name: "Giant",
  39253. height: math.unit(90, "feet")
  39254. },
  39255. {
  39256. name: "Kaiju",
  39257. height: math.unit(270, "feet")
  39258. },
  39259. {
  39260. name: "Macro",
  39261. height: math.unit(900, "feet")
  39262. },
  39263. {
  39264. name: "Macro+",
  39265. height: math.unit(2700, "feet")
  39266. },
  39267. {
  39268. name: "Megamacro",
  39269. height: math.unit(9000, "feet")
  39270. },
  39271. {
  39272. name: "City-Crushing",
  39273. height: math.unit(27000, "feet")
  39274. },
  39275. {
  39276. name: "Mountain-Mashing",
  39277. height: math.unit(90000, "feet")
  39278. },
  39279. {
  39280. name: "Earth-Eclipsing",
  39281. height: math.unit(2.7e8, "feet")
  39282. },
  39283. {
  39284. name: "Sol-Swallowing",
  39285. height: math.unit(9e10, "feet")
  39286. },
  39287. {
  39288. name: "Majoris-Munching",
  39289. height: math.unit(2.7e13, "feet")
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39295. {
  39296. front: {
  39297. height: math.unit(1, "inch"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/squeaks-mouse/front.svg",
  39301. extra: 352/308,
  39302. bottom: 25/377
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Micro",
  39309. height: math.unit(1, "inch"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39316. {
  39317. side: {
  39318. height: math.unit(35, "feet"),
  39319. name: "Side",
  39320. image: {
  39321. source: "./media/characters/sayko/side.svg",
  39322. extra: 1697/1021,
  39323. bottom: 82/1779
  39324. }
  39325. },
  39326. head: {
  39327. height: math.unit(16, "feet"),
  39328. name: "Head",
  39329. image: {
  39330. source: "./media/characters/sayko/head.svg"
  39331. }
  39332. },
  39333. forepaw: {
  39334. height: math.unit(7.85, "feet"),
  39335. name: "Forepaw",
  39336. image: {
  39337. source: "./media/characters/sayko/forepaw.svg"
  39338. }
  39339. },
  39340. hindpaw: {
  39341. height: math.unit(8.8, "feet"),
  39342. name: "Hindpaw",
  39343. image: {
  39344. source: "./media/characters/sayko/hindpaw.svg"
  39345. }
  39346. },
  39347. },
  39348. [
  39349. {
  39350. name: "Normal",
  39351. height: math.unit(35, "feet"),
  39352. default: true
  39353. },
  39354. {
  39355. name: "Colossus",
  39356. height: math.unit(100, "meters")
  39357. },
  39358. {
  39359. name: "\"Small\" Deity",
  39360. height: math.unit(1, "km")
  39361. },
  39362. {
  39363. name: "\"Large\" Deity",
  39364. height: math.unit(15, "km")
  39365. },
  39366. ]
  39367. ))
  39368. characterMakers.push(() => makeCharacter(
  39369. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39370. {
  39371. front: {
  39372. height: math.unit(6, "feet"),
  39373. weight: math.unit(250, "lb"),
  39374. name: "Front",
  39375. image: {
  39376. source: "./media/characters/mukiro/front.svg",
  39377. extra: 1368/1310,
  39378. bottom: 34/1402
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(6, "feet"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(12 + 4/12, "feet"),
  39395. name: "Front",
  39396. image: {
  39397. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39398. extra: 1346/1311,
  39399. bottom: 65/1411
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Base",
  39406. height: math.unit(12 + 4/12, "feet"),
  39407. default: true
  39408. },
  39409. {
  39410. name: "Macro",
  39411. height: math.unit(150, "feet")
  39412. },
  39413. {
  39414. name: "Mega",
  39415. height: math.unit(2, "miles")
  39416. },
  39417. {
  39418. name: "Demi God",
  39419. height: math.unit(4, "AU")
  39420. },
  39421. {
  39422. name: "God Size",
  39423. height: math.unit(1, "universe")
  39424. },
  39425. ]
  39426. ))
  39427. characterMakers.push(() => makeCharacter(
  39428. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39429. {
  39430. front: {
  39431. height: math.unit(3 + 3/12, "feet"),
  39432. weight: math.unit(88, "lb"),
  39433. name: "Front",
  39434. image: {
  39435. source: "./media/characters/trey/front.svg",
  39436. extra: 1815/1509,
  39437. bottom: 60/1875
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "Normal",
  39444. height: math.unit(3 + 3/12, "feet"),
  39445. default: true
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39451. {
  39452. front: {
  39453. height: math.unit(4, "meters"),
  39454. name: "Front",
  39455. image: {
  39456. source: "./media/characters/adelonda/front.svg",
  39457. extra: 1077/982,
  39458. bottom: 39/1116
  39459. }
  39460. },
  39461. back: {
  39462. height: math.unit(4, "meters"),
  39463. name: "Back",
  39464. image: {
  39465. source: "./media/characters/adelonda/back.svg",
  39466. extra: 1105/1003,
  39467. bottom: 25/1130
  39468. }
  39469. },
  39470. feral: {
  39471. height: math.unit(40/1.5, "meters"),
  39472. name: "Feral",
  39473. image: {
  39474. source: "./media/characters/adelonda/feral.svg",
  39475. extra: 597/271,
  39476. bottom: 387/984
  39477. }
  39478. },
  39479. },
  39480. [
  39481. {
  39482. name: "Normal",
  39483. height: math.unit(4, "meters"),
  39484. default: true
  39485. },
  39486. ]
  39487. ))
  39488. characterMakers.push(() => makeCharacter(
  39489. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39490. {
  39491. front: {
  39492. height: math.unit(8 + 4/12, "feet"),
  39493. weight: math.unit(670, "lb"),
  39494. name: "Front",
  39495. image: {
  39496. source: "./media/characters/acadiel/front.svg",
  39497. extra: 1901/1595,
  39498. bottom: 142/2043
  39499. }
  39500. },
  39501. },
  39502. [
  39503. {
  39504. name: "Normal",
  39505. height: math.unit(8 + 4/12, "feet"),
  39506. default: true
  39507. },
  39508. {
  39509. name: "Macro",
  39510. height: math.unit(200, "feet")
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39516. {
  39517. front: {
  39518. height: math.unit(6 + 2/12, "feet"),
  39519. weight: math.unit(185, "lb"),
  39520. name: "Front",
  39521. image: {
  39522. source: "./media/characters/kayne-ein/front.svg",
  39523. extra: 1780/1560,
  39524. bottom: 81/1861
  39525. }
  39526. },
  39527. },
  39528. [
  39529. {
  39530. name: "Normal",
  39531. height: math.unit(6 + 2/12, "feet"),
  39532. default: true
  39533. },
  39534. {
  39535. name: "Transformation Stage",
  39536. height: math.unit(15, "feet")
  39537. },
  39538. {
  39539. name: "Macro",
  39540. height: math.unit(150, "feet")
  39541. },
  39542. {
  39543. name: "Earth's Shadow",
  39544. height: math.unit(6200, "miles")
  39545. },
  39546. {
  39547. name: "Universal Demon",
  39548. height: math.unit(28e9, "parsecs")
  39549. },
  39550. {
  39551. name: "Multiverse God",
  39552. height: math.unit(3, "multiverses")
  39553. },
  39554. ]
  39555. ))
  39556. characterMakers.push(() => makeCharacter(
  39557. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39558. {
  39559. front: {
  39560. height: math.unit(5 + 5/12, "feet"),
  39561. name: "Front",
  39562. image: {
  39563. source: "./media/characters/fawn/front.svg",
  39564. extra: 1873/1731,
  39565. bottom: 95/1968
  39566. }
  39567. },
  39568. back: {
  39569. height: math.unit(5 + 5/12, "feet"),
  39570. name: "Back",
  39571. image: {
  39572. source: "./media/characters/fawn/back.svg",
  39573. extra: 1813/1700,
  39574. bottom: 14/1827
  39575. }
  39576. },
  39577. hoof: {
  39578. height: math.unit(1.45, "feet"),
  39579. name: "Hoof",
  39580. image: {
  39581. source: "./media/characters/fawn/hoof.svg"
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Normal",
  39588. height: math.unit(5 + 5/12, "feet"),
  39589. default: true
  39590. },
  39591. ]
  39592. ))
  39593. characterMakers.push(() => makeCharacter(
  39594. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39595. {
  39596. front: {
  39597. height: math.unit(2 + 5/12, "feet"),
  39598. name: "Front",
  39599. image: {
  39600. source: "./media/characters/orion/front.svg",
  39601. extra: 1366/1304,
  39602. bottom: 43/1409
  39603. }
  39604. },
  39605. paw: {
  39606. height: math.unit(0.52, "feet"),
  39607. name: "Paw",
  39608. image: {
  39609. source: "./media/characters/orion/paw.svg"
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Normal",
  39616. height: math.unit(2 + 5/12, "feet"),
  39617. default: true
  39618. },
  39619. ]
  39620. ))
  39621. characterMakers.push(() => makeCharacter(
  39622. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39623. {
  39624. front: {
  39625. height: math.unit(5 + 10/12, "feet"),
  39626. name: "Front",
  39627. image: {
  39628. source: "./media/characters/vera/front.svg",
  39629. extra: 1680/1575,
  39630. bottom: 49/1729
  39631. }
  39632. },
  39633. back: {
  39634. height: math.unit(5 + 10/12, "feet"),
  39635. name: "Back",
  39636. image: {
  39637. source: "./media/characters/vera/back.svg",
  39638. extra: 1700/1588,
  39639. bottom: 18/1718
  39640. }
  39641. },
  39642. arcanine: {
  39643. height: math.unit(6 + 8/12, "feet"),
  39644. name: "Arcanine",
  39645. image: {
  39646. source: "./media/characters/vera/arcanine.svg",
  39647. extra: 1590/1511,
  39648. bottom: 71/1661
  39649. }
  39650. },
  39651. maw: {
  39652. height: math.unit(0.82, "feet"),
  39653. name: "Maw",
  39654. image: {
  39655. source: "./media/characters/vera/maw.svg"
  39656. }
  39657. },
  39658. mawArcanine: {
  39659. height: math.unit(0.97, "feet"),
  39660. name: "Maw (Arcanine)",
  39661. image: {
  39662. source: "./media/characters/vera/maw-arcanine.svg"
  39663. }
  39664. },
  39665. paw: {
  39666. height: math.unit(0.75, "feet"),
  39667. name: "Paw",
  39668. image: {
  39669. source: "./media/characters/vera/paw.svg"
  39670. }
  39671. },
  39672. pawprint: {
  39673. height: math.unit(0.52, "feet"),
  39674. name: "Pawprint",
  39675. image: {
  39676. source: "./media/characters/vera/pawprint.svg"
  39677. }
  39678. },
  39679. },
  39680. [
  39681. {
  39682. name: "Normal",
  39683. height: math.unit(5 + 10/12, "feet"),
  39684. default: true
  39685. },
  39686. {
  39687. name: "Macro",
  39688. height: math.unit(75, "feet")
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39694. {
  39695. front: {
  39696. height: math.unit(4, "feet"),
  39697. weight: math.unit(40, "lb"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/orvan-rabbit/front.svg",
  39701. extra: 1896/1642,
  39702. bottom: 29/1925
  39703. }
  39704. },
  39705. },
  39706. [
  39707. {
  39708. name: "Normal",
  39709. height: math.unit(4, "feet"),
  39710. default: true
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39716. {
  39717. front: {
  39718. height: math.unit(6, "feet"),
  39719. weight: math.unit(168, "lb"),
  39720. name: "Front",
  39721. image: {
  39722. source: "./media/characters/lisa/front.svg",
  39723. extra: 2065/1867,
  39724. bottom: 46/2111
  39725. }
  39726. },
  39727. back: {
  39728. height: math.unit(6, "feet"),
  39729. weight: math.unit(168, "lb"),
  39730. name: "Back",
  39731. image: {
  39732. source: "./media/characters/lisa/back.svg",
  39733. extra: 1982/1838,
  39734. bottom: 29/2011
  39735. }
  39736. },
  39737. maw: {
  39738. height: math.unit(0.81, "feet"),
  39739. name: "Maw",
  39740. image: {
  39741. source: "./media/characters/lisa/maw.svg"
  39742. }
  39743. },
  39744. paw: {
  39745. height: math.unit(0.9, "feet"),
  39746. name: "Paw",
  39747. image: {
  39748. source: "./media/characters/lisa/paw.svg"
  39749. }
  39750. },
  39751. caribousune: {
  39752. height: math.unit(7 + 2/12, "feet"),
  39753. weight: math.unit(268, "lb"),
  39754. name: "Caribousune",
  39755. image: {
  39756. source: "./media/characters/lisa/caribousune.svg",
  39757. extra: 1843/1633,
  39758. bottom: 29/1872
  39759. }
  39760. },
  39761. frontCaribousune: {
  39762. height: math.unit(7 + 2/12, "feet"),
  39763. weight: math.unit(268, "lb"),
  39764. name: "Front (Caribousune)",
  39765. image: {
  39766. source: "./media/characters/lisa/front-caribousune.svg",
  39767. extra: 1818/1638,
  39768. bottom: 52/1870
  39769. }
  39770. },
  39771. sideCaribousune: {
  39772. height: math.unit(7 + 2/12, "feet"),
  39773. weight: math.unit(268, "lb"),
  39774. name: "Side (Caribousune)",
  39775. image: {
  39776. source: "./media/characters/lisa/side-caribousune.svg",
  39777. extra: 1851/1635,
  39778. bottom: 16/1867
  39779. }
  39780. },
  39781. backCaribousune: {
  39782. height: math.unit(7 + 2/12, "feet"),
  39783. weight: math.unit(268, "lb"),
  39784. name: "Back (Caribousune)",
  39785. image: {
  39786. source: "./media/characters/lisa/back-caribousune.svg",
  39787. extra: 1801/1604,
  39788. bottom: 44/1845
  39789. }
  39790. },
  39791. caribou: {
  39792. height: math.unit(7 + 2/12, "feet"),
  39793. weight: math.unit(268, "lb"),
  39794. name: "Caribou",
  39795. image: {
  39796. source: "./media/characters/lisa/caribou.svg",
  39797. extra: 1843/1633,
  39798. bottom: 29/1872
  39799. }
  39800. },
  39801. frontCaribou: {
  39802. height: math.unit(7 + 2/12, "feet"),
  39803. weight: math.unit(268, "lb"),
  39804. name: "Front (Caribou)",
  39805. image: {
  39806. source: "./media/characters/lisa/front-caribou.svg",
  39807. extra: 1818/1638,
  39808. bottom: 52/1870
  39809. }
  39810. },
  39811. sideCaribou: {
  39812. height: math.unit(7 + 2/12, "feet"),
  39813. weight: math.unit(268, "lb"),
  39814. name: "Side (Caribou)",
  39815. image: {
  39816. source: "./media/characters/lisa/side-caribou.svg",
  39817. extra: 1851/1635,
  39818. bottom: 16/1867
  39819. }
  39820. },
  39821. backCaribou: {
  39822. height: math.unit(7 + 2/12, "feet"),
  39823. weight: math.unit(268, "lb"),
  39824. name: "Back (Caribou)",
  39825. image: {
  39826. source: "./media/characters/lisa/back-caribou.svg",
  39827. extra: 1801/1604,
  39828. bottom: 44/1845
  39829. }
  39830. },
  39831. mawCaribou: {
  39832. height: math.unit(1.45, "feet"),
  39833. name: "Maw (Caribou)",
  39834. image: {
  39835. source: "./media/characters/lisa/maw-caribou.svg"
  39836. }
  39837. },
  39838. mawCaribousune: {
  39839. height: math.unit(1.45, "feet"),
  39840. name: "Maw (Caribousune)",
  39841. image: {
  39842. source: "./media/characters/lisa/maw-caribousune.svg"
  39843. }
  39844. },
  39845. pawCaribousune: {
  39846. height: math.unit(1.61, "feet"),
  39847. name: "Paw (Caribou)",
  39848. image: {
  39849. source: "./media/characters/lisa/paw-caribousune.svg"
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(6, "feet")
  39857. },
  39858. {
  39859. name: "God Size",
  39860. height: math.unit(72, "feet"),
  39861. default: true
  39862. },
  39863. {
  39864. name: "Towering",
  39865. height: math.unit(288, "feet")
  39866. },
  39867. {
  39868. name: "City Size",
  39869. height: math.unit(48384, "feet")
  39870. },
  39871. {
  39872. name: "Continental",
  39873. height: math.unit(4200, "miles")
  39874. },
  39875. {
  39876. name: "Planet Eater",
  39877. height: math.unit(42, "earths")
  39878. },
  39879. {
  39880. name: "Star Swallower",
  39881. height: math.unit(42, "solarradii")
  39882. },
  39883. {
  39884. name: "System Swallower",
  39885. height: math.unit(84000, "AU")
  39886. },
  39887. {
  39888. name: "Galaxy Gobbler",
  39889. height: math.unit(42, "galaxies")
  39890. },
  39891. {
  39892. name: "Universe Devourer",
  39893. height: math.unit(42, "universes")
  39894. },
  39895. {
  39896. name: "Multiverse Muncher",
  39897. height: math.unit(42, "multiverses")
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(36, "feet"),
  39906. name: "Front",
  39907. image: {
  39908. source: "./media/characters/shadow-rat/front.svg",
  39909. extra: 1845/1758,
  39910. bottom: 83/1928
  39911. }
  39912. },
  39913. },
  39914. [
  39915. {
  39916. name: "Macro",
  39917. height: math.unit(36, "feet"),
  39918. default: true
  39919. },
  39920. ]
  39921. ))
  39922. characterMakers.push(() => makeCharacter(
  39923. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39924. {
  39925. side: {
  39926. height: math.unit(8, "feet"),
  39927. weight: math.unit(2630, "lb"),
  39928. name: "Side",
  39929. image: {
  39930. source: "./media/characters/torallia/side.svg",
  39931. extra: 2164/2021,
  39932. bottom: 371/2535
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Mortal Interaction",
  39939. height: math.unit(8, "feet")
  39940. },
  39941. {
  39942. name: "Natural",
  39943. height: math.unit(24, "feet"),
  39944. default: true
  39945. },
  39946. {
  39947. name: "Giant",
  39948. height: math.unit(80, "feet")
  39949. },
  39950. {
  39951. name: "Kaiju",
  39952. height: math.unit(240, "feet")
  39953. },
  39954. {
  39955. name: "Macro",
  39956. height: math.unit(800, "feet")
  39957. },
  39958. {
  39959. name: "Macro+",
  39960. height: math.unit(2400, "feet")
  39961. },
  39962. {
  39963. name: "Macro++",
  39964. height: math.unit(8000, "feet")
  39965. },
  39966. {
  39967. name: "City-Crushing",
  39968. height: math.unit(24000, "feet")
  39969. },
  39970. {
  39971. name: "Mountain-Mashing",
  39972. height: math.unit(80000, "feet")
  39973. },
  39974. {
  39975. name: "District Demolisher",
  39976. height: math.unit(240000, "feet")
  39977. },
  39978. {
  39979. name: "Tri-County Terror",
  39980. height: math.unit(800000, "feet")
  39981. },
  39982. {
  39983. name: "State Smasher",
  39984. height: math.unit(2.4e6, "feet")
  39985. },
  39986. {
  39987. name: "Nation Nemesis",
  39988. height: math.unit(8e6, "feet")
  39989. },
  39990. {
  39991. name: "Continent Cracker",
  39992. height: math.unit(2.4e7, "feet")
  39993. },
  39994. {
  39995. name: "Planet-Pillaging",
  39996. height: math.unit(8e7, "feet")
  39997. },
  39998. {
  39999. name: "Earth-Eclipsing",
  40000. height: math.unit(2.4e8, "feet")
  40001. },
  40002. {
  40003. name: "Jovian-Jostling",
  40004. height: math.unit(8e8, "feet")
  40005. },
  40006. {
  40007. name: "Gas Giant Gulper",
  40008. height: math.unit(2.4e9, "feet")
  40009. },
  40010. {
  40011. name: "Astral Annihilator",
  40012. height: math.unit(8e9, "feet")
  40013. },
  40014. {
  40015. name: "Celestial Conqueror",
  40016. height: math.unit(2.4e10, "feet")
  40017. },
  40018. {
  40019. name: "Sol-Swallowing",
  40020. height: math.unit(8e10, "feet")
  40021. },
  40022. {
  40023. name: "Hunter of the Heavens",
  40024. height: math.unit(2.4e13, "feet")
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(6 + 8/12, "feet"),
  40033. weight: math.unit(250, "kilograms"),
  40034. volume: math.unit(28, "liters"),
  40035. name: "Front",
  40036. image: {
  40037. source: "./media/characters/rebecca-pawlson/front.svg",
  40038. extra: 1737/1596,
  40039. bottom: 107/1844
  40040. }
  40041. },
  40042. back: {
  40043. height: math.unit(6 + 8/12, "feet"),
  40044. weight: math.unit(250, "kilograms"),
  40045. volume: math.unit(28, "liters"),
  40046. name: "Back",
  40047. image: {
  40048. source: "./media/characters/rebecca-pawlson/back.svg",
  40049. extra: 1702/1523,
  40050. bottom: 86/1788
  40051. }
  40052. },
  40053. },
  40054. [
  40055. {
  40056. name: "Normal",
  40057. height: math.unit(6 + 8/12, "feet")
  40058. },
  40059. {
  40060. name: "Mini Macro",
  40061. height: math.unit(10, "feet"),
  40062. default: true
  40063. },
  40064. {
  40065. name: "Macro",
  40066. height: math.unit(100, "feet")
  40067. },
  40068. {
  40069. name: "Mega Macro",
  40070. height: math.unit(2500, "feet")
  40071. },
  40072. {
  40073. name: "Giga Macro",
  40074. height: math.unit(50, "miles")
  40075. },
  40076. ]
  40077. ))
  40078. characterMakers.push(() => makeCharacter(
  40079. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40080. {
  40081. front: {
  40082. height: math.unit(7 + 6/12, "feet"),
  40083. weight: math.unit(600, "lb"),
  40084. name: "Front",
  40085. image: {
  40086. source: "./media/characters/moxie-nova/front.svg",
  40087. extra: 1734/1652,
  40088. bottom: 41/1775
  40089. }
  40090. },
  40091. },
  40092. [
  40093. {
  40094. name: "Normal",
  40095. height: math.unit(7 + 6/12, "feet"),
  40096. default: true
  40097. },
  40098. ]
  40099. ))
  40100. characterMakers.push(() => makeCharacter(
  40101. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40102. {
  40103. goat: {
  40104. height: math.unit(4, "feet"),
  40105. weight: math.unit(180, "lb"),
  40106. name: "Goat",
  40107. image: {
  40108. source: "./media/characters/tiffany/goat.svg",
  40109. extra: 1845/1595,
  40110. bottom: 106/1951
  40111. }
  40112. },
  40113. front: {
  40114. height: math.unit(5, "feet"),
  40115. weight: math.unit(150, "lb"),
  40116. name: "Foxcoon",
  40117. image: {
  40118. source: "./media/characters/tiffany/foxcoon.svg",
  40119. extra: 1941/1845,
  40120. bottom: 58/1999
  40121. }
  40122. },
  40123. },
  40124. [
  40125. {
  40126. name: "Normal",
  40127. height: math.unit(5, "feet"),
  40128. default: true
  40129. },
  40130. ]
  40131. ))
  40132. characterMakers.push(() => makeCharacter(
  40133. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40134. {
  40135. front: {
  40136. height: math.unit(8, "feet"),
  40137. weight: math.unit(300, "lb"),
  40138. name: "Front",
  40139. image: {
  40140. source: "./media/characters/raxinath/front.svg",
  40141. extra: 1407/1309,
  40142. bottom: 39/1446
  40143. }
  40144. },
  40145. back: {
  40146. height: math.unit(8, "feet"),
  40147. weight: math.unit(300, "lb"),
  40148. name: "Back",
  40149. image: {
  40150. source: "./media/characters/raxinath/back.svg",
  40151. extra: 1405/1315,
  40152. bottom: 9/1414
  40153. }
  40154. },
  40155. },
  40156. [
  40157. {
  40158. name: "Speck",
  40159. height: math.unit(0.5, "nm")
  40160. },
  40161. {
  40162. name: "Micro",
  40163. height: math.unit(3, "inches")
  40164. },
  40165. {
  40166. name: "Kobold",
  40167. height: math.unit(3, "feet")
  40168. },
  40169. {
  40170. name: "Normal",
  40171. height: math.unit(8, "feet"),
  40172. default: true
  40173. },
  40174. {
  40175. name: "Giant",
  40176. height: math.unit(50, "feet")
  40177. },
  40178. {
  40179. name: "Macro",
  40180. height: math.unit(1000, "feet")
  40181. },
  40182. {
  40183. name: "Megamacro",
  40184. height: math.unit(1, "mile")
  40185. },
  40186. ]
  40187. ))
  40188. characterMakers.push(() => makeCharacter(
  40189. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40190. {
  40191. front: {
  40192. height: math.unit(10, "feet"),
  40193. weight: math.unit(1442, "lb"),
  40194. name: "Front",
  40195. image: {
  40196. source: "./media/characters/mal-dragon/front.svg",
  40197. extra: 1515/1444,
  40198. bottom: 113/1628
  40199. }
  40200. },
  40201. back: {
  40202. height: math.unit(10, "feet"),
  40203. weight: math.unit(1442, "lb"),
  40204. name: "Back",
  40205. image: {
  40206. source: "./media/characters/mal-dragon/back.svg",
  40207. extra: 1527/1434,
  40208. bottom: 25/1552
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Mortal Interaction",
  40215. height: math.unit(10, "feet"),
  40216. default: true
  40217. },
  40218. {
  40219. name: "Large",
  40220. height: math.unit(30, "feet")
  40221. },
  40222. {
  40223. name: "Kaiju",
  40224. height: math.unit(300, "feet")
  40225. },
  40226. {
  40227. name: "Megamacro",
  40228. height: math.unit(10000, "feet")
  40229. },
  40230. {
  40231. name: "Continent Cracker",
  40232. height: math.unit(30000000, "feet")
  40233. },
  40234. {
  40235. name: "Sol-Swallowing",
  40236. height: math.unit(1e11, "feet")
  40237. },
  40238. {
  40239. name: "Light Universal",
  40240. height: math.unit(5, "universes")
  40241. },
  40242. {
  40243. name: "Universe Atoms",
  40244. height: math.unit(1.829e9, "universes")
  40245. },
  40246. {
  40247. name: "Light Multiversal",
  40248. height: math.unit(5, "multiverses")
  40249. },
  40250. {
  40251. name: "Multiverse Atoms",
  40252. height: math.unit(1.829e9, "multiverses")
  40253. },
  40254. {
  40255. name: "Fabric of Time",
  40256. height: math.unit(1e262, "multiverses")
  40257. },
  40258. ]
  40259. ))
  40260. characterMakers.push(() => makeCharacter(
  40261. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40262. {
  40263. front: {
  40264. height: math.unit(9, "feet"),
  40265. weight: math.unit(1050, "lb"),
  40266. name: "Front",
  40267. image: {
  40268. source: "./media/characters/tabitha/front.svg",
  40269. extra: 2083/1994,
  40270. bottom: 68/2151
  40271. }
  40272. },
  40273. },
  40274. [
  40275. {
  40276. name: "Baseline",
  40277. height: math.unit(9, "feet"),
  40278. default: true
  40279. },
  40280. {
  40281. name: "Giant",
  40282. height: math.unit(90, "feet")
  40283. },
  40284. {
  40285. name: "Macro",
  40286. height: math.unit(900, "feet")
  40287. },
  40288. {
  40289. name: "Megamacro",
  40290. height: math.unit(9000, "feet")
  40291. },
  40292. {
  40293. name: "City-Crushing",
  40294. height: math.unit(27000, "feet")
  40295. },
  40296. {
  40297. name: "Mountain-Mashing",
  40298. height: math.unit(90000, "feet")
  40299. },
  40300. {
  40301. name: "Nation Nemesis",
  40302. height: math.unit(9e6, "feet")
  40303. },
  40304. {
  40305. name: "Continent Cracker",
  40306. height: math.unit(27e6, "feet")
  40307. },
  40308. {
  40309. name: "Earth-Eclipsing",
  40310. height: math.unit(2.7e8, "feet")
  40311. },
  40312. {
  40313. name: "Gas Giant Gulper",
  40314. height: math.unit(2.7e9, "feet")
  40315. },
  40316. {
  40317. name: "Sol-Swallowing",
  40318. height: math.unit(9e10, "feet")
  40319. },
  40320. {
  40321. name: "Galaxy Gulper",
  40322. height: math.unit(9, "galaxies")
  40323. },
  40324. {
  40325. name: "Cosmos Churner",
  40326. height: math.unit(9, "universes")
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(160, "cm"),
  40335. weight: math.unit(55, "kg"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/tow/front.svg",
  40339. extra: 1751/1722,
  40340. bottom: 74/1825
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Norm",
  40347. height: math.unit(160, "cm")
  40348. },
  40349. {
  40350. name: "Casual",
  40351. height: math.unit(3200, "m"),
  40352. default: true
  40353. },
  40354. {
  40355. name: "Show-Off",
  40356. height: math.unit(160, "km")
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40362. {
  40363. front: {
  40364. height: math.unit(7 + 11/12, "feet"),
  40365. weight: math.unit(342.8, "lb"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/vivian-orca-dragon/front.svg",
  40369. extra: 1890/1865,
  40370. bottom: 28/1918
  40371. }
  40372. },
  40373. },
  40374. [
  40375. {
  40376. name: "Micro",
  40377. height: math.unit(5, "inches")
  40378. },
  40379. {
  40380. name: "Normal",
  40381. height: math.unit(7 + 11/12, "feet"),
  40382. default: true
  40383. },
  40384. {
  40385. name: "Macro",
  40386. height: math.unit(395 + 7/12, "feet")
  40387. },
  40388. ]
  40389. ))
  40390. characterMakers.push(() => makeCharacter(
  40391. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40392. {
  40393. side: {
  40394. height: math.unit(10, "feet"),
  40395. weight: math.unit(1442, "lb"),
  40396. name: "Side",
  40397. image: {
  40398. source: "./media/characters/lotherakon/side.svg",
  40399. extra: 1604/1497,
  40400. bottom: 89/1693
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Mortal Interaction",
  40407. height: math.unit(10, "feet")
  40408. },
  40409. {
  40410. name: "Large",
  40411. height: math.unit(30, "feet"),
  40412. default: true
  40413. },
  40414. {
  40415. name: "Giant",
  40416. height: math.unit(100, "feet")
  40417. },
  40418. {
  40419. name: "Kaiju",
  40420. height: math.unit(300, "feet")
  40421. },
  40422. {
  40423. name: "Macro",
  40424. height: math.unit(1000, "feet")
  40425. },
  40426. {
  40427. name: "Macro+",
  40428. height: math.unit(3000, "feet")
  40429. },
  40430. {
  40431. name: "Megamacro",
  40432. height: math.unit(10000, "feet")
  40433. },
  40434. {
  40435. name: "City-Crushing",
  40436. height: math.unit(30000, "feet")
  40437. },
  40438. {
  40439. name: "Continent Cracker",
  40440. height: math.unit(30e6, "feet")
  40441. },
  40442. {
  40443. name: "Earth Eclipsing",
  40444. height: math.unit(3e8, "feet")
  40445. },
  40446. {
  40447. name: "Gas Giant Gulper",
  40448. height: math.unit(3e9, "feet")
  40449. },
  40450. {
  40451. name: "Sol-Swallowing",
  40452. height: math.unit(1e11, "feet")
  40453. },
  40454. {
  40455. name: "System Swallower",
  40456. height: math.unit(3e14, "feet")
  40457. },
  40458. {
  40459. name: "Galaxy Gulper",
  40460. height: math.unit(10, "galaxies")
  40461. },
  40462. {
  40463. name: "Light Universal",
  40464. height: math.unit(5, "universes")
  40465. },
  40466. {
  40467. name: "Universe Palm",
  40468. height: math.unit(20, "universes")
  40469. },
  40470. {
  40471. name: "Light Multiversal",
  40472. height: math.unit(5, "multiverses")
  40473. },
  40474. {
  40475. name: "Multiverse Palm",
  40476. height: math.unit(20, "multiverses")
  40477. },
  40478. {
  40479. name: "Inferno Incarnate",
  40480. height: math.unit(1e7, "multiverses")
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(8, "feet"),
  40489. weight: math.unit(1200, "lb"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/malithee/front.svg",
  40493. extra: 1675/1640,
  40494. bottom: 162/1837
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Mortal Interaction",
  40501. height: math.unit(8, "feet"),
  40502. default: true
  40503. },
  40504. {
  40505. name: "Large",
  40506. height: math.unit(24, "feet")
  40507. },
  40508. {
  40509. name: "Kaiju",
  40510. height: math.unit(240, "feet")
  40511. },
  40512. {
  40513. name: "Megamacro",
  40514. height: math.unit(8000, "feet")
  40515. },
  40516. {
  40517. name: "Continent Cracker",
  40518. height: math.unit(24e6, "feet")
  40519. },
  40520. {
  40521. name: "Earth-Eclipsing",
  40522. height: math.unit(2.4e8, "feet")
  40523. },
  40524. {
  40525. name: "Sol-Swallowing",
  40526. height: math.unit(8e10, "feet")
  40527. },
  40528. {
  40529. name: "Galaxy Gulper",
  40530. height: math.unit(8, "galaxies")
  40531. },
  40532. {
  40533. name: "Light Universal",
  40534. height: math.unit(4, "universes")
  40535. },
  40536. {
  40537. name: "Universe Atoms",
  40538. height: math.unit(1.829e9, "universes")
  40539. },
  40540. {
  40541. name: "Light Multiversal",
  40542. height: math.unit(4, "multiverses")
  40543. },
  40544. {
  40545. name: "Multiverse Atoms",
  40546. height: math.unit(1.829e9, "multiverses")
  40547. },
  40548. {
  40549. name: "Nigh-Omnipresence",
  40550. height: math.unit(8e261, "multiverses")
  40551. },
  40552. ]
  40553. ))
  40554. characterMakers.push(() => makeCharacter(
  40555. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40556. {
  40557. front: {
  40558. height: math.unit(10, "feet"),
  40559. weight: math.unit(1500, "lb"),
  40560. name: "Front",
  40561. image: {
  40562. source: "./media/characters/miles-thestia/front.svg",
  40563. extra: 1812/1727,
  40564. bottom: 86/1898
  40565. }
  40566. },
  40567. back: {
  40568. height: math.unit(10, "feet"),
  40569. weight: math.unit(1500, "lb"),
  40570. name: "Back",
  40571. image: {
  40572. source: "./media/characters/miles-thestia/back.svg",
  40573. extra: 1799/1690,
  40574. bottom: 47/1846
  40575. }
  40576. },
  40577. frontNsfw: {
  40578. height: math.unit(10, "feet"),
  40579. weight: math.unit(1500, "lb"),
  40580. name: "Front (NSFW)",
  40581. image: {
  40582. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40583. extra: 1812/1727,
  40584. bottom: 86/1898
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Mini-Macro",
  40591. height: math.unit(10, "feet"),
  40592. default: true
  40593. },
  40594. ]
  40595. ))
  40596. characterMakers.push(() => makeCharacter(
  40597. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40598. {
  40599. front: {
  40600. height: math.unit(25, "feet"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/titan-s-wulf/front.svg",
  40604. extra: 1560/1484,
  40605. bottom: 76/1636
  40606. }
  40607. },
  40608. },
  40609. [
  40610. {
  40611. name: "Smallest",
  40612. height: math.unit(25, "feet"),
  40613. default: true
  40614. },
  40615. {
  40616. name: "Normal",
  40617. height: math.unit(200, "feet")
  40618. },
  40619. {
  40620. name: "Macro",
  40621. height: math.unit(200000, "feet")
  40622. },
  40623. {
  40624. name: "Multiversal Original",
  40625. height: math.unit(10000, "multiverses")
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(8, "feet"),
  40634. weight: math.unit(553, "lb"),
  40635. name: "Front",
  40636. image: {
  40637. source: "./media/characters/tawendeh/front.svg",
  40638. extra: 2365/2268,
  40639. bottom: 83/2448
  40640. }
  40641. },
  40642. frontClothed: {
  40643. height: math.unit(8, "feet"),
  40644. weight: math.unit(553, "lb"),
  40645. name: "Front (Clothed)",
  40646. image: {
  40647. source: "./media/characters/tawendeh/front-clothed.svg",
  40648. extra: 2365/2268,
  40649. bottom: 83/2448
  40650. }
  40651. },
  40652. back: {
  40653. height: math.unit(8, "feet"),
  40654. weight: math.unit(553, "lb"),
  40655. name: "Back",
  40656. image: {
  40657. source: "./media/characters/tawendeh/back.svg",
  40658. extra: 2397/2294,
  40659. bottom: 42/2439
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Mortal Interaction",
  40666. height: math.unit(8, "feet"),
  40667. default: true
  40668. },
  40669. {
  40670. name: "Giant",
  40671. height: math.unit(80, "feet")
  40672. },
  40673. {
  40674. name: "Macro",
  40675. height: math.unit(800, "feet")
  40676. },
  40677. {
  40678. name: "Megamacro",
  40679. height: math.unit(8000, "feet")
  40680. },
  40681. {
  40682. name: "City-Crushing",
  40683. height: math.unit(24000, "feet")
  40684. },
  40685. {
  40686. name: "Mountain-Mashing",
  40687. height: math.unit(80000, "feet")
  40688. },
  40689. {
  40690. name: "Nation Nemesis",
  40691. height: math.unit(8e6, "feet")
  40692. },
  40693. {
  40694. name: "Continent Cracker",
  40695. height: math.unit(24e6, "feet")
  40696. },
  40697. {
  40698. name: "Earth-Eclipsing",
  40699. height: math.unit(2.4e8, "feet")
  40700. },
  40701. {
  40702. name: "Gas Giant Gulper",
  40703. height: math.unit(2.4e9, "feet")
  40704. },
  40705. {
  40706. name: "Sol-Swallowing",
  40707. height: math.unit(8e10, "feet")
  40708. },
  40709. {
  40710. name: "Galaxy Gulper",
  40711. height: math.unit(8, "galaxies")
  40712. },
  40713. {
  40714. name: "Cosmos Churner",
  40715. height: math.unit(8, "universes")
  40716. },
  40717. {
  40718. name: "Omnipotent Otter",
  40719. height: math.unit(80, "universes")
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(2.6, "meters"),
  40728. weight: math.unit(900, "kg"),
  40729. name: "Front",
  40730. image: {
  40731. source: "./media/characters/neesha/front.svg",
  40732. extra: 1803/1653,
  40733. bottom: 128/1931
  40734. }
  40735. },
  40736. },
  40737. [
  40738. {
  40739. name: "Normal",
  40740. height: math.unit(2.6, "meters"),
  40741. default: true
  40742. },
  40743. {
  40744. name: "Macro",
  40745. height: math.unit(50, "meters")
  40746. },
  40747. ]
  40748. ))
  40749. characterMakers.push(() => makeCharacter(
  40750. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40751. {
  40752. front: {
  40753. height: math.unit(5, "feet"),
  40754. weight: math.unit(185, "lb"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/kyera/front.svg",
  40758. extra: 1875/1790,
  40759. bottom: 96/1971
  40760. }
  40761. },
  40762. },
  40763. [
  40764. {
  40765. name: "Normal",
  40766. height: math.unit(5, "feet"),
  40767. default: true
  40768. },
  40769. ]
  40770. ))
  40771. characterMakers.push(() => makeCharacter(
  40772. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40773. {
  40774. front: {
  40775. height: math.unit(7 + 6/12, "feet"),
  40776. weight: math.unit(540, "lb"),
  40777. name: "Front",
  40778. image: {
  40779. source: "./media/characters/yuko/front.svg",
  40780. extra: 1282/1222,
  40781. bottom: 101/1383
  40782. }
  40783. },
  40784. frontClothed: {
  40785. height: math.unit(7 + 6/12, "feet"),
  40786. weight: math.unit(540, "lb"),
  40787. name: "Front (Clothed)",
  40788. image: {
  40789. source: "./media/characters/yuko/front-clothed.svg",
  40790. extra: 1282/1222,
  40791. bottom: 101/1383
  40792. }
  40793. },
  40794. },
  40795. [
  40796. {
  40797. name: "Normal",
  40798. height: math.unit(7 + 6/12, "feet"),
  40799. default: true
  40800. },
  40801. {
  40802. name: "Macro",
  40803. height: math.unit(26 + 9/12, "feet")
  40804. },
  40805. {
  40806. name: "Megamacro",
  40807. height: math.unit(300, "feet")
  40808. },
  40809. {
  40810. name: "Gigamacro",
  40811. height: math.unit(5000, "feet")
  40812. },
  40813. {
  40814. name: "Planetary",
  40815. height: math.unit(10000, "miles")
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(8 + 2/12, "feet"),
  40824. weight: math.unit(600, "lb"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/deam-nitrel/front.svg",
  40828. extra: 1308/1234,
  40829. bottom: 125/1433
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Normal",
  40836. height: math.unit(8 + 2/12, "feet"),
  40837. default: true
  40838. },
  40839. ]
  40840. ))
  40841. characterMakers.push(() => makeCharacter(
  40842. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40843. {
  40844. front: {
  40845. height: math.unit(6.1, "feet"),
  40846. weight: math.unit(180, "lb"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/skyress/front.svg",
  40850. extra: 1045/915,
  40851. bottom: 28/1073
  40852. }
  40853. },
  40854. maw: {
  40855. height: math.unit(1, "feet"),
  40856. name: "Maw",
  40857. image: {
  40858. source: "./media/characters/skyress/maw.svg"
  40859. }
  40860. },
  40861. },
  40862. [
  40863. {
  40864. name: "Normal",
  40865. height: math.unit(6.1, "feet"),
  40866. default: true
  40867. },
  40868. {
  40869. name: "Macro",
  40870. height: math.unit(200, "feet")
  40871. },
  40872. ]
  40873. ))
  40874. characterMakers.push(() => makeCharacter(
  40875. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40876. {
  40877. front: {
  40878. height: math.unit(4 + 2/12, "feet"),
  40879. weight: math.unit(40, "kg"),
  40880. name: "Front",
  40881. image: {
  40882. source: "./media/characters/amethyst-jones/front.svg",
  40883. extra: 1220/1150,
  40884. bottom: 101/1321
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Normal",
  40891. height: math.unit(4 + 2/12, "feet"),
  40892. default: true
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(1.7, "m"),
  40901. weight: math.unit(135, "lb"),
  40902. name: "Front",
  40903. image: {
  40904. source: "./media/characters/jade/front.svg",
  40905. extra: 1818/1767,
  40906. bottom: 32/1850
  40907. }
  40908. },
  40909. back: {
  40910. height: math.unit(1.7, "m"),
  40911. weight: math.unit(135, "lb"),
  40912. name: "Back",
  40913. image: {
  40914. source: "./media/characters/jade/back.svg",
  40915. extra: 1869/1809,
  40916. bottom: 35/1904
  40917. }
  40918. },
  40919. hand: {
  40920. height: math.unit(0.24, "m"),
  40921. name: "Hand",
  40922. image: {
  40923. source: "./media/characters/jade/hand.svg"
  40924. }
  40925. },
  40926. foot: {
  40927. height: math.unit(0.263, "m"),
  40928. name: "Foot",
  40929. image: {
  40930. source: "./media/characters/jade/foot.svg"
  40931. }
  40932. },
  40933. dick: {
  40934. height: math.unit(0.47, "m"),
  40935. name: "Dick",
  40936. image: {
  40937. source: "./media/characters/jade/dick.svg"
  40938. }
  40939. },
  40940. },
  40941. [
  40942. {
  40943. name: "Micro",
  40944. height: math.unit(22, "cm")
  40945. },
  40946. {
  40947. name: "Normal",
  40948. height: math.unit(1.7, "m"),
  40949. default: true
  40950. },
  40951. {
  40952. name: "Macro",
  40953. height: math.unit(152, "m")
  40954. },
  40955. ]
  40956. ))
  40957. characterMakers.push(() => makeCharacter(
  40958. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40959. {
  40960. front: {
  40961. height: math.unit(100, "miles"),
  40962. weight: math.unit(20000, "tons"),
  40963. name: "Front",
  40964. image: {
  40965. source: "./media/characters/cookie/front.svg",
  40966. extra: 1125/1070,
  40967. bottom: 30/1155
  40968. }
  40969. },
  40970. },
  40971. [
  40972. {
  40973. name: "Big",
  40974. height: math.unit(50, "feet")
  40975. },
  40976. {
  40977. name: "Macro",
  40978. height: math.unit(100, "miles"),
  40979. default: true
  40980. },
  40981. {
  40982. name: "Megamacro",
  40983. height: math.unit(90000, "miles")
  40984. },
  40985. ]
  40986. ))
  40987. characterMakers.push(() => makeCharacter(
  40988. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40989. {
  40990. front: {
  40991. height: math.unit(6, "feet"),
  40992. weight: math.unit(145, "lb"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/farzian/front.svg",
  40996. extra: 1902/1693,
  40997. bottom: 108/2010
  40998. }
  40999. },
  41000. },
  41001. [
  41002. {
  41003. name: "Macro",
  41004. height: math.unit(500, "feet"),
  41005. default: true
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41011. {
  41012. front: {
  41013. height: math.unit(3 + 6/12, "feet"),
  41014. weight: math.unit(50, "lb"),
  41015. name: "Front",
  41016. image: {
  41017. source: "./media/characters/kimberly-tilson/front.svg",
  41018. extra: 1400/1322,
  41019. bottom: 36/1436
  41020. }
  41021. },
  41022. back: {
  41023. height: math.unit(3 + 6/12, "feet"),
  41024. weight: math.unit(50, "lb"),
  41025. name: "Back",
  41026. image: {
  41027. source: "./media/characters/kimberly-tilson/back.svg",
  41028. extra: 1370/1307,
  41029. bottom: 20/1390
  41030. }
  41031. },
  41032. },
  41033. [
  41034. {
  41035. name: "Normal",
  41036. height: math.unit(3 + 6/12, "feet"),
  41037. default: true
  41038. },
  41039. ]
  41040. ))
  41041. characterMakers.push(() => makeCharacter(
  41042. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41043. {
  41044. front: {
  41045. height: math.unit(1148, "feet"),
  41046. weight: math.unit(34057, "lb"),
  41047. name: "Front",
  41048. image: {
  41049. source: "./media/characters/harthos/front.svg",
  41050. extra: 1391/1339,
  41051. bottom: 13/1404
  41052. }
  41053. },
  41054. },
  41055. [
  41056. {
  41057. name: "Macro",
  41058. height: math.unit(1148, "feet"),
  41059. default: true
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(15, "feet"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/hypatia/front.svg",
  41071. extra: 1653/1591,
  41072. bottom: 79/1732
  41073. }
  41074. },
  41075. },
  41076. [
  41077. {
  41078. name: "Normal",
  41079. height: math.unit(15, "feet")
  41080. },
  41081. {
  41082. name: "Small",
  41083. height: math.unit(300, "feet")
  41084. },
  41085. {
  41086. name: "Macro",
  41087. height: math.unit(2500, "feet"),
  41088. default: true
  41089. },
  41090. {
  41091. name: "Mega Macro",
  41092. height: math.unit(1500, "miles")
  41093. },
  41094. {
  41095. name: "Giga Macro",
  41096. height: math.unit(1.5e6, "miles")
  41097. },
  41098. ]
  41099. ))
  41100. characterMakers.push(() => makeCharacter(
  41101. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41102. {
  41103. front: {
  41104. height: math.unit(6, "feet"),
  41105. weight: math.unit(200, "lb"),
  41106. name: "Front",
  41107. image: {
  41108. source: "./media/characters/wulver/front.svg",
  41109. extra: 1724/1632,
  41110. bottom: 130/1854
  41111. }
  41112. },
  41113. frontNsfw: {
  41114. height: math.unit(6, "feet"),
  41115. weight: math.unit(200, "lb"),
  41116. name: "Front (NSFW)",
  41117. image: {
  41118. source: "./media/characters/wulver/front-nsfw.svg",
  41119. extra: 1724/1632,
  41120. bottom: 130/1854
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Human-Sized",
  41127. height: math.unit(6, "feet")
  41128. },
  41129. {
  41130. name: "Normal",
  41131. height: math.unit(4, "meters"),
  41132. default: true
  41133. },
  41134. {
  41135. name: "Large",
  41136. height: math.unit(6, "m")
  41137. },
  41138. ]
  41139. ))
  41140. characterMakers.push(() => makeCharacter(
  41141. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41142. {
  41143. front: {
  41144. height: math.unit(7, "feet"),
  41145. name: "Front",
  41146. image: {
  41147. source: "./media/characters/maru/front.svg",
  41148. extra: 1595/1570,
  41149. bottom: 0/1595
  41150. }
  41151. },
  41152. },
  41153. [
  41154. {
  41155. name: "Normal",
  41156. height: math.unit(7, "feet"),
  41157. default: true
  41158. },
  41159. {
  41160. name: "Macro",
  41161. height: math.unit(700, "feet")
  41162. },
  41163. {
  41164. name: "Mega Macro",
  41165. height: math.unit(25, "miles")
  41166. },
  41167. ]
  41168. ))
  41169. characterMakers.push(() => makeCharacter(
  41170. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41171. {
  41172. front: {
  41173. height: math.unit(6, "feet"),
  41174. weight: math.unit(170, "lb"),
  41175. name: "Front",
  41176. image: {
  41177. source: "./media/characters/xenon/front.svg",
  41178. extra: 1376/1305,
  41179. bottom: 56/1432
  41180. }
  41181. },
  41182. back: {
  41183. height: math.unit(6, "feet"),
  41184. weight: math.unit(170, "lb"),
  41185. name: "Back",
  41186. image: {
  41187. source: "./media/characters/xenon/back.svg",
  41188. extra: 1328/1259,
  41189. bottom: 95/1423
  41190. }
  41191. },
  41192. maw: {
  41193. height: math.unit(0.52, "feet"),
  41194. name: "Maw",
  41195. image: {
  41196. source: "./media/characters/xenon/maw.svg"
  41197. }
  41198. },
  41199. hand: {
  41200. height: math.unit(0.82, "feet"),
  41201. name: "Hand",
  41202. image: {
  41203. source: "./media/characters/xenon/hand.svg"
  41204. }
  41205. },
  41206. foot: {
  41207. height: math.unit(1.13, "feet"),
  41208. name: "Foot",
  41209. image: {
  41210. source: "./media/characters/xenon/foot.svg"
  41211. }
  41212. },
  41213. },
  41214. [
  41215. {
  41216. name: "Micro",
  41217. height: math.unit(0.8, "inches")
  41218. },
  41219. {
  41220. name: "Normal",
  41221. height: math.unit(6, "feet")
  41222. },
  41223. {
  41224. name: "Macro",
  41225. height: math.unit(50, "feet"),
  41226. default: true
  41227. },
  41228. {
  41229. name: "Macro+",
  41230. height: math.unit(250, "feet")
  41231. },
  41232. {
  41233. name: "Megamacro",
  41234. height: math.unit(1500, "feet")
  41235. },
  41236. ]
  41237. ))
  41238. characterMakers.push(() => makeCharacter(
  41239. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41240. {
  41241. front: {
  41242. height: math.unit(7 + 5/12, "feet"),
  41243. name: "Front",
  41244. image: {
  41245. source: "./media/characters/zane/front.svg",
  41246. extra: 1260/1203,
  41247. bottom: 94/1354
  41248. }
  41249. },
  41250. back: {
  41251. height: math.unit(5.05, "feet"),
  41252. name: "Back",
  41253. image: {
  41254. source: "./media/characters/zane/back.svg",
  41255. extra: 893/829,
  41256. bottom: 30/923
  41257. }
  41258. },
  41259. werewolf: {
  41260. height: math.unit(11, "feet"),
  41261. name: "Werewolf",
  41262. image: {
  41263. source: "./media/characters/zane/werewolf.svg",
  41264. extra: 1383/1323,
  41265. bottom: 89/1472
  41266. }
  41267. },
  41268. foot: {
  41269. height: math.unit(1.46, "feet"),
  41270. name: "Foot",
  41271. image: {
  41272. source: "./media/characters/zane/foot.svg"
  41273. }
  41274. },
  41275. footFront: {
  41276. height: math.unit(0.784, "feet"),
  41277. name: "Foot (Front)",
  41278. image: {
  41279. source: "./media/characters/zane/foot-front.svg"
  41280. }
  41281. },
  41282. dick: {
  41283. height: math.unit(1.95, "feet"),
  41284. name: "Dick",
  41285. image: {
  41286. source: "./media/characters/zane/dick.svg"
  41287. }
  41288. },
  41289. dickWerewolf: {
  41290. height: math.unit(3.77, "feet"),
  41291. name: "Dick (Werewolf)",
  41292. image: {
  41293. source: "./media/characters/zane/dick.svg"
  41294. }
  41295. },
  41296. },
  41297. [
  41298. {
  41299. name: "Normal",
  41300. height: math.unit(7 + 5/12, "feet"),
  41301. default: true
  41302. },
  41303. ]
  41304. ))
  41305. characterMakers.push(() => makeCharacter(
  41306. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41307. {
  41308. front: {
  41309. height: math.unit(6 + 2/12, "feet"),
  41310. weight: math.unit(284, "lb"),
  41311. name: "Front",
  41312. image: {
  41313. source: "./media/characters/benni-desparque/front.svg",
  41314. extra: 1353/1126,
  41315. bottom: 69/1422
  41316. }
  41317. },
  41318. },
  41319. [
  41320. {
  41321. name: "Civilian",
  41322. height: math.unit(6 + 2/12, "feet")
  41323. },
  41324. {
  41325. name: "Normal",
  41326. height: math.unit(98, "feet"),
  41327. default: true
  41328. },
  41329. {
  41330. name: "Kaiju Fighter",
  41331. height: math.unit(268, "feet")
  41332. },
  41333. ]
  41334. ))
  41335. characterMakers.push(() => makeCharacter(
  41336. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41337. {
  41338. front: {
  41339. height: math.unit(5, "feet"),
  41340. weight: math.unit(105, "lb"),
  41341. name: "Front",
  41342. image: {
  41343. source: "./media/characters/maxine/front.svg",
  41344. extra: 1386/1250,
  41345. bottom: 71/1457
  41346. }
  41347. },
  41348. },
  41349. [
  41350. {
  41351. name: "Normal",
  41352. height: math.unit(5, "feet"),
  41353. default: true
  41354. },
  41355. ]
  41356. ))
  41357. characterMakers.push(() => makeCharacter(
  41358. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41359. {
  41360. front: {
  41361. height: math.unit(11 + 7/12, "feet"),
  41362. weight: math.unit(9576, "lb"),
  41363. name: "Front",
  41364. image: {
  41365. source: "./media/characters/scaly/front.svg",
  41366. extra: 888/867,
  41367. bottom: 36/924
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Normal",
  41374. height: math.unit(11 + 7/12, "feet"),
  41375. default: true
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41381. {
  41382. front: {
  41383. height: math.unit(6 + 3/12, "feet"),
  41384. name: "Front",
  41385. image: {
  41386. source: "./media/characters/saelria/front.svg",
  41387. extra: 1243/1138,
  41388. bottom: 46/1289
  41389. }
  41390. },
  41391. },
  41392. [
  41393. {
  41394. name: "Micro",
  41395. height: math.unit(6, "inches"),
  41396. },
  41397. {
  41398. name: "Normal",
  41399. height: math.unit(6 + 3/12, "feet"),
  41400. default: true
  41401. },
  41402. {
  41403. name: "Macro",
  41404. height: math.unit(25, "feet")
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41410. {
  41411. front: {
  41412. height: math.unit(80, "meters"),
  41413. weight: math.unit(7000, "tonnes"),
  41414. name: "Front",
  41415. image: {
  41416. source: "./media/characters/tef/front.svg",
  41417. extra: 2036/1991,
  41418. bottom: 54/2090
  41419. }
  41420. },
  41421. back: {
  41422. height: math.unit(80, "meters"),
  41423. weight: math.unit(7000, "tonnes"),
  41424. name: "Back",
  41425. image: {
  41426. source: "./media/characters/tef/back.svg",
  41427. extra: 2036/1991,
  41428. bottom: 54/2090
  41429. }
  41430. },
  41431. },
  41432. [
  41433. {
  41434. name: "Macro",
  41435. height: math.unit(80, "meters"),
  41436. default: true
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41442. {
  41443. front: {
  41444. height: math.unit(13, "feet"),
  41445. weight: math.unit(6, "tons"),
  41446. name: "Front",
  41447. image: {
  41448. source: "./media/characters/rover/front.svg",
  41449. extra: 1233/1156,
  41450. bottom: 50/1283
  41451. }
  41452. },
  41453. back: {
  41454. height: math.unit(13, "feet"),
  41455. weight: math.unit(6, "tons"),
  41456. name: "Back",
  41457. image: {
  41458. source: "./media/characters/rover/back.svg",
  41459. extra: 1327/1258,
  41460. bottom: 39/1366
  41461. }
  41462. },
  41463. },
  41464. [
  41465. {
  41466. name: "Normal",
  41467. height: math.unit(13, "feet"),
  41468. default: true
  41469. },
  41470. {
  41471. name: "Macro",
  41472. height: math.unit(1300, "feet")
  41473. },
  41474. {
  41475. name: "Megamacro",
  41476. height: math.unit(1300, "miles")
  41477. },
  41478. {
  41479. name: "Gigamacro",
  41480. height: math.unit(1300000, "miles")
  41481. },
  41482. ]
  41483. ))
  41484. characterMakers.push(() => makeCharacter(
  41485. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41486. {
  41487. front: {
  41488. height: math.unit(6, "feet"),
  41489. weight: math.unit(150, "lb"),
  41490. name: "Front",
  41491. image: {
  41492. source: "./media/characters/ariz/front.svg",
  41493. extra: 1401/1346,
  41494. bottom: 5/1406
  41495. }
  41496. },
  41497. },
  41498. [
  41499. {
  41500. name: "Normal",
  41501. height: math.unit(10, "feet"),
  41502. default: true
  41503. },
  41504. ]
  41505. ))
  41506. characterMakers.push(() => makeCharacter(
  41507. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41508. {
  41509. front: {
  41510. height: math.unit(6, "feet"),
  41511. weight: math.unit(140, "lb"),
  41512. name: "Front",
  41513. image: {
  41514. source: "./media/characters/sigrun/front.svg",
  41515. extra: 1418/1359,
  41516. bottom: 27/1445
  41517. }
  41518. },
  41519. },
  41520. [
  41521. {
  41522. name: "Macro",
  41523. height: math.unit(35, "feet"),
  41524. default: true
  41525. },
  41526. ]
  41527. ))
  41528. characterMakers.push(() => makeCharacter(
  41529. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41530. {
  41531. front: {
  41532. height: math.unit(6, "feet"),
  41533. weight: math.unit(150, "lb"),
  41534. name: "Front",
  41535. image: {
  41536. source: "./media/characters/numin/front.svg",
  41537. extra: 1433/1388,
  41538. bottom: 12/1445
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Macro",
  41545. height: math.unit(21.5, "km"),
  41546. default: true
  41547. },
  41548. ]
  41549. ))
  41550. characterMakers.push(() => makeCharacter(
  41551. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41552. {
  41553. front: {
  41554. height: math.unit(6, "feet"),
  41555. weight: math.unit(463, "lb"),
  41556. name: "Front",
  41557. image: {
  41558. source: "./media/characters/melwa/front.svg",
  41559. extra: 1307/1248,
  41560. bottom: 93/1400
  41561. }
  41562. },
  41563. },
  41564. [
  41565. {
  41566. name: "Macro",
  41567. height: math.unit(50, "meters"),
  41568. default: true
  41569. },
  41570. ]
  41571. ))
  41572. characterMakers.push(() => makeCharacter(
  41573. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41574. {
  41575. front: {
  41576. height: math.unit(325, "feet"),
  41577. name: "Front",
  41578. image: {
  41579. source: "./media/characters/zorkaiju/front.svg",
  41580. extra: 1955/1814,
  41581. bottom: 40/1995
  41582. }
  41583. },
  41584. frontExtended: {
  41585. height: math.unit(325, "feet"),
  41586. name: "Front (Extended)",
  41587. image: {
  41588. source: "./media/characters/zorkaiju/front-extended.svg",
  41589. extra: 1955/1814,
  41590. bottom: 40/1995
  41591. }
  41592. },
  41593. side: {
  41594. height: math.unit(325, "feet"),
  41595. name: "Side",
  41596. image: {
  41597. source: "./media/characters/zorkaiju/side.svg",
  41598. extra: 1495/1396,
  41599. bottom: 17/1512
  41600. }
  41601. },
  41602. sideExtended: {
  41603. height: math.unit(325, "feet"),
  41604. name: "Side (Extended)",
  41605. image: {
  41606. source: "./media/characters/zorkaiju/side-extended.svg",
  41607. extra: 1495/1396,
  41608. bottom: 17/1512
  41609. }
  41610. },
  41611. back: {
  41612. height: math.unit(325, "feet"),
  41613. name: "Back",
  41614. image: {
  41615. source: "./media/characters/zorkaiju/back.svg",
  41616. extra: 1959/1821,
  41617. bottom: 31/1990
  41618. }
  41619. },
  41620. backExtended: {
  41621. height: math.unit(325, "feet"),
  41622. name: "Back (Extended)",
  41623. image: {
  41624. source: "./media/characters/zorkaiju/back-extended.svg",
  41625. extra: 1959/1821,
  41626. bottom: 31/1990
  41627. }
  41628. },
  41629. hand: {
  41630. height: math.unit(58.4, "feet"),
  41631. name: "Hand",
  41632. image: {
  41633. source: "./media/characters/zorkaiju/hand.svg"
  41634. }
  41635. },
  41636. handExtended: {
  41637. height: math.unit(61.4, "feet"),
  41638. name: "Hand (Extended)",
  41639. image: {
  41640. source: "./media/characters/zorkaiju/hand-extended.svg"
  41641. }
  41642. },
  41643. foot: {
  41644. height: math.unit(95, "feet"),
  41645. name: "Foot",
  41646. image: {
  41647. source: "./media/characters/zorkaiju/foot.svg"
  41648. }
  41649. },
  41650. leftArm: {
  41651. height: math.unit(59, "feet"),
  41652. name: "Left Arm",
  41653. image: {
  41654. source: "./media/characters/zorkaiju/left-arm.svg"
  41655. }
  41656. },
  41657. rightArm: {
  41658. height: math.unit(59, "feet"),
  41659. name: "Right Arm",
  41660. image: {
  41661. source: "./media/characters/zorkaiju/right-arm.svg"
  41662. }
  41663. },
  41664. leftArmExtended: {
  41665. height: math.unit(59 * 1.033546, "feet"),
  41666. name: "Left Arm (Extended)",
  41667. image: {
  41668. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41669. }
  41670. },
  41671. rightArmExtended: {
  41672. height: math.unit(59 * 1.0496, "feet"),
  41673. name: "Right Arm (Extended)",
  41674. image: {
  41675. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41676. }
  41677. },
  41678. tail: {
  41679. height: math.unit(104, "feet"),
  41680. name: "Tail",
  41681. image: {
  41682. source: "./media/characters/zorkaiju/tail.svg"
  41683. }
  41684. },
  41685. tailExtended: {
  41686. height: math.unit(104, "feet"),
  41687. name: "Tail (Extended)",
  41688. image: {
  41689. source: "./media/characters/zorkaiju/tail-extended.svg"
  41690. }
  41691. },
  41692. tailBottom: {
  41693. height: math.unit(104, "feet"),
  41694. name: "Tail Bottom",
  41695. image: {
  41696. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41697. }
  41698. },
  41699. crystal: {
  41700. height: math.unit(27.54, "feet"),
  41701. name: "Crystal",
  41702. image: {
  41703. source: "./media/characters/zorkaiju/crystal.svg"
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Kaiju",
  41710. height: math.unit(325, "feet"),
  41711. default: true
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41717. {
  41718. front: {
  41719. height: math.unit(6 + 1/12, "feet"),
  41720. weight: math.unit(115, "lb"),
  41721. name: "Front",
  41722. image: {
  41723. source: "./media/characters/bailey-belfry/front.svg",
  41724. extra: 1240/1121,
  41725. bottom: 101/1341
  41726. }
  41727. },
  41728. },
  41729. [
  41730. {
  41731. name: "Normal",
  41732. height: math.unit(6 + 1/12, "feet"),
  41733. default: true
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41739. {
  41740. side: {
  41741. height: math.unit(4, "meters"),
  41742. weight: math.unit(250, "kg"),
  41743. name: "Side",
  41744. image: {
  41745. source: "./media/characters/blacky/side.svg",
  41746. extra: 1027/919,
  41747. bottom: 43/1070
  41748. }
  41749. },
  41750. maw: {
  41751. height: math.unit(1, "meters"),
  41752. name: "Maw",
  41753. image: {
  41754. source: "./media/characters/blacky/maw.svg"
  41755. }
  41756. },
  41757. paw: {
  41758. height: math.unit(1, "meters"),
  41759. name: "Paw",
  41760. image: {
  41761. source: "./media/characters/blacky/paw.svg"
  41762. }
  41763. },
  41764. },
  41765. [
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(4, "meters"),
  41769. default: true
  41770. },
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41775. {
  41776. front: {
  41777. height: math.unit(170, "cm"),
  41778. weight: math.unit(66, "kg"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/thux-ei/front.svg",
  41782. extra: 1109/1011,
  41783. bottom: 8/1117
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Normal",
  41790. height: math.unit(170, "cm"),
  41791. default: true
  41792. },
  41793. ]
  41794. ))
  41795. characterMakers.push(() => makeCharacter(
  41796. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41797. {
  41798. front: {
  41799. height: math.unit(5, "feet"),
  41800. weight: math.unit(120, "lb"),
  41801. name: "Front",
  41802. image: {
  41803. source: "./media/characters/roxanne-voltaire/front.svg",
  41804. extra: 1901/1779,
  41805. bottom: 53/1954
  41806. }
  41807. },
  41808. },
  41809. [
  41810. {
  41811. name: "Normal",
  41812. height: math.unit(5, "feet"),
  41813. default: true
  41814. },
  41815. {
  41816. name: "Giant",
  41817. height: math.unit(50, "feet")
  41818. },
  41819. {
  41820. name: "Titan",
  41821. height: math.unit(500, "feet")
  41822. },
  41823. {
  41824. name: "Macro",
  41825. height: math.unit(5000, "feet")
  41826. },
  41827. {
  41828. name: "Megamacro",
  41829. height: math.unit(50000, "feet")
  41830. },
  41831. {
  41832. name: "Gigamacro",
  41833. height: math.unit(500000, "feet")
  41834. },
  41835. {
  41836. name: "Teramacro",
  41837. height: math.unit(5e6, "feet")
  41838. },
  41839. ]
  41840. ))
  41841. characterMakers.push(() => makeCharacter(
  41842. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41843. {
  41844. front: {
  41845. height: math.unit(6 + 2/12, "feet"),
  41846. name: "Front",
  41847. image: {
  41848. source: "./media/characters/squeaks/front.svg",
  41849. extra: 1823/1768,
  41850. bottom: 138/1961
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Micro",
  41857. height: math.unit(0.5, "inches")
  41858. },
  41859. {
  41860. name: "Normal",
  41861. height: math.unit(6 + 2/12, "feet"),
  41862. default: true
  41863. },
  41864. {
  41865. name: "Macro",
  41866. height: math.unit(600, "feet")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(1.72, "meters"),
  41875. name: "Front",
  41876. image: {
  41877. source: "./media/characters/archinger/front.svg",
  41878. extra: 1861/1675,
  41879. bottom: 125/1986
  41880. }
  41881. },
  41882. back: {
  41883. height: math.unit(1.72, "meters"),
  41884. name: "Back",
  41885. image: {
  41886. source: "./media/characters/archinger/back.svg",
  41887. extra: 1844/1701,
  41888. bottom: 104/1948
  41889. }
  41890. },
  41891. cock: {
  41892. height: math.unit(0.59, "feet"),
  41893. name: "Cock",
  41894. image: {
  41895. source: "./media/characters/archinger/cock.svg"
  41896. }
  41897. },
  41898. },
  41899. [
  41900. {
  41901. name: "Normal",
  41902. height: math.unit(1.72, "meters"),
  41903. default: true
  41904. },
  41905. {
  41906. name: "Macro",
  41907. height: math.unit(84, "meters")
  41908. },
  41909. {
  41910. name: "Macro+",
  41911. height: math.unit(112, "meters")
  41912. },
  41913. {
  41914. name: "Macro++",
  41915. height: math.unit(960, "meters")
  41916. },
  41917. {
  41918. name: "Macro+++",
  41919. height: math.unit(4, "km")
  41920. },
  41921. {
  41922. name: "Macro++++",
  41923. height: math.unit(48, "km")
  41924. },
  41925. {
  41926. name: "Macro+++++",
  41927. height: math.unit(4500, "km")
  41928. },
  41929. ]
  41930. ))
  41931. characterMakers.push(() => makeCharacter(
  41932. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41933. {
  41934. front: {
  41935. height: math.unit(5 + 5/12, "feet"),
  41936. name: "Front",
  41937. image: {
  41938. source: "./media/characters/alsnapz/front.svg",
  41939. extra: 1157/1065,
  41940. bottom: 42/1199
  41941. }
  41942. },
  41943. },
  41944. [
  41945. {
  41946. name: "Normal",
  41947. height: math.unit(5 + 5/12, "feet"),
  41948. default: true
  41949. },
  41950. ]
  41951. ))
  41952. characterMakers.push(() => makeCharacter(
  41953. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41954. {
  41955. side: {
  41956. height: math.unit(3.2, "earths"),
  41957. name: "Side",
  41958. image: {
  41959. source: "./media/characters/mag/side.svg",
  41960. extra: 1331/1008,
  41961. bottom: 52/1383
  41962. }
  41963. },
  41964. wing: {
  41965. height: math.unit(1.94, "earths"),
  41966. name: "Wing",
  41967. image: {
  41968. source: "./media/characters/mag/wing.svg"
  41969. }
  41970. },
  41971. dick: {
  41972. height: math.unit(1.8, "earths"),
  41973. name: "Dick",
  41974. image: {
  41975. source: "./media/characters/mag/dick.svg"
  41976. }
  41977. },
  41978. ass: {
  41979. height: math.unit(1.33, "earths"),
  41980. name: "Ass",
  41981. image: {
  41982. source: "./media/characters/mag/ass.svg"
  41983. }
  41984. },
  41985. head: {
  41986. height: math.unit(1.1, "earths"),
  41987. name: "Head",
  41988. image: {
  41989. source: "./media/characters/mag/head.svg"
  41990. }
  41991. },
  41992. maw: {
  41993. height: math.unit(1.62, "earths"),
  41994. name: "Maw",
  41995. image: {
  41996. source: "./media/characters/mag/maw.svg"
  41997. }
  41998. },
  41999. },
  42000. [
  42001. {
  42002. name: "Small",
  42003. height: math.unit(162, "feet")
  42004. },
  42005. {
  42006. name: "Normal",
  42007. height: math.unit(3.2, "earths"),
  42008. default: true
  42009. },
  42010. ]
  42011. ))
  42012. characterMakers.push(() => makeCharacter(
  42013. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42014. {
  42015. front: {
  42016. height: math.unit(512, "feet"),
  42017. weight: math.unit(63509, "tonnes"),
  42018. name: "Front",
  42019. image: {
  42020. source: "./media/characters/vorrel-harroc/front.svg",
  42021. extra: 1075/1063,
  42022. bottom: 62/1137
  42023. }
  42024. },
  42025. },
  42026. [
  42027. {
  42028. name: "Normal",
  42029. height: math.unit(10, "feet")
  42030. },
  42031. {
  42032. name: "Macro",
  42033. height: math.unit(512, "feet"),
  42034. default: true
  42035. },
  42036. {
  42037. name: "Megamacro",
  42038. height: math.unit(256, "miles")
  42039. },
  42040. {
  42041. name: "Gigamacro",
  42042. height: math.unit(4096, "miles")
  42043. },
  42044. ]
  42045. ))
  42046. characterMakers.push(() => makeCharacter(
  42047. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42048. {
  42049. side: {
  42050. height: math.unit(50, "feet"),
  42051. name: "Side",
  42052. image: {
  42053. source: "./media/characters/froimar/side.svg",
  42054. extra: 855/638,
  42055. bottom: 99/954
  42056. }
  42057. },
  42058. },
  42059. [
  42060. {
  42061. name: "Macro",
  42062. height: math.unit(50, "feet"),
  42063. default: true
  42064. },
  42065. ]
  42066. ))
  42067. characterMakers.push(() => makeCharacter(
  42068. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42069. {
  42070. front: {
  42071. height: math.unit(210, "miles"),
  42072. name: "Front",
  42073. image: {
  42074. source: "./media/characters/timothy/front.svg",
  42075. extra: 1007/943,
  42076. bottom: 62/1069
  42077. }
  42078. },
  42079. frontSkirt: {
  42080. height: math.unit(210, "miles"),
  42081. name: "Front (Skirt)",
  42082. image: {
  42083. source: "./media/characters/timothy/front-skirt.svg",
  42084. extra: 1007/943,
  42085. bottom: 62/1069
  42086. }
  42087. },
  42088. frontCoat: {
  42089. height: math.unit(210, "miles"),
  42090. name: "Front (Coat)",
  42091. image: {
  42092. source: "./media/characters/timothy/front-coat.svg",
  42093. extra: 1007/943,
  42094. bottom: 62/1069
  42095. }
  42096. },
  42097. },
  42098. [
  42099. {
  42100. name: "Macro",
  42101. height: math.unit(210, "miles"),
  42102. default: true
  42103. },
  42104. {
  42105. name: "Megamacro",
  42106. height: math.unit(210000, "miles")
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42112. {
  42113. front: {
  42114. height: math.unit(188, "feet"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/pyotr/front.svg",
  42118. extra: 1912/1826,
  42119. bottom: 18/1930
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Macro",
  42126. height: math.unit(188, "feet"),
  42127. default: true
  42128. },
  42129. {
  42130. name: "Megamacro",
  42131. height: math.unit(8, "miles")
  42132. },
  42133. ]
  42134. ))
  42135. characterMakers.push(() => makeCharacter(
  42136. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42137. {
  42138. side: {
  42139. height: math.unit(10, "feet"),
  42140. weight: math.unit(4500, "lb"),
  42141. name: "Side",
  42142. image: {
  42143. source: "./media/characters/ackart/side.svg",
  42144. extra: 1776/1668,
  42145. bottom: 116/1892
  42146. }
  42147. },
  42148. },
  42149. [
  42150. {
  42151. name: "Normal",
  42152. height: math.unit(10, "feet"),
  42153. default: true
  42154. },
  42155. ]
  42156. ))
  42157. characterMakers.push(() => makeCharacter(
  42158. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42159. {
  42160. side: {
  42161. height: math.unit(21, "feet"),
  42162. name: "Side",
  42163. image: {
  42164. source: "./media/characters/nolow/side.svg",
  42165. extra: 1484/1434,
  42166. bottom: 85/1569
  42167. }
  42168. },
  42169. sideErect: {
  42170. height: math.unit(21, "feet"),
  42171. name: "Side-erect",
  42172. image: {
  42173. source: "./media/characters/nolow/side-erect.svg",
  42174. extra: 1484/1434,
  42175. bottom: 85/1569
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Regular",
  42182. height: math.unit(12, "feet")
  42183. },
  42184. {
  42185. name: "Big Chee",
  42186. height: math.unit(21, "feet"),
  42187. default: true
  42188. },
  42189. ]
  42190. ))
  42191. characterMakers.push(() => makeCharacter(
  42192. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42193. {
  42194. front: {
  42195. height: math.unit(7, "feet"),
  42196. weight: math.unit(250, "lb"),
  42197. name: "Front",
  42198. image: {
  42199. source: "./media/characters/nines/front.svg",
  42200. extra: 1741/1607,
  42201. bottom: 41/1782
  42202. }
  42203. },
  42204. side: {
  42205. height: math.unit(7, "feet"),
  42206. weight: math.unit(250, "lb"),
  42207. name: "Side",
  42208. image: {
  42209. source: "./media/characters/nines/side.svg",
  42210. extra: 1854/1735,
  42211. bottom: 93/1947
  42212. }
  42213. },
  42214. back: {
  42215. height: math.unit(7, "feet"),
  42216. weight: math.unit(250, "lb"),
  42217. name: "Back",
  42218. image: {
  42219. source: "./media/characters/nines/back.svg",
  42220. extra: 1748/1615,
  42221. bottom: 20/1768
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Megamacro",
  42228. height: math.unit(99, "km"),
  42229. default: true
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42235. {
  42236. front: {
  42237. height: math.unit(5 + 10/12, "feet"),
  42238. weight: math.unit(210, "lb"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/zenith/front.svg",
  42242. extra: 1531/1452,
  42243. bottom: 198/1729
  42244. }
  42245. },
  42246. back: {
  42247. height: math.unit(5 + 10/12, "feet"),
  42248. weight: math.unit(210, "lb"),
  42249. name: "Back",
  42250. image: {
  42251. source: "./media/characters/zenith/back.svg",
  42252. extra: 1571/1487,
  42253. bottom: 75/1646
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Normal",
  42260. height: math.unit(5 + 10/12, "feet"),
  42261. default: true
  42262. }
  42263. ]
  42264. ))
  42265. characterMakers.push(() => makeCharacter(
  42266. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42267. {
  42268. front: {
  42269. height: math.unit(4, "feet"),
  42270. weight: math.unit(60, "lb"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/jasper/front.svg",
  42274. extra: 1450/1379,
  42275. bottom: 19/1469
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Normal",
  42282. height: math.unit(4, "feet"),
  42283. default: true
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42289. {
  42290. front: {
  42291. height: math.unit(6 + 5/12, "feet"),
  42292. weight: math.unit(290, "lb"),
  42293. name: "Front",
  42294. image: {
  42295. source: "./media/characters/tiberius-thyben/front.svg",
  42296. extra: 757/739,
  42297. bottom: 39/796
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Micro",
  42304. height: math.unit(1.5, "inches")
  42305. },
  42306. {
  42307. name: "Normal",
  42308. height: math.unit(6 + 5/12, "feet"),
  42309. default: true
  42310. },
  42311. {
  42312. name: "Macro",
  42313. height: math.unit(300, "feet")
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(5 + 6/12, "feet"),
  42322. weight: math.unit(60, "kg"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/sabre/front.svg",
  42326. extra: 738/671,
  42327. bottom: 27/765
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Teeny",
  42334. height: math.unit(2, "inches")
  42335. },
  42336. {
  42337. name: "Smol",
  42338. height: math.unit(8, "inches")
  42339. },
  42340. {
  42341. name: "Normal",
  42342. height: math.unit(5 + 6/12, "feet"),
  42343. default: true
  42344. },
  42345. {
  42346. name: "Mini-Macro",
  42347. height: math.unit(15, "feet")
  42348. },
  42349. {
  42350. name: "Macro",
  42351. height: math.unit(50, "feet")
  42352. },
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42357. {
  42358. front: {
  42359. height: math.unit(6 + 4/12, "feet"),
  42360. weight: math.unit(170, "lb"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/charlie/front.svg",
  42364. extra: 1348/1228,
  42365. bottom: 15/1363
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Macro",
  42372. height: math.unit(1700, "meters"),
  42373. default: true
  42374. },
  42375. {
  42376. name: "MegaMacro",
  42377. height: math.unit(20400, "meters")
  42378. },
  42379. ]
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(6 + 3/12, "feet"),
  42386. weight: math.unit(185, "lb"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/susan-grant/front.svg",
  42390. extra: 1351/1327,
  42391. bottom: 26/1377
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(6 + 3/12, "feet"),
  42399. default: true
  42400. },
  42401. {
  42402. name: "Macro",
  42403. height: math.unit(225, "feet")
  42404. },
  42405. {
  42406. name: "Macro+",
  42407. height: math.unit(900, "feet")
  42408. },
  42409. {
  42410. name: "MegaMacro",
  42411. height: math.unit(14400, "feet")
  42412. },
  42413. ]
  42414. ))
  42415. characterMakers.push(() => makeCharacter(
  42416. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42417. {
  42418. front: {
  42419. height: math.unit(5 + 4/12, "feet"),
  42420. weight: math.unit(110, "lb"),
  42421. name: "Front",
  42422. image: {
  42423. source: "./media/characters/axel-isanov/front.svg",
  42424. extra: 1096/1065,
  42425. bottom: 13/1109
  42426. }
  42427. },
  42428. },
  42429. [
  42430. {
  42431. name: "Normal",
  42432. height: math.unit(5 + 4/12, "feet"),
  42433. default: true
  42434. },
  42435. ]
  42436. ))
  42437. characterMakers.push(() => makeCharacter(
  42438. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42439. {
  42440. front: {
  42441. height: math.unit(9, "feet"),
  42442. weight: math.unit(467, "lb"),
  42443. name: "Front",
  42444. image: {
  42445. source: "./media/characters/necahual/front.svg",
  42446. extra: 920/873,
  42447. bottom: 26/946
  42448. }
  42449. },
  42450. back: {
  42451. height: math.unit(9, "feet"),
  42452. weight: math.unit(467, "lb"),
  42453. name: "Back",
  42454. image: {
  42455. source: "./media/characters/necahual/back.svg",
  42456. extra: 930/884,
  42457. bottom: 16/946
  42458. }
  42459. },
  42460. frontUnderwear: {
  42461. height: math.unit(9, "feet"),
  42462. weight: math.unit(467, "lb"),
  42463. name: "Front (Underwear)",
  42464. image: {
  42465. source: "./media/characters/necahual/front-underwear.svg",
  42466. extra: 920/873,
  42467. bottom: 26/946
  42468. }
  42469. },
  42470. frontDressed: {
  42471. height: math.unit(9, "feet"),
  42472. weight: math.unit(467, "lb"),
  42473. name: "Front (Dressed)",
  42474. image: {
  42475. source: "./media/characters/necahual/front-dressed.svg",
  42476. extra: 920/873,
  42477. bottom: 26/946
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "Comprsesed",
  42484. height: math.unit(9, "feet")
  42485. },
  42486. {
  42487. name: "Natural",
  42488. height: math.unit(15, "feet"),
  42489. default: true
  42490. },
  42491. {
  42492. name: "Boosted",
  42493. height: math.unit(50, "feet")
  42494. },
  42495. {
  42496. name: "Boosted+",
  42497. height: math.unit(150, "feet")
  42498. },
  42499. {
  42500. name: "Max",
  42501. height: math.unit(500, "feet")
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42507. {
  42508. front: {
  42509. height: math.unit(22 + 1/12, "feet"),
  42510. weight: math.unit(3200, "lb"),
  42511. name: "Front",
  42512. image: {
  42513. source: "./media/characters/theo-acacia/front.svg",
  42514. extra: 1796/1741,
  42515. bottom: 83/1879
  42516. }
  42517. },
  42518. frontUnderwear: {
  42519. height: math.unit(22 + 1/12, "feet"),
  42520. weight: math.unit(3200, "lb"),
  42521. name: "Front (Underwear)",
  42522. image: {
  42523. source: "./media/characters/theo-acacia/front-underwear.svg",
  42524. extra: 1796/1741,
  42525. bottom: 83/1879
  42526. }
  42527. },
  42528. frontNude: {
  42529. height: math.unit(22 + 1/12, "feet"),
  42530. weight: math.unit(3200, "lb"),
  42531. name: "Front (Nude)",
  42532. image: {
  42533. source: "./media/characters/theo-acacia/front-nude.svg",
  42534. extra: 1796/1741,
  42535. bottom: 83/1879
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Normal",
  42542. height: math.unit(22 + 1/12, "feet"),
  42543. default: true
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42549. {
  42550. front: {
  42551. height: math.unit(20, "feet"),
  42552. name: "Front",
  42553. image: {
  42554. source: "./media/characters/astra/front.svg",
  42555. extra: 1850/1714,
  42556. bottom: 106/1956
  42557. }
  42558. },
  42559. frontUndressed: {
  42560. height: math.unit(20, "feet"),
  42561. name: "Front (Undressed)",
  42562. image: {
  42563. source: "./media/characters/astra/front-undressed.svg",
  42564. extra: 1926/1749,
  42565. bottom: 0/1926
  42566. }
  42567. },
  42568. hand: {
  42569. height: math.unit(1.53, "feet"),
  42570. name: "Hand",
  42571. image: {
  42572. source: "./media/characters/astra/hand.svg"
  42573. }
  42574. },
  42575. paw: {
  42576. height: math.unit(1.53, "feet"),
  42577. name: "Paw",
  42578. image: {
  42579. source: "./media/characters/astra/paw.svg"
  42580. }
  42581. },
  42582. },
  42583. [
  42584. {
  42585. name: "Smallest",
  42586. height: math.unit(20, "feet")
  42587. },
  42588. {
  42589. name: "Normal",
  42590. height: math.unit(1e9, "miles"),
  42591. default: true
  42592. },
  42593. {
  42594. name: "Larger",
  42595. height: math.unit(5, "multiverses")
  42596. },
  42597. {
  42598. name: "Largest",
  42599. height: math.unit(1e9, "multiverses")
  42600. },
  42601. ]
  42602. ))
  42603. characterMakers.push(() => makeCharacter(
  42604. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42605. {
  42606. front: {
  42607. height: math.unit(8, "feet"),
  42608. name: "Front",
  42609. image: {
  42610. source: "./media/characters/breanna/front.svg",
  42611. extra: 1912/1632,
  42612. bottom: 33/1945
  42613. }
  42614. },
  42615. },
  42616. [
  42617. {
  42618. name: "Smallest",
  42619. height: math.unit(8, "feet")
  42620. },
  42621. {
  42622. name: "Normal",
  42623. height: math.unit(1, "mile"),
  42624. default: true
  42625. },
  42626. {
  42627. name: "Maximum",
  42628. height: math.unit(1500000000000, "lightyears")
  42629. },
  42630. ]
  42631. ))
  42632. characterMakers.push(() => makeCharacter(
  42633. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42634. {
  42635. front: {
  42636. height: math.unit(5 + 11/12, "feet"),
  42637. weight: math.unit(155, "lb"),
  42638. name: "Front",
  42639. image: {
  42640. source: "./media/characters/cai/front.svg",
  42641. extra: 1823/1702,
  42642. bottom: 32/1855
  42643. }
  42644. },
  42645. back: {
  42646. height: math.unit(5 + 11/12, "feet"),
  42647. weight: math.unit(155, "lb"),
  42648. name: "Back",
  42649. image: {
  42650. source: "./media/characters/cai/back.svg",
  42651. extra: 1809/1708,
  42652. bottom: 31/1840
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "Normal",
  42659. height: math.unit(5 + 11/12, "feet"),
  42660. default: true
  42661. },
  42662. {
  42663. name: "Big",
  42664. height: math.unit(15, "feet")
  42665. },
  42666. {
  42667. name: "Macro",
  42668. height: math.unit(200, "feet")
  42669. },
  42670. ]
  42671. ))
  42672. characterMakers.push(() => makeCharacter(
  42673. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42674. {
  42675. front: {
  42676. height: math.unit(5 + 6/12, "feet"),
  42677. weight: math.unit(160, "lb"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42681. extra: 1227/1174,
  42682. bottom: 37/1264
  42683. }
  42684. },
  42685. },
  42686. [
  42687. {
  42688. name: "Macro",
  42689. height: math.unit(444, "meters"),
  42690. default: true
  42691. },
  42692. ]
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42696. {
  42697. front: {
  42698. height: math.unit(18 + 7/12, "feet"),
  42699. name: "Front",
  42700. image: {
  42701. source: "./media/characters/rex/front.svg",
  42702. extra: 1941/1807,
  42703. bottom: 66/2007
  42704. }
  42705. },
  42706. back: {
  42707. height: math.unit(18 + 7/12, "feet"),
  42708. name: "Back",
  42709. image: {
  42710. source: "./media/characters/rex/back.svg",
  42711. extra: 1937/1822,
  42712. bottom: 42/1979
  42713. }
  42714. },
  42715. boot: {
  42716. height: math.unit(3.45, "feet"),
  42717. name: "Boot",
  42718. image: {
  42719. source: "./media/characters/rex/boot.svg"
  42720. }
  42721. },
  42722. paw: {
  42723. height: math.unit(4.17, "feet"),
  42724. name: "Paw",
  42725. image: {
  42726. source: "./media/characters/rex/paw.svg"
  42727. }
  42728. },
  42729. head: {
  42730. height: math.unit(6.728, "feet"),
  42731. name: "Head",
  42732. image: {
  42733. source: "./media/characters/rex/head.svg"
  42734. }
  42735. },
  42736. },
  42737. [
  42738. {
  42739. name: "Nano",
  42740. height: math.unit(18 + 7/12, "feet")
  42741. },
  42742. {
  42743. name: "Micro",
  42744. height: math.unit(1.5, "megameters")
  42745. },
  42746. {
  42747. name: "Normal",
  42748. height: math.unit(440, "megameters"),
  42749. default: true
  42750. },
  42751. {
  42752. name: "Macro",
  42753. height: math.unit(2.5, "gigameters")
  42754. },
  42755. {
  42756. name: "Gigamacro",
  42757. height: math.unit(2, "galaxies")
  42758. },
  42759. ]
  42760. ))
  42761. characterMakers.push(() => makeCharacter(
  42762. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42763. {
  42764. side: {
  42765. height: math.unit(32, "feet"),
  42766. weight: math.unit(250000, "lb"),
  42767. name: "Side",
  42768. image: {
  42769. source: "./media/characters/silverwing/side.svg",
  42770. extra: 1100/1019,
  42771. bottom: 204/1304
  42772. }
  42773. },
  42774. },
  42775. [
  42776. {
  42777. name: "Normal",
  42778. height: math.unit(32, "feet"),
  42779. default: true
  42780. },
  42781. ]
  42782. ))
  42783. characterMakers.push(() => makeCharacter(
  42784. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42785. {
  42786. front: {
  42787. height: math.unit(6 + 6/12, "feet"),
  42788. weight: math.unit(350, "lb"),
  42789. name: "Front",
  42790. image: {
  42791. source: "./media/characters/tristan-hawthorne/front.svg",
  42792. extra: 1159/1124,
  42793. bottom: 37/1196
  42794. },
  42795. form: "labrador",
  42796. default: true
  42797. },
  42798. skunkFront: {
  42799. height: math.unit(4 + 6/12, "feet"),
  42800. weight: math.unit(120, "lb"),
  42801. name: "Front",
  42802. image: {
  42803. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42804. extra: 1609/1551,
  42805. bottom: 169/1778
  42806. },
  42807. form: "skunk",
  42808. default: true
  42809. },
  42810. },
  42811. [
  42812. {
  42813. name: "Normal",
  42814. height: math.unit(6 + 6/12, "feet"),
  42815. form: "labrador",
  42816. default: true
  42817. },
  42818. {
  42819. name: "Normal",
  42820. height: math.unit(4 + 6/12, "feet"),
  42821. form: "skunk",
  42822. default: true
  42823. },
  42824. ],
  42825. {
  42826. "labrador": {
  42827. name: "Labrador",
  42828. default: true
  42829. },
  42830. "skunk": {
  42831. name: "Skunk"
  42832. }
  42833. }
  42834. ))
  42835. characterMakers.push(() => makeCharacter(
  42836. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42837. {
  42838. front: {
  42839. height: math.unit(5 + 11/12, "feet"),
  42840. weight: math.unit(190, "lb"),
  42841. name: "Front",
  42842. image: {
  42843. source: "./media/characters/mizu/front.svg",
  42844. extra: 1988/1788,
  42845. bottom: 14/2002
  42846. }
  42847. },
  42848. },
  42849. [
  42850. {
  42851. name: "Normal",
  42852. height: math.unit(5 + 11/12, "feet"),
  42853. default: true
  42854. },
  42855. ]
  42856. ))
  42857. characterMakers.push(() => makeCharacter(
  42858. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42859. {
  42860. front: {
  42861. height: math.unit(1.7, "feet"),
  42862. weight: math.unit(50, "lb"),
  42863. name: "Front",
  42864. image: {
  42865. source: "./media/characters/dechroma/front.svg",
  42866. extra: 1095/859,
  42867. bottom: 64/1159
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(1.7, "feet"),
  42875. default: true
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42881. {
  42882. side: {
  42883. height: math.unit(30, "feet"),
  42884. name: "Side",
  42885. image: {
  42886. source: "./media/characters/veluren-thanazel/side.svg",
  42887. extra: 1611/633,
  42888. bottom: 118/1729
  42889. }
  42890. },
  42891. front: {
  42892. height: math.unit(30, "feet"),
  42893. name: "Front",
  42894. image: {
  42895. source: "./media/characters/veluren-thanazel/front.svg",
  42896. extra: 1486/636,
  42897. bottom: 238/1724
  42898. }
  42899. },
  42900. head: {
  42901. height: math.unit(21.4, "feet"),
  42902. name: "Head",
  42903. image: {
  42904. source: "./media/characters/veluren-thanazel/head.svg"
  42905. }
  42906. },
  42907. genitals: {
  42908. height: math.unit(19.4, "feet"),
  42909. name: "Genitals",
  42910. image: {
  42911. source: "./media/characters/veluren-thanazel/genitals.svg"
  42912. }
  42913. },
  42914. },
  42915. [
  42916. {
  42917. name: "Social",
  42918. height: math.unit(6, "feet")
  42919. },
  42920. {
  42921. name: "Play",
  42922. height: math.unit(12, "feet")
  42923. },
  42924. {
  42925. name: "True",
  42926. height: math.unit(30, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(7 + 6/12, "feet"),
  42936. weight: math.unit(500, "kg"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/arcturas/front.svg",
  42940. extra: 1700/1500,
  42941. bottom: 145/1845
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Normal",
  42948. height: math.unit(7 + 6/12, "feet"),
  42949. default: true
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42955. {
  42956. side: {
  42957. height: math.unit(6, "feet"),
  42958. weight: math.unit(2, "tons"),
  42959. name: "Side",
  42960. image: {
  42961. source: "./media/characters/vitaen/side.svg",
  42962. extra: 1157/617,
  42963. bottom: 122/1279
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Normal",
  42970. height: math.unit(6, "feet"),
  42971. default: true
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42977. {
  42978. front: {
  42979. height: math.unit(19, "feet"),
  42980. name: "Front",
  42981. image: {
  42982. source: "./media/characters/fia-dreamweaver/front.svg",
  42983. extra: 1630/1504,
  42984. bottom: 25/1655
  42985. }
  42986. },
  42987. },
  42988. [
  42989. {
  42990. name: "Normal",
  42991. height: math.unit(19, "feet"),
  42992. default: true
  42993. },
  42994. ]
  42995. ))
  42996. characterMakers.push(() => makeCharacter(
  42997. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42998. {
  42999. front: {
  43000. height: math.unit(5 + 4/12, "feet"),
  43001. name: "Front",
  43002. image: {
  43003. source: "./media/characters/artan/front.svg",
  43004. extra: 1618/1535,
  43005. bottom: 46/1664
  43006. }
  43007. },
  43008. back: {
  43009. height: math.unit(5 + 4/12, "feet"),
  43010. name: "Back",
  43011. image: {
  43012. source: "./media/characters/artan/back.svg",
  43013. extra: 1618/1543,
  43014. bottom: 31/1649
  43015. }
  43016. },
  43017. },
  43018. [
  43019. {
  43020. name: "Normal",
  43021. height: math.unit(5 + 4/12, "feet"),
  43022. default: true
  43023. },
  43024. ]
  43025. ))
  43026. characterMakers.push(() => makeCharacter(
  43027. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43028. {
  43029. side: {
  43030. height: math.unit(182, "cm"),
  43031. weight: math.unit(1000, "lb"),
  43032. name: "Side",
  43033. image: {
  43034. source: "./media/characters/silver-dragon/side.svg",
  43035. extra: 710/287,
  43036. bottom: 88/798
  43037. }
  43038. },
  43039. },
  43040. [
  43041. {
  43042. name: "Normal",
  43043. height: math.unit(182, "cm"),
  43044. default: true
  43045. },
  43046. ]
  43047. ))
  43048. characterMakers.push(() => makeCharacter(
  43049. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43050. {
  43051. side: {
  43052. height: math.unit(6 + 6/12, "feet"),
  43053. weight: math.unit(1.5, "tons"),
  43054. name: "Side",
  43055. image: {
  43056. source: "./media/characters/zephyr/side.svg",
  43057. extra: 1433/586,
  43058. bottom: 109/1542
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Normal",
  43065. height: math.unit(6 + 6/12, "feet"),
  43066. default: true
  43067. },
  43068. ]
  43069. ))
  43070. characterMakers.push(() => makeCharacter(
  43071. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43072. {
  43073. side: {
  43074. height: math.unit(1, "feet"),
  43075. name: "Side",
  43076. image: {
  43077. source: "./media/characters/vixye/side.svg",
  43078. extra: 632/541,
  43079. bottom: 0/632
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Normal",
  43086. height: math.unit(1, "feet"),
  43087. default: true
  43088. },
  43089. {
  43090. name: "True",
  43091. height: math.unit(1e15, "multiverses")
  43092. },
  43093. ]
  43094. ))
  43095. characterMakers.push(() => makeCharacter(
  43096. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43097. {
  43098. front: {
  43099. height: math.unit(8 + 2/12, "feet"),
  43100. weight: math.unit(650, "lb"),
  43101. name: "Front",
  43102. image: {
  43103. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43104. extra: 1174/1137,
  43105. bottom: 82/1256
  43106. }
  43107. },
  43108. back: {
  43109. height: math.unit(8 + 2/12, "feet"),
  43110. weight: math.unit(650, "lb"),
  43111. name: "Back",
  43112. image: {
  43113. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43114. extra: 1204/1157,
  43115. bottom: 46/1250
  43116. }
  43117. },
  43118. },
  43119. [
  43120. {
  43121. name: "Wildform",
  43122. height: math.unit(8 + 2/12, "feet"),
  43123. default: true
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(18, "feet"),
  43132. name: "Front",
  43133. image: {
  43134. source: "./media/characters/cyphin/front.svg",
  43135. extra: 970/886,
  43136. bottom: 42/1012
  43137. }
  43138. },
  43139. back: {
  43140. height: math.unit(18, "feet"),
  43141. name: "Back",
  43142. image: {
  43143. source: "./media/characters/cyphin/back.svg",
  43144. extra: 1009/894,
  43145. bottom: 24/1033
  43146. }
  43147. },
  43148. head: {
  43149. height: math.unit(5.05, "feet"),
  43150. name: "Head",
  43151. image: {
  43152. source: "./media/characters/cyphin/head.svg"
  43153. }
  43154. },
  43155. tailbud: {
  43156. height: math.unit(5, "feet"),
  43157. name: "Tailbud",
  43158. image: {
  43159. source: "./media/characters/cyphin/tailbud.svg"
  43160. }
  43161. },
  43162. },
  43163. [
  43164. ]
  43165. ))
  43166. characterMakers.push(() => makeCharacter(
  43167. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43168. {
  43169. side: {
  43170. height: math.unit(10, "feet"),
  43171. weight: math.unit(6, "tons"),
  43172. name: "Side",
  43173. image: {
  43174. source: "./media/characters/raijin/side.svg",
  43175. extra: 1529/613,
  43176. bottom: 337/1866
  43177. }
  43178. },
  43179. },
  43180. [
  43181. {
  43182. name: "Normal",
  43183. height: math.unit(10, "feet"),
  43184. default: true
  43185. },
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43190. {
  43191. side: {
  43192. height: math.unit(9, "feet"),
  43193. name: "Side",
  43194. image: {
  43195. source: "./media/characters/nilghais/side.svg",
  43196. extra: 1047/744,
  43197. bottom: 91/1138
  43198. }
  43199. },
  43200. head: {
  43201. height: math.unit(3.14, "feet"),
  43202. name: "Head",
  43203. image: {
  43204. source: "./media/characters/nilghais/head.svg"
  43205. }
  43206. },
  43207. mouth: {
  43208. height: math.unit(4.6, "feet"),
  43209. name: "Mouth",
  43210. image: {
  43211. source: "./media/characters/nilghais/mouth.svg"
  43212. }
  43213. },
  43214. wings: {
  43215. height: math.unit(24, "feet"),
  43216. name: "Wings",
  43217. image: {
  43218. source: "./media/characters/nilghais/wings.svg"
  43219. }
  43220. },
  43221. ass: {
  43222. height: math.unit(6.12, "feet"),
  43223. name: "Ass",
  43224. image: {
  43225. source: "./media/characters/nilghais/ass.svg"
  43226. }
  43227. },
  43228. },
  43229. [
  43230. {
  43231. name: "Normal",
  43232. height: math.unit(9, "feet"),
  43233. default: true
  43234. },
  43235. ]
  43236. ))
  43237. characterMakers.push(() => makeCharacter(
  43238. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43239. {
  43240. regular: {
  43241. height: math.unit(16 + 2/12, "feet"),
  43242. weight: math.unit(2300, "lb"),
  43243. name: "Regular",
  43244. image: {
  43245. source: "./media/characters/zolgar/regular.svg",
  43246. extra: 1246/1004,
  43247. bottom: 124/1370
  43248. }
  43249. },
  43250. boxers: {
  43251. height: math.unit(16 + 2/12, "feet"),
  43252. weight: math.unit(2300, "lb"),
  43253. name: "Boxers",
  43254. image: {
  43255. source: "./media/characters/zolgar/boxers.svg",
  43256. extra: 1246/1004,
  43257. bottom: 124/1370
  43258. }
  43259. },
  43260. armored: {
  43261. height: math.unit(16 + 2/12, "feet"),
  43262. weight: math.unit(2300, "lb"),
  43263. name: "Armored",
  43264. image: {
  43265. source: "./media/characters/zolgar/armored.svg",
  43266. extra: 1246/1004,
  43267. bottom: 124/1370
  43268. }
  43269. },
  43270. goth: {
  43271. height: math.unit(16 + 2/12, "feet"),
  43272. weight: math.unit(2300, "lb"),
  43273. name: "Goth",
  43274. image: {
  43275. source: "./media/characters/zolgar/goth.svg",
  43276. extra: 1246/1004,
  43277. bottom: 124/1370
  43278. }
  43279. },
  43280. },
  43281. [
  43282. {
  43283. name: "Shrunken Down",
  43284. height: math.unit(9 + 2/12, "feet")
  43285. },
  43286. {
  43287. name: "Normal",
  43288. height: math.unit(16 + 2/12, "feet"),
  43289. default: true
  43290. },
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43295. {
  43296. front: {
  43297. height: math.unit(6, "feet"),
  43298. weight: math.unit(168, "lb"),
  43299. name: "Front",
  43300. image: {
  43301. source: "./media/characters/luca/front.svg",
  43302. extra: 841/667,
  43303. bottom: 102/943
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(6, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43317. {
  43318. side: {
  43319. height: math.unit(7 + 3/12, "feet"),
  43320. weight: math.unit(312, "lb"),
  43321. name: "Side",
  43322. image: {
  43323. source: "./media/characters/zezo/side.svg",
  43324. extra: 1192/1067,
  43325. bottom: 63/1255
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(7 + 3/12, "feet"),
  43333. default: true
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43339. {
  43340. front: {
  43341. height: math.unit(5 + 5/12, "feet"),
  43342. weight: math.unit(170, "lb"),
  43343. name: "Front",
  43344. image: {
  43345. source: "./media/characters/mayso/front.svg",
  43346. extra: 1215/1108,
  43347. bottom: 16/1231
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Normal",
  43354. height: math.unit(5 + 5/12, "feet"),
  43355. default: true
  43356. },
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43361. {
  43362. front: {
  43363. height: math.unit(4 + 3/12, "feet"),
  43364. weight: math.unit(80, "lb"),
  43365. name: "Front",
  43366. image: {
  43367. source: "./media/characters/hess/front.svg",
  43368. extra: 1200/1123,
  43369. bottom: 16/1216
  43370. }
  43371. },
  43372. },
  43373. [
  43374. {
  43375. name: "Normal",
  43376. height: math.unit(4 + 3/12, "feet"),
  43377. default: true
  43378. },
  43379. ]
  43380. ))
  43381. characterMakers.push(() => makeCharacter(
  43382. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43383. {
  43384. front: {
  43385. height: math.unit(1.9, "meters"),
  43386. name: "Front",
  43387. image: {
  43388. source: "./media/characters/ashgar/front.svg",
  43389. extra: 1177/1146,
  43390. bottom: 99/1276
  43391. }
  43392. },
  43393. back: {
  43394. height: math.unit(1.9, "meters"),
  43395. name: "Back",
  43396. image: {
  43397. source: "./media/characters/ashgar/back.svg",
  43398. extra: 1201/1183,
  43399. bottom: 53/1254
  43400. }
  43401. },
  43402. feral: {
  43403. height: math.unit(1.4, "meters"),
  43404. name: "Feral",
  43405. image: {
  43406. source: "./media/characters/ashgar/feral.svg",
  43407. extra: 370/345,
  43408. bottom: 45/415
  43409. }
  43410. },
  43411. },
  43412. [
  43413. {
  43414. name: "Normal",
  43415. height: math.unit(1.9, "meters"),
  43416. default: true
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43422. {
  43423. regular: {
  43424. height: math.unit(6, "feet"),
  43425. weight: math.unit(220, "lb"),
  43426. name: "Regular",
  43427. image: {
  43428. source: "./media/characters/phillip/regular.svg",
  43429. extra: 1373/1277,
  43430. bottom: 75/1448
  43431. }
  43432. },
  43433. dressed: {
  43434. height: math.unit(6, "feet"),
  43435. weight: math.unit(220, "lb"),
  43436. name: "Dressed",
  43437. image: {
  43438. source: "./media/characters/phillip/dressed.svg",
  43439. extra: 1373/1277,
  43440. bottom: 75/1448
  43441. }
  43442. },
  43443. paw: {
  43444. height: math.unit(1.44, "feet"),
  43445. name: "Paw",
  43446. image: {
  43447. source: "./media/characters/phillip/paw.svg"
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Normal",
  43454. height: math.unit(6, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43461. {
  43462. side: {
  43463. height: math.unit(42, "feet"),
  43464. name: "Side",
  43465. image: {
  43466. source: "./media/characters/uvula/side.svg",
  43467. extra: 683/586,
  43468. bottom: 60/743
  43469. }
  43470. },
  43471. front: {
  43472. height: math.unit(42, "feet"),
  43473. name: "Front",
  43474. image: {
  43475. source: "./media/characters/uvula/front.svg",
  43476. extra: 705/613,
  43477. bottom: 54/759
  43478. }
  43479. },
  43480. maw: {
  43481. height: math.unit(23.5, "feet"),
  43482. name: "Maw",
  43483. image: {
  43484. source: "./media/characters/uvula/maw.svg"
  43485. }
  43486. },
  43487. },
  43488. [
  43489. {
  43490. name: "Original Size",
  43491. height: math.unit(14, "inches")
  43492. },
  43493. {
  43494. name: "Human Size",
  43495. height: math.unit(6, "feet")
  43496. },
  43497. {
  43498. name: "Big",
  43499. height: math.unit(42, "feet"),
  43500. default: true
  43501. },
  43502. {
  43503. name: "Bigger",
  43504. height: math.unit(100, "feet")
  43505. },
  43506. ]
  43507. ))
  43508. characterMakers.push(() => makeCharacter(
  43509. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43510. {
  43511. front: {
  43512. height: math.unit(5 + 11/12, "feet"),
  43513. name: "Front",
  43514. image: {
  43515. source: "./media/characters/lannah/front.svg",
  43516. extra: 1208/1113,
  43517. bottom: 97/1305
  43518. }
  43519. },
  43520. },
  43521. [
  43522. {
  43523. name: "Normal",
  43524. height: math.unit(5 + 11/12, "feet"),
  43525. default: true
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43531. {
  43532. front: {
  43533. height: math.unit(6 + 3/12, "feet"),
  43534. weight: math.unit(3.5, "tons"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/emberflame/front.svg",
  43538. extra: 1198/672,
  43539. bottom: 82/1280
  43540. }
  43541. },
  43542. side: {
  43543. height: math.unit(6 + 3/12, "feet"),
  43544. weight: math.unit(3.5, "tons"),
  43545. name: "Side",
  43546. image: {
  43547. source: "./media/characters/emberflame/side.svg",
  43548. extra: 938/527,
  43549. bottom: 56/994
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(6 + 3/12, "feet"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43563. {
  43564. side: {
  43565. height: math.unit(17.5, "feet"),
  43566. weight: math.unit(35, "tons"),
  43567. name: "Side",
  43568. image: {
  43569. source: "./media/characters/sophie-ambrose/side.svg",
  43570. extra: 1573/1242,
  43571. bottom: 71/1644
  43572. }
  43573. },
  43574. maw: {
  43575. height: math.unit(7.4, "feet"),
  43576. name: "Maw",
  43577. image: {
  43578. source: "./media/characters/sophie-ambrose/maw.svg"
  43579. }
  43580. },
  43581. },
  43582. [
  43583. {
  43584. name: "Normal",
  43585. height: math.unit(17.5, "feet"),
  43586. default: true
  43587. },
  43588. ]
  43589. ))
  43590. characterMakers.push(() => makeCharacter(
  43591. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43592. {
  43593. front: {
  43594. height: math.unit(280, "feet"),
  43595. weight: math.unit(550, "tons"),
  43596. name: "Front",
  43597. image: {
  43598. source: "./media/characters/king-mugi/front.svg",
  43599. extra: 1102/947,
  43600. bottom: 104/1206
  43601. }
  43602. },
  43603. },
  43604. [
  43605. {
  43606. name: "King Mugi",
  43607. height: math.unit(280, "feet"),
  43608. default: true
  43609. },
  43610. ]
  43611. ))
  43612. characterMakers.push(() => makeCharacter(
  43613. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43614. {
  43615. front: {
  43616. height: math.unit(64, "meters"),
  43617. name: "Front",
  43618. image: {
  43619. source: "./media/characters/nova-fox/front.svg",
  43620. extra: 1310/1246,
  43621. bottom: 65/1375
  43622. }
  43623. },
  43624. },
  43625. [
  43626. {
  43627. name: "Macro",
  43628. height: math.unit(64, "meters"),
  43629. default: true
  43630. },
  43631. ]
  43632. ))
  43633. characterMakers.push(() => makeCharacter(
  43634. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43635. {
  43636. front: {
  43637. height: math.unit(6 + 3/12, "feet"),
  43638. weight: math.unit(170, "lb"),
  43639. name: "Front",
  43640. image: {
  43641. source: "./media/characters/sam-bat/front.svg",
  43642. extra: 1601/1411,
  43643. bottom: 125/1726
  43644. }
  43645. },
  43646. back: {
  43647. height: math.unit(6 + 3/12, "feet"),
  43648. weight: math.unit(170, "lb"),
  43649. name: "Back",
  43650. image: {
  43651. source: "./media/characters/sam-bat/back.svg",
  43652. extra: 1577/1405,
  43653. bottom: 58/1635
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Normal",
  43660. height: math.unit(6 + 3/12, "feet"),
  43661. default: true
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43667. {
  43668. front: {
  43669. height: math.unit(59, "feet"),
  43670. weight: math.unit(40000, "lb"),
  43671. name: "Front",
  43672. image: {
  43673. source: "./media/characters/inari/front.svg",
  43674. extra: 1884/1350,
  43675. bottom: 95/1979
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Gigantamax",
  43682. height: math.unit(59, "feet"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43689. {
  43690. front: {
  43691. height: math.unit(5 + 8/12, "feet"),
  43692. name: "Front",
  43693. image: {
  43694. source: "./media/characters/elizabeth/front.svg",
  43695. extra: 1395/1298,
  43696. bottom: 54/1449
  43697. }
  43698. },
  43699. mouth: {
  43700. height: math.unit(1.97, "feet"),
  43701. name: "Mouth",
  43702. image: {
  43703. source: "./media/characters/elizabeth/mouth.svg"
  43704. }
  43705. },
  43706. foot: {
  43707. height: math.unit(1.17, "feet"),
  43708. name: "Foot",
  43709. image: {
  43710. source: "./media/characters/elizabeth/foot.svg"
  43711. }
  43712. },
  43713. },
  43714. [
  43715. {
  43716. name: "Normal",
  43717. height: math.unit(5 + 8/12, "feet"),
  43718. default: true
  43719. },
  43720. {
  43721. name: "Minimacro",
  43722. height: math.unit(18, "feet")
  43723. },
  43724. {
  43725. name: "Macro",
  43726. height: math.unit(180, "feet")
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(5 + 2/12, "feet"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/october-gossamer/front.svg",
  43738. extra: 505/454,
  43739. bottom: 7/512
  43740. }
  43741. },
  43742. back: {
  43743. height: math.unit(5 + 2/12, "feet"),
  43744. name: "Back",
  43745. image: {
  43746. source: "./media/characters/october-gossamer/back.svg",
  43747. extra: 501/454,
  43748. bottom: 11/512
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(5 + 2/12, "feet"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(5, "feet"),
  43765. name: "Front",
  43766. image: {
  43767. source: "./media/characters/epiglottis/front.svg",
  43768. extra: 923/849,
  43769. bottom: 17/940
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Original Size",
  43776. height: math.unit(10, "inches")
  43777. },
  43778. {
  43779. name: "Human Size",
  43780. height: math.unit(5, "feet"),
  43781. default: true
  43782. },
  43783. {
  43784. name: "Big",
  43785. height: math.unit(25, "feet")
  43786. },
  43787. {
  43788. name: "Bigger",
  43789. height: math.unit(50, "feet")
  43790. },
  43791. {
  43792. name: "oh lawd",
  43793. height: math.unit(75, "feet")
  43794. },
  43795. ]
  43796. ))
  43797. characterMakers.push(() => makeCharacter(
  43798. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43799. {
  43800. front: {
  43801. height: math.unit(2 + 4/12, "feet"),
  43802. weight: math.unit(60, "lb"),
  43803. name: "Front",
  43804. image: {
  43805. source: "./media/characters/lerm/front.svg",
  43806. extra: 796/790,
  43807. bottom: 79/875
  43808. }
  43809. },
  43810. },
  43811. [
  43812. {
  43813. name: "Normal",
  43814. height: math.unit(2 + 4/12, "feet"),
  43815. default: true
  43816. },
  43817. ]
  43818. ))
  43819. characterMakers.push(() => makeCharacter(
  43820. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43821. {
  43822. front: {
  43823. height: math.unit(5.5, "feet"),
  43824. weight: math.unit(130, "lb"),
  43825. name: "Front",
  43826. image: {
  43827. source: "./media/characters/xena-nebadon/front.svg",
  43828. extra: 1828/1730,
  43829. bottom: 79/1907
  43830. }
  43831. },
  43832. },
  43833. [
  43834. {
  43835. name: "Tiny Puppy",
  43836. height: math.unit(3, "inches")
  43837. },
  43838. {
  43839. name: "Normal",
  43840. height: math.unit(5.5, "feet"),
  43841. default: true
  43842. },
  43843. {
  43844. name: "Lotta Lady",
  43845. height: math.unit(12, "feet")
  43846. },
  43847. {
  43848. name: "Pretty Big",
  43849. height: math.unit(100, "feet")
  43850. },
  43851. {
  43852. name: "Big",
  43853. height: math.unit(500, "feet")
  43854. },
  43855. {
  43856. name: "Skyscraper Toys",
  43857. height: math.unit(2500, "feet")
  43858. },
  43859. {
  43860. name: "Plane Catcher",
  43861. height: math.unit(8, "miles")
  43862. },
  43863. {
  43864. name: "Planet Toys",
  43865. height: math.unit(15, "earths")
  43866. },
  43867. {
  43868. name: "Stardust",
  43869. height: math.unit(0.25, "galaxies")
  43870. },
  43871. {
  43872. name: "Snacks",
  43873. height: math.unit(70, "universes")
  43874. },
  43875. ]
  43876. ))
  43877. characterMakers.push(() => makeCharacter(
  43878. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43879. {
  43880. front: {
  43881. height: math.unit(1.6, "meters"),
  43882. weight: math.unit(60, "kg"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/bounty/front.svg",
  43886. extra: 1426/1308,
  43887. bottom: 15/1441
  43888. }
  43889. },
  43890. back: {
  43891. height: math.unit(1.6, "meters"),
  43892. weight: math.unit(60, "kg"),
  43893. name: "Back",
  43894. image: {
  43895. source: "./media/characters/bounty/back.svg",
  43896. extra: 1417/1307,
  43897. bottom: 8/1425
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Normal",
  43904. height: math.unit(1.6, "meters"),
  43905. default: true
  43906. },
  43907. {
  43908. name: "Macro",
  43909. height: math.unit(300, "meters")
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43915. {
  43916. front: {
  43917. height: math.unit(2 + 8/12, "feet"),
  43918. weight: math.unit(15, "lb"),
  43919. name: "Front",
  43920. image: {
  43921. source: "./media/characters/mochi/front.svg",
  43922. extra: 1022/852,
  43923. bottom: 435/1457
  43924. }
  43925. },
  43926. back: {
  43927. height: math.unit(2 + 8/12, "feet"),
  43928. weight: math.unit(15, "lb"),
  43929. name: "Back",
  43930. image: {
  43931. source: "./media/characters/mochi/back.svg",
  43932. extra: 1335/1119,
  43933. bottom: 39/1374
  43934. }
  43935. },
  43936. bird: {
  43937. height: math.unit(2 + 8/12, "feet"),
  43938. weight: math.unit(15, "lb"),
  43939. name: "Bird",
  43940. image: {
  43941. source: "./media/characters/mochi/bird.svg",
  43942. extra: 1251/1113,
  43943. bottom: 178/1429
  43944. }
  43945. },
  43946. kaiju: {
  43947. height: math.unit(154, "feet"),
  43948. weight: math.unit(1e7, "lb"),
  43949. name: "Kaiju",
  43950. image: {
  43951. source: "./media/characters/mochi/kaiju.svg",
  43952. extra: 460/324,
  43953. bottom: 40/500
  43954. }
  43955. },
  43956. head: {
  43957. height: math.unit(1.21, "feet"),
  43958. name: "Head",
  43959. image: {
  43960. source: "./media/characters/mochi/head.svg"
  43961. }
  43962. },
  43963. alternateTail: {
  43964. height: math.unit(2 + 8/12, "feet"),
  43965. weight: math.unit(45, "lb"),
  43966. name: "Alternate Tail",
  43967. image: {
  43968. source: "./media/characters/mochi/alternate-tail.svg",
  43969. extra: 139/76,
  43970. bottom: 45/184
  43971. }
  43972. },
  43973. },
  43974. [
  43975. {
  43976. name: "Micro",
  43977. height: math.unit(2, "inches")
  43978. },
  43979. {
  43980. name: "Normal",
  43981. height: math.unit(2 + 8/12, "feet"),
  43982. default: true
  43983. },
  43984. {
  43985. name: "Macro",
  43986. height: math.unit(106, "feet")
  43987. },
  43988. ]
  43989. ))
  43990. characterMakers.push(() => makeCharacter(
  43991. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43992. {
  43993. front: {
  43994. height: math.unit(5.67, "feet"),
  43995. weight: math.unit(135, "lb"),
  43996. name: "Front",
  43997. image: {
  43998. source: "./media/characters/sarel/front.svg",
  43999. extra: 865/788,
  44000. bottom: 97/962
  44001. }
  44002. },
  44003. back: {
  44004. height: math.unit(5.67, "feet"),
  44005. weight: math.unit(135, "lb"),
  44006. name: "Back",
  44007. image: {
  44008. source: "./media/characters/sarel/back.svg",
  44009. extra: 857/777,
  44010. bottom: 32/889
  44011. }
  44012. },
  44013. chozoan: {
  44014. height: math.unit(5.67, "feet"),
  44015. weight: math.unit(135, "lb"),
  44016. name: "Chozoan",
  44017. image: {
  44018. source: "./media/characters/sarel/chozoan.svg",
  44019. extra: 865/788,
  44020. bottom: 97/962
  44021. }
  44022. },
  44023. current: {
  44024. height: math.unit(5.67, "feet"),
  44025. weight: math.unit(135, "lb"),
  44026. name: "Current",
  44027. image: {
  44028. source: "./media/characters/sarel/current.svg",
  44029. extra: 865/788,
  44030. bottom: 97/962
  44031. }
  44032. },
  44033. head: {
  44034. height: math.unit(1.77, "feet"),
  44035. name: "Head",
  44036. image: {
  44037. source: "./media/characters/sarel/head.svg"
  44038. }
  44039. },
  44040. claws: {
  44041. height: math.unit(1.8, "feet"),
  44042. name: "Claws",
  44043. image: {
  44044. source: "./media/characters/sarel/claws.svg"
  44045. }
  44046. },
  44047. clawsAlt: {
  44048. height: math.unit(1.8, "feet"),
  44049. name: "Claws-alt",
  44050. image: {
  44051. source: "./media/characters/sarel/claws-alt.svg"
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Normal",
  44058. height: math.unit(5.67, "feet"),
  44059. default: true
  44060. },
  44061. ]
  44062. ))
  44063. characterMakers.push(() => makeCharacter(
  44064. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44065. {
  44066. front: {
  44067. height: math.unit(5500, "feet"),
  44068. name: "Front",
  44069. image: {
  44070. source: "./media/characters/alyonia/front.svg",
  44071. extra: 1200/1135,
  44072. bottom: 29/1229
  44073. }
  44074. },
  44075. back: {
  44076. height: math.unit(5500, "feet"),
  44077. name: "Back",
  44078. image: {
  44079. source: "./media/characters/alyonia/back.svg",
  44080. extra: 1205/1138,
  44081. bottom: 10/1215
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Small",
  44088. height: math.unit(10, "feet")
  44089. },
  44090. {
  44091. name: "Macro",
  44092. height: math.unit(500, "feet")
  44093. },
  44094. {
  44095. name: "Mega Macro",
  44096. height: math.unit(5500, "feet"),
  44097. default: true
  44098. },
  44099. {
  44100. name: "Mega Macro+",
  44101. height: math.unit(500000, "feet")
  44102. },
  44103. {
  44104. name: "Giga Macro",
  44105. height: math.unit(3000, "miles")
  44106. },
  44107. {
  44108. name: "Tera Macro",
  44109. height: math.unit(2.8e6, "miles")
  44110. },
  44111. {
  44112. name: "Galactic",
  44113. height: math.unit(120000, "lightyears")
  44114. },
  44115. ]
  44116. ))
  44117. characterMakers.push(() => makeCharacter(
  44118. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44119. {
  44120. werewolf: {
  44121. height: math.unit(8, "feet"),
  44122. weight: math.unit(425, "lb"),
  44123. name: "Werewolf",
  44124. image: {
  44125. source: "./media/characters/autumn/werewolf.svg",
  44126. extra: 2154/2031,
  44127. bottom: 160/2314
  44128. }
  44129. },
  44130. human: {
  44131. height: math.unit(5 + 8/12, "feet"),
  44132. weight: math.unit(150, "lb"),
  44133. name: "Human",
  44134. image: {
  44135. source: "./media/characters/autumn/human.svg",
  44136. extra: 1200/1149,
  44137. bottom: 30/1230
  44138. }
  44139. },
  44140. },
  44141. [
  44142. {
  44143. name: "Normal",
  44144. height: math.unit(8, "feet"),
  44145. default: true
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44151. {
  44152. front: {
  44153. height: math.unit(8 + 5/12, "feet"),
  44154. weight: math.unit(825, "lb"),
  44155. name: "Front",
  44156. image: {
  44157. source: "./media/characters/cobalt-charizard/front.svg",
  44158. extra: 1268/1155,
  44159. bottom: 122/1390
  44160. }
  44161. },
  44162. side: {
  44163. height: math.unit(8 + 5/12, "feet"),
  44164. weight: math.unit(825, "lb"),
  44165. name: "Side",
  44166. image: {
  44167. source: "./media/characters/cobalt-charizard/side.svg",
  44168. extra: 1348/1257,
  44169. bottom: 58/1406
  44170. }
  44171. },
  44172. gMax: {
  44173. height: math.unit(134 + 11/12, "feet"),
  44174. name: "G-Max",
  44175. image: {
  44176. source: "./media/characters/cobalt-charizard/g-max.svg",
  44177. extra: 1835/1541,
  44178. bottom: 151/1986
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(8 + 5/12, "feet"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44192. {
  44193. front: {
  44194. height: math.unit(6 + 3/12, "feet"),
  44195. weight: math.unit(210, "lb"),
  44196. name: "Front",
  44197. image: {
  44198. source: "./media/characters/stella/front.svg",
  44199. extra: 3549/3335,
  44200. bottom: 51/3600
  44201. }
  44202. },
  44203. },
  44204. [
  44205. {
  44206. name: "Normal",
  44207. height: math.unit(6 + 3/12, "feet"),
  44208. default: true
  44209. },
  44210. ]
  44211. ))
  44212. characterMakers.push(() => makeCharacter(
  44213. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44214. {
  44215. front: {
  44216. height: math.unit(5, "feet"),
  44217. weight: math.unit(90, "lb"),
  44218. name: "Front",
  44219. image: {
  44220. source: "./media/characters/riley-bishop/front.svg",
  44221. extra: 1450/1428,
  44222. bottom: 152/1602
  44223. }
  44224. },
  44225. },
  44226. [
  44227. {
  44228. name: "Normal",
  44229. height: math.unit(5, "feet"),
  44230. default: true
  44231. },
  44232. ]
  44233. ))
  44234. characterMakers.push(() => makeCharacter(
  44235. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44236. {
  44237. side: {
  44238. height: math.unit(8 + 2/12, "feet"),
  44239. weight: math.unit(500, "kg"),
  44240. name: "Side",
  44241. image: {
  44242. source: "./media/characters/theo-arcanine/side.svg",
  44243. extra: 1342/1074,
  44244. bottom: 111/1453
  44245. }
  44246. },
  44247. },
  44248. [
  44249. {
  44250. name: "Normal",
  44251. height: math.unit(8 + 2/12, "feet"),
  44252. default: true
  44253. },
  44254. ]
  44255. ))
  44256. characterMakers.push(() => makeCharacter(
  44257. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44258. {
  44259. front: {
  44260. height: math.unit(4, "feet"),
  44261. name: "Front",
  44262. image: {
  44263. source: "./media/characters/kali/front.svg",
  44264. extra: 1921/1357,
  44265. bottom: 70/1991
  44266. }
  44267. },
  44268. },
  44269. [
  44270. {
  44271. name: "Normal",
  44272. height: math.unit(4, "feet"),
  44273. default: true
  44274. },
  44275. {
  44276. name: "Macro",
  44277. height: math.unit(32, "meters")
  44278. },
  44279. {
  44280. name: "Macro+",
  44281. height: math.unit(150, "meters")
  44282. },
  44283. {
  44284. name: "Megamacro",
  44285. height: math.unit(7500, "meters")
  44286. },
  44287. {
  44288. name: "Megamacro+",
  44289. height: math.unit(80, "kilometers")
  44290. },
  44291. ]
  44292. ))
  44293. characterMakers.push(() => makeCharacter(
  44294. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44295. {
  44296. side: {
  44297. height: math.unit(5 + 11/12, "feet"),
  44298. weight: math.unit(236, "lb"),
  44299. name: "Side",
  44300. image: {
  44301. source: "./media/characters/gapp/side.svg",
  44302. extra: 775/340,
  44303. bottom: 58/833
  44304. }
  44305. },
  44306. mouth: {
  44307. height: math.unit(2.98, "feet"),
  44308. name: "Mouth",
  44309. image: {
  44310. source: "./media/characters/gapp/mouth.svg"
  44311. }
  44312. },
  44313. },
  44314. [
  44315. {
  44316. name: "Normal",
  44317. height: math.unit(5 + 1/12, "feet"),
  44318. default: true
  44319. },
  44320. ]
  44321. ))
  44322. characterMakers.push(() => makeCharacter(
  44323. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44324. {
  44325. front: {
  44326. height: math.unit(6, "feet"),
  44327. name: "Front",
  44328. image: {
  44329. source: "./media/characters/persephone/front.svg",
  44330. extra: 1895/1717,
  44331. bottom: 96/1991
  44332. }
  44333. },
  44334. back: {
  44335. height: math.unit(6, "feet"),
  44336. name: "Back",
  44337. image: {
  44338. source: "./media/characters/persephone/back.svg",
  44339. extra: 1868/1679,
  44340. bottom: 26/1894
  44341. }
  44342. },
  44343. casual: {
  44344. height: math.unit(6, "feet"),
  44345. name: "Casual",
  44346. image: {
  44347. source: "./media/characters/persephone/casual.svg",
  44348. extra: 1713/1541,
  44349. bottom: 76/1789
  44350. }
  44351. },
  44352. },
  44353. [
  44354. {
  44355. name: "Human Size",
  44356. height: math.unit(6, "feet")
  44357. },
  44358. {
  44359. name: "Big Steppy",
  44360. height: math.unit(600, "meters"),
  44361. default: true
  44362. },
  44363. {
  44364. name: "Galaxy Brain",
  44365. height: math.unit(1, "zettameter")
  44366. },
  44367. ]
  44368. ))
  44369. characterMakers.push(() => makeCharacter(
  44370. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44371. {
  44372. front: {
  44373. height: math.unit(1.85, "meters"),
  44374. name: "Front",
  44375. image: {
  44376. source: "./media/characters/riley-foxthing/front.svg",
  44377. extra: 1495/1354,
  44378. bottom: 122/1617
  44379. }
  44380. },
  44381. frontAlt: {
  44382. height: math.unit(1.85, "meters"),
  44383. name: "Front (Alt)",
  44384. image: {
  44385. source: "./media/characters/riley-foxthing/front-alt.svg",
  44386. extra: 1572/1389,
  44387. bottom: 116/1688
  44388. }
  44389. },
  44390. },
  44391. [
  44392. {
  44393. name: "Normal Sized",
  44394. height: math.unit(1.85, "meters"),
  44395. default: true
  44396. },
  44397. {
  44398. name: "Quite Sizable",
  44399. height: math.unit(5, "meters")
  44400. },
  44401. {
  44402. name: "Rather Large",
  44403. height: math.unit(20, "meters")
  44404. },
  44405. {
  44406. name: "Macro",
  44407. height: math.unit(450, "meters")
  44408. },
  44409. {
  44410. name: "Giga",
  44411. height: math.unit(5, "km")
  44412. },
  44413. ]
  44414. ))
  44415. characterMakers.push(() => makeCharacter(
  44416. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44417. {
  44418. front: {
  44419. height: math.unit(6, "feet"),
  44420. weight: math.unit(200, "lb"),
  44421. name: "Front",
  44422. image: {
  44423. source: "./media/characters/blizzard/front.svg",
  44424. extra: 1136/990,
  44425. bottom: 136/1272
  44426. }
  44427. },
  44428. back: {
  44429. height: math.unit(6, "feet"),
  44430. weight: math.unit(200, "lb"),
  44431. name: "Back",
  44432. image: {
  44433. source: "./media/characters/blizzard/back.svg",
  44434. extra: 1175/1034,
  44435. bottom: 97/1272
  44436. }
  44437. },
  44438. sitting: {
  44439. height: math.unit(3.725, "feet"),
  44440. weight: math.unit(200, "lb"),
  44441. name: "Sitting",
  44442. image: {
  44443. source: "./media/characters/blizzard/sitting.svg",
  44444. extra: 581/485,
  44445. bottom: 90/671
  44446. }
  44447. },
  44448. frontWizard: {
  44449. height: math.unit(7.9, "feet"),
  44450. weight: math.unit(200, "lb"),
  44451. name: "Front (Wizard)",
  44452. image: {
  44453. source: "./media/characters/blizzard/front-wizard.svg"
  44454. }
  44455. },
  44456. backWizard: {
  44457. height: math.unit(7.9, "feet"),
  44458. weight: math.unit(200, "lb"),
  44459. name: "Back (Wizard)",
  44460. image: {
  44461. source: "./media/characters/blizzard/back-wizard.svg"
  44462. }
  44463. },
  44464. frontNsfw: {
  44465. height: math.unit(6, "feet"),
  44466. weight: math.unit(200, "lb"),
  44467. name: "Front (NSFW)",
  44468. image: {
  44469. source: "./media/characters/blizzard/front-nsfw.svg",
  44470. extra: 1136/990,
  44471. bottom: 136/1272
  44472. }
  44473. },
  44474. backNsfw: {
  44475. height: math.unit(6, "feet"),
  44476. weight: math.unit(200, "lb"),
  44477. name: "Back (NSFW)",
  44478. image: {
  44479. source: "./media/characters/blizzard/back-nsfw.svg",
  44480. extra: 1175/1034,
  44481. bottom: 97/1272
  44482. }
  44483. },
  44484. sittingNsfw: {
  44485. height: math.unit(3.725, "feet"),
  44486. weight: math.unit(200, "lb"),
  44487. name: "Sitting (NSFW)",
  44488. image: {
  44489. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44490. extra: 581/485,
  44491. bottom: 90/671
  44492. }
  44493. },
  44494. wizardFrontNsfw: {
  44495. height: math.unit(7.9, "feet"),
  44496. weight: math.unit(200, "lb"),
  44497. name: "Wizard (Front, NSFW)",
  44498. image: {
  44499. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44500. }
  44501. },
  44502. },
  44503. [
  44504. {
  44505. name: "Normal",
  44506. height: math.unit(6, "feet"),
  44507. default: true
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(5 + 2/12, "feet"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/lumi/front.svg",
  44519. extra: 1328/1268,
  44520. bottom: 103/1431
  44521. }
  44522. },
  44523. back: {
  44524. height: math.unit(5 + 2/12, "feet"),
  44525. name: "Back",
  44526. image: {
  44527. source: "./media/characters/lumi/back.svg",
  44528. extra: 1381/1327,
  44529. bottom: 43/1424
  44530. }
  44531. },
  44532. },
  44533. [
  44534. {
  44535. name: "Normal",
  44536. height: math.unit(5 + 2/12, "feet"),
  44537. default: true
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(5 + 9/12, "feet"),
  44546. name: "Front",
  44547. image: {
  44548. source: "./media/characters/aliya-cotton/front.svg",
  44549. extra: 577/564,
  44550. bottom: 29/606
  44551. }
  44552. },
  44553. },
  44554. [
  44555. {
  44556. name: "Normal",
  44557. height: math.unit(5 + 9/12, "feet"),
  44558. default: true
  44559. },
  44560. ]
  44561. ))
  44562. characterMakers.push(() => makeCharacter(
  44563. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44564. {
  44565. front: {
  44566. height: math.unit(2.7, "meters"),
  44567. weight: math.unit(25000, "lb"),
  44568. name: "Front",
  44569. image: {
  44570. source: "./media/characters/noah-luxray/front.svg",
  44571. extra: 1644/825,
  44572. bottom: 339/1983
  44573. }
  44574. },
  44575. side: {
  44576. height: math.unit(2.97, "meters"),
  44577. weight: math.unit(25000, "lb"),
  44578. name: "Side",
  44579. image: {
  44580. source: "./media/characters/noah-luxray/side.svg",
  44581. extra: 1319/650,
  44582. bottom: 163/1482
  44583. }
  44584. },
  44585. dick: {
  44586. height: math.unit(7.4, "feet"),
  44587. weight: math.unit(2500, "lb"),
  44588. name: "Dick",
  44589. image: {
  44590. source: "./media/characters/noah-luxray/dick.svg"
  44591. }
  44592. },
  44593. dickAlt: {
  44594. height: math.unit(10.83, "feet"),
  44595. weight: math.unit(2500, "lb"),
  44596. name: "Dick-alt",
  44597. image: {
  44598. source: "./media/characters/noah-luxray/dick-alt.svg"
  44599. }
  44600. },
  44601. },
  44602. [
  44603. {
  44604. name: "BIG",
  44605. height: math.unit(2.7, "meters"),
  44606. default: true
  44607. },
  44608. ]
  44609. ))
  44610. characterMakers.push(() => makeCharacter(
  44611. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44612. {
  44613. standing: {
  44614. height: math.unit(183, "cm"),
  44615. weight: math.unit(68, "kg"),
  44616. name: "Standing",
  44617. image: {
  44618. source: "./media/characters/arion/standing.svg",
  44619. extra: 1869/1807,
  44620. bottom: 93/1962
  44621. }
  44622. },
  44623. reclining: {
  44624. height: math.unit(70.5, "cm"),
  44625. weight: math.unit(68, "lb"),
  44626. name: "Reclining",
  44627. image: {
  44628. source: "./media/characters/arion/reclining.svg",
  44629. extra: 937/870,
  44630. bottom: 63/1000
  44631. }
  44632. },
  44633. },
  44634. [
  44635. {
  44636. name: "Colossus Size, Low",
  44637. height: math.unit(33, "meters"),
  44638. default: true
  44639. },
  44640. {
  44641. name: "Colossus Size, Mid",
  44642. height: math.unit(52, "meters")
  44643. },
  44644. {
  44645. name: "Colossus Size, High",
  44646. height: math.unit(60, "meters")
  44647. },
  44648. {
  44649. name: "Titan Size, Low",
  44650. height: math.unit(91, "meters"),
  44651. },
  44652. {
  44653. name: "Titan Size, Mid",
  44654. height: math.unit(122, "meters")
  44655. },
  44656. {
  44657. name: "Titan Size, High",
  44658. height: math.unit(162, "meters")
  44659. },
  44660. ]
  44661. ))
  44662. characterMakers.push(() => makeCharacter(
  44663. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44664. {
  44665. front: {
  44666. height: math.unit(53, "meters"),
  44667. name: "Front",
  44668. image: {
  44669. source: "./media/characters/stellar-marbey/front.svg",
  44670. extra: 1913/1805,
  44671. bottom: 92/2005
  44672. }
  44673. },
  44674. back: {
  44675. height: math.unit(53, "meters"),
  44676. name: "Back",
  44677. image: {
  44678. source: "./media/characters/stellar-marbey/back.svg",
  44679. extra: 1960/1851,
  44680. bottom: 28/1988
  44681. }
  44682. },
  44683. mouth: {
  44684. height: math.unit(3.5, "meters"),
  44685. name: "Mouth",
  44686. image: {
  44687. source: "./media/characters/stellar-marbey/mouth.svg"
  44688. }
  44689. },
  44690. },
  44691. [
  44692. {
  44693. name: "Macro",
  44694. height: math.unit(53, "meters"),
  44695. default: true
  44696. },
  44697. ]
  44698. ))
  44699. characterMakers.push(() => makeCharacter(
  44700. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44701. {
  44702. front: {
  44703. height: math.unit(8 + 1/12, "feet"),
  44704. weight: math.unit(233, "lb"),
  44705. name: "Front",
  44706. image: {
  44707. source: "./media/characters/matsu/front.svg",
  44708. extra: 832/772,
  44709. bottom: 40/872
  44710. }
  44711. },
  44712. back: {
  44713. height: math.unit(8 + 1/12, "feet"),
  44714. weight: math.unit(233, "lb"),
  44715. name: "Back",
  44716. image: {
  44717. source: "./media/characters/matsu/back.svg",
  44718. extra: 839/780,
  44719. bottom: 47/886
  44720. }
  44721. },
  44722. },
  44723. [
  44724. {
  44725. name: "Normal",
  44726. height: math.unit(8 + 1/12, "feet"),
  44727. default: true
  44728. },
  44729. ]
  44730. ))
  44731. characterMakers.push(() => makeCharacter(
  44732. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44733. {
  44734. front: {
  44735. height: math.unit(4, "feet"),
  44736. weight: math.unit(148, "lb"),
  44737. name: "Front",
  44738. image: {
  44739. source: "./media/characters/thiz/front.svg",
  44740. extra: 1913/1748,
  44741. bottom: 62/1975
  44742. }
  44743. },
  44744. },
  44745. [
  44746. {
  44747. name: "Normal",
  44748. height: math.unit(4, "feet"),
  44749. default: true
  44750. },
  44751. ]
  44752. ))
  44753. characterMakers.push(() => makeCharacter(
  44754. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44755. {
  44756. front: {
  44757. height: math.unit(7 + 6/12, "feet"),
  44758. weight: math.unit(267, "lb"),
  44759. name: "Front",
  44760. image: {
  44761. source: "./media/characters/marcel/front.svg",
  44762. extra: 1221/1096,
  44763. bottom: 76/1297
  44764. }
  44765. },
  44766. },
  44767. [
  44768. {
  44769. name: "Normal",
  44770. height: math.unit(7 + 6/12, "feet"),
  44771. default: true
  44772. },
  44773. ]
  44774. ))
  44775. characterMakers.push(() => makeCharacter(
  44776. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44777. {
  44778. side: {
  44779. height: math.unit(42, "meters"),
  44780. name: "Side",
  44781. image: {
  44782. source: "./media/characters/flake/side.svg",
  44783. extra: 1525/1306,
  44784. bottom: 209/1734
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Normal",
  44791. height: math.unit(42, "meters"),
  44792. default: true
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44798. {
  44799. dressed: {
  44800. height: math.unit(6 + 4/12, "feet"),
  44801. weight: math.unit(520, "lb"),
  44802. name: "Dressed",
  44803. image: {
  44804. source: "./media/characters/someonne/dressed.svg",
  44805. extra: 1020/1010,
  44806. bottom: 178/1198
  44807. }
  44808. },
  44809. undressed: {
  44810. height: math.unit(6 + 4/12, "feet"),
  44811. weight: math.unit(520, "lb"),
  44812. name: "Undressed",
  44813. image: {
  44814. source: "./media/characters/someonne/undressed.svg",
  44815. extra: 1019/1014,
  44816. bottom: 169/1188
  44817. }
  44818. },
  44819. },
  44820. [
  44821. {
  44822. name: "Normal",
  44823. height: math.unit(6 + 4/12, "feet"),
  44824. default: true
  44825. },
  44826. ]
  44827. ))
  44828. characterMakers.push(() => makeCharacter(
  44829. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44830. {
  44831. front: {
  44832. height: math.unit(3, "feet"),
  44833. weight: math.unit(30, "lb"),
  44834. name: "Front",
  44835. image: {
  44836. source: "./media/characters/till/front.svg",
  44837. extra: 892/823,
  44838. bottom: 55/947
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Normal",
  44845. height: math.unit(3, "feet"),
  44846. default: true
  44847. },
  44848. ]
  44849. ))
  44850. characterMakers.push(() => makeCharacter(
  44851. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44852. {
  44853. front: {
  44854. height: math.unit(9 + 8/12, "feet"),
  44855. weight: math.unit(800, "lb"),
  44856. name: "Front",
  44857. image: {
  44858. source: "./media/characters/sydney-heki/front.svg",
  44859. extra: 1360/1300,
  44860. bottom: 22/1382
  44861. }
  44862. },
  44863. back: {
  44864. height: math.unit(9 + 8/12, "feet"),
  44865. weight: math.unit(800, "lb"),
  44866. name: "Back",
  44867. image: {
  44868. source: "./media/characters/sydney-heki/back.svg",
  44869. extra: 1356/1293,
  44870. bottom: 12/1368
  44871. }
  44872. },
  44873. frontDressed: {
  44874. height: math.unit(9 + 8/12, "feet"),
  44875. weight: math.unit(800, "lb"),
  44876. name: "Front-dressed",
  44877. image: {
  44878. source: "./media/characters/sydney-heki/front-dressed.svg",
  44879. extra: 1360/1300,
  44880. bottom: 22/1382
  44881. }
  44882. },
  44883. },
  44884. [
  44885. {
  44886. name: "Normal",
  44887. height: math.unit(9 + 8/12, "feet"),
  44888. default: true
  44889. },
  44890. {
  44891. name: "Macro",
  44892. height: math.unit(500, "feet")
  44893. },
  44894. {
  44895. name: "Megamacro",
  44896. height: math.unit(3.6, "miles")
  44897. },
  44898. ]
  44899. ))
  44900. characterMakers.push(() => makeCharacter(
  44901. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44902. {
  44903. front: {
  44904. height: math.unit(200, "cm"),
  44905. weight: math.unit(250, "lb"),
  44906. name: "Front",
  44907. image: {
  44908. source: "./media/characters/fowler-karlsson/front.svg",
  44909. extra: 897/845,
  44910. bottom: 123/1020
  44911. }
  44912. },
  44913. back: {
  44914. height: math.unit(200, "cm"),
  44915. weight: math.unit(250, "lb"),
  44916. name: "Back",
  44917. image: {
  44918. source: "./media/characters/fowler-karlsson/back.svg",
  44919. extra: 999/944,
  44920. bottom: 26/1025
  44921. }
  44922. },
  44923. dick: {
  44924. height: math.unit(1.92, "feet"),
  44925. weight: math.unit(150, "lb"),
  44926. name: "Dick",
  44927. image: {
  44928. source: "./media/characters/fowler-karlsson/dick.svg"
  44929. }
  44930. },
  44931. },
  44932. [
  44933. {
  44934. name: "Normal",
  44935. height: math.unit(200, "cm"),
  44936. default: true
  44937. },
  44938. {
  44939. name: "Smaller Macro",
  44940. height: math.unit(90, "m")
  44941. },
  44942. {
  44943. name: "Macro",
  44944. height: math.unit(150, "m")
  44945. },
  44946. {
  44947. name: "Bigger Macro",
  44948. height: math.unit(300, "m")
  44949. },
  44950. ]
  44951. ))
  44952. characterMakers.push(() => makeCharacter(
  44953. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44954. {
  44955. side: {
  44956. height: math.unit(8 + 2/12, "feet"),
  44957. weight: math.unit(1, "tonne"),
  44958. name: "Side",
  44959. image: {
  44960. source: "./media/characters/rylide/side.svg",
  44961. extra: 1318/1034,
  44962. bottom: 106/1424
  44963. }
  44964. },
  44965. sitting: {
  44966. height: math.unit(303, "cm"),
  44967. weight: math.unit(1, "tonne"),
  44968. name: "Sitting",
  44969. image: {
  44970. source: "./media/characters/rylide/sitting.svg",
  44971. extra: 1303/1103,
  44972. bottom: 36/1339
  44973. }
  44974. },
  44975. },
  44976. [
  44977. {
  44978. name: "Normal",
  44979. height: math.unit(8 + 2/12, "feet"),
  44980. default: true
  44981. },
  44982. ]
  44983. ))
  44984. characterMakers.push(() => makeCharacter(
  44985. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44986. {
  44987. front: {
  44988. height: math.unit(5 + 10/12, "feet"),
  44989. weight: math.unit(160, "lb"),
  44990. name: "Front",
  44991. image: {
  44992. source: "./media/characters/pudask/front.svg",
  44993. extra: 1616/1590,
  44994. bottom: 161/1777
  44995. }
  44996. },
  44997. },
  44998. [
  44999. {
  45000. name: "Ferret Height",
  45001. height: math.unit(2 + 5/12, "feet")
  45002. },
  45003. {
  45004. name: "Canon Height",
  45005. height: math.unit(5 + 10/12, "feet"),
  45006. default: true
  45007. },
  45008. ]
  45009. ))
  45010. characterMakers.push(() => makeCharacter(
  45011. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45012. {
  45013. front: {
  45014. height: math.unit(3 + 6/12, "feet"),
  45015. weight: math.unit(60, "lb"),
  45016. name: "Front",
  45017. image: {
  45018. source: "./media/characters/ramita/front.svg",
  45019. extra: 1402/1232,
  45020. bottom: 62/1464
  45021. }
  45022. },
  45023. dressed: {
  45024. height: math.unit(3 + 6/12, "feet"),
  45025. weight: math.unit(60, "lb"),
  45026. name: "Dressed",
  45027. image: {
  45028. source: "./media/characters/ramita/dressed.svg",
  45029. extra: 1534/1249,
  45030. bottom: 50/1584
  45031. }
  45032. },
  45033. },
  45034. [
  45035. {
  45036. name: "Normal",
  45037. height: math.unit(3 + 6/12, "feet"),
  45038. default: true
  45039. },
  45040. ]
  45041. ))
  45042. characterMakers.push(() => makeCharacter(
  45043. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45044. {
  45045. front: {
  45046. height: math.unit(8, "feet"),
  45047. name: "Front",
  45048. image: {
  45049. source: "./media/characters/ark/front.svg",
  45050. extra: 772/693,
  45051. bottom: 45/817
  45052. }
  45053. },
  45054. },
  45055. [
  45056. {
  45057. name: "Normal",
  45058. height: math.unit(8, "feet"),
  45059. default: true
  45060. },
  45061. ]
  45062. ))
  45063. characterMakers.push(() => makeCharacter(
  45064. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45065. {
  45066. front: {
  45067. height: math.unit(6, "feet"),
  45068. weight: math.unit(250, "lb"),
  45069. volume: math.unit(5/8, "gallons"),
  45070. name: "Front",
  45071. image: {
  45072. source: "./media/characters/ludwig-horn/front.svg",
  45073. extra: 1782/1635,
  45074. bottom: 96/1878
  45075. }
  45076. },
  45077. back: {
  45078. height: math.unit(6, "feet"),
  45079. weight: math.unit(250, "lb"),
  45080. volume: math.unit(5/8, "gallons"),
  45081. name: "Back",
  45082. image: {
  45083. source: "./media/characters/ludwig-horn/back.svg",
  45084. extra: 1874/1729,
  45085. bottom: 27/1901
  45086. }
  45087. },
  45088. dick: {
  45089. height: math.unit(1.05, "feet"),
  45090. weight: math.unit(15, "lb"),
  45091. volume: math.unit(5/8, "gallons"),
  45092. name: "Dick",
  45093. image: {
  45094. source: "./media/characters/ludwig-horn/dick.svg"
  45095. }
  45096. },
  45097. },
  45098. [
  45099. {
  45100. name: "Small",
  45101. height: math.unit(6, "feet")
  45102. },
  45103. {
  45104. name: "Typical",
  45105. height: math.unit(12, "feet"),
  45106. default: true
  45107. },
  45108. {
  45109. name: "Building",
  45110. height: math.unit(80, "feet")
  45111. },
  45112. {
  45113. name: "Town",
  45114. height: math.unit(800, "feet")
  45115. },
  45116. {
  45117. name: "Kingdom",
  45118. height: math.unit(80000, "feet")
  45119. },
  45120. {
  45121. name: "Planet",
  45122. height: math.unit(8000000, "feet")
  45123. },
  45124. {
  45125. name: "Universe",
  45126. height: math.unit(8000000000, "feet")
  45127. },
  45128. {
  45129. name: "Transcended",
  45130. height: math.unit(8e27, "feet")
  45131. },
  45132. ]
  45133. ))
  45134. characterMakers.push(() => makeCharacter(
  45135. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45136. {
  45137. front: {
  45138. height: math.unit(5, "feet"),
  45139. weight: math.unit(50, "kg"),
  45140. name: "Front",
  45141. image: {
  45142. source: "./media/characters/biot-avery/front.svg",
  45143. extra: 1295/1232,
  45144. bottom: 86/1381
  45145. }
  45146. },
  45147. },
  45148. [
  45149. {
  45150. name: "Normal",
  45151. height: math.unit(5, "feet"),
  45152. default: true
  45153. },
  45154. ]
  45155. ))
  45156. characterMakers.push(() => makeCharacter(
  45157. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45158. {
  45159. front: {
  45160. height: math.unit(6, "feet"),
  45161. name: "Front",
  45162. image: {
  45163. source: "./media/characters/kitsune-kiro/front.svg",
  45164. extra: 1270/1158,
  45165. bottom: 42/1312
  45166. }
  45167. },
  45168. frontAlt: {
  45169. height: math.unit(6, "feet"),
  45170. name: "Front-alt",
  45171. image: {
  45172. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45173. extra: 1130/1081,
  45174. bottom: 36/1166
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Smol",
  45181. height: math.unit(3, "feet")
  45182. },
  45183. {
  45184. name: "Normal",
  45185. height: math.unit(6, "feet"),
  45186. default: true
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(6, "feet"),
  45195. weight: math.unit(125, "lb"),
  45196. name: "Front",
  45197. image: {
  45198. source: "./media/characters/jack-thatcher/front.svg",
  45199. extra: 1474/1370,
  45200. bottom: 26/1500
  45201. }
  45202. },
  45203. back: {
  45204. height: math.unit(6, "feet"),
  45205. weight: math.unit(125, "lb"),
  45206. name: "Back",
  45207. image: {
  45208. source: "./media/characters/jack-thatcher/back.svg",
  45209. extra: 1489/1384,
  45210. bottom: 18/1507
  45211. }
  45212. },
  45213. },
  45214. [
  45215. {
  45216. name: "Normal",
  45217. height: math.unit(6, "feet"),
  45218. default: true
  45219. },
  45220. {
  45221. name: "Macro",
  45222. height: math.unit(75, "feet")
  45223. },
  45224. {
  45225. name: "Macro-er",
  45226. height: math.unit(250, "feet")
  45227. },
  45228. ]
  45229. ))
  45230. characterMakers.push(() => makeCharacter(
  45231. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45232. {
  45233. front: {
  45234. height: math.unit(7, "feet"),
  45235. weight: math.unit(110, "kg"),
  45236. name: "Front",
  45237. image: {
  45238. source: "./media/characters/max-hyper/front.svg",
  45239. extra: 1969/1881,
  45240. bottom: 49/2018
  45241. }
  45242. },
  45243. },
  45244. [
  45245. {
  45246. name: "Normal",
  45247. height: math.unit(7, "feet"),
  45248. default: true
  45249. },
  45250. ]
  45251. ))
  45252. characterMakers.push(() => makeCharacter(
  45253. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45254. {
  45255. front: {
  45256. height: math.unit(5 + 5/12, "feet"),
  45257. weight: math.unit(160, "lb"),
  45258. name: "Front",
  45259. image: {
  45260. source: "./media/characters/spook/front.svg",
  45261. extra: 794/791,
  45262. bottom: 54/848
  45263. }
  45264. },
  45265. back: {
  45266. height: math.unit(5 + 5/12, "feet"),
  45267. weight: math.unit(160, "lb"),
  45268. name: "Back",
  45269. image: {
  45270. source: "./media/characters/spook/back.svg",
  45271. extra: 812/798,
  45272. bottom: 32/844
  45273. }
  45274. },
  45275. },
  45276. [
  45277. {
  45278. name: "Normal",
  45279. height: math.unit(5 + 5/12, "feet"),
  45280. default: true
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(18, "feet"),
  45289. name: "Front",
  45290. image: {
  45291. source: "./media/characters/xeaduulix/front.svg",
  45292. extra: 1380/1166,
  45293. bottom: 110/1490
  45294. }
  45295. },
  45296. back: {
  45297. height: math.unit(18, "feet"),
  45298. name: "Back",
  45299. image: {
  45300. source: "./media/characters/xeaduulix/back.svg",
  45301. extra: 1592/1170,
  45302. bottom: 128/1720
  45303. }
  45304. },
  45305. frontNsfw: {
  45306. height: math.unit(18, "feet"),
  45307. name: "Front (NSFW)",
  45308. image: {
  45309. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45310. extra: 1380/1166,
  45311. bottom: 110/1490
  45312. }
  45313. },
  45314. backNsfw: {
  45315. height: math.unit(18, "feet"),
  45316. name: "Back (NSFW)",
  45317. image: {
  45318. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45319. extra: 1592/1170,
  45320. bottom: 128/1720
  45321. }
  45322. },
  45323. },
  45324. [
  45325. {
  45326. name: "Normal",
  45327. height: math.unit(18, "feet"),
  45328. default: true
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45334. {
  45335. spreadWings: {
  45336. height: math.unit(20, "feet"),
  45337. name: "Spread Wings",
  45338. image: {
  45339. source: "./media/characters/fledge/spread-wings.svg",
  45340. extra: 693/635,
  45341. bottom: 26/719
  45342. }
  45343. },
  45344. front: {
  45345. height: math.unit(20, "feet"),
  45346. name: "Front",
  45347. image: {
  45348. source: "./media/characters/fledge/front.svg",
  45349. extra: 684/637,
  45350. bottom: 18/702
  45351. }
  45352. },
  45353. frontAlt: {
  45354. height: math.unit(20, "feet"),
  45355. name: "Front (Alt)",
  45356. image: {
  45357. source: "./media/characters/fledge/front-alt.svg",
  45358. extra: 708/664,
  45359. bottom: 13/721
  45360. }
  45361. },
  45362. back: {
  45363. height: math.unit(20, "feet"),
  45364. name: "Back",
  45365. image: {
  45366. source: "./media/characters/fledge/back.svg",
  45367. extra: 718/634,
  45368. bottom: 22/740
  45369. }
  45370. },
  45371. head: {
  45372. height: math.unit(5.55, "feet"),
  45373. name: "Head",
  45374. image: {
  45375. source: "./media/characters/fledge/head.svg"
  45376. }
  45377. },
  45378. headAlt: {
  45379. height: math.unit(5.1, "feet"),
  45380. name: "Head (Alt)",
  45381. image: {
  45382. source: "./media/characters/fledge/head-alt.svg"
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Small",
  45389. height: math.unit(6 + 2/12, "feet")
  45390. },
  45391. {
  45392. name: "Big",
  45393. height: math.unit(20, "feet"),
  45394. default: true
  45395. },
  45396. {
  45397. name: "Giant",
  45398. height: math.unit(100, "feet")
  45399. },
  45400. {
  45401. name: "Macro",
  45402. height: math.unit(200, "feet")
  45403. },
  45404. ]
  45405. ))
  45406. characterMakers.push(() => makeCharacter(
  45407. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45408. {
  45409. front: {
  45410. height: math.unit(1, "meter"),
  45411. name: "Front",
  45412. image: {
  45413. source: "./media/characters/atlas-morenai/front.svg",
  45414. extra: 1275/1043,
  45415. bottom: 19/1294
  45416. }
  45417. },
  45418. back: {
  45419. height: math.unit(1, "meter"),
  45420. name: "Back",
  45421. image: {
  45422. source: "./media/characters/atlas-morenai/back.svg",
  45423. extra: 1141/1001,
  45424. bottom: 25/1166
  45425. }
  45426. },
  45427. },
  45428. [
  45429. {
  45430. name: "Normal",
  45431. height: math.unit(1, "meter"),
  45432. default: true
  45433. },
  45434. {
  45435. name: "Magic-Infused",
  45436. height: math.unit(5, "meters")
  45437. },
  45438. ]
  45439. ))
  45440. characterMakers.push(() => makeCharacter(
  45441. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45442. {
  45443. front: {
  45444. height: math.unit(5, "meters"),
  45445. name: "Front",
  45446. image: {
  45447. source: "./media/characters/cintia/front.svg",
  45448. extra: 1312/1228,
  45449. bottom: 38/1350
  45450. }
  45451. },
  45452. back: {
  45453. height: math.unit(5, "meters"),
  45454. name: "Back",
  45455. image: {
  45456. source: "./media/characters/cintia/back.svg",
  45457. extra: 1260/1166,
  45458. bottom: 98/1358
  45459. }
  45460. },
  45461. frontDick: {
  45462. height: math.unit(5, "meters"),
  45463. name: "Front (Dick)",
  45464. image: {
  45465. source: "./media/characters/cintia/front-dick.svg",
  45466. extra: 1312/1228,
  45467. bottom: 38/1350
  45468. }
  45469. },
  45470. backDick: {
  45471. height: math.unit(5, "meters"),
  45472. name: "Back (Dick)",
  45473. image: {
  45474. source: "./media/characters/cintia/back-dick.svg",
  45475. extra: 1260/1166,
  45476. bottom: 98/1358
  45477. }
  45478. },
  45479. bust: {
  45480. height: math.unit(1.97, "meters"),
  45481. name: "Bust",
  45482. image: {
  45483. source: "./media/characters/cintia/bust.svg",
  45484. extra: 617/565,
  45485. bottom: 0/617
  45486. }
  45487. },
  45488. },
  45489. [
  45490. {
  45491. name: "Normal",
  45492. height: math.unit(5, "meters"),
  45493. default: true
  45494. },
  45495. ]
  45496. ))
  45497. characterMakers.push(() => makeCharacter(
  45498. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45499. {
  45500. side: {
  45501. height: math.unit(100, "feet"),
  45502. name: "Side",
  45503. image: {
  45504. source: "./media/characters/denora/side.svg",
  45505. extra: 875/803,
  45506. bottom: 9/884
  45507. }
  45508. },
  45509. },
  45510. [
  45511. {
  45512. name: "Standard",
  45513. height: math.unit(100, "feet"),
  45514. default: true
  45515. },
  45516. {
  45517. name: "Grand",
  45518. height: math.unit(1000, "feet")
  45519. },
  45520. {
  45521. name: "Conquering",
  45522. height: math.unit(10000, "feet")
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45528. {
  45529. dressed: {
  45530. height: math.unit(8 + 5/12, "feet"),
  45531. weight: math.unit(700, "lb"),
  45532. name: "Dressed",
  45533. image: {
  45534. source: "./media/characters/kiva/dressed.svg",
  45535. extra: 1102/1055,
  45536. bottom: 60/1162
  45537. }
  45538. },
  45539. nude: {
  45540. height: math.unit(8 + 5/12, "feet"),
  45541. weight: math.unit(700, "lb"),
  45542. name: "Nude",
  45543. image: {
  45544. source: "./media/characters/kiva/nude.svg",
  45545. extra: 1102/1055,
  45546. bottom: 60/1162
  45547. }
  45548. },
  45549. },
  45550. [
  45551. {
  45552. name: "Base Height",
  45553. height: math.unit(8 + 5/12, "feet"),
  45554. default: true
  45555. },
  45556. {
  45557. name: "Macro",
  45558. height: math.unit(100, "feet")
  45559. },
  45560. {
  45561. name: "Max",
  45562. height: math.unit(3280, "feet")
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45568. {
  45569. front: {
  45570. height: math.unit(6 + 8/12, "feet"),
  45571. weight: math.unit(250, "lb"),
  45572. name: "Front",
  45573. image: {
  45574. source: "./media/characters/ztragon/front.svg",
  45575. extra: 1825/1684,
  45576. bottom: 98/1923
  45577. }
  45578. },
  45579. },
  45580. [
  45581. {
  45582. name: "Normal",
  45583. height: math.unit(6 + 8/12, "feet"),
  45584. default: true
  45585. },
  45586. {
  45587. name: "Macro",
  45588. height: math.unit(80, "feet")
  45589. },
  45590. ]
  45591. ))
  45592. characterMakers.push(() => makeCharacter(
  45593. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45594. {
  45595. front: {
  45596. height: math.unit(10.4, "feet"),
  45597. weight: math.unit(2, "tons"),
  45598. name: "Front",
  45599. image: {
  45600. source: "./media/characters/yesenia/front.svg",
  45601. extra: 1479/1474,
  45602. bottom: 233/1712
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(10.4, "feet"),
  45610. default: true
  45611. },
  45612. ]
  45613. ))
  45614. characterMakers.push(() => makeCharacter(
  45615. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45616. {
  45617. normal: {
  45618. height: math.unit(6 + 1/12, "feet"),
  45619. weight: math.unit(180, "lb"),
  45620. name: "Normal",
  45621. image: {
  45622. source: "./media/characters/leanne-lycheborne/normal.svg",
  45623. extra: 1748/1660,
  45624. bottom: 98/1846
  45625. }
  45626. },
  45627. were: {
  45628. height: math.unit(12, "feet"),
  45629. weight: math.unit(1600, "lb"),
  45630. name: "Were",
  45631. image: {
  45632. source: "./media/characters/leanne-lycheborne/were.svg",
  45633. extra: 1485/1432,
  45634. bottom: 66/1551
  45635. }
  45636. },
  45637. },
  45638. [
  45639. {
  45640. name: "Normal",
  45641. height: math.unit(6 + 1/12, "feet"),
  45642. default: true
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45648. {
  45649. side: {
  45650. height: math.unit(13, "feet"),
  45651. name: "Side",
  45652. image: {
  45653. source: "./media/characters/kira-tyler/side.svg",
  45654. extra: 693/393,
  45655. bottom: 58/751
  45656. }
  45657. },
  45658. },
  45659. [
  45660. {
  45661. name: "Normal",
  45662. height: math.unit(13, "feet"),
  45663. default: true
  45664. },
  45665. ]
  45666. ))
  45667. characterMakers.push(() => makeCharacter(
  45668. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45669. {
  45670. front: {
  45671. height: math.unit(10.3, "feet"),
  45672. weight: math.unit(150, "lb"),
  45673. name: "Front",
  45674. image: {
  45675. source: "./media/characters/blaze/front.svg",
  45676. extra: 1378/1286,
  45677. bottom: 172/1550
  45678. }
  45679. },
  45680. },
  45681. [
  45682. {
  45683. name: "Normal",
  45684. height: math.unit(10.3, "feet"),
  45685. default: true
  45686. },
  45687. ]
  45688. ))
  45689. characterMakers.push(() => makeCharacter(
  45690. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45691. {
  45692. side: {
  45693. height: math.unit(2, "meters"),
  45694. weight: math.unit(400, "kg"),
  45695. name: "Side",
  45696. image: {
  45697. source: "./media/characters/anu/side.svg",
  45698. extra: 506/394,
  45699. bottom: 18/524
  45700. }
  45701. },
  45702. },
  45703. [
  45704. {
  45705. name: "Humanoid",
  45706. height: math.unit(2, "meters")
  45707. },
  45708. {
  45709. name: "Normal",
  45710. height: math.unit(5, "meters"),
  45711. default: true
  45712. },
  45713. ]
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45717. {
  45718. front: {
  45719. height: math.unit(5 + 5/12, "feet"),
  45720. weight: math.unit(170, "lb"),
  45721. name: "Front",
  45722. image: {
  45723. source: "./media/characters/synx-the-lynx/front.svg",
  45724. extra: 1893/1745,
  45725. bottom: 17/1910
  45726. }
  45727. },
  45728. side: {
  45729. height: math.unit(5 + 5/12, "feet"),
  45730. weight: math.unit(170, "lb"),
  45731. name: "Side",
  45732. image: {
  45733. source: "./media/characters/synx-the-lynx/side.svg",
  45734. extra: 1884/1740,
  45735. bottom: 39/1923
  45736. }
  45737. },
  45738. back: {
  45739. height: math.unit(5 + 5/12, "feet"),
  45740. weight: math.unit(170, "lb"),
  45741. name: "Back",
  45742. image: {
  45743. source: "./media/characters/synx-the-lynx/back.svg",
  45744. extra: 1903/1755,
  45745. bottom: 14/1917
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Normal",
  45752. height: math.unit(5 + 5/12, "feet"),
  45753. default: true
  45754. },
  45755. ]
  45756. ))
  45757. characterMakers.push(() => makeCharacter(
  45758. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45759. {
  45760. back: {
  45761. height: math.unit(15, "feet"),
  45762. name: "Back",
  45763. image: {
  45764. source: "./media/characters/nadezda-fex/back.svg",
  45765. extra: 1695/1481,
  45766. bottom: 25/1720
  45767. }
  45768. },
  45769. },
  45770. [
  45771. {
  45772. name: "Normal",
  45773. height: math.unit(15, "feet"),
  45774. default: true
  45775. },
  45776. {
  45777. name: "Macro",
  45778. height: math.unit(2.5, "miles")
  45779. },
  45780. {
  45781. name: "Goddess",
  45782. height: math.unit(2, "multiverses")
  45783. },
  45784. ]
  45785. ))
  45786. characterMakers.push(() => makeCharacter(
  45787. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45788. {
  45789. front: {
  45790. height: math.unit(216, "cm"),
  45791. name: "Front",
  45792. image: {
  45793. source: "./media/characters/lev/front.svg",
  45794. extra: 1728/1670,
  45795. bottom: 82/1810
  45796. }
  45797. },
  45798. back: {
  45799. height: math.unit(216, "cm"),
  45800. name: "Back",
  45801. image: {
  45802. source: "./media/characters/lev/back.svg",
  45803. extra: 1738/1675,
  45804. bottom: 24/1762
  45805. }
  45806. },
  45807. dressed: {
  45808. height: math.unit(216, "cm"),
  45809. name: "Dressed",
  45810. image: {
  45811. source: "./media/characters/lev/dressed.svg",
  45812. extra: 1397/1351,
  45813. bottom: 73/1470
  45814. }
  45815. },
  45816. head: {
  45817. height: math.unit(0.51, "meter"),
  45818. name: "Head",
  45819. image: {
  45820. source: "./media/characters/lev/head.svg"
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Normal",
  45827. height: math.unit(216, "cm"),
  45828. default: true
  45829. },
  45830. {
  45831. name: "Relatively Macro",
  45832. height: math.unit(80, "meters")
  45833. },
  45834. {
  45835. name: "Megamacro",
  45836. height: math.unit(21600, "meters")
  45837. },
  45838. {
  45839. name: "Megamacro+",
  45840. height: math.unit(64800, "meters")
  45841. },
  45842. ]
  45843. ))
  45844. characterMakers.push(() => makeCharacter(
  45845. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45846. {
  45847. front: {
  45848. height: math.unit(2, "meters"),
  45849. weight: math.unit(80, "kg"),
  45850. name: "Front",
  45851. image: {
  45852. source: "./media/characters/moka/front.svg",
  45853. extra: 1337/1255,
  45854. bottom: 58/1395
  45855. }
  45856. },
  45857. },
  45858. [
  45859. {
  45860. name: "Micro",
  45861. height: math.unit(15, "cm")
  45862. },
  45863. {
  45864. name: "Normal",
  45865. height: math.unit(2, "meters"),
  45866. default: true
  45867. },
  45868. {
  45869. name: "Macro",
  45870. height: math.unit(20, "meters"),
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45876. {
  45877. front: {
  45878. height: math.unit(9, "feet"),
  45879. weight: math.unit(240, "lb"),
  45880. name: "Front",
  45881. image: {
  45882. source: "./media/characters/kuzco/front.svg",
  45883. extra: 1593/1487,
  45884. bottom: 32/1625
  45885. }
  45886. },
  45887. side: {
  45888. height: math.unit(9, "feet"),
  45889. weight: math.unit(240, "lb"),
  45890. name: "Side",
  45891. image: {
  45892. source: "./media/characters/kuzco/side.svg",
  45893. extra: 1575/1485,
  45894. bottom: 30/1605
  45895. }
  45896. },
  45897. back: {
  45898. height: math.unit(9, "feet"),
  45899. weight: math.unit(240, "lb"),
  45900. name: "Back",
  45901. image: {
  45902. source: "./media/characters/kuzco/back.svg",
  45903. extra: 1603/1514,
  45904. bottom: 14/1617
  45905. }
  45906. },
  45907. },
  45908. [
  45909. {
  45910. name: "Normal",
  45911. height: math.unit(9, "feet"),
  45912. default: true
  45913. },
  45914. ]
  45915. ))
  45916. characterMakers.push(() => makeCharacter(
  45917. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45918. {
  45919. side: {
  45920. height: math.unit(2, "meters"),
  45921. weight: math.unit(300, "kg"),
  45922. name: "Side",
  45923. image: {
  45924. source: "./media/characters/ceruleus/side.svg",
  45925. extra: 1068/974,
  45926. bottom: 126/1194
  45927. }
  45928. },
  45929. },
  45930. [
  45931. {
  45932. name: "Normal",
  45933. height: math.unit(16, "meters"),
  45934. default: true
  45935. },
  45936. ]
  45937. ))
  45938. characterMakers.push(() => makeCharacter(
  45939. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45940. {
  45941. front: {
  45942. height: math.unit(9, "feet"),
  45943. weight: math.unit(500, "kg"),
  45944. name: "Front",
  45945. image: {
  45946. source: "./media/characters/acouya/front.svg",
  45947. extra: 1660/1473,
  45948. bottom: 28/1688
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(9, "feet"),
  45956. default: true
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45962. {
  45963. front: {
  45964. height: math.unit(5 + 6/12, "feet"),
  45965. weight: math.unit(195, "lb"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/vant/front.svg",
  45969. extra: 1396/1320,
  45970. bottom: 20/1416
  45971. }
  45972. },
  45973. back: {
  45974. height: math.unit(5 + 6/12, "feet"),
  45975. weight: math.unit(195, "lb"),
  45976. name: "Back",
  45977. image: {
  45978. source: "./media/characters/vant/back.svg",
  45979. extra: 1396/1320,
  45980. bottom: 20/1416
  45981. }
  45982. },
  45983. maw: {
  45984. height: math.unit(0.75, "feet"),
  45985. name: "Maw",
  45986. image: {
  45987. source: "./media/characters/vant/maw.svg"
  45988. }
  45989. },
  45990. paw: {
  45991. height: math.unit(1.07, "feet"),
  45992. name: "Paw",
  45993. image: {
  45994. source: "./media/characters/vant/paw.svg"
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Micro",
  46001. height: math.unit(0.25, "inches")
  46002. },
  46003. {
  46004. name: "Normal",
  46005. height: math.unit(5 + 6/12, "feet"),
  46006. default: true
  46007. },
  46008. {
  46009. name: "Macro",
  46010. height: math.unit(75, "feet")
  46011. },
  46012. ]
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46016. {
  46017. front: {
  46018. height: math.unit(30, "meters"),
  46019. weight: math.unit(363, "tons"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/ahra/front.svg",
  46023. extra: 1914/1814,
  46024. bottom: 46/1960
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Macro",
  46031. height: math.unit(30, "meters"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46038. {
  46039. undressed: {
  46040. height: math.unit(2, "m"),
  46041. weight: math.unit(250, "kg"),
  46042. name: "Undressed",
  46043. image: {
  46044. source: "./media/characters/coriander/undressed.svg",
  46045. extra: 1757/1606,
  46046. bottom: 107/1864
  46047. }
  46048. },
  46049. dressed: {
  46050. height: math.unit(2, "m"),
  46051. weight: math.unit(250, "kg"),
  46052. name: "Dressed",
  46053. image: {
  46054. source: "./media/characters/coriander/dressed.svg",
  46055. extra: 1757/1606,
  46056. bottom: 107/1864
  46057. }
  46058. },
  46059. },
  46060. [
  46061. {
  46062. name: "Normal",
  46063. height: math.unit(4, "meters"),
  46064. default: true
  46065. },
  46066. {
  46067. name: "XL",
  46068. height: math.unit(6, "meters")
  46069. },
  46070. {
  46071. name: "XXL",
  46072. height: math.unit(8, "meters")
  46073. },
  46074. ]
  46075. ))
  46076. characterMakers.push(() => makeCharacter(
  46077. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46078. {
  46079. front: {
  46080. height: math.unit(6, "feet"),
  46081. name: "Front",
  46082. image: {
  46083. source: "./media/characters/syrinx/front.svg",
  46084. extra: 1557/1259,
  46085. bottom: 171/1728
  46086. }
  46087. },
  46088. },
  46089. [
  46090. {
  46091. name: "Normal",
  46092. height: math.unit(6 + 3/12, "feet"),
  46093. default: true
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46099. {
  46100. front: {
  46101. height: math.unit(11 + 6/12, "feet"),
  46102. weight: math.unit(1.5, "tons"),
  46103. name: "Front",
  46104. image: {
  46105. source: "./media/characters/bor/front.svg",
  46106. extra: 1189/1109,
  46107. bottom: 170/1359
  46108. }
  46109. },
  46110. },
  46111. [
  46112. {
  46113. name: "Normal",
  46114. height: math.unit(11 + 6/12, "feet"),
  46115. default: true
  46116. },
  46117. {
  46118. name: "Macro",
  46119. height: math.unit(32 + 9/12, "feet")
  46120. },
  46121. ]
  46122. ))
  46123. characterMakers.push(() => makeCharacter(
  46124. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46125. {
  46126. anthro: {
  46127. height: math.unit(9, "feet"),
  46128. weight: math.unit(2076, "lb"),
  46129. name: "Anthro",
  46130. image: {
  46131. source: "./media/characters/abacus/anthro.svg",
  46132. extra: 1540/1494,
  46133. bottom: 233/1773
  46134. }
  46135. },
  46136. pigeon: {
  46137. height: math.unit(1, "feet"),
  46138. name: "Pigeon",
  46139. image: {
  46140. source: "./media/characters/abacus/pigeon.svg",
  46141. extra: 528/525,
  46142. bottom: 46/574
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Normal",
  46149. height: math.unit(9, "feet"),
  46150. default: true
  46151. },
  46152. ]
  46153. ))
  46154. characterMakers.push(() => makeCharacter(
  46155. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46156. {
  46157. side: {
  46158. height: math.unit(6, "feet"),
  46159. name: "Side",
  46160. image: {
  46161. source: "./media/characters/delkhan/side.svg",
  46162. extra: 1884/1786,
  46163. bottom: 308/2192
  46164. }
  46165. },
  46166. head: {
  46167. height: math.unit(3.38, "feet"),
  46168. name: "Head",
  46169. image: {
  46170. source: "./media/characters/delkhan/head.svg"
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(72, "feet"),
  46178. default: true
  46179. },
  46180. {
  46181. name: "Giant",
  46182. height: math.unit(172, "feet")
  46183. },
  46184. ]
  46185. ))
  46186. characterMakers.push(() => makeCharacter(
  46187. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46188. {
  46189. standing: {
  46190. height: math.unit(6, "feet"),
  46191. name: "Standing",
  46192. image: {
  46193. source: "./media/characters/euchidat/standing.svg",
  46194. extra: 1612/1553,
  46195. bottom: 116/1728
  46196. }
  46197. },
  46198. leaning: {
  46199. height: math.unit(6, "feet"),
  46200. name: "Leaning",
  46201. image: {
  46202. source: "./media/characters/euchidat/leaning.svg",
  46203. extra: 1719/1674,
  46204. bottom: 27/1746
  46205. }
  46206. },
  46207. },
  46208. [
  46209. {
  46210. name: "Normal",
  46211. height: math.unit(175, "feet"),
  46212. default: true
  46213. },
  46214. {
  46215. name: "Megamacro",
  46216. height: math.unit(190, "miles")
  46217. },
  46218. {
  46219. name: "Gigamacro",
  46220. height: math.unit(190000, "miles")
  46221. },
  46222. ]
  46223. ))
  46224. characterMakers.push(() => makeCharacter(
  46225. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46226. {
  46227. front: {
  46228. height: math.unit(6, "feet"),
  46229. weight: math.unit(150, "lb"),
  46230. name: "Front",
  46231. image: {
  46232. source: "./media/characters/rebecca-stack/front.svg",
  46233. extra: 1256/1201,
  46234. bottom: 18/1274
  46235. }
  46236. },
  46237. },
  46238. [
  46239. {
  46240. name: "Normal",
  46241. height: math.unit(5 + 8/12, "feet"),
  46242. default: true
  46243. },
  46244. {
  46245. name: "Demolitionist",
  46246. height: math.unit(200, "feet")
  46247. },
  46248. {
  46249. name: "Out of Control",
  46250. height: math.unit(2, "miles")
  46251. },
  46252. {
  46253. name: "Giga",
  46254. height: math.unit(7200, "miles")
  46255. },
  46256. ]
  46257. ))
  46258. characterMakers.push(() => makeCharacter(
  46259. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46260. {
  46261. front: {
  46262. height: math.unit(6, "feet"),
  46263. weight: math.unit(150, "lb"),
  46264. name: "Front",
  46265. image: {
  46266. source: "./media/characters/jenny-cartwright/front.svg",
  46267. extra: 1384/1376,
  46268. bottom: 58/1442
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(6 + 7/12, "feet"),
  46276. default: true
  46277. },
  46278. {
  46279. name: "Librarian",
  46280. height: math.unit(55, "feet")
  46281. },
  46282. {
  46283. name: "Sightseer",
  46284. height: math.unit(50, "miles")
  46285. },
  46286. {
  46287. name: "Giga",
  46288. height: math.unit(30000, "miles")
  46289. },
  46290. ]
  46291. ))
  46292. characterMakers.push(() => makeCharacter(
  46293. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46294. {
  46295. nude: {
  46296. height: math.unit(8, "feet"),
  46297. weight: math.unit(225, "lb"),
  46298. name: "Nude",
  46299. image: {
  46300. source: "./media/characters/marvy/nude.svg",
  46301. extra: 1900/1683,
  46302. bottom: 89/1989
  46303. }
  46304. },
  46305. dressed: {
  46306. height: math.unit(8, "feet"),
  46307. weight: math.unit(225, "lb"),
  46308. name: "Dressed",
  46309. image: {
  46310. source: "./media/characters/marvy/dressed.svg",
  46311. extra: 1900/1683,
  46312. bottom: 89/1989
  46313. }
  46314. },
  46315. head: {
  46316. height: math.unit(2.85, "feet"),
  46317. name: "Head",
  46318. image: {
  46319. source: "./media/characters/marvy/head.svg"
  46320. }
  46321. },
  46322. },
  46323. [
  46324. {
  46325. name: "Normal",
  46326. height: math.unit(8, "feet"),
  46327. default: true
  46328. },
  46329. ]
  46330. ))
  46331. characterMakers.push(() => makeCharacter(
  46332. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46333. {
  46334. front: {
  46335. height: math.unit(8, "feet"),
  46336. weight: math.unit(250, "lb"),
  46337. name: "Front",
  46338. image: {
  46339. source: "./media/characters/leah/front.svg",
  46340. extra: 1257/1149,
  46341. bottom: 109/1366
  46342. }
  46343. },
  46344. },
  46345. [
  46346. {
  46347. name: "Normal",
  46348. height: math.unit(8, "feet"),
  46349. default: true
  46350. },
  46351. {
  46352. name: "Minimacro",
  46353. height: math.unit(40, "feet")
  46354. },
  46355. {
  46356. name: "Macro",
  46357. height: math.unit(124, "feet")
  46358. },
  46359. {
  46360. name: "Megamacro",
  46361. height: math.unit(850, "feet")
  46362. },
  46363. ]
  46364. ))
  46365. characterMakers.push(() => makeCharacter(
  46366. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46367. {
  46368. side: {
  46369. height: math.unit(13 + 6/12, "feet"),
  46370. weight: math.unit(3200, "lb"),
  46371. name: "Side",
  46372. image: {
  46373. source: "./media/characters/alvir/side.svg",
  46374. extra: 896/589,
  46375. bottom: 26/922
  46376. }
  46377. },
  46378. },
  46379. [
  46380. {
  46381. name: "Normal",
  46382. height: math.unit(13 + 6/12, "feet"),
  46383. default: true
  46384. },
  46385. ]
  46386. ))
  46387. characterMakers.push(() => makeCharacter(
  46388. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46389. {
  46390. front: {
  46391. height: math.unit(5 + 4/12, "feet"),
  46392. weight: math.unit(236, "lb"),
  46393. name: "Front",
  46394. image: {
  46395. source: "./media/characters/zaina-khalil/front.svg",
  46396. extra: 1533/1485,
  46397. bottom: 94/1627
  46398. }
  46399. },
  46400. side: {
  46401. height: math.unit(5 + 4/12, "feet"),
  46402. weight: math.unit(236, "lb"),
  46403. name: "Side",
  46404. image: {
  46405. source: "./media/characters/zaina-khalil/side.svg",
  46406. extra: 1537/1498,
  46407. bottom: 66/1603
  46408. }
  46409. },
  46410. back: {
  46411. height: math.unit(5 + 4/12, "feet"),
  46412. weight: math.unit(236, "lb"),
  46413. name: "Back",
  46414. image: {
  46415. source: "./media/characters/zaina-khalil/back.svg",
  46416. extra: 1546/1494,
  46417. bottom: 89/1635
  46418. }
  46419. },
  46420. },
  46421. [
  46422. {
  46423. name: "Normal",
  46424. height: math.unit(5 + 4/12, "feet"),
  46425. default: true
  46426. },
  46427. ]
  46428. ))
  46429. characterMakers.push(() => makeCharacter(
  46430. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46431. {
  46432. side: {
  46433. height: math.unit(12, "feet"),
  46434. weight: math.unit(4000, "lb"),
  46435. name: "Side",
  46436. image: {
  46437. source: "./media/characters/terry/side.svg",
  46438. extra: 1518/1439,
  46439. bottom: 149/1667
  46440. }
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Normal",
  46446. height: math.unit(12, "feet"),
  46447. default: true
  46448. },
  46449. ]
  46450. ))
  46451. characterMakers.push(() => makeCharacter(
  46452. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46453. {
  46454. front: {
  46455. height: math.unit(12, "feet"),
  46456. weight: math.unit(1500, "lb"),
  46457. name: "Front",
  46458. image: {
  46459. source: "./media/characters/kahea/front.svg",
  46460. extra: 1722/1617,
  46461. bottom: 179/1901
  46462. }
  46463. },
  46464. },
  46465. [
  46466. {
  46467. name: "Normal",
  46468. height: math.unit(12, "feet"),
  46469. default: true
  46470. },
  46471. ]
  46472. ))
  46473. characterMakers.push(() => makeCharacter(
  46474. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46475. {
  46476. demonFront: {
  46477. height: math.unit(36, "feet"),
  46478. name: "Front",
  46479. image: {
  46480. source: "./media/characters/alex-xuria/demon-front.svg",
  46481. extra: 1705/1673,
  46482. bottom: 198/1903
  46483. },
  46484. form: "demon",
  46485. default: true
  46486. },
  46487. demonBack: {
  46488. height: math.unit(36, "feet"),
  46489. name: "Back",
  46490. image: {
  46491. source: "./media/characters/alex-xuria/demon-back.svg",
  46492. extra: 1725/1693,
  46493. bottom: 70/1795
  46494. },
  46495. form: "demon"
  46496. },
  46497. demonHead: {
  46498. height: math.unit(2.14, "meters"),
  46499. name: "Head",
  46500. image: {
  46501. source: "./media/characters/alex-xuria/demon-head.svg"
  46502. },
  46503. form: "demon"
  46504. },
  46505. demonHand: {
  46506. height: math.unit(1.61, "meters"),
  46507. name: "Hand",
  46508. image: {
  46509. source: "./media/characters/alex-xuria/demon-hand.svg"
  46510. },
  46511. form: "demon"
  46512. },
  46513. demonPaw: {
  46514. height: math.unit(1.35, "meters"),
  46515. name: "Paw",
  46516. image: {
  46517. source: "./media/characters/alex-xuria/demon-paw.svg"
  46518. },
  46519. form: "demon"
  46520. },
  46521. demonFoot: {
  46522. height: math.unit(2.2, "meters"),
  46523. name: "Foot",
  46524. image: {
  46525. source: "./media/characters/alex-xuria/demon-foot.svg"
  46526. },
  46527. form: "demon"
  46528. },
  46529. demonCock: {
  46530. height: math.unit(1.74, "meters"),
  46531. name: "Cock",
  46532. image: {
  46533. source: "./media/characters/alex-xuria/demon-cock.svg"
  46534. },
  46535. form: "demon"
  46536. },
  46537. demonTailClosed: {
  46538. height: math.unit(1.47, "meters"),
  46539. name: "Tail (Closed)",
  46540. image: {
  46541. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46542. },
  46543. form: "demon"
  46544. },
  46545. demonTailOpen: {
  46546. height: math.unit(2.85, "meters"),
  46547. name: "Tail (Open)",
  46548. image: {
  46549. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46550. },
  46551. form: "demon"
  46552. },
  46553. incubusFront: {
  46554. height: math.unit(12, "feet"),
  46555. name: "Front",
  46556. image: {
  46557. source: "./media/characters/alex-xuria/incubus-front.svg",
  46558. extra: 1754/1677,
  46559. bottom: 125/1879
  46560. },
  46561. form: "incubus",
  46562. default: true
  46563. },
  46564. incubusBack: {
  46565. height: math.unit(12, "feet"),
  46566. name: "Back",
  46567. image: {
  46568. source: "./media/characters/alex-xuria/incubus-back.svg",
  46569. extra: 1702/1647,
  46570. bottom: 30/1732
  46571. },
  46572. form: "incubus"
  46573. },
  46574. incubusHead: {
  46575. height: math.unit(3.45, "feet"),
  46576. name: "Head",
  46577. image: {
  46578. source: "./media/characters/alex-xuria/incubus-head.svg"
  46579. },
  46580. form: "incubus"
  46581. },
  46582. rabbitFront: {
  46583. height: math.unit(6, "feet"),
  46584. name: "Front",
  46585. image: {
  46586. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46587. extra: 1369/1349,
  46588. bottom: 45/1414
  46589. },
  46590. form: "rabbit",
  46591. default: true
  46592. },
  46593. rabbitSide: {
  46594. height: math.unit(6, "feet"),
  46595. name: "Side",
  46596. image: {
  46597. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46598. extra: 1370/1356,
  46599. bottom: 37/1407
  46600. },
  46601. form: "rabbit"
  46602. },
  46603. rabbitBack: {
  46604. height: math.unit(6, "feet"),
  46605. name: "Back",
  46606. image: {
  46607. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46608. extra: 1375/1358,
  46609. bottom: 43/1418
  46610. },
  46611. form: "rabbit"
  46612. },
  46613. },
  46614. [
  46615. {
  46616. name: "Normal",
  46617. height: math.unit(6, "feet"),
  46618. default: true,
  46619. form: "rabbit"
  46620. },
  46621. {
  46622. name: "Incubus",
  46623. height: math.unit(12, "feet"),
  46624. default: true,
  46625. form: "incubus"
  46626. },
  46627. {
  46628. name: "Demon",
  46629. height: math.unit(36, "feet"),
  46630. default: true,
  46631. form: "demon"
  46632. }
  46633. ],
  46634. {
  46635. "demon": {
  46636. name: "Demon",
  46637. default: true
  46638. },
  46639. "incubus": {
  46640. name: "Incubus",
  46641. },
  46642. "rabbit": {
  46643. name: "Rabbit"
  46644. }
  46645. }
  46646. ))
  46647. characterMakers.push(() => makeCharacter(
  46648. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46649. {
  46650. front: {
  46651. height: math.unit(7 + 5/12, "feet"),
  46652. weight: math.unit(510, "lb"),
  46653. name: "Front",
  46654. image: {
  46655. source: "./media/characters/syrup/front.svg",
  46656. extra: 932/916,
  46657. bottom: 26/958
  46658. }
  46659. },
  46660. },
  46661. [
  46662. {
  46663. name: "Normal",
  46664. height: math.unit(7 + 5/12, "feet"),
  46665. default: true
  46666. },
  46667. {
  46668. name: "Big",
  46669. height: math.unit(50, "feet")
  46670. },
  46671. {
  46672. name: "Macro",
  46673. height: math.unit(300, "feet")
  46674. },
  46675. {
  46676. name: "Megamacro",
  46677. height: math.unit(1, "mile")
  46678. },
  46679. ]
  46680. ))
  46681. characterMakers.push(() => makeCharacter(
  46682. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46683. {
  46684. front: {
  46685. height: math.unit(6 + 9/12, "feet"),
  46686. name: "Front",
  46687. image: {
  46688. source: "./media/characters/zeimne/front.svg",
  46689. extra: 1969/1806,
  46690. bottom: 53/2022
  46691. }
  46692. },
  46693. },
  46694. [
  46695. {
  46696. name: "Normal",
  46697. height: math.unit(6 + 9/12, "feet"),
  46698. default: true
  46699. },
  46700. {
  46701. name: "Giant",
  46702. height: math.unit(550, "feet")
  46703. },
  46704. {
  46705. name: "Mega",
  46706. height: math.unit(3, "miles")
  46707. },
  46708. {
  46709. name: "Giga",
  46710. height: math.unit(250, "miles")
  46711. },
  46712. {
  46713. name: "Tera",
  46714. height: math.unit(1, "AU")
  46715. },
  46716. ]
  46717. ))
  46718. characterMakers.push(() => makeCharacter(
  46719. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46720. {
  46721. front: {
  46722. height: math.unit(5 + 2/12, "feet"),
  46723. name: "Front",
  46724. image: {
  46725. source: "./media/characters/grar/front.svg",
  46726. extra: 1331/1119,
  46727. bottom: 60/1391
  46728. }
  46729. },
  46730. back: {
  46731. height: math.unit(5 + 2/12, "feet"),
  46732. name: "Back",
  46733. image: {
  46734. source: "./media/characters/grar/back.svg",
  46735. extra: 1385/1169,
  46736. bottom: 23/1408
  46737. }
  46738. },
  46739. },
  46740. [
  46741. {
  46742. name: "Normal",
  46743. height: math.unit(5 + 2/12, "feet"),
  46744. default: true
  46745. },
  46746. ]
  46747. ))
  46748. characterMakers.push(() => makeCharacter(
  46749. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46750. {
  46751. front: {
  46752. height: math.unit(13 + 7/12, "feet"),
  46753. weight: math.unit(2200, "lb"),
  46754. name: "Front",
  46755. image: {
  46756. source: "./media/characters/endraya/front.svg",
  46757. extra: 1289/1215,
  46758. bottom: 50/1339
  46759. }
  46760. },
  46761. nude: {
  46762. height: math.unit(13 + 7/12, "feet"),
  46763. weight: math.unit(2200, "lb"),
  46764. name: "Nude",
  46765. image: {
  46766. source: "./media/characters/endraya/nude.svg",
  46767. extra: 1247/1171,
  46768. bottom: 40/1287
  46769. }
  46770. },
  46771. head: {
  46772. height: math.unit(2.6, "feet"),
  46773. name: "Head",
  46774. image: {
  46775. source: "./media/characters/endraya/head.svg"
  46776. }
  46777. },
  46778. slit: {
  46779. height: math.unit(3.4, "feet"),
  46780. name: "Slit",
  46781. image: {
  46782. source: "./media/characters/endraya/slit.svg"
  46783. }
  46784. },
  46785. },
  46786. [
  46787. {
  46788. name: "Normal",
  46789. height: math.unit(13 + 7/12, "feet"),
  46790. default: true
  46791. },
  46792. {
  46793. name: "Macro",
  46794. height: math.unit(200, "feet")
  46795. },
  46796. ]
  46797. ))
  46798. characterMakers.push(() => makeCharacter(
  46799. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46800. {
  46801. front: {
  46802. height: math.unit(1.81, "meters"),
  46803. weight: math.unit(69, "kg"),
  46804. name: "Front",
  46805. image: {
  46806. source: "./media/characters/rodryana/front.svg",
  46807. extra: 2002/1921,
  46808. bottom: 53/2055
  46809. }
  46810. },
  46811. back: {
  46812. height: math.unit(1.81, "meters"),
  46813. weight: math.unit(69, "kg"),
  46814. name: "Back",
  46815. image: {
  46816. source: "./media/characters/rodryana/back.svg",
  46817. extra: 1993/1926,
  46818. bottom: 48/2041
  46819. }
  46820. },
  46821. maw: {
  46822. height: math.unit(0.19769417475, "meters"),
  46823. name: "Maw",
  46824. image: {
  46825. source: "./media/characters/rodryana/maw.svg"
  46826. }
  46827. },
  46828. slit: {
  46829. height: math.unit(0.31631067961, "meters"),
  46830. name: "Slit",
  46831. image: {
  46832. source: "./media/characters/rodryana/slit.svg"
  46833. }
  46834. },
  46835. },
  46836. [
  46837. {
  46838. name: "Normal",
  46839. height: math.unit(1.81, "meters")
  46840. },
  46841. {
  46842. name: "Mini Macro",
  46843. height: math.unit(181, "meters")
  46844. },
  46845. {
  46846. name: "Macro",
  46847. height: math.unit(452, "meters"),
  46848. default: true
  46849. },
  46850. {
  46851. name: "Mega Macro",
  46852. height: math.unit(1.375, "km")
  46853. },
  46854. {
  46855. name: "Giga Macro",
  46856. height: math.unit(13.575, "km")
  46857. },
  46858. ]
  46859. ))
  46860. characterMakers.push(() => makeCharacter(
  46861. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46862. {
  46863. front: {
  46864. height: math.unit(6, "feet"),
  46865. weight: math.unit(1000, "lb"),
  46866. name: "Front",
  46867. image: {
  46868. source: "./media/characters/asaya/front.svg",
  46869. extra: 1460/1200,
  46870. bottom: 71/1531
  46871. }
  46872. },
  46873. },
  46874. [
  46875. {
  46876. name: "Normal",
  46877. height: math.unit(8, "km"),
  46878. default: true
  46879. },
  46880. ]
  46881. ))
  46882. characterMakers.push(() => makeCharacter(
  46883. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46884. {
  46885. front: {
  46886. height: math.unit(3.5, "meters"),
  46887. name: "Front",
  46888. image: {
  46889. source: "./media/characters/sarzu-and-israz/front.svg",
  46890. extra: 1570/1558,
  46891. bottom: 150/1720
  46892. },
  46893. },
  46894. back: {
  46895. height: math.unit(3.5, "meters"),
  46896. name: "Back",
  46897. image: {
  46898. source: "./media/characters/sarzu-and-israz/back.svg",
  46899. extra: 1523/1509,
  46900. bottom: 132/1655
  46901. },
  46902. },
  46903. frontFemale: {
  46904. height: math.unit(3.5, "meters"),
  46905. name: "Front (Female)",
  46906. image: {
  46907. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46908. extra: 1570/1558,
  46909. bottom: 150/1720
  46910. },
  46911. },
  46912. frontHerm: {
  46913. height: math.unit(3.5, "meters"),
  46914. name: "Front (Herm)",
  46915. image: {
  46916. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46917. extra: 1570/1558,
  46918. bottom: 150/1720
  46919. },
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(3.5, "meters"),
  46926. default: true,
  46927. },
  46928. {
  46929. name: "Macro",
  46930. height: math.unit(65.5, "meters"),
  46931. },
  46932. ],
  46933. ))
  46934. characterMakers.push(() => makeCharacter(
  46935. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46936. {
  46937. front: {
  46938. height: math.unit(6, "feet"),
  46939. weight: math.unit(250, "lb"),
  46940. name: "Front",
  46941. image: {
  46942. source: "./media/characters/zenimma/front.svg",
  46943. extra: 1346/1320,
  46944. bottom: 58/1404
  46945. }
  46946. },
  46947. back: {
  46948. height: math.unit(6, "feet"),
  46949. weight: math.unit(250, "lb"),
  46950. name: "Back",
  46951. image: {
  46952. source: "./media/characters/zenimma/back.svg",
  46953. extra: 1324/1308,
  46954. bottom: 44/1368
  46955. }
  46956. },
  46957. dick: {
  46958. height: math.unit(1.44, "feet"),
  46959. name: "Dick",
  46960. image: {
  46961. source: "./media/characters/zenimma/dick.svg"
  46962. }
  46963. },
  46964. },
  46965. [
  46966. {
  46967. name: "Canon Height",
  46968. height: math.unit(66, "miles"),
  46969. default: true
  46970. },
  46971. ]
  46972. ))
  46973. characterMakers.push(() => makeCharacter(
  46974. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46975. {
  46976. nude: {
  46977. height: math.unit(6, "feet"),
  46978. weight: math.unit(150, "lb"),
  46979. name: "Nude",
  46980. image: {
  46981. source: "./media/characters/shavon/nude.svg",
  46982. extra: 1242/1096,
  46983. bottom: 98/1340
  46984. }
  46985. },
  46986. dressed: {
  46987. height: math.unit(6, "feet"),
  46988. weight: math.unit(150, "lb"),
  46989. name: "Dressed",
  46990. image: {
  46991. source: "./media/characters/shavon/dressed.svg",
  46992. extra: 1242/1096,
  46993. bottom: 98/1340
  46994. }
  46995. },
  46996. },
  46997. [
  46998. {
  46999. name: "Macro",
  47000. height: math.unit(255, "feet"),
  47001. default: true
  47002. },
  47003. ]
  47004. ))
  47005. characterMakers.push(() => makeCharacter(
  47006. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47007. {
  47008. front: {
  47009. height: math.unit(6, "feet"),
  47010. name: "Front",
  47011. image: {
  47012. source: "./media/characters/steph/front.svg",
  47013. extra: 1430/1330,
  47014. bottom: 54/1484
  47015. }
  47016. },
  47017. },
  47018. [
  47019. {
  47020. name: "Normal",
  47021. height: math.unit(6, "feet"),
  47022. default: true
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47028. {
  47029. front: {
  47030. height: math.unit(9, "feet"),
  47031. weight: math.unit(400, "lb"),
  47032. name: "Front",
  47033. image: {
  47034. source: "./media/characters/kil'aman/front.svg",
  47035. extra: 1210/1159,
  47036. bottom: 109/1319
  47037. }
  47038. },
  47039. head: {
  47040. height: math.unit(2.14, "feet"),
  47041. name: "Head",
  47042. image: {
  47043. source: "./media/characters/kil'aman/head.svg"
  47044. }
  47045. },
  47046. maw: {
  47047. height: math.unit(1.21, "feet"),
  47048. name: "Maw",
  47049. image: {
  47050. source: "./media/characters/kil'aman/maw.svg"
  47051. }
  47052. },
  47053. foot: {
  47054. height: math.unit(1.7, "feet"),
  47055. name: "Foot",
  47056. image: {
  47057. source: "./media/characters/kil'aman/foot.svg"
  47058. }
  47059. },
  47060. dick: {
  47061. height: math.unit(2.1, "feet"),
  47062. name: "Dick",
  47063. image: {
  47064. source: "./media/characters/kil'aman/dick.svg"
  47065. }
  47066. },
  47067. },
  47068. [
  47069. {
  47070. name: "Normal",
  47071. height: math.unit(9, "feet")
  47072. },
  47073. {
  47074. name: "Canon Height",
  47075. height: math.unit(10, "miles"),
  47076. default: true
  47077. },
  47078. {
  47079. name: "Maximum",
  47080. height: math.unit(6e9, "miles")
  47081. },
  47082. ]
  47083. ))
  47084. characterMakers.push(() => makeCharacter(
  47085. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47086. {
  47087. front: {
  47088. height: math.unit(90, "feet"),
  47089. weight: math.unit(675000, "lb"),
  47090. name: "Front",
  47091. image: {
  47092. source: "./media/characters/qadan/front.svg",
  47093. extra: 1012/1004,
  47094. bottom: 78/1090
  47095. }
  47096. },
  47097. back: {
  47098. height: math.unit(90, "feet"),
  47099. weight: math.unit(675000, "lb"),
  47100. name: "Back",
  47101. image: {
  47102. source: "./media/characters/qadan/back.svg",
  47103. extra: 1042/1031,
  47104. bottom: 55/1097
  47105. }
  47106. },
  47107. armored: {
  47108. height: math.unit(90, "feet"),
  47109. weight: math.unit(675000, "lb"),
  47110. name: "Armored",
  47111. image: {
  47112. source: "./media/characters/qadan/armored.svg",
  47113. extra: 1047/1037,
  47114. bottom: 48/1095
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(90, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(6, "feet"),
  47131. weight: math.unit(225, "lb"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/brooke/front.svg",
  47135. extra: 1050/1010,
  47136. bottom: 66/1116
  47137. }
  47138. },
  47139. back: {
  47140. height: math.unit(6, "feet"),
  47141. weight: math.unit(225, "lb"),
  47142. name: "Back",
  47143. image: {
  47144. source: "./media/characters/brooke/back.svg",
  47145. extra: 1053/1013,
  47146. bottom: 41/1094
  47147. }
  47148. },
  47149. dressed: {
  47150. height: math.unit(6, "feet"),
  47151. weight: math.unit(225, "lb"),
  47152. name: "Dressed",
  47153. image: {
  47154. source: "./media/characters/brooke/dressed.svg",
  47155. extra: 1050/1010,
  47156. bottom: 66/1116
  47157. }
  47158. },
  47159. },
  47160. [
  47161. {
  47162. name: "Canon Height",
  47163. height: math.unit(500, "miles"),
  47164. default: true
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47170. {
  47171. front: {
  47172. height: math.unit(6 + 2/12, "feet"),
  47173. weight: math.unit(210, "lb"),
  47174. name: "Front",
  47175. image: {
  47176. source: "./media/characters/wubs/front.svg",
  47177. extra: 1345/1325,
  47178. bottom: 70/1415
  47179. }
  47180. },
  47181. back: {
  47182. height: math.unit(6 + 2/12, "feet"),
  47183. weight: math.unit(210, "lb"),
  47184. name: "Back",
  47185. image: {
  47186. source: "./media/characters/wubs/back.svg",
  47187. extra: 1296/1275,
  47188. bottom: 58/1354
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Normal",
  47195. height: math.unit(6 + 2/12, "feet"),
  47196. default: true
  47197. },
  47198. {
  47199. name: "Macro",
  47200. height: math.unit(1000, "feet")
  47201. },
  47202. {
  47203. name: "Megamacro",
  47204. height: math.unit(1, "mile")
  47205. },
  47206. ]
  47207. ))
  47208. characterMakers.push(() => makeCharacter(
  47209. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47210. {
  47211. front: {
  47212. height: math.unit(4, "feet"),
  47213. weight: math.unit(120, "lb"),
  47214. name: "Front",
  47215. image: {
  47216. source: "./media/characters/blue/front.svg",
  47217. extra: 1636/1525,
  47218. bottom: 43/1679
  47219. }
  47220. },
  47221. back: {
  47222. height: math.unit(4, "feet"),
  47223. weight: math.unit(120, "lb"),
  47224. name: "Back",
  47225. image: {
  47226. source: "./media/characters/blue/back.svg",
  47227. extra: 1660/1560,
  47228. bottom: 57/1717
  47229. }
  47230. },
  47231. paws: {
  47232. height: math.unit(0.826, "feet"),
  47233. name: "Paws",
  47234. image: {
  47235. source: "./media/characters/blue/paws.svg"
  47236. }
  47237. },
  47238. },
  47239. [
  47240. {
  47241. name: "Micro",
  47242. height: math.unit(3, "inches")
  47243. },
  47244. {
  47245. name: "Normal",
  47246. height: math.unit(4, "feet"),
  47247. default: true
  47248. },
  47249. {
  47250. name: "Femenine Form",
  47251. height: math.unit(14, "feet")
  47252. },
  47253. {
  47254. name: "Werebat Form",
  47255. height: math.unit(18, "feet")
  47256. },
  47257. ]
  47258. ))
  47259. characterMakers.push(() => makeCharacter(
  47260. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47261. {
  47262. female: {
  47263. height: math.unit(7 + 4/12, "feet"),
  47264. weight: math.unit(243, "lb"),
  47265. name: "Female",
  47266. image: {
  47267. source: "./media/characters/kaya/female.svg",
  47268. extra: 975/898,
  47269. bottom: 34/1009
  47270. }
  47271. },
  47272. herm: {
  47273. height: math.unit(7 + 4/12, "feet"),
  47274. weight: math.unit(243, "lb"),
  47275. name: "Herm",
  47276. image: {
  47277. source: "./media/characters/kaya/herm.svg",
  47278. extra: 975/898,
  47279. bottom: 34/1009
  47280. }
  47281. },
  47282. },
  47283. [
  47284. {
  47285. name: "Normal",
  47286. height: math.unit(7 + 4/12, "feet"),
  47287. default: true
  47288. },
  47289. ]
  47290. ))
  47291. characterMakers.push(() => makeCharacter(
  47292. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47293. {
  47294. female: {
  47295. height: math.unit(9 + 4/12, "feet"),
  47296. weight: math.unit(398, "lb"),
  47297. name: "Female",
  47298. image: {
  47299. source: "./media/characters/kassandra/female.svg",
  47300. extra: 908/839,
  47301. bottom: 61/969
  47302. }
  47303. },
  47304. intersex: {
  47305. height: math.unit(9 + 4/12, "feet"),
  47306. weight: math.unit(398, "lb"),
  47307. name: "Intersex",
  47308. image: {
  47309. source: "./media/characters/kassandra/intersex.svg",
  47310. extra: 908/839,
  47311. bottom: 61/969
  47312. }
  47313. },
  47314. },
  47315. [
  47316. {
  47317. name: "Normal",
  47318. height: math.unit(9 + 4/12, "feet"),
  47319. default: true
  47320. },
  47321. ]
  47322. ))
  47323. characterMakers.push(() => makeCharacter(
  47324. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47325. {
  47326. front: {
  47327. height: math.unit(3, "meters"),
  47328. name: "Front",
  47329. image: {
  47330. source: "./media/characters/amy/front.svg",
  47331. extra: 1380/1343,
  47332. bottom: 70/1450
  47333. }
  47334. },
  47335. back: {
  47336. height: math.unit(3, "meters"),
  47337. name: "Back",
  47338. image: {
  47339. source: "./media/characters/amy/back.svg",
  47340. extra: 1380/1347,
  47341. bottom: 66/1446
  47342. }
  47343. },
  47344. },
  47345. [
  47346. {
  47347. name: "Normal",
  47348. height: math.unit(3, "meters"),
  47349. default: true
  47350. },
  47351. ]
  47352. ))
  47353. characterMakers.push(() => makeCharacter(
  47354. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47355. {
  47356. side: {
  47357. height: math.unit(47, "cm"),
  47358. weight: math.unit(10.8, "kg"),
  47359. name: "Side",
  47360. image: {
  47361. source: "./media/characters/alphaschakal/side.svg",
  47362. extra: 1058/568,
  47363. bottom: 62/1120
  47364. }
  47365. },
  47366. back: {
  47367. height: math.unit(78, "cm"),
  47368. weight: math.unit(10.8, "kg"),
  47369. name: "Back",
  47370. image: {
  47371. source: "./media/characters/alphaschakal/back.svg",
  47372. extra: 1102/942,
  47373. bottom: 185/1287
  47374. }
  47375. },
  47376. head: {
  47377. height: math.unit(28, "cm"),
  47378. name: "Head",
  47379. image: {
  47380. source: "./media/characters/alphaschakal/head.svg",
  47381. extra: 696/508,
  47382. bottom: 0/696
  47383. }
  47384. },
  47385. paw: {
  47386. height: math.unit(16, "cm"),
  47387. name: "Paw",
  47388. image: {
  47389. source: "./media/characters/alphaschakal/paw.svg"
  47390. }
  47391. },
  47392. },
  47393. [
  47394. {
  47395. name: "Normal",
  47396. height: math.unit(47, "cm"),
  47397. default: true
  47398. },
  47399. {
  47400. name: "Macro",
  47401. height: math.unit(340, "cm")
  47402. },
  47403. ]
  47404. ))
  47405. characterMakers.push(() => makeCharacter(
  47406. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47407. {
  47408. front: {
  47409. height: math.unit(36, "earths"),
  47410. name: "Front",
  47411. image: {
  47412. source: "./media/characters/ecobyss/front.svg",
  47413. extra: 1282/1215,
  47414. bottom: 11/1293
  47415. }
  47416. },
  47417. back: {
  47418. height: math.unit(36, "earths"),
  47419. name: "Back",
  47420. image: {
  47421. source: "./media/characters/ecobyss/back.svg",
  47422. extra: 1291/1222,
  47423. bottom: 8/1299
  47424. }
  47425. },
  47426. },
  47427. [
  47428. {
  47429. name: "Normal",
  47430. height: math.unit(36, "earths"),
  47431. default: true
  47432. },
  47433. ]
  47434. ))
  47435. characterMakers.push(() => makeCharacter(
  47436. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47437. {
  47438. front: {
  47439. height: math.unit(12, "feet"),
  47440. name: "Front",
  47441. image: {
  47442. source: "./media/characters/vasuk/front.svg",
  47443. extra: 1326/1207,
  47444. bottom: 64/1390
  47445. }
  47446. },
  47447. },
  47448. [
  47449. {
  47450. name: "Normal",
  47451. height: math.unit(12, "feet"),
  47452. default: true
  47453. },
  47454. ]
  47455. ))
  47456. characterMakers.push(() => makeCharacter(
  47457. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47458. {
  47459. side: {
  47460. height: math.unit(100, "feet"),
  47461. name: "Side",
  47462. image: {
  47463. source: "./media/characters/linneaus/side.svg",
  47464. extra: 987/807,
  47465. bottom: 47/1034
  47466. }
  47467. },
  47468. },
  47469. [
  47470. {
  47471. name: "Macro",
  47472. height: math.unit(100, "feet"),
  47473. default: true
  47474. },
  47475. ]
  47476. ))
  47477. characterMakers.push(() => makeCharacter(
  47478. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47479. {
  47480. front: {
  47481. height: math.unit(8, "feet"),
  47482. weight: math.unit(1200, "lb"),
  47483. name: "Front",
  47484. image: {
  47485. source: "./media/characters/nyterious-daligdig/front.svg",
  47486. extra: 1284/1094,
  47487. bottom: 84/1368
  47488. }
  47489. },
  47490. back: {
  47491. height: math.unit(8, "feet"),
  47492. weight: math.unit(1200, "lb"),
  47493. name: "Back",
  47494. image: {
  47495. source: "./media/characters/nyterious-daligdig/back.svg",
  47496. extra: 1301/1121,
  47497. bottom: 129/1430
  47498. }
  47499. },
  47500. mouth: {
  47501. height: math.unit(1.464, "feet"),
  47502. name: "Mouth",
  47503. image: {
  47504. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47505. }
  47506. },
  47507. },
  47508. [
  47509. {
  47510. name: "Small",
  47511. height: math.unit(8, "feet"),
  47512. default: true
  47513. },
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(15, "feet")
  47517. },
  47518. {
  47519. name: "Macro",
  47520. height: math.unit(90, "feet")
  47521. },
  47522. ]
  47523. ))
  47524. characterMakers.push(() => makeCharacter(
  47525. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47526. {
  47527. front: {
  47528. height: math.unit(7 + 4/12, "feet"),
  47529. weight: math.unit(252, "lb"),
  47530. name: "Front",
  47531. image: {
  47532. source: "./media/characters/bandel/front.svg",
  47533. extra: 1946/1775,
  47534. bottom: 26/1972
  47535. }
  47536. },
  47537. back: {
  47538. height: math.unit(7 + 4/12, "feet"),
  47539. weight: math.unit(252, "lb"),
  47540. name: "Back",
  47541. image: {
  47542. source: "./media/characters/bandel/back.svg",
  47543. extra: 1940/1770,
  47544. bottom: 25/1965
  47545. }
  47546. },
  47547. maw: {
  47548. height: math.unit(2.15, "feet"),
  47549. name: "Maw",
  47550. image: {
  47551. source: "./media/characters/bandel/maw.svg"
  47552. }
  47553. },
  47554. stomach: {
  47555. height: math.unit(1.95, "feet"),
  47556. name: "Stomach",
  47557. image: {
  47558. source: "./media/characters/bandel/stomach.svg"
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(7 + 4/12, "feet"),
  47566. default: true
  47567. },
  47568. ]
  47569. ))
  47570. characterMakers.push(() => makeCharacter(
  47571. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47572. {
  47573. front: {
  47574. height: math.unit(10 + 5/12, "feet"),
  47575. weight: math.unit(773.5, "kg"),
  47576. name: "Front",
  47577. image: {
  47578. source: "./media/characters/zed/front.svg",
  47579. extra: 987/941,
  47580. bottom: 52/1039
  47581. }
  47582. },
  47583. },
  47584. [
  47585. {
  47586. name: "Short",
  47587. height: math.unit(5 + 4/12, "feet")
  47588. },
  47589. {
  47590. name: "Average",
  47591. height: math.unit(10 + 5/12, "feet"),
  47592. default: true
  47593. },
  47594. {
  47595. name: "Mini-Macro",
  47596. height: math.unit(24 + 9/12, "feet")
  47597. },
  47598. {
  47599. name: "Macro",
  47600. height: math.unit(249, "feet")
  47601. },
  47602. {
  47603. name: "Mega-Macro",
  47604. height: math.unit(12490, "feet")
  47605. },
  47606. {
  47607. name: "Giga-Macro",
  47608. height: math.unit(24.9, "miles")
  47609. },
  47610. {
  47611. name: "Tera-Macro",
  47612. height: math.unit(24900, "miles")
  47613. },
  47614. {
  47615. name: "Cosmic Scale",
  47616. height: math.unit(38.9, "lightyears")
  47617. },
  47618. {
  47619. name: "Universal Scale",
  47620. height: math.unit(138e12, "lightyears")
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47626. {
  47627. front: {
  47628. height: math.unit(1561, "inches"),
  47629. name: "Front",
  47630. image: {
  47631. source: "./media/characters/ivan/front.svg",
  47632. extra: 1126/1071,
  47633. bottom: 26/1152
  47634. }
  47635. },
  47636. back: {
  47637. height: math.unit(1561, "inches"),
  47638. name: "Back",
  47639. image: {
  47640. source: "./media/characters/ivan/back.svg",
  47641. extra: 1134/1079,
  47642. bottom: 30/1164
  47643. }
  47644. },
  47645. },
  47646. [
  47647. {
  47648. name: "Normal",
  47649. height: math.unit(1561, "inches"),
  47650. default: true
  47651. },
  47652. ]
  47653. ))
  47654. characterMakers.push(() => makeCharacter(
  47655. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47656. {
  47657. front: {
  47658. height: math.unit(5 + 7/12, "feet"),
  47659. weight: math.unit(150, "lb"),
  47660. name: "Front",
  47661. image: {
  47662. source: "./media/characters/robin-arctic-hare/front.svg",
  47663. extra: 1148/974,
  47664. bottom: 20/1168
  47665. }
  47666. },
  47667. },
  47668. [
  47669. {
  47670. name: "Normal",
  47671. height: math.unit(5 + 7/12, "feet"),
  47672. default: true
  47673. },
  47674. ]
  47675. ))
  47676. characterMakers.push(() => makeCharacter(
  47677. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47678. {
  47679. side: {
  47680. height: math.unit(5, "feet"),
  47681. name: "Side",
  47682. image: {
  47683. source: "./media/characters/birch/side.svg",
  47684. extra: 985/796,
  47685. bottom: 111/1096
  47686. }
  47687. },
  47688. },
  47689. [
  47690. {
  47691. name: "Normal",
  47692. height: math.unit(5, "feet"),
  47693. default: true
  47694. },
  47695. ]
  47696. ))
  47697. characterMakers.push(() => makeCharacter(
  47698. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47699. {
  47700. front: {
  47701. height: math.unit(4, "feet"),
  47702. name: "Front",
  47703. image: {
  47704. source: "./media/characters/rasp/front.svg",
  47705. extra: 561/478,
  47706. bottom: 74/635
  47707. }
  47708. },
  47709. },
  47710. [
  47711. {
  47712. name: "Normal",
  47713. height: math.unit(4, "feet"),
  47714. default: true
  47715. },
  47716. ]
  47717. ))
  47718. characterMakers.push(() => makeCharacter(
  47719. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47720. {
  47721. front: {
  47722. height: math.unit(4 + 6/12, "feet"),
  47723. name: "Front",
  47724. image: {
  47725. source: "./media/characters/agatha/front.svg",
  47726. extra: 947/933,
  47727. bottom: 42/989
  47728. }
  47729. },
  47730. back: {
  47731. height: math.unit(4 + 6/12, "feet"),
  47732. name: "Back",
  47733. image: {
  47734. source: "./media/characters/agatha/back.svg",
  47735. extra: 935/922,
  47736. bottom: 48/983
  47737. }
  47738. },
  47739. },
  47740. [
  47741. {
  47742. name: "Normal",
  47743. height: math.unit(4 + 6 /12, "feet"),
  47744. default: true
  47745. },
  47746. {
  47747. name: "Max Size",
  47748. height: math.unit(500, "feet")
  47749. },
  47750. ]
  47751. ))
  47752. characterMakers.push(() => makeCharacter(
  47753. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47754. {
  47755. side: {
  47756. height: math.unit(30, "feet"),
  47757. name: "Side",
  47758. image: {
  47759. source: "./media/characters/roggy/side.svg",
  47760. extra: 909/643,
  47761. bottom: 63/972
  47762. }
  47763. },
  47764. lounging: {
  47765. height: math.unit(20, "feet"),
  47766. name: "Lounging",
  47767. image: {
  47768. source: "./media/characters/roggy/lounging.svg",
  47769. extra: 643/479,
  47770. bottom: 145/788
  47771. }
  47772. },
  47773. handpaw: {
  47774. height: math.unit(13.1, "feet"),
  47775. name: "Handpaw",
  47776. image: {
  47777. source: "./media/characters/roggy/handpaw.svg"
  47778. }
  47779. },
  47780. footpaw: {
  47781. height: math.unit(15.8, "feet"),
  47782. name: "Footpaw",
  47783. image: {
  47784. source: "./media/characters/roggy/footpaw.svg"
  47785. }
  47786. },
  47787. },
  47788. [
  47789. {
  47790. name: "Menacing",
  47791. height: math.unit(30, "feet"),
  47792. default: true
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47798. {
  47799. front: {
  47800. height: math.unit(5 + 7/12, "feet"),
  47801. weight: math.unit(135, "lb"),
  47802. name: "Front",
  47803. image: {
  47804. source: "./media/characters/naomi/front.svg",
  47805. extra: 1209/1154,
  47806. bottom: 129/1338
  47807. }
  47808. },
  47809. back: {
  47810. height: math.unit(5 + 7/12, "feet"),
  47811. weight: math.unit(135, "lb"),
  47812. name: "Back",
  47813. image: {
  47814. source: "./media/characters/naomi/back.svg",
  47815. extra: 1252/1190,
  47816. bottom: 23/1275
  47817. }
  47818. },
  47819. },
  47820. [
  47821. {
  47822. name: "Normal",
  47823. height: math.unit(5 + 7 /12, "feet"),
  47824. default: true
  47825. },
  47826. ]
  47827. ))
  47828. characterMakers.push(() => makeCharacter(
  47829. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47830. {
  47831. side: {
  47832. height: math.unit(35, "meters"),
  47833. name: "Side",
  47834. image: {
  47835. source: "./media/characters/kimpi/side.svg",
  47836. extra: 419/382,
  47837. bottom: 63/482
  47838. }
  47839. },
  47840. hand: {
  47841. height: math.unit(8.96, "meters"),
  47842. name: "Hand",
  47843. image: {
  47844. source: "./media/characters/kimpi/hand.svg"
  47845. }
  47846. },
  47847. },
  47848. [
  47849. {
  47850. name: "Normal",
  47851. height: math.unit(35, "meters"),
  47852. default: true
  47853. },
  47854. ]
  47855. ))
  47856. characterMakers.push(() => makeCharacter(
  47857. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47858. {
  47859. front: {
  47860. height: math.unit(4 + 4/12, "feet"),
  47861. name: "Front",
  47862. image: {
  47863. source: "./media/characters/pepper-purrloin/front.svg",
  47864. extra: 1141/1024,
  47865. bottom: 21/1162
  47866. }
  47867. },
  47868. },
  47869. [
  47870. {
  47871. name: "Normal",
  47872. height: math.unit(4 + 4/12, "feet"),
  47873. default: true
  47874. },
  47875. ]
  47876. ))
  47877. characterMakers.push(() => makeCharacter(
  47878. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47879. {
  47880. front: {
  47881. height: math.unit(6 + 2/12, "feet"),
  47882. name: "Front",
  47883. image: {
  47884. source: "./media/characters/raphael/front.svg",
  47885. extra: 1101/962,
  47886. bottom: 59/1160
  47887. }
  47888. },
  47889. },
  47890. [
  47891. {
  47892. name: "Normal",
  47893. height: math.unit(6 + 2/12, "feet"),
  47894. default: true
  47895. },
  47896. ]
  47897. ))
  47898. characterMakers.push(() => makeCharacter(
  47899. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47900. {
  47901. front: {
  47902. height: math.unit(6, "feet"),
  47903. weight: math.unit(150, "lb"),
  47904. name: "Front",
  47905. image: {
  47906. source: "./media/characters/victor-williams/front.svg",
  47907. extra: 1894/1825,
  47908. bottom: 67/1961
  47909. }
  47910. },
  47911. },
  47912. [
  47913. {
  47914. name: "Normal",
  47915. height: math.unit(6, "feet"),
  47916. default: true
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47922. {
  47923. front: {
  47924. height: math.unit(5 + 8/12, "feet"),
  47925. weight: math.unit(150, "lb"),
  47926. name: "Front",
  47927. image: {
  47928. source: "./media/characters/rachel/front.svg",
  47929. extra: 1902/1787,
  47930. bottom: 46/1948
  47931. }
  47932. },
  47933. },
  47934. [
  47935. {
  47936. name: "Base Height",
  47937. height: math.unit(5 + 8/12, "feet"),
  47938. default: true
  47939. },
  47940. {
  47941. name: "Macro",
  47942. height: math.unit(200, "feet")
  47943. },
  47944. {
  47945. name: "Mega Macro",
  47946. height: math.unit(1, "mile")
  47947. },
  47948. {
  47949. name: "Giga Macro",
  47950. height: math.unit(1500, "miles")
  47951. },
  47952. {
  47953. name: "Tera Macro",
  47954. height: math.unit(8000, "miles")
  47955. },
  47956. {
  47957. name: "Tera Macro+",
  47958. height: math.unit(2e5, "miles")
  47959. },
  47960. ]
  47961. ))
  47962. characterMakers.push(() => makeCharacter(
  47963. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47964. {
  47965. front: {
  47966. height: math.unit(6.5, "feet"),
  47967. name: "Front",
  47968. image: {
  47969. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47970. extra: 860/819,
  47971. bottom: 307/1167
  47972. }
  47973. },
  47974. back: {
  47975. height: math.unit(6.5, "feet"),
  47976. name: "Back",
  47977. image: {
  47978. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47979. extra: 880/837,
  47980. bottom: 395/1275
  47981. }
  47982. },
  47983. sleeping: {
  47984. height: math.unit(2.79, "feet"),
  47985. name: "Sleeping",
  47986. image: {
  47987. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47988. extra: 465/383,
  47989. bottom: 263/728
  47990. }
  47991. },
  47992. maw: {
  47993. height: math.unit(2.52, "feet"),
  47994. name: "Maw",
  47995. image: {
  47996. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47997. }
  47998. },
  47999. },
  48000. [
  48001. {
  48002. name: "Normal",
  48003. height: math.unit(6.5, "feet"),
  48004. default: true
  48005. },
  48006. ]
  48007. ))
  48008. characterMakers.push(() => makeCharacter(
  48009. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48010. {
  48011. front: {
  48012. height: math.unit(5, "feet"),
  48013. name: "Front",
  48014. image: {
  48015. source: "./media/characters/nova-nerium/front.svg",
  48016. extra: 1548/1392,
  48017. bottom: 374/1922
  48018. }
  48019. },
  48020. back: {
  48021. height: math.unit(5, "feet"),
  48022. name: "Back",
  48023. image: {
  48024. source: "./media/characters/nova-nerium/back.svg",
  48025. extra: 1658/1468,
  48026. bottom: 257/1915
  48027. }
  48028. },
  48029. },
  48030. [
  48031. {
  48032. name: "Normal",
  48033. height: math.unit(5, "feet"),
  48034. default: true
  48035. },
  48036. ]
  48037. ))
  48038. characterMakers.push(() => makeCharacter(
  48039. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48040. {
  48041. front: {
  48042. height: math.unit(5 + 4/12, "feet"),
  48043. name: "Front",
  48044. image: {
  48045. source: "./media/characters/ashe-pyriph/front.svg",
  48046. extra: 1935/1747,
  48047. bottom: 60/1995
  48048. }
  48049. },
  48050. },
  48051. [
  48052. {
  48053. name: "Normal",
  48054. height: math.unit(5 + 4/12, "feet"),
  48055. default: true
  48056. },
  48057. ]
  48058. ))
  48059. characterMakers.push(() => makeCharacter(
  48060. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48061. {
  48062. front: {
  48063. height: math.unit(8.7, "feet"),
  48064. name: "Front",
  48065. image: {
  48066. source: "./media/characters/flicker-wisp/front.svg",
  48067. extra: 1835/1613,
  48068. bottom: 449/2284
  48069. }
  48070. },
  48071. side: {
  48072. height: math.unit(8.7, "feet"),
  48073. name: "Side",
  48074. image: {
  48075. source: "./media/characters/flicker-wisp/side.svg",
  48076. extra: 1841/1642,
  48077. bottom: 336/2177
  48078. },
  48079. default: true
  48080. },
  48081. maw: {
  48082. height: math.unit(3.35, "feet"),
  48083. name: "Maw",
  48084. image: {
  48085. source: "./media/characters/flicker-wisp/maw.svg",
  48086. extra: 2338/1506,
  48087. bottom: 0/2338
  48088. }
  48089. },
  48090. ovipositor: {
  48091. height: math.unit(4.95, "feet"),
  48092. name: "Ovipositor",
  48093. image: {
  48094. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48095. }
  48096. },
  48097. egg: {
  48098. height: math.unit(0.385, "feet"),
  48099. weight: math.unit(2, "lb"),
  48100. name: "Egg",
  48101. image: {
  48102. source: "./media/characters/flicker-wisp/egg.svg"
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(8.7, "feet"),
  48110. default: true
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48116. {
  48117. side: {
  48118. height: math.unit(11, "feet"),
  48119. name: "Side",
  48120. image: {
  48121. source: "./media/characters/faefnul/side.svg",
  48122. extra: 1100/1007,
  48123. bottom: 0/1100
  48124. }
  48125. },
  48126. },
  48127. [
  48128. {
  48129. name: "Normal",
  48130. height: math.unit(11, "feet"),
  48131. default: true
  48132. },
  48133. ]
  48134. ))
  48135. characterMakers.push(() => makeCharacter(
  48136. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48137. {
  48138. front: {
  48139. height: math.unit(6 + 2/12, "feet"),
  48140. name: "Front",
  48141. image: {
  48142. source: "./media/characters/shady/front.svg",
  48143. extra: 502/461,
  48144. bottom: 9/511
  48145. }
  48146. },
  48147. kneeling: {
  48148. height: math.unit(4.6, "feet"),
  48149. name: "Kneeling",
  48150. image: {
  48151. source: "./media/characters/shady/kneeling.svg",
  48152. extra: 1328/1219,
  48153. bottom: 117/1445
  48154. }
  48155. },
  48156. maw: {
  48157. height: math.unit(2, "feet"),
  48158. name: "Maw",
  48159. image: {
  48160. source: "./media/characters/shady/maw.svg"
  48161. }
  48162. },
  48163. },
  48164. [
  48165. {
  48166. name: "Nano",
  48167. height: math.unit(1, "mm")
  48168. },
  48169. {
  48170. name: "Micro",
  48171. height: math.unit(12, "mm")
  48172. },
  48173. {
  48174. name: "Tiny",
  48175. height: math.unit(3, "inches")
  48176. },
  48177. {
  48178. name: "Normal",
  48179. height: math.unit(6 + 2/12, "feet"),
  48180. default: true
  48181. },
  48182. {
  48183. name: "Big",
  48184. height: math.unit(15, "feet")
  48185. },
  48186. {
  48187. name: "Macro",
  48188. height: math.unit(150, "feet")
  48189. },
  48190. {
  48191. name: "Titanic",
  48192. height: math.unit(500, "feet")
  48193. },
  48194. ]
  48195. ))
  48196. characterMakers.push(() => makeCharacter(
  48197. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48198. {
  48199. front: {
  48200. height: math.unit(12, "feet"),
  48201. name: "Front",
  48202. image: {
  48203. source: "./media/characters/fenrir/front.svg",
  48204. extra: 968/875,
  48205. bottom: 22/990
  48206. }
  48207. },
  48208. },
  48209. [
  48210. {
  48211. name: "Big",
  48212. height: math.unit(12, "feet"),
  48213. default: true
  48214. },
  48215. ]
  48216. ))
  48217. characterMakers.push(() => makeCharacter(
  48218. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48219. {
  48220. front: {
  48221. height: math.unit(5 + 4/12, "feet"),
  48222. name: "Front",
  48223. image: {
  48224. source: "./media/characters/makar/front.svg",
  48225. extra: 1181/1112,
  48226. bottom: 78/1259
  48227. }
  48228. },
  48229. },
  48230. [
  48231. {
  48232. name: "Normal",
  48233. height: math.unit(5 + 4/12, "feet"),
  48234. default: true
  48235. },
  48236. ]
  48237. ))
  48238. characterMakers.push(() => makeCharacter(
  48239. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48240. {
  48241. front: {
  48242. height: math.unit(5 + 7/12, "feet"),
  48243. name: "Front",
  48244. image: {
  48245. source: "./media/characters/callow/front.svg",
  48246. extra: 1482/1304,
  48247. bottom: 23/1505
  48248. }
  48249. },
  48250. back: {
  48251. height: math.unit(5 + 7/12, "feet"),
  48252. name: "Back",
  48253. image: {
  48254. source: "./media/characters/callow/back.svg",
  48255. extra: 1484/1296,
  48256. bottom: 25/1509
  48257. }
  48258. },
  48259. },
  48260. [
  48261. {
  48262. name: "Micro",
  48263. height: math.unit(3, "inches"),
  48264. default: true
  48265. },
  48266. {
  48267. name: "Normal",
  48268. height: math.unit(5 + 7/12, "feet")
  48269. },
  48270. ]
  48271. ))
  48272. characterMakers.push(() => makeCharacter(
  48273. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48274. {
  48275. front: {
  48276. height: math.unit(6 + 2/12, "feet"),
  48277. name: "Front",
  48278. image: {
  48279. source: "./media/characters/natel/front.svg",
  48280. extra: 1833/1692,
  48281. bottom: 166/1999
  48282. }
  48283. },
  48284. },
  48285. [
  48286. {
  48287. name: "Normal",
  48288. height: math.unit(6 + 2/12, "feet"),
  48289. default: true
  48290. },
  48291. ]
  48292. ))
  48293. characterMakers.push(() => makeCharacter(
  48294. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48295. {
  48296. front: {
  48297. height: math.unit(1.75, "meters"),
  48298. name: "Front",
  48299. image: {
  48300. source: "./media/characters/misu/front.svg",
  48301. extra: 1690/1558,
  48302. bottom: 234/1924
  48303. }
  48304. },
  48305. back: {
  48306. height: math.unit(1.75, "meters"),
  48307. name: "Back",
  48308. image: {
  48309. source: "./media/characters/misu/back.svg",
  48310. extra: 1762/1618,
  48311. bottom: 146/1908
  48312. }
  48313. },
  48314. frontNude: {
  48315. height: math.unit(1.75, "meters"),
  48316. name: "Front (Nude)",
  48317. image: {
  48318. source: "./media/characters/misu/front-nude.svg",
  48319. extra: 1690/1558,
  48320. bottom: 234/1924
  48321. }
  48322. },
  48323. backNude: {
  48324. height: math.unit(1.75, "meters"),
  48325. name: "Back (Nude)",
  48326. image: {
  48327. source: "./media/characters/misu/back-nude.svg",
  48328. extra: 1762/1618,
  48329. bottom: 146/1908
  48330. }
  48331. },
  48332. frontErect: {
  48333. height: math.unit(1.75, "meters"),
  48334. name: "Front (Erect)",
  48335. image: {
  48336. source: "./media/characters/misu/front-erect.svg",
  48337. extra: 1690/1558,
  48338. bottom: 234/1924
  48339. }
  48340. },
  48341. maw: {
  48342. height: math.unit(0.47, "meters"),
  48343. name: "Maw",
  48344. image: {
  48345. source: "./media/characters/misu/maw.svg"
  48346. }
  48347. },
  48348. head: {
  48349. height: math.unit(0.35, "meters"),
  48350. name: "Head",
  48351. image: {
  48352. source: "./media/characters/misu/head.svg"
  48353. }
  48354. },
  48355. rear: {
  48356. height: math.unit(0.47, "meters"),
  48357. name: "Rear",
  48358. image: {
  48359. source: "./media/characters/misu/rear.svg"
  48360. }
  48361. },
  48362. },
  48363. [
  48364. {
  48365. name: "Normal",
  48366. height: math.unit(1.75, "meters")
  48367. },
  48368. {
  48369. name: "Not good for the people",
  48370. height: math.unit(42, "meters")
  48371. },
  48372. {
  48373. name: "Not good for the neighborhood",
  48374. height: math.unit(135, "meters")
  48375. },
  48376. {
  48377. name: "Bit bigger problem",
  48378. height: math.unit(380, "meters"),
  48379. default: true
  48380. },
  48381. {
  48382. name: "Not good for the city",
  48383. height: math.unit(1.5, "km")
  48384. },
  48385. {
  48386. name: "Not good for the county",
  48387. height: math.unit(5.5, "km")
  48388. },
  48389. {
  48390. name: "Not good for the state",
  48391. height: math.unit(25, "km")
  48392. },
  48393. {
  48394. name: "Not good for the country",
  48395. height: math.unit(125, "km")
  48396. },
  48397. {
  48398. name: "Not good for the continent",
  48399. height: math.unit(2100, "km")
  48400. },
  48401. {
  48402. name: "Not good for the planet",
  48403. height: math.unit(35000, "km")
  48404. },
  48405. {
  48406. name: "Just no",
  48407. height: math.unit(8.5e18, "km")
  48408. },
  48409. ]
  48410. ))
  48411. characterMakers.push(() => makeCharacter(
  48412. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48413. {
  48414. front: {
  48415. height: math.unit(6.5, "feet"),
  48416. name: "Front",
  48417. image: {
  48418. source: "./media/characters/poppy/front.svg",
  48419. extra: 1878/1812,
  48420. bottom: 43/1921
  48421. }
  48422. },
  48423. feet: {
  48424. height: math.unit(1.06, "feet"),
  48425. name: "Feet",
  48426. image: {
  48427. source: "./media/characters/poppy/feet.svg",
  48428. extra: 1083/1083,
  48429. bottom: 87/1170
  48430. }
  48431. },
  48432. },
  48433. [
  48434. {
  48435. name: "Human",
  48436. height: math.unit(6.5, "feet")
  48437. },
  48438. {
  48439. name: "Default",
  48440. height: math.unit(300, "feet"),
  48441. default: true
  48442. },
  48443. {
  48444. name: "Huge",
  48445. height: math.unit(850, "feet")
  48446. },
  48447. {
  48448. name: "Mega",
  48449. height: math.unit(8000, "feet")
  48450. },
  48451. {
  48452. name: "Giga",
  48453. height: math.unit(300, "miles")
  48454. },
  48455. ]
  48456. ))
  48457. characterMakers.push(() => makeCharacter(
  48458. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48459. {
  48460. bipedal: {
  48461. height: math.unit(7, "feet"),
  48462. name: "Bipedal",
  48463. image: {
  48464. source: "./media/characters/zener/bipedal.svg",
  48465. extra: 874/805,
  48466. bottom: 109/983
  48467. }
  48468. },
  48469. quadrupedal: {
  48470. height: math.unit(4.64, "feet"),
  48471. name: "Quadrupedal",
  48472. image: {
  48473. source: "./media/characters/zener/quadrupedal.svg",
  48474. extra: 638/507,
  48475. bottom: 190/828
  48476. }
  48477. },
  48478. cock: {
  48479. height: math.unit(18, "inches"),
  48480. name: "Cock",
  48481. image: {
  48482. source: "./media/characters/zener/cock.svg"
  48483. }
  48484. },
  48485. },
  48486. [
  48487. {
  48488. name: "Normal",
  48489. height: math.unit(7, "feet"),
  48490. default: true
  48491. },
  48492. ]
  48493. ))
  48494. characterMakers.push(() => makeCharacter(
  48495. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48496. {
  48497. nude: {
  48498. height: math.unit(5 + 6/12, "feet"),
  48499. name: "Nude",
  48500. image: {
  48501. source: "./media/characters/charlie-dog/nude.svg",
  48502. extra: 768/734,
  48503. bottom: 26/794
  48504. }
  48505. },
  48506. dressed: {
  48507. height: math.unit(5 + 6/12, "feet"),
  48508. name: "Dressed",
  48509. image: {
  48510. source: "./media/characters/charlie-dog/dressed.svg",
  48511. extra: 768/734,
  48512. bottom: 26/794
  48513. }
  48514. },
  48515. },
  48516. [
  48517. {
  48518. name: "Normal",
  48519. height: math.unit(5 + 6/12, "feet"),
  48520. default: true
  48521. },
  48522. ]
  48523. ))
  48524. characterMakers.push(() => makeCharacter(
  48525. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48526. {
  48527. front: {
  48528. height: math.unit(6 + 4/12, "feet"),
  48529. name: "Front",
  48530. image: {
  48531. source: "./media/characters/ir'istrasz/front.svg",
  48532. extra: 1014/977,
  48533. bottom: 65/1079
  48534. }
  48535. },
  48536. back: {
  48537. height: math.unit(6 + 4/12, "feet"),
  48538. name: "Back",
  48539. image: {
  48540. source: "./media/characters/ir'istrasz/back.svg",
  48541. extra: 1024/992,
  48542. bottom: 34/1058
  48543. }
  48544. },
  48545. },
  48546. [
  48547. {
  48548. name: "Normal",
  48549. height: math.unit(6 + 4/12, "feet"),
  48550. default: true
  48551. },
  48552. ]
  48553. ))
  48554. characterMakers.push(() => makeCharacter(
  48555. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48556. {
  48557. front: {
  48558. height: math.unit(5 + 8/12, "feet"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/dee-ditto/front.svg",
  48562. extra: 1874/1785,
  48563. bottom: 68/1942
  48564. }
  48565. },
  48566. back: {
  48567. height: math.unit(5 + 8/12, "feet"),
  48568. name: "Back",
  48569. image: {
  48570. source: "./media/characters/dee-ditto/back.svg",
  48571. extra: 1870/1783,
  48572. bottom: 77/1947
  48573. }
  48574. },
  48575. },
  48576. [
  48577. {
  48578. name: "Normal",
  48579. height: math.unit(5 + 8/12, "feet"),
  48580. default: true
  48581. },
  48582. ]
  48583. ))
  48584. characterMakers.push(() => makeCharacter(
  48585. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48586. {
  48587. front: {
  48588. height: math.unit(7 + 6/12, "feet"),
  48589. name: "Front",
  48590. image: {
  48591. source: "./media/characters/fey/front.svg",
  48592. extra: 995/979,
  48593. bottom: 30/1025
  48594. }
  48595. },
  48596. back: {
  48597. height: math.unit(7 + 6/12, "feet"),
  48598. name: "Back",
  48599. image: {
  48600. source: "./media/characters/fey/back.svg",
  48601. extra: 1079/1008,
  48602. bottom: 5/1084
  48603. }
  48604. },
  48605. dressed: {
  48606. height: math.unit(7 + 6/12, "feet"),
  48607. name: "Dressed",
  48608. image: {
  48609. source: "./media/characters/fey/dressed.svg",
  48610. extra: 995/979,
  48611. bottom: 30/1025
  48612. }
  48613. },
  48614. },
  48615. [
  48616. {
  48617. name: "Normal",
  48618. height: math.unit(7 + 6/12, "feet"),
  48619. default: true
  48620. },
  48621. ]
  48622. ))
  48623. characterMakers.push(() => makeCharacter(
  48624. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48625. {
  48626. standing: {
  48627. height: math.unit(17, "feet"),
  48628. name: "Standing",
  48629. image: {
  48630. source: "./media/characters/aster/standing.svg",
  48631. extra: 1798/1598,
  48632. bottom: 117/1915
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(17, "feet"),
  48640. default: true
  48641. },
  48642. {
  48643. name: "Homewrecker",
  48644. height: math.unit(95, "feet")
  48645. },
  48646. {
  48647. name: "Planet Devourer",
  48648. height: math.unit(1008000, "miles")
  48649. },
  48650. ]
  48651. ))
  48652. characterMakers.push(() => makeCharacter(
  48653. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48654. {
  48655. front: {
  48656. height: math.unit(6 + 5/12, "feet"),
  48657. weight: math.unit(265, "lb"),
  48658. name: "Front",
  48659. image: {
  48660. source: "./media/characters/devon-childs/front.svg",
  48661. extra: 1795/1721,
  48662. bottom: 41/1836
  48663. }
  48664. },
  48665. side: {
  48666. height: math.unit(6 + 5/12, "feet"),
  48667. weight: math.unit(265, "lb"),
  48668. name: "Side",
  48669. image: {
  48670. source: "./media/characters/devon-childs/side.svg",
  48671. extra: 1812/1738,
  48672. bottom: 30/1842
  48673. }
  48674. },
  48675. back: {
  48676. height: math.unit(6 + 5/12, "feet"),
  48677. weight: math.unit(265, "lb"),
  48678. name: "Back",
  48679. image: {
  48680. source: "./media/characters/devon-childs/back.svg",
  48681. extra: 1808/1735,
  48682. bottom: 23/1831
  48683. }
  48684. },
  48685. hand: {
  48686. height: math.unit(1.464, "feet"),
  48687. name: "Hand",
  48688. image: {
  48689. source: "./media/characters/devon-childs/hand.svg"
  48690. }
  48691. },
  48692. foot: {
  48693. height: math.unit(1.6, "feet"),
  48694. name: "Foot",
  48695. image: {
  48696. source: "./media/characters/devon-childs/foot.svg"
  48697. }
  48698. },
  48699. },
  48700. [
  48701. {
  48702. name: "Micro",
  48703. height: math.unit(7, "cm")
  48704. },
  48705. {
  48706. name: "Normal",
  48707. height: math.unit(6 + 5/12, "feet"),
  48708. default: true
  48709. },
  48710. {
  48711. name: "Macro",
  48712. height: math.unit(154, "feet")
  48713. },
  48714. ]
  48715. ))
  48716. characterMakers.push(() => makeCharacter(
  48717. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48718. {
  48719. front: {
  48720. height: math.unit(6, "feet"),
  48721. weight: math.unit(180, "lb"),
  48722. name: "Front",
  48723. image: {
  48724. source: "./media/characters/lydemox-vir/front.svg",
  48725. extra: 1632/1435,
  48726. bottom: 58/1690
  48727. }
  48728. },
  48729. frontSFW: {
  48730. height: math.unit(6, "feet"),
  48731. weight: math.unit(180, "lb"),
  48732. name: "Front (SFW)",
  48733. image: {
  48734. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48735. extra: 1632/1435,
  48736. bottom: 58/1690
  48737. }
  48738. },
  48739. back: {
  48740. height: math.unit(6, "feet"),
  48741. weight: math.unit(180, "lb"),
  48742. name: "Back",
  48743. image: {
  48744. source: "./media/characters/lydemox-vir/back.svg",
  48745. extra: 1593/1408,
  48746. bottom: 31/1624
  48747. }
  48748. },
  48749. paw: {
  48750. height: math.unit(1.85, "feet"),
  48751. name: "Paw",
  48752. image: {
  48753. source: "./media/characters/lydemox-vir/paw.svg"
  48754. }
  48755. },
  48756. dick: {
  48757. height: math.unit(1.8, "feet"),
  48758. name: "Dick",
  48759. image: {
  48760. source: "./media/characters/lydemox-vir/dick.svg"
  48761. }
  48762. },
  48763. },
  48764. [
  48765. {
  48766. name: "Macro",
  48767. height: math.unit(100, "feet"),
  48768. default: true
  48769. },
  48770. {
  48771. name: "Teramacro",
  48772. height: math.unit(1, "earth")
  48773. },
  48774. {
  48775. name: "Planetary",
  48776. height: math.unit(20, "earths")
  48777. },
  48778. ]
  48779. ))
  48780. characterMakers.push(() => makeCharacter(
  48781. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48782. {
  48783. front: {
  48784. height: math.unit(15 + 8/12, "feet"),
  48785. weight: math.unit(1237, "kg"),
  48786. name: "Front",
  48787. image: {
  48788. source: "./media/characters/mia/front.svg",
  48789. extra: 1573/1446,
  48790. bottom: 58/1631
  48791. }
  48792. },
  48793. },
  48794. [
  48795. {
  48796. name: "Small",
  48797. height: math.unit(9 + 5/12, "feet")
  48798. },
  48799. {
  48800. name: "Normal",
  48801. height: math.unit(15 + 8/12, "feet"),
  48802. default: true
  48803. },
  48804. ]
  48805. ))
  48806. characterMakers.push(() => makeCharacter(
  48807. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48808. {
  48809. front: {
  48810. height: math.unit(10 + 6/12, "feet"),
  48811. weight: math.unit(1.3, "tons"),
  48812. name: "Front",
  48813. image: {
  48814. source: "./media/characters/mr-graves/front.svg",
  48815. extra: 1779/1695,
  48816. bottom: 198/1977
  48817. }
  48818. },
  48819. },
  48820. [
  48821. {
  48822. name: "Normal",
  48823. height: math.unit(10 + 6 /12, "feet"),
  48824. default: true
  48825. },
  48826. ]
  48827. ))
  48828. characterMakers.push(() => makeCharacter(
  48829. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48830. {
  48831. dressedFront: {
  48832. height: math.unit(5 + 8/12, "feet"),
  48833. weight: math.unit(125, "lb"),
  48834. name: "Dressed (Front)",
  48835. image: {
  48836. source: "./media/characters/jess/dressed-front.svg",
  48837. extra: 1176/1152,
  48838. bottom: 42/1218
  48839. }
  48840. },
  48841. dressedSide: {
  48842. height: math.unit(5 + 8/12, "feet"),
  48843. weight: math.unit(125, "lb"),
  48844. name: "Dressed (Side)",
  48845. image: {
  48846. source: "./media/characters/jess/dressed-side.svg",
  48847. extra: 1204/1190,
  48848. bottom: 6/1210
  48849. }
  48850. },
  48851. nudeFront: {
  48852. height: math.unit(5 + 8/12, "feet"),
  48853. weight: math.unit(125, "lb"),
  48854. name: "Nude (Front)",
  48855. image: {
  48856. source: "./media/characters/jess/nude-front.svg",
  48857. extra: 1176/1152,
  48858. bottom: 42/1218
  48859. }
  48860. },
  48861. nudeSide: {
  48862. height: math.unit(5 + 8/12, "feet"),
  48863. weight: math.unit(125, "lb"),
  48864. name: "Nude (Side)",
  48865. image: {
  48866. source: "./media/characters/jess/nude-side.svg",
  48867. extra: 1204/1190,
  48868. bottom: 6/1210
  48869. }
  48870. },
  48871. organsFront: {
  48872. height: math.unit(2.83799342105, "feet"),
  48873. name: "Organs (Front)",
  48874. image: {
  48875. source: "./media/characters/jess/organs-front.svg"
  48876. }
  48877. },
  48878. organsSide: {
  48879. height: math.unit(2.64225290474, "feet"),
  48880. name: "Organs (Side)",
  48881. image: {
  48882. source: "./media/characters/jess/organs-side.svg"
  48883. }
  48884. },
  48885. digestiveTractFront: {
  48886. height: math.unit(2.8106580871, "feet"),
  48887. name: "Digestive Tract (Front)",
  48888. image: {
  48889. source: "./media/characters/jess/digestive-tract-front.svg"
  48890. }
  48891. },
  48892. digestiveTractSide: {
  48893. height: math.unit(2.54365045014, "feet"),
  48894. name: "Digestive Tract (Side)",
  48895. image: {
  48896. source: "./media/characters/jess/digestive-tract-side.svg"
  48897. }
  48898. },
  48899. respiratorySystemFront: {
  48900. height: math.unit(1.11196233456, "feet"),
  48901. name: "Respiratory System (Front)",
  48902. image: {
  48903. source: "./media/characters/jess/respiratory-system-front.svg"
  48904. }
  48905. },
  48906. respiratorySystemSide: {
  48907. height: math.unit(0.89327966297, "feet"),
  48908. name: "Respiratory System (Side)",
  48909. image: {
  48910. source: "./media/characters/jess/respiratory-system-side.svg"
  48911. }
  48912. },
  48913. urinaryTractFront: {
  48914. height: math.unit(1.16126356186, "feet"),
  48915. name: "Urinary Tract (Front)",
  48916. image: {
  48917. source: "./media/characters/jess/urinary-tract-front.svg"
  48918. }
  48919. },
  48920. urinaryTractSide: {
  48921. height: math.unit(1.20910039627, "feet"),
  48922. name: "Urinary Tract (Side)",
  48923. image: {
  48924. source: "./media/characters/jess/urinary-tract-side.svg"
  48925. }
  48926. },
  48927. reproductiveOrgansFront: {
  48928. height: math.unit(0.48422591566, "feet"),
  48929. name: "Reproductive Organs (Front)",
  48930. image: {
  48931. source: "./media/characters/jess/reproductive-organs-front.svg"
  48932. }
  48933. },
  48934. reproductiveOrgansSide: {
  48935. height: math.unit(0.61553314481, "feet"),
  48936. name: "Reproductive Organs (Side)",
  48937. image: {
  48938. source: "./media/characters/jess/reproductive-organs-side.svg"
  48939. }
  48940. },
  48941. breastsFront: {
  48942. height: math.unit(0.47690395121, "feet"),
  48943. name: "Breasts (Front)",
  48944. image: {
  48945. source: "./media/characters/jess/breasts-front.svg"
  48946. }
  48947. },
  48948. breastsSide: {
  48949. height: math.unit(0.30556998307, "feet"),
  48950. name: "Breasts (Side)",
  48951. image: {
  48952. source: "./media/characters/jess/breasts-side.svg"
  48953. }
  48954. },
  48955. heartFront: {
  48956. height: math.unit(0.53011022622, "feet"),
  48957. name: "Heart (Front)",
  48958. image: {
  48959. source: "./media/characters/jess/heart-front.svg"
  48960. }
  48961. },
  48962. heartSide: {
  48963. height: math.unit(0.51790695213, "feet"),
  48964. name: "Heart (Side)",
  48965. image: {
  48966. source: "./media/characters/jess/heart-side.svg"
  48967. }
  48968. },
  48969. earsAndNoseFront: {
  48970. height: math.unit(0.29385483995, "feet"),
  48971. name: "Ears and Nose (Front)",
  48972. image: {
  48973. source: "./media/characters/jess/ears-and-nose-front.svg"
  48974. }
  48975. },
  48976. earsAndNoseSide: {
  48977. height: math.unit(0.18109658741, "feet"),
  48978. name: "Ears and Nose (Side)",
  48979. image: {
  48980. source: "./media/characters/jess/ears-and-nose-side.svg"
  48981. }
  48982. },
  48983. },
  48984. [
  48985. {
  48986. name: "Normal",
  48987. height: math.unit(5 + 8/12, "feet"),
  48988. default: true
  48989. },
  48990. ]
  48991. ))
  48992. characterMakers.push(() => makeCharacter(
  48993. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48994. {
  48995. front: {
  48996. height: math.unit(6, "feet"),
  48997. weight: math.unit(6.64467e-7, "grams"),
  48998. name: "Front",
  48999. image: {
  49000. source: "./media/characters/wimpering/front.svg",
  49001. extra: 597/587,
  49002. bottom: 34/631
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Micro",
  49009. height: math.unit(0.4, "mm"),
  49010. default: true
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49016. {
  49017. front: {
  49018. height: math.unit(5 + 2/12, "feet"),
  49019. weight: math.unit(110, "lb"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/keltre/front.svg",
  49023. extra: 1099/1057,
  49024. bottom: 22/1121
  49025. }
  49026. },
  49027. back: {
  49028. height: math.unit(5 + 2/12, "feet"),
  49029. weight: math.unit(110, "lb"),
  49030. name: "Back",
  49031. image: {
  49032. source: "./media/characters/keltre/back.svg",
  49033. extra: 1095/1053,
  49034. bottom: 17/1112
  49035. }
  49036. },
  49037. dressed: {
  49038. height: math.unit(5 + 2/12, "feet"),
  49039. weight: math.unit(110, "lb"),
  49040. name: "Dressed",
  49041. image: {
  49042. source: "./media/characters/keltre/dressed.svg",
  49043. extra: 1099/1057,
  49044. bottom: 22/1121
  49045. }
  49046. },
  49047. winter: {
  49048. height: math.unit(5 + 2/12, "feet"),
  49049. weight: math.unit(110, "lb"),
  49050. name: "Winter",
  49051. image: {
  49052. source: "./media/characters/keltre/winter.svg",
  49053. extra: 1099/1057,
  49054. bottom: 22/1121
  49055. }
  49056. },
  49057. head: {
  49058. height: math.unit(1.61 * 0.86, "feet"),
  49059. name: "Head",
  49060. image: {
  49061. source: "./media/characters/keltre/head.svg",
  49062. extra: 534/421,
  49063. bottom: 0/534
  49064. }
  49065. },
  49066. hand: {
  49067. height: math.unit(1.3 * 0.86, "feet"),
  49068. name: "Hand",
  49069. image: {
  49070. source: "./media/characters/keltre/hand.svg"
  49071. }
  49072. },
  49073. foot: {
  49074. height: math.unit(1.8 * 0.86, "feet"),
  49075. name: "Foot",
  49076. image: {
  49077. source: "./media/characters/keltre/foot.svg"
  49078. }
  49079. },
  49080. },
  49081. [
  49082. {
  49083. name: "Fine",
  49084. height: math.unit(1, "inch")
  49085. },
  49086. {
  49087. name: "Dimnutive",
  49088. height: math.unit(4, "inches")
  49089. },
  49090. {
  49091. name: "Tiny",
  49092. height: math.unit(1, "foot")
  49093. },
  49094. {
  49095. name: "Small",
  49096. height: math.unit(3, "feet")
  49097. },
  49098. {
  49099. name: "Normal",
  49100. height: math.unit(5 + 2/12, "feet"),
  49101. default: true
  49102. },
  49103. ]
  49104. ))
  49105. characterMakers.push(() => makeCharacter(
  49106. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49107. {
  49108. front: {
  49109. height: math.unit(6 + 2/12, "feet"),
  49110. name: "Front",
  49111. image: {
  49112. source: "./media/characters/nox/front.svg",
  49113. extra: 1917/1830,
  49114. bottom: 74/1991
  49115. }
  49116. },
  49117. back: {
  49118. height: math.unit(6 + 2/12, "feet"),
  49119. name: "Back",
  49120. image: {
  49121. source: "./media/characters/nox/back.svg",
  49122. extra: 1896/1815,
  49123. bottom: 21/1917
  49124. }
  49125. },
  49126. head: {
  49127. height: math.unit(1.1, "feet"),
  49128. name: "Head",
  49129. image: {
  49130. source: "./media/characters/nox/head.svg",
  49131. extra: 874/704,
  49132. bottom: 0/874
  49133. }
  49134. },
  49135. tattoo: {
  49136. height: math.unit(0.729, "feet"),
  49137. name: "Tattoo",
  49138. image: {
  49139. source: "./media/characters/nox/tattoo.svg"
  49140. }
  49141. },
  49142. },
  49143. [
  49144. {
  49145. name: "Normal",
  49146. height: math.unit(6 + 2/12, "feet")
  49147. },
  49148. {
  49149. name: "Gigamacro",
  49150. height: math.unit(2, "earths"),
  49151. default: true
  49152. },
  49153. {
  49154. name: "Cosmic",
  49155. height: math.unit(867, "yottameters")
  49156. },
  49157. ]
  49158. ))
  49159. characterMakers.push(() => makeCharacter(
  49160. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49161. {
  49162. front: {
  49163. height: math.unit(6, "feet"),
  49164. weight: math.unit(150, "lb"),
  49165. name: "Front",
  49166. image: {
  49167. source: "./media/characters/caspian/front.svg",
  49168. extra: 1443/1359,
  49169. bottom: 0/1443
  49170. }
  49171. },
  49172. back: {
  49173. height: math.unit(6, "feet"),
  49174. weight: math.unit(150, "lb"),
  49175. name: "Back",
  49176. image: {
  49177. source: "./media/characters/caspian/back.svg",
  49178. extra: 1379/1309,
  49179. bottom: 0/1379
  49180. }
  49181. },
  49182. head: {
  49183. height: math.unit(0.9, "feet"),
  49184. name: "Head",
  49185. image: {
  49186. source: "./media/characters/caspian/head.svg",
  49187. extra: 692/492,
  49188. bottom: 0/692
  49189. }
  49190. },
  49191. headAlt: {
  49192. height: math.unit(0.95, "feet"),
  49193. name: "Head (Alt)",
  49194. image: {
  49195. source: "./media/characters/caspian/head-alt.svg",
  49196. extra: 668/508,
  49197. bottom: 0/668
  49198. }
  49199. },
  49200. hand: {
  49201. height: math.unit(0.8, "feet"),
  49202. name: "Hand",
  49203. image: {
  49204. source: "./media/characters/caspian/hand.svg"
  49205. }
  49206. },
  49207. paw: {
  49208. height: math.unit(0.95, "feet"),
  49209. name: "Paw",
  49210. image: {
  49211. source: "./media/characters/caspian/paw.svg"
  49212. }
  49213. },
  49214. },
  49215. [
  49216. {
  49217. name: "Normal",
  49218. height: math.unit(162, "feet"),
  49219. default: true
  49220. },
  49221. ]
  49222. ))
  49223. characterMakers.push(() => makeCharacter(
  49224. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49225. {
  49226. front: {
  49227. height: math.unit(6, "feet"),
  49228. name: "Front",
  49229. image: {
  49230. source: "./media/characters/myra-aisling/front.svg",
  49231. extra: 1268/1166,
  49232. bottom: 73/1341
  49233. }
  49234. },
  49235. back: {
  49236. height: math.unit(6, "feet"),
  49237. name: "Back",
  49238. image: {
  49239. source: "./media/characters/myra-aisling/back.svg",
  49240. extra: 1249/1149,
  49241. bottom: 79/1328
  49242. }
  49243. },
  49244. dressed: {
  49245. height: math.unit(6, "feet"),
  49246. name: "Dressed",
  49247. image: {
  49248. source: "./media/characters/myra-aisling/dressed.svg",
  49249. extra: 1290/1189,
  49250. bottom: 47/1337
  49251. }
  49252. },
  49253. hand: {
  49254. height: math.unit(1.1, "feet"),
  49255. name: "Hand",
  49256. image: {
  49257. source: "./media/characters/myra-aisling/hand.svg"
  49258. }
  49259. },
  49260. paw: {
  49261. height: math.unit(1.23, "feet"),
  49262. name: "Paw",
  49263. image: {
  49264. source: "./media/characters/myra-aisling/paw.svg"
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Normal",
  49271. height: math.unit(160, "feet"),
  49272. default: true
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49278. {
  49279. front: {
  49280. height: math.unit(6, "feet"),
  49281. name: "Front",
  49282. image: {
  49283. source: "./media/characters/tenley-sidero/front.svg",
  49284. extra: 1365/1276,
  49285. bottom: 47/1412
  49286. }
  49287. },
  49288. back: {
  49289. height: math.unit(6, "feet"),
  49290. name: "Back",
  49291. image: {
  49292. source: "./media/characters/tenley-sidero/back.svg",
  49293. extra: 1383/1283,
  49294. bottom: 35/1418
  49295. }
  49296. },
  49297. dressed: {
  49298. height: math.unit(6, "feet"),
  49299. name: "Dressed",
  49300. image: {
  49301. source: "./media/characters/tenley-sidero/dressed.svg",
  49302. extra: 1364/1275,
  49303. bottom: 42/1406
  49304. }
  49305. },
  49306. head: {
  49307. height: math.unit(1.47, "feet"),
  49308. name: "Head",
  49309. image: {
  49310. source: "./media/characters/tenley-sidero/head.svg",
  49311. extra: 610/490,
  49312. bottom: 0/610
  49313. }
  49314. },
  49315. },
  49316. [
  49317. {
  49318. name: "Normal",
  49319. height: math.unit(154, "feet"),
  49320. default: true
  49321. },
  49322. ]
  49323. ))
  49324. characterMakers.push(() => makeCharacter(
  49325. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49326. {
  49327. front: {
  49328. height: math.unit(5, "inches"),
  49329. name: "Front",
  49330. image: {
  49331. source: "./media/characters/mallory/front.svg",
  49332. extra: 1919/1678,
  49333. bottom: 29/1948
  49334. }
  49335. },
  49336. hand: {
  49337. height: math.unit(0.73, "inches"),
  49338. name: "Hand",
  49339. image: {
  49340. source: "./media/characters/mallory/hand.svg"
  49341. }
  49342. },
  49343. paw: {
  49344. height: math.unit(0.68, "inches"),
  49345. name: "Paw",
  49346. image: {
  49347. source: "./media/characters/mallory/paw.svg"
  49348. }
  49349. },
  49350. },
  49351. [
  49352. {
  49353. name: "Small",
  49354. height: math.unit(5, "inches"),
  49355. default: true
  49356. },
  49357. ]
  49358. ))
  49359. characterMakers.push(() => makeCharacter(
  49360. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49361. {
  49362. naked: {
  49363. height: math.unit(6, "feet"),
  49364. name: "Naked",
  49365. image: {
  49366. source: "./media/characters/mab/naked.svg",
  49367. extra: 1855/1757,
  49368. bottom: 208/2063
  49369. }
  49370. },
  49371. outside: {
  49372. height: math.unit(6, "feet"),
  49373. name: "Outside",
  49374. image: {
  49375. source: "./media/characters/mab/outside.svg",
  49376. extra: 1855/1757,
  49377. bottom: 208/2063
  49378. }
  49379. },
  49380. party: {
  49381. height: math.unit(6, "feet"),
  49382. name: "Party",
  49383. image: {
  49384. source: "./media/characters/mab/party.svg",
  49385. extra: 1855/1757,
  49386. bottom: 208/2063
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(165, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49400. {
  49401. front: {
  49402. height: math.unit(12, "feet"),
  49403. weight: math.unit(4000, "lb"),
  49404. name: "Front",
  49405. image: {
  49406. source: "./media/characters/winter/front.svg",
  49407. extra: 1286/943,
  49408. bottom: 112/1398
  49409. }
  49410. },
  49411. frontNsfw: {
  49412. height: math.unit(12, "feet"),
  49413. weight: math.unit(4000, "lb"),
  49414. name: "Front (NSFW)",
  49415. image: {
  49416. source: "./media/characters/winter/front-nsfw.svg",
  49417. extra: 1286/943,
  49418. bottom: 112/1398
  49419. }
  49420. },
  49421. dick: {
  49422. height: math.unit(3.79, "feet"),
  49423. name: "Dick",
  49424. image: {
  49425. source: "./media/characters/winter/dick.svg"
  49426. }
  49427. },
  49428. },
  49429. [
  49430. {
  49431. name: "Big",
  49432. height: math.unit(12, "feet"),
  49433. default: true
  49434. },
  49435. ]
  49436. ))
  49437. characterMakers.push(() => makeCharacter(
  49438. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49439. {
  49440. front: {
  49441. height: math.unit(4.1, "inches"),
  49442. name: "Front",
  49443. image: {
  49444. source: "./media/characters/alto/front.svg",
  49445. extra: 736/627,
  49446. bottom: 90/826
  49447. }
  49448. },
  49449. },
  49450. [
  49451. {
  49452. name: "Normal",
  49453. height: math.unit(4.1, "inches"),
  49454. default: true
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49460. {
  49461. sitting: {
  49462. height: math.unit(3, "feet"),
  49463. name: "Sitting",
  49464. image: {
  49465. source: "./media/characters/ratstrid-v/sitting.svg",
  49466. extra: 355/310,
  49467. bottom: 136/491
  49468. }
  49469. },
  49470. },
  49471. [
  49472. {
  49473. name: "Normal",
  49474. height: math.unit(3, "feet"),
  49475. default: true
  49476. },
  49477. ]
  49478. ))
  49479. characterMakers.push(() => makeCharacter(
  49480. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49481. {
  49482. back: {
  49483. height: math.unit(6, "feet"),
  49484. weight: math.unit(350, "lb"),
  49485. name: "Back",
  49486. image: {
  49487. source: "./media/characters/siz/back.svg",
  49488. extra: 1449/1274,
  49489. bottom: 13/1462
  49490. }
  49491. },
  49492. },
  49493. [
  49494. {
  49495. name: "Over-Overcompressed",
  49496. height: math.unit(8, "feet")
  49497. },
  49498. {
  49499. name: "Overcompressed",
  49500. height: math.unit(32, "feet")
  49501. },
  49502. {
  49503. name: "Compressed",
  49504. height: math.unit(128, "feet"),
  49505. default: true
  49506. },
  49507. {
  49508. name: "Half-Compressed",
  49509. height: math.unit(512, "feet")
  49510. },
  49511. {
  49512. name: "Quarter-Compressed",
  49513. height: math.unit(2048, "feet")
  49514. },
  49515. {
  49516. name: "Uncompressed?",
  49517. height: math.unit(8192, "feet")
  49518. },
  49519. ]
  49520. ))
  49521. characterMakers.push(() => makeCharacter(
  49522. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49523. {
  49524. front: {
  49525. height: math.unit(5 + 9/12, "feet"),
  49526. weight: math.unit(150, "lb"),
  49527. name: "Front",
  49528. image: {
  49529. source: "./media/characters/ven/front.svg",
  49530. extra: 1372/1320,
  49531. bottom: 73/1445
  49532. }
  49533. },
  49534. side: {
  49535. height: math.unit(5 + 9/12, "feet"),
  49536. weight: math.unit(1150, "lb"),
  49537. name: "Side",
  49538. image: {
  49539. source: "./media/characters/ven/side.svg",
  49540. extra: 1119/1070,
  49541. bottom: 42/1161
  49542. },
  49543. default: true
  49544. },
  49545. },
  49546. [
  49547. {
  49548. name: "Normal",
  49549. height: math.unit(5 + 9/12, "feet"),
  49550. default: true
  49551. },
  49552. ]
  49553. ))
  49554. characterMakers.push(() => makeCharacter(
  49555. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49556. {
  49557. front: {
  49558. height: math.unit(12, "feet"),
  49559. weight: math.unit(1000, "kg"),
  49560. name: "Front",
  49561. image: {
  49562. source: "./media/characters/maple/front.svg",
  49563. extra: 1193/1081,
  49564. bottom: 22/1215
  49565. }
  49566. },
  49567. },
  49568. [
  49569. {
  49570. name: "Compressed",
  49571. height: math.unit(7, "feet")
  49572. },
  49573. {
  49574. name: "Normal",
  49575. height: math.unit(12, "feet"),
  49576. default: true
  49577. },
  49578. ]
  49579. ))
  49580. characterMakers.push(() => makeCharacter(
  49581. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49582. {
  49583. front: {
  49584. height: math.unit(9, "feet"),
  49585. weight: math.unit(1500, "lb"),
  49586. name: "Front",
  49587. image: {
  49588. source: "./media/characters/nora/front.svg",
  49589. extra: 1348/1286,
  49590. bottom: 218/1566
  49591. }
  49592. },
  49593. erect: {
  49594. height: math.unit(9, "feet"),
  49595. weight: math.unit(11500, "lb"),
  49596. name: "Erect",
  49597. image: {
  49598. source: "./media/characters/nora/erect.svg",
  49599. extra: 1488/1433,
  49600. bottom: 133/1621
  49601. }
  49602. },
  49603. },
  49604. [
  49605. {
  49606. name: "Normal",
  49607. height: math.unit(9, "feet"),
  49608. default: true
  49609. },
  49610. ]
  49611. ))
  49612. characterMakers.push(() => makeCharacter(
  49613. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49614. {
  49615. front: {
  49616. height: math.unit(25, "feet"),
  49617. weight: math.unit(27500, "lb"),
  49618. name: "Front",
  49619. image: {
  49620. source: "./media/characters/north-caudin/front.svg",
  49621. extra: 1184/1082,
  49622. bottom: 23/1207
  49623. }
  49624. },
  49625. },
  49626. [
  49627. {
  49628. name: "Compressed",
  49629. height: math.unit(10, "feet")
  49630. },
  49631. {
  49632. name: "Normal",
  49633. height: math.unit(25, "feet"),
  49634. default: true
  49635. },
  49636. ]
  49637. ))
  49638. characterMakers.push(() => makeCharacter(
  49639. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49640. {
  49641. front: {
  49642. height: math.unit(9, "feet"),
  49643. weight: math.unit(1250, "lb"),
  49644. name: "Front",
  49645. image: {
  49646. source: "./media/characters/merrian/front.svg",
  49647. extra: 2393/2304,
  49648. bottom: 40/2433
  49649. }
  49650. },
  49651. },
  49652. [
  49653. {
  49654. name: "Normal",
  49655. height: math.unit(9, "feet"),
  49656. default: true
  49657. },
  49658. ]
  49659. ))
  49660. characterMakers.push(() => makeCharacter(
  49661. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49662. {
  49663. front: {
  49664. height: math.unit(9, "feet"),
  49665. weight: math.unit(1000, "lb"),
  49666. name: "Front",
  49667. image: {
  49668. source: "./media/characters/hazel/front.svg",
  49669. extra: 2351/2298,
  49670. bottom: 38/2389
  49671. }
  49672. },
  49673. },
  49674. [
  49675. {
  49676. name: "Normal",
  49677. height: math.unit(9, "feet"),
  49678. default: true
  49679. },
  49680. ]
  49681. ))
  49682. characterMakers.push(() => makeCharacter(
  49683. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49684. {
  49685. front: {
  49686. height: math.unit(13, "feet"),
  49687. weight: math.unit(3200, "lb"),
  49688. name: "Front",
  49689. image: {
  49690. source: "./media/characters/emma/front.svg",
  49691. extra: 2263/2029,
  49692. bottom: 68/2331
  49693. }
  49694. },
  49695. },
  49696. [
  49697. {
  49698. name: "Normal",
  49699. height: math.unit(13, "feet"),
  49700. default: true
  49701. },
  49702. ]
  49703. ))
  49704. characterMakers.push(() => makeCharacter(
  49705. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49706. {
  49707. front: {
  49708. height: math.unit(11 + 9/12, "feet"),
  49709. weight: math.unit(2500, "lb"),
  49710. name: "Front",
  49711. image: {
  49712. source: "./media/characters/ilumina/front.svg",
  49713. extra: 2248/2209,
  49714. bottom: 164/2412
  49715. }
  49716. },
  49717. },
  49718. [
  49719. {
  49720. name: "Normal",
  49721. height: math.unit(11 + 9/12, "feet"),
  49722. default: true
  49723. },
  49724. ]
  49725. ))
  49726. characterMakers.push(() => makeCharacter(
  49727. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49728. {
  49729. front: {
  49730. height: math.unit(8 + 10/12, "feet"),
  49731. weight: math.unit(1350, "lb"),
  49732. name: "Front",
  49733. image: {
  49734. source: "./media/characters/moonshine/front.svg",
  49735. extra: 2395/2288,
  49736. bottom: 40/2435
  49737. }
  49738. },
  49739. },
  49740. [
  49741. {
  49742. name: "Normal",
  49743. height: math.unit(8 + 10/12, "feet"),
  49744. default: true
  49745. },
  49746. ]
  49747. ))
  49748. characterMakers.push(() => makeCharacter(
  49749. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49750. {
  49751. front: {
  49752. height: math.unit(14, "feet"),
  49753. weight: math.unit(3400, "lb"),
  49754. name: "Front",
  49755. image: {
  49756. source: "./media/characters/aletia/front.svg",
  49757. extra: 1185/1052,
  49758. bottom: 21/1206
  49759. }
  49760. },
  49761. },
  49762. [
  49763. {
  49764. name: "Compressed",
  49765. height: math.unit(8, "feet")
  49766. },
  49767. {
  49768. name: "Normal",
  49769. height: math.unit(14, "feet"),
  49770. default: true
  49771. },
  49772. ]
  49773. ))
  49774. characterMakers.push(() => makeCharacter(
  49775. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49776. {
  49777. front: {
  49778. height: math.unit(17, "feet"),
  49779. weight: math.unit(6500, "lb"),
  49780. name: "Front",
  49781. image: {
  49782. source: "./media/characters/deidra/front.svg",
  49783. extra: 1201/1081,
  49784. bottom: 16/1217
  49785. }
  49786. },
  49787. },
  49788. [
  49789. {
  49790. name: "Compressed",
  49791. height: math.unit(9 + 6/12, "feet")
  49792. },
  49793. {
  49794. name: "Normal",
  49795. height: math.unit(17, "feet"),
  49796. default: true
  49797. },
  49798. ]
  49799. ))
  49800. characterMakers.push(() => makeCharacter(
  49801. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49802. {
  49803. front: {
  49804. height: math.unit(7 + 4/12, "feet"),
  49805. weight: math.unit(280, "lb"),
  49806. name: "Front",
  49807. image: {
  49808. source: "./media/characters/freki-yrmori/front.svg",
  49809. extra: 1286/1182,
  49810. bottom: 29/1315
  49811. }
  49812. },
  49813. maw: {
  49814. height: math.unit(0.9, "feet"),
  49815. name: "Maw",
  49816. image: {
  49817. source: "./media/characters/freki-yrmori/maw.svg"
  49818. }
  49819. },
  49820. },
  49821. [
  49822. {
  49823. name: "Normal",
  49824. height: math.unit(7 + 4/12, "feet"),
  49825. default: true
  49826. },
  49827. {
  49828. name: "Macro",
  49829. height: math.unit(38.5, "meters")
  49830. },
  49831. ]
  49832. ))
  49833. characterMakers.push(() => makeCharacter(
  49834. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49835. {
  49836. side: {
  49837. height: math.unit(47.2, "meters"),
  49838. weight: math.unit(10000, "tons"),
  49839. name: "Side",
  49840. image: {
  49841. source: "./media/characters/aetherios/side.svg",
  49842. extra: 2363/642,
  49843. bottom: 221/2584
  49844. }
  49845. },
  49846. top: {
  49847. height: math.unit(240, "meters"),
  49848. weight: math.unit(10000, "tons"),
  49849. name: "Top",
  49850. image: {
  49851. source: "./media/characters/aetherios/top.svg"
  49852. }
  49853. },
  49854. bottom: {
  49855. height: math.unit(240, "meters"),
  49856. weight: math.unit(10000, "tons"),
  49857. name: "Bottom",
  49858. image: {
  49859. source: "./media/characters/aetherios/bottom.svg"
  49860. }
  49861. },
  49862. head: {
  49863. height: math.unit(38.6, "meters"),
  49864. name: "Head",
  49865. image: {
  49866. source: "./media/characters/aetherios/head.svg",
  49867. extra: 1335/1112,
  49868. bottom: 0/1335
  49869. }
  49870. },
  49871. front: {
  49872. height: math.unit(29, "meters"),
  49873. name: "Front",
  49874. image: {
  49875. source: "./media/characters/aetherios/front.svg",
  49876. extra: 1266/953,
  49877. bottom: 158/1424
  49878. }
  49879. },
  49880. maw: {
  49881. height: math.unit(16.37, "meters"),
  49882. name: "Maw",
  49883. image: {
  49884. source: "./media/characters/aetherios/maw.svg",
  49885. extra: 748/637,
  49886. bottom: 0/748
  49887. },
  49888. extraAttributes: {
  49889. preyCapacity: {
  49890. name: "Capacity",
  49891. power: 3,
  49892. type: "volume",
  49893. base: math.unit(1000, "people")
  49894. },
  49895. tongueSize: {
  49896. name: "Tongue Size",
  49897. power: 2,
  49898. type: "area",
  49899. base: math.unit(21, "m^2")
  49900. }
  49901. }
  49902. },
  49903. forepaw: {
  49904. height: math.unit(18, "meters"),
  49905. name: "Forepaw",
  49906. image: {
  49907. source: "./media/characters/aetherios/forepaw.svg"
  49908. }
  49909. },
  49910. hindpaw: {
  49911. height: math.unit(23, "meters"),
  49912. name: "Hindpaw",
  49913. image: {
  49914. source: "./media/characters/aetherios/hindpaw.svg"
  49915. }
  49916. },
  49917. genitals: {
  49918. height: math.unit(42, "meters"),
  49919. name: "Genitals",
  49920. image: {
  49921. source: "./media/characters/aetherios/genitals.svg"
  49922. }
  49923. },
  49924. },
  49925. [
  49926. {
  49927. name: "Normal",
  49928. height: math.unit(47.2, "meters"),
  49929. default: true
  49930. },
  49931. {
  49932. name: "Macro",
  49933. height: math.unit(160, "meters")
  49934. },
  49935. {
  49936. name: "Mega",
  49937. height: math.unit(1.87, "km")
  49938. },
  49939. {
  49940. name: "Giga",
  49941. height: math.unit(40000, "km")
  49942. },
  49943. {
  49944. name: "Stellar",
  49945. height: math.unit(158000000, "km")
  49946. },
  49947. {
  49948. name: "Cosmic",
  49949. height: math.unit(9.46e12, "km")
  49950. },
  49951. ]
  49952. ))
  49953. characterMakers.push(() => makeCharacter(
  49954. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49955. {
  49956. front: {
  49957. height: math.unit(5 + 4/12, "feet"),
  49958. weight: math.unit(80, "lb"),
  49959. name: "Front",
  49960. image: {
  49961. source: "./media/characters/mizu-gieeg/front.svg",
  49962. extra: 850/709,
  49963. bottom: 52/902
  49964. }
  49965. },
  49966. back: {
  49967. height: math.unit(5 + 4/12, "feet"),
  49968. weight: math.unit(80, "lb"),
  49969. name: "Back",
  49970. image: {
  49971. source: "./media/characters/mizu-gieeg/back.svg",
  49972. extra: 882/745,
  49973. bottom: 25/907
  49974. }
  49975. },
  49976. },
  49977. [
  49978. {
  49979. name: "Normal",
  49980. height: math.unit(5 + 4/12, "feet"),
  49981. default: true
  49982. },
  49983. ]
  49984. ))
  49985. characterMakers.push(() => makeCharacter(
  49986. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49987. {
  49988. front: {
  49989. height: math.unit(6, "feet"),
  49990. name: "Front",
  49991. image: {
  49992. source: "./media/characters/roselle-st-papier/front.svg",
  49993. extra: 1430/1280,
  49994. bottom: 37/1467
  49995. }
  49996. },
  49997. back: {
  49998. height: math.unit(6, "feet"),
  49999. name: "Back",
  50000. image: {
  50001. source: "./media/characters/roselle-st-papier/back.svg",
  50002. extra: 1491/1296,
  50003. bottom: 23/1514
  50004. }
  50005. },
  50006. ear: {
  50007. height: math.unit(1.26, "feet"),
  50008. name: "Ear",
  50009. image: {
  50010. source: "./media/characters/roselle-st-papier/ear.svg"
  50011. }
  50012. },
  50013. },
  50014. [
  50015. {
  50016. name: "Normal",
  50017. height: math.unit(150, "feet"),
  50018. default: true
  50019. },
  50020. ]
  50021. ))
  50022. characterMakers.push(() => makeCharacter(
  50023. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50024. {
  50025. front: {
  50026. height: math.unit(1, "inches"),
  50027. name: "Front",
  50028. image: {
  50029. source: "./media/characters/valargent/front.svg",
  50030. extra: 1825/1694,
  50031. bottom: 62/1887
  50032. }
  50033. },
  50034. back: {
  50035. height: math.unit(1, "inches"),
  50036. name: "Back",
  50037. image: {
  50038. source: "./media/characters/valargent/back.svg",
  50039. extra: 1775/1682,
  50040. bottom: 88/1863
  50041. }
  50042. },
  50043. },
  50044. [
  50045. {
  50046. name: "Micro",
  50047. height: math.unit(1, "inch"),
  50048. default: true
  50049. },
  50050. ]
  50051. ))
  50052. characterMakers.push(() => makeCharacter(
  50053. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50054. {
  50055. front: {
  50056. height: math.unit(3.4, "meters"),
  50057. name: "Front",
  50058. image: {
  50059. source: "./media/characters/zarina/front.svg",
  50060. extra: 1733/1425,
  50061. bottom: 93/1826
  50062. }
  50063. },
  50064. squatting: {
  50065. height: math.unit(2.14, "meters"),
  50066. name: "Squatting",
  50067. image: {
  50068. source: "./media/characters/zarina/squatting.svg",
  50069. extra: 1073/788,
  50070. bottom: 63/1136
  50071. }
  50072. },
  50073. back: {
  50074. height: math.unit(2.14, "meters"),
  50075. name: "Back",
  50076. image: {
  50077. source: "./media/characters/zarina/back.svg",
  50078. extra: 1128/885,
  50079. bottom: 0/1128
  50080. }
  50081. },
  50082. },
  50083. [
  50084. {
  50085. name: "Normal",
  50086. height: math.unit(3.4, "meters"),
  50087. default: true
  50088. },
  50089. {
  50090. name: "Big",
  50091. height: math.unit(5, "meters")
  50092. },
  50093. {
  50094. name: "Macro",
  50095. height: math.unit(110, "meters")
  50096. },
  50097. ]
  50098. ))
  50099. characterMakers.push(() => makeCharacter(
  50100. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50101. {
  50102. front: {
  50103. height: math.unit(7, "feet"),
  50104. name: "Front",
  50105. image: {
  50106. source: "./media/characters/ventus-astro-fox/front.svg",
  50107. extra: 1792/1623,
  50108. bottom: 28/1820
  50109. }
  50110. },
  50111. back: {
  50112. height: math.unit(7, "feet"),
  50113. name: "Back",
  50114. image: {
  50115. source: "./media/characters/ventus-astro-fox/back.svg",
  50116. extra: 1789/1620,
  50117. bottom: 31/1820
  50118. }
  50119. },
  50120. outfit: {
  50121. height: math.unit(7, "feet"),
  50122. name: "Outfit",
  50123. image: {
  50124. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50125. extra: 1054/925,
  50126. bottom: 15/1069
  50127. }
  50128. },
  50129. head: {
  50130. height: math.unit(1.12, "feet"),
  50131. name: "Head",
  50132. image: {
  50133. source: "./media/characters/ventus-astro-fox/head.svg",
  50134. extra: 866/504,
  50135. bottom: 0/866
  50136. }
  50137. },
  50138. hand: {
  50139. height: math.unit(1, "feet"),
  50140. name: "Hand",
  50141. image: {
  50142. source: "./media/characters/ventus-astro-fox/hand.svg"
  50143. }
  50144. },
  50145. paw: {
  50146. height: math.unit(1.5, "feet"),
  50147. name: "Paw",
  50148. image: {
  50149. source: "./media/characters/ventus-astro-fox/paw.svg"
  50150. }
  50151. },
  50152. },
  50153. [
  50154. {
  50155. name: "Normal",
  50156. height: math.unit(7, "feet"),
  50157. default: true
  50158. },
  50159. {
  50160. name: "Macro",
  50161. height: math.unit(200, "feet")
  50162. },
  50163. {
  50164. name: "Cosmic",
  50165. height: math.unit(3, "universes")
  50166. },
  50167. ]
  50168. ))
  50169. characterMakers.push(() => makeCharacter(
  50170. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50171. {
  50172. front: {
  50173. height: math.unit(3, "meters"),
  50174. weight: math.unit(7000, "lb"),
  50175. name: "Front",
  50176. image: {
  50177. source: "./media/characters/core-t/front.svg",
  50178. extra: 5729/4941,
  50179. bottom: 1129/6858
  50180. }
  50181. },
  50182. },
  50183. [
  50184. {
  50185. name: "Big",
  50186. height: math.unit(3, "meters"),
  50187. default: true
  50188. },
  50189. ]
  50190. ))
  50191. characterMakers.push(() => makeCharacter(
  50192. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50193. {
  50194. normal: {
  50195. height: math.unit(6 + 6/12, "feet"),
  50196. weight: math.unit(275, "lb"),
  50197. name: "Front",
  50198. image: {
  50199. source: "./media/characters/cadbunny/normal.svg",
  50200. extra: 1129/947,
  50201. bottom: 93/1222
  50202. },
  50203. default: true,
  50204. form: "normal"
  50205. },
  50206. gigantamax: {
  50207. height: math.unit(26, "feet"),
  50208. weight: math.unit(16000, "lb"),
  50209. name: "Front",
  50210. image: {
  50211. source: "./media/characters/cadbunny/gigantamax.svg",
  50212. extra: 1133/944,
  50213. bottom: 90/1223
  50214. },
  50215. default: true,
  50216. form: "gigantamax"
  50217. },
  50218. },
  50219. [
  50220. {
  50221. name: "Normal",
  50222. height: math.unit(6 + 6/12, "feet"),
  50223. default: true,
  50224. form: "normal"
  50225. },
  50226. {
  50227. name: "Small",
  50228. height: math.unit(26, "feet"),
  50229. default: true,
  50230. form: "gigantamax"
  50231. },
  50232. {
  50233. name: "Large",
  50234. height: math.unit(78, "feet"),
  50235. form: "gigantamax"
  50236. },
  50237. ],
  50238. {
  50239. "normal": {
  50240. name: "Normal",
  50241. default: true
  50242. },
  50243. "gigantamax": {
  50244. name: "Gigantamax"
  50245. }
  50246. }
  50247. ))
  50248. characterMakers.push(() => makeCharacter(
  50249. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50250. {
  50251. anthroFront: {
  50252. height: math.unit(8, "feet"),
  50253. weight: math.unit(300, "lb"),
  50254. name: "Front",
  50255. image: {
  50256. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50257. extra: 1272/1176,
  50258. bottom: 53/1325
  50259. },
  50260. form: "anthro",
  50261. default: true
  50262. },
  50263. feralSide: {
  50264. height: math.unit(4, "feet"),
  50265. weight: math.unit(250, "lb"),
  50266. name: "Side",
  50267. image: {
  50268. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50269. extra: 731/621,
  50270. bottom: 0/731
  50271. },
  50272. form: "feral",
  50273. default: true
  50274. },
  50275. },
  50276. [
  50277. {
  50278. name: "Regular",
  50279. height: math.unit(8, "feet"),
  50280. form: "anthro"
  50281. },
  50282. {
  50283. name: "Macro",
  50284. height: math.unit(250, "feet"),
  50285. form: "anthro",
  50286. default: true
  50287. },
  50288. {
  50289. name: "Regular",
  50290. height: math.unit(4, "feet"),
  50291. form: "feral"
  50292. },
  50293. {
  50294. name: "Macro",
  50295. height: math.unit(125, "feet"),
  50296. form: "feral",
  50297. default: true
  50298. },
  50299. ],
  50300. {
  50301. "anthro": {
  50302. name: "Anthro",
  50303. default: true
  50304. },
  50305. "feral": {
  50306. name: "Feral",
  50307. },
  50308. }
  50309. ))
  50310. characterMakers.push(() => makeCharacter(
  50311. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50312. {
  50313. front: {
  50314. height: math.unit(11 + 10/12, "feet"),
  50315. weight: math.unit(1587, "kg"),
  50316. name: "Front",
  50317. image: {
  50318. source: "./media/characters/maple-javira-dragon/front.svg",
  50319. extra: 1136/744,
  50320. bottom: 73/1209
  50321. }
  50322. },
  50323. side: {
  50324. height: math.unit(11 + 10/12, "feet"),
  50325. weight: math.unit(1587, "kg"),
  50326. name: "Side",
  50327. image: {
  50328. source: "./media/characters/maple-javira-dragon/side.svg",
  50329. extra: 712/505,
  50330. bottom: 17/729
  50331. }
  50332. },
  50333. head: {
  50334. height: math.unit(8.05, "feet"),
  50335. name: "Head",
  50336. image: {
  50337. source: "./media/characters/maple-javira-dragon/head.svg",
  50338. extra: 1420/1344,
  50339. bottom: 0/1420
  50340. }
  50341. },
  50342. },
  50343. [
  50344. {
  50345. name: "Normal",
  50346. height: math.unit(11 + 10/12, "feet"),
  50347. default: true
  50348. },
  50349. ]
  50350. ))
  50351. characterMakers.push(() => makeCharacter(
  50352. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50353. {
  50354. front: {
  50355. height: math.unit(117, "cm"),
  50356. weight: math.unit(50, "kg"),
  50357. name: "Front",
  50358. image: {
  50359. source: "./media/characters/sonia-wyverntail/front.svg",
  50360. extra: 708/592,
  50361. bottom: 25/733
  50362. }
  50363. },
  50364. },
  50365. [
  50366. {
  50367. name: "Normal",
  50368. height: math.unit(117, "cm"),
  50369. default: true
  50370. },
  50371. ]
  50372. ))
  50373. characterMakers.push(() => makeCharacter(
  50374. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50375. {
  50376. front: {
  50377. height: math.unit(6 + 5/12, "feet"),
  50378. name: "Front",
  50379. image: {
  50380. source: "./media/characters/micah/front.svg",
  50381. extra: 1758/1546,
  50382. bottom: 214/1972
  50383. }
  50384. },
  50385. },
  50386. [
  50387. {
  50388. name: "Normal",
  50389. height: math.unit(6 + 5/12, "feet"),
  50390. default: true
  50391. },
  50392. ]
  50393. ))
  50394. characterMakers.push(() => makeCharacter(
  50395. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50396. {
  50397. front: {
  50398. height: math.unit(5 + 10/12, "feet"),
  50399. weight: math.unit(220, "lb"),
  50400. name: "Front",
  50401. image: {
  50402. source: "./media/characters/zarya/front.svg",
  50403. extra: 593/572,
  50404. bottom: 50/643
  50405. }
  50406. },
  50407. back: {
  50408. height: math.unit(5 + 10/12, "feet"),
  50409. weight: math.unit(220, "lb"),
  50410. name: "Back",
  50411. image: {
  50412. source: "./media/characters/zarya/back.svg",
  50413. extra: 603/582,
  50414. bottom: 38/641
  50415. }
  50416. },
  50417. },
  50418. [
  50419. {
  50420. name: "Normal",
  50421. height: math.unit(5 + 10/12, "feet"),
  50422. default: true
  50423. },
  50424. ]
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50428. {
  50429. front: {
  50430. height: math.unit(7.5, "feet"),
  50431. name: "Front",
  50432. image: {
  50433. source: "./media/characters/sven-hatisson/front.svg",
  50434. extra: 917/857,
  50435. bottom: 42/959
  50436. }
  50437. },
  50438. back: {
  50439. height: math.unit(7.5, "feet"),
  50440. name: "Back",
  50441. image: {
  50442. source: "./media/characters/sven-hatisson/back.svg",
  50443. extra: 903/856,
  50444. bottom: 15/918
  50445. }
  50446. },
  50447. },
  50448. [
  50449. {
  50450. name: "Base Height",
  50451. height: math.unit(7.5, "feet")
  50452. },
  50453. {
  50454. name: "Usual Height",
  50455. height: math.unit(13.5, "feet"),
  50456. default: true
  50457. },
  50458. {
  50459. name: "Smaller Macro",
  50460. height: math.unit(85, "feet")
  50461. },
  50462. {
  50463. name: "Moderate Macro",
  50464. height: math.unit(320, "feet")
  50465. },
  50466. {
  50467. name: "Large Macro",
  50468. height: math.unit(1000, "feet")
  50469. },
  50470. {
  50471. name: "Largest Size",
  50472. height: math.unit(2, "miles")
  50473. },
  50474. ]
  50475. ))
  50476. characterMakers.push(() => makeCharacter(
  50477. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50478. {
  50479. side: {
  50480. height: math.unit(1.8, "meters"),
  50481. weight: math.unit(275, "kg"),
  50482. name: "Side",
  50483. image: {
  50484. source: "./media/characters/terra/side.svg",
  50485. extra: 1273/1147,
  50486. bottom: 0/1273
  50487. }
  50488. },
  50489. },
  50490. [
  50491. {
  50492. name: "Normal",
  50493. height: math.unit(16.2, "meters"),
  50494. default: true
  50495. },
  50496. ]
  50497. ))
  50498. characterMakers.push(() => makeCharacter(
  50499. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50500. {
  50501. borzoiFront: {
  50502. height: math.unit(6 + 9/12, "feet"),
  50503. name: "Front",
  50504. image: {
  50505. source: "./media/characters/rae/borzoi-front.svg",
  50506. extra: 1161/1098,
  50507. bottom: 31/1192
  50508. },
  50509. form: "borzoi",
  50510. default: true
  50511. },
  50512. werewolfFront: {
  50513. height: math.unit(8 + 7/12, "feet"),
  50514. name: "Front",
  50515. image: {
  50516. source: "./media/characters/rae/werewolf-front.svg",
  50517. extra: 1411/1334,
  50518. bottom: 127/1538
  50519. },
  50520. form: "werewolf",
  50521. default: true
  50522. },
  50523. },
  50524. [
  50525. {
  50526. name: "Normal",
  50527. height: math.unit(6 + 9/12, "feet"),
  50528. default: true,
  50529. form: "borzoi"
  50530. },
  50531. {
  50532. name: "Normal",
  50533. height: math.unit(8 + 7/12, "feet"),
  50534. default: true,
  50535. form: "werewolf"
  50536. },
  50537. ],
  50538. {
  50539. "borzoi": {
  50540. name: "Borzoi",
  50541. default: true
  50542. },
  50543. "werewolf": {
  50544. name: "Werewolf",
  50545. },
  50546. }
  50547. ))
  50548. characterMakers.push(() => makeCharacter(
  50549. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50550. {
  50551. front: {
  50552. height: math.unit(8 + 7/12, "feet"),
  50553. weight: math.unit(482, "lb"),
  50554. name: "Front",
  50555. image: {
  50556. source: "./media/characters/kit/front.svg",
  50557. extra: 1247/1103,
  50558. bottom: 41/1288
  50559. }
  50560. },
  50561. back: {
  50562. height: math.unit(8 + 7/12, "feet"),
  50563. weight: math.unit(482, "lb"),
  50564. name: "Back",
  50565. image: {
  50566. source: "./media/characters/kit/back.svg",
  50567. extra: 1252/1123,
  50568. bottom: 21/1273
  50569. }
  50570. },
  50571. paw: {
  50572. height: math.unit(1.46, "feet"),
  50573. name: "Paw",
  50574. image: {
  50575. source: "./media/characters/kit/paw.svg"
  50576. }
  50577. },
  50578. },
  50579. [
  50580. {
  50581. name: "Normal",
  50582. height: math.unit(2.61, "meters"),
  50583. default: true
  50584. },
  50585. {
  50586. name: "\"Tall\"",
  50587. height: math.unit(8.21, "meters")
  50588. },
  50589. {
  50590. name: "Tall",
  50591. height: math.unit(19.6, "meters")
  50592. },
  50593. {
  50594. name: "Very Tall",
  50595. height: math.unit(57.91, "meters")
  50596. },
  50597. {
  50598. name: "Semi-Macro",
  50599. height: math.unit(138.64, "meters")
  50600. },
  50601. {
  50602. name: "Macro",
  50603. height: math.unit(831.99, "meters")
  50604. },
  50605. {
  50606. name: "EX-Macro",
  50607. height: math.unit(96451121, "meters")
  50608. },
  50609. {
  50610. name: "S1-Omnipotent",
  50611. height: math.unit(4.42074e+9, "meters")
  50612. },
  50613. {
  50614. name: "S2-Omnipotent",
  50615. height: math.unit(9.42074e+17, "meters")
  50616. },
  50617. {
  50618. name: "Omnipotent",
  50619. height: math.unit(4.23112e+24, "meters")
  50620. },
  50621. {
  50622. name: "Hypergod",
  50623. height: math.unit(5.05176e+27, "meters")
  50624. },
  50625. {
  50626. name: "Hypergod-EX",
  50627. height: math.unit(9.45532e+49, "meters")
  50628. },
  50629. {
  50630. name: "Hypergod-SP",
  50631. height: math.unit(9.45532e+195, "meters")
  50632. },
  50633. ]
  50634. ))
  50635. characterMakers.push(() => makeCharacter(
  50636. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50637. {
  50638. side: {
  50639. height: math.unit(0.6, "meters"),
  50640. weight: math.unit(24, "kg"),
  50641. name: "Side",
  50642. image: {
  50643. source: "./media/characters/celeste/side.svg",
  50644. extra: 810/517,
  50645. bottom: 53/863
  50646. }
  50647. },
  50648. },
  50649. [
  50650. {
  50651. name: "Velociraptor",
  50652. height: math.unit(0.6, "meters"),
  50653. default: true
  50654. },
  50655. {
  50656. name: "Utahraptor",
  50657. height: math.unit(1.8, "meters")
  50658. },
  50659. {
  50660. name: "Gallimimus",
  50661. height: math.unit(4.0, "meters")
  50662. },
  50663. {
  50664. name: "Large",
  50665. height: math.unit(20, "meters")
  50666. },
  50667. {
  50668. name: "Planetary",
  50669. height: math.unit(50, "megameters")
  50670. },
  50671. {
  50672. name: "Stellar",
  50673. height: math.unit(1.5, "gigameters")
  50674. },
  50675. {
  50676. name: "Galactic",
  50677. height: math.unit(100, "exameters")
  50678. },
  50679. ]
  50680. ))
  50681. characterMakers.push(() => makeCharacter(
  50682. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50683. {
  50684. front: {
  50685. height: math.unit(6, "feet"),
  50686. weight: math.unit(210, "lb"),
  50687. name: "Front",
  50688. image: {
  50689. source: "./media/characters/glacia/front.svg",
  50690. extra: 958/901,
  50691. bottom: 45/1003
  50692. }
  50693. },
  50694. },
  50695. [
  50696. {
  50697. name: "Macro",
  50698. height: math.unit(1000, "meters"),
  50699. default: true
  50700. },
  50701. ]
  50702. ))
  50703. characterMakers.push(() => makeCharacter(
  50704. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50705. {
  50706. front: {
  50707. height: math.unit(4, "meters"),
  50708. name: "Front",
  50709. image: {
  50710. source: "./media/characters/giri/front.svg",
  50711. extra: 966/894,
  50712. bottom: 21/987
  50713. }
  50714. },
  50715. },
  50716. [
  50717. {
  50718. name: "Normal",
  50719. height: math.unit(4, "meters"),
  50720. default: true
  50721. },
  50722. ]
  50723. ))
  50724. characterMakers.push(() => makeCharacter(
  50725. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50726. {
  50727. back: {
  50728. height: math.unit(4, "feet"),
  50729. weight: math.unit(37, "lb"),
  50730. name: "Back",
  50731. image: {
  50732. source: "./media/characters/tin/back.svg",
  50733. extra: 845/780,
  50734. bottom: 28/873
  50735. }
  50736. },
  50737. },
  50738. [
  50739. {
  50740. name: "Normal",
  50741. height: math.unit(4, "feet"),
  50742. default: true
  50743. },
  50744. ]
  50745. ))
  50746. characterMakers.push(() => makeCharacter(
  50747. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50748. {
  50749. front: {
  50750. height: math.unit(25, "feet"),
  50751. name: "Front",
  50752. image: {
  50753. source: "./media/characters/cadenza-vivace/front.svg",
  50754. extra: 1842/1578,
  50755. bottom: 30/1872
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Macro",
  50762. height: math.unit(25, "feet"),
  50763. default: true
  50764. },
  50765. ]
  50766. ))
  50767. characterMakers.push(() => makeCharacter(
  50768. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50769. {
  50770. front: {
  50771. height: math.unit(10, "feet"),
  50772. weight: math.unit(625, "kg"),
  50773. name: "Front",
  50774. image: {
  50775. source: "./media/characters/zain/front.svg",
  50776. extra: 1682/1498,
  50777. bottom: 223/1905
  50778. }
  50779. },
  50780. back: {
  50781. height: math.unit(10, "feet"),
  50782. weight: math.unit(625, "kg"),
  50783. name: "Back",
  50784. image: {
  50785. source: "./media/characters/zain/back.svg",
  50786. extra: 1814/1657,
  50787. bottom: 152/1966
  50788. }
  50789. },
  50790. head: {
  50791. height: math.unit(10, "feet"),
  50792. weight: math.unit(625, "kg"),
  50793. name: "Head",
  50794. image: {
  50795. source: "./media/characters/zain/head.svg",
  50796. extra: 1059/762,
  50797. bottom: 0/1059
  50798. }
  50799. },
  50800. },
  50801. [
  50802. {
  50803. name: "Normal",
  50804. height: math.unit(10, "feet"),
  50805. default: true
  50806. },
  50807. ]
  50808. ))
  50809. characterMakers.push(() => makeCharacter(
  50810. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50811. {
  50812. front: {
  50813. height: math.unit(6 + 5/12, "feet"),
  50814. weight: math.unit(750, "lb"),
  50815. name: "Front",
  50816. image: {
  50817. source: "./media/characters/ruchex/front.svg",
  50818. extra: 877/820,
  50819. bottom: 17/894
  50820. },
  50821. extraAttributes: {
  50822. "width": {
  50823. name: "Width",
  50824. power: 1,
  50825. type: "length",
  50826. base: math.unit(4.757, "feet")
  50827. },
  50828. }
  50829. },
  50830. },
  50831. [
  50832. {
  50833. name: "Normal",
  50834. height: math.unit(6 + 5/12, "feet"),
  50835. default: true
  50836. },
  50837. ]
  50838. ))
  50839. characterMakers.push(() => makeCharacter(
  50840. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50841. {
  50842. dressedFront: {
  50843. height: math.unit(191, "cm"),
  50844. weight: math.unit(80, "kg"),
  50845. name: "Front",
  50846. image: {
  50847. source: "./media/characters/buster/dressed-front.svg",
  50848. extra: 1022/973,
  50849. bottom: 69/1091
  50850. }
  50851. },
  50852. dressedBack: {
  50853. height: math.unit(191, "cm"),
  50854. weight: math.unit(80, "kg"),
  50855. name: "Back",
  50856. image: {
  50857. source: "./media/characters/buster/dressed-back.svg",
  50858. extra: 1018/970,
  50859. bottom: 55/1073
  50860. }
  50861. },
  50862. nudeFront: {
  50863. height: math.unit(191, "cm"),
  50864. weight: math.unit(80, "kg"),
  50865. name: "Front (Nude)",
  50866. image: {
  50867. source: "./media/characters/buster/nude-front.svg",
  50868. extra: 1022/973,
  50869. bottom: 69/1091
  50870. }
  50871. },
  50872. nudeBack: {
  50873. height: math.unit(191, "cm"),
  50874. weight: math.unit(80, "kg"),
  50875. name: "Back (Nude)",
  50876. image: {
  50877. source: "./media/characters/buster/nude-back.svg",
  50878. extra: 1018/970,
  50879. bottom: 55/1073
  50880. }
  50881. },
  50882. dick: {
  50883. height: math.unit(2.59, "feet"),
  50884. name: "Dick",
  50885. image: {
  50886. source: "./media/characters/buster/dick.svg"
  50887. }
  50888. },
  50889. ass: {
  50890. height: math.unit(1.2, "feet"),
  50891. name: "Ass",
  50892. image: {
  50893. source: "./media/characters/buster/ass.svg"
  50894. }
  50895. },
  50896. },
  50897. [
  50898. {
  50899. name: "Normal",
  50900. height: math.unit(191, "cm"),
  50901. default: true
  50902. },
  50903. ]
  50904. ))
  50905. characterMakers.push(() => makeCharacter(
  50906. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50907. {
  50908. side: {
  50909. height: math.unit(8.1, "feet"),
  50910. weight: math.unit(3500, "lb"),
  50911. name: "Side",
  50912. image: {
  50913. source: "./media/characters/sonya/side.svg",
  50914. extra: 1730/1317,
  50915. bottom: 86/1816
  50916. }
  50917. },
  50918. },
  50919. [
  50920. {
  50921. name: "Normal",
  50922. height: math.unit(8.1, "feet"),
  50923. default: true
  50924. },
  50925. ]
  50926. ))
  50927. characterMakers.push(() => makeCharacter(
  50928. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  50929. {
  50930. front: {
  50931. height: math.unit(6, "feet"),
  50932. weight: math.unit(150, "lb"),
  50933. name: "Front",
  50934. image: {
  50935. source: "./media/characters/cadence-andrysiak/front.svg",
  50936. extra: 1164/1121,
  50937. bottom: 60/1224
  50938. }
  50939. },
  50940. back: {
  50941. height: math.unit(6, "feet"),
  50942. weight: math.unit(150, "lb"),
  50943. name: "Back",
  50944. image: {
  50945. source: "./media/characters/cadence-andrysiak/back.svg",
  50946. extra: 1200/1165,
  50947. bottom: 9/1209
  50948. }
  50949. },
  50950. dressed: {
  50951. height: math.unit(6, "feet"),
  50952. weight: math.unit(150, "lb"),
  50953. name: "Dressed",
  50954. image: {
  50955. source: "./media/characters/cadence-andrysiak/dressed.svg",
  50956. extra: 1164/1121,
  50957. bottom: 60/1224
  50958. }
  50959. },
  50960. },
  50961. [
  50962. {
  50963. name: "Micro",
  50964. height: math.unit(1, "mm")
  50965. },
  50966. {
  50967. name: "Normal",
  50968. height: math.unit(6, "feet"),
  50969. default: true
  50970. },
  50971. ]
  50972. ))
  50973. characterMakers.push(() => makeCharacter(
  50974. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  50975. {
  50976. front: {
  50977. height: math.unit(60, "inches"),
  50978. weight: math.unit(16, "lb"),
  50979. preyCapacity: math.unit(80, "liters"),
  50980. name: "Front",
  50981. image: {
  50982. source: "./media/characters/penny-lynx/front.svg",
  50983. extra: 1959/1769,
  50984. bottom: 49/2008
  50985. }
  50986. },
  50987. },
  50988. [
  50989. {
  50990. name: "Nokia",
  50991. height: math.unit(2, "inches")
  50992. },
  50993. {
  50994. name: "Desktop",
  50995. height: math.unit(24, "inches")
  50996. },
  50997. {
  50998. name: "TV",
  50999. height: math.unit(60, "inches")
  51000. },
  51001. {
  51002. name: "Jumbotron",
  51003. height: math.unit(12, "feet")
  51004. },
  51005. {
  51006. name: "Billboard",
  51007. height: math.unit(48, "feet"),
  51008. default: true
  51009. },
  51010. {
  51011. name: "IMAX",
  51012. height: math.unit(96, "feet")
  51013. },
  51014. {
  51015. name: "SINGULARITY",
  51016. height: math.unit(864938, "miles")
  51017. },
  51018. ]
  51019. ))
  51020. characterMakers.push(() => makeCharacter(
  51021. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51022. {
  51023. front: {
  51024. height: math.unit(5 + 4/12, "feet"),
  51025. weight: math.unit(230, "lb"),
  51026. name: "Front",
  51027. image: {
  51028. source: "./media/characters/sukebe/front.svg",
  51029. extra: 2130/2038,
  51030. bottom: 90/2220
  51031. }
  51032. },
  51033. back: {
  51034. height: math.unit(3.48, "feet"),
  51035. weight: math.unit(230, "lb"),
  51036. name: "Back",
  51037. image: {
  51038. source: "./media/characters/sukebe/back.svg",
  51039. extra: 1670/1604,
  51040. bottom: 0/1670
  51041. }
  51042. },
  51043. },
  51044. [
  51045. {
  51046. name: "Normal",
  51047. height: math.unit(5 + 4/12, "feet"),
  51048. default: true
  51049. },
  51050. ]
  51051. ))
  51052. characterMakers.push(() => makeCharacter(
  51053. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51054. {
  51055. front: {
  51056. height: math.unit(6, "feet"),
  51057. name: "Front",
  51058. image: {
  51059. source: "./media/characters/nylla/front.svg",
  51060. extra: 1868/1699,
  51061. bottom: 97/1965
  51062. }
  51063. },
  51064. back: {
  51065. height: math.unit(6, "feet"),
  51066. name: "Back",
  51067. image: {
  51068. source: "./media/characters/nylla/back.svg",
  51069. extra: 1889/1712,
  51070. bottom: 93/1982
  51071. }
  51072. },
  51073. frontNsfw: {
  51074. height: math.unit(6, "feet"),
  51075. name: "Front (NSFW)",
  51076. image: {
  51077. source: "./media/characters/nylla/front-nsfw.svg",
  51078. extra: 1868/1699,
  51079. bottom: 97/1965
  51080. },
  51081. extraAttributes: {
  51082. "dickLength": {
  51083. name: "Dick Length",
  51084. power: 1,
  51085. type: "length",
  51086. base: math.unit(1.4, "feet")
  51087. },
  51088. "cumVolume": {
  51089. name: "Cum Volume",
  51090. power: 3,
  51091. type: "volume",
  51092. base: math.unit(100, "mL")
  51093. },
  51094. }
  51095. },
  51096. backNsfw: {
  51097. height: math.unit(6, "feet"),
  51098. name: "Back (NSFW)",
  51099. image: {
  51100. source: "./media/characters/nylla/back-nsfw.svg",
  51101. extra: 1889/1712,
  51102. bottom: 93/1982
  51103. }
  51104. },
  51105. maw: {
  51106. height: math.unit(2.10, "feet"),
  51107. name: "Maw",
  51108. image: {
  51109. source: "./media/characters/nylla/maw.svg"
  51110. }
  51111. },
  51112. paws: {
  51113. height: math.unit(2.06, "feet"),
  51114. name: "Paws",
  51115. image: {
  51116. source: "./media/characters/nylla/paws.svg"
  51117. }
  51118. },
  51119. muzzle: {
  51120. height: math.unit(0.61, "feet"),
  51121. name: "Muzzle",
  51122. image: {
  51123. source: "./media/characters/nylla/muzzle.svg"
  51124. }
  51125. },
  51126. sheath: {
  51127. height: math.unit(1.305, "feet"),
  51128. name: "Sheath",
  51129. image: {
  51130. source: "./media/characters/nylla/sheath.svg"
  51131. }
  51132. },
  51133. },
  51134. [
  51135. {
  51136. name: "Micro",
  51137. height: math.unit(7.5, "inches")
  51138. },
  51139. {
  51140. name: "Normal",
  51141. height: math.unit(7, "feet"),
  51142. default: true
  51143. },
  51144. {
  51145. name: "Macro",
  51146. height: math.unit(60, "feet")
  51147. },
  51148. {
  51149. name: "Mega",
  51150. height: math.unit(200, "feet")
  51151. },
  51152. ]
  51153. ))
  51154. characterMakers.push(() => makeCharacter(
  51155. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51156. {
  51157. front: {
  51158. height: math.unit(10, "feet"),
  51159. weight: math.unit(2300, "lb"),
  51160. name: "Front",
  51161. image: {
  51162. source: "./media/characters/hunt3r/front.svg",
  51163. extra: 1909/1742,
  51164. bottom: 46/1955
  51165. }
  51166. },
  51167. },
  51168. [
  51169. {
  51170. name: "Normal",
  51171. height: math.unit(10, "feet"),
  51172. default: true
  51173. },
  51174. ]
  51175. ))
  51176. characterMakers.push(() => makeCharacter(
  51177. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51178. {
  51179. dressed: {
  51180. height: math.unit(11, "feet"),
  51181. weight: math.unit(18500, "lb"),
  51182. preyCapacity: math.unit(9, "people"),
  51183. name: "Dressed",
  51184. image: {
  51185. source: "./media/characters/cylphis/dressed.svg",
  51186. extra: 1028/1003,
  51187. bottom: 75/1103
  51188. },
  51189. },
  51190. undressed: {
  51191. height: math.unit(11, "feet"),
  51192. weight: math.unit(18500, "lb"),
  51193. preyCapacity: math.unit(9, "people"),
  51194. name: "Undressed",
  51195. image: {
  51196. source: "./media/characters/cylphis/undressed.svg",
  51197. extra: 1028/1003,
  51198. bottom: 75/1103
  51199. }
  51200. },
  51201. full: {
  51202. height: math.unit(11, "feet"),
  51203. weight: math.unit(18500 + 150*9, "lb"),
  51204. preyCapacity: math.unit(9, "people"),
  51205. name: "Full",
  51206. image: {
  51207. source: "./media/characters/cylphis/full.svg",
  51208. extra: 1028/1003,
  51209. bottom: 75/1103
  51210. }
  51211. },
  51212. },
  51213. [
  51214. {
  51215. name: "Small",
  51216. height: math.unit(8, "feet")
  51217. },
  51218. {
  51219. name: "Normal",
  51220. height: math.unit(11, "feet"),
  51221. default: true
  51222. },
  51223. ]
  51224. ))
  51225. characterMakers.push(() => makeCharacter(
  51226. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51227. {
  51228. front: {
  51229. height: math.unit(2 + 7/12, "feet"),
  51230. name: "Front",
  51231. image: {
  51232. source: "./media/characters/orishan/front.svg",
  51233. extra: 1058/1023,
  51234. bottom: 23/1081
  51235. }
  51236. },
  51237. back: {
  51238. height: math.unit(2 + 7/12, "feet"),
  51239. name: "Back",
  51240. image: {
  51241. source: "./media/characters/orishan/back.svg",
  51242. extra: 1058/1023,
  51243. bottom: 23/1081
  51244. }
  51245. },
  51246. },
  51247. [
  51248. {
  51249. name: "Micro",
  51250. height: math.unit(2, "cm")
  51251. },
  51252. {
  51253. name: "Normal",
  51254. height: math.unit(2 + 7/12, "feet"),
  51255. default: true
  51256. },
  51257. ]
  51258. ))
  51259. characterMakers.push(() => makeCharacter(
  51260. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51261. {
  51262. front: {
  51263. height: math.unit(3, "meters"),
  51264. weight: math.unit(508, "kg"),
  51265. name: "Front",
  51266. image: {
  51267. source: "./media/characters/seranis/front.svg",
  51268. extra: 1478/1454,
  51269. bottom: 41/1519
  51270. }
  51271. },
  51272. },
  51273. [
  51274. {
  51275. name: "Normal",
  51276. height: math.unit(3, "meters"),
  51277. default: true
  51278. },
  51279. {
  51280. name: "Macro",
  51281. height: math.unit(108, "meters")
  51282. },
  51283. {
  51284. name: "Megamacro",
  51285. height: math.unit(1250, "meters")
  51286. },
  51287. ]
  51288. ))
  51289. //characters
  51290. function makeCharacters() {
  51291. const results = [];
  51292. characterMakers.forEach(character => {
  51293. results.push(character());
  51294. });
  51295. return results;
  51296. }