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.
 
 
 

52020 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. back: {
  2096. height: math.unit(12, "feet"),
  2097. weight: math.unit(2400, "lb"),
  2098. name: "Back",
  2099. image: {
  2100. source: "./media/characters/fen/back.svg",
  2101. },
  2102. info: {
  2103. description: {
  2104. mode: "append",
  2105. text: "\n\nHe is not currently looking at you."
  2106. }
  2107. }
  2108. },
  2109. full: {
  2110. height: math.unit(1.85, "meter"),
  2111. weight: math.unit(3200, "lb"),
  2112. name: "Full",
  2113. image: {
  2114. source: "./media/characters/fen/full.svg",
  2115. extra: 1133/859,
  2116. bottom: 145/1278
  2117. },
  2118. info: {
  2119. description: {
  2120. mode: "append",
  2121. text: "\n\nMunch."
  2122. }
  2123. }
  2124. },
  2125. gooLounging: {
  2126. height: math.unit(4.53, "feet"),
  2127. weight: math.unit(3000, "lb"),
  2128. preyCapacity: math.unit(6, "people"),
  2129. name: "Goo (Lounging)",
  2130. image: {
  2131. source: "./media/characters/fen/goo-lounging.svg",
  2132. bottom: 116 / 613
  2133. }
  2134. },
  2135. lounging: {
  2136. height: math.unit(10.52, "feet"),
  2137. weight: math.unit(2400, "lb"),
  2138. name: "Lounging",
  2139. image: {
  2140. source: "./media/characters/fen/lounging.svg"
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Small",
  2147. height: math.unit(2.2428, "meter")
  2148. },
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(12, "feet"),
  2152. default: true,
  2153. },
  2154. {
  2155. name: "Big",
  2156. height: math.unit(20, "feet")
  2157. },
  2158. {
  2159. name: "Minimacro",
  2160. height: math.unit(40, "feet"),
  2161. info: {
  2162. description: {
  2163. mode: "append",
  2164. text: "\n\nTOO DAMN BIG"
  2165. }
  2166. }
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(100, "feet"),
  2171. info: {
  2172. description: {
  2173. mode: "append",
  2174. text: "\n\nTOO DAMN BIG"
  2175. }
  2176. }
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(2, "miles")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(10, "earths")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(183, "cm"),
  2193. weight: math.unit(80, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/sofia-fluttertail/front.svg",
  2197. bottom: 0.01,
  2198. extra: 2154 / 2081
  2199. }
  2200. },
  2201. frontAlt: {
  2202. height: math.unit(183, "cm"),
  2203. weight: math.unit(80, "kg"),
  2204. name: "Front (alt)",
  2205. image: {
  2206. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(183, "cm"),
  2211. weight: math.unit(80, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/sofia-fluttertail/back.svg"
  2215. }
  2216. },
  2217. kneeling: {
  2218. height: math.unit(125, "cm"),
  2219. weight: math.unit(80, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2223. extra: 1033 / 977,
  2224. bottom: 23.7 / 1057
  2225. }
  2226. },
  2227. maw: {
  2228. height: math.unit(183 / 5, "cm"),
  2229. name: "Maw",
  2230. image: {
  2231. source: "./media/characters/sofia-fluttertail/maw.svg"
  2232. }
  2233. },
  2234. mawcloseup: {
  2235. height: math.unit(183 / 5 * 0.41, "cm"),
  2236. name: "Maw (Closeup)",
  2237. image: {
  2238. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2239. }
  2240. },
  2241. paws: {
  2242. height: math.unit(1.17, "feet"),
  2243. name: "Paws",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/paws.svg",
  2246. extra: 851 / 851,
  2247. bottom: 17 / 868
  2248. }
  2249. },
  2250. },
  2251. [
  2252. {
  2253. name: "Normal",
  2254. height: math.unit(1.83, "meter")
  2255. },
  2256. {
  2257. name: "Size Thief",
  2258. height: math.unit(18, "feet")
  2259. },
  2260. {
  2261. name: "50 Foot Collie",
  2262. height: math.unit(50, "feet")
  2263. },
  2264. {
  2265. name: "Macro",
  2266. height: math.unit(96, "feet"),
  2267. default: true
  2268. },
  2269. {
  2270. name: "Megamerger",
  2271. height: math.unit(650, "feet")
  2272. },
  2273. ]
  2274. ))
  2275. characterMakers.push(() => makeCharacter(
  2276. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2277. {
  2278. front: {
  2279. height: math.unit(7, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Front",
  2282. image: {
  2283. source: "./media/characters/march/front.svg",
  2284. extra: 1992/1851,
  2285. bottom: 39/2031
  2286. }
  2287. },
  2288. foot: {
  2289. height: math.unit(0.9, "feet"),
  2290. name: "Foot",
  2291. image: {
  2292. source: "./media/characters/march/foot.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Normal",
  2299. height: math.unit(7.9, "feet")
  2300. },
  2301. {
  2302. name: "Macro",
  2303. height: math.unit(220, "meters")
  2304. },
  2305. {
  2306. name: "Megamacro",
  2307. height: math.unit(2.98, "km"),
  2308. default: true
  2309. },
  2310. {
  2311. name: "Gigamacro",
  2312. height: math.unit(15963, "km")
  2313. },
  2314. {
  2315. name: "Teramacro",
  2316. height: math.unit(2980000000, "km")
  2317. },
  2318. {
  2319. name: "Examacro",
  2320. height: math.unit(250, "parsecs")
  2321. },
  2322. ]
  2323. ))
  2324. characterMakers.push(() => makeCharacter(
  2325. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2326. {
  2327. front: {
  2328. height: math.unit(6, "feet"),
  2329. weight: math.unit(60, "kg"),
  2330. name: "Front",
  2331. image: {
  2332. source: "./media/characters/noir/front.svg",
  2333. extra: 1,
  2334. bottom: 0.032
  2335. }
  2336. },
  2337. },
  2338. [
  2339. {
  2340. name: "Normal",
  2341. height: math.unit(6.6, "feet")
  2342. },
  2343. {
  2344. name: "Macro",
  2345. height: math.unit(500, "feet")
  2346. },
  2347. {
  2348. name: "Megamacro",
  2349. height: math.unit(2.5, "km"),
  2350. default: true
  2351. },
  2352. {
  2353. name: "Gigamacro",
  2354. height: math.unit(22500, "km")
  2355. },
  2356. {
  2357. name: "Teramacro",
  2358. height: math.unit(2500000000, "km")
  2359. },
  2360. {
  2361. name: "Examacro",
  2362. height: math.unit(200, "parsecs")
  2363. },
  2364. ]
  2365. ))
  2366. characterMakers.push(() => makeCharacter(
  2367. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2368. {
  2369. front: {
  2370. height: math.unit(7, "feet"),
  2371. weight: math.unit(100, "kg"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/okuri/front.svg",
  2375. extra: 739/665,
  2376. bottom: 39/778
  2377. }
  2378. },
  2379. back: {
  2380. height: math.unit(7, "feet"),
  2381. weight: math.unit(100, "kg"),
  2382. name: "Back",
  2383. image: {
  2384. source: "./media/characters/okuri/back.svg",
  2385. extra: 734/653,
  2386. bottom: 13/747
  2387. }
  2388. },
  2389. sitting: {
  2390. height: math.unit(2.95, "feet"),
  2391. weight: math.unit(100, "kg"),
  2392. name: "Sitting",
  2393. image: {
  2394. source: "./media/characters/okuri/sitting.svg",
  2395. extra: 370/318,
  2396. bottom: 99/469
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Smallest",
  2403. height: math.unit(5 + 2/12, "feet")
  2404. },
  2405. {
  2406. name: "Smaller",
  2407. height: math.unit(300, "feet")
  2408. },
  2409. {
  2410. name: "Small",
  2411. height: math.unit(1000, "feet")
  2412. },
  2413. {
  2414. name: "Macro",
  2415. height: math.unit(1, "mile")
  2416. },
  2417. {
  2418. name: "Mega Macro (Small)",
  2419. height: math.unit(20, "km")
  2420. },
  2421. {
  2422. name: "Mega Macro (Large)",
  2423. height: math.unit(600, "km")
  2424. },
  2425. {
  2426. name: "Giga Macro",
  2427. height: math.unit(10000, "km")
  2428. },
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(577560, "km"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Large",
  2436. height: math.unit(4, "galaxies")
  2437. },
  2438. {
  2439. name: "Largest",
  2440. height: math.unit(15, "multiverses")
  2441. },
  2442. ]
  2443. ))
  2444. characterMakers.push(() => makeCharacter(
  2445. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2446. {
  2447. front: {
  2448. height: math.unit(7, "feet"),
  2449. weight: math.unit(100, "kg"),
  2450. name: "Front",
  2451. image: {
  2452. source: "./media/characters/manny/front.svg",
  2453. extra: 1,
  2454. bottom: 0.06
  2455. }
  2456. },
  2457. back: {
  2458. height: math.unit(7, "feet"),
  2459. weight: math.unit(100, "kg"),
  2460. name: "Back",
  2461. image: {
  2462. source: "./media/characters/manny/back.svg",
  2463. extra: 1,
  2464. bottom: 0.014
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(7, "feet"),
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(78, "feet"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(300, "meters")
  2481. },
  2482. {
  2483. name: "Macro++",
  2484. height: math.unit(2400, "meters")
  2485. },
  2486. {
  2487. name: "Megamacro",
  2488. height: math.unit(5167, "meters")
  2489. },
  2490. {
  2491. name: "Gigamacro",
  2492. height: math.unit(41769, "miles")
  2493. },
  2494. ]
  2495. ))
  2496. characterMakers.push(() => makeCharacter(
  2497. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2498. {
  2499. front: {
  2500. height: math.unit(7, "feet"),
  2501. weight: math.unit(100, "kg"),
  2502. name: "Front",
  2503. image: {
  2504. source: "./media/characters/adake/front-1.svg"
  2505. }
  2506. },
  2507. frontAlt: {
  2508. height: math.unit(7, "feet"),
  2509. weight: math.unit(100, "kg"),
  2510. name: "Front (Alt)",
  2511. image: {
  2512. source: "./media/characters/adake/front-2.svg",
  2513. extra: 1,
  2514. bottom: 0.01
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(7, "feet"),
  2519. weight: math.unit(100, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/adake/back.svg",
  2523. }
  2524. },
  2525. kneel: {
  2526. height: math.unit(5.385, "feet"),
  2527. weight: math.unit(100, "kg"),
  2528. name: "Kneeling",
  2529. image: {
  2530. source: "./media/characters/adake/kneel.svg",
  2531. bottom: 0.052
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(7, "feet"),
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(78, "feet"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Macro+",
  2547. height: math.unit(300, "meters")
  2548. },
  2549. {
  2550. name: "Macro++",
  2551. height: math.unit(2400, "meters")
  2552. },
  2553. {
  2554. name: "Megamacro",
  2555. height: math.unit(5167, "meters")
  2556. },
  2557. {
  2558. name: "Gigamacro",
  2559. height: math.unit(41769, "miles")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(1.65, "meters"),
  2568. weight: math.unit(50, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/elijah/front.svg",
  2572. extra: 858 / 830,
  2573. bottom: 95.5 / 953.8559
  2574. }
  2575. },
  2576. back: {
  2577. height: math.unit(1.65, "meters"),
  2578. weight: math.unit(50, "kg"),
  2579. name: "Back",
  2580. image: {
  2581. source: "./media/characters/elijah/back.svg",
  2582. extra: 895 / 850,
  2583. bottom: 5.3 / 897.956
  2584. }
  2585. },
  2586. frontNsfw: {
  2587. height: math.unit(1.65, "meters"),
  2588. weight: math.unit(50, "kg"),
  2589. name: "Front (NSFW)",
  2590. image: {
  2591. source: "./media/characters/elijah/front-nsfw.svg",
  2592. extra: 858 / 830,
  2593. bottom: 95.5 / 953.8559
  2594. }
  2595. },
  2596. backNsfw: {
  2597. height: math.unit(1.65, "meters"),
  2598. weight: math.unit(50, "kg"),
  2599. name: "Back (NSFW)",
  2600. image: {
  2601. source: "./media/characters/elijah/back-nsfw.svg",
  2602. extra: 895 / 850,
  2603. bottom: 5.3 / 897.956
  2604. }
  2605. },
  2606. dick: {
  2607. height: math.unit(1, "feet"),
  2608. name: "Dick",
  2609. image: {
  2610. source: "./media/characters/elijah/dick.svg"
  2611. }
  2612. },
  2613. beakOpen: {
  2614. height: math.unit(1.25, "feet"),
  2615. name: "Beak (Open)",
  2616. image: {
  2617. source: "./media/characters/elijah/beak-open.svg"
  2618. }
  2619. },
  2620. beakShut: {
  2621. height: math.unit(1.25, "feet"),
  2622. name: "Beak (Shut)",
  2623. image: {
  2624. source: "./media/characters/elijah/beak-shut.svg"
  2625. }
  2626. },
  2627. footFlexing: {
  2628. height: math.unit(1.61, "feet"),
  2629. name: "Foot (Flexing)",
  2630. image: {
  2631. source: "./media/characters/elijah/foot-flexing.svg"
  2632. }
  2633. },
  2634. footStepping: {
  2635. height: math.unit(1.44, "feet"),
  2636. name: "Foot (Stepping)",
  2637. image: {
  2638. source: "./media/characters/elijah/foot-stepping.svg"
  2639. }
  2640. },
  2641. plantigradeLeg: {
  2642. height: math.unit(2.34, "feet"),
  2643. name: "Plantigrade Leg",
  2644. image: {
  2645. source: "./media/characters/elijah/plantigrade-leg.svg"
  2646. }
  2647. },
  2648. plantigradeFootLeft: {
  2649. height: math.unit(0.9, "feet"),
  2650. name: "Plantigrade Foot (Left)",
  2651. image: {
  2652. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2653. }
  2654. },
  2655. plantigradeFootRight: {
  2656. height: math.unit(0.9, "feet"),
  2657. name: "Plantigrade Foot (Right)",
  2658. image: {
  2659. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2660. }
  2661. },
  2662. },
  2663. [
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(1.65, "meters")
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(55, "meters"),
  2671. default: true
  2672. },
  2673. {
  2674. name: "Macro+",
  2675. height: math.unit(105, "meters")
  2676. },
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2681. {
  2682. front: {
  2683. height: math.unit(7 + 2/12, "feet"),
  2684. weight: math.unit(320, "kg"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/rai/front.svg",
  2688. extra: 1802/1696,
  2689. bottom: 68/1870
  2690. }
  2691. },
  2692. frontDressed: {
  2693. height: math.unit(7 + 2/12, "feet"),
  2694. weight: math.unit(320, "kg"),
  2695. name: "Front (Dressed)",
  2696. image: {
  2697. source: "./media/characters/rai/front-dressed.svg",
  2698. extra: 1802/1696,
  2699. bottom: 68/1870
  2700. }
  2701. },
  2702. side: {
  2703. height: math.unit(7 + 2/12, "feet"),
  2704. weight: math.unit(320, "kg"),
  2705. name: "Side",
  2706. image: {
  2707. source: "./media/characters/rai/side.svg",
  2708. extra: 1789/1710,
  2709. bottom: 115/1904
  2710. }
  2711. },
  2712. back: {
  2713. height: math.unit(7 + 2/12, "feet"),
  2714. weight: math.unit(320, "kg"),
  2715. name: "Back",
  2716. image: {
  2717. source: "./media/characters/rai/back.svg",
  2718. extra: 1770/1707,
  2719. bottom: 28/1798
  2720. }
  2721. },
  2722. feral: {
  2723. height: math.unit(9.5, "feet"),
  2724. weight: math.unit(640, "kg"),
  2725. name: "Feral",
  2726. image: {
  2727. source: "./media/characters/rai/feral.svg",
  2728. extra: 945/553,
  2729. bottom: 176/1121
  2730. }
  2731. },
  2732. dragon: {
  2733. height: math.unit(23, "feet"),
  2734. weight: math.unit(50000, "lb"),
  2735. name: "Dragon",
  2736. image: {
  2737. source: "./media/characters/rai/dragon.svg",
  2738. extra: 2498 / 2030,
  2739. bottom: 85.2 / 2584
  2740. }
  2741. },
  2742. maw: {
  2743. height: math.unit(1.69, "feet"),
  2744. name: "Maw",
  2745. image: {
  2746. source: "./media/characters/rai/maw.svg"
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(7 + 2/12, "feet")
  2754. },
  2755. {
  2756. name: "Big",
  2757. height: math.unit(11, "feet")
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(302, "feet"),
  2762. default: true
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2768. {
  2769. frontDressed: {
  2770. height: math.unit(216, "feet"),
  2771. weight: math.unit(7000000, "lb"),
  2772. name: "Front (Dressed)",
  2773. image: {
  2774. source: "./media/characters/jazzy/front-dressed.svg",
  2775. extra: 2738 / 2651,
  2776. bottom: 41.8 / 2786
  2777. }
  2778. },
  2779. backDressed: {
  2780. height: math.unit(216, "feet"),
  2781. weight: math.unit(7000000, "lb"),
  2782. name: "Back (Dressed)",
  2783. image: {
  2784. source: "./media/characters/jazzy/back-dressed.svg",
  2785. extra: 2775 / 2673,
  2786. bottom: 36.8 / 2817
  2787. }
  2788. },
  2789. front: {
  2790. height: math.unit(216, "feet"),
  2791. weight: math.unit(7000000, "lb"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/jazzy/front.svg",
  2795. extra: 2738 / 2651,
  2796. bottom: 41.8 / 2786
  2797. }
  2798. },
  2799. back: {
  2800. height: math.unit(216, "feet"),
  2801. weight: math.unit(7000000, "lb"),
  2802. name: "Back",
  2803. image: {
  2804. source: "./media/characters/jazzy/back.svg",
  2805. extra: 2775 / 2673,
  2806. bottom: 36.8 / 2817
  2807. }
  2808. },
  2809. maw: {
  2810. height: math.unit(20, "feet"),
  2811. name: "Maw",
  2812. image: {
  2813. source: "./media/characters/jazzy/maw.svg"
  2814. }
  2815. },
  2816. paws: {
  2817. height: math.unit(27.5, "feet"),
  2818. name: "Paws",
  2819. image: {
  2820. source: "./media/characters/jazzy/paws.svg"
  2821. }
  2822. },
  2823. eye: {
  2824. height: math.unit(4.4, "feet"),
  2825. name: "Eye",
  2826. image: {
  2827. source: "./media/characters/jazzy/eye.svg"
  2828. }
  2829. },
  2830. droneOffense: {
  2831. height: math.unit(9.5, "inches"),
  2832. name: "Drone (Offense)",
  2833. image: {
  2834. source: "./media/characters/jazzy/drone-offense.svg"
  2835. }
  2836. },
  2837. droneRecon: {
  2838. height: math.unit(9.5, "inches"),
  2839. name: "Drone (Recon)",
  2840. image: {
  2841. source: "./media/characters/jazzy/drone-recon.svg"
  2842. }
  2843. },
  2844. droneDefense: {
  2845. height: math.unit(9.5, "inches"),
  2846. name: "Drone (Defense)",
  2847. image: {
  2848. source: "./media/characters/jazzy/drone-defense.svg"
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(216, "feet"),
  2856. default: true
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(9 + 6/12, "feet"),
  2865. weight: math.unit(700, "lb"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/flamm/front.svg",
  2869. extra: 1751/1632,
  2870. bottom: 46/1797
  2871. }
  2872. },
  2873. buff: {
  2874. height: math.unit(9 + 6/12, "feet"),
  2875. weight: math.unit(950, "lb"),
  2876. name: "Buff",
  2877. image: {
  2878. source: "./media/characters/flamm/buff.svg",
  2879. extra: 3018/2874,
  2880. bottom: 221/3239
  2881. }
  2882. },
  2883. },
  2884. [
  2885. {
  2886. name: "Normal",
  2887. height: math.unit(9.5, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(200, "feet"),
  2892. default: true
  2893. },
  2894. ]
  2895. ))
  2896. characterMakers.push(() => makeCharacter(
  2897. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2898. {
  2899. front: {
  2900. height: math.unit(5 + 3/12, "feet"),
  2901. weight: math.unit(60, "kg"),
  2902. name: "Front",
  2903. image: {
  2904. source: "./media/characters/zephiro/front.svg",
  2905. extra: 2309 / 2162,
  2906. bottom: 0.069
  2907. }
  2908. },
  2909. side: {
  2910. height: math.unit(5 + 3/12, "feet"),
  2911. weight: math.unit(60, "kg"),
  2912. name: "Side",
  2913. image: {
  2914. source: "./media/characters/zephiro/side.svg",
  2915. extra: 2403 / 2279,
  2916. bottom: 0.015
  2917. }
  2918. },
  2919. back: {
  2920. height: math.unit(5 + 3/12, "feet"),
  2921. weight: math.unit(60, "kg"),
  2922. name: "Back",
  2923. image: {
  2924. source: "./media/characters/zephiro/back.svg",
  2925. extra: 2373 / 2244,
  2926. bottom: 0.013
  2927. }
  2928. },
  2929. hand: {
  2930. height: math.unit(0.68, "feet"),
  2931. name: "Hand",
  2932. image: {
  2933. source: "./media/characters/zephiro/hand.svg"
  2934. }
  2935. },
  2936. paw: {
  2937. height: math.unit(1, "feet"),
  2938. name: "Paw",
  2939. image: {
  2940. source: "./media/characters/zephiro/paw.svg"
  2941. }
  2942. },
  2943. beans: {
  2944. height: math.unit(0.93, "feet"),
  2945. name: "Beans",
  2946. image: {
  2947. source: "./media/characters/zephiro/beans.svg"
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Micro",
  2954. height: math.unit(3, "inches")
  2955. },
  2956. {
  2957. name: "Normal",
  2958. height: math.unit(5 + 3 / 12, "feet"),
  2959. default: true
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(118, "feet")
  2964. },
  2965. ]
  2966. ))
  2967. characterMakers.push(() => makeCharacter(
  2968. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2969. {
  2970. front: {
  2971. height: math.unit(5, "feet"),
  2972. weight: math.unit(90, "kg"),
  2973. name: "Front",
  2974. image: {
  2975. source: "./media/characters/fory/front.svg",
  2976. extra: 2862 / 2674,
  2977. bottom: 180 / 3043.8
  2978. }
  2979. },
  2980. back: {
  2981. height: math.unit(5, "feet"),
  2982. weight: math.unit(90, "kg"),
  2983. name: "Back",
  2984. image: {
  2985. source: "./media/characters/fory/back.svg",
  2986. extra: 2962 / 2791,
  2987. bottom: 106 / 3071.8
  2988. }
  2989. },
  2990. foot: {
  2991. height: math.unit(2.14, "feet"),
  2992. name: "Foot",
  2993. image: {
  2994. source: "./media/characters/fory/foot.svg"
  2995. }
  2996. },
  2997. },
  2998. [
  2999. {
  3000. name: "Normal",
  3001. height: math.unit(5, "feet")
  3002. },
  3003. {
  3004. name: "Macro",
  3005. height: math.unit(50, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Megamacro",
  3010. height: math.unit(10, "miles")
  3011. },
  3012. {
  3013. name: "Gigamacro",
  3014. height: math.unit(5, "earths")
  3015. },
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(7, "feet"),
  3023. weight: math.unit(90, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/kurrikage/front.svg",
  3027. extra: 1845/1733,
  3028. bottom: 119/1964
  3029. }
  3030. },
  3031. back: {
  3032. height: math.unit(7, "feet"),
  3033. weight: math.unit(90, "kg"),
  3034. name: "Back",
  3035. image: {
  3036. source: "./media/characters/kurrikage/back.svg",
  3037. extra: 1790/1677,
  3038. bottom: 61/1851
  3039. }
  3040. },
  3041. dressed: {
  3042. height: math.unit(7, "feet"),
  3043. weight: math.unit(90, "kg"),
  3044. name: "Dressed",
  3045. image: {
  3046. source: "./media/characters/kurrikage/dressed.svg",
  3047. extra: 1845/1733,
  3048. bottom: 119/1964
  3049. }
  3050. },
  3051. foot: {
  3052. height: math.unit(1.5, "feet"),
  3053. name: "Foot",
  3054. image: {
  3055. source: "./media/characters/kurrikage/foot.svg"
  3056. }
  3057. },
  3058. staff: {
  3059. height: math.unit(6.7, "feet"),
  3060. name: "Staff",
  3061. image: {
  3062. source: "./media/characters/kurrikage/staff.svg"
  3063. }
  3064. },
  3065. peek: {
  3066. height: math.unit(1.05, "feet"),
  3067. name: "Peeking",
  3068. image: {
  3069. source: "./media/characters/kurrikage/peek.svg",
  3070. bottom: 0.08
  3071. }
  3072. },
  3073. },
  3074. [
  3075. {
  3076. name: "Normal",
  3077. height: math.unit(12, "feet"),
  3078. default: true
  3079. },
  3080. {
  3081. name: "Big",
  3082. height: math.unit(20, "feet")
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(500, "feet")
  3087. },
  3088. {
  3089. name: "Megamacro",
  3090. height: math.unit(20, "miles")
  3091. },
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/shingo/front.svg",
  3103. extra: 1900/1825,
  3104. bottom: 82/1982
  3105. }
  3106. },
  3107. side: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Side",
  3111. image: {
  3112. source: "./media/characters/shingo/side.svg",
  3113. extra: 1930/1865,
  3114. bottom: 16/1946
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/shingo/back.svg",
  3123. extra: 1922/1852,
  3124. bottom: 16/1938
  3125. }
  3126. },
  3127. frontDressed: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(150, "lb"),
  3130. name: "Front-dressed",
  3131. image: {
  3132. source: "./media/characters/shingo/front-dressed.svg",
  3133. extra: 1900/1825,
  3134. bottom: 82/1982
  3135. }
  3136. },
  3137. paw: {
  3138. height: math.unit(1.29, "feet"),
  3139. name: "Paw",
  3140. image: {
  3141. source: "./media/characters/shingo/paw.svg"
  3142. }
  3143. },
  3144. hand: {
  3145. height: math.unit(1.07, "feet"),
  3146. name: "Hand",
  3147. image: {
  3148. source: "./media/characters/shingo/hand.svg"
  3149. }
  3150. },
  3151. frontAlt: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(75, "kg"),
  3154. name: "Front (Alt)",
  3155. image: {
  3156. source: "./media/characters/shingo/front-alt.svg",
  3157. extra: 3511 / 3338,
  3158. bottom: 0.005
  3159. }
  3160. },
  3161. frontAlt2: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Front (Alt 2)",
  3165. image: {
  3166. source: "./media/characters/shingo/front-alt-2.svg",
  3167. extra: 706/681,
  3168. bottom: 11/717
  3169. }
  3170. },
  3171. pawAlt: {
  3172. height: math.unit(1, "feet"),
  3173. name: "Paw (Alt)",
  3174. image: {
  3175. source: "./media/characters/shingo/paw-alt.svg"
  3176. }
  3177. },
  3178. },
  3179. [
  3180. {
  3181. name: "Micro",
  3182. height: math.unit(4, "inches")
  3183. },
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(6, "feet"),
  3187. default: true
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(108, "feet")
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(1500, "feet")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3201. {
  3202. side: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Side",
  3206. image: {
  3207. source: "./media/characters/aigey/side.svg"
  3208. }
  3209. },
  3210. },
  3211. [
  3212. {
  3213. name: "Macro",
  3214. height: math.unit(200, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Megamacro",
  3219. height: math.unit(100, "miles")
  3220. },
  3221. ]
  3222. )
  3223. )
  3224. characterMakers.push(() => makeCharacter(
  3225. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3226. {
  3227. front: {
  3228. height: math.unit(5 + 5 / 12, "feet"),
  3229. weight: math.unit(75, "kg"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/natasha/front.svg",
  3233. extra: 859 / 824,
  3234. bottom: 23 / 879.6
  3235. }
  3236. },
  3237. frontNsfw: {
  3238. height: math.unit(5 + 5 / 12, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Front (NSFW)",
  3241. image: {
  3242. source: "./media/characters/natasha/front-nsfw.svg",
  3243. extra: 859 / 824,
  3244. bottom: 23 / 879.6
  3245. }
  3246. },
  3247. frontErect: {
  3248. height: math.unit(5 + 5 / 12, "feet"),
  3249. weight: math.unit(75, "kg"),
  3250. name: "Front (Erect)",
  3251. image: {
  3252. source: "./media/characters/natasha/front-erect.svg",
  3253. extra: 859 / 824,
  3254. bottom: 23 / 879.6
  3255. }
  3256. },
  3257. back: {
  3258. height: math.unit(5 + 5 / 12, "feet"),
  3259. weight: math.unit(75, "kg"),
  3260. name: "Back",
  3261. image: {
  3262. source: "./media/characters/natasha/back.svg",
  3263. extra: 887.9 / 852.6,
  3264. bottom: 9.7 / 896.4
  3265. }
  3266. },
  3267. backAlt: {
  3268. height: math.unit(5 + 5 / 12, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back (Alt)",
  3271. image: {
  3272. source: "./media/characters/natasha/back-alt.svg",
  3273. extra: 1236.7 / 1192,
  3274. bottom: 22.3 / 1258.2
  3275. }
  3276. },
  3277. dick: {
  3278. height: math.unit(1.772, "feet"),
  3279. name: "Dick",
  3280. image: {
  3281. source: "./media/characters/natasha/dick.svg"
  3282. }
  3283. },
  3284. paw: {
  3285. height: math.unit(0.250, "meters"),
  3286. name: "Paw",
  3287. image: {
  3288. source: "./media/characters/natasha/paw.svg"
  3289. },
  3290. extraAttributes: {
  3291. "toeSize": {
  3292. name: "Toe Size",
  3293. power: 2,
  3294. type: "area",
  3295. base: math.unit(0.0024, "m^2")
  3296. },
  3297. "padSize": {
  3298. name: "Pad Size",
  3299. power: 2,
  3300. type: "area",
  3301. base: math.unit(0.00889, "m^2")
  3302. },
  3303. "pawSize": {
  3304. name: "Paw Size",
  3305. power: 2,
  3306. type: "area",
  3307. base: math.unit(0.023667, "m^2")
  3308. },
  3309. }
  3310. },
  3311. },
  3312. [
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(5 + 5 / 12, "feet")
  3316. },
  3317. {
  3318. name: "Large",
  3319. height: math.unit(12, "feet")
  3320. },
  3321. {
  3322. name: "Macro",
  3323. height: math.unit(100, "feet"),
  3324. default: true
  3325. },
  3326. {
  3327. name: "Macro+",
  3328. height: math.unit(260, "feet")
  3329. },
  3330. {
  3331. name: "Macro++",
  3332. height: math.unit(1, "mile")
  3333. },
  3334. ]
  3335. ))
  3336. characterMakers.push(() => makeCharacter(
  3337. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3338. {
  3339. front: {
  3340. height: math.unit(6, "feet"),
  3341. weight: math.unit(75, "kg"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/malik/front.svg"
  3345. }
  3346. },
  3347. side: {
  3348. height: math.unit(6, "feet"),
  3349. weight: math.unit(75, "kg"),
  3350. name: "Side",
  3351. image: {
  3352. source: "./media/characters/malik/side.svg",
  3353. extra: 1.1539
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(75, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/malik/back.svg"
  3362. }
  3363. },
  3364. },
  3365. [
  3366. {
  3367. name: "Macro",
  3368. height: math.unit(156, "feet"),
  3369. default: true
  3370. },
  3371. {
  3372. name: "Macro+",
  3373. height: math.unit(1188, "feet")
  3374. },
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3379. {
  3380. front: {
  3381. height: math.unit(6, "feet"),
  3382. weight: math.unit(75, "kg"),
  3383. name: "Front",
  3384. image: {
  3385. source: "./media/characters/sefer/front.svg",
  3386. extra: 848 / 659,
  3387. bottom: 28.3 / 876.442
  3388. }
  3389. },
  3390. back: {
  3391. height: math.unit(6, "feet"),
  3392. weight: math.unit(75, "kg"),
  3393. name: "Back",
  3394. image: {
  3395. source: "./media/characters/sefer/back.svg",
  3396. extra: 864 / 695,
  3397. bottom: 10 / 871
  3398. }
  3399. },
  3400. frontDressed: {
  3401. height: math.unit(6, "feet"),
  3402. weight: math.unit(75, "kg"),
  3403. name: "Front (Dressed)",
  3404. image: {
  3405. source: "./media/characters/sefer/front-dressed.svg",
  3406. extra: 839 / 653,
  3407. bottom: 37.6 / 878
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Normal",
  3414. height: math.unit(6, "feet"),
  3415. default: true
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3421. {
  3422. body: {
  3423. height: math.unit(2.2428, "meter"),
  3424. weight: math.unit(124.738, "kg"),
  3425. name: "Body",
  3426. image: {
  3427. extra: 1225 / 1050,
  3428. source: "./media/characters/north/front.svg"
  3429. }
  3430. }
  3431. },
  3432. [
  3433. {
  3434. name: "Micro",
  3435. height: math.unit(4, "inches")
  3436. },
  3437. {
  3438. name: "Macro",
  3439. height: math.unit(63, "meters")
  3440. },
  3441. {
  3442. name: "Megamacro",
  3443. height: math.unit(101, "miles"),
  3444. default: true
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3450. {
  3451. angled: {
  3452. height: math.unit(4, "meter"),
  3453. weight: math.unit(150, "kg"),
  3454. name: "Angled",
  3455. image: {
  3456. source: "./media/characters/talan/angled-sfw.svg",
  3457. bottom: 29 / 3734
  3458. }
  3459. },
  3460. angledNsfw: {
  3461. height: math.unit(4, "meter"),
  3462. weight: math.unit(150, "kg"),
  3463. name: "Angled (NSFW)",
  3464. image: {
  3465. source: "./media/characters/talan/angled-nsfw.svg",
  3466. bottom: 29 / 3734
  3467. }
  3468. },
  3469. frontNsfw: {
  3470. height: math.unit(4, "meter"),
  3471. weight: math.unit(150, "kg"),
  3472. name: "Front (NSFW)",
  3473. image: {
  3474. source: "./media/characters/talan/front-nsfw.svg",
  3475. bottom: 29 / 3734
  3476. }
  3477. },
  3478. sideNsfw: {
  3479. height: math.unit(4, "meter"),
  3480. weight: math.unit(150, "kg"),
  3481. name: "Side (NSFW)",
  3482. image: {
  3483. source: "./media/characters/talan/side-nsfw.svg",
  3484. bottom: 29 / 3734
  3485. }
  3486. },
  3487. back: {
  3488. height: math.unit(4, "meter"),
  3489. weight: math.unit(150, "kg"),
  3490. name: "Back",
  3491. image: {
  3492. source: "./media/characters/talan/back.svg"
  3493. }
  3494. },
  3495. dickBottom: {
  3496. height: math.unit(0.621, "meter"),
  3497. name: "Dick (Bottom)",
  3498. image: {
  3499. source: "./media/characters/talan/dick-bottom.svg"
  3500. }
  3501. },
  3502. dickTop: {
  3503. height: math.unit(0.621, "meter"),
  3504. name: "Dick (Top)",
  3505. image: {
  3506. source: "./media/characters/talan/dick-top.svg"
  3507. }
  3508. },
  3509. dickSide: {
  3510. height: math.unit(0.305, "meter"),
  3511. name: "Dick (Side)",
  3512. image: {
  3513. source: "./media/characters/talan/dick-side.svg"
  3514. }
  3515. },
  3516. dickFront: {
  3517. height: math.unit(0.305, "meter"),
  3518. name: "Dick (Front)",
  3519. image: {
  3520. source: "./media/characters/talan/dick-front.svg"
  3521. }
  3522. },
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(4, "meters")
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(100, "meters")
  3532. },
  3533. {
  3534. name: "Megamacro",
  3535. height: math.unit(2, "miles"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Gigamacro",
  3540. height: math.unit(5000, "miles")
  3541. },
  3542. {
  3543. name: "Teramacro",
  3544. height: math.unit(100, "parsecs")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(90, "kg"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/gael'rathus/front.svg"
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(90, "kg"),
  3562. name: "Front (alt)",
  3563. image: {
  3564. source: "./media/characters/gael'rathus/front-alt.svg"
  3565. }
  3566. },
  3567. frontAlt2: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(90, "kg"),
  3570. name: "Front (alt 2)",
  3571. image: {
  3572. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(9, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Large",
  3584. height: math.unit(25, "feet")
  3585. },
  3586. {
  3587. name: "Macro",
  3588. height: math.unit(0.25, "miles")
  3589. },
  3590. {
  3591. name: "Megamacro",
  3592. height: math.unit(10, "miles")
  3593. }
  3594. ]
  3595. ))
  3596. characterMakers.push(() => makeCharacter(
  3597. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3598. {
  3599. side: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(140, "kg"),
  3602. name: "Side",
  3603. image: {
  3604. source: "./media/characters/sosha/side.svg",
  3605. bottom: 0.042
  3606. }
  3607. },
  3608. },
  3609. [
  3610. {
  3611. name: "Normal",
  3612. height: math.unit(12, "feet"),
  3613. default: true
  3614. }
  3615. ]
  3616. ))
  3617. characterMakers.push(() => makeCharacter(
  3618. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3619. {
  3620. side: {
  3621. height: math.unit(5 + 5 / 12, "feet"),
  3622. weight: math.unit(170, "kg"),
  3623. name: "Side",
  3624. image: {
  3625. source: "./media/characters/runnola/side.svg",
  3626. extra: 741 / 448,
  3627. bottom: 0.05
  3628. }
  3629. },
  3630. },
  3631. [
  3632. {
  3633. name: "Small",
  3634. height: math.unit(3, "feet")
  3635. },
  3636. {
  3637. name: "Normal",
  3638. height: math.unit(5 + 5 / 12, "feet"),
  3639. default: true
  3640. },
  3641. {
  3642. name: "Big",
  3643. height: math.unit(10, "feet")
  3644. },
  3645. ]
  3646. ))
  3647. characterMakers.push(() => makeCharacter(
  3648. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3649. {
  3650. front: {
  3651. height: math.unit(2, "meter"),
  3652. weight: math.unit(50, "kg"),
  3653. name: "Front",
  3654. image: {
  3655. source: "./media/characters/kurribird/front.svg",
  3656. bottom: 0.015
  3657. }
  3658. },
  3659. frontAlt: {
  3660. height: math.unit(1.5, "meter"),
  3661. weight: math.unit(50, "kg"),
  3662. name: "Front (Alt)",
  3663. image: {
  3664. source: "./media/characters/kurribird/front-alt.svg",
  3665. extra: 1.45
  3666. }
  3667. },
  3668. },
  3669. [
  3670. {
  3671. name: "Normal",
  3672. height: math.unit(7, "feet")
  3673. },
  3674. {
  3675. name: "Big",
  3676. height: math.unit(12, "feet"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(1500, "feet")
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(2, "miles")
  3686. }
  3687. ]
  3688. ))
  3689. characterMakers.push(() => makeCharacter(
  3690. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3691. {
  3692. front: {
  3693. height: math.unit(2, "meter"),
  3694. weight: math.unit(80, "kg"),
  3695. name: "Front",
  3696. image: {
  3697. source: "./media/characters/elbial/front.svg",
  3698. extra: 1643 / 1556,
  3699. bottom: 60.2 / 1696
  3700. }
  3701. },
  3702. side: {
  3703. height: math.unit(2, "meter"),
  3704. weight: math.unit(80, "kg"),
  3705. name: "Side",
  3706. image: {
  3707. source: "./media/characters/elbial/side.svg",
  3708. extra: 1601/1528,
  3709. bottom: 97/1698
  3710. }
  3711. },
  3712. back: {
  3713. height: math.unit(2, "meter"),
  3714. weight: math.unit(80, "kg"),
  3715. name: "Back",
  3716. image: {
  3717. source: "./media/characters/elbial/back.svg",
  3718. extra: 1653/1569,
  3719. bottom: 20/1673
  3720. }
  3721. },
  3722. frontDressed: {
  3723. height: math.unit(2, "meter"),
  3724. weight: math.unit(80, "kg"),
  3725. name: "Front (Dressed)",
  3726. image: {
  3727. source: "./media/characters/elbial/front-dressed.svg",
  3728. extra: 1638/1569,
  3729. bottom: 70/1708
  3730. }
  3731. },
  3732. genitals: {
  3733. height: math.unit(2 / 3.367, "meter"),
  3734. name: "Genitals",
  3735. image: {
  3736. source: "./media/characters/elbial/genitals.svg"
  3737. }
  3738. },
  3739. },
  3740. [
  3741. {
  3742. name: "Large",
  3743. height: math.unit(100, "feet")
  3744. },
  3745. {
  3746. name: "Macro",
  3747. height: math.unit(500, "feet"),
  3748. default: true
  3749. },
  3750. {
  3751. name: "Megamacro",
  3752. height: math.unit(10, "miles")
  3753. },
  3754. {
  3755. name: "Gigamacro",
  3756. height: math.unit(25000, "miles")
  3757. },
  3758. {
  3759. name: "Full-Size",
  3760. height: math.unit(8000000, "gigaparsecs")
  3761. }
  3762. ]
  3763. ))
  3764. characterMakers.push(() => makeCharacter(
  3765. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3766. {
  3767. front: {
  3768. height: math.unit(2, "meter"),
  3769. weight: math.unit(60, "kg"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/noah/front.svg"
  3773. }
  3774. },
  3775. talons: {
  3776. height: math.unit(0.315, "meter"),
  3777. name: "Talons",
  3778. image: {
  3779. source: "./media/characters/noah/talons.svg"
  3780. }
  3781. }
  3782. },
  3783. [
  3784. {
  3785. name: "Large",
  3786. height: math.unit(50, "feet")
  3787. },
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(750, "feet"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Megamacro",
  3795. height: math.unit(50, "miles")
  3796. },
  3797. {
  3798. name: "Gigamacro",
  3799. height: math.unit(100000, "miles")
  3800. },
  3801. {
  3802. name: "Full-Size",
  3803. height: math.unit(3000000000, "miles")
  3804. }
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(80, "kg"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/natalya/front.svg"
  3816. }
  3817. },
  3818. back: {
  3819. height: math.unit(2, "meter"),
  3820. weight: math.unit(80, "kg"),
  3821. name: "Back",
  3822. image: {
  3823. source: "./media/characters/natalya/back.svg"
  3824. }
  3825. }
  3826. },
  3827. [
  3828. {
  3829. name: "Normal",
  3830. height: math.unit(150, "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Megamacro",
  3835. height: math.unit(5, "miles")
  3836. },
  3837. {
  3838. name: "Full-Size",
  3839. height: math.unit(600, "kiloparsecs")
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(2, "meter"),
  3848. weight: math.unit(50, "kg"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/erestrebah/front.svg",
  3852. extra: 1262/1162,
  3853. bottom: 96/1358
  3854. }
  3855. },
  3856. back: {
  3857. height: math.unit(2, "meter"),
  3858. weight: math.unit(50, "kg"),
  3859. name: "Back",
  3860. image: {
  3861. source: "./media/characters/erestrebah/back.svg",
  3862. extra: 1257/1139,
  3863. bottom: 13/1270
  3864. }
  3865. },
  3866. wing: {
  3867. height: math.unit(2, "meter"),
  3868. weight: math.unit(50, "kg"),
  3869. name: "Wing",
  3870. image: {
  3871. source: "./media/characters/erestrebah/wing.svg",
  3872. extra: 1262/1162,
  3873. bottom: 96/1358
  3874. }
  3875. },
  3876. mouth: {
  3877. height: math.unit(0.39, "feet"),
  3878. name: "Mouth",
  3879. image: {
  3880. source: "./media/characters/erestrebah/mouth.svg"
  3881. }
  3882. }
  3883. },
  3884. [
  3885. {
  3886. name: "Normal",
  3887. height: math.unit(10, "feet")
  3888. },
  3889. {
  3890. name: "Large",
  3891. height: math.unit(50, "feet"),
  3892. default: true
  3893. },
  3894. {
  3895. name: "Macro",
  3896. height: math.unit(300, "feet")
  3897. },
  3898. {
  3899. name: "Macro+",
  3900. height: math.unit(750, "feet")
  3901. },
  3902. {
  3903. name: "Megamacro",
  3904. height: math.unit(3, "miles")
  3905. }
  3906. ]
  3907. ))
  3908. characterMakers.push(() => makeCharacter(
  3909. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3910. {
  3911. front: {
  3912. height: math.unit(2, "meter"),
  3913. weight: math.unit(80, "kg"),
  3914. name: "Front",
  3915. image: {
  3916. source: "./media/characters/jennifer/front.svg",
  3917. bottom: 0.11,
  3918. extra: 1.16
  3919. }
  3920. },
  3921. frontAlt: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(80, "kg"),
  3924. name: "Front (Alt)",
  3925. image: {
  3926. source: "./media/characters/jennifer/front-alt.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Canon Height",
  3933. height: math.unit(120, "feet"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Macro+",
  3938. height: math.unit(300, "feet")
  3939. },
  3940. {
  3941. name: "Megamacro",
  3942. height: math.unit(20000, "feet")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(2, "meter"),
  3951. weight: math.unit(50, "kg"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/kalista/front.svg",
  3955. extra: 1314/1145,
  3956. bottom: 101/1415
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(2, "meter"),
  3961. weight: math.unit(50, "kg"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/kalista/back.svg",
  3965. extra: 1366 / 1156,
  3966. bottom: 33.9 / 1362.78
  3967. }
  3968. }
  3969. },
  3970. [
  3971. {
  3972. name: "Uncomfortably Small",
  3973. height: math.unit(10, "feet")
  3974. },
  3975. {
  3976. name: "Small",
  3977. height: math.unit(30, "feet")
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(100, "feet"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Macro+",
  3986. height: math.unit(2000, "feet")
  3987. },
  3988. {
  3989. name: "True Form",
  3990. height: math.unit(8924, "miles")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(120, "kg"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/ggv/front.svg"
  4003. }
  4004. },
  4005. side: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(120, "kg"),
  4008. name: "Side",
  4009. image: {
  4010. source: "./media/characters/ggv/side.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Extremely Puny",
  4017. height: math.unit(9 + 5 / 12, "feet")
  4018. },
  4019. {
  4020. name: "Horribly Small",
  4021. height: math.unit(47.7, "miles"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Reasonably Sized",
  4026. height: math.unit(25000, "parsecs")
  4027. },
  4028. {
  4029. name: "Slightly Uncompressed",
  4030. height: math.unit(7.77e31, "parsecs")
  4031. },
  4032. {
  4033. name: "Omniversal",
  4034. height: math.unit(1e300, "meters")
  4035. },
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(2, "meter"),
  4043. weight: math.unit(75, "lb"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/napalm/front.svg"
  4047. }
  4048. },
  4049. back: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(75, "lb"),
  4052. name: "Back",
  4053. image: {
  4054. source: "./media/characters/napalm/back.svg"
  4055. }
  4056. }
  4057. },
  4058. [
  4059. {
  4060. name: "Standard",
  4061. height: math.unit(55, "feet"),
  4062. default: true
  4063. }
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(7 + 5 / 6, "feet"),
  4071. weight: math.unit(325, "lb"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/asana/front.svg",
  4075. extra: 1133 / 1060,
  4076. bottom: 15.2 / 1148.6
  4077. }
  4078. },
  4079. back: {
  4080. height: math.unit(7 + 5 / 6, "feet"),
  4081. weight: math.unit(325, "lb"),
  4082. name: "Back",
  4083. image: {
  4084. source: "./media/characters/asana/back.svg",
  4085. extra: 1114 / 1043,
  4086. bottom: 5 / 1120
  4087. }
  4088. },
  4089. dressedDark: {
  4090. height: math.unit(7 + 5 / 6, "feet"),
  4091. weight: math.unit(325, "lb"),
  4092. name: "Dressed (Dark)",
  4093. image: {
  4094. source: "./media/characters/asana/dressed-dark.svg",
  4095. extra: 1133 / 1060,
  4096. bottom: 15.2 / 1148.6
  4097. }
  4098. },
  4099. dressedLight: {
  4100. height: math.unit(7 + 5 / 6, "feet"),
  4101. weight: math.unit(325, "lb"),
  4102. name: "Dressed (Light)",
  4103. image: {
  4104. source: "./media/characters/asana/dressed-light.svg",
  4105. extra: 1133 / 1060,
  4106. bottom: 15.2 / 1148.6
  4107. }
  4108. },
  4109. },
  4110. [
  4111. {
  4112. name: "Standard",
  4113. height: math.unit(7 + 5 / 6, "feet"),
  4114. default: true
  4115. },
  4116. {
  4117. name: "Large",
  4118. height: math.unit(10, "meters")
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(2500, "meters")
  4123. },
  4124. {
  4125. name: "Megamacro",
  4126. height: math.unit(5e6, "meters")
  4127. },
  4128. {
  4129. name: "Examacro",
  4130. height: math.unit(5e12, "lightyears")
  4131. },
  4132. {
  4133. name: "Max Size",
  4134. height: math.unit(1e31, "lightyears")
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(2, "meter"),
  4143. weight: math.unit(60, "kg"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/ebony/front.svg",
  4147. bottom: 0.03,
  4148. extra: 1045 / 810 + 0.03
  4149. }
  4150. },
  4151. side: {
  4152. height: math.unit(2, "meter"),
  4153. weight: math.unit(60, "kg"),
  4154. name: "Side",
  4155. image: {
  4156. source: "./media/characters/ebony/side.svg",
  4157. bottom: 0.03,
  4158. extra: 1045 / 810 + 0.03
  4159. }
  4160. },
  4161. back: {
  4162. height: math.unit(2, "meter"),
  4163. weight: math.unit(60, "kg"),
  4164. name: "Back",
  4165. image: {
  4166. source: "./media/characters/ebony/back.svg",
  4167. bottom: 0.01,
  4168. extra: 1045 / 810 + 0.01
  4169. }
  4170. },
  4171. },
  4172. [
  4173. // TODO check why I did this lol
  4174. {
  4175. name: "Standard",
  4176. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Macro",
  4181. height: math.unit(200, "feet")
  4182. },
  4183. {
  4184. name: "Gigamacro",
  4185. height: math.unit(13000, "km")
  4186. }
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4191. {
  4192. front: {
  4193. height: math.unit(6, "feet"),
  4194. weight: math.unit(175, "lb"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/mountain/front.svg",
  4198. extra: 972 / 955,
  4199. bottom: 64 / 1036.6
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(6, "feet"),
  4204. weight: math.unit(175, "lb"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/mountain/back.svg",
  4208. extra: 970 / 950,
  4209. bottom: 28.25 / 999
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Large",
  4216. height: math.unit(20, "meters")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(300, "meters")
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(10000, "km"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Examacro",
  4229. height: math.unit(10e9, "lightyears")
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4235. {
  4236. front: {
  4237. height: math.unit(8, "feet"),
  4238. weight: math.unit(500, "lb"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/rick/front.svg"
  4242. }
  4243. }
  4244. },
  4245. [
  4246. {
  4247. name: "Normal",
  4248. height: math.unit(8, "feet"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Macro",
  4253. height: math.unit(5, "km")
  4254. }
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4259. {
  4260. front: {
  4261. height: math.unit(8, "feet"),
  4262. weight: math.unit(120, "lb"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/ona/front.svg"
  4266. }
  4267. },
  4268. frontAlt: {
  4269. height: math.unit(8, "feet"),
  4270. weight: math.unit(120, "lb"),
  4271. name: "Front (Alt)",
  4272. image: {
  4273. source: "./media/characters/ona/front-alt.svg"
  4274. }
  4275. },
  4276. back: {
  4277. height: math.unit(8, "feet"),
  4278. weight: math.unit(120, "lb"),
  4279. name: "Back",
  4280. image: {
  4281. source: "./media/characters/ona/back.svg"
  4282. }
  4283. },
  4284. foot: {
  4285. height: math.unit(1.1, "feet"),
  4286. name: "Foot",
  4287. image: {
  4288. source: "./media/characters/ona/foot.svg"
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Megamacro",
  4295. height: math.unit(70, "km"),
  4296. default: true
  4297. },
  4298. {
  4299. name: "Gigamacro",
  4300. height: math.unit(681818, "miles")
  4301. },
  4302. {
  4303. name: "Examacro",
  4304. height: math.unit(3800000, "lightyears")
  4305. },
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(12, "feet"),
  4313. weight: math.unit(3000, "lb"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/mech/front.svg",
  4317. extra: 2900 / 2770,
  4318. bottom: 110 / 3010
  4319. }
  4320. },
  4321. back: {
  4322. height: math.unit(12, "feet"),
  4323. weight: math.unit(3000, "lb"),
  4324. name: "Back",
  4325. image: {
  4326. source: "./media/characters/mech/back.svg",
  4327. extra: 3011 / 2890,
  4328. bottom: 94 / 3105
  4329. }
  4330. },
  4331. maw: {
  4332. height: math.unit(3.07, "feet"),
  4333. name: "Maw",
  4334. image: {
  4335. source: "./media/characters/mech/maw.svg"
  4336. }
  4337. },
  4338. head: {
  4339. height: math.unit(2.82, "feet"),
  4340. name: "Head",
  4341. image: {
  4342. source: "./media/characters/mech/head.svg"
  4343. }
  4344. },
  4345. dick: {
  4346. height: math.unit(1.43, "feet"),
  4347. name: "Dick",
  4348. image: {
  4349. source: "./media/characters/mech/dick.svg"
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(12, "feet")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(300, "feet"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Macro+",
  4365. height: math.unit(1500, "feet")
  4366. },
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4371. {
  4372. front: {
  4373. height: math.unit(1.3, "meter"),
  4374. weight: math.unit(30, "kg"),
  4375. name: "Front",
  4376. image: {
  4377. source: "./media/characters/gregory/front.svg",
  4378. }
  4379. }
  4380. },
  4381. [
  4382. {
  4383. name: "Normal",
  4384. height: math.unit(1.3, "meter"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Macro",
  4389. height: math.unit(20, "meter")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(2.8, "meter"),
  4398. weight: math.unit(200, "kg"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/elory/front.svg",
  4402. }
  4403. }
  4404. },
  4405. [
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(2.8, "meter"),
  4409. default: true
  4410. },
  4411. {
  4412. name: "Macro",
  4413. height: math.unit(38, "meter")
  4414. }
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(470, "feet"),
  4422. weight: math.unit(924, "tons"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/angelpatamon/front.svg",
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Normal",
  4432. height: math.unit(470, "feet"),
  4433. default: true
  4434. },
  4435. {
  4436. name: "Deity Size I",
  4437. height: math.unit(28651.2, "km")
  4438. },
  4439. {
  4440. name: "Deity Size II",
  4441. height: math.unit(171907.2, "km")
  4442. }
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4447. {
  4448. side: {
  4449. height: math.unit(7.2, "meter"),
  4450. weight: math.unit(8.2, "tons"),
  4451. name: "Side",
  4452. image: {
  4453. source: "./media/characters/cryae/side.svg",
  4454. extra: 3500 / 1500
  4455. }
  4456. }
  4457. },
  4458. [
  4459. {
  4460. name: "Normal",
  4461. height: math.unit(7.2, "meter"),
  4462. default: true
  4463. }
  4464. ]
  4465. ))
  4466. characterMakers.push(() => makeCharacter(
  4467. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4468. {
  4469. front: {
  4470. height: math.unit(6, "feet"),
  4471. weight: math.unit(175, "lb"),
  4472. name: "Front",
  4473. image: {
  4474. source: "./media/characters/xera/front.svg",
  4475. extra: 2377 / 1972,
  4476. bottom: 75.5 / 2452
  4477. }
  4478. },
  4479. side: {
  4480. height: math.unit(6, "feet"),
  4481. weight: math.unit(175, "lb"),
  4482. name: "Side",
  4483. image: {
  4484. source: "./media/characters/xera/side.svg",
  4485. extra: 2345 / 2019,
  4486. bottom: 39.7 / 2384
  4487. }
  4488. },
  4489. back: {
  4490. height: math.unit(6, "feet"),
  4491. weight: math.unit(175, "lb"),
  4492. name: "Back",
  4493. image: {
  4494. source: "./media/characters/xera/back.svg",
  4495. extra: 2095 / 1984,
  4496. bottom: 67 / 2166
  4497. }
  4498. },
  4499. },
  4500. [
  4501. {
  4502. name: "Small",
  4503. height: math.unit(10, "feet")
  4504. },
  4505. {
  4506. name: "Macro",
  4507. height: math.unit(500, "meters"),
  4508. default: true
  4509. },
  4510. {
  4511. name: "Macro+",
  4512. height: math.unit(10, "km")
  4513. },
  4514. {
  4515. name: "Gigamacro",
  4516. height: math.unit(25000, "km")
  4517. },
  4518. {
  4519. name: "Teramacro",
  4520. height: math.unit(3e6, "km")
  4521. }
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4526. {
  4527. front: {
  4528. height: math.unit(6, "feet"),
  4529. weight: math.unit(175, "lb"),
  4530. name: "Front",
  4531. image: {
  4532. source: "./media/characters/nebula/front.svg",
  4533. extra: 2566 / 2362,
  4534. bottom: 81 / 2644
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Small",
  4541. height: math.unit(4.5, "meters")
  4542. },
  4543. {
  4544. name: "Macro",
  4545. height: math.unit(1500, "meters"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "Megamacro",
  4550. height: math.unit(150, "km")
  4551. },
  4552. {
  4553. name: "Gigamacro",
  4554. height: math.unit(27000, "km")
  4555. }
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(6, "feet"),
  4563. weight: math.unit(225, "lb"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/abysgar/front.svg",
  4567. extra: 1739/1614,
  4568. bottom: 71/1810
  4569. }
  4570. },
  4571. frontNsfw: {
  4572. height: math.unit(6, "feet"),
  4573. weight: math.unit(225, "lb"),
  4574. name: "Front (NSFW)",
  4575. image: {
  4576. source: "./media/characters/abysgar/front-nsfw.svg",
  4577. extra: 1739/1614,
  4578. bottom: 71/1810
  4579. }
  4580. },
  4581. back: {
  4582. height: math.unit(4.6, "feet"),
  4583. weight: math.unit(225, "lb"),
  4584. name: "Back",
  4585. image: {
  4586. source: "./media/characters/abysgar/back.svg",
  4587. extra: 1384/1327,
  4588. bottom: 0/1384
  4589. }
  4590. },
  4591. head: {
  4592. height: math.unit(1.25, "feet"),
  4593. name: "Head",
  4594. image: {
  4595. source: "./media/characters/abysgar/head.svg",
  4596. extra: 669/569,
  4597. bottom: 0/669
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Small",
  4604. height: math.unit(4.5, "meters")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(1250, "meters"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(125, "km")
  4614. },
  4615. {
  4616. name: "Gigamacro",
  4617. height: math.unit(26000, "km")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(6, "feet"),
  4626. weight: math.unit(180, "lb"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/yakuz/front.svg"
  4630. }
  4631. }
  4632. },
  4633. [
  4634. {
  4635. name: "Small",
  4636. height: math.unit(5, "meters")
  4637. },
  4638. {
  4639. name: "Macro",
  4640. height: math.unit(1500, "meters"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Megamacro",
  4645. height: math.unit(200, "km")
  4646. },
  4647. {
  4648. name: "Gigamacro",
  4649. height: math.unit(100000, "km")
  4650. }
  4651. ]
  4652. ))
  4653. characterMakers.push(() => makeCharacter(
  4654. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4655. {
  4656. front: {
  4657. height: math.unit(6, "feet"),
  4658. weight: math.unit(175, "lb"),
  4659. name: "Front",
  4660. image: {
  4661. source: "./media/characters/mirova/front.svg",
  4662. extra: 3334 / 3071,
  4663. bottom: 42 / 3375.6
  4664. }
  4665. }
  4666. },
  4667. [
  4668. {
  4669. name: "Small",
  4670. height: math.unit(5, "meters")
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(900, "meters"),
  4675. default: true
  4676. },
  4677. {
  4678. name: "Megamacro",
  4679. height: math.unit(135, "km")
  4680. },
  4681. {
  4682. name: "Gigamacro",
  4683. height: math.unit(20000, "km")
  4684. }
  4685. ]
  4686. ))
  4687. characterMakers.push(() => makeCharacter(
  4688. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4689. {
  4690. side: {
  4691. height: math.unit(28.35, "feet"),
  4692. weight: math.unit(99.75, "tons"),
  4693. name: "Side",
  4694. image: {
  4695. source: "./media/characters/asana-mech/side.svg",
  4696. extra: 923 / 699,
  4697. bottom: 50 / 975
  4698. }
  4699. },
  4700. chaingun: {
  4701. height: math.unit(7, "feet"),
  4702. weight: math.unit(2400, "lb"),
  4703. name: "Chaingun",
  4704. image: {
  4705. source: "./media/characters/asana-mech/chaingun.svg"
  4706. }
  4707. },
  4708. laser: {
  4709. height: math.unit(7.12, "feet"),
  4710. weight: math.unit(2000, "lb"),
  4711. name: "Laser",
  4712. image: {
  4713. source: "./media/characters/asana-mech/laser.svg"
  4714. }
  4715. },
  4716. },
  4717. [
  4718. {
  4719. name: "Normal",
  4720. height: math.unit(28.35, "feet"),
  4721. default: true
  4722. },
  4723. {
  4724. name: "Macro",
  4725. height: math.unit(2500, "feet")
  4726. },
  4727. {
  4728. name: "Megamacro",
  4729. height: math.unit(25, "miles")
  4730. },
  4731. {
  4732. name: "Examacro",
  4733. height: math.unit(6e8, "lightyears")
  4734. },
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(5, "meters"),
  4742. weight: math.unit(1000, "kg"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/asche/front.svg",
  4746. extra: 1258 / 1190,
  4747. bottom: 47 / 1305
  4748. }
  4749. },
  4750. frontUnderwear: {
  4751. height: math.unit(5, "meters"),
  4752. weight: math.unit(1000, "kg"),
  4753. name: "Front (Underwear)",
  4754. image: {
  4755. source: "./media/characters/asche/front-underwear.svg",
  4756. extra: 1258 / 1190,
  4757. bottom: 47 / 1305
  4758. }
  4759. },
  4760. frontDressed: {
  4761. height: math.unit(5, "meters"),
  4762. weight: math.unit(1000, "kg"),
  4763. name: "Front (Dressed)",
  4764. image: {
  4765. source: "./media/characters/asche/front-dressed.svg",
  4766. extra: 1258 / 1190,
  4767. bottom: 47 / 1305
  4768. }
  4769. },
  4770. frontArmor: {
  4771. height: math.unit(5, "meters"),
  4772. weight: math.unit(1000, "kg"),
  4773. name: "Front (Armored)",
  4774. image: {
  4775. source: "./media/characters/asche/front-armored.svg",
  4776. extra: 1374 / 1308,
  4777. bottom: 23 / 1397
  4778. }
  4779. },
  4780. mp724: {
  4781. height: math.unit(0.96, "meters"),
  4782. weight: math.unit(38, "kg"),
  4783. name: "H&K MP724",
  4784. image: {
  4785. source: "./media/characters/asche/h&k-mp724.svg"
  4786. }
  4787. },
  4788. side: {
  4789. height: math.unit(5, "meters"),
  4790. weight: math.unit(1000, "kg"),
  4791. name: "Side",
  4792. image: {
  4793. source: "./media/characters/asche/side.svg",
  4794. extra: 1717 / 1609,
  4795. bottom: 0.005
  4796. }
  4797. },
  4798. back: {
  4799. height: math.unit(5, "meters"),
  4800. weight: math.unit(1000, "kg"),
  4801. name: "Back",
  4802. image: {
  4803. source: "./media/characters/asche/back.svg",
  4804. extra: 1570 / 1501
  4805. }
  4806. },
  4807. },
  4808. [
  4809. {
  4810. name: "DEFCON 5",
  4811. height: math.unit(5, "meters")
  4812. },
  4813. {
  4814. name: "DEFCON 4",
  4815. height: math.unit(500, "meters"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "DEFCON 3",
  4820. height: math.unit(5, "km")
  4821. },
  4822. {
  4823. name: "DEFCON 2",
  4824. height: math.unit(500, "km")
  4825. },
  4826. {
  4827. name: "DEFCON 1",
  4828. height: math.unit(500000, "km")
  4829. },
  4830. {
  4831. name: "DEFCON 0",
  4832. height: math.unit(3, "gigaparsecs")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(2, "meters"),
  4841. weight: math.unit(76, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/gale/front.svg"
  4845. }
  4846. },
  4847. frontAlt1: {
  4848. height: math.unit(2, "meters"),
  4849. weight: math.unit(76, "kg"),
  4850. name: "Front (Alt 1)",
  4851. image: {
  4852. source: "./media/characters/gale/front-alt-1.svg"
  4853. }
  4854. },
  4855. frontAlt2: {
  4856. height: math.unit(2, "meters"),
  4857. weight: math.unit(76, "kg"),
  4858. name: "Front (Alt 2)",
  4859. image: {
  4860. source: "./media/characters/gale/front-alt-2.svg"
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(7, "feet")
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(150, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Macro+",
  4876. height: math.unit(300, "feet")
  4877. },
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(5 + 10/12, "feet"),
  4885. weight: math.unit(67, "kg"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/draylen/front.svg",
  4889. extra: 832/777,
  4890. bottom: 85/917
  4891. }
  4892. }
  4893. },
  4894. [
  4895. {
  4896. name: "Normal",
  4897. height: math.unit(5 + 10/12, "feet")
  4898. },
  4899. {
  4900. name: "Macro",
  4901. height: math.unit(150, "feet"),
  4902. default: true
  4903. }
  4904. ]
  4905. ))
  4906. characterMakers.push(() => makeCharacter(
  4907. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4908. {
  4909. front: {
  4910. height: math.unit(7 + 9 / 12, "feet"),
  4911. weight: math.unit(379, "lbs"),
  4912. name: "Front",
  4913. image: {
  4914. source: "./media/characters/chez/front.svg"
  4915. }
  4916. },
  4917. side: {
  4918. height: math.unit(7 + 9 / 12, "feet"),
  4919. weight: math.unit(379, "lbs"),
  4920. name: "Side",
  4921. image: {
  4922. source: "./media/characters/chez/side.svg"
  4923. }
  4924. }
  4925. },
  4926. [
  4927. {
  4928. name: "Normal",
  4929. height: math.unit(7 + 9 / 12, "feet"),
  4930. default: true
  4931. },
  4932. {
  4933. name: "God King",
  4934. height: math.unit(9750000, "meters")
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4940. {
  4941. front: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(275, "lbs"),
  4944. name: "Front",
  4945. image: {
  4946. source: "./media/characters/kaylum/front.svg",
  4947. bottom: 0.01,
  4948. extra: 1166 / 1031
  4949. }
  4950. },
  4951. frontWingless: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(275, "lbs"),
  4954. name: "Front (Wingless)",
  4955. image: {
  4956. source: "./media/characters/kaylum/front-wingless.svg",
  4957. bottom: 0.01,
  4958. extra: 1117 / 1031
  4959. }
  4960. }
  4961. },
  4962. [
  4963. {
  4964. name: "Normal",
  4965. height: math.unit(3.05, "meters")
  4966. },
  4967. {
  4968. name: "Master",
  4969. height: math.unit(5.5, "meters")
  4970. },
  4971. {
  4972. name: "Rampage",
  4973. height: math.unit(19, "meters")
  4974. },
  4975. {
  4976. name: "Macro Lite",
  4977. height: math.unit(37, "meters")
  4978. },
  4979. {
  4980. name: "Hyper Predator",
  4981. height: math.unit(61, "meters")
  4982. },
  4983. {
  4984. name: "Macro",
  4985. height: math.unit(138, "meters"),
  4986. default: true
  4987. }
  4988. ]
  4989. ))
  4990. characterMakers.push(() => makeCharacter(
  4991. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4992. {
  4993. front: {
  4994. height: math.unit(5 + 5 / 12, "feet"),
  4995. weight: math.unit(120, "lbs"),
  4996. name: "Front",
  4997. image: {
  4998. source: "./media/characters/geta/front.svg",
  4999. extra: 1003/933,
  5000. bottom: 21/1024
  5001. }
  5002. },
  5003. paw: {
  5004. height: math.unit(0.35, "feet"),
  5005. name: "Paw",
  5006. image: {
  5007. source: "./media/characters/geta/paw.svg"
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "Micro",
  5014. height: math.unit(3, "inches"),
  5015. default: true
  5016. },
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(5 + 5 / 12, "feet")
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(6, "feet"),
  5028. weight: math.unit(300, "lbs"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/tyrnn/front.svg"
  5032. }
  5033. }
  5034. },
  5035. [
  5036. {
  5037. name: "Main Height",
  5038. height: math.unit(355, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Fave. Height",
  5043. height: math.unit(2400, "feet")
  5044. }
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(300, "lbs"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/appledectomy/front.svg"
  5056. }
  5057. }
  5058. },
  5059. [
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(2500, "feet")
  5063. },
  5064. {
  5065. name: "Megamacro",
  5066. height: math.unit(50, "miles"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Gigamacro",
  5071. height: math.unit(5000, "miles")
  5072. },
  5073. {
  5074. name: "Teramacro",
  5075. height: math.unit(250000, "miles")
  5076. },
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5081. {
  5082. front: {
  5083. height: math.unit(6, "feet"),
  5084. weight: math.unit(200, "lbs"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/vulpes/front.svg",
  5088. extra: 573 / 543,
  5089. bottom: 0.033
  5090. }
  5091. },
  5092. side: {
  5093. height: math.unit(6, "feet"),
  5094. weight: math.unit(200, "lbs"),
  5095. name: "Side",
  5096. image: {
  5097. source: "./media/characters/vulpes/side.svg",
  5098. extra: 577 / 549,
  5099. bottom: 11 / 588
  5100. }
  5101. },
  5102. back: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(200, "lbs"),
  5105. name: "Back",
  5106. image: {
  5107. source: "./media/characters/vulpes/back.svg",
  5108. extra: 573 / 549,
  5109. bottom: 20 / 593
  5110. }
  5111. },
  5112. feet: {
  5113. height: math.unit(1.276, "feet"),
  5114. name: "Feet",
  5115. image: {
  5116. source: "./media/characters/vulpes/feet.svg"
  5117. }
  5118. },
  5119. maw: {
  5120. height: math.unit(1.18, "feet"),
  5121. name: "Maw",
  5122. image: {
  5123. source: "./media/characters/vulpes/maw.svg"
  5124. }
  5125. },
  5126. },
  5127. [
  5128. {
  5129. name: "Micro",
  5130. height: math.unit(2, "inches")
  5131. },
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(6.3, "feet")
  5135. },
  5136. {
  5137. name: "Macro",
  5138. height: math.unit(850, "feet")
  5139. },
  5140. {
  5141. name: "Megamacro",
  5142. height: math.unit(7500, "feet"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Gigamacro",
  5147. height: math.unit(570000, "miles")
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5153. {
  5154. front: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(210, "lbs"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/rain-fallen/front.svg"
  5160. }
  5161. },
  5162. side: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(210, "lbs"),
  5165. name: "Side",
  5166. image: {
  5167. source: "./media/characters/rain-fallen/side.svg"
  5168. }
  5169. },
  5170. back: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(210, "lbs"),
  5173. name: "Back",
  5174. image: {
  5175. source: "./media/characters/rain-fallen/back.svg"
  5176. }
  5177. },
  5178. feral: {
  5179. height: math.unit(9, "feet"),
  5180. weight: math.unit(700, "lbs"),
  5181. name: "Feral",
  5182. image: {
  5183. source: "./media/characters/rain-fallen/feral.svg"
  5184. }
  5185. },
  5186. },
  5187. [
  5188. {
  5189. name: "Meddling with Mortals",
  5190. height: math.unit(8 + 8/12, "feet")
  5191. },
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(5, "meter")
  5195. },
  5196. {
  5197. name: "Macro",
  5198. height: math.unit(150, "meter"),
  5199. default: true
  5200. },
  5201. {
  5202. name: "Megamacro",
  5203. height: math.unit(278e6, "meter")
  5204. },
  5205. {
  5206. name: "Gigamacro",
  5207. height: math.unit(2e9, "meter")
  5208. },
  5209. {
  5210. name: "Teramacro",
  5211. height: math.unit(8e12, "meter")
  5212. },
  5213. {
  5214. name: "Devourer",
  5215. height: math.unit(14, "zettameters")
  5216. },
  5217. {
  5218. name: "Scarlet King",
  5219. height: math.unit(18, "yottameters")
  5220. },
  5221. {
  5222. name: "Void",
  5223. height: math.unit(1e88, "yottameters")
  5224. }
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5229. {
  5230. standing: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(180, "lbs"),
  5233. name: "Standing",
  5234. image: {
  5235. source: "./media/characters/zaakira/standing.svg",
  5236. extra: 1599/1504,
  5237. bottom: 39/1638
  5238. }
  5239. },
  5240. laying: {
  5241. height: math.unit(3.3, "feet"),
  5242. weight: math.unit(180, "lbs"),
  5243. name: "Laying",
  5244. image: {
  5245. source: "./media/characters/zaakira/laying.svg"
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Normal",
  5252. height: math.unit(12, "feet")
  5253. },
  5254. {
  5255. name: "Macro",
  5256. height: math.unit(279, "feet"),
  5257. default: true
  5258. }
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5263. {
  5264. femSfw: {
  5265. height: math.unit(8, "feet"),
  5266. weight: math.unit(350, "lb"),
  5267. name: "Fem",
  5268. image: {
  5269. source: "./media/characters/sigvald/fem-sfw.svg",
  5270. extra: 182 / 164,
  5271. bottom: 8.7 / 190.5
  5272. }
  5273. },
  5274. femNsfw: {
  5275. height: math.unit(8, "feet"),
  5276. weight: math.unit(350, "lb"),
  5277. name: "Fem (NSFW)",
  5278. image: {
  5279. source: "./media/characters/sigvald/fem-nsfw.svg",
  5280. extra: 182 / 164,
  5281. bottom: 8.7 / 190.5
  5282. }
  5283. },
  5284. maleNsfw: {
  5285. height: math.unit(8, "feet"),
  5286. weight: math.unit(350, "lb"),
  5287. name: "Male (NSFW)",
  5288. image: {
  5289. source: "./media/characters/sigvald/male-nsfw.svg",
  5290. extra: 182 / 164,
  5291. bottom: 8.7 / 190.5
  5292. }
  5293. },
  5294. hermNsfw: {
  5295. height: math.unit(8, "feet"),
  5296. weight: math.unit(350, "lb"),
  5297. name: "Herm (NSFW)",
  5298. image: {
  5299. source: "./media/characters/sigvald/herm-nsfw.svg",
  5300. extra: 182 / 164,
  5301. bottom: 8.7 / 190.5
  5302. }
  5303. },
  5304. dick: {
  5305. height: math.unit(2.36, "feet"),
  5306. name: "Dick",
  5307. image: {
  5308. source: "./media/characters/sigvald/dick.svg"
  5309. }
  5310. },
  5311. eye: {
  5312. height: math.unit(0.31, "feet"),
  5313. name: "Eye",
  5314. image: {
  5315. source: "./media/characters/sigvald/eye.svg"
  5316. }
  5317. },
  5318. mouth: {
  5319. height: math.unit(0.92, "feet"),
  5320. name: "Mouth",
  5321. image: {
  5322. source: "./media/characters/sigvald/mouth.svg"
  5323. }
  5324. },
  5325. paws: {
  5326. height: math.unit(2.2, "feet"),
  5327. name: "Paws",
  5328. image: {
  5329. source: "./media/characters/sigvald/paws.svg"
  5330. }
  5331. }
  5332. },
  5333. [
  5334. {
  5335. name: "Normal",
  5336. height: math.unit(8, "feet")
  5337. },
  5338. {
  5339. name: "Large",
  5340. height: math.unit(12, "feet")
  5341. },
  5342. {
  5343. name: "Larger",
  5344. height: math.unit(20, "feet")
  5345. },
  5346. {
  5347. name: "Macro",
  5348. height: math.unit(150, "feet")
  5349. },
  5350. {
  5351. name: "Macro+",
  5352. height: math.unit(200, "feet"),
  5353. default: true
  5354. },
  5355. ]
  5356. ))
  5357. characterMakers.push(() => makeCharacter(
  5358. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5359. {
  5360. side: {
  5361. height: math.unit(12, "feet"),
  5362. weight: math.unit(2000, "kg"),
  5363. name: "Side",
  5364. image: {
  5365. source: "./media/characters/scott/side.svg",
  5366. extra: 754 / 724,
  5367. bottom: 0.069
  5368. }
  5369. },
  5370. upright: {
  5371. height: math.unit(12, "feet"),
  5372. weight: math.unit(2000, "kg"),
  5373. name: "Upright",
  5374. image: {
  5375. source: "./media/characters/scott/upright.svg",
  5376. extra: 3881 / 3722,
  5377. bottom: 0.05
  5378. }
  5379. },
  5380. },
  5381. [
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(12, "feet"),
  5385. default: true
  5386. },
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5391. {
  5392. side: {
  5393. height: math.unit(8, "meters"),
  5394. weight: math.unit(84755, "lbs"),
  5395. name: "Side",
  5396. image: {
  5397. source: "./media/characters/tobias/side.svg",
  5398. extra: 1474 / 1096,
  5399. bottom: 38.9 / 1513.1235
  5400. }
  5401. },
  5402. },
  5403. [
  5404. {
  5405. name: "Normal",
  5406. height: math.unit(8, "meters"),
  5407. default: true
  5408. },
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5413. {
  5414. front: {
  5415. height: math.unit(5.5, "feet"),
  5416. weight: math.unit(400, "lbs"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/kieran/front.svg",
  5420. extra: 2694 / 2364,
  5421. bottom: 217 / 2908
  5422. }
  5423. },
  5424. side: {
  5425. height: math.unit(5.5, "feet"),
  5426. weight: math.unit(400, "lbs"),
  5427. name: "Side",
  5428. image: {
  5429. source: "./media/characters/kieran/side.svg",
  5430. extra: 875 / 777,
  5431. bottom: 84.6 / 959
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(5.5, "feet"),
  5439. default: true
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5445. {
  5446. side: {
  5447. height: math.unit(2, "meters"),
  5448. weight: math.unit(70, "kg"),
  5449. name: "Side",
  5450. image: {
  5451. source: "./media/characters/sanya/side.svg",
  5452. bottom: 0.02,
  5453. extra: 1.02
  5454. }
  5455. },
  5456. },
  5457. [
  5458. {
  5459. name: "Small",
  5460. height: math.unit(2, "meters")
  5461. },
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(3, "meters")
  5465. },
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(16, "meters"),
  5469. default: true
  5470. },
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5475. {
  5476. front: {
  5477. height: math.unit(2, "meters"),
  5478. weight: math.unit(120, "kg"),
  5479. name: "Front",
  5480. image: {
  5481. source: "./media/characters/miranda/front.svg",
  5482. extra: 195 / 185,
  5483. bottom: 10.9 / 206.5
  5484. }
  5485. },
  5486. back: {
  5487. height: math.unit(2, "meters"),
  5488. weight: math.unit(120, "kg"),
  5489. name: "Back",
  5490. image: {
  5491. source: "./media/characters/miranda/back.svg",
  5492. extra: 201 / 193,
  5493. bottom: 2.3 / 203.7
  5494. }
  5495. },
  5496. },
  5497. [
  5498. {
  5499. name: "Normal",
  5500. height: math.unit(10, "feet"),
  5501. default: true
  5502. }
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "James", species: ["deer"], tags: ["anthro"] },
  5507. {
  5508. side: {
  5509. height: math.unit(2, "meters"),
  5510. weight: math.unit(100, "kg"),
  5511. name: "Front",
  5512. image: {
  5513. source: "./media/characters/james/front.svg",
  5514. extra: 10 / 8.5
  5515. }
  5516. },
  5517. },
  5518. [
  5519. {
  5520. name: "Normal",
  5521. height: math.unit(8.5, "feet"),
  5522. default: true
  5523. }
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5528. {
  5529. side: {
  5530. height: math.unit(9.5, "feet"),
  5531. weight: math.unit(2500, "lbs"),
  5532. name: "Side",
  5533. image: {
  5534. source: "./media/characters/heather/side.svg"
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(9.5, "feet"),
  5542. default: true
  5543. }
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5548. {
  5549. side: {
  5550. height: math.unit(6.5, "feet"),
  5551. weight: math.unit(400, "lbs"),
  5552. name: "Side",
  5553. image: {
  5554. source: "./media/characters/lukas/side.svg",
  5555. extra: 7.25 / 6.5
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(6.5, "feet"),
  5563. default: true
  5564. }
  5565. ]
  5566. ))
  5567. characterMakers.push(() => makeCharacter(
  5568. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5569. {
  5570. side: {
  5571. height: math.unit(5, "feet"),
  5572. weight: math.unit(3000, "lbs"),
  5573. name: "Side",
  5574. image: {
  5575. source: "./media/characters/louise/side.svg"
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Normal",
  5582. height: math.unit(5, "feet"),
  5583. default: true
  5584. }
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5589. {
  5590. side: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(150, "lbs"),
  5593. name: "Side",
  5594. image: {
  5595. source: "./media/characters/ramona/side.svg",
  5596. extra: 871/854,
  5597. bottom: 41/912
  5598. }
  5599. },
  5600. },
  5601. [
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(5.3, "meters"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Macro",
  5609. height: math.unit(20, "stories")
  5610. },
  5611. {
  5612. name: "Macro+",
  5613. height: math.unit(50, "stories")
  5614. },
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5619. {
  5620. standing: {
  5621. height: math.unit(5.75, "feet"),
  5622. weight: math.unit(160, "lbs"),
  5623. name: "Standing",
  5624. image: {
  5625. source: "./media/characters/deerpuff/standing.svg",
  5626. extra: 682 / 624
  5627. }
  5628. },
  5629. sitting: {
  5630. height: math.unit(5.75 / 1.79, "feet"),
  5631. weight: math.unit(160, "lbs"),
  5632. name: "Sitting",
  5633. image: {
  5634. source: "./media/characters/deerpuff/sitting.svg",
  5635. bottom: 44 / 400,
  5636. extra: 1
  5637. }
  5638. },
  5639. taurLaying: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(400, "lbs"),
  5642. name: "Taur (Laying)",
  5643. image: {
  5644. source: "./media/characters/deerpuff/taur-laying.svg"
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Puffball",
  5651. height: math.unit(6, "inches")
  5652. },
  5653. {
  5654. name: "Normalpuff",
  5655. height: math.unit(5.75, "feet")
  5656. },
  5657. {
  5658. name: "Macropuff",
  5659. height: math.unit(1500, "feet"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Megapuff",
  5664. height: math.unit(500, "miles")
  5665. },
  5666. {
  5667. name: "Gigapuff",
  5668. height: math.unit(250000, "miles")
  5669. },
  5670. {
  5671. name: "Omegapuff",
  5672. height: math.unit(1000, "lightyears")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5678. {
  5679. stomping: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(170, "lbs"),
  5682. name: "Stomping",
  5683. image: {
  5684. source: "./media/characters/vivian/stomping.svg"
  5685. }
  5686. },
  5687. sitting: {
  5688. height: math.unit(6 / 1.75, "feet"),
  5689. weight: math.unit(170, "lbs"),
  5690. name: "Sitting",
  5691. image: {
  5692. source: "./media/characters/vivian/sitting.svg",
  5693. bottom: 1 / 6.4,
  5694. extra: 1,
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(7, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Macro",
  5706. height: math.unit(10, "stories")
  5707. },
  5708. {
  5709. name: "Macro+",
  5710. height: math.unit(30, "stories")
  5711. },
  5712. {
  5713. name: "Megamacro",
  5714. height: math.unit(10, "miles")
  5715. },
  5716. {
  5717. name: "Megamacro+",
  5718. height: math.unit(2750000, "meters")
  5719. },
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(160, "lbs"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/prince/front.svg",
  5731. extra: 3400 / 3000
  5732. }
  5733. },
  5734. jumping: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(160, "lbs"),
  5737. name: "Jumping",
  5738. image: {
  5739. source: "./media/characters/prince/jump.svg",
  5740. extra: 2555 / 2134
  5741. }
  5742. },
  5743. },
  5744. [
  5745. {
  5746. name: "Normal",
  5747. height: math.unit(7.75, "feet"),
  5748. default: true
  5749. },
  5750. {
  5751. name: "Not cute",
  5752. height: math.unit(17, "feet")
  5753. },
  5754. {
  5755. name: "I said NOT",
  5756. height: math.unit(91, "feet")
  5757. },
  5758. {
  5759. name: "Please stop",
  5760. height: math.unit(560, "feet")
  5761. },
  5762. {
  5763. name: "What have you done",
  5764. height: math.unit(2200, "feet")
  5765. },
  5766. {
  5767. name: "Deer God",
  5768. height: math.unit(3.6, "miles")
  5769. },
  5770. ]
  5771. ))
  5772. characterMakers.push(() => makeCharacter(
  5773. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5774. {
  5775. standing: {
  5776. height: math.unit(6, "feet"),
  5777. weight: math.unit(300, "lbs"),
  5778. name: "Standing",
  5779. image: {
  5780. source: "./media/characters/psymon/standing.svg",
  5781. extra: 1888 / 1810,
  5782. bottom: 0.05
  5783. }
  5784. },
  5785. slithering: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(300, "lbs"),
  5788. name: "Slithering",
  5789. image: {
  5790. source: "./media/characters/psymon/slithering.svg",
  5791. extra: 1330 / 1224
  5792. }
  5793. },
  5794. slitheringAlt: {
  5795. height: math.unit(6, "feet"),
  5796. weight: math.unit(300, "lbs"),
  5797. name: "Slithering (Alt)",
  5798. image: {
  5799. source: "./media/characters/psymon/slithering-alt.svg",
  5800. extra: 1330 / 1224
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(11.25, "feet"),
  5808. default: true
  5809. },
  5810. {
  5811. name: "Large",
  5812. height: math.unit(27, "feet")
  5813. },
  5814. {
  5815. name: "Giant",
  5816. height: math.unit(87, "feet")
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(365, "feet")
  5821. },
  5822. {
  5823. name: "Megamacro",
  5824. height: math.unit(3, "miles")
  5825. },
  5826. {
  5827. name: "World Serpent",
  5828. height: math.unit(8000, "miles")
  5829. },
  5830. ]
  5831. ))
  5832. characterMakers.push(() => makeCharacter(
  5833. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5834. {
  5835. front: {
  5836. height: math.unit(6, "feet"),
  5837. weight: math.unit(180, "lbs"),
  5838. name: "Front",
  5839. image: {
  5840. source: "./media/characters/daimos/front.svg",
  5841. extra: 4160 / 3897,
  5842. bottom: 0.021
  5843. }
  5844. }
  5845. },
  5846. [
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(8, "feet"),
  5850. default: true
  5851. },
  5852. {
  5853. name: "Big Dog",
  5854. height: math.unit(22, "feet")
  5855. },
  5856. {
  5857. name: "Macro",
  5858. height: math.unit(127, "feet")
  5859. },
  5860. {
  5861. name: "Megamacro",
  5862. height: math.unit(3600, "feet")
  5863. },
  5864. ]
  5865. ))
  5866. characterMakers.push(() => makeCharacter(
  5867. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5868. {
  5869. side: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(180, "lbs"),
  5872. name: "Side",
  5873. image: {
  5874. source: "./media/characters/blake/side.svg",
  5875. extra: 1212 / 1120,
  5876. bottom: 0.05
  5877. }
  5878. },
  5879. crouched: {
  5880. height: math.unit(6 * 0.57, "feet"),
  5881. weight: math.unit(180, "lbs"),
  5882. name: "Crouched",
  5883. image: {
  5884. source: "./media/characters/blake/crouched.svg",
  5885. extra: 840 / 587,
  5886. bottom: 0.04
  5887. }
  5888. },
  5889. bent: {
  5890. height: math.unit(6 * 0.75, "feet"),
  5891. weight: math.unit(180, "lbs"),
  5892. name: "Bent",
  5893. image: {
  5894. source: "./media/characters/blake/bent.svg",
  5895. extra: 592 / 544,
  5896. bottom: 0.035
  5897. }
  5898. },
  5899. },
  5900. [
  5901. {
  5902. name: "Normal",
  5903. height: math.unit(8 + 1 / 6, "feet"),
  5904. default: true
  5905. },
  5906. {
  5907. name: "Big Backside",
  5908. height: math.unit(37, "feet")
  5909. },
  5910. {
  5911. name: "Subway Shredder",
  5912. height: math.unit(72, "feet")
  5913. },
  5914. {
  5915. name: "City Carver",
  5916. height: math.unit(1675, "feet")
  5917. },
  5918. {
  5919. name: "Tectonic Tweaker",
  5920. height: math.unit(2300, "miles")
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5926. {
  5927. front: {
  5928. height: math.unit(6, "feet"),
  5929. weight: math.unit(180, "lbs"),
  5930. name: "Front",
  5931. image: {
  5932. source: "./media/characters/guisetto/front.svg",
  5933. extra: 856 / 817,
  5934. bottom: 0.06
  5935. }
  5936. },
  5937. airborne: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(180, "lbs"),
  5940. name: "Airborne",
  5941. image: {
  5942. source: "./media/characters/guisetto/airborne.svg",
  5943. extra: 584 / 525
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(10 + 11 / 12, "feet"),
  5951. default: true
  5952. },
  5953. {
  5954. name: "Large",
  5955. height: math.unit(35, "feet")
  5956. },
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(475, "feet")
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(6, "feet"),
  5968. weight: math.unit(180, "lbs"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/luxor/front.svg",
  5972. extra: 2940 / 2152
  5973. }
  5974. },
  5975. back: {
  5976. height: math.unit(6, "feet"),
  5977. weight: math.unit(180, "lbs"),
  5978. name: "Back",
  5979. image: {
  5980. source: "./media/characters/luxor/back.svg",
  5981. extra: 1083 / 960
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(5 + 5 / 6, "feet"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Lamp",
  5993. height: math.unit(50, "feet")
  5994. },
  5995. {
  5996. name: "Lämp",
  5997. height: math.unit(300, "feet")
  5998. },
  5999. {
  6000. name: "The sun is a lamp",
  6001. height: math.unit(250000, "miles")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6007. {
  6008. front: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(50, "lbs"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/huoyan/front.svg"
  6014. }
  6015. },
  6016. side: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(180, "lbs"),
  6019. name: "Side",
  6020. image: {
  6021. source: "./media/characters/huoyan/side.svg"
  6022. }
  6023. },
  6024. },
  6025. [
  6026. {
  6027. name: "Chef",
  6028. height: math.unit(9, "feet")
  6029. },
  6030. {
  6031. name: "Normal",
  6032. height: math.unit(65, "feet"),
  6033. default: true
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(780, "feet")
  6038. },
  6039. {
  6040. name: "Flaming Mountain",
  6041. height: math.unit(4.8, "miles")
  6042. },
  6043. {
  6044. name: "Celestial",
  6045. height: math.unit(765000, "miles")
  6046. },
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6051. {
  6052. front: {
  6053. height: math.unit(5 + 3 / 4, "feet"),
  6054. weight: math.unit(120, "lbs"),
  6055. name: "Front",
  6056. image: {
  6057. source: "./media/characters/tails/front.svg"
  6058. }
  6059. }
  6060. },
  6061. [
  6062. {
  6063. name: "Normal",
  6064. height: math.unit(5 + 3 / 4, "feet"),
  6065. default: true
  6066. }
  6067. ]
  6068. ))
  6069. characterMakers.push(() => makeCharacter(
  6070. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6071. {
  6072. front: {
  6073. height: math.unit(4, "feet"),
  6074. weight: math.unit(50, "lbs"),
  6075. name: "Front",
  6076. image: {
  6077. source: "./media/characters/rainy/front.svg"
  6078. }
  6079. }
  6080. },
  6081. [
  6082. {
  6083. name: "Macro",
  6084. height: math.unit(800, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(150, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/rainier/front.svg"
  6098. }
  6099. }
  6100. },
  6101. [
  6102. {
  6103. name: "Micro",
  6104. height: math.unit(2, "mm"),
  6105. default: true
  6106. }
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6111. {
  6112. front: {
  6113. height: math.unit(8 + 4/12, "feet"),
  6114. weight: math.unit(450, "kilograms"),
  6115. volume: math.unit(5, "cups"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/andy-renard/front.svg",
  6119. extra: 1839/1726,
  6120. bottom: 134/1973
  6121. }
  6122. },
  6123. back: {
  6124. height: math.unit(8 + 4/12, "feet"),
  6125. weight: math.unit(450, "kilograms"),
  6126. volume: math.unit(5, "cups"),
  6127. name: "Back",
  6128. image: {
  6129. source: "./media/characters/andy-renard/back.svg",
  6130. extra: 1838/1710,
  6131. bottom: 105/1943
  6132. }
  6133. },
  6134. },
  6135. [
  6136. {
  6137. name: "Tall",
  6138. height: math.unit(8 + 4/12, "feet")
  6139. },
  6140. {
  6141. name: "Mini Macro",
  6142. height: math.unit(15, "feet"),
  6143. default: true
  6144. },
  6145. {
  6146. name: "Macro",
  6147. height: math.unit(100, "feet")
  6148. },
  6149. {
  6150. name: "Mega Macro",
  6151. height: math.unit(1000, "feet")
  6152. },
  6153. {
  6154. name: "Giga Macro",
  6155. height: math.unit(10, "miles")
  6156. },
  6157. {
  6158. name: "God Macro",
  6159. height: math.unit(1, "multiverse")
  6160. },
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6165. {
  6166. front: {
  6167. height: math.unit(6, "feet"),
  6168. weight: math.unit(210, "lbs"),
  6169. name: "Front",
  6170. image: {
  6171. source: "./media/characters/cimmaron/front-sfw.svg",
  6172. extra: 701 / 676,
  6173. bottom: 0.046
  6174. }
  6175. },
  6176. back: {
  6177. height: math.unit(6, "feet"),
  6178. weight: math.unit(210, "lbs"),
  6179. name: "Back",
  6180. image: {
  6181. source: "./media/characters/cimmaron/back-sfw.svg",
  6182. extra: 701 / 676,
  6183. bottom: 0.046
  6184. }
  6185. },
  6186. frontNsfw: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(210, "lbs"),
  6189. name: "Front (NSFW)",
  6190. image: {
  6191. source: "./media/characters/cimmaron/front-nsfw.svg",
  6192. extra: 701 / 676,
  6193. bottom: 0.046
  6194. }
  6195. },
  6196. backNsfw: {
  6197. height: math.unit(6, "feet"),
  6198. weight: math.unit(210, "lbs"),
  6199. name: "Back (NSFW)",
  6200. image: {
  6201. source: "./media/characters/cimmaron/back-nsfw.svg",
  6202. extra: 701 / 676,
  6203. bottom: 0.046
  6204. }
  6205. },
  6206. dick: {
  6207. height: math.unit(1.714, "feet"),
  6208. name: "Dick",
  6209. image: {
  6210. source: "./media/characters/cimmaron/dick.svg"
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(6, "feet"),
  6218. default: true
  6219. },
  6220. {
  6221. name: "Macro Mayor",
  6222. height: math.unit(350, "meters")
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(200, "lbs"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/akari/front.svg",
  6235. extra: 962 / 901,
  6236. bottom: 0.04
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Micro",
  6243. height: math.unit(5, "inches"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(7, "feet")
  6249. },
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(6, "feet"),
  6257. weight: math.unit(140, "lbs"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/cynosura/front.svg",
  6261. extra: 896 / 847
  6262. }
  6263. },
  6264. back: {
  6265. height: math.unit(6, "feet"),
  6266. weight: math.unit(140, "lbs"),
  6267. name: "Back",
  6268. image: {
  6269. source: "./media/characters/cynosura/back.svg",
  6270. extra: 1365 / 1250
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Micro",
  6277. height: math.unit(4, "inches")
  6278. },
  6279. {
  6280. name: "Normal",
  6281. height: math.unit(5.75, "feet"),
  6282. default: true
  6283. },
  6284. {
  6285. name: "Tall",
  6286. height: math.unit(10, "feet")
  6287. },
  6288. {
  6289. name: "Big",
  6290. height: math.unit(20, "feet")
  6291. },
  6292. {
  6293. name: "Macro",
  6294. height: math.unit(50, "feet")
  6295. },
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6300. {
  6301. front: {
  6302. height: math.unit(13 + 2/12, "feet"),
  6303. weight: math.unit(800, "kg"),
  6304. name: "Front",
  6305. image: {
  6306. source: "./media/characters/gin/front.svg",
  6307. extra: 1312/1191,
  6308. bottom: 45/1357
  6309. }
  6310. },
  6311. mouth: {
  6312. height: math.unit(2.39 * 1.8, "feet"),
  6313. name: "Mouth",
  6314. image: {
  6315. source: "./media/characters/gin/mouth.svg"
  6316. }
  6317. },
  6318. hand: {
  6319. height: math.unit(1.57 * 2.19, "feet"),
  6320. name: "Hand",
  6321. image: {
  6322. source: "./media/characters/gin/hand.svg"
  6323. }
  6324. },
  6325. foot: {
  6326. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6327. name: "Foot",
  6328. image: {
  6329. source: "./media/characters/gin/foot.svg"
  6330. }
  6331. },
  6332. sole: {
  6333. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6334. name: "Sole",
  6335. image: {
  6336. source: "./media/characters/gin/sole.svg"
  6337. }
  6338. },
  6339. },
  6340. [
  6341. {
  6342. name: "Very Small",
  6343. height: math.unit(13 + 2 / 12, "feet")
  6344. },
  6345. {
  6346. name: "Micro",
  6347. height: math.unit(600, "miles")
  6348. },
  6349. {
  6350. name: "Regular",
  6351. height: math.unit(20, "earths"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Macro",
  6356. height: math.unit(2.2, "solarradii")
  6357. },
  6358. {
  6359. name: "Teramacro",
  6360. height: math.unit(1.2, "galaxies")
  6361. },
  6362. {
  6363. name: "Omegamacro",
  6364. height: math.unit(200, "universes")
  6365. },
  6366. ]
  6367. ))
  6368. characterMakers.push(() => makeCharacter(
  6369. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6370. {
  6371. front: {
  6372. height: math.unit(6 + 1 / 6, "feet"),
  6373. weight: math.unit(178, "lbs"),
  6374. name: "Front",
  6375. image: {
  6376. source: "./media/characters/guy/front.svg"
  6377. }
  6378. }
  6379. },
  6380. [
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(6 + 1 / 6, "feet"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Large",
  6388. height: math.unit(25 + 7 / 12, "feet")
  6389. },
  6390. {
  6391. name: "Macro",
  6392. height: math.unit(60 + 9 / 12, "feet")
  6393. },
  6394. {
  6395. name: "Macro+",
  6396. height: math.unit(246, "feet")
  6397. },
  6398. {
  6399. name: "Macro++",
  6400. height: math.unit(878, "feet")
  6401. }
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(9, "feet"),
  6409. weight: math.unit(800, "lbs"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/tiberius/front.svg",
  6413. extra: 2295 / 2071
  6414. }
  6415. },
  6416. back: {
  6417. height: math.unit(9, "feet"),
  6418. weight: math.unit(800, "lbs"),
  6419. name: "Back",
  6420. image: {
  6421. source: "./media/characters/tiberius/back.svg",
  6422. extra: 2373 / 2160
  6423. }
  6424. },
  6425. },
  6426. [
  6427. {
  6428. name: "Normal",
  6429. height: math.unit(9, "feet"),
  6430. default: true
  6431. }
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6436. {
  6437. front: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(600, "lbs"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/surgo/front.svg",
  6443. extra: 3591 / 2227
  6444. }
  6445. },
  6446. back: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(600, "lbs"),
  6449. name: "Back",
  6450. image: {
  6451. source: "./media/characters/surgo/back.svg",
  6452. extra: 3557 / 2228
  6453. }
  6454. },
  6455. laying: {
  6456. height: math.unit(6 * 0.85, "feet"),
  6457. weight: math.unit(600, "lbs"),
  6458. name: "Laying",
  6459. image: {
  6460. source: "./media/characters/surgo/laying.svg"
  6461. }
  6462. },
  6463. },
  6464. [
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(6, "feet"),
  6468. default: true
  6469. }
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6474. {
  6475. side: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(150, "lbs"),
  6478. name: "Side",
  6479. image: {
  6480. source: "./media/characters/cibus/side.svg",
  6481. extra: 800 / 400
  6482. }
  6483. },
  6484. },
  6485. [
  6486. {
  6487. name: "Normal",
  6488. height: math.unit(6, "feet"),
  6489. default: true
  6490. }
  6491. ]
  6492. ))
  6493. characterMakers.push(() => makeCharacter(
  6494. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6495. {
  6496. front: {
  6497. height: math.unit(6, "feet"),
  6498. weight: math.unit(240, "lbs"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/nibbles/front.svg"
  6502. }
  6503. },
  6504. side: {
  6505. height: math.unit(6, "feet"),
  6506. weight: math.unit(240, "lbs"),
  6507. name: "Side",
  6508. image: {
  6509. source: "./media/characters/nibbles/side.svg"
  6510. }
  6511. },
  6512. },
  6513. [
  6514. {
  6515. name: "Normal",
  6516. height: math.unit(9, "feet"),
  6517. default: true
  6518. }
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6523. {
  6524. side: {
  6525. height: math.unit(5 + 1 / 6, "feet"),
  6526. weight: math.unit(130, "lbs"),
  6527. name: "Side",
  6528. image: {
  6529. source: "./media/characters/rikky/side.svg",
  6530. extra: 851 / 801
  6531. }
  6532. },
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(5 + 1 / 6, "feet")
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(152, "feet"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(7, "miles")
  6547. }
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6552. {
  6553. side: {
  6554. height: math.unit(370, "cm"),
  6555. weight: math.unit(350, "lbs"),
  6556. name: "Side",
  6557. image: {
  6558. source: "./media/characters/malfressa/side.svg"
  6559. }
  6560. },
  6561. walking: {
  6562. height: math.unit(370, "cm"),
  6563. weight: math.unit(350, "lbs"),
  6564. name: "Walking",
  6565. image: {
  6566. source: "./media/characters/malfressa/walking.svg"
  6567. }
  6568. },
  6569. feral: {
  6570. height: math.unit(2500, "cm"),
  6571. weight: math.unit(100000, "lbs"),
  6572. name: "Feral",
  6573. image: {
  6574. source: "./media/characters/malfressa/feral.svg",
  6575. extra: 2108 / 837,
  6576. bottom: 0.02
  6577. }
  6578. },
  6579. },
  6580. [
  6581. {
  6582. name: "Normal",
  6583. height: math.unit(370, "cm")
  6584. },
  6585. {
  6586. name: "Macro",
  6587. height: math.unit(300, "meters"),
  6588. default: true
  6589. }
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(60, "kg"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/jaro/front.svg",
  6601. extra: 845/817,
  6602. bottom: 45/890
  6603. }
  6604. },
  6605. back: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(60, "kg"),
  6608. name: "Back",
  6609. image: {
  6610. source: "./media/characters/jaro/back.svg",
  6611. extra: 847/817,
  6612. bottom: 34/881
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Micro",
  6619. height: math.unit(7, "inches")
  6620. },
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(5.5, "feet"),
  6624. default: true
  6625. },
  6626. {
  6627. name: "Minimacro",
  6628. height: math.unit(20, "feet")
  6629. },
  6630. {
  6631. name: "Macro",
  6632. height: math.unit(200, "meters")
  6633. }
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6638. {
  6639. front: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(195, "lb"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/rogue/front.svg"
  6645. }
  6646. },
  6647. },
  6648. [
  6649. {
  6650. name: "Macro",
  6651. height: math.unit(90, "feet"),
  6652. default: true
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6658. {
  6659. standing: {
  6660. height: math.unit(5 + 8 / 12, "feet"),
  6661. weight: math.unit(140, "lb"),
  6662. name: "Standing",
  6663. image: {
  6664. source: "./media/characters/piper/standing.svg",
  6665. extra: 1440/1284,
  6666. bottom: 66/1506
  6667. }
  6668. },
  6669. running: {
  6670. height: math.unit(5 + 8 / 12, "feet"),
  6671. weight: math.unit(140, "lb"),
  6672. name: "Running",
  6673. image: {
  6674. source: "./media/characters/piper/running.svg",
  6675. extra: 3948/3655,
  6676. bottom: 0/3948
  6677. }
  6678. },
  6679. sole: {
  6680. height: math.unit(0.81, "feet"),
  6681. weight: math.unit(2, "kg"),
  6682. name: "Sole",
  6683. image: {
  6684. source: "./media/characters/piper/sole.svg"
  6685. }
  6686. },
  6687. nipple: {
  6688. height: math.unit(0.25, "feet"),
  6689. weight: math.unit(1.5, "lb"),
  6690. name: "Nipple",
  6691. image: {
  6692. source: "./media/characters/piper/nipple.svg"
  6693. }
  6694. },
  6695. head: {
  6696. height: math.unit(1.1, "feet"),
  6697. name: "Head",
  6698. image: {
  6699. source: "./media/characters/piper/head.svg"
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Micro",
  6706. height: math.unit(2, "inches")
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(5 + 8 / 12, "feet")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(250, "feet"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Megamacro",
  6719. height: math.unit(7, "miles")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(220, "lb"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/gemini/front.svg"
  6732. }
  6733. },
  6734. back: {
  6735. height: math.unit(6, "feet"),
  6736. weight: math.unit(220, "lb"),
  6737. name: "Back",
  6738. image: {
  6739. source: "./media/characters/gemini/back.svg"
  6740. }
  6741. },
  6742. kneeling: {
  6743. height: math.unit(6 / 1.5, "feet"),
  6744. weight: math.unit(220, "lb"),
  6745. name: "Kneeling",
  6746. image: {
  6747. source: "./media/characters/gemini/kneeling.svg",
  6748. bottom: 0.02
  6749. }
  6750. },
  6751. },
  6752. [
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(300, "meters"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Megamacro",
  6760. height: math.unit(6900, "meters")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6766. {
  6767. anthro: {
  6768. height: math.unit(2.35, "meters"),
  6769. weight: math.unit(73, "kg"),
  6770. name: "Anthro",
  6771. image: {
  6772. source: "./media/characters/alicia/anthro.svg",
  6773. extra: 2571 / 2385,
  6774. bottom: 75 / 2648
  6775. }
  6776. },
  6777. paw: {
  6778. height: math.unit(1.32, "feet"),
  6779. name: "Paw",
  6780. image: {
  6781. source: "./media/characters/alicia/paw.svg"
  6782. }
  6783. },
  6784. feral: {
  6785. height: math.unit(1.69, "meters"),
  6786. weight: math.unit(73, "kg"),
  6787. name: "Feral",
  6788. image: {
  6789. source: "./media/characters/alicia/feral.svg",
  6790. extra: 2123 / 1715,
  6791. bottom: 222 / 2349
  6792. }
  6793. },
  6794. },
  6795. [
  6796. {
  6797. name: "Normal",
  6798. height: math.unit(2.35, "meters")
  6799. },
  6800. {
  6801. name: "Macro",
  6802. height: math.unit(60, "meters"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Megamacro",
  6807. height: math.unit(10000, "kilometers")
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(7, "feet"),
  6816. weight: math.unit(250, "lbs"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/archy/front.svg"
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Micro",
  6826. height: math.unit(1, "inch")
  6827. },
  6828. {
  6829. name: "Shorty",
  6830. height: math.unit(5, "feet")
  6831. },
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(7, "feet")
  6835. },
  6836. {
  6837. name: "Macro",
  6838. height: math.unit(600, "meters"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Megamacro",
  6843. height: math.unit(1, "mile")
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(1.65, "meters"),
  6852. weight: math.unit(74, "kg"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/berri/front.svg",
  6856. extra: 857 / 837,
  6857. bottom: 18 / 877
  6858. }
  6859. },
  6860. bum: {
  6861. height: math.unit(1.46, "feet"),
  6862. name: "Bum",
  6863. image: {
  6864. source: "./media/characters/berri/bum.svg"
  6865. }
  6866. },
  6867. mouth: {
  6868. height: math.unit(0.44, "feet"),
  6869. name: "Mouth",
  6870. image: {
  6871. source: "./media/characters/berri/mouth.svg"
  6872. }
  6873. },
  6874. paw: {
  6875. height: math.unit(0.826, "feet"),
  6876. name: "Paw",
  6877. image: {
  6878. source: "./media/characters/berri/paw.svg"
  6879. }
  6880. },
  6881. },
  6882. [
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(1.65, "meters")
  6886. },
  6887. {
  6888. name: "Macro",
  6889. height: math.unit(60, "m"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Megamacro",
  6894. height: math.unit(9.213, "km")
  6895. },
  6896. {
  6897. name: "Planet Eater",
  6898. height: math.unit(489, "megameters")
  6899. },
  6900. {
  6901. name: "Teramacro",
  6902. height: math.unit(2471635000000, "meters")
  6903. },
  6904. {
  6905. name: "Examacro",
  6906. height: math.unit(8.0624e+26, "meters")
  6907. }
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(1.72, "meters"),
  6915. weight: math.unit(68, "kg"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/lexi/front.svg"
  6919. }
  6920. }
  6921. },
  6922. [
  6923. {
  6924. name: "Very Smol",
  6925. height: math.unit(10, "mm")
  6926. },
  6927. {
  6928. name: "Micro",
  6929. height: math.unit(6.8, "cm"),
  6930. default: true
  6931. },
  6932. {
  6933. name: "Normal",
  6934. height: math.unit(1.72, "m")
  6935. }
  6936. ]
  6937. ))
  6938. characterMakers.push(() => makeCharacter(
  6939. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6940. {
  6941. front: {
  6942. height: math.unit(1.69, "meters"),
  6943. weight: math.unit(68, "kg"),
  6944. name: "Front",
  6945. image: {
  6946. source: "./media/characters/martin/front.svg",
  6947. extra: 596 / 581
  6948. }
  6949. }
  6950. },
  6951. [
  6952. {
  6953. name: "Micro",
  6954. height: math.unit(6.85, "cm"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Normal",
  6959. height: math.unit(1.69, "m")
  6960. }
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(1.69, "meters"),
  6968. weight: math.unit(68, "kg"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/juno/front.svg"
  6972. }
  6973. }
  6974. },
  6975. [
  6976. {
  6977. name: "Micro",
  6978. height: math.unit(7, "cm")
  6979. },
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(1.89, "m")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(353, "meters"),
  6987. default: true
  6988. }
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6993. {
  6994. front: {
  6995. height: math.unit(1.93, "meters"),
  6996. weight: math.unit(83, "kg"),
  6997. name: "Front",
  6998. image: {
  6999. source: "./media/characters/samantha/front.svg"
  7000. }
  7001. },
  7002. frontClothed: {
  7003. height: math.unit(1.93, "meters"),
  7004. weight: math.unit(83, "kg"),
  7005. name: "Front (Clothed)",
  7006. image: {
  7007. source: "./media/characters/samantha/front-clothed.svg"
  7008. }
  7009. },
  7010. back: {
  7011. height: math.unit(1.93, "meters"),
  7012. weight: math.unit(83, "kg"),
  7013. name: "Back",
  7014. image: {
  7015. source: "./media/characters/samantha/back.svg"
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(1.93, "m")
  7023. },
  7024. {
  7025. name: "Macro",
  7026. height: math.unit(74, "meters"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Macro+",
  7031. height: math.unit(223, "meters"),
  7032. },
  7033. {
  7034. name: "Megamacro",
  7035. height: math.unit(8381, "meters"),
  7036. },
  7037. {
  7038. name: "Megamacro+",
  7039. height: math.unit(12000, "kilometers")
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(1.92, "meters"),
  7048. weight: math.unit(80, "kg"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/dr-clay/front.svg"
  7052. }
  7053. },
  7054. frontClothed: {
  7055. height: math.unit(1.92, "meters"),
  7056. weight: math.unit(80, "kg"),
  7057. name: "Front (Clothed)",
  7058. image: {
  7059. source: "./media/characters/dr-clay/front-clothed.svg"
  7060. }
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(1.92, "m")
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(214, "meters"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro+",
  7075. height: math.unit(12.237, "meters"),
  7076. },
  7077. {
  7078. name: "Megamacro",
  7079. height: math.unit(557, "megameters"),
  7080. },
  7081. {
  7082. name: "Unimaginable",
  7083. height: math.unit(120e9, "lightyears")
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(2, "meters"),
  7092. weight: math.unit(80, "kg"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7096. }
  7097. }
  7098. },
  7099. [
  7100. {
  7101. name: "Teramacro",
  7102. height: math.unit(500000, "lightyears"),
  7103. default: true
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7109. {
  7110. crux: {
  7111. height: math.unit(2, "meters"),
  7112. weight: math.unit(150, "kg"),
  7113. name: "Crux",
  7114. image: {
  7115. source: "./media/characters/vemus/crux.svg",
  7116. extra: 1074/936,
  7117. bottom: 23/1097
  7118. }
  7119. },
  7120. skunkTanuki: {
  7121. height: math.unit(2, "meters"),
  7122. weight: math.unit(150, "kg"),
  7123. name: "Skunk-Tanuki",
  7124. image: {
  7125. source: "./media/characters/vemus/skunk-tanuki.svg",
  7126. extra: 926/893,
  7127. bottom: 20/946
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(3.75, "meters"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Big",
  7139. height: math.unit(8, "meters")
  7140. },
  7141. {
  7142. name: "Macro",
  7143. height: math.unit(100, "meters")
  7144. },
  7145. {
  7146. name: "Macro+",
  7147. height: math.unit(1500, "meters")
  7148. },
  7149. {
  7150. name: "Stellar",
  7151. height: math.unit(14e8, "meters")
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7157. {
  7158. front: {
  7159. height: math.unit(2, "meters"),
  7160. weight: math.unit(70, "kg"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/beherit/front.svg",
  7164. extra: 1234/1109,
  7165. bottom: 55/1289
  7166. }
  7167. }
  7168. },
  7169. [
  7170. {
  7171. name: "Normal",
  7172. height: math.unit(6, "feet")
  7173. },
  7174. {
  7175. name: "Lorg",
  7176. height: math.unit(25, "feet"),
  7177. default: true
  7178. },
  7179. {
  7180. name: "Lorger",
  7181. height: math.unit(75, "feet")
  7182. },
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(200, "meters")
  7186. },
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7191. {
  7192. front: {
  7193. height: math.unit(2, "meters"),
  7194. weight: math.unit(150, "kg"),
  7195. name: "Front",
  7196. image: {
  7197. source: "./media/characters/everett/front.svg",
  7198. extra: 1017/866,
  7199. bottom: 86/1103
  7200. }
  7201. },
  7202. paw: {
  7203. height: math.unit(2 / 3.6, "meters"),
  7204. name: "Paw",
  7205. image: {
  7206. source: "./media/characters/everett/paw.svg"
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Normal",
  7213. height: math.unit(15, "feet"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Lorg",
  7218. height: math.unit(70, "feet"),
  7219. default: true
  7220. },
  7221. {
  7222. name: "Lorger",
  7223. height: math.unit(250, "feet")
  7224. },
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(500, "meters")
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(2, "meters"),
  7236. weight: math.unit(86, "kg"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/rose/front.svg",
  7240. extra: 1785/1636,
  7241. bottom: 30/1815
  7242. },
  7243. form: "liom",
  7244. default: true
  7245. },
  7246. frontSporty: {
  7247. height: math.unit(2, "meters"),
  7248. weight: math.unit(86, "kg"),
  7249. name: "Front (Sporty)",
  7250. image: {
  7251. source: "./media/characters/rose/front-sporty.svg",
  7252. extra: 350/335,
  7253. bottom: 10/360
  7254. },
  7255. form: "liom"
  7256. },
  7257. frontAlt: {
  7258. height: math.unit(1.6, "meters"),
  7259. weight: math.unit(86, "kg"),
  7260. name: "Front (Alt)",
  7261. image: {
  7262. source: "./media/characters/rose/front-alt.svg",
  7263. extra: 299/283,
  7264. bottom: 3/302
  7265. },
  7266. form: "liom"
  7267. },
  7268. plush: {
  7269. height: math.unit(2, "meters"),
  7270. weight: math.unit(86/3, "kg"),
  7271. name: "Plush",
  7272. image: {
  7273. source: "./media/characters/rose/plush.svg",
  7274. extra: 361/337,
  7275. bottom: 11/372
  7276. },
  7277. form: "plush",
  7278. default: true
  7279. },
  7280. faeStanding: {
  7281. height: math.unit(10, "cm"),
  7282. weight: math.unit(10, "grams"),
  7283. name: "Standing",
  7284. image: {
  7285. source: "./media/characters/rose/fae-standing.svg",
  7286. extra: 1189/1060,
  7287. bottom: 27/1216
  7288. },
  7289. form: "fae",
  7290. default: true
  7291. },
  7292. faeSitting: {
  7293. height: math.unit(5, "cm"),
  7294. weight: math.unit(10, "grams"),
  7295. name: "Sitting",
  7296. image: {
  7297. source: "./media/characters/rose/fae-sitting.svg",
  7298. extra: 737/577,
  7299. bottom: 356/1093
  7300. },
  7301. form: "fae"
  7302. },
  7303. faePaw: {
  7304. height: math.unit(1.35, "cm"),
  7305. name: "Paw",
  7306. image: {
  7307. source: "./media/characters/rose/fae-paw.svg"
  7308. },
  7309. form: "fae"
  7310. },
  7311. },
  7312. [
  7313. {
  7314. name: "True Micro",
  7315. height: math.unit(9, "cm"),
  7316. form: "liom"
  7317. },
  7318. {
  7319. name: "Micro",
  7320. height: math.unit(16, "cm"),
  7321. form: "liom"
  7322. },
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(1.85, "meters"),
  7326. default: true,
  7327. form: "liom"
  7328. },
  7329. {
  7330. name: "Mini-Macro",
  7331. height: math.unit(5, "meters"),
  7332. form: "liom"
  7333. },
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(15, "meters"),
  7337. form: "liom"
  7338. },
  7339. {
  7340. name: "True Macro",
  7341. height: math.unit(40, "meters"),
  7342. form: "liom"
  7343. },
  7344. {
  7345. name: "City Scale",
  7346. height: math.unit(1, "km"),
  7347. form: "liom"
  7348. },
  7349. {
  7350. name: "Plushie",
  7351. height: math.unit(9, "cm"),
  7352. form: "plush",
  7353. default: true
  7354. },
  7355. {
  7356. name: "Fae",
  7357. height: math.unit(10, "cm"),
  7358. form: "fae",
  7359. default: true
  7360. },
  7361. ],
  7362. {
  7363. "liom": {
  7364. name: "Liom"
  7365. },
  7366. "plush": {
  7367. name: "Plush"
  7368. },
  7369. "fae": {
  7370. name: "Fae Fox",
  7371. default: true
  7372. }
  7373. }
  7374. ))
  7375. characterMakers.push(() => makeCharacter(
  7376. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7377. {
  7378. front: {
  7379. height: math.unit(2, "meters"),
  7380. weight: math.unit(350, "lbs"),
  7381. name: "Front",
  7382. image: {
  7383. source: "./media/characters/regal/front.svg"
  7384. }
  7385. },
  7386. back: {
  7387. height: math.unit(2, "meters"),
  7388. weight: math.unit(350, "lbs"),
  7389. name: "Back",
  7390. image: {
  7391. source: "./media/characters/regal/back.svg"
  7392. }
  7393. },
  7394. },
  7395. [
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(350, "feet"),
  7399. default: true
  7400. }
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(4 + 11 / 12, "feet"),
  7408. weight: math.unit(100, "lbs"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/opal/front.svg"
  7412. }
  7413. },
  7414. frontAlt: {
  7415. height: math.unit(4 + 11 / 12, "feet"),
  7416. weight: math.unit(100, "lbs"),
  7417. name: "Front (Alt)",
  7418. image: {
  7419. source: "./media/characters/opal/front-alt.svg"
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Small",
  7426. height: math.unit(4 + 11 / 12, "feet")
  7427. },
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(20, "feet"),
  7431. default: true
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(120, "feet")
  7436. },
  7437. {
  7438. name: "Megamacro",
  7439. height: math.unit(80, "miles")
  7440. },
  7441. {
  7442. name: "True Size",
  7443. height: math.unit(100000, "lightyears")
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(200, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/vector-wuff/front.svg"
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(2.8, "meters")
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(450, "meters"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Megamacro",
  7471. height: math.unit(15, "kilometers")
  7472. }
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(6, "feet"),
  7480. weight: math.unit(256, "lbs"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/dannik/front.svg"
  7484. }
  7485. }
  7486. },
  7487. [
  7488. {
  7489. name: "Macro",
  7490. height: math.unit(69.57, "meters"),
  7491. default: true
  7492. },
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(120, "lbs"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/azura-saharah/front.svg"
  7504. }
  7505. },
  7506. back: {
  7507. height: math.unit(6, "feet"),
  7508. weight: math.unit(120, "lbs"),
  7509. name: "Back",
  7510. image: {
  7511. source: "./media/characters/azura-saharah/back.svg"
  7512. }
  7513. },
  7514. },
  7515. [
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(100, "feet"),
  7519. default: true
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7525. {
  7526. side: {
  7527. height: math.unit(5 + 4 / 12, "feet"),
  7528. weight: math.unit(163, "lbs"),
  7529. name: "Side",
  7530. image: {
  7531. source: "./media/characters/kennedy/side.svg"
  7532. }
  7533. }
  7534. },
  7535. [
  7536. {
  7537. name: "Standard Doggo",
  7538. height: math.unit(5 + 4 / 12, "feet")
  7539. },
  7540. {
  7541. name: "Big Doggo",
  7542. height: math.unit(25 + 3 / 12, "feet"),
  7543. default: true
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(5 + 5/12, "feet"),
  7552. weight: math.unit(100, "lbs"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/odios-de-lunar/front.svg",
  7556. extra: 1468/1323,
  7557. bottom: 22/1490
  7558. }
  7559. }
  7560. },
  7561. [
  7562. {
  7563. name: "Micro",
  7564. height: math.unit(3, "inches")
  7565. },
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(5.5, "feet"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "Macro",
  7573. height: math.unit(100, "feet")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7579. {
  7580. back: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(220, "lbs"),
  7583. name: "Back",
  7584. image: {
  7585. source: "./media/characters/mandake/back.svg"
  7586. }
  7587. }
  7588. },
  7589. [
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(7, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(78, "feet")
  7598. },
  7599. {
  7600. name: "Macro+",
  7601. height: math.unit(300, "meters")
  7602. },
  7603. {
  7604. name: "Macro++",
  7605. height: math.unit(2400, "feet")
  7606. },
  7607. {
  7608. name: "Megamacro",
  7609. height: math.unit(5167, "meters")
  7610. },
  7611. {
  7612. name: "Gigamacro",
  7613. height: math.unit(41769, "miles")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(120, "lbs"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/yozey/front.svg"
  7626. }
  7627. },
  7628. frontAlt: {
  7629. height: math.unit(6, "feet"),
  7630. weight: math.unit(120, "lbs"),
  7631. name: "Front (Alt)",
  7632. image: {
  7633. source: "./media/characters/yozey/front-alt.svg"
  7634. }
  7635. },
  7636. side: {
  7637. height: math.unit(6, "feet"),
  7638. weight: math.unit(120, "lbs"),
  7639. name: "Side",
  7640. image: {
  7641. source: "./media/characters/yozey/side.svg"
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Micro",
  7648. height: math.unit(3, "inches"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(6, "feet")
  7654. }
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(103, "lbs"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/valeska-voss/front.svg"
  7666. }
  7667. }
  7668. },
  7669. [
  7670. {
  7671. name: "Mini-Sized Sub",
  7672. height: math.unit(3.1, "inches")
  7673. },
  7674. {
  7675. name: "Mid-Sized Sub",
  7676. height: math.unit(6.2, "inches")
  7677. },
  7678. {
  7679. name: "Full-Sized Sub",
  7680. height: math.unit(9.3, "inches")
  7681. },
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(5 + 2 / 12, "foot"),
  7685. default: true
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(160, "lbs"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/gene-zeta/front.svg",
  7698. extra: 3006 / 2826,
  7699. bottom: 182 / 3188
  7700. }
  7701. }
  7702. },
  7703. [
  7704. {
  7705. name: "Micro",
  7706. height: math.unit(6, "inches")
  7707. },
  7708. {
  7709. name: "Normal",
  7710. height: math.unit(5 + 11 / 12, "foot"),
  7711. default: true
  7712. },
  7713. {
  7714. name: "Macro",
  7715. height: math.unit(140, "feet")
  7716. },
  7717. {
  7718. name: "Supercharged",
  7719. height: math.unit(2500, "feet")
  7720. },
  7721. ]
  7722. ))
  7723. characterMakers.push(() => makeCharacter(
  7724. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7725. {
  7726. front: {
  7727. height: math.unit(6, "feet"),
  7728. weight: math.unit(350, "lbs"),
  7729. name: "Front",
  7730. image: {
  7731. source: "./media/characters/razinox/front.svg",
  7732. extra: 1686 / 1548,
  7733. bottom: 28.2 / 1868
  7734. }
  7735. },
  7736. back: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(350, "lbs"),
  7739. name: "Back",
  7740. image: {
  7741. source: "./media/characters/razinox/back.svg",
  7742. extra: 1660 / 1590,
  7743. bottom: 15 / 1665
  7744. }
  7745. },
  7746. },
  7747. [
  7748. {
  7749. name: "Normal",
  7750. height: math.unit(10 + 8 / 12, "foot")
  7751. },
  7752. {
  7753. name: "Minimacro",
  7754. height: math.unit(15, "foot")
  7755. },
  7756. {
  7757. name: "Macro",
  7758. height: math.unit(60, "foot"),
  7759. default: true
  7760. },
  7761. {
  7762. name: "Megamacro",
  7763. height: math.unit(5, "miles")
  7764. },
  7765. {
  7766. name: "Gigamacro",
  7767. height: math.unit(6000, "miles")
  7768. },
  7769. ]
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7773. {
  7774. front: {
  7775. height: math.unit(6, "feet"),
  7776. weight: math.unit(150, "lbs"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/cobalt/front.svg"
  7780. }
  7781. }
  7782. },
  7783. [
  7784. {
  7785. name: "Normal",
  7786. height: math.unit(8 + 1 / 12, "foot")
  7787. },
  7788. {
  7789. name: "Macro",
  7790. height: math.unit(111, "foot"),
  7791. default: true
  7792. },
  7793. {
  7794. name: "Supracosmic",
  7795. height: math.unit(1e42, "feet")
  7796. },
  7797. ]
  7798. ))
  7799. characterMakers.push(() => makeCharacter(
  7800. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7801. {
  7802. front: {
  7803. height: math.unit(5, "inches"),
  7804. name: "Front",
  7805. image: {
  7806. source: "./media/characters/amanda/front.svg",
  7807. extra: 926/791,
  7808. bottom: 38/964
  7809. }
  7810. },
  7811. back: {
  7812. height: math.unit(5, "inches"),
  7813. name: "Back",
  7814. image: {
  7815. source: "./media/characters/amanda/back.svg",
  7816. extra: 909/805,
  7817. bottom: 43/952
  7818. }
  7819. },
  7820. },
  7821. [
  7822. {
  7823. name: "Micro",
  7824. height: math.unit(5, "inches"),
  7825. default: true
  7826. },
  7827. ]
  7828. ))
  7829. characterMakers.push(() => makeCharacter(
  7830. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7831. {
  7832. front: {
  7833. height: math.unit(2.75, "meters"),
  7834. weight: math.unit(1200, "lb"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/teal/front.svg",
  7838. extra: 2463 / 2320,
  7839. bottom: 166 / 2629
  7840. }
  7841. },
  7842. back: {
  7843. height: math.unit(2.75, "meters"),
  7844. weight: math.unit(1200, "lb"),
  7845. name: "Back",
  7846. image: {
  7847. source: "./media/characters/teal/back.svg",
  7848. extra: 2580 / 2489,
  7849. bottom: 151 / 2731
  7850. }
  7851. },
  7852. sitting: {
  7853. height: math.unit(1.9, "meters"),
  7854. weight: math.unit(1200, "lb"),
  7855. name: "Sitting",
  7856. image: {
  7857. source: "./media/characters/teal/sitting.svg",
  7858. extra: 623 / 590,
  7859. bottom: 121 / 744
  7860. }
  7861. },
  7862. standing: {
  7863. height: math.unit(2.75, "meters"),
  7864. weight: math.unit(1200, "lb"),
  7865. name: "Standing",
  7866. image: {
  7867. source: "./media/characters/teal/standing.svg",
  7868. extra: 923 / 893,
  7869. bottom: 60 / 983
  7870. }
  7871. },
  7872. stretching: {
  7873. height: math.unit(3.65, "meters"),
  7874. weight: math.unit(1200, "lb"),
  7875. name: "Stretching",
  7876. image: {
  7877. source: "./media/characters/teal/stretching.svg",
  7878. extra: 1276 / 1244,
  7879. bottom: 0 / 1276
  7880. }
  7881. },
  7882. legged: {
  7883. height: math.unit(1.3, "meters"),
  7884. weight: math.unit(100, "lb"),
  7885. name: "Legged",
  7886. image: {
  7887. source: "./media/characters/teal/legged.svg",
  7888. extra: 462 / 437,
  7889. bottom: 24 / 486
  7890. }
  7891. },
  7892. naga: {
  7893. height: math.unit(5.4, "meters"),
  7894. weight: math.unit(4000, "lb"),
  7895. name: "Naga",
  7896. image: {
  7897. source: "./media/characters/teal/naga.svg",
  7898. extra: 1902 / 1858,
  7899. bottom: 0 / 1902
  7900. }
  7901. },
  7902. hand: {
  7903. height: math.unit(0.52, "meters"),
  7904. name: "Hand",
  7905. image: {
  7906. source: "./media/characters/teal/hand.svg"
  7907. }
  7908. },
  7909. maw: {
  7910. height: math.unit(0.43, "meters"),
  7911. name: "Maw",
  7912. image: {
  7913. source: "./media/characters/teal/maw.svg"
  7914. }
  7915. },
  7916. slit: {
  7917. height: math.unit(0.25, "meters"),
  7918. name: "Slit",
  7919. image: {
  7920. source: "./media/characters/teal/slit.svg"
  7921. }
  7922. },
  7923. },
  7924. [
  7925. {
  7926. name: "Normal",
  7927. height: math.unit(2.75, "meters"),
  7928. default: true
  7929. },
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(300, "feet")
  7933. },
  7934. {
  7935. name: "Macro+",
  7936. height: math.unit(2000, "feet")
  7937. },
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7942. {
  7943. frontCat: {
  7944. height: math.unit(6, "feet"),
  7945. weight: math.unit(180, "lbs"),
  7946. name: "Front (Cat)",
  7947. image: {
  7948. source: "./media/characters/ravin-amulet/front-cat.svg"
  7949. }
  7950. },
  7951. frontCatAlt: {
  7952. height: math.unit(6, "feet"),
  7953. weight: math.unit(180, "lbs"),
  7954. name: "Front (Alt, Cat)",
  7955. image: {
  7956. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7957. }
  7958. },
  7959. frontWerewolf: {
  7960. height: math.unit(6 * 1.2, "feet"),
  7961. weight: math.unit(225, "lbs"),
  7962. name: "Front (Werewolf)",
  7963. image: {
  7964. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7965. }
  7966. },
  7967. backWerewolf: {
  7968. height: math.unit(6 * 1.2, "feet"),
  7969. weight: math.unit(225, "lbs"),
  7970. name: "Back (Werewolf)",
  7971. image: {
  7972. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7973. }
  7974. },
  7975. },
  7976. [
  7977. {
  7978. name: "Nano",
  7979. height: math.unit(1, "micrometer")
  7980. },
  7981. {
  7982. name: "Micro",
  7983. height: math.unit(1, "inch")
  7984. },
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(6, "feet"),
  7988. default: true
  7989. },
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(60, "feet")
  7993. }
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(6, "feet"),
  8001. weight: math.unit(165, "lbs"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/fluoresce/front.svg"
  8005. }
  8006. }
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(6, "cm")
  8012. },
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(5 + 7 / 12, "feet"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(56, "feet")
  8021. },
  8022. {
  8023. name: "Megamacro",
  8024. height: math.unit(1.9, "miles")
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(9 + 6 / 12, "feet"),
  8033. weight: math.unit(523, "lbs"),
  8034. name: "Side",
  8035. image: {
  8036. source: "./media/characters/aurora/side.svg"
  8037. }
  8038. }
  8039. },
  8040. [
  8041. {
  8042. name: "Normal",
  8043. height: math.unit(9 + 6 / 12, "feet")
  8044. },
  8045. {
  8046. name: "Macro",
  8047. height: math.unit(96, "feet"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Macro+",
  8052. height: math.unit(243, "feet")
  8053. },
  8054. ]
  8055. ))
  8056. characterMakers.push(() => makeCharacter(
  8057. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8058. {
  8059. front: {
  8060. height: math.unit(194, "cm"),
  8061. weight: math.unit(90, "kg"),
  8062. name: "Front",
  8063. image: {
  8064. source: "./media/characters/ranek/front.svg",
  8065. extra: 1862/1791,
  8066. bottom: 80/1942
  8067. }
  8068. },
  8069. back: {
  8070. height: math.unit(194, "cm"),
  8071. weight: math.unit(90, "kg"),
  8072. name: "Back",
  8073. image: {
  8074. source: "./media/characters/ranek/back.svg",
  8075. extra: 1853/1787,
  8076. bottom: 74/1927
  8077. }
  8078. },
  8079. feral: {
  8080. height: math.unit(30, "cm"),
  8081. weight: math.unit(1.6, "lbs"),
  8082. name: "Feral",
  8083. image: {
  8084. source: "./media/characters/ranek/feral.svg",
  8085. extra: 990/631,
  8086. bottom: 29/1019
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(194, "cm"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(100, "meters")
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(5 + 6 / 12, "feet"),
  8107. weight: math.unit(153, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/andrew-cooper/front.svg"
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Nano",
  8117. height: math.unit(1, "mm")
  8118. },
  8119. {
  8120. name: "Micro",
  8121. height: math.unit(2, "inches")
  8122. },
  8123. {
  8124. name: "Normal",
  8125. height: math.unit(5 + 6 / 12, "feet"),
  8126. default: true
  8127. }
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(6, "feet"),
  8135. weight: math.unit(180, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/akane-sato/front.svg",
  8139. extra: 1219 / 1140
  8140. }
  8141. },
  8142. back: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(180, "lbs"),
  8145. name: "Back",
  8146. image: {
  8147. source: "./media/characters/akane-sato/back.svg",
  8148. extra: 1219 / 1170
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(2.5, "meters")
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(250, "meters"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "Megamacro",
  8164. height: math.unit(25, "km")
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(6, "feet"),
  8173. weight: math.unit(65, "kg"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/rook/front.svg",
  8177. extra: 960 / 950
  8178. }
  8179. }
  8180. },
  8181. [
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(8.8, "feet")
  8185. },
  8186. {
  8187. name: "Macro",
  8188. height: math.unit(88, "feet"),
  8189. default: true
  8190. },
  8191. {
  8192. name: "Megamacro",
  8193. height: math.unit(8, "miles")
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(12 + 2 / 12, "feet"),
  8202. weight: math.unit(808, "lbs"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/prodigy/front.svg"
  8206. }
  8207. }
  8208. },
  8209. [
  8210. {
  8211. name: "Normal",
  8212. height: math.unit(12 + 2 / 12, "feet"),
  8213. default: true
  8214. },
  8215. {
  8216. name: "Macro",
  8217. height: math.unit(143, "feet")
  8218. },
  8219. {
  8220. name: "Macro+",
  8221. height: math.unit(400, "feet")
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(225, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/daniel/front.svg"
  8234. }
  8235. },
  8236. leaning: {
  8237. height: math.unit(6, "feet"),
  8238. weight: math.unit(225, "lbs"),
  8239. name: "Leaning",
  8240. image: {
  8241. source: "./media/characters/daniel/leaning.svg"
  8242. }
  8243. },
  8244. },
  8245. [
  8246. {
  8247. name: "Macro",
  8248. height: math.unit(1000, "feet"),
  8249. default: true
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(6, "feet"),
  8258. weight: math.unit(88, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/chiros/front.svg",
  8262. extra: 306 / 226
  8263. }
  8264. },
  8265. side: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(88, "lbs"),
  8268. name: "Side",
  8269. image: {
  8270. source: "./media/characters/chiros/side.svg",
  8271. extra: 306 / 226
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(6, "cm"),
  8279. default: true
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(100, "lbs"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/selka/front.svg",
  8292. extra: 947 / 887
  8293. }
  8294. }
  8295. },
  8296. [
  8297. {
  8298. name: "Normal",
  8299. height: math.unit(5, "cm"),
  8300. default: true
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(8 + 3 / 12, "feet"),
  8309. weight: math.unit(424, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/verin/front.svg",
  8313. extra: 1845 / 1550
  8314. }
  8315. },
  8316. frontArmored: {
  8317. height: math.unit(8 + 3 / 12, "feet"),
  8318. weight: math.unit(424, "lbs"),
  8319. name: "Front (Armored)",
  8320. image: {
  8321. source: "./media/characters/verin/front-armor.svg",
  8322. extra: 1845 / 1550,
  8323. bottom: 0.01
  8324. }
  8325. },
  8326. back: {
  8327. height: math.unit(8 + 3 / 12, "feet"),
  8328. weight: math.unit(424, "lbs"),
  8329. name: "Back",
  8330. image: {
  8331. source: "./media/characters/verin/back.svg",
  8332. bottom: 0.1,
  8333. extra: 1
  8334. }
  8335. },
  8336. foot: {
  8337. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8338. name: "Foot",
  8339. image: {
  8340. source: "./media/characters/verin/foot.svg"
  8341. }
  8342. },
  8343. },
  8344. [
  8345. {
  8346. name: "Normal",
  8347. height: math.unit(8 + 3 / 12, "feet")
  8348. },
  8349. {
  8350. name: "Minimacro",
  8351. height: math.unit(21, "feet"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(626, "feet")
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(2.718, "meters"),
  8365. weight: math.unit(150, "lbs"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/sovrim-terraquian/front.svg",
  8369. extra: 1752/1689,
  8370. bottom: 36/1788
  8371. }
  8372. },
  8373. back: {
  8374. height: math.unit(2.718, "meters"),
  8375. weight: math.unit(150, "lbs"),
  8376. name: "Back",
  8377. image: {
  8378. source: "./media/characters/sovrim-terraquian/back.svg",
  8379. extra: 1698/1657,
  8380. bottom: 58/1756
  8381. }
  8382. },
  8383. tongue: {
  8384. height: math.unit(2.865, "feet"),
  8385. name: "Tongue",
  8386. image: {
  8387. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8388. }
  8389. },
  8390. hand: {
  8391. height: math.unit(1.61, "feet"),
  8392. name: "Hand",
  8393. image: {
  8394. source: "./media/characters/sovrim-terraquian/hand.svg"
  8395. }
  8396. },
  8397. foot: {
  8398. height: math.unit(1.05, "feet"),
  8399. name: "Foot",
  8400. image: {
  8401. source: "./media/characters/sovrim-terraquian/foot.svg"
  8402. }
  8403. },
  8404. footAlt: {
  8405. height: math.unit(0.88, "feet"),
  8406. name: "Foot (Alt)",
  8407. image: {
  8408. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8409. }
  8410. },
  8411. },
  8412. [
  8413. {
  8414. name: "Micro",
  8415. height: math.unit(2, "inches")
  8416. },
  8417. {
  8418. name: "Small",
  8419. height: math.unit(1, "meter")
  8420. },
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(Math.E, "meters"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "Macro",
  8428. height: math.unit(20, "meters")
  8429. },
  8430. {
  8431. name: "Macro+",
  8432. height: math.unit(400, "meters")
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(7, "feet"),
  8441. weight: math.unit(489, "lbs"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/reece-silvermane/front.svg",
  8445. bottom: 0.02,
  8446. extra: 1
  8447. }
  8448. },
  8449. },
  8450. [
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(1.5, "miles"),
  8454. default: true
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(6, "feet"),
  8463. weight: math.unit(78, "kg"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/kane/front.svg",
  8467. extra: 978 / 899
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(2.1, "m"),
  8475. },
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(1, "km"),
  8479. default: true
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(6, "feet"),
  8488. weight: math.unit(200, "kg"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/tegon/front.svg",
  8492. bottom: 0.01,
  8493. extra: 1
  8494. }
  8495. },
  8496. },
  8497. [
  8498. {
  8499. name: "Micro",
  8500. height: math.unit(1, "inch")
  8501. },
  8502. {
  8503. name: "Normal",
  8504. height: math.unit(6 + 3 / 12, "feet"),
  8505. default: true
  8506. },
  8507. {
  8508. name: "Macro",
  8509. height: math.unit(300, "feet")
  8510. },
  8511. {
  8512. name: "Megamacro",
  8513. height: math.unit(69, "miles")
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8519. {
  8520. side: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(2304, "lbs"),
  8523. name: "Side",
  8524. image: {
  8525. source: "./media/characters/arcturax/side.svg",
  8526. extra: 790 / 376,
  8527. bottom: 0.01
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Micro",
  8534. height: math.unit(2, "inch")
  8535. },
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(6, "feet")
  8539. },
  8540. {
  8541. name: "Macro",
  8542. height: math.unit(39, "feet"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Megamacro",
  8547. height: math.unit(7, "miles")
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8553. {
  8554. front: {
  8555. height: math.unit(6, "feet"),
  8556. weight: math.unit(50, "lbs"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/sentri/front.svg",
  8560. extra: 1750 / 1570,
  8561. bottom: 0.025
  8562. }
  8563. },
  8564. frontAlt: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(50, "lbs"),
  8567. name: "Front (Alt)",
  8568. image: {
  8569. source: "./media/characters/sentri/front-alt.svg",
  8570. extra: 1750 / 1570,
  8571. bottom: 0.025
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(15, "feet"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "Macro",
  8583. height: math.unit(2500, "feet")
  8584. }
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(5 + 8 / 12, "feet"),
  8592. weight: math.unit(130, "lbs"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/corvin/front.svg",
  8596. extra: 1803 / 1629
  8597. }
  8598. },
  8599. frontShirt: {
  8600. height: math.unit(5 + 8 / 12, "feet"),
  8601. weight: math.unit(130, "lbs"),
  8602. name: "Front (Shirt)",
  8603. image: {
  8604. source: "./media/characters/corvin/front-shirt.svg",
  8605. extra: 1803 / 1629
  8606. }
  8607. },
  8608. frontPoncho: {
  8609. height: math.unit(5 + 8 / 12, "feet"),
  8610. weight: math.unit(130, "lbs"),
  8611. name: "Front (Poncho)",
  8612. image: {
  8613. source: "./media/characters/corvin/front-poncho.svg",
  8614. extra: 1803 / 1629
  8615. }
  8616. },
  8617. side: {
  8618. height: math.unit(5 + 8 / 12, "feet"),
  8619. weight: math.unit(130, "lbs"),
  8620. name: "Side",
  8621. image: {
  8622. source: "./media/characters/corvin/side.svg",
  8623. extra: 1012 / 945
  8624. }
  8625. },
  8626. back: {
  8627. height: math.unit(5 + 8 / 12, "feet"),
  8628. weight: math.unit(130, "lbs"),
  8629. name: "Back",
  8630. image: {
  8631. source: "./media/characters/corvin/back.svg",
  8632. extra: 1803 / 1629
  8633. }
  8634. },
  8635. },
  8636. [
  8637. {
  8638. name: "Micro",
  8639. height: math.unit(3, "inches")
  8640. },
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(5 + 8 / 12, "feet")
  8644. },
  8645. {
  8646. name: "Macro",
  8647. height: math.unit(300, "feet"),
  8648. default: true
  8649. },
  8650. {
  8651. name: "Megamacro",
  8652. height: math.unit(500, "miles")
  8653. }
  8654. ]
  8655. ))
  8656. characterMakers.push(() => makeCharacter(
  8657. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8658. {
  8659. front: {
  8660. height: math.unit(6, "feet"),
  8661. weight: math.unit(135, "lbs"),
  8662. name: "Front",
  8663. image: {
  8664. source: "./media/characters/q/front.svg",
  8665. extra: 854 / 752,
  8666. bottom: 0.005
  8667. }
  8668. },
  8669. back: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(130, "lbs"),
  8672. name: "Back",
  8673. image: {
  8674. source: "./media/characters/q/back.svg",
  8675. extra: 854 / 752
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(90, "feet"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Extra Macro",
  8687. height: math.unit(300, "feet"),
  8688. },
  8689. {
  8690. name: "BIG WALF",
  8691. height: math.unit(750, "feet"),
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(150, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/carley/front.svg",
  8704. extra: 3927 / 3540,
  8705. bottom: 29.2 / 735
  8706. }
  8707. }
  8708. },
  8709. [
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(6 + 3 / 12, "feet")
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(185, "feet"),
  8717. default: true
  8718. },
  8719. {
  8720. name: "Megamacro",
  8721. height: math.unit(8, "miles"),
  8722. },
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8727. {
  8728. front: {
  8729. height: math.unit(3, "feet"),
  8730. weight: math.unit(28, "lbs"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/citrine/front.svg"
  8734. }
  8735. }
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(3, "feet"),
  8741. default: true
  8742. }
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8747. {
  8748. front: {
  8749. height: math.unit(14, "feet"),
  8750. weight: math.unit(1450, "kg"),
  8751. preyCapacity: math.unit(15, "people"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/aura-starwind/front.svg",
  8755. extra: 1440/1327,
  8756. bottom: 11/1451
  8757. }
  8758. },
  8759. side: {
  8760. height: math.unit(14, "feet"),
  8761. weight: math.unit(1450, "kg"),
  8762. preyCapacity: math.unit(15, "people"),
  8763. name: "Side",
  8764. image: {
  8765. source: "./media/characters/aura-starwind/side.svg",
  8766. extra: 1654 / 1497
  8767. }
  8768. },
  8769. taur: {
  8770. height: math.unit(18, "feet"),
  8771. weight: math.unit(5500, "kg"),
  8772. preyCapacity: math.unit(50, "people"),
  8773. name: "Taur",
  8774. image: {
  8775. source: "./media/characters/aura-starwind/taur.svg",
  8776. extra: 1760 / 1650
  8777. }
  8778. },
  8779. feral: {
  8780. height: math.unit(46, "feet"),
  8781. weight: math.unit(25000, "kg"),
  8782. preyCapacity: math.unit(120, "people"),
  8783. name: "Feral",
  8784. image: {
  8785. source: "./media/characters/aura-starwind/feral.svg"
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(14, "feet"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Macro",
  8797. height: math.unit(50, "meters")
  8798. },
  8799. {
  8800. name: "Megamacro",
  8801. height: math.unit(5000, "meters")
  8802. },
  8803. {
  8804. name: "Gigamacro",
  8805. height: math.unit(100000, "kilometers")
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(2 + 7 / 12, "feet"),
  8814. weight: math.unit(32, "lbs"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/rivet/front.svg",
  8818. extra: 1716 / 1658,
  8819. bottom: 0.03
  8820. }
  8821. },
  8822. foot: {
  8823. height: math.unit(0.551, "feet"),
  8824. name: "Rivet's Foot",
  8825. image: {
  8826. source: "./media/characters/rivet/foot.svg"
  8827. },
  8828. rename: true
  8829. }
  8830. },
  8831. [
  8832. {
  8833. name: "Micro",
  8834. height: math.unit(1.5, "inches"),
  8835. },
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(2 + 7 / 12, "feet"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "Macro",
  8843. height: math.unit(85, "feet")
  8844. },
  8845. {
  8846. name: "Megamacro",
  8847. height: math.unit(2.2, "km")
  8848. }
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. weight: math.unit(150, "lbs"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/coffee/front.svg",
  8860. extra: 3666 / 3032,
  8861. bottom: 0.04
  8862. }
  8863. },
  8864. foot: {
  8865. height: math.unit(1.29, "feet"),
  8866. name: "Foot",
  8867. image: {
  8868. source: "./media/characters/coffee/foot.svg"
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Micro",
  8875. height: math.unit(2, "inches"),
  8876. },
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(5 + 9 / 12, "feet"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Macro",
  8884. height: math.unit(800, "feet")
  8885. },
  8886. {
  8887. name: "Megamacro",
  8888. height: math.unit(25, "miles")
  8889. }
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(200, "lbs"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/chari-gal/front.svg",
  8901. extra: 1568 / 1385,
  8902. bottom: 0.047
  8903. }
  8904. },
  8905. gigantamax: {
  8906. height: math.unit(6 * 16, "feet"),
  8907. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8908. name: "Gigantamax",
  8909. image: {
  8910. source: "./media/characters/chari-gal/gigantamax.svg",
  8911. extra: 1124 / 888,
  8912. bottom: 0.03
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Normal",
  8919. height: math.unit(5 + 7 / 12, "feet")
  8920. },
  8921. {
  8922. name: "Macro",
  8923. height: math.unit(200, "feet"),
  8924. default: true
  8925. }
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(150, "lbs"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/nova/front.svg",
  8937. extra: 5000 / 4722,
  8938. bottom: 0.02
  8939. }
  8940. }
  8941. },
  8942. [
  8943. {
  8944. name: "Micro-",
  8945. height: math.unit(0.8, "inches")
  8946. },
  8947. {
  8948. name: "Micro",
  8949. height: math.unit(2, "inches"),
  8950. default: true
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(3 + 1 / 12, "feet"),
  8959. weight: math.unit(21.7, "lbs"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/argent/front.svg",
  8963. extra: 1471 / 1331,
  8964. bottom: 100.8 / 1575.5
  8965. }
  8966. }
  8967. },
  8968. [
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(2, "inches")
  8972. },
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(3 + 1 / 12, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(120, "feet")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8986. {
  8987. lamp: {
  8988. height: math.unit(7 * 1559 / 989, "feet"),
  8989. name: "Magic Lamp",
  8990. image: {
  8991. source: "./media/characters/mira-al-cul/lamp.svg",
  8992. extra: 1617 / 1559
  8993. }
  8994. },
  8995. front: {
  8996. height: math.unit(7, "feet"),
  8997. name: "Front",
  8998. image: {
  8999. source: "./media/characters/mira-al-cul/front.svg",
  9000. extra: 1044 / 990
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Heavily Restricted",
  9007. height: math.unit(7 * 1559 / 989, "feet")
  9008. },
  9009. {
  9010. name: "Freshly Freed",
  9011. height: math.unit(50 * 1559 / 989, "feet")
  9012. },
  9013. {
  9014. name: "World Encompassing",
  9015. height: math.unit(10000 * 1559 / 989, "miles")
  9016. },
  9017. {
  9018. name: "Galactic",
  9019. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9020. },
  9021. {
  9022. name: "Palmed Universe",
  9023. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9024. default: true
  9025. },
  9026. {
  9027. name: "Multiversal Matriarch",
  9028. height: math.unit(8.87e10, "yottameters")
  9029. },
  9030. {
  9031. name: "Void Mother",
  9032. height: math.unit(3.14e110, "yottaparsecs")
  9033. },
  9034. {
  9035. name: "Toying with Transcendence",
  9036. height: math.unit(1e307, "meters")
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9042. {
  9043. front: {
  9044. height: math.unit(17 + 1 / 12, "feet"),
  9045. weight: math.unit(476.2 * 5, "lbs"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/kuro-shi-uchū/front.svg",
  9049. extra: 2329 / 1835,
  9050. bottom: 0.02
  9051. }
  9052. },
  9053. },
  9054. [
  9055. {
  9056. name: "Micro",
  9057. height: math.unit(2, "inches")
  9058. },
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(12, "meters")
  9062. },
  9063. {
  9064. name: "Planetary",
  9065. height: math.unit(0.00929, "AU"),
  9066. default: true
  9067. },
  9068. {
  9069. name: "Universal",
  9070. height: math.unit(20, "gigaparsecs")
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(5 + 2 / 12, "feet"),
  9079. weight: math.unit(120, "lbs"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/katherine/front.svg",
  9083. extra: 2075 / 1969
  9084. }
  9085. },
  9086. dress: {
  9087. height: math.unit(5 + 2 / 12, "feet"),
  9088. weight: math.unit(120, "lbs"),
  9089. name: "Dress",
  9090. image: {
  9091. source: "./media/characters/katherine/dress.svg",
  9092. extra: 2258 / 2064
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Micro",
  9099. height: math.unit(1, "inches"),
  9100. default: true
  9101. },
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(5 + 2 / 12, "feet")
  9105. },
  9106. {
  9107. name: "Macro",
  9108. height: math.unit(100, "meters")
  9109. },
  9110. {
  9111. name: "Megamacro",
  9112. height: math.unit(80, "miles")
  9113. },
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9118. {
  9119. front: {
  9120. height: math.unit(7 + 8 / 12, "feet"),
  9121. weight: math.unit(250, "lbs"),
  9122. name: "Front",
  9123. image: {
  9124. source: "./media/characters/yevis/front.svg",
  9125. extra: 1938 / 1755
  9126. }
  9127. }
  9128. },
  9129. [
  9130. {
  9131. name: "Mortal",
  9132. height: math.unit(7 + 8 / 12, "feet")
  9133. },
  9134. {
  9135. name: "Battle",
  9136. height: math.unit(25 + 11 / 12, "feet")
  9137. },
  9138. {
  9139. name: "Wrath",
  9140. height: math.unit(1654 + 11 / 12, "feet")
  9141. },
  9142. {
  9143. name: "Planet Destroyer",
  9144. height: math.unit(12000, "miles")
  9145. },
  9146. {
  9147. name: "Galaxy Conqueror",
  9148. height: math.unit(1.45, "zettameters"),
  9149. default: true
  9150. },
  9151. {
  9152. name: "Universal War",
  9153. height: math.unit(184, "gigaparsecs")
  9154. },
  9155. {
  9156. name: "Eternity War",
  9157. height: math.unit(1.98e55, "yottaparsecs")
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9163. {
  9164. front: {
  9165. height: math.unit(5 + 8 / 12, "feet"),
  9166. weight: math.unit(63, "kg"),
  9167. name: "Front",
  9168. image: {
  9169. source: "./media/characters/xavier/front.svg",
  9170. extra: 944 / 883
  9171. }
  9172. },
  9173. frontStretch: {
  9174. height: math.unit(5 + 8 / 12, "feet"),
  9175. weight: math.unit(63, "kg"),
  9176. name: "Stretching",
  9177. image: {
  9178. source: "./media/characters/xavier/front-stretch.svg",
  9179. extra: 962 / 820
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(5 + 8 / 12, "feet")
  9187. },
  9188. {
  9189. name: "Macro",
  9190. height: math.unit(100, "meters"),
  9191. default: true
  9192. },
  9193. {
  9194. name: "McLargeHuge",
  9195. height: math.unit(10, "miles")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(5 + 5 / 12, "feet"),
  9204. weight: math.unit(150, "lb"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/joshii/front.svg",
  9208. extra: 765 / 653,
  9209. bottom: 51 / 816
  9210. }
  9211. },
  9212. foot: {
  9213. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9214. name: "Foot",
  9215. image: {
  9216. source: "./media/characters/joshii/foot.svg"
  9217. }
  9218. },
  9219. },
  9220. [
  9221. {
  9222. name: "Micro",
  9223. height: math.unit(2, "inches"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Normal",
  9228. height: math.unit(5 + 5 / 12, "feet")
  9229. },
  9230. {
  9231. name: "Macro",
  9232. height: math.unit(785, "feet")
  9233. },
  9234. {
  9235. name: "Megamacro",
  9236. height: math.unit(24.5, "miles")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(6, "feet"),
  9245. weight: math.unit(150, "lb"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/goddess-elizabeth/front.svg",
  9249. extra: 1800 / 1525,
  9250. bottom: 0.005
  9251. }
  9252. },
  9253. foot: {
  9254. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9255. name: "Foot",
  9256. image: {
  9257. source: "./media/characters/goddess-elizabeth/foot.svg"
  9258. }
  9259. },
  9260. mouth: {
  9261. height: math.unit(6, "feet"),
  9262. name: "Mouth",
  9263. image: {
  9264. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9265. }
  9266. },
  9267. },
  9268. [
  9269. {
  9270. name: "Micro",
  9271. height: math.unit(12, "feet")
  9272. },
  9273. {
  9274. name: "Normal",
  9275. height: math.unit(80, "miles"),
  9276. default: true
  9277. },
  9278. {
  9279. name: "Macro",
  9280. height: math.unit(15000, "parsecs")
  9281. },
  9282. ]
  9283. ))
  9284. characterMakers.push(() => makeCharacter(
  9285. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9286. {
  9287. front: {
  9288. height: math.unit(5 + 9 / 12, "feet"),
  9289. weight: math.unit(144, "lb"),
  9290. name: "Front",
  9291. image: {
  9292. source: "./media/characters/kara/front.svg"
  9293. }
  9294. },
  9295. feet: {
  9296. height: math.unit(6 / 6.765, "feet"),
  9297. name: "Kara's Feet",
  9298. rename: true,
  9299. image: {
  9300. source: "./media/characters/kara/feet.svg"
  9301. }
  9302. },
  9303. },
  9304. [
  9305. {
  9306. name: "Normal",
  9307. height: math.unit(5 + 9 / 12, "feet")
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(174, "feet"),
  9312. default: true
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(18, "feet"),
  9321. weight: math.unit(4050, "lb"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/tyrone/front.svg",
  9325. extra: 2405 / 2270,
  9326. bottom: 182 / 2587
  9327. }
  9328. },
  9329. },
  9330. [
  9331. {
  9332. name: "Normal",
  9333. height: math.unit(18, "feet"),
  9334. default: true
  9335. },
  9336. {
  9337. name: "Macro",
  9338. height: math.unit(300, "feet")
  9339. },
  9340. {
  9341. name: "Megamacro",
  9342. height: math.unit(15, "km")
  9343. },
  9344. {
  9345. name: "Gigamacro",
  9346. height: math.unit(500, "km")
  9347. },
  9348. {
  9349. name: "Teramacro",
  9350. height: math.unit(0.5, "gigameters")
  9351. },
  9352. {
  9353. name: "Omnimacro",
  9354. height: math.unit(1e252, "yottauniverse")
  9355. },
  9356. ]
  9357. ))
  9358. characterMakers.push(() => makeCharacter(
  9359. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9360. {
  9361. front: {
  9362. height: math.unit(7 + 8 / 12, "feet"),
  9363. weight: math.unit(120, "lb"),
  9364. name: "Front",
  9365. image: {
  9366. source: "./media/characters/danny/front.svg",
  9367. extra: 1490 / 1350
  9368. }
  9369. },
  9370. back: {
  9371. height: math.unit(7 + 8 / 12, "feet"),
  9372. weight: math.unit(120, "lb"),
  9373. name: "Back",
  9374. image: {
  9375. source: "./media/characters/danny/back.svg",
  9376. extra: 1490 / 1350
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(7 + 8 / 12, "feet"),
  9384. default: true
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9390. {
  9391. front: {
  9392. height: math.unit(3.5, "inches"),
  9393. weight: math.unit(19, "grams"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/mallow/front.svg",
  9397. extra: 471 / 431
  9398. }
  9399. },
  9400. back: {
  9401. height: math.unit(3.5, "inches"),
  9402. weight: math.unit(19, "grams"),
  9403. name: "Back",
  9404. image: {
  9405. source: "./media/characters/mallow/back.svg",
  9406. extra: 471 / 431
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(3.5, "inches"),
  9414. default: true
  9415. },
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9420. {
  9421. front: {
  9422. height: math.unit(9, "feet"),
  9423. weight: math.unit(230, "kg"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/starry-aqua/front.svg"
  9427. }
  9428. },
  9429. back: {
  9430. height: math.unit(9, "feet"),
  9431. weight: math.unit(230, "kg"),
  9432. name: "Back",
  9433. image: {
  9434. source: "./media/characters/starry-aqua/back.svg"
  9435. }
  9436. },
  9437. hand: {
  9438. height: math.unit(9 * 0.1168, "feet"),
  9439. name: "Hand",
  9440. image: {
  9441. source: "./media/characters/starry-aqua/hand.svg"
  9442. }
  9443. },
  9444. foot: {
  9445. height: math.unit(9 * 0.18, "feet"),
  9446. name: "Foot",
  9447. image: {
  9448. source: "./media/characters/starry-aqua/foot.svg"
  9449. }
  9450. }
  9451. },
  9452. [
  9453. {
  9454. name: "Micro",
  9455. height: math.unit(3, "inches")
  9456. },
  9457. {
  9458. name: "Normal",
  9459. height: math.unit(9, "feet")
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(300, "feet"),
  9464. default: true
  9465. },
  9466. {
  9467. name: "Megamacro",
  9468. height: math.unit(3200, "feet")
  9469. }
  9470. ]
  9471. ))
  9472. characterMakers.push(() => makeCharacter(
  9473. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9474. {
  9475. front: {
  9476. height: math.unit(15, "feet"),
  9477. weight: math.unit(5026, "lb"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/luka-towers/front.svg",
  9481. extra: 1269/1133,
  9482. bottom: 51/1320
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(15, "feet"),
  9490. default: true
  9491. },
  9492. {
  9493. name: "Minimacro",
  9494. height: math.unit(25, "feet")
  9495. },
  9496. {
  9497. name: "Macro",
  9498. height: math.unit(320, "feet")
  9499. },
  9500. {
  9501. name: "Megamacro",
  9502. height: math.unit(35000, "feet")
  9503. },
  9504. {
  9505. name: "Gigamacro",
  9506. height: math.unit(4000, "miles")
  9507. },
  9508. {
  9509. name: "Teramacro",
  9510. height: math.unit(15000, "miles")
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9516. {
  9517. front: {
  9518. height: math.unit(6, "feet"),
  9519. weight: math.unit(150, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/natalie-nightring/front.svg",
  9523. extra: 1,
  9524. bottom: 0.06
  9525. }
  9526. },
  9527. },
  9528. [
  9529. {
  9530. name: "Uh Oh",
  9531. height: math.unit(0.1, "mm")
  9532. },
  9533. {
  9534. name: "Small",
  9535. height: math.unit(3, "inches")
  9536. },
  9537. {
  9538. name: "Human Scale",
  9539. height: math.unit(6, "feet")
  9540. },
  9541. {
  9542. name: "Librarian",
  9543. height: math.unit(50, "feet"),
  9544. default: true
  9545. },
  9546. {
  9547. name: "Immense",
  9548. height: math.unit(200, "miles")
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9554. {
  9555. front: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(180, "lbs"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/danni-rosie/front.svg",
  9561. extra: 1260 / 1128,
  9562. bottom: 0.022
  9563. }
  9564. },
  9565. },
  9566. [
  9567. {
  9568. name: "Micro",
  9569. height: math.unit(2, "inches"),
  9570. default: true
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5 + 9 / 12, "feet"),
  9579. weight: math.unit(220, "lb"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/samantha-kruse/front.svg",
  9583. extra: (985 / 935),
  9584. bottom: 0.03
  9585. }
  9586. },
  9587. frontUndressed: {
  9588. height: math.unit(5 + 9 / 12, "feet"),
  9589. weight: math.unit(220, "lb"),
  9590. name: "Front (Undressed)",
  9591. image: {
  9592. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9593. extra: (973 / 923),
  9594. bottom: 0.025
  9595. }
  9596. },
  9597. fat: {
  9598. height: math.unit(5 + 9 / 12, "feet"),
  9599. weight: math.unit(900, "lb"),
  9600. name: "Front (Fat)",
  9601. image: {
  9602. source: "./media/characters/samantha-kruse/fat.svg",
  9603. extra: 2688 / 2561
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(5 + 9 / 12, "feet"),
  9611. default: true
  9612. }
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9617. {
  9618. back: {
  9619. height: math.unit(5 + 4 / 12, "feet"),
  9620. weight: math.unit(4963, "lb"),
  9621. name: "Back",
  9622. image: {
  9623. source: "./media/characters/amelia-rosie/back.svg",
  9624. extra: 1113 / 963,
  9625. bottom: 0.01
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Level 0",
  9632. height: math.unit(5 + 4 / 12, "feet")
  9633. },
  9634. {
  9635. name: "Level 1",
  9636. height: math.unit(164597, "feet"),
  9637. default: true
  9638. },
  9639. {
  9640. name: "Level 2",
  9641. height: math.unit(956243, "miles")
  9642. },
  9643. {
  9644. name: "Level 3",
  9645. height: math.unit(29421709423, "miles")
  9646. },
  9647. {
  9648. name: "Level 4",
  9649. height: math.unit(154, "lightyears")
  9650. },
  9651. {
  9652. name: "Level 5",
  9653. height: math.unit(4738272, "lightyears")
  9654. },
  9655. {
  9656. name: "Level 6",
  9657. height: math.unit(145787152896, "lightyears")
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9663. {
  9664. front: {
  9665. height: math.unit(5 + 11 / 12, "feet"),
  9666. weight: math.unit(65, "kg"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/rook-kitara/front.svg",
  9670. extra: 1347 / 1274,
  9671. bottom: 0.005
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Totally Unfair",
  9678. height: math.unit(1.8, "mm")
  9679. },
  9680. {
  9681. name: "Lap Rookie",
  9682. height: math.unit(1.4, "feet")
  9683. },
  9684. {
  9685. name: "Normal",
  9686. height: math.unit(5 + 11 / 12, "feet"),
  9687. default: true
  9688. },
  9689. {
  9690. name: "How Did This Happen",
  9691. height: math.unit(80, "miles")
  9692. }
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9697. {
  9698. front: {
  9699. height: math.unit(7, "feet"),
  9700. weight: math.unit(300, "lb"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/pisces/front.svg",
  9704. extra: 2255 / 2115,
  9705. bottom: 0.03
  9706. }
  9707. },
  9708. back: {
  9709. height: math.unit(7, "feet"),
  9710. weight: math.unit(300, "lb"),
  9711. name: "Back",
  9712. image: {
  9713. source: "./media/characters/pisces/back.svg",
  9714. extra: 2146 / 2055,
  9715. bottom: 0.04
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Normal",
  9722. height: math.unit(7, "feet"),
  9723. default: true
  9724. },
  9725. {
  9726. name: "Swimming Pool",
  9727. height: math.unit(12.2, "meters")
  9728. },
  9729. {
  9730. name: "Olympic Swimming Pool",
  9731. height: math.unit(56.3, "meters")
  9732. },
  9733. {
  9734. name: "Lake Superior",
  9735. height: math.unit(93900, "meters")
  9736. },
  9737. {
  9738. name: "Mediterranean Sea",
  9739. height: math.unit(644457, "meters")
  9740. },
  9741. {
  9742. name: "World's Oceans",
  9743. height: math.unit(4567491, "meters")
  9744. },
  9745. ]
  9746. ))
  9747. characterMakers.push(() => makeCharacter(
  9748. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9749. {
  9750. front: {
  9751. height: math.unit(2.3, "meters"),
  9752. weight: math.unit(120, "kg"),
  9753. name: "Front",
  9754. image: {
  9755. source: "./media/characters/zelas/front.svg"
  9756. }
  9757. },
  9758. side: {
  9759. height: math.unit(2.3, "meters"),
  9760. weight: math.unit(120, "kg"),
  9761. name: "Side",
  9762. image: {
  9763. source: "./media/characters/zelas/side.svg"
  9764. }
  9765. },
  9766. back: {
  9767. height: math.unit(2.3, "meters"),
  9768. weight: math.unit(120, "kg"),
  9769. name: "Back",
  9770. image: {
  9771. source: "./media/characters/zelas/back.svg"
  9772. }
  9773. },
  9774. foot: {
  9775. height: math.unit(1.116, "feet"),
  9776. name: "Foot",
  9777. image: {
  9778. source: "./media/characters/zelas/foot.svg"
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(2.3, "meters")
  9786. },
  9787. {
  9788. name: "Macro",
  9789. height: math.unit(30, "meters"),
  9790. default: true
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(1, "inch"),
  9799. weight: math.unit(0.21, "grams"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/talbot/front.svg",
  9803. extra: 594 / 544
  9804. }
  9805. },
  9806. },
  9807. [
  9808. {
  9809. name: "Micro",
  9810. height: math.unit(1, "inch"),
  9811. default: true
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9817. {
  9818. front: {
  9819. height: math.unit(3 + 3 / 12, "feet"),
  9820. weight: math.unit(51.8, "lb"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/fliss/front.svg",
  9824. extra: 840 / 640
  9825. }
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Teeny Tiny",
  9831. height: math.unit(1, "mm")
  9832. },
  9833. {
  9834. name: "Small",
  9835. height: math.unit(1, "inch"),
  9836. default: true
  9837. },
  9838. {
  9839. name: "Standard Sylveon",
  9840. height: math.unit(3 + 3 / 12, "feet")
  9841. },
  9842. {
  9843. name: "Large Nuisance",
  9844. height: math.unit(33, "feet")
  9845. },
  9846. {
  9847. name: "City Filler",
  9848. height: math.unit(3000, "feet")
  9849. },
  9850. {
  9851. name: "New Horizon",
  9852. height: math.unit(6000, "miles")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(5, "cm"),
  9861. weight: math.unit(1.94, "g"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/fleta/front.svg",
  9865. extra: 835 / 803
  9866. }
  9867. },
  9868. back: {
  9869. height: math.unit(5, "cm"),
  9870. weight: math.unit(1.94, "g"),
  9871. name: "Back",
  9872. image: {
  9873. source: "./media/characters/fleta/back.svg",
  9874. extra: 835 / 803
  9875. }
  9876. },
  9877. },
  9878. [
  9879. {
  9880. name: "Micro",
  9881. height: math.unit(5, "cm"),
  9882. default: true
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9888. {
  9889. front: {
  9890. height: math.unit(6, "feet"),
  9891. weight: math.unit(225, "lb"),
  9892. name: "Front",
  9893. image: {
  9894. source: "./media/characters/dominic/front.svg",
  9895. extra: 1770 / 1620,
  9896. bottom: 0.025
  9897. }
  9898. },
  9899. back: {
  9900. height: math.unit(6, "feet"),
  9901. weight: math.unit(225, "lb"),
  9902. name: "Back",
  9903. image: {
  9904. source: "./media/characters/dominic/back.svg",
  9905. extra: 1745 / 1620,
  9906. bottom: 0.065
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Nano",
  9913. height: math.unit(0.1, "mm")
  9914. },
  9915. {
  9916. name: "Micro-",
  9917. height: math.unit(1, "mm")
  9918. },
  9919. {
  9920. name: "Micro",
  9921. height: math.unit(4, "inches")
  9922. },
  9923. {
  9924. name: "Normal",
  9925. height: math.unit(6 + 4 / 12, "feet"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(115, "feet")
  9931. },
  9932. {
  9933. name: "Macro+",
  9934. height: math.unit(955, "feet")
  9935. },
  9936. {
  9937. name: "Megamacro",
  9938. height: math.unit(8990, "feet")
  9939. },
  9940. {
  9941. name: "Gigmacro",
  9942. height: math.unit(9310, "miles")
  9943. },
  9944. {
  9945. name: "Teramacro",
  9946. height: math.unit(1567005010, "miles")
  9947. },
  9948. {
  9949. name: "Examacro",
  9950. height: math.unit(1425, "parsecs")
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9956. {
  9957. front: {
  9958. height: math.unit(400, "feet"),
  9959. weight: math.unit(44444444, "lb"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/major-colonel/front.svg"
  9963. }
  9964. },
  9965. back: {
  9966. height: math.unit(400, "feet"),
  9967. weight: math.unit(44444444, "lb"),
  9968. name: "Back",
  9969. image: {
  9970. source: "./media/characters/major-colonel/back.svg"
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Macro",
  9977. height: math.unit(400, "feet"),
  9978. default: true
  9979. },
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9984. {
  9985. catFront: {
  9986. height: math.unit(6, "feet"),
  9987. weight: math.unit(120, "lb"),
  9988. name: "Front (Cat Side)",
  9989. image: {
  9990. source: "./media/characters/axel-lycan/cat-front.svg",
  9991. extra: 430 / 402,
  9992. bottom: 43 / 472.35
  9993. }
  9994. },
  9995. catBack: {
  9996. height: math.unit(6, "feet"),
  9997. weight: math.unit(120, "lb"),
  9998. name: "Back (Cat Side)",
  9999. image: {
  10000. source: "./media/characters/axel-lycan/cat-back.svg",
  10001. extra: 447 / 419,
  10002. bottom: 23.3 / 469
  10003. }
  10004. },
  10005. wolfFront: {
  10006. height: math.unit(6, "feet"),
  10007. weight: math.unit(120, "lb"),
  10008. name: "Front (Wolf Side)",
  10009. image: {
  10010. source: "./media/characters/axel-lycan/wolf-front.svg",
  10011. extra: 485 / 456,
  10012. bottom: 19 / 504
  10013. }
  10014. },
  10015. wolfBack: {
  10016. height: math.unit(6, "feet"),
  10017. weight: math.unit(120, "lb"),
  10018. name: "Back (Wolf Side)",
  10019. image: {
  10020. source: "./media/characters/axel-lycan/wolf-back.svg",
  10021. extra: 475 / 438,
  10022. bottom: 39.2 / 514
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Macro",
  10029. height: math.unit(1, "km"),
  10030. default: true
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(5 + 9 / 12, "feet"),
  10039. weight: math.unit(175, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/vanrel-hyena/front.svg",
  10043. extra: 1086 / 1010,
  10044. bottom: 0.04
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(5 + 9 / 12, "feet"),
  10052. default: true
  10053. },
  10054. ]
  10055. ))
  10056. characterMakers.push(() => makeCharacter(
  10057. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10058. {
  10059. front: {
  10060. height: math.unit(6, "feet"),
  10061. weight: math.unit(103, "lb"),
  10062. name: "Front",
  10063. image: {
  10064. source: "./media/characters/abbott-absol/front.svg",
  10065. extra: 2010 / 1842
  10066. }
  10067. },
  10068. },
  10069. [
  10070. {
  10071. name: "Megamicro",
  10072. height: math.unit(0.1, "mm")
  10073. },
  10074. {
  10075. name: "Micro",
  10076. height: math.unit(1, "inch")
  10077. },
  10078. {
  10079. name: "Normal",
  10080. height: math.unit(6, "feet"),
  10081. default: true
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10087. {
  10088. front: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(264, "lb"),
  10091. name: "Front",
  10092. image: {
  10093. source: "./media/characters/hector/front.svg",
  10094. extra: 2280 / 2130,
  10095. bottom: 0.07
  10096. }
  10097. },
  10098. },
  10099. [
  10100. {
  10101. name: "Normal",
  10102. height: math.unit(12.25, "foot"),
  10103. default: true
  10104. },
  10105. {
  10106. name: "Macro",
  10107. height: math.unit(160, "feet")
  10108. },
  10109. ]
  10110. ))
  10111. characterMakers.push(() => makeCharacter(
  10112. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10113. {
  10114. front: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(150, "lb"),
  10117. name: "Front",
  10118. image: {
  10119. source: "./media/characters/sal/front.svg",
  10120. extra: 1846 / 1699,
  10121. bottom: 0.04
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Megamacro",
  10128. height: math.unit(10, "miles"),
  10129. default: true
  10130. },
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10135. {
  10136. front: {
  10137. height: math.unit(3, "meters"),
  10138. weight: math.unit(450, "kg"),
  10139. name: "front",
  10140. image: {
  10141. source: "./media/characters/ranger/front.svg",
  10142. extra: 2401 / 2243,
  10143. bottom: 0.05
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(3, "meters"),
  10151. default: true
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(14, "feet"),
  10160. weight: math.unit(800, "kg"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/theresa/front.svg",
  10164. extra: 3575 / 3346,
  10165. bottom: 0.03
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(14, "feet"),
  10173. default: true
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10179. {
  10180. front: {
  10181. height: math.unit(6, "feet"),
  10182. weight: math.unit(3, "kg"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/ine/front.svg",
  10186. extra: 678 / 539,
  10187. bottom: 0.023
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Normal",
  10194. height: math.unit(2.265, "feet"),
  10195. default: true
  10196. },
  10197. ]
  10198. ))
  10199. characterMakers.push(() => makeCharacter(
  10200. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10201. {
  10202. front: {
  10203. height: math.unit(5, "feet"),
  10204. weight: math.unit(30, "kg"),
  10205. name: "Front",
  10206. image: {
  10207. source: "./media/characters/vial/front.svg",
  10208. extra: 1365 / 1277,
  10209. bottom: 0.04
  10210. }
  10211. },
  10212. },
  10213. [
  10214. {
  10215. name: "Normal",
  10216. height: math.unit(5, "feet"),
  10217. default: true
  10218. },
  10219. ]
  10220. ))
  10221. characterMakers.push(() => makeCharacter(
  10222. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10223. {
  10224. side: {
  10225. height: math.unit(3.4, "meters"),
  10226. weight: math.unit(1000, "lb"),
  10227. name: "Side",
  10228. image: {
  10229. source: "./media/characters/rovoska/side.svg",
  10230. extra: 4403 / 1515
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(3.4, "meters"),
  10238. default: true
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(8, "feet"),
  10247. weight: math.unit(315, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/gunner-rotthbauer/front.svg"
  10251. }
  10252. },
  10253. back: {
  10254. height: math.unit(8, "feet"),
  10255. weight: math.unit(315, "lb"),
  10256. name: "Back",
  10257. image: {
  10258. source: "./media/characters/gunner-rotthbauer/back.svg"
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Micro",
  10265. height: math.unit(3.5, "inches")
  10266. },
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(8, "feet"),
  10270. default: true
  10271. },
  10272. {
  10273. name: "Macro",
  10274. height: math.unit(250, "feet")
  10275. },
  10276. {
  10277. name: "Megamacro",
  10278. height: math.unit(1, "AU")
  10279. },
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10284. {
  10285. front: {
  10286. height: math.unit(5 + 5 / 12, "feet"),
  10287. weight: math.unit(140, "lb"),
  10288. name: "Front",
  10289. image: {
  10290. source: "./media/characters/allatia/front.svg",
  10291. extra: 1227 / 1180,
  10292. bottom: 0.027
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(5 + 5 / 12, "feet")
  10300. },
  10301. {
  10302. name: "Macro",
  10303. height: math.unit(250, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Megamacro",
  10308. height: math.unit(8, "miles")
  10309. }
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(120, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/tene/front.svg",
  10321. extra: 814/750,
  10322. bottom: 36/850
  10323. }
  10324. },
  10325. stomping: {
  10326. height: math.unit(2.025, "meters"),
  10327. weight: math.unit(120, "lb"),
  10328. name: "Stomping",
  10329. image: {
  10330. source: "./media/characters/tene/stomping.svg",
  10331. extra: 885/821,
  10332. bottom: 15/900
  10333. }
  10334. },
  10335. sitting: {
  10336. height: math.unit(1, "meter"),
  10337. weight: math.unit(120, "lb"),
  10338. name: "Sitting",
  10339. image: {
  10340. source: "./media/characters/tene/sitting.svg",
  10341. extra: 396/366,
  10342. bottom: 79/475
  10343. }
  10344. },
  10345. smiling: {
  10346. height: math.unit(1.2, "feet"),
  10347. name: "Smiling",
  10348. image: {
  10349. source: "./media/characters/tene/smiling.svg",
  10350. extra: 1364/1071,
  10351. bottom: 0/1364
  10352. }
  10353. },
  10354. smug: {
  10355. height: math.unit(1.3, "feet"),
  10356. name: "Smug",
  10357. image: {
  10358. source: "./media/characters/tene/smug.svg",
  10359. extra: 1323/1082,
  10360. bottom: 0/1323
  10361. }
  10362. },
  10363. feral: {
  10364. height: math.unit(3.9, "feet"),
  10365. weight: math.unit(250, "lb"),
  10366. name: "Feral",
  10367. image: {
  10368. source: "./media/characters/tene/feral.svg",
  10369. extra: 717 / 458,
  10370. bottom: 0.179
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(6, "feet")
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(300, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(5, "miles")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10392. {
  10393. side: {
  10394. height: math.unit(6, "feet"),
  10395. name: "Side",
  10396. image: {
  10397. source: "./media/characters/evander/side.svg",
  10398. extra: 877 / 477
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Normal",
  10405. height: math.unit(0.83, "meters"),
  10406. default: true
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(12, "feet"),
  10415. weight: math.unit(1000, "lb"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10419. extra: 1762 / 1611
  10420. }
  10421. },
  10422. back: {
  10423. height: math.unit(12, "feet"),
  10424. weight: math.unit(1000, "lb"),
  10425. name: "Back",
  10426. image: {
  10427. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10428. extra: 1762 / 1611
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(12, "feet"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Kaiju",
  10440. height: math.unit(150, "feet")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10446. {
  10447. front: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(150, "lb"),
  10450. name: "Front",
  10451. image: {
  10452. source: "./media/characters/zero-alurus/front.svg"
  10453. }
  10454. },
  10455. back: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(150, "lb"),
  10458. name: "Back",
  10459. image: {
  10460. source: "./media/characters/zero-alurus/back.svg"
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(5 + 10 / 12, "feet")
  10468. },
  10469. {
  10470. name: "Macro",
  10471. height: math.unit(60, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Macro+",
  10476. height: math.unit(450, "feet")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(200, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/mega-shi/front.svg",
  10489. extra: 1279 / 1250,
  10490. bottom: 0.02
  10491. }
  10492. },
  10493. back: {
  10494. height: math.unit(6, "feet"),
  10495. weight: math.unit(200, "lb"),
  10496. name: "Back",
  10497. image: {
  10498. source: "./media/characters/mega-shi/back.svg",
  10499. extra: 1279 / 1250,
  10500. bottom: 0.02
  10501. }
  10502. },
  10503. },
  10504. [
  10505. {
  10506. name: "Micro",
  10507. height: math.unit(16 + 6 / 12, "feet")
  10508. },
  10509. {
  10510. name: "Third Dimension",
  10511. height: math.unit(40, "meters")
  10512. },
  10513. {
  10514. name: "Normal",
  10515. height: math.unit(660, "feet"),
  10516. default: true
  10517. },
  10518. {
  10519. name: "Megamacro",
  10520. height: math.unit(10, "miles")
  10521. },
  10522. {
  10523. name: "Planetary Launch",
  10524. height: math.unit(500, "miles")
  10525. },
  10526. {
  10527. name: "Interstellar",
  10528. height: math.unit(1e9, "miles")
  10529. },
  10530. {
  10531. name: "Leaving the Universe",
  10532. height: math.unit(1, "gigaparsec")
  10533. },
  10534. {
  10535. name: "Travelling Universes",
  10536. height: math.unit(30e15, "parsecs")
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10542. {
  10543. front: {
  10544. height: math.unit(5 + 4/12, "feet"),
  10545. weight: math.unit(120, "lb"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/odyssey/front.svg",
  10549. extra: 1747/1571,
  10550. bottom: 47/1794
  10551. }
  10552. },
  10553. side: {
  10554. height: math.unit(5.1, "feet"),
  10555. weight: math.unit(120, "lb"),
  10556. name: "Side",
  10557. image: {
  10558. source: "./media/characters/odyssey/side.svg",
  10559. extra: 1847/1619,
  10560. bottom: 47/1894
  10561. }
  10562. },
  10563. lounging: {
  10564. height: math.unit(1.464, "feet"),
  10565. weight: math.unit(120, "lb"),
  10566. name: "Lounging",
  10567. image: {
  10568. source: "./media/characters/odyssey/lounging.svg",
  10569. extra: 1235/837,
  10570. bottom: 551/1786
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(5 + 4 / 12, "feet")
  10578. },
  10579. {
  10580. name: "Macro",
  10581. height: math.unit(1, "km")
  10582. },
  10583. {
  10584. name: "Megamacro",
  10585. height: math.unit(3000, "km")
  10586. },
  10587. {
  10588. name: "Gigamacro",
  10589. height: math.unit(1, "AU"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Omniversal",
  10594. height: math.unit(100e14, "lightyears")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(300, "lb"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/mekuto/front.svg",
  10607. extra: 921 / 832,
  10608. bottom: 0.03
  10609. }
  10610. },
  10611. hand: {
  10612. height: math.unit(6 / 10.24, "feet"),
  10613. name: "Hand",
  10614. image: {
  10615. source: "./media/characters/mekuto/hand.svg"
  10616. }
  10617. },
  10618. foot: {
  10619. height: math.unit(6 / 5.05, "feet"),
  10620. name: "Foot",
  10621. image: {
  10622. source: "./media/characters/mekuto/foot.svg"
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Minimicro",
  10629. height: math.unit(0.2, "inches")
  10630. },
  10631. {
  10632. name: "Micro",
  10633. height: math.unit(1.5, "inches")
  10634. },
  10635. {
  10636. name: "Normal",
  10637. height: math.unit(5 + 11 / 12, "feet"),
  10638. default: true
  10639. },
  10640. {
  10641. name: "Minimacro",
  10642. height: math.unit(17 + 9 / 12, "feet")
  10643. },
  10644. {
  10645. name: "Macro",
  10646. height: math.unit(177.5, "feet")
  10647. },
  10648. {
  10649. name: "Megamacro",
  10650. height: math.unit(152, "miles")
  10651. },
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10656. {
  10657. front: {
  10658. height: math.unit(6.5, "inches"),
  10659. weight: math.unit(13, "oz"),
  10660. name: "Front",
  10661. image: {
  10662. source: "./media/characters/dafydd-tomos/front.svg",
  10663. extra: 2990 / 2603,
  10664. bottom: 0.03
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Micro",
  10671. height: math.unit(6.5, "inches"),
  10672. default: true
  10673. },
  10674. ]
  10675. ))
  10676. characterMakers.push(() => makeCharacter(
  10677. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10678. {
  10679. front: {
  10680. height: math.unit(6, "feet"),
  10681. weight: math.unit(150, "lb"),
  10682. name: "Front",
  10683. image: {
  10684. source: "./media/characters/splinter/front.svg",
  10685. extra: 2990 / 2882,
  10686. bottom: 0.04
  10687. }
  10688. },
  10689. back: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(150, "lb"),
  10692. name: "Back",
  10693. image: {
  10694. source: "./media/characters/splinter/back.svg",
  10695. extra: 2990 / 2882,
  10696. bottom: 0.04
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(6, "feet")
  10704. },
  10705. {
  10706. name: "Macro",
  10707. height: math.unit(230, "meters"),
  10708. default: true
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(4 + 10 / 12, "feet"),
  10717. weight: math.unit(480, "lb"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/snow-gabumon/front.svg",
  10721. extra: 1140 / 963,
  10722. bottom: 0.058
  10723. }
  10724. },
  10725. back: {
  10726. height: math.unit(4 + 10 / 12, "feet"),
  10727. weight: math.unit(480, "lb"),
  10728. name: "Back",
  10729. image: {
  10730. source: "./media/characters/snow-gabumon/back.svg",
  10731. extra: 1115 / 962,
  10732. bottom: 0.041
  10733. }
  10734. },
  10735. frontUndresed: {
  10736. height: math.unit(4 + 10 / 12, "feet"),
  10737. weight: math.unit(480, "lb"),
  10738. name: "Front (Undressed)",
  10739. image: {
  10740. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10741. extra: 1061 / 960,
  10742. bottom: 0.045
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Micro",
  10749. height: math.unit(1, "inch")
  10750. },
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(4 + 10 / 12, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Macro",
  10758. height: math.unit(200, "feet")
  10759. },
  10760. {
  10761. name: "Megamacro",
  10762. height: math.unit(120, "miles")
  10763. },
  10764. {
  10765. name: "Gigamacro",
  10766. height: math.unit(9800, "miles")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(1.7, "meters"),
  10775. weight: math.unit(140, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/moody/front.svg",
  10779. extra: 3226 / 3007,
  10780. bottom: 0.087
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Micro",
  10787. height: math.unit(1, "mm")
  10788. },
  10789. {
  10790. name: "Normal",
  10791. height: math.unit(1.7, "meters"),
  10792. default: true
  10793. },
  10794. {
  10795. name: "Macro",
  10796. height: math.unit(80, "meters")
  10797. },
  10798. {
  10799. name: "Macro+",
  10800. height: math.unit(500, "meters")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(150, "lb"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/zyas/front.svg",
  10813. extra: 1180 / 1120,
  10814. bottom: 0.045
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(10, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(500, "feet")
  10827. },
  10828. {
  10829. name: "Megamacro",
  10830. height: math.unit(5, "miles")
  10831. },
  10832. {
  10833. name: "Teramacro",
  10834. height: math.unit(150000, "miles")
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10840. {
  10841. front: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(150, "lb"),
  10844. name: "Front",
  10845. image: {
  10846. source: "./media/characters/cuon/front.svg",
  10847. extra: 1390 / 1320,
  10848. bottom: 0.008
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Micro",
  10855. height: math.unit(3, "inches")
  10856. },
  10857. {
  10858. name: "Normal",
  10859. height: math.unit(18 + 9 / 12, "feet"),
  10860. default: true
  10861. },
  10862. {
  10863. name: "Macro",
  10864. height: math.unit(360, "feet")
  10865. },
  10866. {
  10867. name: "Megamacro",
  10868. height: math.unit(360, "miles")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(2.4, "meters"),
  10877. weight: math.unit(70, "kg"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/nyanuxk/front.svg",
  10881. extra: 1172 / 1084,
  10882. bottom: 0.065
  10883. }
  10884. },
  10885. side: {
  10886. height: math.unit(2.4, "meters"),
  10887. weight: math.unit(70, "kg"),
  10888. name: "Side",
  10889. image: {
  10890. source: "./media/characters/nyanuxk/side.svg",
  10891. extra: 1190 / 1132,
  10892. bottom: 0.007
  10893. }
  10894. },
  10895. back: {
  10896. height: math.unit(2.4, "meters"),
  10897. weight: math.unit(70, "kg"),
  10898. name: "Back",
  10899. image: {
  10900. source: "./media/characters/nyanuxk/back.svg",
  10901. extra: 1200 / 1141,
  10902. bottom: 0.015
  10903. }
  10904. },
  10905. foot: {
  10906. height: math.unit(0.52, "meters"),
  10907. name: "Foot",
  10908. image: {
  10909. source: "./media/characters/nyanuxk/foot.svg"
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Micro",
  10916. height: math.unit(2, "cm")
  10917. },
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(2.4, "meters"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Smaller Macro",
  10925. height: math.unit(120, "meters")
  10926. },
  10927. {
  10928. name: "Bigger Macro",
  10929. height: math.unit(1.2, "km")
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(15, "kilometers")
  10934. },
  10935. {
  10936. name: "Gigamacro",
  10937. height: math.unit(2000, "km")
  10938. },
  10939. {
  10940. name: "Teramacro",
  10941. height: math.unit(500000, "km")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10947. {
  10948. side: {
  10949. height: math.unit(6, "feet"),
  10950. name: "Side",
  10951. image: {
  10952. source: "./media/characters/ailbhe/side.svg",
  10953. extra: 757 / 464,
  10954. bottom: 0.041
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(1.07, "meters"),
  10962. default: true
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(6, "feet"),
  10971. weight: math.unit(120, "kg"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/zevulfius/front.svg",
  10975. extra: 965 / 903
  10976. }
  10977. },
  10978. side: {
  10979. height: math.unit(6, "feet"),
  10980. weight: math.unit(120, "kg"),
  10981. name: "Side",
  10982. image: {
  10983. source: "./media/characters/zevulfius/side.svg",
  10984. extra: 939 / 900
  10985. }
  10986. },
  10987. back: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(120, "kg"),
  10990. name: "Back",
  10991. image: {
  10992. source: "./media/characters/zevulfius/back.svg",
  10993. extra: 918 / 854,
  10994. bottom: 0.005
  10995. }
  10996. },
  10997. foot: {
  10998. height: math.unit(6 / 3.72, "feet"),
  10999. name: "Foot",
  11000. image: {
  11001. source: "./media/characters/zevulfius/foot.svg"
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(750, "meters")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(20, "km"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Gigamacro",
  11017. height: math.unit(2000, "km")
  11018. },
  11019. {
  11020. name: "Teramacro",
  11021. height: math.unit(250000, "km")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(100, "feet"),
  11030. weight: math.unit(350, "kg"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/rikes/front.svg",
  11034. extra: 1565 / 1483,
  11035. bottom: 0.017
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Macro",
  11042. height: math.unit(100, "feet"),
  11043. default: true
  11044. },
  11045. ]
  11046. ))
  11047. characterMakers.push(() => makeCharacter(
  11048. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11049. {
  11050. front: {
  11051. height: math.unit(8, "feet"),
  11052. weight: math.unit(356, "lb"),
  11053. name: "Front",
  11054. image: {
  11055. source: "./media/characters/adam-silver-mane/front.svg",
  11056. extra: 1036/937,
  11057. bottom: 63/1099
  11058. }
  11059. },
  11060. side: {
  11061. height: math.unit(8, "feet"),
  11062. weight: math.unit(356, "lb"),
  11063. name: "Side",
  11064. image: {
  11065. source: "./media/characters/adam-silver-mane/side.svg",
  11066. extra: 997/901,
  11067. bottom: 59/1056
  11068. }
  11069. },
  11070. frontNsfw: {
  11071. height: math.unit(8, "feet"),
  11072. weight: math.unit(356, "lb"),
  11073. name: "Front (NSFW)",
  11074. image: {
  11075. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11076. extra: 1036/937,
  11077. bottom: 63/1099
  11078. }
  11079. },
  11080. sideNsfw: {
  11081. height: math.unit(8, "feet"),
  11082. weight: math.unit(356, "lb"),
  11083. name: "Side (NSFW)",
  11084. image: {
  11085. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11086. extra: 997/901,
  11087. bottom: 59/1056
  11088. }
  11089. },
  11090. dick: {
  11091. height: math.unit(2.1, "feet"),
  11092. name: "Dick",
  11093. image: {
  11094. source: "./media/characters/adam-silver-mane/dick.svg"
  11095. }
  11096. },
  11097. taur: {
  11098. height: math.unit(16, "feet"),
  11099. weight: math.unit(1500, "kg"),
  11100. name: "Taur",
  11101. image: {
  11102. source: "./media/characters/adam-silver-mane/taur.svg",
  11103. extra: 1713 / 1571,
  11104. bottom: 0.01
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(8, "feet")
  11112. },
  11113. {
  11114. name: "Minimacro",
  11115. height: math.unit(80, "feet")
  11116. },
  11117. {
  11118. name: "MDA",
  11119. height: math.unit(80, "meters")
  11120. },
  11121. {
  11122. name: "Macro",
  11123. height: math.unit(800, "feet"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Megamacro",
  11128. height: math.unit(8000, "feet")
  11129. },
  11130. {
  11131. name: "Gigamacro",
  11132. height: math.unit(800, "miles")
  11133. },
  11134. {
  11135. name: "Teramacro",
  11136. height: math.unit(80000, "miles")
  11137. },
  11138. {
  11139. name: "Celestial",
  11140. height: math.unit(8e6, "miles")
  11141. },
  11142. {
  11143. name: "Star Dragon",
  11144. height: math.unit(800000, "parsecs")
  11145. },
  11146. {
  11147. name: "Godly",
  11148. height: math.unit(800, "teraparsecs")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/ky'owin/front.svg",
  11161. extra: 3888 / 3068,
  11162. bottom: 0.015
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(6 + 8 / 12, "feet")
  11170. },
  11171. {
  11172. name: "Large",
  11173. height: math.unit(68, "feet")
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(132, "feet")
  11178. },
  11179. {
  11180. name: "Macro+",
  11181. height: math.unit(340, "feet")
  11182. },
  11183. {
  11184. name: "Macro++",
  11185. height: math.unit(680, "feet"),
  11186. default: true
  11187. },
  11188. {
  11189. name: "Megamacro",
  11190. height: math.unit(1, "mile")
  11191. },
  11192. {
  11193. name: "Megamacro+",
  11194. height: math.unit(10, "miles")
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11200. {
  11201. front: {
  11202. height: math.unit(4, "feet"),
  11203. weight: math.unit(50, "lb"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/mal/front.svg",
  11207. extra: 785 / 724,
  11208. bottom: 0.07
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Micro",
  11215. height: math.unit(4, "inches")
  11216. },
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(4, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(200, "feet")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(6, "feet"),
  11233. weight: math.unit(150, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/jordan-deware/front.svg",
  11237. extra: 1191 / 1012
  11238. }
  11239. },
  11240. },
  11241. [
  11242. {
  11243. name: "Nano",
  11244. height: math.unit(0.01, "mm")
  11245. },
  11246. {
  11247. name: "Minimicro",
  11248. height: math.unit(1, "mm")
  11249. },
  11250. {
  11251. name: "Micro",
  11252. height: math.unit(0.5, "inches")
  11253. },
  11254. {
  11255. name: "Normal",
  11256. height: math.unit(4, "feet"),
  11257. default: true
  11258. },
  11259. {
  11260. name: "Minimacro",
  11261. height: math.unit(40, "meters")
  11262. },
  11263. {
  11264. name: "Small Macro",
  11265. height: math.unit(400, "meters")
  11266. },
  11267. {
  11268. name: "Macro",
  11269. height: math.unit(4, "miles")
  11270. },
  11271. {
  11272. name: "Megamacro",
  11273. height: math.unit(40, "miles")
  11274. },
  11275. {
  11276. name: "Megamacro+",
  11277. height: math.unit(400, "miles")
  11278. },
  11279. {
  11280. name: "Gigamacro",
  11281. height: math.unit(400000, "miles")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11287. {
  11288. side: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(150, "lb"),
  11291. name: "Side",
  11292. image: {
  11293. source: "./media/characters/kimiko/side.svg",
  11294. extra: 600 / 358
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(15, "feet"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(220, "feet")
  11307. },
  11308. {
  11309. name: "Macro+",
  11310. height: math.unit(1450, "feet")
  11311. },
  11312. {
  11313. name: "Megamacro",
  11314. height: math.unit(11500, "feet")
  11315. },
  11316. {
  11317. name: "Gigamacro",
  11318. height: math.unit(9500, "miles")
  11319. },
  11320. {
  11321. name: "Teramacro",
  11322. height: math.unit(2208005005, "miles")
  11323. },
  11324. {
  11325. name: "Examacro",
  11326. height: math.unit(2750, "parsecs")
  11327. },
  11328. {
  11329. name: "Zettamacro",
  11330. height: math.unit(101500, "parsecs")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(6, "feet"),
  11339. weight: math.unit(70, "kg"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/andrew-sleepy/front.svg"
  11343. }
  11344. },
  11345. side: {
  11346. height: math.unit(6, "feet"),
  11347. weight: math.unit(70, "kg"),
  11348. name: "Side",
  11349. image: {
  11350. source: "./media/characters/andrew-sleepy/side.svg"
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Micro",
  11357. height: math.unit(1, "mm"),
  11358. default: true
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11364. {
  11365. front: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/judio/front.svg",
  11371. extra: 1258 / 1110
  11372. }
  11373. },
  11374. },
  11375. [
  11376. {
  11377. name: "Normal",
  11378. height: math.unit(5 + 6 / 12, "feet")
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(1000, "feet"),
  11383. default: true
  11384. },
  11385. {
  11386. name: "Megamacro",
  11387. height: math.unit(10, "miles")
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11393. {
  11394. frontDressed: {
  11395. height: math.unit(6, "feet"),
  11396. weight: math.unit(68, "kg"),
  11397. name: "Front (Dressed)",
  11398. image: {
  11399. source: "./media/characters/nomaxice/front-dressed.svg",
  11400. extra: 1137/824,
  11401. bottom: 74/1211
  11402. }
  11403. },
  11404. frontShorts: {
  11405. height: math.unit(6, "feet"),
  11406. weight: math.unit(68, "kg"),
  11407. name: "Front (Shorts)",
  11408. image: {
  11409. source: "./media/characters/nomaxice/front-shorts.svg",
  11410. extra: 1137/824,
  11411. bottom: 74/1211
  11412. }
  11413. },
  11414. back: {
  11415. height: math.unit(6, "feet"),
  11416. weight: math.unit(68, "kg"),
  11417. name: "Back",
  11418. image: {
  11419. source: "./media/characters/nomaxice/back.svg",
  11420. extra: 822/786,
  11421. bottom: 39/861
  11422. }
  11423. },
  11424. hand: {
  11425. height: math.unit(0.565, "feet"),
  11426. name: "Hand",
  11427. image: {
  11428. source: "./media/characters/nomaxice/hand.svg"
  11429. }
  11430. },
  11431. foot: {
  11432. height: math.unit(1, "feet"),
  11433. name: "Foot",
  11434. image: {
  11435. source: "./media/characters/nomaxice/foot.svg"
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Micro",
  11442. height: math.unit(8, "cm")
  11443. },
  11444. {
  11445. name: "Norm",
  11446. height: math.unit(1.82, "m")
  11447. },
  11448. {
  11449. name: "Norm+",
  11450. height: math.unit(8.8, "feet"),
  11451. default: true
  11452. },
  11453. {
  11454. name: "Big",
  11455. height: math.unit(8, "meters")
  11456. },
  11457. {
  11458. name: "Macro",
  11459. height: math.unit(18, "meters")
  11460. },
  11461. {
  11462. name: "Macro+",
  11463. height: math.unit(88, "meters")
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(12, "feet"),
  11472. weight: math.unit(1.5, "tons"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/dydros/front.svg",
  11476. extra: 863 / 800,
  11477. bottom: 0.015
  11478. }
  11479. },
  11480. back: {
  11481. height: math.unit(12, "feet"),
  11482. weight: math.unit(1.5, "tons"),
  11483. name: "Back",
  11484. image: {
  11485. source: "./media/characters/dydros/back.svg",
  11486. extra: 900 / 843,
  11487. bottom: 0.005
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Normal",
  11494. height: math.unit(12, "feet"),
  11495. default: true
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(6, "feet"),
  11504. weight: math.unit(100, "kg"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/riggi/front.svg",
  11508. extra: 5787 / 5303
  11509. }
  11510. },
  11511. hyper: {
  11512. height: math.unit(6 * 5 / 3, "feet"),
  11513. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11514. name: "Hyper",
  11515. image: {
  11516. source: "./media/characters/riggi/hyper.svg",
  11517. extra: 3595 / 3485
  11518. }
  11519. },
  11520. },
  11521. [
  11522. {
  11523. name: "Small Macro",
  11524. height: math.unit(50, "feet")
  11525. },
  11526. {
  11527. name: "Default",
  11528. height: math.unit(200, "feet"),
  11529. default: true
  11530. },
  11531. {
  11532. name: "Loom",
  11533. height: math.unit(10000, "feet")
  11534. },
  11535. {
  11536. name: "Cruising Altitude",
  11537. height: math.unit(30000, "feet")
  11538. },
  11539. {
  11540. name: "Megamacro",
  11541. height: math.unit(100, "miles")
  11542. },
  11543. {
  11544. name: "Continent Sized",
  11545. height: math.unit(2800, "miles")
  11546. },
  11547. {
  11548. name: "Earth Sized",
  11549. height: math.unit(8000, "miles")
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11555. {
  11556. front: {
  11557. height: math.unit(6, "feet"),
  11558. weight: math.unit(250, "lb"),
  11559. name: "Front",
  11560. image: {
  11561. source: "./media/characters/alexi/front.svg",
  11562. extra: 3483 / 3291,
  11563. bottom: 0.04
  11564. }
  11565. },
  11566. back: {
  11567. height: math.unit(6, "feet"),
  11568. weight: math.unit(250, "lb"),
  11569. name: "Back",
  11570. image: {
  11571. source: "./media/characters/alexi/back.svg",
  11572. extra: 3533 / 3356,
  11573. bottom: 0.021
  11574. }
  11575. },
  11576. frontTransforming: {
  11577. height: math.unit(8.58, "feet"),
  11578. weight: math.unit(1300, "lb"),
  11579. name: "Transforming",
  11580. image: {
  11581. source: "./media/characters/alexi/front-transforming.svg",
  11582. extra: 437 / 409,
  11583. bottom: 19 / 458.66
  11584. }
  11585. },
  11586. frontTransformed: {
  11587. height: math.unit(12.5, "feet"),
  11588. weight: math.unit(4000, "lb"),
  11589. name: "Transformed",
  11590. image: {
  11591. source: "./media/characters/alexi/front-transformed.svg",
  11592. extra: 639 / 614,
  11593. bottom: 30.55 / 671
  11594. }
  11595. },
  11596. },
  11597. [
  11598. {
  11599. name: "Normal",
  11600. height: math.unit(14, "feet"),
  11601. default: true
  11602. },
  11603. {
  11604. name: "Minimacro",
  11605. height: math.unit(30, "meters")
  11606. },
  11607. {
  11608. name: "Macro",
  11609. height: math.unit(500, "meters")
  11610. },
  11611. {
  11612. name: "Megamacro",
  11613. height: math.unit(9000, "km")
  11614. },
  11615. {
  11616. name: "Teramacro",
  11617. height: math.unit(384000, "km")
  11618. },
  11619. ]
  11620. ))
  11621. characterMakers.push(() => makeCharacter(
  11622. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11623. {
  11624. front: {
  11625. height: math.unit(6, "feet"),
  11626. weight: math.unit(150, "lb"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/kayroo/front.svg",
  11630. extra: 1153 / 1038,
  11631. bottom: 0.06
  11632. }
  11633. },
  11634. foot: {
  11635. height: math.unit(6, "feet"),
  11636. weight: math.unit(150, "lb"),
  11637. name: "Foot",
  11638. image: {
  11639. source: "./media/characters/kayroo/foot.svg"
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(8, "feet"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Minimacro",
  11651. height: math.unit(250, "feet")
  11652. },
  11653. {
  11654. name: "Macro",
  11655. height: math.unit(2800, "feet")
  11656. },
  11657. {
  11658. name: "Megamacro",
  11659. height: math.unit(5200, "feet")
  11660. },
  11661. {
  11662. name: "Gigamacro",
  11663. height: math.unit(27000, "feet")
  11664. },
  11665. {
  11666. name: "Omega",
  11667. height: math.unit(45000, "feet")
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(18, "feet"),
  11676. weight: math.unit(5800, "lb"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/rhys/front.svg",
  11680. extra: 3386 / 3090,
  11681. bottom: 0.07
  11682. }
  11683. },
  11684. },
  11685. [
  11686. {
  11687. name: "Normal",
  11688. height: math.unit(18, "feet"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Working Size",
  11693. height: math.unit(200, "feet")
  11694. },
  11695. {
  11696. name: "Demolition Size",
  11697. height: math.unit(2000, "feet")
  11698. },
  11699. {
  11700. name: "Maximum Licensed Size",
  11701. height: math.unit(5, "miles")
  11702. },
  11703. {
  11704. name: "Maximum Observed Size",
  11705. height: math.unit(10, "yottameters")
  11706. },
  11707. ]
  11708. ))
  11709. characterMakers.push(() => makeCharacter(
  11710. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11711. {
  11712. front: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(250, "lb"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/toto/front.svg",
  11718. extra: 527 / 479,
  11719. bottom: 0.05
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Micro",
  11726. height: math.unit(3, "feet")
  11727. },
  11728. {
  11729. name: "Normal",
  11730. height: math.unit(10, "feet")
  11731. },
  11732. {
  11733. name: "Macro",
  11734. height: math.unit(150, "feet"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Megamacro",
  11739. height: math.unit(1200, "feet")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "King", species: ["lion"], tags: ["anthro"] },
  11745. {
  11746. back: {
  11747. height: math.unit(6, "feet"),
  11748. weight: math.unit(150, "lb"),
  11749. name: "Back",
  11750. image: {
  11751. source: "./media/characters/king/back.svg"
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Micro",
  11758. height: math.unit(2, "inches")
  11759. },
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(8, "feet")
  11763. },
  11764. {
  11765. name: "Macro",
  11766. height: math.unit(200, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Megamacro",
  11771. height: math.unit(50, "miles")
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11777. {
  11778. front: {
  11779. height: math.unit(11, "feet"),
  11780. weight: math.unit(1400, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/cordite/front.svg",
  11784. extra: 1919/1827,
  11785. bottom: 40/1959
  11786. }
  11787. },
  11788. side: {
  11789. height: math.unit(11, "feet"),
  11790. weight: math.unit(1400, "lb"),
  11791. name: "Side",
  11792. image: {
  11793. source: "./media/characters/cordite/side.svg",
  11794. extra: 1908/1793,
  11795. bottom: 38/1946
  11796. }
  11797. },
  11798. back: {
  11799. height: math.unit(11, "feet"),
  11800. weight: math.unit(1400, "lb"),
  11801. name: "Back",
  11802. image: {
  11803. source: "./media/characters/cordite/back.svg",
  11804. extra: 1938/1837,
  11805. bottom: 10/1948
  11806. }
  11807. },
  11808. feral: {
  11809. height: math.unit(2, "feet"),
  11810. weight: math.unit(90, "lb"),
  11811. name: "Feral",
  11812. image: {
  11813. source: "./media/characters/cordite/feral.svg",
  11814. extra: 1260 / 755,
  11815. bottom: 0.05
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Normal",
  11822. height: math.unit(11, "feet"),
  11823. default: true
  11824. },
  11825. ]
  11826. ))
  11827. characterMakers.push(() => makeCharacter(
  11828. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11829. {
  11830. front: {
  11831. height: math.unit(6, "feet"),
  11832. weight: math.unit(150, "lb"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/pianostrong/front.svg",
  11836. extra: 6577 / 6254,
  11837. bottom: 0.02
  11838. }
  11839. },
  11840. side: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(150, "lb"),
  11843. name: "Side",
  11844. image: {
  11845. source: "./media/characters/pianostrong/side.svg",
  11846. extra: 6106 / 5730
  11847. }
  11848. },
  11849. back: {
  11850. height: math.unit(6, "feet"),
  11851. weight: math.unit(150, "lb"),
  11852. name: "Back",
  11853. image: {
  11854. source: "./media/characters/pianostrong/back.svg",
  11855. extra: 6085 / 5733,
  11856. bottom: 0.01
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(100, "feet")
  11864. },
  11865. {
  11866. name: "Macro+",
  11867. height: math.unit(300, "feet"),
  11868. default: true
  11869. },
  11870. {
  11871. name: "Macro++",
  11872. height: math.unit(1000, "feet")
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11878. {
  11879. front: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(150, "lb"),
  11882. name: "Front",
  11883. image: {
  11884. source: "./media/characters/kona/front.svg",
  11885. extra: 2960 / 2629,
  11886. bottom: 0.005
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Normal",
  11893. height: math.unit(11 + 8 / 12, "feet")
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(850, "feet"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Macro+",
  11902. height: math.unit(1.5, "km"),
  11903. default: true
  11904. },
  11905. {
  11906. name: "Megamacro",
  11907. height: math.unit(80, "miles")
  11908. },
  11909. {
  11910. name: "Gigamacro",
  11911. height: math.unit(3500, "miles")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11917. {
  11918. side: {
  11919. height: math.unit(1.9, "meters"),
  11920. weight: math.unit(326, "kg"),
  11921. name: "Side",
  11922. image: {
  11923. source: "./media/characters/levi/side.svg",
  11924. extra: 1704 / 1334,
  11925. bottom: 0.02
  11926. }
  11927. },
  11928. },
  11929. [
  11930. {
  11931. name: "Normal",
  11932. height: math.unit(1.9, "meters"),
  11933. default: true
  11934. },
  11935. {
  11936. name: "Macro",
  11937. height: math.unit(20, "meters")
  11938. },
  11939. {
  11940. name: "Macro+",
  11941. height: math.unit(200, "meters")
  11942. },
  11943. {
  11944. name: "Megamacro",
  11945. height: math.unit(2, "km")
  11946. },
  11947. {
  11948. name: "Megamacro+",
  11949. height: math.unit(20, "km")
  11950. },
  11951. {
  11952. name: "Gigamacro",
  11953. height: math.unit(2500, "km")
  11954. },
  11955. {
  11956. name: "Gigamacro+",
  11957. height: math.unit(120000, "km")
  11958. },
  11959. {
  11960. name: "Teramacro",
  11961. height: math.unit(7.77e6, "km")
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11967. {
  11968. front: {
  11969. height: math.unit(6 + 4/12, "feet"),
  11970. weight: math.unit(190, "lb"),
  11971. name: "Front",
  11972. image: {
  11973. source: "./media/characters/bmc/front.svg",
  11974. extra: 1626/1472,
  11975. bottom: 79/1705
  11976. }
  11977. },
  11978. back: {
  11979. height: math.unit(6 + 4/12, "feet"),
  11980. weight: math.unit(190, "lb"),
  11981. name: "Back",
  11982. image: {
  11983. source: "./media/characters/bmc/back.svg",
  11984. extra: 1640/1479,
  11985. bottom: 45/1685
  11986. }
  11987. },
  11988. frontArmor: {
  11989. height: math.unit(6 + 4/12, "feet"),
  11990. weight: math.unit(190, "lb"),
  11991. name: "Front-armor",
  11992. image: {
  11993. source: "./media/characters/bmc/front-armor.svg",
  11994. extra: 1538/1468,
  11995. bottom: 79/1617
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Human-sized",
  12002. height: math.unit(6 + 4 / 12, "feet")
  12003. },
  12004. {
  12005. name: "Interactive Size",
  12006. height: math.unit(25, "feet")
  12007. },
  12008. {
  12009. name: "Small",
  12010. height: math.unit(250, "feet")
  12011. },
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(1250, "feet"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Good Day",
  12019. height: math.unit(88, "miles")
  12020. },
  12021. {
  12022. name: "Largest Measured Size",
  12023. height: math.unit(105.960, "galaxies")
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(20, "feet"),
  12032. weight: math.unit(2016, "kg"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/sven-the-kaiju/front.svg",
  12036. extra: 1277/1250,
  12037. bottom: 35/1312
  12038. }
  12039. },
  12040. mouth: {
  12041. height: math.unit(1.85, "feet"),
  12042. name: "Mouth",
  12043. image: {
  12044. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Fairy",
  12051. height: math.unit(6, "inches")
  12052. },
  12053. {
  12054. name: "Normal",
  12055. height: math.unit(20, "feet"),
  12056. default: true
  12057. },
  12058. {
  12059. name: "Rampage",
  12060. height: math.unit(200, "feet")
  12061. },
  12062. {
  12063. name: "Archfey Forest Guardian",
  12064. height: math.unit(1, "mile")
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(4, "meters"),
  12073. weight: math.unit(2, "tons"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/marik/front.svg",
  12077. extra: 1057 / 1003,
  12078. bottom: 0.08
  12079. }
  12080. },
  12081. },
  12082. [
  12083. {
  12084. name: "Normal",
  12085. height: math.unit(4, "meters"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Macro",
  12090. height: math.unit(20, "meters")
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(50, "km")
  12095. },
  12096. {
  12097. name: "Gigamacro",
  12098. height: math.unit(100, "km")
  12099. },
  12100. {
  12101. name: "Alpha Macro",
  12102. height: math.unit(7.88e7, "yottameters")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(110, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/mel/front.svg",
  12115. extra: 736 / 617,
  12116. bottom: 0.017
  12117. }
  12118. },
  12119. },
  12120. [
  12121. {
  12122. name: "Pico",
  12123. height: math.unit(3, "pm")
  12124. },
  12125. {
  12126. name: "Nano",
  12127. height: math.unit(3, "nm")
  12128. },
  12129. {
  12130. name: "Micro",
  12131. height: math.unit(0.3, "mm"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Micro+",
  12136. height: math.unit(3, "mm")
  12137. },
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(5 + 10.5 / 12, "feet")
  12141. },
  12142. ]
  12143. ))
  12144. characterMakers.push(() => makeCharacter(
  12145. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12146. {
  12147. kaiju: {
  12148. height: math.unit(1.75, "meters"),
  12149. weight: math.unit(55, "kg"),
  12150. name: "Kaiju",
  12151. image: {
  12152. source: "./media/characters/lykonous/kaiju.svg",
  12153. extra: 1055 / 946,
  12154. bottom: 0.135
  12155. }
  12156. },
  12157. },
  12158. [
  12159. {
  12160. name: "Normal",
  12161. height: math.unit(2.5, "meters"),
  12162. default: true
  12163. },
  12164. {
  12165. name: "Kaiju Dragon",
  12166. height: math.unit(60, "meters")
  12167. },
  12168. {
  12169. name: "Mega Kaiju",
  12170. height: math.unit(120, "km")
  12171. },
  12172. {
  12173. name: "Giga Kaiju",
  12174. height: math.unit(200, "megameters")
  12175. },
  12176. {
  12177. name: "Terra Kaiju",
  12178. height: math.unit(400, "gigameters")
  12179. },
  12180. {
  12181. name: "Kaiju Dragon God",
  12182. height: math.unit(13000, "exaparsecs")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(150, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/blü/front.svg",
  12195. extra: 1883 / 1564,
  12196. bottom: 0.031
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(13, "feet"),
  12204. default: true
  12205. },
  12206. {
  12207. name: "Big Boi",
  12208. height: math.unit(150, "meters")
  12209. },
  12210. {
  12211. name: "Mini Stomper",
  12212. height: math.unit(300, "meters")
  12213. },
  12214. {
  12215. name: "Macro",
  12216. height: math.unit(1000, "meters")
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(11000, "meters")
  12221. },
  12222. {
  12223. name: "Gigamacro",
  12224. height: math.unit(11000, "km")
  12225. },
  12226. {
  12227. name: "Teramacro",
  12228. height: math.unit(420000, "km")
  12229. },
  12230. {
  12231. name: "Examacro",
  12232. height: math.unit(120, "parsecs")
  12233. },
  12234. {
  12235. name: "God Tho",
  12236. height: math.unit(98000000000, "parsecs")
  12237. },
  12238. ]
  12239. ))
  12240. characterMakers.push(() => makeCharacter(
  12241. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12242. {
  12243. taurFront: {
  12244. height: math.unit(6, "feet"),
  12245. weight: math.unit(200, "lb"),
  12246. name: "Taur (Front)",
  12247. image: {
  12248. source: "./media/characters/scales/taur-front.svg",
  12249. extra: 1,
  12250. bottom: 0.05
  12251. }
  12252. },
  12253. taurBack: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(200, "lb"),
  12256. name: "Taur (Back)",
  12257. image: {
  12258. source: "./media/characters/scales/taur-back.svg",
  12259. extra: 1,
  12260. bottom: 0.08
  12261. }
  12262. },
  12263. anthro: {
  12264. height: math.unit(6 * 7 / 12, "feet"),
  12265. weight: math.unit(100, "lb"),
  12266. name: "Anthro",
  12267. image: {
  12268. source: "./media/characters/scales/anthro.svg",
  12269. extra: 1,
  12270. bottom: 0.06
  12271. }
  12272. },
  12273. },
  12274. [
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(12, "feet"),
  12278. default: true
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(6, "feet"),
  12287. weight: math.unit(150, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/koragos/front.svg",
  12291. extra: 841 / 794,
  12292. bottom: 0.035
  12293. }
  12294. },
  12295. back: {
  12296. height: math.unit(6, "feet"),
  12297. weight: math.unit(150, "lb"),
  12298. name: "Back",
  12299. image: {
  12300. source: "./media/characters/koragos/back.svg",
  12301. extra: 841 / 810,
  12302. bottom: 0.022
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Normal",
  12309. height: math.unit(6 + 11 / 12, "feet"),
  12310. default: true
  12311. },
  12312. {
  12313. name: "Macro",
  12314. height: math.unit(490, "feet")
  12315. },
  12316. {
  12317. name: "Megamacro",
  12318. height: math.unit(10, "miles")
  12319. },
  12320. {
  12321. name: "Gigamacro",
  12322. height: math.unit(50, "miles")
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12328. {
  12329. front: {
  12330. height: math.unit(6, "feet"),
  12331. weight: math.unit(250, "lb"),
  12332. name: "Front",
  12333. image: {
  12334. source: "./media/characters/xylrem/front.svg",
  12335. extra: 3323 / 3050,
  12336. bottom: 0.065
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Micro",
  12343. height: math.unit(4, "feet")
  12344. },
  12345. {
  12346. name: "Normal",
  12347. height: math.unit(16, "feet"),
  12348. default: true
  12349. },
  12350. {
  12351. name: "Macro",
  12352. height: math.unit(2720, "feet")
  12353. },
  12354. {
  12355. name: "Megamacro",
  12356. height: math.unit(25000, "miles")
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(8, "feet"),
  12365. weight: math.unit(250, "kg"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/ikideru/front.svg",
  12369. extra: 930 / 870,
  12370. bottom: 0.087
  12371. }
  12372. },
  12373. back: {
  12374. height: math.unit(8, "feet"),
  12375. weight: math.unit(250, "kg"),
  12376. name: "Back",
  12377. image: {
  12378. source: "./media/characters/ikideru/back.svg",
  12379. extra: 919 / 852,
  12380. bottom: 0.055
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Rare",
  12387. height: math.unit(8, "feet"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Playful Loom",
  12392. height: math.unit(80, "feet")
  12393. },
  12394. {
  12395. name: "City Leaner",
  12396. height: math.unit(230, "feet")
  12397. },
  12398. {
  12399. name: "Megamacro",
  12400. height: math.unit(2500, "feet")
  12401. },
  12402. {
  12403. name: "Gigamacro",
  12404. height: math.unit(26400, "feet")
  12405. },
  12406. {
  12407. name: "Tectonic Shifter",
  12408. height: math.unit(1.7, "megameters")
  12409. },
  12410. {
  12411. name: "Planet Carer",
  12412. height: math.unit(21, "megameters")
  12413. },
  12414. {
  12415. name: "God",
  12416. height: math.unit(11157.22, "parsecs")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(120, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/neo/front.svg"
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Micro",
  12435. height: math.unit(2, "inches"),
  12436. default: true
  12437. },
  12438. {
  12439. name: "Human Size",
  12440. height: math.unit(5 + 8 / 12, "feet")
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(13 + 10 / 12, "feet"),
  12449. weight: math.unit(5320, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/chauncey-chantz/front.svg",
  12453. extra: 1587 / 1435,
  12454. bottom: 0.02
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Normal",
  12461. height: math.unit(13 + 10 / 12, "feet"),
  12462. default: true
  12463. },
  12464. {
  12465. name: "Macro",
  12466. height: math.unit(45, "feet")
  12467. },
  12468. {
  12469. name: "Megamacro",
  12470. height: math.unit(250, "miles")
  12471. },
  12472. {
  12473. name: "Planetary",
  12474. height: math.unit(10000, "miles")
  12475. },
  12476. {
  12477. name: "Galactic",
  12478. height: math.unit(40000, "parsecs")
  12479. },
  12480. {
  12481. name: "Universal",
  12482. height: math.unit(1, "yottameter")
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12488. {
  12489. front: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(150, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/epifox/front.svg",
  12495. extra: 1,
  12496. bottom: 0.075
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Micro",
  12503. height: math.unit(6, "inches")
  12504. },
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(12, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Macro",
  12512. height: math.unit(3810, "feet")
  12513. },
  12514. {
  12515. name: "Megamacro",
  12516. height: math.unit(500, "miles")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(1.8796, "m"),
  12525. weight: math.unit(230, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/colin-t/front.svg",
  12529. extra: 1272 / 1193,
  12530. bottom: 0.07
  12531. }
  12532. },
  12533. },
  12534. [
  12535. {
  12536. name: "Micro",
  12537. height: math.unit(0.571, "meters")
  12538. },
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(1.8796, "meters"),
  12542. default: true
  12543. },
  12544. {
  12545. name: "Tall",
  12546. height: math.unit(4, "meters")
  12547. },
  12548. {
  12549. name: "Macro",
  12550. height: math.unit(67.241, "meters")
  12551. },
  12552. {
  12553. name: "Megamacro",
  12554. height: math.unit(371.856, "meters")
  12555. },
  12556. {
  12557. name: "Planetary",
  12558. height: math.unit(12631.5689, "km")
  12559. },
  12560. ]
  12561. ))
  12562. characterMakers.push(() => makeCharacter(
  12563. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12564. {
  12565. front: {
  12566. height: math.unit(1.85, "meters"),
  12567. weight: math.unit(80, "kg"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/matvei/front.svg",
  12571. extra: 614 / 594,
  12572. bottom: 0.01
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(1.85, "meters"),
  12580. default: true
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(5 + 9 / 12, "feet"),
  12589. weight: math.unit(70, "lb"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/quincy/front.svg",
  12593. extra: 3041 / 2751
  12594. }
  12595. },
  12596. back: {
  12597. height: math.unit(5 + 9 / 12, "feet"),
  12598. weight: math.unit(70, "lb"),
  12599. name: "Back",
  12600. image: {
  12601. source: "./media/characters/quincy/back.svg",
  12602. extra: 3041 / 2751
  12603. }
  12604. },
  12605. flying: {
  12606. height: math.unit(5 + 4 / 12, "feet"),
  12607. weight: math.unit(70, "lb"),
  12608. name: "Flying",
  12609. image: {
  12610. source: "./media/characters/quincy/flying.svg",
  12611. extra: 1044 / 930
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Micro",
  12618. height: math.unit(3, "cm")
  12619. },
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(5 + 9 / 12, "feet")
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(200, "meters"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Megamacro",
  12631. height: math.unit(1000, "meters")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(3 + 11/12, "feet"),
  12640. weight: math.unit(50, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/vanrel/front.svg",
  12644. extra: 1104/949,
  12645. bottom: 52/1156
  12646. }
  12647. },
  12648. back: {
  12649. height: math.unit(3 + 11/12, "feet"),
  12650. weight: math.unit(50, "lb"),
  12651. name: "Back",
  12652. image: {
  12653. source: "./media/characters/vanrel/back.svg",
  12654. extra: 1119/976,
  12655. bottom: 37/1156
  12656. }
  12657. },
  12658. tome: {
  12659. height: math.unit(1.35, "feet"),
  12660. weight: math.unit(10, "lb"),
  12661. name: "Vanrel's Tome",
  12662. rename: true,
  12663. image: {
  12664. source: "./media/characters/vanrel/tome.svg"
  12665. }
  12666. },
  12667. beans: {
  12668. height: math.unit(0.89, "feet"),
  12669. name: "Beans",
  12670. image: {
  12671. source: "./media/characters/vanrel/beans.svg"
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(3 + 11/12, "feet"),
  12679. default: true
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12685. {
  12686. front: {
  12687. height: math.unit(7 + 5 / 12, "feet"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/kuiper-vanrel/front.svg",
  12691. extra: 1219/1169,
  12692. bottom: 69/1288
  12693. }
  12694. },
  12695. back: {
  12696. height: math.unit(7 + 5 / 12, "feet"),
  12697. name: "Back",
  12698. image: {
  12699. source: "./media/characters/kuiper-vanrel/back.svg",
  12700. extra: 1236/1193,
  12701. bottom: 27/1263
  12702. }
  12703. },
  12704. foot: {
  12705. height: math.unit(0.55, "meters"),
  12706. name: "Foot",
  12707. image: {
  12708. source: "./media/characters/kuiper-vanrel/foot.svg",
  12709. }
  12710. },
  12711. battle: {
  12712. height: math.unit(6.824, "feet"),
  12713. name: "Battle",
  12714. image: {
  12715. source: "./media/characters/kuiper-vanrel/battle.svg",
  12716. extra: 1466 / 1327,
  12717. bottom: 29 / 1492.5
  12718. }
  12719. },
  12720. meerkui: {
  12721. height: math.unit(18, "inches"),
  12722. name: "Meerkui",
  12723. image: {
  12724. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12725. extra: 1354/1289,
  12726. bottom: 69/1423
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Normal",
  12733. height: math.unit(7 + 5 / 12, "feet"),
  12734. default: true
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(8 + 5 / 12, "feet"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/keset-vanrel/front.svg",
  12746. extra: 1231/1148,
  12747. bottom: 82/1313
  12748. }
  12749. },
  12750. back: {
  12751. height: math.unit(8 + 5 / 12, "feet"),
  12752. name: "Back",
  12753. image: {
  12754. source: "./media/characters/keset-vanrel/back.svg",
  12755. extra: 1240/1174,
  12756. bottom: 33/1273
  12757. }
  12758. },
  12759. hand: {
  12760. height: math.unit(0.6, "meters"),
  12761. name: "Hand",
  12762. image: {
  12763. source: "./media/characters/keset-vanrel/hand.svg"
  12764. }
  12765. },
  12766. foot: {
  12767. height: math.unit(0.94978, "meters"),
  12768. name: "Foot",
  12769. image: {
  12770. source: "./media/characters/keset-vanrel/foot.svg"
  12771. }
  12772. },
  12773. battle: {
  12774. height: math.unit(7.408, "feet"),
  12775. name: "Battle",
  12776. image: {
  12777. source: "./media/characters/keset-vanrel/battle.svg",
  12778. extra: 1890 / 1386,
  12779. bottom: 73.28 / 1970
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(8 + 5 / 12, "feet"),
  12787. default: true
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(150, "lb"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/neos/front.svg",
  12800. extra: 1696 / 992,
  12801. bottom: 0.14
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(54, "cm"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Macro",
  12813. height: math.unit(100, "m")
  12814. },
  12815. {
  12816. name: "Megamacro",
  12817. height: math.unit(10, "km")
  12818. },
  12819. {
  12820. name: "Megamacro+",
  12821. height: math.unit(100, "km")
  12822. },
  12823. {
  12824. name: "Gigamacro",
  12825. height: math.unit(100, "Mm")
  12826. },
  12827. {
  12828. name: "Teramacro",
  12829. height: math.unit(100, "Gm")
  12830. },
  12831. {
  12832. name: "Examacro",
  12833. height: math.unit(100, "Em")
  12834. },
  12835. {
  12836. name: "Godly",
  12837. height: math.unit(10000, "Ym")
  12838. },
  12839. {
  12840. name: "Beyond Godly",
  12841. height: math.unit(25, "multiverses")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12847. {
  12848. feminine: {
  12849. height: math.unit(5, "feet"),
  12850. weight: math.unit(100, "lb"),
  12851. name: "Feminine",
  12852. image: {
  12853. source: "./media/characters/sammy-mouse/feminine.svg",
  12854. extra: 2526 / 2425,
  12855. bottom: 0.123
  12856. }
  12857. },
  12858. masculine: {
  12859. height: math.unit(5, "feet"),
  12860. weight: math.unit(100, "lb"),
  12861. name: "Masculine",
  12862. image: {
  12863. source: "./media/characters/sammy-mouse/masculine.svg",
  12864. extra: 2526 / 2425,
  12865. bottom: 0.123
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Micro",
  12872. height: math.unit(5, "inches")
  12873. },
  12874. {
  12875. name: "Normal",
  12876. height: math.unit(5, "feet"),
  12877. default: true
  12878. },
  12879. {
  12880. name: "Macro",
  12881. height: math.unit(60, "feet")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(4, "feet"),
  12890. weight: math.unit(50, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/kole/front.svg",
  12894. extra: 1423 / 1303,
  12895. bottom: 0.025
  12896. }
  12897. },
  12898. back: {
  12899. height: math.unit(4, "feet"),
  12900. weight: math.unit(50, "lb"),
  12901. name: "Back",
  12902. image: {
  12903. source: "./media/characters/kole/back.svg",
  12904. extra: 1426 / 1280,
  12905. bottom: 0.02
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(4, "feet"),
  12913. default: true
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12919. {
  12920. front: {
  12921. height: math.unit(2.5, "feet"),
  12922. weight: math.unit(32, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/rufran/front.svg",
  12926. extra: 1313/885,
  12927. bottom: 94/1407
  12928. }
  12929. },
  12930. side: {
  12931. height: math.unit(2.5, "feet"),
  12932. weight: math.unit(32, "lb"),
  12933. name: "Side",
  12934. image: {
  12935. source: "./media/characters/rufran/side.svg",
  12936. extra: 1109/852,
  12937. bottom: 118/1227
  12938. }
  12939. },
  12940. back: {
  12941. height: math.unit(2.5, "feet"),
  12942. weight: math.unit(32, "lb"),
  12943. name: "Back",
  12944. image: {
  12945. source: "./media/characters/rufran/back.svg",
  12946. extra: 1280/878,
  12947. bottom: 131/1411
  12948. }
  12949. },
  12950. mouth: {
  12951. height: math.unit(1.13, "feet"),
  12952. name: "Mouth",
  12953. image: {
  12954. source: "./media/characters/rufran/mouth.svg"
  12955. }
  12956. },
  12957. foot: {
  12958. height: math.unit(1.33, "feet"),
  12959. name: "Foot",
  12960. image: {
  12961. source: "./media/characters/rufran/foot.svg"
  12962. }
  12963. },
  12964. koboldFront: {
  12965. height: math.unit(2 + 6 / 12, "feet"),
  12966. weight: math.unit(20, "lb"),
  12967. name: "Front (Kobold)",
  12968. image: {
  12969. source: "./media/characters/rufran/kobold-front.svg",
  12970. extra: 2041 / 1839,
  12971. bottom: 0.055
  12972. }
  12973. },
  12974. koboldBack: {
  12975. height: math.unit(2 + 6 / 12, "feet"),
  12976. weight: math.unit(20, "lb"),
  12977. name: "Back (Kobold)",
  12978. image: {
  12979. source: "./media/characters/rufran/kobold-back.svg",
  12980. extra: 2054 / 1839,
  12981. bottom: 0.01
  12982. }
  12983. },
  12984. koboldHand: {
  12985. height: math.unit(0.2166, "meters"),
  12986. name: "Hand (Kobold)",
  12987. image: {
  12988. source: "./media/characters/rufran/kobold-hand.svg"
  12989. }
  12990. },
  12991. koboldFoot: {
  12992. height: math.unit(0.185, "meters"),
  12993. name: "Foot (Kobold)",
  12994. image: {
  12995. source: "./media/characters/rufran/kobold-foot.svg"
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Micro",
  13002. height: math.unit(1, "inch")
  13003. },
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(2 + 6 / 12, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Big",
  13011. height: math.unit(60, "feet")
  13012. },
  13013. {
  13014. name: "Macro",
  13015. height: math.unit(325, "feet")
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13021. {
  13022. front: {
  13023. height: math.unit(0.3, "meters"),
  13024. weight: math.unit(3.5, "kg"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/chip/front.svg",
  13028. extra: 748 / 674
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Micro",
  13035. height: math.unit(1, "inch"),
  13036. default: true
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13042. {
  13043. side: {
  13044. height: math.unit(2.3, "meters"),
  13045. weight: math.unit(3500, "lb"),
  13046. name: "Side",
  13047. image: {
  13048. source: "./media/characters/torvid/side.svg",
  13049. extra: 1972 / 722,
  13050. bottom: 0.035
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(2.3, "meters"),
  13058. default: true
  13059. },
  13060. ]
  13061. ))
  13062. characterMakers.push(() => makeCharacter(
  13063. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13064. {
  13065. front: {
  13066. height: math.unit(2, "meters"),
  13067. weight: math.unit(150.5, "kg"),
  13068. name: "Front",
  13069. image: {
  13070. source: "./media/characters/susan/front.svg",
  13071. extra: 693 / 635,
  13072. bottom: 0.05
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Megamacro",
  13079. height: math.unit(505, "miles"),
  13080. default: true
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(6, "feet"),
  13089. weight: math.unit(150, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/raindrops/front.svg",
  13093. extra: 2655 / 2461,
  13094. bottom: 49 / 2705
  13095. }
  13096. },
  13097. back: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(150, "lb"),
  13100. name: "Back",
  13101. image: {
  13102. source: "./media/characters/raindrops/back.svg",
  13103. extra: 2574 / 2400,
  13104. bottom: 65 / 2634
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Micro",
  13111. height: math.unit(6, "inches")
  13112. },
  13113. {
  13114. name: "Normal",
  13115. height: math.unit(6 + 2 / 12, "feet")
  13116. },
  13117. {
  13118. name: "Macro",
  13119. height: math.unit(131, "feet"),
  13120. default: true
  13121. },
  13122. {
  13123. name: "Megamacro",
  13124. height: math.unit(15, "miles")
  13125. },
  13126. {
  13127. name: "Gigamacro",
  13128. height: math.unit(4000, "miles")
  13129. },
  13130. {
  13131. name: "Teramacro",
  13132. height: math.unit(315000, "miles")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(2.794, "meters"),
  13141. weight: math.unit(325, "kg"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/tezwa/front.svg",
  13145. extra: 2083 / 1906,
  13146. bottom: 0.031
  13147. }
  13148. },
  13149. foot: {
  13150. height: math.unit(0.687, "meters"),
  13151. name: "Foot",
  13152. image: {
  13153. source: "./media/characters/tezwa/foot.svg"
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Normal",
  13160. height: math.unit(9 + 2 / 12, "feet"),
  13161. default: true
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(58, "feet"),
  13170. weight: math.unit(89000, "lb"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/typhus/front.svg",
  13174. extra: 816 / 800,
  13175. bottom: 0.065
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Macro",
  13182. height: math.unit(58, "feet"),
  13183. default: true
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13189. {
  13190. front: {
  13191. height: math.unit(12, "feet"),
  13192. weight: math.unit(6, "tonnes"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/lyra-von-wulf/front.svg",
  13196. extra: 1,
  13197. bottom: 0.10
  13198. }
  13199. },
  13200. frontMecha: {
  13201. height: math.unit(12, "feet"),
  13202. weight: math.unit(12, "tonnes"),
  13203. name: "Front (Mecha)",
  13204. image: {
  13205. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13206. extra: 1,
  13207. bottom: 0.042
  13208. }
  13209. },
  13210. maw: {
  13211. height: math.unit(2.2, "feet"),
  13212. name: "Maw",
  13213. image: {
  13214. source: "./media/characters/lyra-von-wulf/maw.svg"
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Normal",
  13221. height: math.unit(12, "feet"),
  13222. default: true
  13223. },
  13224. {
  13225. name: "Classic",
  13226. height: math.unit(50, "feet")
  13227. },
  13228. {
  13229. name: "Macro",
  13230. height: math.unit(500, "feet")
  13231. },
  13232. {
  13233. name: "Megamacro",
  13234. height: math.unit(1, "mile")
  13235. },
  13236. {
  13237. name: "Gigamacro",
  13238. height: math.unit(400, "miles")
  13239. },
  13240. {
  13241. name: "Teramacro",
  13242. height: math.unit(22000, "miles")
  13243. },
  13244. {
  13245. name: "Solarmacro",
  13246. height: math.unit(8600000, "miles")
  13247. },
  13248. {
  13249. name: "Galactic",
  13250. height: math.unit(1057000, "lightyears")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6 + 10 / 12, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/dixon/front.svg",
  13263. extra: 3361 / 3209,
  13264. bottom: 0.01
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(6 + 10 / 12, "feet"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Big",
  13276. height: math.unit(12, "meters")
  13277. },
  13278. {
  13279. name: "Macro",
  13280. height: math.unit(500, "meters")
  13281. },
  13282. {
  13283. name: "Megamacro",
  13284. height: math.unit(2, "km")
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(185, "cm"),
  13293. weight: math.unit(68, "kg"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/kauko/front.svg",
  13297. extra: 1455 / 1421,
  13298. bottom: 0.03
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(185, "cm"),
  13303. weight: math.unit(68, "kg"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/kauko/back.svg",
  13307. extra: 1455 / 1421,
  13308. bottom: 0.004
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Normal",
  13315. height: math.unit(185, "cm"),
  13316. default: true
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(6, "feet"),
  13325. weight: math.unit(150, "kg"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/varg/front.svg",
  13329. extra: 1108 / 1018,
  13330. bottom: 0.0375
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Normal",
  13337. height: math.unit(5, "meters")
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(200, "meters")
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(20, "kilometers")
  13346. },
  13347. {
  13348. name: "True Size",
  13349. height: math.unit(211, "km"),
  13350. default: true
  13351. },
  13352. {
  13353. name: "Gigamacro",
  13354. height: math.unit(1000, "km")
  13355. },
  13356. {
  13357. name: "Gigamacro+",
  13358. height: math.unit(8000, "km")
  13359. },
  13360. {
  13361. name: "Teramacro",
  13362. height: math.unit(1000000, "km")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(7 + 7 / 12, "feet"),
  13371. weight: math.unit(267, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/dayza/front.svg",
  13375. extra: 1262 / 1200,
  13376. bottom: 0.035
  13377. }
  13378. },
  13379. side: {
  13380. height: math.unit(7 + 7 / 12, "feet"),
  13381. weight: math.unit(267, "lb"),
  13382. name: "Side",
  13383. image: {
  13384. source: "./media/characters/dayza/side.svg",
  13385. extra: 1295 / 1245,
  13386. bottom: 0.05
  13387. }
  13388. },
  13389. back: {
  13390. height: math.unit(7 + 7 / 12, "feet"),
  13391. weight: math.unit(267, "lb"),
  13392. name: "Back",
  13393. image: {
  13394. source: "./media/characters/dayza/back.svg",
  13395. extra: 1241 / 1170
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Normal",
  13402. height: math.unit(7 + 7 / 12, "feet"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Macro",
  13407. height: math.unit(155, "feet")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(6 + 5 / 12, "feet"),
  13416. weight: math.unit(160, "lb"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/xanthos/front.svg",
  13420. extra: 1,
  13421. bottom: 0.04
  13422. }
  13423. },
  13424. back: {
  13425. height: math.unit(6 + 5 / 12, "feet"),
  13426. weight: math.unit(160, "lb"),
  13427. name: "Back",
  13428. image: {
  13429. source: "./media/characters/xanthos/back.svg",
  13430. extra: 1,
  13431. bottom: 0.03
  13432. }
  13433. },
  13434. hand: {
  13435. height: math.unit(0.928, "feet"),
  13436. name: "Hand",
  13437. image: {
  13438. source: "./media/characters/xanthos/hand.svg"
  13439. }
  13440. },
  13441. foot: {
  13442. height: math.unit(1.286, "feet"),
  13443. name: "Foot",
  13444. image: {
  13445. source: "./media/characters/xanthos/foot.svg"
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(6 + 5 / 12, "feet"),
  13453. default: true
  13454. },
  13455. {
  13456. name: "Normal+",
  13457. height: math.unit(6, "meters")
  13458. },
  13459. {
  13460. name: "Macro",
  13461. height: math.unit(40, "feet")
  13462. },
  13463. {
  13464. name: "Macro+",
  13465. height: math.unit(200, "meters")
  13466. },
  13467. {
  13468. name: "Megamacro",
  13469. height: math.unit(20, "km")
  13470. },
  13471. {
  13472. name: "Megamacro+",
  13473. height: math.unit(100, "km")
  13474. },
  13475. {
  13476. name: "Gigamacro",
  13477. height: math.unit(200, "megameters")
  13478. },
  13479. {
  13480. name: "Gigamacro+",
  13481. height: math.unit(1.5, "gigameters")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(6 + 3 / 12, "feet"),
  13490. weight: math.unit(215, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/grynn/front.svg",
  13494. extra: 4627 / 4209,
  13495. bottom: 0.047
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Micro",
  13502. height: math.unit(6, "inches")
  13503. },
  13504. {
  13505. name: "Normal",
  13506. height: math.unit(6 + 3 / 12, "feet"),
  13507. default: true
  13508. },
  13509. {
  13510. name: "Big",
  13511. height: math.unit(104, "feet")
  13512. },
  13513. {
  13514. name: "Macro",
  13515. height: math.unit(944, "feet")
  13516. },
  13517. {
  13518. name: "Macro+",
  13519. height: math.unit(9480, "feet")
  13520. },
  13521. {
  13522. name: "Megamacro",
  13523. height: math.unit(78752, "feet")
  13524. },
  13525. {
  13526. name: "Megamacro+",
  13527. height: math.unit(630128, "feet")
  13528. },
  13529. {
  13530. name: "Megamacro++",
  13531. height: math.unit(3150695, "feet")
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13537. {
  13538. front: {
  13539. height: math.unit(7 + 5 / 12, "feet"),
  13540. weight: math.unit(450, "lb"),
  13541. name: "Front",
  13542. image: {
  13543. source: "./media/characters/mocha-aura/front.svg",
  13544. extra: 1907 / 1817,
  13545. bottom: 0.04
  13546. }
  13547. },
  13548. back: {
  13549. height: math.unit(7 + 5 / 12, "feet"),
  13550. weight: math.unit(450, "lb"),
  13551. name: "Back",
  13552. image: {
  13553. source: "./media/characters/mocha-aura/back.svg",
  13554. extra: 1900 / 1825,
  13555. bottom: 0.045
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Nano",
  13562. height: math.unit(1, "nm")
  13563. },
  13564. {
  13565. name: "Megamicro",
  13566. height: math.unit(1, "mm")
  13567. },
  13568. {
  13569. name: "Micro",
  13570. height: math.unit(3, "inches")
  13571. },
  13572. {
  13573. name: "Normal",
  13574. height: math.unit(7 + 5 / 12, "feet"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Macro",
  13579. height: math.unit(30, "feet")
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(3500, "feet")
  13584. },
  13585. {
  13586. name: "Teramacro",
  13587. height: math.unit(500000, "miles")
  13588. },
  13589. {
  13590. name: "Petamacro",
  13591. height: math.unit(50000000000000000, "parsecs")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13597. {
  13598. front: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(150, "lb"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/ilisha-devya/front.svg",
  13604. extra: 1053/1049,
  13605. bottom: 270/1323
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(150, "lb"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/ilisha-devya/back.svg",
  13614. extra: 1131/1128,
  13615. bottom: 39/1170
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Macro",
  13622. height: math.unit(500, "feet"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Megamacro",
  13627. height: math.unit(10, "miles")
  13628. },
  13629. {
  13630. name: "Gigamacro",
  13631. height: math.unit(100000, "miles")
  13632. },
  13633. {
  13634. name: "Examacro",
  13635. height: math.unit(1e9, "lightyears")
  13636. },
  13637. {
  13638. name: "Omniversal",
  13639. height: math.unit(1e33, "lightyears")
  13640. },
  13641. {
  13642. name: "Beyond Infinite",
  13643. height: math.unit(1e100, "lightyears")
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13649. {
  13650. Side: {
  13651. height: math.unit(6, "feet"),
  13652. weight: math.unit(150, "lb"),
  13653. name: "Side",
  13654. image: {
  13655. source: "./media/characters/mira/side.svg",
  13656. extra: 900 / 799,
  13657. bottom: 0.02
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Human Size",
  13664. height: math.unit(6, "feet")
  13665. },
  13666. {
  13667. name: "Macro",
  13668. height: math.unit(100, "feet"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Megamacro",
  13673. height: math.unit(10, "miles")
  13674. },
  13675. {
  13676. name: "Gigamacro",
  13677. height: math.unit(25000, "miles")
  13678. },
  13679. {
  13680. name: "Teramacro",
  13681. height: math.unit(300, "AU")
  13682. },
  13683. {
  13684. name: "Full Size",
  13685. height: math.unit(4.5e10, "lightyears")
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(150, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/holly/front.svg",
  13698. extra: 639 / 606
  13699. }
  13700. },
  13701. back: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(150, "lb"),
  13704. name: "Back",
  13705. image: {
  13706. source: "./media/characters/holly/back.svg",
  13707. extra: 623 / 598
  13708. }
  13709. },
  13710. frontWorking: {
  13711. height: math.unit(6, "feet"),
  13712. weight: math.unit(150, "lb"),
  13713. name: "Front (Working)",
  13714. image: {
  13715. source: "./media/characters/holly/front-working.svg",
  13716. extra: 607 / 577,
  13717. bottom: 0.048
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Normal",
  13724. height: math.unit(12 + 3 / 12, "feet"),
  13725. default: true
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/porter/front.svg",
  13738. extra: 1,
  13739. bottom: 0.01
  13740. }
  13741. },
  13742. frontRobes: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(150, "lb"),
  13745. name: "Front (Robes)",
  13746. image: {
  13747. source: "./media/characters/porter/front-robes.svg",
  13748. extra: 1.01,
  13749. bottom: 0.01
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Normal",
  13756. height: math.unit(11 + 9 / 12, "feet"),
  13757. default: true
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13763. {
  13764. legendary: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(150, "lb"),
  13767. name: "Legendary",
  13768. image: {
  13769. source: "./media/characters/lucy/legendary.svg",
  13770. extra: 1355 / 1100,
  13771. bottom: 0.045
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Legendary",
  13778. height: math.unit(86882 * 2, "miles"),
  13779. default: true
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(150, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/drusilla/front.svg",
  13792. extra: 678 / 635,
  13793. bottom: 0.03
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(6, "feet"),
  13798. weight: math.unit(150, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/drusilla/back.svg",
  13802. extra: 678 / 635,
  13803. bottom: 0.005
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Macro",
  13810. height: math.unit(100, "feet")
  13811. },
  13812. {
  13813. name: "Canon Height",
  13814. height: math.unit(2000, "feet"),
  13815. default: true
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(180, "lb"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/renard-thatch/front.svg",
  13828. extra: 2411 / 2275,
  13829. bottom: 0.01
  13830. }
  13831. },
  13832. frontPosing: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(180, "lb"),
  13835. name: "Front (Posing)",
  13836. image: {
  13837. source: "./media/characters/renard-thatch/front-posing.svg",
  13838. extra: 2381 / 2261,
  13839. bottom: 0.01
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(180, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/renard-thatch/back.svg",
  13848. extra: 2428 / 2288
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Micro",
  13855. height: math.unit(3, "inches")
  13856. },
  13857. {
  13858. name: "Default",
  13859. height: math.unit(6, "feet"),
  13860. default: true
  13861. },
  13862. {
  13863. name: "Macro",
  13864. height: math.unit(75, "feet")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(1450, "feet"),
  13873. weight: math.unit(1.21e6, "tons"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/sekvra/front.svg",
  13877. extra: 1193/1190,
  13878. bottom: 78/1271
  13879. }
  13880. },
  13881. side: {
  13882. height: math.unit(1450, "feet"),
  13883. weight: math.unit(1.21e6, "tons"),
  13884. name: "Side",
  13885. image: {
  13886. source: "./media/characters/sekvra/side.svg",
  13887. extra: 1193/1190,
  13888. bottom: 52/1245
  13889. }
  13890. },
  13891. back: {
  13892. height: math.unit(1450, "feet"),
  13893. weight: math.unit(1.21e6, "tons"),
  13894. name: "Back",
  13895. image: {
  13896. source: "./media/characters/sekvra/back.svg",
  13897. extra: 1219/1216,
  13898. bottom: 21/1240
  13899. }
  13900. },
  13901. frontClothed: {
  13902. height: math.unit(1450, "feet"),
  13903. weight: math.unit(1.21e6, "tons"),
  13904. name: "Front (Clothed)",
  13905. image: {
  13906. source: "./media/characters/sekvra/front-clothed.svg",
  13907. extra: 1192/1189,
  13908. bottom: 79/1271
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Macro",
  13915. height: math.unit(1450, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Megamacro",
  13920. height: math.unit(15000, "feet")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/carmine/front.svg",
  13933. extra: 1,
  13934. bottom: 0.035
  13935. }
  13936. },
  13937. frontArmor: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Front (Armor)",
  13941. image: {
  13942. source: "./media/characters/carmine/front-armor.svg",
  13943. extra: 1,
  13944. bottom: 0.035
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Large",
  13951. height: math.unit(1, "mile")
  13952. },
  13953. {
  13954. name: "Huge",
  13955. height: math.unit(40, "miles"),
  13956. default: true
  13957. },
  13958. {
  13959. name: "Colossal",
  13960. height: math.unit(2500, "miles")
  13961. },
  13962. ]
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13966. {
  13967. front: {
  13968. height: math.unit(6, "feet"),
  13969. weight: math.unit(150, "lb"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/elyssia/front.svg",
  13973. extra: 2201 / 2035,
  13974. bottom: 0.05
  13975. }
  13976. },
  13977. frontClothed: {
  13978. height: math.unit(6, "feet"),
  13979. weight: math.unit(150, "lb"),
  13980. name: "Front (Clothed)",
  13981. image: {
  13982. source: "./media/characters/elyssia/front-clothed.svg",
  13983. extra: 2201 / 2035,
  13984. bottom: 0.05
  13985. }
  13986. },
  13987. back: {
  13988. height: math.unit(6, "feet"),
  13989. weight: math.unit(150, "lb"),
  13990. name: "Back",
  13991. image: {
  13992. source: "./media/characters/elyssia/back.svg",
  13993. extra: 2201 / 2035,
  13994. bottom: 0.013
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Smaller",
  14001. height: math.unit(150, "feet")
  14002. },
  14003. {
  14004. name: "Standard",
  14005. height: math.unit(1400, "feet"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Distracted",
  14010. height: math.unit(15000, "feet")
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14016. {
  14017. front: {
  14018. height: math.unit(7 + 4/12, "feet"),
  14019. weight: math.unit(690, "lb"),
  14020. name: "Front",
  14021. image: {
  14022. source: "./media/characters/geno-maxwell/front.svg",
  14023. extra: 984/856,
  14024. bottom: 87/1071
  14025. }
  14026. },
  14027. back: {
  14028. height: math.unit(7 + 4/12, "feet"),
  14029. weight: math.unit(690, "lb"),
  14030. name: "Back",
  14031. image: {
  14032. source: "./media/characters/geno-maxwell/back.svg",
  14033. extra: 981/854,
  14034. bottom: 57/1038
  14035. }
  14036. },
  14037. frontCostume: {
  14038. height: math.unit(7 + 4/12, "feet"),
  14039. weight: math.unit(690, "lb"),
  14040. name: "Front (Costume)",
  14041. image: {
  14042. source: "./media/characters/geno-maxwell/front-costume.svg",
  14043. extra: 984/856,
  14044. bottom: 87/1071
  14045. }
  14046. },
  14047. backcostume: {
  14048. height: math.unit(7 + 4/12, "feet"),
  14049. weight: math.unit(690, "lb"),
  14050. name: "Back (Costume)",
  14051. image: {
  14052. source: "./media/characters/geno-maxwell/back-costume.svg",
  14053. extra: 981/854,
  14054. bottom: 57/1038
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Micro",
  14061. height: math.unit(3, "inches")
  14062. },
  14063. {
  14064. name: "Normal",
  14065. height: math.unit(7 + 4 / 12, "feet"),
  14066. default: true
  14067. },
  14068. {
  14069. name: "Macro",
  14070. height: math.unit(220, "feet")
  14071. },
  14072. {
  14073. name: "Megamacro",
  14074. height: math.unit(11, "miles")
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(7 + 4/12, "feet"),
  14083. weight: math.unit(750, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/regena-maxwell/front.svg",
  14087. extra: 984/856,
  14088. bottom: 87/1071
  14089. }
  14090. },
  14091. back: {
  14092. height: math.unit(7 + 4/12, "feet"),
  14093. weight: math.unit(750, "lb"),
  14094. name: "Back",
  14095. image: {
  14096. source: "./media/characters/regena-maxwell/back.svg",
  14097. extra: 981/854,
  14098. bottom: 57/1038
  14099. }
  14100. },
  14101. frontCostume: {
  14102. height: math.unit(7 + 4/12, "feet"),
  14103. weight: math.unit(750, "lb"),
  14104. name: "Front (Costume)",
  14105. image: {
  14106. source: "./media/characters/regena-maxwell/front-costume.svg",
  14107. extra: 984/856,
  14108. bottom: 87/1071
  14109. }
  14110. },
  14111. backcostume: {
  14112. height: math.unit(7 + 4/12, "feet"),
  14113. weight: math.unit(750, "lb"),
  14114. name: "Back (Costume)",
  14115. image: {
  14116. source: "./media/characters/regena-maxwell/back-costume.svg",
  14117. extra: 981/854,
  14118. bottom: 57/1038
  14119. }
  14120. },
  14121. },
  14122. [
  14123. {
  14124. name: "Normal",
  14125. height: math.unit(7 + 4 / 12, "feet"),
  14126. default: true
  14127. },
  14128. {
  14129. name: "Macro",
  14130. height: math.unit(220, "feet")
  14131. },
  14132. {
  14133. name: "Megamacro",
  14134. height: math.unit(11, "miles")
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(150, "lb"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14147. extra: 860 / 690,
  14148. bottom: 0.03
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(1.7, "meters"),
  14156. default: true
  14157. },
  14158. ]
  14159. ))
  14160. characterMakers.push(() => makeCharacter(
  14161. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14162. {
  14163. front: {
  14164. height: math.unit(6, "feet"),
  14165. weight: math.unit(150, "lb"),
  14166. name: "Front",
  14167. image: {
  14168. source: "./media/characters/quilly/front.svg",
  14169. extra: 890 / 776
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Gigamacro",
  14176. height: math.unit(404090, "miles"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(7 + 8 / 12, "feet"),
  14186. weight: math.unit(350, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/tempest/front.svg",
  14190. extra: 1175 / 1086,
  14191. bottom: 0.02
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Normal",
  14198. height: math.unit(7 + 8 / 12, "feet"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14205. {
  14206. side: {
  14207. height: math.unit(4 + 5 / 12, "feet"),
  14208. weight: math.unit(80, "lb"),
  14209. name: "Side",
  14210. image: {
  14211. source: "./media/characters/rodger/side.svg",
  14212. extra: 1235 / 1118
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Micro",
  14219. height: math.unit(1, "inch")
  14220. },
  14221. {
  14222. name: "Normal",
  14223. height: math.unit(4 + 5 / 12, "feet"),
  14224. default: true
  14225. },
  14226. {
  14227. name: "Macro",
  14228. height: math.unit(120, "feet")
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(150, "lb"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/danyel/front.svg",
  14241. extra: 1185 / 1123,
  14242. bottom: 0.05
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Shrunken",
  14249. height: math.unit(0.5, "mm")
  14250. },
  14251. {
  14252. name: "Micro",
  14253. height: math.unit(1, "mm"),
  14254. default: true
  14255. },
  14256. {
  14257. name: "Upsized",
  14258. height: math.unit(5 + 5 / 12, "feet")
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(5 + 6 / 12, "feet"),
  14267. weight: math.unit(200, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/vivian-bijoux/front.svg",
  14271. extra: 1217/1209,
  14272. bottom: 76/1293
  14273. }
  14274. },
  14275. back: {
  14276. height: math.unit(5 + 6 / 12, "feet"),
  14277. weight: math.unit(200, "lb"),
  14278. name: "Back",
  14279. image: {
  14280. source: "./media/characters/vivian-bijoux/back.svg",
  14281. extra: 1214/1208,
  14282. bottom: 51/1265
  14283. }
  14284. },
  14285. dressed: {
  14286. height: math.unit(5 + 6 / 12, "feet"),
  14287. weight: math.unit(200, "lb"),
  14288. name: "Dressed",
  14289. image: {
  14290. source: "./media/characters/vivian-bijoux/dressed.svg",
  14291. extra: 1217/1209,
  14292. bottom: 76/1293
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Normal",
  14299. height: math.unit(5 + 6 / 12, "feet"),
  14300. default: true
  14301. },
  14302. {
  14303. name: "Bad Dream",
  14304. height: math.unit(500, "feet")
  14305. },
  14306. {
  14307. name: "Nightmare",
  14308. height: math.unit(500, "miles")
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(6 + 1 / 12, "feet"),
  14317. weight: math.unit(260, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/zeta/front.svg",
  14321. extra: 1968 / 1889,
  14322. bottom: 0.06
  14323. }
  14324. },
  14325. back: {
  14326. height: math.unit(6 + 1 / 12, "feet"),
  14327. weight: math.unit(260, "lb"),
  14328. name: "Back",
  14329. image: {
  14330. source: "./media/characters/zeta/back.svg",
  14331. extra: 1944 / 1858,
  14332. bottom: 0.03
  14333. }
  14334. },
  14335. hand: {
  14336. height: math.unit(1.112, "feet"),
  14337. name: "Hand",
  14338. image: {
  14339. source: "./media/characters/zeta/hand.svg"
  14340. }
  14341. },
  14342. foot: {
  14343. height: math.unit(1.48, "feet"),
  14344. name: "Foot",
  14345. image: {
  14346. source: "./media/characters/zeta/foot.svg"
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Micro",
  14353. height: math.unit(6, "inches")
  14354. },
  14355. {
  14356. name: "Normal",
  14357. height: math.unit(6 + 1 / 12, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Macro",
  14362. height: math.unit(20, "feet")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(6, "feet"),
  14371. weight: math.unit(150, "lb"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/jamie-larsen/front.svg",
  14375. extra: 962 / 933,
  14376. bottom: 0.02
  14377. }
  14378. },
  14379. back: {
  14380. height: math.unit(6, "feet"),
  14381. weight: math.unit(150, "lb"),
  14382. name: "Back",
  14383. image: {
  14384. source: "./media/characters/jamie-larsen/back.svg",
  14385. extra: 997 / 946
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Macro",
  14392. height: math.unit(28 + 7 / 12, "feet"),
  14393. default: true
  14394. },
  14395. {
  14396. name: "Macro+",
  14397. height: math.unit(180, "feet")
  14398. },
  14399. {
  14400. name: "Megamacro",
  14401. height: math.unit(10, "miles")
  14402. },
  14403. {
  14404. name: "Gigamacro",
  14405. height: math.unit(200000, "miles")
  14406. },
  14407. ]
  14408. ))
  14409. characterMakers.push(() => makeCharacter(
  14410. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14411. {
  14412. front: {
  14413. height: math.unit(6, "feet"),
  14414. weight: math.unit(120, "lb"),
  14415. name: "Front",
  14416. image: {
  14417. source: "./media/characters/vance/front.svg",
  14418. extra: 1980 / 1890,
  14419. bottom: 0.09
  14420. }
  14421. },
  14422. back: {
  14423. height: math.unit(6, "feet"),
  14424. weight: math.unit(120, "lb"),
  14425. name: "Back",
  14426. image: {
  14427. source: "./media/characters/vance/back.svg",
  14428. extra: 2081 / 1994,
  14429. bottom: 0.014
  14430. }
  14431. },
  14432. hand: {
  14433. height: math.unit(0.88, "feet"),
  14434. name: "Hand",
  14435. image: {
  14436. source: "./media/characters/vance/hand.svg"
  14437. }
  14438. },
  14439. foot: {
  14440. height: math.unit(0.64, "feet"),
  14441. name: "Foot",
  14442. image: {
  14443. source: "./media/characters/vance/foot.svg"
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Small",
  14450. height: math.unit(90, "feet"),
  14451. default: true
  14452. },
  14453. {
  14454. name: "Macro",
  14455. height: math.unit(100, "meters")
  14456. },
  14457. {
  14458. name: "Megamacro",
  14459. height: math.unit(15, "miles")
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14465. {
  14466. front: {
  14467. height: math.unit(6, "feet"),
  14468. weight: math.unit(180, "lb"),
  14469. name: "Front",
  14470. image: {
  14471. source: "./media/characters/xochitl/front.svg",
  14472. extra: 2297 / 2261,
  14473. bottom: 0.065
  14474. }
  14475. },
  14476. back: {
  14477. height: math.unit(6, "feet"),
  14478. weight: math.unit(180, "lb"),
  14479. name: "Back",
  14480. image: {
  14481. source: "./media/characters/xochitl/back.svg",
  14482. extra: 2386 / 2354,
  14483. bottom: 0.01
  14484. }
  14485. },
  14486. foot: {
  14487. height: math.unit(6 / 5 * 1.15, "feet"),
  14488. weight: math.unit(150, "lb"),
  14489. name: "Foot",
  14490. image: {
  14491. source: "./media/characters/xochitl/foot.svg"
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Macro",
  14498. height: math.unit(80, "feet")
  14499. },
  14500. {
  14501. name: "Macro+",
  14502. height: math.unit(400, "feet"),
  14503. default: true
  14504. },
  14505. {
  14506. name: "Gigamacro",
  14507. height: math.unit(80000, "miles")
  14508. },
  14509. {
  14510. name: "Gigamacro+",
  14511. height: math.unit(400000, "miles")
  14512. },
  14513. {
  14514. name: "Teramacro",
  14515. height: math.unit(300, "AU")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(6, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/vincent/front.svg",
  14528. extra: 1130 / 1080,
  14529. bottom: 0.055
  14530. }
  14531. },
  14532. beak: {
  14533. height: math.unit(6 * 0.1, "feet"),
  14534. name: "Beak",
  14535. image: {
  14536. source: "./media/characters/vincent/beak.svg"
  14537. }
  14538. },
  14539. hand: {
  14540. height: math.unit(6 * 0.85, "feet"),
  14541. weight: math.unit(150, "lb"),
  14542. name: "Hand",
  14543. image: {
  14544. source: "./media/characters/vincent/hand.svg"
  14545. }
  14546. },
  14547. foot: {
  14548. height: math.unit(6 * 0.19, "feet"),
  14549. weight: math.unit(150, "lb"),
  14550. name: "Foot",
  14551. image: {
  14552. source: "./media/characters/vincent/foot.svg"
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Base",
  14559. height: math.unit(6 + 5 / 12, "feet"),
  14560. default: true
  14561. },
  14562. {
  14563. name: "Macro",
  14564. height: math.unit(300, "feet")
  14565. },
  14566. {
  14567. name: "Megamacro",
  14568. height: math.unit(2, "miles")
  14569. },
  14570. {
  14571. name: "Gigamacro",
  14572. height: math.unit(1000, "miles")
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14578. {
  14579. front: {
  14580. height: math.unit(2, "meters"),
  14581. weight: math.unit(500, "kg"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/coatl/front.svg",
  14585. extra: 3948 / 3500,
  14586. bottom: 0.082
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(4, "meters")
  14594. },
  14595. {
  14596. name: "Macro",
  14597. height: math.unit(100, "meters"),
  14598. default: true
  14599. },
  14600. {
  14601. name: "Macro+",
  14602. height: math.unit(300, "meters")
  14603. },
  14604. {
  14605. name: "Megamacro",
  14606. height: math.unit(3, "gigameters")
  14607. },
  14608. {
  14609. name: "Megamacro+",
  14610. height: math.unit(300, "terameters")
  14611. },
  14612. {
  14613. name: "Megamacro++",
  14614. height: math.unit(3, "lightyears")
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(6, "feet"),
  14623. weight: math.unit(50, "kg"),
  14624. name: "front",
  14625. image: {
  14626. source: "./media/characters/shiroryu/front.svg",
  14627. extra: 1990 / 1935
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Mortal Mingling",
  14634. height: math.unit(3, "meters")
  14635. },
  14636. {
  14637. name: "Kaiju-ish",
  14638. height: math.unit(250, "meters")
  14639. },
  14640. {
  14641. name: "Somewhat Godly",
  14642. height: math.unit(400, "km"),
  14643. default: true
  14644. },
  14645. {
  14646. name: "Planetary",
  14647. height: math.unit(300, "megameters")
  14648. },
  14649. {
  14650. name: "Galaxy-dwarfing",
  14651. height: math.unit(450, "kiloparsecs")
  14652. },
  14653. {
  14654. name: "Universe Eater",
  14655. height: math.unit(150, "gigaparsecs")
  14656. },
  14657. {
  14658. name: "Almost Immeasurable",
  14659. height: math.unit(1.3e266, "yottaparsecs")
  14660. },
  14661. ]
  14662. ))
  14663. characterMakers.push(() => makeCharacter(
  14664. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14665. {
  14666. front: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(150, "lb"),
  14669. name: "Front",
  14670. image: {
  14671. source: "./media/characters/umeko/front.svg",
  14672. extra: 1,
  14673. bottom: 0.019
  14674. }
  14675. },
  14676. frontArmored: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Front (Armored)",
  14680. image: {
  14681. source: "./media/characters/umeko/front-armored.svg",
  14682. extra: 1,
  14683. bottom: 0.021
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Macro",
  14690. height: math.unit(220, "feet"),
  14691. default: true
  14692. },
  14693. {
  14694. name: "Guardian Dragon",
  14695. height: math.unit(50, "miles")
  14696. },
  14697. {
  14698. name: "Cosmic",
  14699. height: math.unit(800000, "miles")
  14700. },
  14701. ]
  14702. ))
  14703. characterMakers.push(() => makeCharacter(
  14704. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14705. {
  14706. front: {
  14707. height: math.unit(6, "feet"),
  14708. weight: math.unit(150, "lb"),
  14709. name: "Front",
  14710. image: {
  14711. source: "./media/characters/cassidy/front.svg",
  14712. extra: 810/808,
  14713. bottom: 41/851
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Canon Height",
  14720. height: math.unit(120, "feet"),
  14721. default: true
  14722. },
  14723. {
  14724. name: "Macro+",
  14725. height: math.unit(400, "feet")
  14726. },
  14727. {
  14728. name: "Macro++",
  14729. height: math.unit(4000, "feet")
  14730. },
  14731. {
  14732. name: "Megamacro",
  14733. height: math.unit(3, "miles")
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14739. {
  14740. front: {
  14741. height: math.unit(6, "feet"),
  14742. weight: math.unit(150, "lb"),
  14743. name: "Front",
  14744. image: {
  14745. source: "./media/characters/isaac/front.svg",
  14746. extra: 896 / 815,
  14747. bottom: 0.11
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Human Size",
  14754. height: math.unit(8, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(400, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(50, "miles")
  14764. },
  14765. {
  14766. name: "Canon Height",
  14767. height: math.unit(200, "AU")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(6, "feet"),
  14776. weight: math.unit(72, "kg"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/sleekit/front.svg",
  14780. extra: 4693 / 4487,
  14781. bottom: 0.012
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Minimum Height",
  14788. height: math.unit(10, "meters")
  14789. },
  14790. {
  14791. name: "Smaller",
  14792. height: math.unit(25, "meters")
  14793. },
  14794. {
  14795. name: "Larger",
  14796. height: math.unit(38, "meters"),
  14797. default: true
  14798. },
  14799. {
  14800. name: "Maximum height",
  14801. height: math.unit(100, "meters")
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14807. {
  14808. front: {
  14809. height: math.unit(6, "feet"),
  14810. weight: math.unit(150, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/nillia/front.svg",
  14814. extra: 2195 / 2037,
  14815. bottom: 0.005
  14816. }
  14817. },
  14818. back: {
  14819. height: math.unit(6, "feet"),
  14820. weight: math.unit(150, "lb"),
  14821. name: "Back",
  14822. image: {
  14823. source: "./media/characters/nillia/back.svg",
  14824. extra: 2195 / 2037,
  14825. bottom: 0.005
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Canon Height",
  14832. height: math.unit(489, "feet"),
  14833. default: true
  14834. }
  14835. ]
  14836. ))
  14837. characterMakers.push(() => makeCharacter(
  14838. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14839. {
  14840. front: {
  14841. height: math.unit(6, "feet"),
  14842. weight: math.unit(150, "lb"),
  14843. name: "Front",
  14844. image: {
  14845. source: "./media/characters/mesmyriza/front.svg",
  14846. extra: 2067 / 1784,
  14847. bottom: 0.035
  14848. }
  14849. },
  14850. foot: {
  14851. height: math.unit(6 / (250 / 35), "feet"),
  14852. name: "Foot",
  14853. image: {
  14854. source: "./media/characters/mesmyriza/foot.svg"
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Macro",
  14861. height: math.unit(457, "meters"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Megamacro",
  14866. height: math.unit(8, "megameters")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(250, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/saudade/front.svg",
  14879. extra: 1172 / 1139,
  14880. bottom: 0.035
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Micro",
  14887. height: math.unit(3, "inches")
  14888. },
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(6, "feet"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Macro",
  14896. height: math.unit(50, "feet")
  14897. },
  14898. {
  14899. name: "Megamacro",
  14900. height: math.unit(2800, "feet")
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(5 + 4 / 12, "feet"),
  14909. weight: math.unit(100, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/keireer/front.svg",
  14913. extra: 716 / 666,
  14914. bottom: 0.05
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(5 + 4 / 12, "feet"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(6, "feet"),
  14931. weight: math.unit(90, "kg"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/mirja/front.svg",
  14935. extra: 1789 / 1683,
  14936. bottom: 0.05
  14937. }
  14938. },
  14939. frontDressed: {
  14940. height: math.unit(6, "feet"),
  14941. weight: math.unit(90, "lb"),
  14942. name: "Front (Dressed)",
  14943. image: {
  14944. source: "./media/characters/mirja/front-dressed.svg",
  14945. extra: 1789 / 1683,
  14946. bottom: 0.05
  14947. }
  14948. },
  14949. back: {
  14950. height: math.unit(6, "feet"),
  14951. weight: math.unit(90, "lb"),
  14952. name: "Back",
  14953. image: {
  14954. source: "./media/characters/mirja/back.svg",
  14955. extra: 953 / 917,
  14956. bottom: 0.017
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "\"Incognito\"",
  14963. height: math.unit(3, "meters")
  14964. },
  14965. {
  14966. name: "Strolling Size",
  14967. height: math.unit(15, "km")
  14968. },
  14969. {
  14970. name: "Larger Strolling Size",
  14971. height: math.unit(400, "km")
  14972. },
  14973. {
  14974. name: "Preferred Size",
  14975. height: math.unit(5000, "km")
  14976. },
  14977. {
  14978. name: "True Size",
  14979. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(15, "feet"),
  14989. weight: math.unit(880, "kg"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/nightraver/front.svg",
  14993. extra: 2444 / 2160,
  14994. bottom: 0.027
  14995. }
  14996. },
  14997. back: {
  14998. height: math.unit(15, "feet"),
  14999. weight: math.unit(880, "kg"),
  15000. name: "Back",
  15001. image: {
  15002. source: "./media/characters/nightraver/back.svg",
  15003. extra: 2309 / 2180,
  15004. bottom: 0.005
  15005. }
  15006. },
  15007. sole: {
  15008. height: math.unit(2.878, "feet"),
  15009. name: "Sole",
  15010. image: {
  15011. source: "./media/characters/nightraver/sole.svg"
  15012. }
  15013. },
  15014. foot: {
  15015. height: math.unit(2.285, "feet"),
  15016. name: "Foot",
  15017. image: {
  15018. source: "./media/characters/nightraver/foot.svg"
  15019. }
  15020. },
  15021. maw: {
  15022. height: math.unit(2.67, "feet"),
  15023. name: "Maw",
  15024. image: {
  15025. source: "./media/characters/nightraver/maw.svg"
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Micro",
  15032. height: math.unit(1, "cm")
  15033. },
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(15, "feet"),
  15037. default: true
  15038. },
  15039. {
  15040. name: "Macro",
  15041. height: math.unit(300, "feet")
  15042. },
  15043. {
  15044. name: "Megamacro",
  15045. height: math.unit(300, "miles")
  15046. },
  15047. {
  15048. name: "Gigamacro",
  15049. height: math.unit(10000, "miles")
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15055. {
  15056. side: {
  15057. height: math.unit(2, "inches"),
  15058. weight: math.unit(5, "grams"),
  15059. name: "Side",
  15060. image: {
  15061. source: "./media/characters/arc/side.svg"
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Micro",
  15068. height: math.unit(2, "inches"),
  15069. default: true
  15070. },
  15071. ]
  15072. ))
  15073. characterMakers.push(() => makeCharacter(
  15074. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15075. {
  15076. front: {
  15077. height: math.unit(1.1938, "meters"),
  15078. weight: math.unit(54, "kg"),
  15079. name: "Front",
  15080. image: {
  15081. source: "./media/characters/nebula-shahar/front.svg",
  15082. extra: 1642 / 1436,
  15083. bottom: 0.06
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Megamicro",
  15090. height: math.unit(0.3, "mm")
  15091. },
  15092. {
  15093. name: "Micro",
  15094. height: math.unit(3, "cm")
  15095. },
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(138, "cm"),
  15099. default: true
  15100. },
  15101. {
  15102. name: "Macro",
  15103. height: math.unit(30, "m")
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(5.24, "feet"),
  15112. weight: math.unit(150, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/shayla/front.svg",
  15116. extra: 1512 / 1414,
  15117. bottom: 0.01
  15118. }
  15119. },
  15120. back: {
  15121. height: math.unit(5.24, "feet"),
  15122. weight: math.unit(150, "lb"),
  15123. name: "Back",
  15124. image: {
  15125. source: "./media/characters/shayla/back.svg",
  15126. extra: 1512 / 1414
  15127. }
  15128. },
  15129. hand: {
  15130. height: math.unit(0.7781496062992126, "feet"),
  15131. name: "Hand",
  15132. image: {
  15133. source: "./media/characters/shayla/hand.svg"
  15134. }
  15135. },
  15136. foot: {
  15137. height: math.unit(1.4206036745406823, "feet"),
  15138. name: "Foot",
  15139. image: {
  15140. source: "./media/characters/shayla/foot.svg"
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Micro",
  15147. height: math.unit(0.32, "feet")
  15148. },
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(5.24, "feet"),
  15152. default: true
  15153. },
  15154. {
  15155. name: "Macro",
  15156. height: math.unit(492.12, "feet")
  15157. },
  15158. {
  15159. name: "Megamacro",
  15160. height: math.unit(186.41, "miles")
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15166. {
  15167. front: {
  15168. height: math.unit(2.2, "m"),
  15169. weight: math.unit(120, "kg"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/pia-jr/front.svg",
  15173. extra: 1000 / 970,
  15174. bottom: 0.035
  15175. }
  15176. },
  15177. hand: {
  15178. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15179. name: "Hand",
  15180. image: {
  15181. source: "./media/characters/pia-jr/hand.svg"
  15182. }
  15183. },
  15184. paw: {
  15185. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15186. name: "Paw",
  15187. image: {
  15188. source: "./media/characters/pia-jr/paw.svg"
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Micro",
  15195. height: math.unit(1.2, "cm")
  15196. },
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(2.2, "m"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Macro",
  15204. height: math.unit(180, "m")
  15205. },
  15206. {
  15207. name: "Megamacro",
  15208. height: math.unit(420, "km")
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(2, "m"),
  15217. weight: math.unit(115, "kg"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/pia-sr/front.svg",
  15221. extra: 760 / 730,
  15222. bottom: 0.015
  15223. }
  15224. },
  15225. back: {
  15226. height: math.unit(2, "m"),
  15227. weight: math.unit(115, "kg"),
  15228. name: "Back",
  15229. image: {
  15230. source: "./media/characters/pia-sr/back.svg",
  15231. extra: 760 / 730,
  15232. bottom: 0.01
  15233. }
  15234. },
  15235. hand: {
  15236. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15237. name: "Hand",
  15238. image: {
  15239. source: "./media/characters/pia-sr/hand.svg"
  15240. }
  15241. },
  15242. foot: {
  15243. height: math.unit(1.83, "feet"),
  15244. name: "Foot",
  15245. image: {
  15246. source: "./media/characters/pia-sr/foot.svg"
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Micro",
  15253. height: math.unit(88, "mm")
  15254. },
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(2, "m"),
  15258. default: true
  15259. },
  15260. {
  15261. name: "Macro",
  15262. height: math.unit(200, "m")
  15263. },
  15264. {
  15265. name: "Megamacro",
  15266. height: math.unit(420, "km")
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(8 + 2 / 12, "feet"),
  15275. weight: math.unit(300, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/kibibyte/front.svg",
  15279. extra: 2221 / 2098,
  15280. bottom: 0.04
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(8 + 2 / 12, "feet"),
  15288. default: true
  15289. },
  15290. {
  15291. name: "Socialable Macro",
  15292. height: math.unit(50, "feet")
  15293. },
  15294. {
  15295. name: "Macro",
  15296. height: math.unit(300, "feet")
  15297. },
  15298. {
  15299. name: "Megamacro",
  15300. height: math.unit(500, "miles")
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(6, "feet"),
  15309. weight: math.unit(150, "lb"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/felix/front.svg",
  15313. extra: 762 / 722,
  15314. bottom: 0.02
  15315. }
  15316. },
  15317. frontClothed: {
  15318. height: math.unit(6, "feet"),
  15319. weight: math.unit(150, "lb"),
  15320. name: "Front (Clothed)",
  15321. image: {
  15322. source: "./media/characters/felix/front-clothed.svg",
  15323. extra: 762 / 722,
  15324. bottom: 0.02
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(6 + 8 / 12, "feet"),
  15332. default: true
  15333. },
  15334. {
  15335. name: "Macro",
  15336. height: math.unit(2600, "feet")
  15337. },
  15338. {
  15339. name: "Megamacro",
  15340. height: math.unit(450, "miles")
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(6 + 1 / 12, "feet"),
  15349. weight: math.unit(250, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/tobo/front.svg",
  15353. extra: 608 / 586,
  15354. bottom: 0.023
  15355. }
  15356. },
  15357. back: {
  15358. height: math.unit(6 + 1 / 12, "feet"),
  15359. weight: math.unit(250, "lb"),
  15360. name: "Back",
  15361. image: {
  15362. source: "./media/characters/tobo/back.svg",
  15363. extra: 608 / 586
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Nano",
  15370. height: math.unit(2, "nm")
  15371. },
  15372. {
  15373. name: "Megamicro",
  15374. height: math.unit(0.1, "mm")
  15375. },
  15376. {
  15377. name: "Micro",
  15378. height: math.unit(1, "inch"),
  15379. default: true
  15380. },
  15381. {
  15382. name: "Human-sized",
  15383. height: math.unit(6 + 1 / 12, "feet")
  15384. },
  15385. {
  15386. name: "Macro",
  15387. height: math.unit(250, "feet")
  15388. },
  15389. {
  15390. name: "Megamacro",
  15391. height: math.unit(75, "miles")
  15392. },
  15393. {
  15394. name: "Texas-sized",
  15395. height: math.unit(750, "miles")
  15396. },
  15397. {
  15398. name: "Teramacro",
  15399. height: math.unit(50000, "miles")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(6, "feet"),
  15408. weight: math.unit(269, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/danny-kapowsky/front.svg",
  15412. extra: 766 / 736,
  15413. bottom: 0.044
  15414. }
  15415. },
  15416. back: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(269, "lb"),
  15419. name: "Back",
  15420. image: {
  15421. source: "./media/characters/danny-kapowsky/back.svg",
  15422. extra: 797 / 760,
  15423. bottom: 0.025
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Macro",
  15430. height: math.unit(150, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Macro+",
  15435. height: math.unit(200, "feet")
  15436. },
  15437. {
  15438. name: "Macro++",
  15439. height: math.unit(300, "feet")
  15440. },
  15441. {
  15442. name: "Macro+++",
  15443. height: math.unit(400, "feet")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15449. {
  15450. side: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(170, "lb"),
  15453. name: "Side",
  15454. image: {
  15455. source: "./media/characters/finn/side.svg",
  15456. extra: 1953 / 1807,
  15457. bottom: 0.057
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Megamacro",
  15464. height: math.unit(14445, "feet"),
  15465. default: true
  15466. },
  15467. ]
  15468. ))
  15469. characterMakers.push(() => makeCharacter(
  15470. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15471. {
  15472. front: {
  15473. height: math.unit(5 + 6 / 12, "feet"),
  15474. weight: math.unit(125, "lb"),
  15475. name: "Front",
  15476. image: {
  15477. source: "./media/characters/roy/front.svg",
  15478. extra: 1,
  15479. bottom: 0.11
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Micro",
  15486. height: math.unit(3, "inches"),
  15487. default: true
  15488. },
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(5 + 6 / 12, "feet")
  15492. },
  15493. {
  15494. name: "Lesser Macro",
  15495. height: math.unit(60, "feet")
  15496. },
  15497. {
  15498. name: "Greater Macro",
  15499. height: math.unit(120, "feet")
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15505. {
  15506. front: {
  15507. height: math.unit(6, "feet"),
  15508. weight: math.unit(100, "lb"),
  15509. name: "Front",
  15510. image: {
  15511. source: "./media/characters/aevsivs/front.svg",
  15512. extra: 1,
  15513. bottom: 0.03
  15514. }
  15515. },
  15516. back: {
  15517. height: math.unit(6, "feet"),
  15518. weight: math.unit(100, "lb"),
  15519. name: "Back",
  15520. image: {
  15521. source: "./media/characters/aevsivs/back.svg"
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Micro",
  15528. height: math.unit(2, "inches"),
  15529. default: true
  15530. },
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(5, "feet")
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15539. {
  15540. front: {
  15541. height: math.unit(5 + 7 / 12, "feet"),
  15542. weight: math.unit(159, "lb"),
  15543. name: "Front",
  15544. image: {
  15545. source: "./media/characters/hildegard/front.svg",
  15546. extra: 289 / 269,
  15547. bottom: 7.63 / 297.8
  15548. }
  15549. },
  15550. back: {
  15551. height: math.unit(5 + 7 / 12, "feet"),
  15552. weight: math.unit(159, "lb"),
  15553. name: "Back",
  15554. image: {
  15555. source: "./media/characters/hildegard/back.svg",
  15556. extra: 280 / 260,
  15557. bottom: 2.3 / 282
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(5 + 7 / 12, "feet"),
  15565. default: true
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15571. {
  15572. bernard: {
  15573. height: math.unit(2 + 7 / 12, "feet"),
  15574. weight: math.unit(66, "lb"),
  15575. name: "Bernard",
  15576. rename: true,
  15577. image: {
  15578. source: "./media/characters/bernard-wilder/bernard.svg",
  15579. extra: 192 / 128,
  15580. bottom: 0.05
  15581. }
  15582. },
  15583. wilder: {
  15584. height: math.unit(5 + 8 / 12, "feet"),
  15585. weight: math.unit(143, "lb"),
  15586. name: "Wilder",
  15587. rename: true,
  15588. image: {
  15589. source: "./media/characters/bernard-wilder/wilder.svg",
  15590. extra: 361 / 312,
  15591. bottom: 0.02
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(2 + 7 / 12, "feet"),
  15599. default: true
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15605. {
  15606. anthro: {
  15607. height: math.unit(6 + 1 / 12, "feet"),
  15608. weight: math.unit(155, "lb"),
  15609. name: "Anthro",
  15610. image: {
  15611. source: "./media/characters/hearth/anthro.svg",
  15612. extra: 1178/1136,
  15613. bottom: 28/1206
  15614. }
  15615. },
  15616. feral: {
  15617. height: math.unit(3.78, "feet"),
  15618. weight: math.unit(35, "kg"),
  15619. name: "Feral",
  15620. image: {
  15621. source: "./media/characters/hearth/feral.svg",
  15622. extra: 153 / 135,
  15623. bottom: 0.03
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(6 + 1 / 12, "feet"),
  15631. default: true
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(6, "feet"),
  15640. weight: math.unit(182, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/ingrid/front.svg",
  15644. extra: 294 / 268,
  15645. bottom: 0.027
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(6, "feet"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15659. {
  15660. eevee: {
  15661. height: math.unit(2 + 10 / 12, "feet"),
  15662. weight: math.unit(86, "lb"),
  15663. name: "Malgam",
  15664. image: {
  15665. source: "./media/characters/malgam/eevee.svg",
  15666. extra: 952/784,
  15667. bottom: 38/990
  15668. }
  15669. },
  15670. sylveon: {
  15671. height: math.unit(4, "feet"),
  15672. weight: math.unit(101, "lb"),
  15673. name: "Future Malgam",
  15674. rename: true,
  15675. image: {
  15676. source: "./media/characters/malgam/sylveon.svg",
  15677. extra: 371 / 325,
  15678. bottom: 0.015
  15679. }
  15680. },
  15681. gigantamax: {
  15682. height: math.unit(50, "feet"),
  15683. name: "Gigantamax Malgam",
  15684. rename: true,
  15685. image: {
  15686. source: "./media/characters/malgam/gigantamax.svg"
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(2 + 10 / 12, "feet"),
  15694. default: true
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(5 + 11 / 12, "feet"),
  15703. weight: math.unit(188, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/fleur/front.svg",
  15707. extra: 309 / 283,
  15708. bottom: 0.007
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Normal",
  15715. height: math.unit(5 + 11 / 12, "feet"),
  15716. default: true
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15722. {
  15723. front: {
  15724. height: math.unit(5 + 4 / 12, "feet"),
  15725. weight: math.unit(122, "lb"),
  15726. name: "Front",
  15727. image: {
  15728. source: "./media/characters/jude/front.svg",
  15729. extra: 288 / 273,
  15730. bottom: 0.03
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(5 + 4 / 12, "feet"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(5 + 11 / 12, "feet"),
  15747. weight: math.unit(190, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/seara/front.svg",
  15751. extra: 1,
  15752. bottom: 0.05
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(5 + 11 / 12, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(16 + 5 / 12, "feet"),
  15769. weight: math.unit(524, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/caspian-lugia/front.svg",
  15773. extra: 1,
  15774. bottom: 0.04
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(16 + 5 / 12, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15788. {
  15789. front: {
  15790. height: math.unit(5 + 7 / 12, "feet"),
  15791. weight: math.unit(170, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/mika/front.svg",
  15795. extra: 1,
  15796. bottom: 0.016
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(5 + 7 / 12, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(6 + 2 / 12, "feet"),
  15813. weight: math.unit(268, "lb"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/sol/front.svg",
  15817. extra: 247 / 231,
  15818. bottom: 0.05
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Normal",
  15825. height: math.unit(6 + 2 / 12, "feet"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15832. {
  15833. buizel: {
  15834. height: math.unit(2 + 5 / 12, "feet"),
  15835. weight: math.unit(87, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/umiko/buizel.svg",
  15839. extra: 172 / 157,
  15840. bottom: 0.01
  15841. },
  15842. form: "buizel",
  15843. default: true
  15844. },
  15845. floatzel: {
  15846. height: math.unit(5 + 9 / 12, "feet"),
  15847. weight: math.unit(250, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/umiko/floatzel.svg",
  15851. extra: 1076/1006,
  15852. bottom: 15/1091
  15853. },
  15854. form: "floatzel",
  15855. default: true
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(2 + 5 / 12, "feet"),
  15862. form: "buizel",
  15863. default: true
  15864. },
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(5 + 9 / 12, "feet"),
  15868. form: "floatzel",
  15869. default: true
  15870. },
  15871. ],
  15872. {
  15873. "buizel": {
  15874. name: "Buizel"
  15875. },
  15876. "floatzel": {
  15877. name: "Floatzel",
  15878. default: true
  15879. }
  15880. }
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(6 + 2 / 12, "feet"),
  15887. weight: math.unit(146, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/iliac/front.svg",
  15891. extra: 389 / 365,
  15892. bottom: 0.035
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(6 + 2 / 12, "feet"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15906. {
  15907. front: {
  15908. height: math.unit(6, "feet"),
  15909. weight: math.unit(170, "lb"),
  15910. name: "Front",
  15911. image: {
  15912. source: "./media/characters/topaz/front.svg",
  15913. extra: 317 / 303,
  15914. bottom: 0.055
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(6, "feet"),
  15922. default: true
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15928. {
  15929. front: {
  15930. height: math.unit(5 + 11 / 12, "feet"),
  15931. weight: math.unit(144, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/gabriel/front.svg",
  15935. extra: 285 / 262,
  15936. bottom: 0.004
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(5 + 11 / 12, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15950. {
  15951. side: {
  15952. height: math.unit(6 + 5 / 12, "feet"),
  15953. weight: math.unit(300, "lb"),
  15954. name: "Side",
  15955. image: {
  15956. source: "./media/characters/tempest-suicune/side.svg",
  15957. extra: 195 / 154,
  15958. bottom: 0.04
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(6 + 5 / 12, "feet"),
  15966. default: true
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(7 + 2 / 12, "feet"),
  15975. weight: math.unit(322, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/vulcan/front.svg",
  15979. extra: 154 / 147,
  15980. bottom: 0.04
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(7 + 2 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(5 + 10 / 12, "feet"),
  15997. weight: math.unit(264, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/gault/front.svg",
  16001. extra: 161 / 140,
  16002. bottom: 0.028
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Normal",
  16009. height: math.unit(5 + 10 / 12, "feet"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(6, "feet"),
  16019. weight: math.unit(150, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/shard/front.svg",
  16023. extra: 273 / 238,
  16024. bottom: 0.02
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(3 + 6 / 12, "feet"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(5 + 11 / 12, "feet"),
  16041. weight: math.unit(146, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/ashe/front.svg",
  16045. extra: 400 / 373,
  16046. bottom: 0.01
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(5 + 11 / 12, "feet"),
  16054. default: true
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(5 + 5 / 12, "feet"),
  16063. weight: math.unit(135, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/beatrix/front.svg",
  16067. extra: 392 / 379,
  16068. bottom: 0.01
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(6, "feet"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(6 + 2/12, "feet"),
  16085. weight: math.unit(135, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/ignatius/front.svg",
  16089. extra: 1380/1259,
  16090. bottom: 27/1407
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(6 + 2/12, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6 + 2 / 12, "feet"),
  16107. weight: math.unit(138, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/mei-li/front.svg",
  16111. extra: 237 / 229,
  16112. bottom: 0.03
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Normal",
  16119. height: math.unit(6 + 2 / 12, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(2 + 4 / 12, "feet"),
  16129. weight: math.unit(62, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/puru/front.svg",
  16133. extra: 206 / 149,
  16134. bottom: 0.06
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(2 + 4 / 12, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16148. {
  16149. anthro: {
  16150. height: math.unit(5 + 8/12, "feet"),
  16151. weight: math.unit(200, "lb"),
  16152. energyNeed: math.unit(2000, "kcal"),
  16153. name: "Anthro",
  16154. image: {
  16155. source: "./media/characters/kee/anthro.svg",
  16156. extra: 3251/3184,
  16157. bottom: 250/3501
  16158. }
  16159. },
  16160. taur: {
  16161. height: math.unit(11, "feet"),
  16162. weight: math.unit(500, "lb"),
  16163. energyNeed: math.unit(5000, "kcal"),
  16164. name: "Taur",
  16165. image: {
  16166. source: "./media/characters/kee/taur.svg",
  16167. extra: 1362/1320,
  16168. bottom: 83/1445
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(5 + 8/12, "feet"),
  16176. default: true
  16177. },
  16178. {
  16179. name: "Macro",
  16180. height: math.unit(35, "feet")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16186. {
  16187. anthro: {
  16188. height: math.unit(7, "feet"),
  16189. weight: math.unit(190, "lb"),
  16190. name: "Anthro",
  16191. image: {
  16192. source: "./media/characters/cobalt-dracha/anthro.svg",
  16193. extra: 231 / 225,
  16194. bottom: 0.04
  16195. }
  16196. },
  16197. feral: {
  16198. height: math.unit(9 + 7 / 12, "feet"),
  16199. weight: math.unit(294, "lb"),
  16200. name: "Feral",
  16201. image: {
  16202. source: "./media/characters/cobalt-dracha/feral.svg",
  16203. extra: 692 / 633,
  16204. bottom: 0.05
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(7, "feet"),
  16212. default: true
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16218. {
  16219. fallen: {
  16220. height: math.unit(11 + 8 / 12, "feet"),
  16221. weight: math.unit(485, "lb"),
  16222. name: "Java (Fallen)",
  16223. rename: true,
  16224. image: {
  16225. source: "./media/characters/java/fallen.svg",
  16226. extra: 226 / 208,
  16227. bottom: 0.005
  16228. }
  16229. },
  16230. godkin: {
  16231. height: math.unit(10 + 6 / 12, "feet"),
  16232. weight: math.unit(328, "lb"),
  16233. name: "Java (Godkin)",
  16234. rename: true,
  16235. image: {
  16236. source: "./media/characters/java/godkin.svg",
  16237. extra: 1104/1068,
  16238. bottom: 36/1140
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(11 + 8 / 12, "feet"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(5 + 9 / 12, "feet"),
  16255. weight: math.unit(170, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/purna/front.svg",
  16259. extra: 239 / 229,
  16260. bottom: 0.01
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(5 + 9 / 12, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(5 + 9 / 12, "feet"),
  16277. weight: math.unit(142, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/kuva/front.svg",
  16281. extra: 281 / 271,
  16282. bottom: 0.006
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(5 + 9 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16296. {
  16297. anthro: {
  16298. height: math.unit(9 + 2 / 12, "feet"),
  16299. weight: math.unit(270, "lb"),
  16300. name: "Anthro",
  16301. image: {
  16302. source: "./media/characters/embra/anthro.svg",
  16303. extra: 200 / 187,
  16304. bottom: 0.02
  16305. }
  16306. },
  16307. feral: {
  16308. height: math.unit(18 + 8 / 12, "feet"),
  16309. weight: math.unit(576, "lb"),
  16310. name: "Feral",
  16311. image: {
  16312. source: "./media/characters/embra/feral.svg",
  16313. extra: 152 / 137,
  16314. bottom: 0.037
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(9 + 2 / 12, "feet"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16328. {
  16329. anthro: {
  16330. height: math.unit(10 + 9 / 12, "feet"),
  16331. weight: math.unit(224, "lb"),
  16332. name: "Anthro",
  16333. image: {
  16334. source: "./media/characters/grottos/anthro.svg",
  16335. extra: 350 / 332,
  16336. bottom: 0.045
  16337. }
  16338. },
  16339. feral: {
  16340. height: math.unit(20 + 7 / 12, "feet"),
  16341. weight: math.unit(629, "lb"),
  16342. name: "Feral",
  16343. image: {
  16344. source: "./media/characters/grottos/feral.svg",
  16345. extra: 207 / 190,
  16346. bottom: 0.05
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(10 + 9 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16360. {
  16361. anthro: {
  16362. height: math.unit(9 + 6 / 12, "feet"),
  16363. weight: math.unit(298, "lb"),
  16364. name: "Anthro",
  16365. image: {
  16366. source: "./media/characters/frifna/anthro.svg",
  16367. extra: 282 / 269,
  16368. bottom: 0.015
  16369. }
  16370. },
  16371. feral: {
  16372. height: math.unit(16 + 2 / 12, "feet"),
  16373. weight: math.unit(624, "lb"),
  16374. name: "Feral",
  16375. image: {
  16376. source: "./media/characters/frifna/feral.svg"
  16377. }
  16378. },
  16379. },
  16380. [
  16381. {
  16382. name: "Normal",
  16383. height: math.unit(9 + 6 / 12, "feet"),
  16384. default: true
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(6 + 2 / 12, "feet"),
  16393. weight: math.unit(168, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/elise/front.svg",
  16397. extra: 276 / 271
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(6 + 2 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16411. {
  16412. front: {
  16413. height: math.unit(5 + 10 / 12, "feet"),
  16414. weight: math.unit(210, "lb"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/glade/front.svg",
  16418. extra: 258 / 247,
  16419. bottom: 0.008
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(5 + 10 / 12, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16433. {
  16434. front: {
  16435. height: math.unit(5 + 10 / 12, "feet"),
  16436. weight: math.unit(129, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/rina/front.svg",
  16440. extra: 266 / 255,
  16441. bottom: 0.005
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(5 + 10 / 12, "feet"),
  16449. default: true
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(6 + 1 / 12, "feet"),
  16458. weight: math.unit(192, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/veronica/front.svg",
  16462. extra: 319 / 309,
  16463. bottom: 0.005
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(6 + 1 / 12, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(9 + 3 / 12, "feet"),
  16480. weight: math.unit(1100, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/braxton/front.svg",
  16484. extra: 1057 / 984,
  16485. bottom: 0.05
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(9 + 3 / 12, "feet")
  16493. },
  16494. {
  16495. name: "Giant",
  16496. height: math.unit(300, "feet"),
  16497. default: true
  16498. },
  16499. {
  16500. name: "Macro",
  16501. height: math.unit(700, "feet")
  16502. },
  16503. {
  16504. name: "Megamacro",
  16505. height: math.unit(6000, "feet")
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(6 + 7 / 12, "feet"),
  16514. weight: math.unit(150, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/blue-feyonics/front.svg",
  16518. extra: 1403 / 1306,
  16519. bottom: 0.047
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(6 + 7 / 12, "feet"),
  16527. default: true
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(1.8, "meters"),
  16536. weight: math.unit(60, "kg"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/maxwell/front.svg",
  16540. extra: 2060 / 1873
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Micro",
  16547. height: math.unit(1, "mm")
  16548. },
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(1.8, "meter"),
  16552. default: true
  16553. },
  16554. {
  16555. name: "Macro",
  16556. height: math.unit(30, "meters")
  16557. },
  16558. {
  16559. name: "Megamacro",
  16560. height: math.unit(10, "km")
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(6, "feet"),
  16569. weight: math.unit(150, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/jack/front.svg",
  16573. extra: 1754 / 1640,
  16574. bottom: 0.01
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(80000, "feet"),
  16582. default: true
  16583. },
  16584. {
  16585. name: "Max size",
  16586. height: math.unit(10, "lightyears")
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16592. {
  16593. urban: {
  16594. height: math.unit(5, "feet"),
  16595. weight: math.unit(240, "lb"),
  16596. name: "Urban",
  16597. image: {
  16598. source: "./media/characters/cafat/urban.svg",
  16599. extra: 1223/1126,
  16600. bottom: 205/1428
  16601. }
  16602. },
  16603. summer: {
  16604. height: math.unit(5, "feet"),
  16605. weight: math.unit(240, "lb"),
  16606. name: "Summer",
  16607. image: {
  16608. source: "./media/characters/cafat/summer.svg",
  16609. extra: 1223/1126,
  16610. bottom: 205/1428
  16611. }
  16612. },
  16613. winter: {
  16614. height: math.unit(5, "feet"),
  16615. weight: math.unit(240, "lb"),
  16616. name: "Winter",
  16617. image: {
  16618. source: "./media/characters/cafat/winter.svg",
  16619. extra: 1223/1126,
  16620. bottom: 205/1428
  16621. }
  16622. },
  16623. lingerie: {
  16624. height: math.unit(5, "feet"),
  16625. weight: math.unit(240, "lb"),
  16626. name: "Lingerie",
  16627. image: {
  16628. source: "./media/characters/cafat/lingerie.svg",
  16629. extra: 1223/1126,
  16630. bottom: 205/1428
  16631. }
  16632. },
  16633. upright: {
  16634. height: math.unit(6.3, "feet"),
  16635. weight: math.unit(240, "lb"),
  16636. name: "Upright",
  16637. image: {
  16638. source: "./media/characters/cafat/upright.svg",
  16639. bottom: 0.01
  16640. }
  16641. },
  16642. uprightFull: {
  16643. height: math.unit(6.3, "feet"),
  16644. weight: math.unit(240, "lb"),
  16645. name: "Upright (Full)",
  16646. image: {
  16647. source: "./media/characters/cafat/upright-full.svg",
  16648. bottom: 0.01
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Small",
  16655. height: math.unit(5, "feet"),
  16656. default: true
  16657. },
  16658. {
  16659. name: "Large",
  16660. height: math.unit(13, "feet")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(6, "feet"),
  16669. weight: math.unit(150, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/verin-raharra/front.svg",
  16673. extra: 5019 / 4835,
  16674. bottom: 0.023
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(7 + 5 / 12, "feet"),
  16682. default: true
  16683. },
  16684. {
  16685. name: "Upsized",
  16686. height: math.unit(20, "feet")
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16692. {
  16693. front: {
  16694. height: math.unit(7, "feet"),
  16695. weight: math.unit(230, "lb"),
  16696. name: "Front",
  16697. image: {
  16698. source: "./media/characters/nakata/front.svg",
  16699. extra: 1.005,
  16700. bottom: 0.01
  16701. }
  16702. },
  16703. },
  16704. [
  16705. {
  16706. name: "Normal",
  16707. height: math.unit(7, "feet"),
  16708. default: true
  16709. },
  16710. {
  16711. name: "Big",
  16712. height: math.unit(14, "feet")
  16713. },
  16714. {
  16715. name: "Macro",
  16716. height: math.unit(400, "feet")
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(4.91, "feet"),
  16725. weight: math.unit(100, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/lily/front.svg",
  16729. extra: 1585 / 1415,
  16730. bottom: 0.02
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Normal",
  16737. height: math.unit(4.91, "feet"),
  16738. default: true
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16744. {
  16745. laying: {
  16746. height: math.unit(4 + 4 / 12, "feet"),
  16747. weight: math.unit(600, "lb"),
  16748. name: "Laying",
  16749. image: {
  16750. source: "./media/characters/sheila/laying.svg",
  16751. extra: 1333 / 1265,
  16752. bottom: 0.16
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(4 + 4 / 12, "feet"),
  16760. default: true
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(6, "feet"),
  16769. weight: math.unit(190, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/sax/front.svg",
  16773. extra: 1187 / 973,
  16774. bottom: 0.042
  16775. }
  16776. },
  16777. },
  16778. [
  16779. {
  16780. name: "Micro",
  16781. height: math.unit(4, "inches"),
  16782. default: true
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16788. {
  16789. front: {
  16790. height: math.unit(6, "feet"),
  16791. weight: math.unit(150, "lb"),
  16792. name: "Front",
  16793. image: {
  16794. source: "./media/characters/pandora/front.svg",
  16795. extra: 2720 / 2556,
  16796. bottom: 0.015
  16797. }
  16798. },
  16799. back: {
  16800. height: math.unit(6, "feet"),
  16801. weight: math.unit(150, "lb"),
  16802. name: "Back",
  16803. image: {
  16804. source: "./media/characters/pandora/back.svg",
  16805. extra: 2720 / 2556,
  16806. bottom: 0.01
  16807. }
  16808. },
  16809. beans: {
  16810. height: math.unit(6 / 8, "feet"),
  16811. name: "Beans",
  16812. image: {
  16813. source: "./media/characters/pandora/beans.svg"
  16814. }
  16815. },
  16816. collar: {
  16817. height: math.unit(0.31, "feet"),
  16818. name: "Collar",
  16819. image: {
  16820. source: "./media/characters/pandora/collar.svg"
  16821. }
  16822. },
  16823. skirt: {
  16824. height: math.unit(6, "feet"),
  16825. weight: math.unit(150, "lb"),
  16826. name: "Skirt",
  16827. image: {
  16828. source: "./media/characters/pandora/skirt.svg",
  16829. extra: 1622 / 1525,
  16830. bottom: 0.015
  16831. }
  16832. },
  16833. hoodie: {
  16834. height: math.unit(6, "feet"),
  16835. weight: math.unit(150, "lb"),
  16836. name: "Hoodie",
  16837. image: {
  16838. source: "./media/characters/pandora/hoodie.svg",
  16839. extra: 1622 / 1525,
  16840. bottom: 0.015
  16841. }
  16842. },
  16843. casual: {
  16844. height: math.unit(6, "feet"),
  16845. weight: math.unit(150, "lb"),
  16846. name: "Casual",
  16847. image: {
  16848. source: "./media/characters/pandora/casual.svg",
  16849. extra: 1622 / 1525,
  16850. bottom: 0.015
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(6, "feet")
  16858. },
  16859. {
  16860. name: "Big Steppy",
  16861. height: math.unit(1, "km"),
  16862. default: true
  16863. },
  16864. {
  16865. name: "Galactic Steppy",
  16866. height: math.unit(2, "gigameters")
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16872. {
  16873. side: {
  16874. height: math.unit(10, "feet"),
  16875. weight: math.unit(800, "kg"),
  16876. name: "Side",
  16877. image: {
  16878. source: "./media/characters/venio-darcony/side.svg",
  16879. extra: 1373 / 1003,
  16880. bottom: 0.037
  16881. }
  16882. },
  16883. front: {
  16884. height: math.unit(19, "feet"),
  16885. weight: math.unit(800, "kg"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/venio-darcony/front.svg"
  16889. }
  16890. },
  16891. back: {
  16892. height: math.unit(19, "feet"),
  16893. weight: math.unit(800, "kg"),
  16894. name: "Back",
  16895. image: {
  16896. source: "./media/characters/venio-darcony/back.svg"
  16897. }
  16898. },
  16899. sideNsfw: {
  16900. height: math.unit(10, "feet"),
  16901. weight: math.unit(800, "kg"),
  16902. name: "Side (NSFW)",
  16903. image: {
  16904. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16905. extra: 1373 / 1003,
  16906. bottom: 0.037
  16907. }
  16908. },
  16909. frontNsfw: {
  16910. height: math.unit(19, "feet"),
  16911. weight: math.unit(800, "kg"),
  16912. name: "Front (NSFW)",
  16913. image: {
  16914. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16915. }
  16916. },
  16917. backNsfw: {
  16918. height: math.unit(19, "feet"),
  16919. weight: math.unit(800, "kg"),
  16920. name: "Back (NSFW)",
  16921. image: {
  16922. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16923. }
  16924. },
  16925. sideArmored: {
  16926. height: math.unit(10, "feet"),
  16927. weight: math.unit(800, "kg"),
  16928. name: "Side (Armored)",
  16929. image: {
  16930. source: "./media/characters/venio-darcony/side-armored.svg",
  16931. extra: 1373 / 1003,
  16932. bottom: 0.037
  16933. }
  16934. },
  16935. frontArmored: {
  16936. height: math.unit(19, "feet"),
  16937. weight: math.unit(900, "kg"),
  16938. name: "Front (Armored)",
  16939. image: {
  16940. source: "./media/characters/venio-darcony/front-armored.svg"
  16941. }
  16942. },
  16943. backArmored: {
  16944. height: math.unit(19, "feet"),
  16945. weight: math.unit(900, "kg"),
  16946. name: "Back (Armored)",
  16947. image: {
  16948. source: "./media/characters/venio-darcony/back-armored.svg"
  16949. }
  16950. },
  16951. sword: {
  16952. height: math.unit(10, "feet"),
  16953. weight: math.unit(50, "lb"),
  16954. name: "Sword",
  16955. image: {
  16956. source: "./media/characters/venio-darcony/sword.svg"
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(10, "feet")
  16964. },
  16965. {
  16966. name: "Macro",
  16967. height: math.unit(130, "feet"),
  16968. default: true
  16969. },
  16970. {
  16971. name: "Macro+",
  16972. height: math.unit(240, "feet")
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16978. {
  16979. front: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Front",
  16983. image: {
  16984. source: "./media/characters/veski/front.svg",
  16985. extra: 1299 / 1225,
  16986. bottom: 0.04
  16987. }
  16988. },
  16989. back: {
  16990. height: math.unit(6, "feet"),
  16991. weight: math.unit(150, "lb"),
  16992. name: "Back",
  16993. image: {
  16994. source: "./media/characters/veski/back.svg",
  16995. extra: 1299 / 1225,
  16996. bottom: 0.008
  16997. }
  16998. },
  16999. maw: {
  17000. height: math.unit(1.5 * 1.21, "feet"),
  17001. name: "Maw",
  17002. image: {
  17003. source: "./media/characters/veski/maw.svg"
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Macro",
  17010. height: math.unit(2, "km"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(5 + 7 / 12, "feet"),
  17020. name: "Front",
  17021. image: {
  17022. source: "./media/characters/isabelle/front.svg",
  17023. extra: 2130 / 1976,
  17024. bottom: 0.05
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Supermicro",
  17031. height: math.unit(10, "micrometers")
  17032. },
  17033. {
  17034. name: "Micro",
  17035. height: math.unit(1, "inch")
  17036. },
  17037. {
  17038. name: "Tiny",
  17039. height: math.unit(5, "inches")
  17040. },
  17041. {
  17042. name: "Standard",
  17043. height: math.unit(5 + 7 / 12, "inches")
  17044. },
  17045. {
  17046. name: "Macro",
  17047. height: math.unit(80, "meters"),
  17048. default: true
  17049. },
  17050. {
  17051. name: "Megamacro",
  17052. height: math.unit(250, "meters")
  17053. },
  17054. {
  17055. name: "Gigamacro",
  17056. height: math.unit(5, "km")
  17057. },
  17058. {
  17059. name: "Cosmic",
  17060. height: math.unit(2.5e6, "miles")
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(6, "feet"),
  17069. weight: math.unit(150, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/hanzo/front.svg",
  17073. extra: 374 / 344,
  17074. bottom: 0.02
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(8, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(7, "feet"),
  17091. weight: math.unit(130, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/anna/front.svg",
  17095. extra: 169 / 145,
  17096. bottom: 0.06
  17097. }
  17098. },
  17099. full: {
  17100. height: math.unit(4.96, "feet"),
  17101. weight: math.unit(220, "lb"),
  17102. name: "Full",
  17103. image: {
  17104. source: "./media/characters/anna/full.svg",
  17105. extra: 138 / 114,
  17106. bottom: 0.15
  17107. }
  17108. },
  17109. tongue: {
  17110. height: math.unit(2.53, "feet"),
  17111. name: "Tongue",
  17112. image: {
  17113. source: "./media/characters/anna/tongue.svg"
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(7, "feet"),
  17121. default: true
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17127. {
  17128. front: {
  17129. height: math.unit(7, "feet"),
  17130. weight: math.unit(150, "lb"),
  17131. name: "Front",
  17132. image: {
  17133. source: "./media/characters/ian-corvid/front.svg",
  17134. extra: 150 / 142,
  17135. bottom: 0.02
  17136. }
  17137. },
  17138. back: {
  17139. height: math.unit(7, "feet"),
  17140. weight: math.unit(150, "lb"),
  17141. name: "Back",
  17142. image: {
  17143. source: "./media/characters/ian-corvid/back.svg",
  17144. extra: 150 / 143,
  17145. bottom: 0.01
  17146. }
  17147. },
  17148. stomping: {
  17149. height: math.unit(7, "feet"),
  17150. weight: math.unit(150, "lb"),
  17151. name: "Stomping",
  17152. image: {
  17153. source: "./media/characters/ian-corvid/stomping.svg",
  17154. extra: 76 / 72
  17155. }
  17156. },
  17157. sitting: {
  17158. height: math.unit(7 / 1.8, "feet"),
  17159. weight: math.unit(150, "lb"),
  17160. name: "Sitting",
  17161. image: {
  17162. source: "./media/characters/ian-corvid/sitting.svg",
  17163. extra: 1400 / 1269,
  17164. bottom: 0.15
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Tiny Microw",
  17171. height: math.unit(1, "inch")
  17172. },
  17173. {
  17174. name: "Microw",
  17175. height: math.unit(6, "inches")
  17176. },
  17177. {
  17178. name: "Crow",
  17179. height: math.unit(7 + 1 / 12, "feet"),
  17180. default: true
  17181. },
  17182. {
  17183. name: "Macrow",
  17184. height: math.unit(176, "feet")
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17190. {
  17191. front: {
  17192. height: math.unit(5 + 7 / 12, "feet"),
  17193. weight: math.unit(147, "lb"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/natalie-kellon/front.svg",
  17197. extra: 1214 / 1141,
  17198. bottom: 0.02
  17199. }
  17200. },
  17201. },
  17202. [
  17203. {
  17204. name: "Micro",
  17205. height: math.unit(1 / 16, "inch")
  17206. },
  17207. {
  17208. name: "Tiny",
  17209. height: math.unit(4, "inches")
  17210. },
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(5 + 7 / 12, "feet"),
  17214. default: true
  17215. },
  17216. {
  17217. name: "Amazon",
  17218. height: math.unit(12, "feet")
  17219. },
  17220. {
  17221. name: "Giantess",
  17222. height: math.unit(160, "meters")
  17223. },
  17224. {
  17225. name: "Titaness",
  17226. height: math.unit(800, "meters")
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(6, "feet"),
  17235. weight: math.unit(150, "lb"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/alluria/front.svg",
  17239. extra: 806 / 738,
  17240. bottom: 0.01
  17241. }
  17242. },
  17243. side: {
  17244. height: math.unit(6, "feet"),
  17245. weight: math.unit(150, "lb"),
  17246. name: "Side",
  17247. image: {
  17248. source: "./media/characters/alluria/side.svg",
  17249. extra: 800 / 750,
  17250. }
  17251. },
  17252. back: {
  17253. height: math.unit(6, "feet"),
  17254. weight: math.unit(150, "lb"),
  17255. name: "Back",
  17256. image: {
  17257. source: "./media/characters/alluria/back.svg",
  17258. extra: 806 / 738,
  17259. }
  17260. },
  17261. frontMaid: {
  17262. height: math.unit(6, "feet"),
  17263. weight: math.unit(150, "lb"),
  17264. name: "Front (Maid)",
  17265. image: {
  17266. source: "./media/characters/alluria/front-maid.svg",
  17267. extra: 806 / 738,
  17268. bottom: 0.01
  17269. }
  17270. },
  17271. sideMaid: {
  17272. height: math.unit(6, "feet"),
  17273. weight: math.unit(150, "lb"),
  17274. name: "Side (Maid)",
  17275. image: {
  17276. source: "./media/characters/alluria/side-maid.svg",
  17277. extra: 800 / 750,
  17278. bottom: 0.005
  17279. }
  17280. },
  17281. backMaid: {
  17282. height: math.unit(6, "feet"),
  17283. weight: math.unit(150, "lb"),
  17284. name: "Back (Maid)",
  17285. image: {
  17286. source: "./media/characters/alluria/back-maid.svg",
  17287. extra: 806 / 738,
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Micro",
  17294. height: math.unit(6, "inches"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(6, "feet"),
  17304. weight: math.unit(150, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/kyle/front.svg",
  17308. extra: 1069 / 962,
  17309. bottom: 77.228 / 1727.45
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Macro",
  17316. height: math.unit(150, "feet"),
  17317. default: true
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17323. {
  17324. front: {
  17325. height: math.unit(6, "feet"),
  17326. weight: math.unit(300, "lb"),
  17327. name: "Front",
  17328. image: {
  17329. source: "./media/characters/duncan/front.svg",
  17330. extra: 1650 / 1482,
  17331. bottom: 0.05
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Macro",
  17338. height: math.unit(100, "feet"),
  17339. default: true
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17345. {
  17346. front: {
  17347. height: math.unit(5 + 4 / 12, "feet"),
  17348. weight: math.unit(220, "lb"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/memory/front.svg",
  17352. extra: 3641 / 3545,
  17353. bottom: 0.03
  17354. }
  17355. },
  17356. back: {
  17357. height: math.unit(5 + 4 / 12, "feet"),
  17358. weight: math.unit(220, "lb"),
  17359. name: "Back",
  17360. image: {
  17361. source: "./media/characters/memory/back.svg",
  17362. extra: 3641 / 3545,
  17363. bottom: 0.025
  17364. }
  17365. },
  17366. frontSkirt: {
  17367. height: math.unit(5 + 4 / 12, "feet"),
  17368. weight: math.unit(220, "lb"),
  17369. name: "Front (Skirt)",
  17370. image: {
  17371. source: "./media/characters/memory/front-skirt.svg",
  17372. extra: 3641 / 3545,
  17373. bottom: 0.03
  17374. }
  17375. },
  17376. frontDress: {
  17377. height: math.unit(5 + 4 / 12, "feet"),
  17378. weight: math.unit(220, "lb"),
  17379. name: "Front (Dress)",
  17380. image: {
  17381. source: "./media/characters/memory/front-dress.svg",
  17382. extra: 3641 / 3545,
  17383. bottom: 0.03
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Micro",
  17390. height: math.unit(6, "inches"),
  17391. default: true
  17392. },
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(5 + 4 / 12, "feet")
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(4 + 11 / 12, "feet"),
  17404. weight: math.unit(100, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/luno/front.svg",
  17408. extra: 1535 / 1487,
  17409. bottom: 0.03
  17410. }
  17411. },
  17412. },
  17413. [
  17414. {
  17415. name: "Micro",
  17416. height: math.unit(3, "inches")
  17417. },
  17418. {
  17419. name: "Normal",
  17420. height: math.unit(4 + 11 / 12, "feet"),
  17421. default: true
  17422. },
  17423. {
  17424. name: "Macro",
  17425. height: math.unit(300, "feet")
  17426. },
  17427. {
  17428. name: "Megamacro",
  17429. height: math.unit(700, "miles")
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(6 + 2 / 12, "feet"),
  17438. weight: math.unit(170, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/jamesy/front.svg",
  17442. extra: 440 / 382,
  17443. bottom: 0.005
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Micro",
  17450. height: math.unit(3, "inches")
  17451. },
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(6 + 2 / 12, "feet"),
  17455. default: true
  17456. },
  17457. {
  17458. name: "Macro",
  17459. height: math.unit(300, "feet")
  17460. },
  17461. {
  17462. name: "Megamacro",
  17463. height: math.unit(700, "miles")
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(6, "feet"),
  17472. weight: math.unit(160, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/mark/front.svg",
  17476. extra: 3300 / 3100,
  17477. bottom: 136.42 / 3440.47
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Macro",
  17484. height: math.unit(120, "meters")
  17485. },
  17486. {
  17487. name: "Bigger Macro",
  17488. height: math.unit(350, "meters")
  17489. },
  17490. {
  17491. name: "Megamacro",
  17492. height: math.unit(8, "km"),
  17493. default: true
  17494. },
  17495. {
  17496. name: "Continental",
  17497. height: math.unit(4550, "km")
  17498. },
  17499. {
  17500. name: "Planetary",
  17501. height: math.unit(65000, "km")
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17507. {
  17508. front: {
  17509. height: math.unit(6, "feet"),
  17510. weight: math.unit(400, "lb"),
  17511. name: "Front",
  17512. image: {
  17513. source: "./media/characters/mac/front.svg",
  17514. extra: 1048 / 987.7,
  17515. bottom: 60 / 1107.6,
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Macro",
  17522. height: math.unit(500, "feet"),
  17523. default: true
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17529. {
  17530. front: {
  17531. height: math.unit(5 + 2 / 12, "feet"),
  17532. weight: math.unit(190, "lb"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/bari/front.svg",
  17536. extra: 3156 / 2880,
  17537. bottom: 0.03
  17538. }
  17539. },
  17540. back: {
  17541. height: math.unit(5 + 2 / 12, "feet"),
  17542. weight: math.unit(190, "lb"),
  17543. name: "Back",
  17544. image: {
  17545. source: "./media/characters/bari/back.svg",
  17546. extra: 3260 / 2834,
  17547. bottom: 0.025
  17548. }
  17549. },
  17550. frontPlush: {
  17551. height: math.unit(5 + 2 / 12, "feet"),
  17552. weight: math.unit(190, "lb"),
  17553. name: "Front (Plush)",
  17554. image: {
  17555. source: "./media/characters/bari/front-plush.svg",
  17556. extra: 1112 / 1061,
  17557. bottom: 0.002
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Micro",
  17564. height: math.unit(3, "inches")
  17565. },
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(5 + 2 / 12, "feet"),
  17569. default: true
  17570. },
  17571. {
  17572. name: "Macro",
  17573. height: math.unit(20, "feet")
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6 + 1 / 12, "feet"),
  17582. weight: math.unit(275, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/hunter-misha-raven/front.svg"
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Mortal",
  17592. height: math.unit(6 + 1 / 12, "feet")
  17593. },
  17594. {
  17595. name: "Divine",
  17596. height: math.unit(1.12134e34, "parsecs"),
  17597. default: true
  17598. },
  17599. ]
  17600. ))
  17601. characterMakers.push(() => makeCharacter(
  17602. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17603. {
  17604. front: {
  17605. height: math.unit(6 + 3 / 12, "feet"),
  17606. weight: math.unit(220, "lb"),
  17607. name: "Front",
  17608. image: {
  17609. source: "./media/characters/max-calore/front.svg",
  17610. extra: 1700 / 1648,
  17611. bottom: 0.01
  17612. }
  17613. },
  17614. back: {
  17615. height: math.unit(6 + 3 / 12, "feet"),
  17616. weight: math.unit(220, "lb"),
  17617. name: "Back",
  17618. image: {
  17619. source: "./media/characters/max-calore/back.svg",
  17620. extra: 1700 / 1648,
  17621. bottom: 0.01
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(6 + 3 / 12, "feet"),
  17629. default: true
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17635. {
  17636. side: {
  17637. height: math.unit(2 + 8 / 12, "feet"),
  17638. weight: math.unit(99, "lb"),
  17639. name: "Side",
  17640. image: {
  17641. source: "./media/characters/aspen/side.svg",
  17642. extra: 152 / 138,
  17643. bottom: 0.032
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(2 + 8 / 12, "feet"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17657. {
  17658. side: {
  17659. height: math.unit(3 + 2 / 12, "feet"),
  17660. weight: math.unit(224, "lb"),
  17661. name: "Side",
  17662. image: {
  17663. source: "./media/characters/sheila-feral-wolf/side.svg",
  17664. extra: 179 / 166,
  17665. bottom: 0.03
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(3 + 2 / 12, "feet"),
  17673. default: true
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17679. {
  17680. side: {
  17681. height: math.unit(1 + 9 / 12, "feet"),
  17682. weight: math.unit(38, "lb"),
  17683. name: "Side",
  17684. image: {
  17685. source: "./media/characters/michelle/side.svg",
  17686. extra: 147 / 136.7,
  17687. bottom: 0.03
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Normal",
  17694. height: math.unit(1 + 9 / 12, "feet"),
  17695. default: true
  17696. },
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17701. {
  17702. front: {
  17703. height: math.unit(1.54, "feet"),
  17704. weight: math.unit(50, "lb"),
  17705. name: "Front",
  17706. image: {
  17707. source: "./media/characters/nino/front.svg"
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(1.54, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(1.49, "feet"),
  17724. weight: math.unit(45, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/viola/front.svg"
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(1.49, "feet"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(6 + 5 / 12, "feet"),
  17744. weight: math.unit(580, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/atlas/front.svg",
  17748. extra: 298.5 / 290,
  17749. bottom: 0.015
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(6 + 5 / 12, "feet"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17763. {
  17764. side: {
  17765. height: math.unit(15.6, "inches"),
  17766. weight: math.unit(10, "lb"),
  17767. name: "Side",
  17768. image: {
  17769. source: "./media/characters/davy/side.svg",
  17770. extra: 200 / 170,
  17771. bottom: 0.01
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(15.6, "inches"),
  17779. default: true
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17785. {
  17786. side: {
  17787. height: math.unit(4 + 8 / 12, "feet"),
  17788. weight: math.unit(166, "lb"),
  17789. name: "Side",
  17790. image: {
  17791. source: "./media/characters/fiona/side.svg",
  17792. extra: 232 / 220,
  17793. bottom: 0.03
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(4 + 8 / 12, "feet"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17807. {
  17808. front: {
  17809. height: math.unit(26, "inches"),
  17810. weight: math.unit(35, "lb"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/lyla/front.svg",
  17814. bottom: 0.1
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(3, "feet"),
  17822. default: true
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17828. {
  17829. side: {
  17830. height: math.unit(1.8, "feet"),
  17831. weight: math.unit(44, "lb"),
  17832. name: "Side",
  17833. image: {
  17834. source: "./media/characters/perseus/side.svg",
  17835. bottom: 0.21
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(1.8, "feet"),
  17843. default: true
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17849. {
  17850. side: {
  17851. height: math.unit(4 + 2 / 12, "feet"),
  17852. weight: math.unit(20, "lb"),
  17853. name: "Side",
  17854. image: {
  17855. source: "./media/characters/remus/side.svg"
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(4 + 2 / 12, "feet"),
  17863. default: true
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17869. {
  17870. front: {
  17871. height: math.unit(4 + 11 / 12, "feet"),
  17872. weight: math.unit(114, "lb"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/raf/front.svg",
  17876. extra: 1504/1339,
  17877. bottom: 26/1530
  17878. }
  17879. },
  17880. side: {
  17881. height: math.unit(4 + 11 / 12, "feet"),
  17882. weight: math.unit(114, "lb"),
  17883. name: "Side",
  17884. image: {
  17885. source: "./media/characters/raf/side.svg",
  17886. extra: 1466/1316,
  17887. bottom: 29/1495
  17888. }
  17889. },
  17890. },
  17891. [
  17892. {
  17893. name: "Micro",
  17894. height: math.unit(2, "inches")
  17895. },
  17896. {
  17897. name: "Normal",
  17898. height: math.unit(4 + 11 / 12, "feet"),
  17899. default: true
  17900. },
  17901. {
  17902. name: "Macro",
  17903. height: math.unit(70, "feet")
  17904. },
  17905. ]
  17906. ))
  17907. characterMakers.push(() => makeCharacter(
  17908. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17909. {
  17910. front: {
  17911. height: math.unit(1.5, "meters"),
  17912. weight: math.unit(68, "kg"),
  17913. name: "Front",
  17914. image: {
  17915. source: "./media/characters/liam-einarr/front.svg",
  17916. extra: 2822 / 2666
  17917. }
  17918. },
  17919. back: {
  17920. height: math.unit(1.5, "meters"),
  17921. weight: math.unit(68, "kg"),
  17922. name: "Back",
  17923. image: {
  17924. source: "./media/characters/liam-einarr/back.svg",
  17925. extra: 2822 / 2666,
  17926. bottom: 0.015
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(1.5, "meters"),
  17934. default: true
  17935. },
  17936. {
  17937. name: "Macro",
  17938. height: math.unit(150, "meters")
  17939. },
  17940. {
  17941. name: "Megamacro",
  17942. height: math.unit(35, "km")
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(6, "feet"),
  17951. weight: math.unit(75, "kg"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/linda/front.svg",
  17955. extra: 930 / 874,
  17956. bottom: 0.004
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(6, "feet"),
  17964. default: true
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17970. {
  17971. front: {
  17972. height: math.unit(6 + 8 / 12, "feet"),
  17973. weight: math.unit(220, "lb"),
  17974. name: "Front",
  17975. image: {
  17976. source: "./media/characters/caylex/front.svg",
  17977. extra: 821 / 772,
  17978. bottom: 0.07
  17979. }
  17980. },
  17981. back: {
  17982. height: math.unit(6 + 8 / 12, "feet"),
  17983. weight: math.unit(220, "lb"),
  17984. name: "Back",
  17985. image: {
  17986. source: "./media/characters/caylex/back.svg",
  17987. extra: 821 / 772,
  17988. bottom: 0.022
  17989. }
  17990. },
  17991. hand: {
  17992. height: math.unit(1.25, "feet"),
  17993. name: "Hand",
  17994. image: {
  17995. source: "./media/characters/caylex/hand.svg"
  17996. }
  17997. },
  17998. foot: {
  17999. height: math.unit(1.6, "feet"),
  18000. name: "Foot",
  18001. image: {
  18002. source: "./media/characters/caylex/foot.svg"
  18003. }
  18004. },
  18005. armored: {
  18006. height: math.unit(6 + 8 / 12, "feet"),
  18007. weight: math.unit(250, "lb"),
  18008. name: "Armored",
  18009. image: {
  18010. source: "./media/characters/caylex/armored.svg",
  18011. extra: 1420 / 1310,
  18012. bottom: 0.045
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(6 + 8 / 12, "feet"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Normal+",
  18024. height: math.unit(12, "feet")
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(7 + 6 / 12, "feet"),
  18033. weight: math.unit(288, "lb"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/alana/front.svg",
  18037. extra: 679 / 653,
  18038. bottom: 22.5 / 701
  18039. }
  18040. },
  18041. },
  18042. [
  18043. {
  18044. name: "Normal",
  18045. height: math.unit(7 + 6 / 12, "feet")
  18046. },
  18047. {
  18048. name: "Large",
  18049. height: math.unit(50, "feet")
  18050. },
  18051. {
  18052. name: "Macro",
  18053. height: math.unit(100, "feet"),
  18054. default: true
  18055. },
  18056. {
  18057. name: "Macro+",
  18058. height: math.unit(200, "feet")
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18064. {
  18065. front: {
  18066. height: math.unit(6 + 1 / 12, "feet"),
  18067. weight: math.unit(210, "lb"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/hasani/front.svg",
  18071. extra: 244 / 232,
  18072. bottom: 0.01
  18073. }
  18074. },
  18075. back: {
  18076. height: math.unit(6 + 1 / 12, "feet"),
  18077. weight: math.unit(210, "lb"),
  18078. name: "Back",
  18079. image: {
  18080. source: "./media/characters/hasani/back.svg",
  18081. extra: 244 / 232,
  18082. bottom: 0.01
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(6 + 1 / 12, "feet")
  18090. },
  18091. {
  18092. name: "Macro",
  18093. height: math.unit(175, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(1.82, "meters"),
  18103. weight: math.unit(140, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/nita/front.svg",
  18107. extra: 2473 / 2363,
  18108. bottom: 0.01
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(1.82, "m")
  18116. },
  18117. {
  18118. name: "Macro",
  18119. height: math.unit(300, "m")
  18120. },
  18121. {
  18122. name: "Mistake Canon",
  18123. height: math.unit(0.5, "miles"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Big Mistake",
  18128. height: math.unit(13, "miles")
  18129. },
  18130. {
  18131. name: "Playing God",
  18132. height: math.unit(2450, "miles")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(4, "feet"),
  18141. weight: math.unit(120, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/shiriko/front.svg",
  18145. extra: 970/934,
  18146. bottom: 5/975
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(4, "feet"),
  18154. default: true
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(6, "feet"),
  18163. name: "front",
  18164. image: {
  18165. source: "./media/characters/deja/front.svg",
  18166. extra: 926 / 840,
  18167. bottom: 0.07
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Planck Length",
  18174. height: math.unit(1.6e-35, "meters")
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(30.48, "meters"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Universal",
  18183. height: math.unit(8.8e26, "meters")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18189. {
  18190. side: {
  18191. height: math.unit(8, "feet"),
  18192. weight: math.unit(6300, "lb"),
  18193. name: "Side",
  18194. image: {
  18195. source: "./media/characters/anima/side.svg",
  18196. bottom: 0.035
  18197. }
  18198. },
  18199. },
  18200. [
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(8, "feet"),
  18204. default: true
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(8, "feet"),
  18213. weight: math.unit(350, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/bianca/front.svg",
  18217. extra: 234 / 225,
  18218. bottom: 0.03
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(8, "feet"),
  18226. default: true
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(6, "feet"),
  18235. weight: math.unit(150, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/adinia/front.svg",
  18239. extra: 1845 / 1672,
  18240. bottom: 0.02
  18241. }
  18242. },
  18243. back: {
  18244. height: math.unit(6, "feet"),
  18245. weight: math.unit(150, "lb"),
  18246. name: "Back",
  18247. image: {
  18248. source: "./media/characters/adinia/back.svg",
  18249. extra: 1845 / 1672,
  18250. bottom: 0.002
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(11 + 5 / 12, "feet"),
  18258. default: true
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(3, "meters"),
  18267. weight: math.unit(200, "kg"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/lykasa/front.svg",
  18271. extra: 1076 / 976,
  18272. bottom: 0.06
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(3, "meters")
  18280. },
  18281. {
  18282. name: "Kaiju",
  18283. height: math.unit(120, "meters"),
  18284. default: true
  18285. },
  18286. {
  18287. name: "Mega Kaiju",
  18288. height: math.unit(240, "km")
  18289. },
  18290. {
  18291. name: "Giga Kaiju",
  18292. height: math.unit(400, "megameters")
  18293. },
  18294. {
  18295. name: "Tera Kaiju",
  18296. height: math.unit(800, "gigameters")
  18297. },
  18298. {
  18299. name: "Kaiju Dragon Goddess",
  18300. height: math.unit(26, "zettaparsecs")
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18306. {
  18307. side: {
  18308. height: math.unit(283 / 124 * 6, "feet"),
  18309. weight: math.unit(35000, "lb"),
  18310. name: "Side",
  18311. image: {
  18312. source: "./media/characters/malfaren/side.svg",
  18313. extra: 1310/529,
  18314. bottom: 24/1334
  18315. }
  18316. },
  18317. front: {
  18318. height: math.unit(22.36, "feet"),
  18319. weight: math.unit(35000, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/malfaren/front.svg",
  18323. extra: 1237/1115,
  18324. bottom: 32/1269
  18325. }
  18326. },
  18327. maw: {
  18328. height: math.unit(6.9, "feet"),
  18329. name: "Maw",
  18330. image: {
  18331. source: "./media/characters/malfaren/maw.svg"
  18332. }
  18333. },
  18334. dick: {
  18335. height: math.unit(6.19, "feet"),
  18336. name: "Dick",
  18337. image: {
  18338. source: "./media/characters/malfaren/dick.svg"
  18339. }
  18340. },
  18341. eye: {
  18342. height: math.unit(0.69, "feet"),
  18343. name: "Eye",
  18344. image: {
  18345. source: "./media/characters/malfaren/eye.svg"
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Big",
  18352. height: math.unit(283 / 162 * 6, "feet"),
  18353. },
  18354. {
  18355. name: "Bigger",
  18356. height: math.unit(283 / 124 * 6, "feet")
  18357. },
  18358. {
  18359. name: "Massive",
  18360. height: math.unit(283 / 92 * 6, "feet"),
  18361. default: true
  18362. },
  18363. {
  18364. name: "👀💦",
  18365. height: math.unit(283 / 73 * 6, "feet"),
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18371. {
  18372. front: {
  18373. height: math.unit(1.7, "m"),
  18374. weight: math.unit(70, "kg"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/kernel/front.svg",
  18378. extra: 222 / 210,
  18379. bottom: 0.007
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Nano",
  18386. height: math.unit(17, "micrometers")
  18387. },
  18388. {
  18389. name: "Micro",
  18390. height: math.unit(1.7, "mm")
  18391. },
  18392. {
  18393. name: "Small",
  18394. height: math.unit(1.7, "cm")
  18395. },
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(1.7, "m"),
  18399. default: true
  18400. },
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18405. {
  18406. front: {
  18407. height: math.unit(1.75, "meters"),
  18408. weight: math.unit(65, "kg"),
  18409. name: "Front",
  18410. image: {
  18411. source: "./media/characters/jayne-folest/front.svg",
  18412. extra: 2115 / 2007,
  18413. bottom: 0.02
  18414. }
  18415. },
  18416. back: {
  18417. height: math.unit(1.75, "meters"),
  18418. weight: math.unit(65, "kg"),
  18419. name: "Back",
  18420. image: {
  18421. source: "./media/characters/jayne-folest/back.svg",
  18422. extra: 2115 / 2007,
  18423. bottom: 0.005
  18424. }
  18425. },
  18426. frontClothed: {
  18427. height: math.unit(1.75, "meters"),
  18428. weight: math.unit(65, "kg"),
  18429. name: "Front (Clothed)",
  18430. image: {
  18431. source: "./media/characters/jayne-folest/front-clothed.svg",
  18432. extra: 2115 / 2007,
  18433. bottom: 0.035
  18434. }
  18435. },
  18436. hand: {
  18437. height: math.unit(1 / 1.260, "feet"),
  18438. name: "Hand",
  18439. image: {
  18440. source: "./media/characters/jayne-folest/hand.svg"
  18441. }
  18442. },
  18443. foot: {
  18444. height: math.unit(1 / 0.918, "feet"),
  18445. name: "Foot",
  18446. image: {
  18447. source: "./media/characters/jayne-folest/foot.svg"
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Micro",
  18454. height: math.unit(4, "cm")
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(1.75, "meters")
  18459. },
  18460. {
  18461. name: "Macro",
  18462. height: math.unit(47.5, "meters"),
  18463. default: true
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(180, "cm"),
  18472. weight: math.unit(70, "kg"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/algier/front.svg",
  18476. extra: 596 / 572,
  18477. bottom: 0.04
  18478. }
  18479. },
  18480. back: {
  18481. height: math.unit(180, "cm"),
  18482. weight: math.unit(70, "kg"),
  18483. name: "Back",
  18484. image: {
  18485. source: "./media/characters/algier/back.svg",
  18486. extra: 596 / 572,
  18487. bottom: 0.025
  18488. }
  18489. },
  18490. frontdressed: {
  18491. height: math.unit(180, "cm"),
  18492. weight: math.unit(150, "kg"),
  18493. name: "Front-dressed",
  18494. image: {
  18495. source: "./media/characters/algier/front-dressed.svg",
  18496. extra: 596 / 572,
  18497. bottom: 0.038
  18498. }
  18499. },
  18500. },
  18501. [
  18502. {
  18503. name: "Micro",
  18504. height: math.unit(5, "cm")
  18505. },
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(180, "cm"),
  18509. default: true
  18510. },
  18511. {
  18512. name: "Macro",
  18513. height: math.unit(64, "m")
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18519. {
  18520. upright: {
  18521. height: math.unit(7, "feet"),
  18522. weight: math.unit(300, "lb"),
  18523. name: "Upright",
  18524. image: {
  18525. source: "./media/characters/pretzel/upright.svg",
  18526. extra: 534 / 522,
  18527. bottom: 0.065
  18528. }
  18529. },
  18530. sprawling: {
  18531. height: math.unit(3.75, "feet"),
  18532. weight: math.unit(300, "lb"),
  18533. name: "Sprawling",
  18534. image: {
  18535. source: "./media/characters/pretzel/sprawling.svg",
  18536. extra: 314 / 281,
  18537. bottom: 0.1
  18538. }
  18539. },
  18540. tongue: {
  18541. height: math.unit(2, "feet"),
  18542. name: "Tongue",
  18543. image: {
  18544. source: "./media/characters/pretzel/tongue.svg"
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Normal",
  18551. height: math.unit(7, "feet"),
  18552. default: true
  18553. },
  18554. {
  18555. name: "Oversized",
  18556. height: math.unit(15, "feet")
  18557. },
  18558. {
  18559. name: "Huge",
  18560. height: math.unit(30, "feet")
  18561. },
  18562. {
  18563. name: "Macro",
  18564. height: math.unit(250, "feet")
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18570. {
  18571. sideFront: {
  18572. height: math.unit(5 + 2 / 12, "feet"),
  18573. weight: math.unit(120, "lb"),
  18574. name: "Front Side",
  18575. image: {
  18576. source: "./media/characters/roxi/side-front.svg",
  18577. extra: 2924 / 2717,
  18578. bottom: 0.08
  18579. }
  18580. },
  18581. sideBack: {
  18582. height: math.unit(5 + 2 / 12, "feet"),
  18583. weight: math.unit(120, "lb"),
  18584. name: "Back Side",
  18585. image: {
  18586. source: "./media/characters/roxi/side-back.svg",
  18587. extra: 2904 / 2693,
  18588. bottom: 0.06
  18589. }
  18590. },
  18591. front: {
  18592. height: math.unit(5 + 2 / 12, "feet"),
  18593. weight: math.unit(120, "lb"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/roxi/front.svg",
  18597. extra: 2028 / 1907,
  18598. bottom: 0.01
  18599. }
  18600. },
  18601. frontAlt: {
  18602. height: math.unit(5 + 2 / 12, "feet"),
  18603. weight: math.unit(120, "lb"),
  18604. name: "Front (Alt)",
  18605. image: {
  18606. source: "./media/characters/roxi/front-alt.svg",
  18607. extra: 1828 / 1798,
  18608. bottom: 0.01
  18609. }
  18610. },
  18611. sitting: {
  18612. height: math.unit(2.8, "feet"),
  18613. weight: math.unit(120, "lb"),
  18614. name: "Sitting",
  18615. image: {
  18616. source: "./media/characters/roxi/sitting.svg",
  18617. extra: 2660 / 2462,
  18618. bottom: 0.1
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(5 + 2 / 12, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18632. {
  18633. side: {
  18634. height: math.unit(55, "feet"),
  18635. weight: math.unit(153, "tons"),
  18636. name: "Side",
  18637. image: {
  18638. source: "./media/characters/shadow/side.svg",
  18639. extra: 701 / 628,
  18640. bottom: 0.02
  18641. }
  18642. },
  18643. flying: {
  18644. height: math.unit(145, "feet"),
  18645. weight: math.unit(153, "tons"),
  18646. name: "Flying",
  18647. image: {
  18648. source: "./media/characters/shadow/flying.svg"
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(55, "feet"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(6, "feet"),
  18665. weight: math.unit(200, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/marcie/front.svg",
  18669. extra: 960 / 876,
  18670. bottom: 58 / 1017.87
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Macro",
  18677. height: math.unit(1, "mile"),
  18678. default: true
  18679. },
  18680. ]
  18681. ))
  18682. characterMakers.push(() => makeCharacter(
  18683. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18684. {
  18685. front: {
  18686. height: math.unit(7, "feet"),
  18687. weight: math.unit(200, "lb"),
  18688. name: "Front",
  18689. image: {
  18690. source: "./media/characters/kachina/front.svg",
  18691. extra: 1290.68 / 1119,
  18692. bottom: 36.5 / 1327.18
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(7, "feet"),
  18700. default: true
  18701. },
  18702. ]
  18703. ))
  18704. characterMakers.push(() => makeCharacter(
  18705. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18706. {
  18707. looking: {
  18708. height: math.unit(2, "meters"),
  18709. weight: math.unit(300, "kg"),
  18710. name: "Looking",
  18711. image: {
  18712. source: "./media/characters/kash/looking.svg",
  18713. extra: 474 / 344,
  18714. bottom: 0.03
  18715. }
  18716. },
  18717. side: {
  18718. height: math.unit(2, "meters"),
  18719. weight: math.unit(300, "kg"),
  18720. name: "Side",
  18721. image: {
  18722. source: "./media/characters/kash/side.svg",
  18723. extra: 302 / 251,
  18724. bottom: 0.03
  18725. }
  18726. },
  18727. front: {
  18728. height: math.unit(2, "meters"),
  18729. weight: math.unit(300, "kg"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/kash/front.svg",
  18733. extra: 495 / 360,
  18734. bottom: 0.015
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(2, "meters"),
  18742. default: true
  18743. },
  18744. {
  18745. name: "Big",
  18746. height: math.unit(3, "meters")
  18747. },
  18748. {
  18749. name: "Large",
  18750. height: math.unit(5, "meters")
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18756. {
  18757. feeding: {
  18758. height: math.unit(6.7, "feet"),
  18759. weight: math.unit(350, "lb"),
  18760. name: "Feeding",
  18761. image: {
  18762. source: "./media/characters/lalim/feeding.svg",
  18763. }
  18764. },
  18765. },
  18766. [
  18767. {
  18768. name: "Normal",
  18769. height: math.unit(6.7, "feet"),
  18770. default: true
  18771. },
  18772. ]
  18773. ))
  18774. characterMakers.push(() => makeCharacter(
  18775. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18776. {
  18777. front: {
  18778. height: math.unit(9.5, "feet"),
  18779. weight: math.unit(600, "lb"),
  18780. name: "Front",
  18781. image: {
  18782. source: "./media/characters/de'vout/front.svg",
  18783. extra: 1443 / 1328,
  18784. bottom: 0.025
  18785. }
  18786. },
  18787. back: {
  18788. height: math.unit(9.5, "feet"),
  18789. weight: math.unit(600, "lb"),
  18790. name: "Back",
  18791. image: {
  18792. source: "./media/characters/de'vout/back.svg",
  18793. extra: 1443 / 1328
  18794. }
  18795. },
  18796. frontDressed: {
  18797. height: math.unit(9.5, "feet"),
  18798. weight: math.unit(600, "lb"),
  18799. name: "Front (Dressed",
  18800. image: {
  18801. source: "./media/characters/de'vout/front-dressed.svg",
  18802. extra: 1443 / 1328,
  18803. bottom: 0.025
  18804. }
  18805. },
  18806. backDressed: {
  18807. height: math.unit(9.5, "feet"),
  18808. weight: math.unit(600, "lb"),
  18809. name: "Back (Dressed",
  18810. image: {
  18811. source: "./media/characters/de'vout/back-dressed.svg",
  18812. extra: 1443 / 1328
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(9.5, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(8, "feet"),
  18829. weight: math.unit(225, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/talana/front.svg",
  18833. extra: 1410 / 1300,
  18834. bottom: 0.015
  18835. }
  18836. },
  18837. frontDressed: {
  18838. height: math.unit(8, "feet"),
  18839. weight: math.unit(225, "lb"),
  18840. name: "Front (Dressed",
  18841. image: {
  18842. source: "./media/characters/talana/front-dressed.svg",
  18843. extra: 1410 / 1300,
  18844. bottom: 0.015
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(8, "feet"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18858. {
  18859. side: {
  18860. height: math.unit(7.2, "feet"),
  18861. weight: math.unit(150, "lb"),
  18862. name: "Side",
  18863. image: {
  18864. source: "./media/characters/xeauvok/side.svg",
  18865. extra: 1975 / 1523,
  18866. bottom: 0.07
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(7.2, "feet"),
  18874. default: true
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18880. {
  18881. side: {
  18882. height: math.unit(4, "meters"),
  18883. weight: math.unit(2200, "kg"),
  18884. name: "Side",
  18885. image: {
  18886. source: "./media/characters/zara/side.svg",
  18887. extra: 765/744,
  18888. bottom: 156/921
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(4, "meters"),
  18896. default: true
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18902. {
  18903. side: {
  18904. height: math.unit(6, "feet"),
  18905. weight: math.unit(150, "lb"),
  18906. name: "Side",
  18907. image: {
  18908. source: "./media/characters/richard-dragon/side.svg",
  18909. extra: 845 / 340,
  18910. bottom: 0.017
  18911. }
  18912. },
  18913. maw: {
  18914. height: math.unit(2.97, "feet"),
  18915. name: "Maw",
  18916. image: {
  18917. source: "./media/characters/richard-dragon/maw.svg"
  18918. }
  18919. },
  18920. },
  18921. [
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(4, "feet"),
  18929. weight: math.unit(100, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/richard-smeargle/front.svg",
  18933. extra: 2952 / 2820,
  18934. bottom: 0.028
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(4, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Dynamax",
  18946. height: math.unit(20, "meters")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(6, "feet"),
  18955. weight: math.unit(110, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/klay/front.svg",
  18959. extra: 962 / 883,
  18960. bottom: 0.04
  18961. }
  18962. },
  18963. back: {
  18964. height: math.unit(6, "feet"),
  18965. weight: math.unit(110, "lb"),
  18966. name: "Back",
  18967. image: {
  18968. source: "./media/characters/klay/back.svg",
  18969. extra: 962 / 883
  18970. }
  18971. },
  18972. beans: {
  18973. height: math.unit(1.15, "feet"),
  18974. name: "Beans",
  18975. image: {
  18976. source: "./media/characters/klay/beans.svg"
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Micro",
  18983. height: math.unit(6, "inches")
  18984. },
  18985. {
  18986. name: "Mini",
  18987. height: math.unit(3, "feet")
  18988. },
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(6, "feet"),
  18992. default: true
  18993. },
  18994. {
  18995. name: "Big",
  18996. height: math.unit(25, "feet")
  18997. },
  18998. {
  18999. name: "Macro",
  19000. height: math.unit(100, "feet")
  19001. },
  19002. {
  19003. name: "Megamacro",
  19004. height: math.unit(400, "feet")
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(6, "feet"),
  19013. weight: math.unit(160, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/marcus/front.svg",
  19017. extra: 734 / 676,
  19018. bottom: 0.03
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Little",
  19025. height: math.unit(6, "feet")
  19026. },
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(110, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Macro",
  19034. height: math.unit(250, "feet")
  19035. },
  19036. {
  19037. name: "Megamacro",
  19038. height: math.unit(1000, "feet")
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(7, "feet"),
  19047. weight: math.unit(275, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/claude-delroute/front.svg",
  19051. extra: 902/827,
  19052. bottom: 26/928
  19053. }
  19054. },
  19055. side: {
  19056. height: math.unit(7, "feet"),
  19057. weight: math.unit(275, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/claude-delroute/side.svg",
  19061. extra: 908/853,
  19062. bottom: 16/924
  19063. }
  19064. },
  19065. back: {
  19066. height: math.unit(7, "feet"),
  19067. weight: math.unit(275, "lb"),
  19068. name: "Back",
  19069. image: {
  19070. source: "./media/characters/claude-delroute/back.svg",
  19071. extra: 911/829,
  19072. bottom: 18/929
  19073. }
  19074. },
  19075. maw: {
  19076. height: math.unit(0.6407, "meters"),
  19077. name: "Maw",
  19078. image: {
  19079. source: "./media/characters/claude-delroute/maw.svg"
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Normal",
  19086. height: math.unit(7, "feet"),
  19087. default: true
  19088. },
  19089. {
  19090. name: "Lorge",
  19091. height: math.unit(20, "feet")
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(8 + 4 / 12, "feet"),
  19100. weight: math.unit(600, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/dragonien/front.svg",
  19104. extra: 100 / 94,
  19105. bottom: 3.3 / 103.3445
  19106. }
  19107. },
  19108. back: {
  19109. height: math.unit(8 + 4 / 12, "feet"),
  19110. weight: math.unit(600, "lb"),
  19111. name: "Back",
  19112. image: {
  19113. source: "./media/characters/dragonien/back.svg",
  19114. extra: 776 / 746,
  19115. bottom: 6.4 / 782.0616
  19116. }
  19117. },
  19118. foot: {
  19119. height: math.unit(1.54, "feet"),
  19120. name: "Foot",
  19121. image: {
  19122. source: "./media/characters/dragonien/foot.svg",
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(8 + 4 / 12, "feet"),
  19130. default: true
  19131. },
  19132. {
  19133. name: "Macro",
  19134. height: math.unit(200, "feet")
  19135. },
  19136. {
  19137. name: "Megamacro",
  19138. height: math.unit(1, "mile")
  19139. },
  19140. {
  19141. name: "Gigamacro",
  19142. height: math.unit(1000, "miles")
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19148. {
  19149. front: {
  19150. height: math.unit(5 + 2 / 12, "feet"),
  19151. weight: math.unit(110, "lb"),
  19152. name: "Front",
  19153. image: {
  19154. source: "./media/characters/desta/front.svg",
  19155. extra: 767 / 726,
  19156. bottom: 11.7 / 779
  19157. }
  19158. },
  19159. back: {
  19160. height: math.unit(5 + 2 / 12, "feet"),
  19161. weight: math.unit(110, "lb"),
  19162. name: "Back",
  19163. image: {
  19164. source: "./media/characters/desta/back.svg",
  19165. extra: 777 / 728,
  19166. bottom: 6 / 784
  19167. }
  19168. },
  19169. frontAlt: {
  19170. height: math.unit(5 + 2 / 12, "feet"),
  19171. weight: math.unit(110, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/desta/front-alt.svg",
  19175. extra: 1482 / 1417
  19176. }
  19177. },
  19178. side: {
  19179. height: math.unit(5 + 2 / 12, "feet"),
  19180. weight: math.unit(110, "lb"),
  19181. name: "Side",
  19182. image: {
  19183. source: "./media/characters/desta/side.svg",
  19184. extra: 2579 / 2491,
  19185. bottom: 0.053
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Micro",
  19192. height: math.unit(6, "inches")
  19193. },
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(5 + 2 / 12, "feet"),
  19197. default: true
  19198. },
  19199. {
  19200. name: "Macro",
  19201. height: math.unit(62, "feet")
  19202. },
  19203. {
  19204. name: "Megamacro",
  19205. height: math.unit(1800, "feet")
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(10, "feet"),
  19214. weight: math.unit(700, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/storm-alystar/front.svg",
  19218. extra: 2112 / 1898,
  19219. bottom: 0.034
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Micro",
  19226. height: math.unit(3.5, "inches")
  19227. },
  19228. {
  19229. name: "Normal",
  19230. height: math.unit(10, "feet"),
  19231. default: true
  19232. },
  19233. {
  19234. name: "Macro",
  19235. height: math.unit(400, "feet")
  19236. },
  19237. {
  19238. name: "Deific",
  19239. height: math.unit(60, "miles")
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(2.35, "meters"),
  19248. weight: math.unit(119, "kg"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/ilia/front.svg",
  19252. extra: 1285 / 1255,
  19253. bottom: 0.06
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(2.35, "meters")
  19261. },
  19262. {
  19263. name: "Macro",
  19264. height: math.unit(140, "meters"),
  19265. default: true
  19266. },
  19267. {
  19268. name: "Megamacro",
  19269. height: math.unit(100, "miles")
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19275. {
  19276. front: {
  19277. height: math.unit(6 + 5 / 12, "feet"),
  19278. weight: math.unit(190, "lb"),
  19279. name: "Front",
  19280. image: {
  19281. source: "./media/characters/kingdead/front.svg",
  19282. extra: 1228 / 1177
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Micro",
  19289. height: math.unit(7, "inches")
  19290. },
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(6 + 5 / 12, "feet")
  19294. },
  19295. {
  19296. name: "Macro",
  19297. height: math.unit(150, "feet"),
  19298. default: true
  19299. },
  19300. {
  19301. name: "Megamacro",
  19302. height: math.unit(200, "miles")
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(8, "feet"),
  19311. weight: math.unit(600, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/kyrehx/front.svg",
  19315. extra: 1195 / 1095,
  19316. bottom: 0.034
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Micro",
  19323. height: math.unit(2, "inches")
  19324. },
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(8, "feet"),
  19328. default: true
  19329. },
  19330. {
  19331. name: "Macro",
  19332. height: math.unit(255, "feet")
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19338. {
  19339. front: {
  19340. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19341. weight: math.unit(184, "lb"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/xang/front.svg",
  19345. extra: 845 / 755
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Macro",
  19357. height: math.unit(0.935 * 146, "feet")
  19358. },
  19359. {
  19360. name: "Megamacro",
  19361. height: math.unit(0.935 * 3, "miles")
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19367. {
  19368. frontDressed: {
  19369. height: math.unit(5 + 7 / 12, "feet"),
  19370. weight: math.unit(140, "lb"),
  19371. name: "Front (Dressed)",
  19372. image: {
  19373. source: "./media/characters/doc-weardno/front-dressed.svg",
  19374. extra: 263 / 234
  19375. }
  19376. },
  19377. backDressed: {
  19378. height: math.unit(5 + 7 / 12, "feet"),
  19379. weight: math.unit(140, "lb"),
  19380. name: "Back (Dressed)",
  19381. image: {
  19382. source: "./media/characters/doc-weardno/back-dressed.svg",
  19383. extra: 266 / 238
  19384. }
  19385. },
  19386. front: {
  19387. height: math.unit(5 + 7 / 12, "feet"),
  19388. weight: math.unit(140, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/doc-weardno/front.svg",
  19392. extra: 254 / 233
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Micro",
  19399. height: math.unit(3, "inches")
  19400. },
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(5 + 7 / 12, "feet"),
  19404. default: true
  19405. },
  19406. {
  19407. name: "Macro",
  19408. height: math.unit(25, "feet")
  19409. },
  19410. {
  19411. name: "Megamacro",
  19412. height: math.unit(2, "miles")
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(6 + 2 / 12, "feet"),
  19421. weight: math.unit(153, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/seth-whilst/front.svg",
  19425. bottom: 0.07
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Micro",
  19432. height: math.unit(5, "inches")
  19433. },
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(6 + 2 / 12, "feet"),
  19437. default: true
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(3, "inches"),
  19446. weight: math.unit(8, "grams"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/pocket-jabari/front.svg",
  19450. extra: 1024 / 974,
  19451. bottom: 0.039
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Minimicro",
  19458. height: math.unit(8, "mm")
  19459. },
  19460. {
  19461. name: "Micro",
  19462. height: math.unit(3, "inches"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(3, "feet")
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19473. {
  19474. frontDressed: {
  19475. height: math.unit(15, "feet"),
  19476. weight: math.unit(3280, "lb"),
  19477. name: "Front (Dressed)",
  19478. image: {
  19479. source: "./media/characters/sapphy/front-dressed.svg",
  19480. extra: 1951/1654,
  19481. bottom: 194/2145
  19482. },
  19483. form: "anthro",
  19484. default: true
  19485. },
  19486. backDressed: {
  19487. height: math.unit(15, "feet"),
  19488. weight: math.unit(3280, "lb"),
  19489. name: "Back (Dressed)",
  19490. image: {
  19491. source: "./media/characters/sapphy/back-dressed.svg",
  19492. extra: 2058/1918,
  19493. bottom: 125/2183
  19494. },
  19495. form: "anthro"
  19496. },
  19497. frontNude: {
  19498. height: math.unit(15, "feet"),
  19499. weight: math.unit(3280, "lb"),
  19500. name: "Front (Nude)",
  19501. image: {
  19502. source: "./media/characters/sapphy/front-nude.svg",
  19503. extra: 1951/1654,
  19504. bottom: 194/2145
  19505. },
  19506. form: "anthro"
  19507. },
  19508. backNude: {
  19509. height: math.unit(15, "feet"),
  19510. weight: math.unit(3280, "lb"),
  19511. name: "Back (Nude)",
  19512. image: {
  19513. source: "./media/characters/sapphy/back-nude.svg",
  19514. extra: 2058/1918,
  19515. bottom: 125/2183
  19516. },
  19517. form: "anthro"
  19518. },
  19519. full: {
  19520. height: math.unit(15, "feet"),
  19521. weight: math.unit(3280, "lb"),
  19522. name: "Full",
  19523. image: {
  19524. source: "./media/characters/sapphy/full.svg",
  19525. extra: 1396/1317,
  19526. bottom: 44/1440
  19527. },
  19528. form: "anthro"
  19529. },
  19530. dick: {
  19531. height: math.unit(3.8, "feet"),
  19532. name: "Dick",
  19533. image: {
  19534. source: "./media/characters/sapphy/dick.svg"
  19535. },
  19536. form: "anthro"
  19537. },
  19538. feral: {
  19539. height: math.unit(35, "feet"),
  19540. weight: math.unit(160, "tons"),
  19541. name: "Feral",
  19542. image: {
  19543. source: "./media/characters/sapphy/feral.svg",
  19544. extra: 1050/573,
  19545. bottom: 60/1110
  19546. },
  19547. form: "feral",
  19548. default: true
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(15, "feet"),
  19555. form: "anthro"
  19556. },
  19557. {
  19558. name: "Casual Macro",
  19559. height: math.unit(120, "feet"),
  19560. form: "anthro"
  19561. },
  19562. {
  19563. name: "Macro",
  19564. height: math.unit(2150, "feet"),
  19565. default: true,
  19566. form: "anthro"
  19567. },
  19568. {
  19569. name: "Megamacro",
  19570. height: math.unit(8, "miles"),
  19571. form: "anthro"
  19572. },
  19573. {
  19574. name: "Galaxy Mom",
  19575. height: math.unit(6, "megalightyears"),
  19576. form: "anthro"
  19577. },
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(35, "feet"),
  19581. form: "feral",
  19582. default: true
  19583. },
  19584. {
  19585. name: "Macro",
  19586. height: math.unit(300, "feet"),
  19587. form: "feral"
  19588. },
  19589. {
  19590. name: "Galaxy Mom",
  19591. height: math.unit(10, "megalightyears"),
  19592. form: "feral"
  19593. },
  19594. ],
  19595. {
  19596. "anthro": {
  19597. name: "Anthro",
  19598. default: true
  19599. },
  19600. "feral": {
  19601. name: "Feral"
  19602. }
  19603. }
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(6, "feet"),
  19610. weight: math.unit(170, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/kiro/front.svg",
  19614. extra: 1064 / 1012,
  19615. bottom: 0.052
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Micro",
  19622. height: math.unit(6, "inches")
  19623. },
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(6, "feet"),
  19627. default: true
  19628. },
  19629. {
  19630. name: "Macro",
  19631. height: math.unit(72, "feet")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(5 + 9 / 12, "feet"),
  19640. weight: math.unit(175, "lb"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/irishfox/front.svg",
  19644. extra: 1912 / 1680,
  19645. bottom: 0.02
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Nano",
  19652. height: math.unit(1, "mm")
  19653. },
  19654. {
  19655. name: "Micro",
  19656. height: math.unit(2, "inches")
  19657. },
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(5 + 9 / 12, "feet"),
  19661. default: true
  19662. },
  19663. {
  19664. name: "Macro",
  19665. height: math.unit(45, "feet")
  19666. },
  19667. ]
  19668. ))
  19669. characterMakers.push(() => makeCharacter(
  19670. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19671. {
  19672. front: {
  19673. height: math.unit(6 + 1 / 12, "feet"),
  19674. weight: math.unit(75, "lb"),
  19675. name: "Front",
  19676. image: {
  19677. source: "./media/characters/aronai-sieyes/front.svg",
  19678. extra: 1532/1450,
  19679. bottom: 42/1574
  19680. }
  19681. },
  19682. side: {
  19683. height: math.unit(6 + 1 / 12, "feet"),
  19684. weight: math.unit(75, "lb"),
  19685. name: "Side",
  19686. image: {
  19687. source: "./media/characters/aronai-sieyes/side.svg",
  19688. extra: 1422/1365,
  19689. bottom: 148/1570
  19690. }
  19691. },
  19692. back: {
  19693. height: math.unit(6 + 1 / 12, "feet"),
  19694. weight: math.unit(75, "lb"),
  19695. name: "Back",
  19696. image: {
  19697. source: "./media/characters/aronai-sieyes/back.svg",
  19698. extra: 1526/1464,
  19699. bottom: 51/1577
  19700. }
  19701. },
  19702. dressed: {
  19703. height: math.unit(6 + 1 / 12, "feet"),
  19704. weight: math.unit(75, "lb"),
  19705. name: "Dressed",
  19706. image: {
  19707. source: "./media/characters/aronai-sieyes/dressed.svg",
  19708. extra: 1559/1483,
  19709. bottom: 39/1598
  19710. }
  19711. },
  19712. slit: {
  19713. height: math.unit(1.3, "feet"),
  19714. name: "Slit",
  19715. image: {
  19716. source: "./media/characters/aronai-sieyes/slit.svg"
  19717. }
  19718. },
  19719. slitSpread: {
  19720. height: math.unit(0.9, "feet"),
  19721. name: "Slit (Spread)",
  19722. image: {
  19723. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19724. }
  19725. },
  19726. rump: {
  19727. height: math.unit(1.3, "feet"),
  19728. name: "Rump",
  19729. image: {
  19730. source: "./media/characters/aronai-sieyes/rump.svg"
  19731. }
  19732. },
  19733. maw: {
  19734. height: math.unit(1.25, "feet"),
  19735. name: "Maw",
  19736. image: {
  19737. source: "./media/characters/aronai-sieyes/maw.svg"
  19738. }
  19739. },
  19740. feral: {
  19741. height: math.unit(18, "feet"),
  19742. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19743. name: "Feral",
  19744. image: {
  19745. source: "./media/characters/aronai-sieyes/feral.svg",
  19746. extra: 1530 / 1240,
  19747. bottom: 0.035
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Micro",
  19754. height: math.unit(2, "inches")
  19755. },
  19756. {
  19757. name: "Normal",
  19758. height: math.unit(6 + 1 / 12, "feet"),
  19759. default: true
  19760. }
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19765. {
  19766. front: {
  19767. height: math.unit(12, "feet"),
  19768. weight: math.unit(410, "kg"),
  19769. name: "Front",
  19770. image: {
  19771. source: "./media/characters/xuna/front.svg",
  19772. extra: 2184 / 1980
  19773. }
  19774. },
  19775. side: {
  19776. height: math.unit(12, "feet"),
  19777. weight: math.unit(410, "kg"),
  19778. name: "Side",
  19779. image: {
  19780. source: "./media/characters/xuna/side.svg",
  19781. extra: 2184 / 1980
  19782. }
  19783. },
  19784. back: {
  19785. height: math.unit(12, "feet"),
  19786. weight: math.unit(410, "kg"),
  19787. name: "Back",
  19788. image: {
  19789. source: "./media/characters/xuna/back.svg",
  19790. extra: 2184 / 1980
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Nano glow",
  19797. height: math.unit(10, "nm")
  19798. },
  19799. {
  19800. name: "Micro floof",
  19801. height: math.unit(0.3, "m")
  19802. },
  19803. {
  19804. name: "Huggable softy boi",
  19805. height: math.unit(3.6576, "m"),
  19806. default: true
  19807. },
  19808. {
  19809. name: "Admirable floof",
  19810. height: math.unit(80, "meters")
  19811. },
  19812. {
  19813. name: "Gentle macro",
  19814. height: math.unit(300, "meters")
  19815. },
  19816. {
  19817. name: "Very careful floof",
  19818. height: math.unit(3200, "meters")
  19819. },
  19820. {
  19821. name: "The mega floof",
  19822. height: math.unit(36000, "meters")
  19823. },
  19824. {
  19825. name: "Giga-fur-Wicker",
  19826. height: math.unit(4800000, "meters")
  19827. },
  19828. {
  19829. name: "Licky world",
  19830. height: math.unit(20000000, "meters")
  19831. },
  19832. {
  19833. name: "Floofy cyan sun",
  19834. height: math.unit(1500000000, "meters")
  19835. },
  19836. {
  19837. name: "Milky Wicker",
  19838. height: math.unit(1000000000000000000000, "meters")
  19839. },
  19840. {
  19841. name: "The observing Wicker",
  19842. height: math.unit(999999999999999999999999999, "meters")
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19848. {
  19849. front: {
  19850. height: math.unit(5 + 9 / 12, "feet"),
  19851. weight: math.unit(150, "lb"),
  19852. name: "Front",
  19853. image: {
  19854. source: "./media/characters/arokha-sieyes/front.svg",
  19855. extra: 1425 / 1284,
  19856. bottom: 0.05
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(5 + 9 / 12, "feet")
  19864. },
  19865. {
  19866. name: "Macro",
  19867. height: math.unit(30, "meters"),
  19868. default: true
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(6, "feet"),
  19877. weight: math.unit(180, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/arokh-sieyes/front.svg",
  19881. extra: 1830 / 1769,
  19882. bottom: 0.01
  19883. }
  19884. },
  19885. },
  19886. [
  19887. {
  19888. name: "Normal",
  19889. height: math.unit(6, "feet")
  19890. },
  19891. {
  19892. name: "Macro",
  19893. height: math.unit(30, "meters"),
  19894. default: true
  19895. },
  19896. ]
  19897. ))
  19898. characterMakers.push(() => makeCharacter(
  19899. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19900. {
  19901. side: {
  19902. height: math.unit(13 + 1 / 12, "feet"),
  19903. weight: math.unit(8.5, "tonnes"),
  19904. name: "Side",
  19905. image: {
  19906. source: "./media/characters/goldeneye/side.svg",
  19907. extra: 1182 / 778,
  19908. bottom: 0.067
  19909. }
  19910. },
  19911. paw: {
  19912. height: math.unit(3.4, "feet"),
  19913. name: "Paw",
  19914. image: {
  19915. source: "./media/characters/goldeneye/paw.svg"
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(13 + 1 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19929. {
  19930. front: {
  19931. height: math.unit(6 + 1 / 12, "feet"),
  19932. weight: math.unit(210, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/leonardo-lycheborne/front.svg",
  19936. extra: 776/723,
  19937. bottom: 34/810
  19938. }
  19939. },
  19940. side: {
  19941. height: math.unit(6 + 1 / 12, "feet"),
  19942. weight: math.unit(210, "lb"),
  19943. name: "Side",
  19944. image: {
  19945. source: "./media/characters/leonardo-lycheborne/side.svg",
  19946. extra: 780/728,
  19947. bottom: 12/792
  19948. }
  19949. },
  19950. back: {
  19951. height: math.unit(6 + 1 / 12, "feet"),
  19952. weight: math.unit(210, "lb"),
  19953. name: "Back",
  19954. image: {
  19955. source: "./media/characters/leonardo-lycheborne/back.svg",
  19956. extra: 775/721,
  19957. bottom: 17/792
  19958. }
  19959. },
  19960. hand: {
  19961. height: math.unit(1.08, "feet"),
  19962. name: "Hand",
  19963. image: {
  19964. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19965. }
  19966. },
  19967. foot: {
  19968. height: math.unit(1.32, "feet"),
  19969. name: "Foot",
  19970. image: {
  19971. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19972. }
  19973. },
  19974. maw: {
  19975. height: math.unit(1, "feet"),
  19976. name: "Maw",
  19977. image: {
  19978. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19979. }
  19980. },
  19981. were: {
  19982. height: math.unit(20, "feet"),
  19983. weight: math.unit(7800, "lb"),
  19984. name: "Were",
  19985. image: {
  19986. source: "./media/characters/leonardo-lycheborne/were.svg",
  19987. extra: 1224/1165,
  19988. bottom: 72/1296
  19989. }
  19990. },
  19991. feral: {
  19992. height: math.unit(7.5, "feet"),
  19993. weight: math.unit(600, "lb"),
  19994. name: "Feral",
  19995. image: {
  19996. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19997. extra: 797/702,
  19998. bottom: 139/936
  19999. }
  20000. },
  20001. taur: {
  20002. height: math.unit(11, "feet"),
  20003. weight: math.unit(3300, "lb"),
  20004. name: "Taur",
  20005. image: {
  20006. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20007. extra: 1271/1197,
  20008. bottom: 47/1318
  20009. }
  20010. },
  20011. barghest: {
  20012. height: math.unit(11, "feet"),
  20013. weight: math.unit(1300, "lb"),
  20014. name: "Barghest",
  20015. image: {
  20016. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20017. extra: 1291/1204,
  20018. bottom: 37/1328
  20019. }
  20020. },
  20021. dick: {
  20022. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20023. name: "Dick",
  20024. image: {
  20025. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20026. }
  20027. },
  20028. dickWere: {
  20029. height: math.unit((20) / 3.8, "feet"),
  20030. name: "Dick (Were)",
  20031. image: {
  20032. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(6 + 1 / 12, "feet"),
  20040. default: true
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20046. {
  20047. front: {
  20048. height: math.unit(10, "feet"),
  20049. weight: math.unit(350, "lb"),
  20050. name: "Front",
  20051. image: {
  20052. source: "./media/characters/jet/front.svg",
  20053. extra: 2050 / 1980,
  20054. bottom: 0.013
  20055. }
  20056. },
  20057. back: {
  20058. height: math.unit(10, "feet"),
  20059. weight: math.unit(350, "lb"),
  20060. name: "Back",
  20061. image: {
  20062. source: "./media/characters/jet/back.svg",
  20063. extra: 2050 / 1980,
  20064. bottom: 0.013
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Micro",
  20071. height: math.unit(6, "inches")
  20072. },
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(10, "feet"),
  20076. default: true
  20077. },
  20078. {
  20079. name: "Macro",
  20080. height: math.unit(100, "feet")
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(15, "feet"),
  20089. weight: math.unit(2800, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/tanarath/front.svg",
  20093. extra: 2392 / 2220,
  20094. bottom: 0.03
  20095. }
  20096. },
  20097. back: {
  20098. height: math.unit(15, "feet"),
  20099. weight: math.unit(2800, "lb"),
  20100. name: "Back",
  20101. image: {
  20102. source: "./media/characters/tanarath/back.svg",
  20103. extra: 2392 / 2220,
  20104. bottom: 0.03
  20105. }
  20106. },
  20107. },
  20108. [
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(15, "feet"),
  20112. default: true
  20113. },
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(7 + 1 / 12, "feet"),
  20121. weight: math.unit(175, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/patty-cattybatty/front.svg",
  20125. extra: 908 / 874,
  20126. bottom: 0.025
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Micro",
  20133. height: math.unit(1, "inch")
  20134. },
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(7 + 1 / 12, "feet")
  20138. },
  20139. {
  20140. name: "Mini Macro",
  20141. height: math.unit(155, "feet")
  20142. },
  20143. {
  20144. name: "Macro",
  20145. height: math.unit(1077, "feet")
  20146. },
  20147. {
  20148. name: "Mega Macro",
  20149. height: math.unit(47650, "feet"),
  20150. default: true
  20151. },
  20152. {
  20153. name: "Giga Macro",
  20154. height: math.unit(440, "miles")
  20155. },
  20156. {
  20157. name: "Tera Macro",
  20158. height: math.unit(8700, "miles")
  20159. },
  20160. {
  20161. name: "Planetary Macro",
  20162. height: math.unit(32700, "miles")
  20163. },
  20164. {
  20165. name: "Solar Macro",
  20166. height: math.unit(550000, "miles")
  20167. },
  20168. {
  20169. name: "Celestial Macro",
  20170. height: math.unit(2.5, "AU")
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20176. {
  20177. front: {
  20178. height: math.unit(4 + 5 / 12, "feet"),
  20179. weight: math.unit(90, "lb"),
  20180. name: "Front",
  20181. image: {
  20182. source: "./media/characters/cappu/front.svg",
  20183. extra: 1247 / 1152,
  20184. bottom: 0.012
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(4 + 5 / 12, "feet"),
  20192. default: true
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20198. {
  20199. frontDressed: {
  20200. height: math.unit(70, "cm"),
  20201. weight: math.unit(6, "kg"),
  20202. name: "Front (Dressed)",
  20203. image: {
  20204. source: "./media/characters/sebi/front-dressed.svg",
  20205. extra: 713.5 / 686.5,
  20206. bottom: 0.003
  20207. }
  20208. },
  20209. front: {
  20210. height: math.unit(70, "cm"),
  20211. weight: math.unit(5, "kg"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/sebi/front.svg",
  20215. extra: 713.5 / 686.5,
  20216. bottom: 0.003
  20217. }
  20218. }
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(70, "cm"),
  20224. default: true
  20225. },
  20226. {
  20227. name: "Macro",
  20228. height: math.unit(8, "meters")
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20234. {
  20235. front: {
  20236. height: math.unit(6, "feet"),
  20237. weight: math.unit(150, "lb"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/typhek/front.svg",
  20241. extra: 1948 / 1929,
  20242. bottom: 0.025
  20243. }
  20244. },
  20245. side: {
  20246. height: math.unit(6, "feet"),
  20247. weight: math.unit(150, "lb"),
  20248. name: "Side",
  20249. image: {
  20250. source: "./media/characters/typhek/side.svg",
  20251. extra: 2034 / 2010,
  20252. bottom: 0.003
  20253. }
  20254. },
  20255. back: {
  20256. height: math.unit(6, "feet"),
  20257. weight: math.unit(150, "lb"),
  20258. name: "Back",
  20259. image: {
  20260. source: "./media/characters/typhek/back.svg",
  20261. extra: 2005 / 1978,
  20262. bottom: 0.004
  20263. }
  20264. },
  20265. palm: {
  20266. height: math.unit(1.2, "feet"),
  20267. name: "Palm",
  20268. image: {
  20269. source: "./media/characters/typhek/palm.svg"
  20270. }
  20271. },
  20272. fist: {
  20273. height: math.unit(1.1, "feet"),
  20274. name: "Fist",
  20275. image: {
  20276. source: "./media/characters/typhek/fist.svg"
  20277. }
  20278. },
  20279. foot: {
  20280. height: math.unit(1.57, "feet"),
  20281. name: "Foot",
  20282. image: {
  20283. source: "./media/characters/typhek/foot.svg"
  20284. }
  20285. },
  20286. sole: {
  20287. height: math.unit(2.05, "feet"),
  20288. name: "Sole",
  20289. image: {
  20290. source: "./media/characters/typhek/sole.svg"
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Macro",
  20297. height: math.unit(40, "stories"),
  20298. default: true
  20299. },
  20300. {
  20301. name: "Megamacro",
  20302. height: math.unit(1, "mile")
  20303. },
  20304. {
  20305. name: "Gigamacro",
  20306. height: math.unit(4000, "solarradii")
  20307. },
  20308. {
  20309. name: "Universal",
  20310. height: math.unit(1.1, "universes")
  20311. }
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20316. {
  20317. side: {
  20318. height: math.unit(5 + 7 / 12, "feet"),
  20319. weight: math.unit(150, "lb"),
  20320. name: "Side",
  20321. image: {
  20322. source: "./media/characters/kassy/side.svg",
  20323. extra: 1280 / 1225,
  20324. bottom: 0.002
  20325. }
  20326. },
  20327. front: {
  20328. height: math.unit(5 + 7 / 12, "feet"),
  20329. weight: math.unit(150, "lb"),
  20330. name: "Front",
  20331. image: {
  20332. source: "./media/characters/kassy/front.svg",
  20333. extra: 1280 / 1225,
  20334. bottom: 0.025
  20335. }
  20336. },
  20337. back: {
  20338. height: math.unit(5 + 7 / 12, "feet"),
  20339. weight: math.unit(150, "lb"),
  20340. name: "Back",
  20341. image: {
  20342. source: "./media/characters/kassy/back.svg",
  20343. extra: 1280 / 1225,
  20344. bottom: 0.002
  20345. }
  20346. },
  20347. foot: {
  20348. height: math.unit(1.266, "feet"),
  20349. name: "Foot",
  20350. image: {
  20351. source: "./media/characters/kassy/foot.svg"
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Normal",
  20358. height: math.unit(5 + 7 / 12, "feet")
  20359. },
  20360. {
  20361. name: "Macro",
  20362. height: math.unit(137, "feet"),
  20363. default: true
  20364. },
  20365. {
  20366. name: "Megamacro",
  20367. height: math.unit(1, "mile")
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20373. {
  20374. front: {
  20375. height: math.unit(6 + 1 / 12, "feet"),
  20376. weight: math.unit(200, "lb"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/neil/front.svg",
  20380. extra: 1326 / 1250,
  20381. bottom: 0.023
  20382. }
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(6 + 1 / 12, "feet"),
  20389. default: true
  20390. },
  20391. {
  20392. name: "Macro",
  20393. height: math.unit(200, "feet")
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(5 + 9 / 12, "feet"),
  20402. weight: math.unit(190, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/atticus/front.svg",
  20406. extra: 2934 / 2785,
  20407. bottom: 0.025
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(5 + 9 / 12, "feet"),
  20415. default: true
  20416. },
  20417. {
  20418. name: "Macro",
  20419. height: math.unit(180, "feet")
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20425. {
  20426. side: {
  20427. height: math.unit(9, "feet"),
  20428. weight: math.unit(650, "lb"),
  20429. name: "Side",
  20430. image: {
  20431. source: "./media/characters/milo/side.svg",
  20432. extra: 2644 / 2310,
  20433. bottom: 0.032
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(9, "feet"),
  20441. default: true
  20442. },
  20443. {
  20444. name: "Macro",
  20445. height: math.unit(300, "feet")
  20446. },
  20447. ]
  20448. ))
  20449. characterMakers.push(() => makeCharacter(
  20450. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20451. {
  20452. side: {
  20453. height: math.unit(8, "meters"),
  20454. weight: math.unit(90000, "kg"),
  20455. name: "Side",
  20456. image: {
  20457. source: "./media/characters/ijzer/side.svg",
  20458. extra: 2756 / 1600,
  20459. bottom: 0.01
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Small",
  20466. height: math.unit(3, "meters")
  20467. },
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(8, "meters"),
  20471. default: true
  20472. },
  20473. {
  20474. name: "Normal+",
  20475. height: math.unit(10, "meters")
  20476. },
  20477. {
  20478. name: "Bigger",
  20479. height: math.unit(24, "meters")
  20480. },
  20481. {
  20482. name: "Huge",
  20483. height: math.unit(80, "meters")
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(6 + 2 / 12, "feet"),
  20492. weight: math.unit(153, "lb"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/luca-cervicum/front.svg",
  20496. extra: 370 / 327,
  20497. bottom: 0.015
  20498. }
  20499. },
  20500. back: {
  20501. height: math.unit(6 + 2 / 12, "feet"),
  20502. weight: math.unit(153, "lb"),
  20503. name: "Back",
  20504. image: {
  20505. source: "./media/characters/luca-cervicum/back.svg",
  20506. extra: 367 / 333,
  20507. bottom: 0.005
  20508. }
  20509. },
  20510. frontGear: {
  20511. height: math.unit(6 + 2 / 12, "feet"),
  20512. weight: math.unit(173, "lb"),
  20513. name: "Front (Gear)",
  20514. image: {
  20515. source: "./media/characters/luca-cervicum/front-gear.svg",
  20516. extra: 377 / 333,
  20517. bottom: 0.006
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Normal",
  20524. height: math.unit(6 + 2 / 12, "feet"),
  20525. default: true
  20526. },
  20527. ]
  20528. ))
  20529. characterMakers.push(() => makeCharacter(
  20530. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20531. {
  20532. front: {
  20533. height: math.unit(6 + 1 / 12, "feet"),
  20534. weight: math.unit(304, "lb"),
  20535. name: "Front",
  20536. image: {
  20537. source: "./media/characters/oliver/front.svg",
  20538. extra: 157 / 143,
  20539. bottom: 0.08
  20540. }
  20541. },
  20542. },
  20543. [
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(6 + 1 / 12, "feet"),
  20547. default: true
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(5 + 7 / 12, "feet"),
  20556. weight: math.unit(140, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/shane/front.svg",
  20560. extra: 304 / 289,
  20561. bottom: 0.005
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(5 + 7 / 12, "feet"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(5 + 9 / 12, "feet"),
  20578. weight: math.unit(178, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/shin/front.svg",
  20582. extra: 159 / 151,
  20583. bottom: 0.015
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(5 + 9 / 12, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(5 + 10 / 12, "feet"),
  20600. weight: math.unit(168, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/xerxes/front.svg",
  20604. extra: 282 / 260,
  20605. bottom: 0.045
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(5 + 10 / 12, "feet"),
  20613. default: true
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20619. {
  20620. front: {
  20621. height: math.unit(6 + 7 / 12, "feet"),
  20622. weight: math.unit(208, "lb"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/chaska/front.svg",
  20626. extra: 332 / 319,
  20627. bottom: 0.015
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(6 + 7 / 12, "feet"),
  20635. default: true
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(5 + 8 / 12, "feet"),
  20644. weight: math.unit(208, "lb"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/enuk/front.svg",
  20648. extra: 437 / 406,
  20649. bottom: 0.02
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(5 + 8 / 12, "feet"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(5 + 10 / 12, "feet"),
  20666. weight: math.unit(252, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/bruun/front.svg",
  20670. extra: 197 / 187,
  20671. bottom: 0.012
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Normal",
  20678. height: math.unit(5 + 10 / 12, "feet"),
  20679. default: true
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20685. {
  20686. front: {
  20687. height: math.unit(6 + 10 / 12, "feet"),
  20688. weight: math.unit(255, "lb"),
  20689. name: "Front",
  20690. image: {
  20691. source: "./media/characters/alexeev/front.svg",
  20692. extra: 213 / 200,
  20693. bottom: 0.05
  20694. }
  20695. },
  20696. },
  20697. [
  20698. {
  20699. name: "Normal",
  20700. height: math.unit(6 + 10 / 12, "feet"),
  20701. default: true
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(2 + 8 / 12, "feet"),
  20710. weight: math.unit(22, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/evelyn/front.svg",
  20714. extra: 208 / 180
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(2 + 8 / 12, "feet"),
  20722. default: true
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(5 + 9 / 12, "feet"),
  20731. weight: math.unit(139, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/inca/front.svg",
  20735. extra: 294 / 291,
  20736. bottom: 0.03
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(5 + 9 / 12, "feet"),
  20744. default: true
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20750. {
  20751. front: {
  20752. height: math.unit(6 + 3 / 12, "feet"),
  20753. weight: math.unit(185, "lb"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/mera/front.svg",
  20757. extra: 291 / 277,
  20758. bottom: 0.03
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(6 + 3 / 12, "feet"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20772. {
  20773. front: {
  20774. height: math.unit(6 + 7 / 12, "feet"),
  20775. weight: math.unit(160, "lb"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/ceres/front.svg",
  20779. extra: 1023 / 950,
  20780. bottom: 0.027
  20781. }
  20782. },
  20783. back: {
  20784. height: math.unit(6 + 7 / 12, "feet"),
  20785. weight: math.unit(160, "lb"),
  20786. name: "Back",
  20787. image: {
  20788. source: "./media/characters/ceres/back.svg",
  20789. extra: 1023 / 950
  20790. }
  20791. },
  20792. },
  20793. [
  20794. {
  20795. name: "Normal",
  20796. height: math.unit(6 + 7 / 12, "feet"),
  20797. default: true
  20798. },
  20799. ]
  20800. ))
  20801. characterMakers.push(() => makeCharacter(
  20802. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20803. {
  20804. front: {
  20805. height: math.unit(5 + 10 / 12, "feet"),
  20806. weight: math.unit(150, "lb"),
  20807. name: "Front",
  20808. image: {
  20809. source: "./media/characters/kris/front.svg",
  20810. extra: 885 / 803,
  20811. bottom: 0.03
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Normal",
  20818. height: math.unit(5 + 10 / 12, "feet"),
  20819. default: true
  20820. },
  20821. ]
  20822. ))
  20823. characterMakers.push(() => makeCharacter(
  20824. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20825. {
  20826. front: {
  20827. height: math.unit(7, "feet"),
  20828. weight: math.unit(120, "kg"),
  20829. name: "Front",
  20830. image: {
  20831. source: "./media/characters/taluthus/front.svg",
  20832. extra: 903 / 833,
  20833. bottom: 0.015
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(7, "feet"),
  20841. default: true
  20842. },
  20843. {
  20844. name: "Macro",
  20845. height: math.unit(300, "feet")
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(5 + 9 / 12, "feet"),
  20854. weight: math.unit(145, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/dawn/front.svg",
  20858. extra: 2094 / 2016,
  20859. bottom: 0.025
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(5 + 9 / 12, "feet"),
  20864. weight: math.unit(160, "lb"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/dawn/back.svg",
  20868. extra: 2112 / 2080,
  20869. bottom: 0.005
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(6 + 7 / 12, "feet"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20883. {
  20884. anthro: {
  20885. height: math.unit(8 + 3 / 12, "feet"),
  20886. weight: math.unit(450, "lb"),
  20887. name: "Anthro",
  20888. image: {
  20889. source: "./media/characters/arador/anthro.svg",
  20890. extra: 1835 / 1718,
  20891. bottom: 0.025
  20892. }
  20893. },
  20894. feral: {
  20895. height: math.unit(4, "feet"),
  20896. weight: math.unit(200, "lb"),
  20897. name: "Feral",
  20898. image: {
  20899. source: "./media/characters/arador/feral.svg",
  20900. extra: 1683 / 1514,
  20901. bottom: 0.07
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Normal",
  20908. height: math.unit(8 + 3 / 12, "feet")
  20909. },
  20910. {
  20911. name: "Macro",
  20912. height: math.unit(82.5, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20919. {
  20920. front: {
  20921. height: math.unit(5 + 10 / 12, "feet"),
  20922. weight: math.unit(125, "lb"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/dharsi/front.svg",
  20926. extra: 716 / 630,
  20927. bottom: 0.035
  20928. }
  20929. },
  20930. },
  20931. [
  20932. {
  20933. name: "Nano",
  20934. height: math.unit(100, "nm")
  20935. },
  20936. {
  20937. name: "Micro",
  20938. height: math.unit(2, "inches")
  20939. },
  20940. {
  20941. name: "Normal",
  20942. height: math.unit(5 + 10 / 12, "feet"),
  20943. default: true
  20944. },
  20945. {
  20946. name: "Macro",
  20947. height: math.unit(1000, "feet")
  20948. },
  20949. {
  20950. name: "Megamacro",
  20951. height: math.unit(10, "miles")
  20952. },
  20953. {
  20954. name: "Gigamacro",
  20955. height: math.unit(3000, "miles")
  20956. },
  20957. {
  20958. name: "Teramacro",
  20959. height: math.unit(500000, "miles")
  20960. },
  20961. {
  20962. name: "Teramacro+",
  20963. height: math.unit(30, "galaxies")
  20964. },
  20965. ]
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20969. {
  20970. front: {
  20971. height: math.unit(6, "feet"),
  20972. weight: math.unit(150, "lb"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/deathy/front.svg",
  20976. extra: 1552 / 1463,
  20977. bottom: 0.025
  20978. }
  20979. },
  20980. side: {
  20981. height: math.unit(6, "feet"),
  20982. weight: math.unit(150, "lb"),
  20983. name: "Side",
  20984. image: {
  20985. source: "./media/characters/deathy/side.svg",
  20986. extra: 1604 / 1455,
  20987. bottom: 0.025
  20988. }
  20989. },
  20990. back: {
  20991. height: math.unit(6, "feet"),
  20992. weight: math.unit(150, "lb"),
  20993. name: "Back",
  20994. image: {
  20995. source: "./media/characters/deathy/back.svg",
  20996. extra: 1580 / 1463,
  20997. bottom: 0.005
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Micro",
  21004. height: math.unit(5, "millimeters")
  21005. },
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(6 + 5 / 12, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21015. {
  21016. front: {
  21017. height: math.unit(16, "feet"),
  21018. weight: math.unit(4000, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/juniper/front.svg",
  21022. bottom: 0.04
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(16, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(6, "feet"),
  21039. weight: math.unit(150, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/hipster/front.svg",
  21043. extra: 1312 / 1209,
  21044. bottom: 0.025
  21045. }
  21046. },
  21047. back: {
  21048. height: math.unit(6, "feet"),
  21049. weight: math.unit(150, "lb"),
  21050. name: "Back",
  21051. image: {
  21052. source: "./media/characters/hipster/back.svg",
  21053. extra: 1281 / 1196,
  21054. bottom: 0.01
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Micro",
  21061. height: math.unit(1, "mm")
  21062. },
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(4, "inches"),
  21066. default: true
  21067. },
  21068. {
  21069. name: "Macro",
  21070. height: math.unit(500, "feet")
  21071. },
  21072. {
  21073. name: "Megamacro",
  21074. height: math.unit(1000, "miles")
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21080. {
  21081. front: {
  21082. height: math.unit(6, "feet"),
  21083. weight: math.unit(150, "lb"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/tendirmuldr/front.svg",
  21087. extra: 1878 / 1772,
  21088. bottom: 0.015
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Megamacro",
  21095. height: math.unit(1500, "miles"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21102. {
  21103. front: {
  21104. height: math.unit(14, "feet"),
  21105. weight: math.unit(12000, "lb"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/mort/front.svg",
  21109. extra: 365 / 318,
  21110. bottom: 0.01
  21111. }
  21112. },
  21113. side: {
  21114. height: math.unit(14, "feet"),
  21115. weight: math.unit(12000, "lb"),
  21116. name: "Side",
  21117. image: {
  21118. source: "./media/characters/mort/side.svg",
  21119. extra: 365 / 318,
  21120. bottom: 0.052
  21121. },
  21122. default: true
  21123. },
  21124. back: {
  21125. height: math.unit(14, "feet"),
  21126. weight: math.unit(12000, "lb"),
  21127. name: "Back",
  21128. image: {
  21129. source: "./media/characters/mort/back.svg",
  21130. extra: 371 / 332,
  21131. bottom: 0.18
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(14, "feet"),
  21139. default: true
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21145. {
  21146. front: {
  21147. height: math.unit(8, "feet"),
  21148. weight: math.unit(1, "ton"),
  21149. name: "Front",
  21150. image: {
  21151. source: "./media/characters/lycoa/front.svg",
  21152. extra: 1836/1728,
  21153. bottom: 81/1917
  21154. }
  21155. },
  21156. back: {
  21157. height: math.unit(8, "feet"),
  21158. weight: math.unit(1, "ton"),
  21159. name: "Back",
  21160. image: {
  21161. source: "./media/characters/lycoa/back.svg",
  21162. extra: 1785/1720,
  21163. bottom: 91/1876
  21164. }
  21165. },
  21166. head: {
  21167. height: math.unit(1.6243, "feet"),
  21168. name: "Head",
  21169. image: {
  21170. source: "./media/characters/lycoa/head.svg",
  21171. extra: 1011/782,
  21172. bottom: 0/1011
  21173. }
  21174. },
  21175. tailmaw: {
  21176. height: math.unit(1.9, "feet"),
  21177. name: "Tailmaw",
  21178. image: {
  21179. source: "./media/characters/lycoa/tailmaw.svg"
  21180. }
  21181. },
  21182. tentacles: {
  21183. height: math.unit(2.1, "feet"),
  21184. name: "Tentacles",
  21185. image: {
  21186. source: "./media/characters/lycoa/tentacles.svg"
  21187. }
  21188. },
  21189. dick: {
  21190. height: math.unit(1.73, "feet"),
  21191. name: "Dick",
  21192. image: {
  21193. source: "./media/characters/lycoa/dick.svg"
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(8, "feet"),
  21201. default: true
  21202. },
  21203. {
  21204. name: "Macro",
  21205. height: math.unit(30, "feet")
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21211. {
  21212. front: {
  21213. height: math.unit(4 + 2 / 12, "feet"),
  21214. weight: math.unit(70, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/naldara/front.svg",
  21218. extra: 1664/1387,
  21219. bottom: 81/1745
  21220. },
  21221. form: "anthro",
  21222. default: true
  21223. },
  21224. naga: {
  21225. height: math.unit(20, "feet"),
  21226. weight: math.unit(15000, "kg"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/naldara/naga.svg",
  21230. extra: 1590/1396,
  21231. bottom: 285/1875
  21232. },
  21233. form: "naga",
  21234. default: true
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(4 + 2 / 12, "feet"),
  21241. form: "anthro",
  21242. default: true
  21243. },
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(20, "feet"),
  21247. form: "naga",
  21248. default: true
  21249. },
  21250. ],
  21251. {
  21252. "anthro": {
  21253. name: "Anthro",
  21254. default: true
  21255. },
  21256. "naga": {
  21257. name: "Naga"
  21258. }
  21259. }
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21263. {
  21264. front: {
  21265. height: math.unit(13 + 7 / 12, "feet"),
  21266. weight: math.unit(1500, "lb"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/briar/front.svg",
  21270. extra: 1223/1157,
  21271. bottom: 123/1346
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(13 + 7 / 12, "feet"),
  21279. default: true
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21285. {
  21286. side: {
  21287. height: math.unit(16, "feet"),
  21288. weight: math.unit(500, "lb"),
  21289. name: "Side",
  21290. image: {
  21291. source: "./media/characters/vanguard/side.svg",
  21292. extra: 1022/914,
  21293. bottom: 30/1052
  21294. }
  21295. },
  21296. sideAlt: {
  21297. height: math.unit(10, "feet"),
  21298. weight: math.unit(500, "lb"),
  21299. name: "Side (Alt)",
  21300. image: {
  21301. source: "./media/characters/vanguard/side-alt.svg",
  21302. extra: 502 / 425,
  21303. bottom: 0.087
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(17.71, "feet"),
  21311. default: true
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21317. {
  21318. front: {
  21319. height: math.unit(7.5, "feet"),
  21320. weight: math.unit(2, "lb"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/artemis/work-safe-front.svg",
  21324. extra: 1192 / 1075,
  21325. bottom: 0.07
  21326. },
  21327. form: "work-safe",
  21328. default: true
  21329. },
  21330. frontNsfw: {
  21331. height: math.unit(7.5, "feet"),
  21332. weight: math.unit(2, "lb"),
  21333. name: "Front",
  21334. image: {
  21335. source: "./media/characters/artemis/calibrating-front.svg",
  21336. extra: 1192 / 1075,
  21337. bottom: 0.07
  21338. },
  21339. form: "calibrating",
  21340. default: true
  21341. },
  21342. frontNsfwer: {
  21343. height: math.unit(7.5, "feet"),
  21344. weight: math.unit(2, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/artemis/oversize-load-front.svg",
  21348. extra: 1192 / 1075,
  21349. bottom: 0.07
  21350. },
  21351. form: "oversize-load",
  21352. default: true
  21353. },
  21354. side: {
  21355. height: math.unit(7.5, "feet"),
  21356. weight: math.unit(2, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/artemis/work-safe-side.svg",
  21360. extra: 1192 / 1075,
  21361. bottom: 0.07
  21362. },
  21363. form: "work-safe"
  21364. },
  21365. sideNsfw: {
  21366. height: math.unit(7.5, "feet"),
  21367. weight: math.unit(2, "lb"),
  21368. name: "Side",
  21369. image: {
  21370. source: "./media/characters/artemis/calibrating-side.svg",
  21371. extra: 1192 / 1075,
  21372. bottom: 0.07
  21373. },
  21374. form: "calibrating"
  21375. },
  21376. sideNsfwer: {
  21377. height: math.unit(7.5, "feet"),
  21378. weight: math.unit(2, "lb"),
  21379. name: "Side",
  21380. image: {
  21381. source: "./media/characters/artemis/oversize-load-side.svg",
  21382. extra: 1192 / 1075,
  21383. bottom: 0.07
  21384. },
  21385. form: "oversize-load"
  21386. },
  21387. maw: {
  21388. height: math.unit(1.1, "feet"),
  21389. name: "Maw",
  21390. image: {
  21391. source: "./media/characters/artemis/maw.svg"
  21392. },
  21393. form: "work-safe"
  21394. },
  21395. stomach: {
  21396. height: math.unit(0.95, "feet"),
  21397. name: "Stomach",
  21398. image: {
  21399. source: "./media/characters/artemis/stomach.svg"
  21400. },
  21401. form: "work-safe"
  21402. },
  21403. dickCanine: {
  21404. height: math.unit(1, "feet"),
  21405. name: "Dick (Canine)",
  21406. image: {
  21407. source: "./media/characters/artemis/dick-canine.svg"
  21408. },
  21409. form: "calibrating"
  21410. },
  21411. dickEquine: {
  21412. height: math.unit(0.85, "feet"),
  21413. name: "Dick (Equine)",
  21414. image: {
  21415. source: "./media/characters/artemis/dick-equine.svg"
  21416. },
  21417. form: "calibrating"
  21418. },
  21419. dickExotic: {
  21420. height: math.unit(0.85, "feet"),
  21421. name: "Dick (Exotic)",
  21422. image: {
  21423. source: "./media/characters/artemis/dick-exotic.svg"
  21424. },
  21425. form: "calibrating"
  21426. },
  21427. dickCanineBigger: {
  21428. height: math.unit(1 * 1.33, "feet"),
  21429. name: "Dick (Canine)",
  21430. image: {
  21431. source: "./media/characters/artemis/dick-canine.svg"
  21432. },
  21433. form: "oversize-load"
  21434. },
  21435. dickEquineBigger: {
  21436. height: math.unit(0.85 * 1.33, "feet"),
  21437. name: "Dick (Equine)",
  21438. image: {
  21439. source: "./media/characters/artemis/dick-equine.svg"
  21440. },
  21441. form: "oversize-load"
  21442. },
  21443. dickExoticBigger: {
  21444. height: math.unit(0.85 * 1.33, "feet"),
  21445. name: "Dick (Exotic)",
  21446. image: {
  21447. source: "./media/characters/artemis/dick-exotic.svg"
  21448. },
  21449. form: "oversize-load"
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Normal",
  21455. height: math.unit(7.5, "feet"),
  21456. form: "work-safe",
  21457. default: true
  21458. },
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(7.5, "feet"),
  21462. form: "calibrating",
  21463. default: true
  21464. },
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(7.5, "feet"),
  21468. form: "oversize-load",
  21469. default: true
  21470. },
  21471. {
  21472. name: "Enlarged",
  21473. height: math.unit(12, "feet"),
  21474. form: "work-safe",
  21475. },
  21476. {
  21477. name: "Enlarged",
  21478. height: math.unit(12, "feet"),
  21479. form: "calibrating",
  21480. },
  21481. {
  21482. name: "Enlarged",
  21483. height: math.unit(12, "feet"),
  21484. form: "oversize-load",
  21485. },
  21486. ],
  21487. {
  21488. "work-safe": {
  21489. name: "Work-Safe",
  21490. default: true
  21491. },
  21492. "calibrating": {
  21493. name: "Calibrating"
  21494. },
  21495. "oversize-load": {
  21496. name: "Oversize Load"
  21497. }
  21498. }
  21499. ))
  21500. characterMakers.push(() => makeCharacter(
  21501. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21502. {
  21503. front: {
  21504. height: math.unit(5 + 3 / 12, "feet"),
  21505. weight: math.unit(160, "lb"),
  21506. name: "Front",
  21507. image: {
  21508. source: "./media/characters/kira/front.svg",
  21509. extra: 906 / 786,
  21510. bottom: 0.01
  21511. }
  21512. },
  21513. back: {
  21514. height: math.unit(5 + 3 / 12, "feet"),
  21515. weight: math.unit(160, "lb"),
  21516. name: "Back",
  21517. image: {
  21518. source: "./media/characters/kira/back.svg",
  21519. extra: 882 / 757,
  21520. bottom: 0.005
  21521. }
  21522. },
  21523. frontDressed: {
  21524. height: math.unit(5 + 3 / 12, "feet"),
  21525. weight: math.unit(160, "lb"),
  21526. name: "Front (Dressed)",
  21527. image: {
  21528. source: "./media/characters/kira/front-dressed.svg",
  21529. extra: 906 / 786,
  21530. bottom: 0.01
  21531. }
  21532. },
  21533. beans: {
  21534. height: math.unit(0.92, "feet"),
  21535. name: "Beans",
  21536. image: {
  21537. source: "./media/characters/kira/beans.svg"
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(5 + 3 / 12, "feet"),
  21545. default: true
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(5 + 4 / 12, "feet"),
  21554. weight: math.unit(145, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/scramble/front.svg",
  21558. extra: 763 / 727,
  21559. bottom: 0.05
  21560. }
  21561. },
  21562. back: {
  21563. height: math.unit(5 + 4 / 12, "feet"),
  21564. weight: math.unit(145, "lb"),
  21565. name: "Back",
  21566. image: {
  21567. source: "./media/characters/scramble/back.svg",
  21568. extra: 826 / 737,
  21569. bottom: 0.002
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Normal",
  21576. height: math.unit(5 + 4 / 12, "feet"),
  21577. default: true
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21583. {
  21584. side: {
  21585. height: math.unit(6 + 2 / 12, "feet"),
  21586. weight: math.unit(190, "lb"),
  21587. name: "Side",
  21588. image: {
  21589. source: "./media/characters/biscuit/side.svg",
  21590. extra: 858 / 791,
  21591. bottom: 0.044
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(6 + 2 / 12, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(5 + 2 / 12, "feet"),
  21608. weight: math.unit(120, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/poffin/front.svg",
  21612. extra: 786 / 680,
  21613. bottom: 0.005
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(5 + 2 / 12, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(6 + 3 / 12, "feet"),
  21630. weight: math.unit(519, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/dhari/front.svg",
  21634. extra: 1048 / 946,
  21635. bottom: 0.015
  21636. }
  21637. },
  21638. back: {
  21639. height: math.unit(6 + 3 / 12, "feet"),
  21640. weight: math.unit(519, "lb"),
  21641. name: "Back",
  21642. image: {
  21643. source: "./media/characters/dhari/back.svg",
  21644. extra: 1048 / 931,
  21645. bottom: 0.005
  21646. }
  21647. },
  21648. frontDressed: {
  21649. height: math.unit(6 + 3 / 12, "feet"),
  21650. weight: math.unit(519, "lb"),
  21651. name: "Front (Dressed)",
  21652. image: {
  21653. source: "./media/characters/dhari/front-dressed.svg",
  21654. extra: 1713 / 1546,
  21655. bottom: 0.02
  21656. }
  21657. },
  21658. backDressed: {
  21659. height: math.unit(6 + 3 / 12, "feet"),
  21660. weight: math.unit(519, "lb"),
  21661. name: "Back (Dressed)",
  21662. image: {
  21663. source: "./media/characters/dhari/back-dressed.svg",
  21664. extra: 1699 / 1537,
  21665. bottom: 0.01
  21666. }
  21667. },
  21668. maw: {
  21669. height: math.unit(0.95, "feet"),
  21670. name: "Maw",
  21671. image: {
  21672. source: "./media/characters/dhari/maw.svg"
  21673. }
  21674. },
  21675. wereFront: {
  21676. height: math.unit(12 + 8 / 12, "feet"),
  21677. weight: math.unit(4000, "lb"),
  21678. name: "Front (Were)",
  21679. image: {
  21680. source: "./media/characters/dhari/were-front.svg",
  21681. extra: 1065 / 969,
  21682. bottom: 0.015
  21683. }
  21684. },
  21685. wereBack: {
  21686. height: math.unit(12 + 8 / 12, "feet"),
  21687. weight: math.unit(4000, "lb"),
  21688. name: "Back (Were)",
  21689. image: {
  21690. source: "./media/characters/dhari/were-back.svg",
  21691. extra: 1065 / 969,
  21692. bottom: 0.012
  21693. }
  21694. },
  21695. wereMaw: {
  21696. height: math.unit(0.625, "meters"),
  21697. name: "Maw (Were)",
  21698. image: {
  21699. source: "./media/characters/dhari/were-maw.svg"
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Normal",
  21706. height: math.unit(6 + 3 / 12, "feet"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21713. {
  21714. anthro: {
  21715. height: math.unit(5 + 7 / 12, "feet"),
  21716. weight: math.unit(175, "lb"),
  21717. name: "Anthro",
  21718. image: {
  21719. source: "./media/characters/rena-dyne/anthro.svg",
  21720. extra: 1849 / 1785,
  21721. bottom: 0.005
  21722. }
  21723. },
  21724. taur: {
  21725. height: math.unit(15 + 6 / 12, "feet"),
  21726. weight: math.unit(8000, "lb"),
  21727. name: "Taur",
  21728. image: {
  21729. source: "./media/characters/rena-dyne/taur.svg",
  21730. extra: 2315 / 2234,
  21731. bottom: 0.033
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(5 + 7 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(8, "feet"),
  21748. weight: math.unit(600, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/weremeep/front.svg",
  21752. extra: 967 / 862,
  21753. bottom: 0.01
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(8, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Lorg",
  21765. height: math.unit(12, "feet")
  21766. },
  21767. {
  21768. name: "Oh Lawd She Comin'",
  21769. height: math.unit(20, "feet")
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21775. {
  21776. front: {
  21777. height: math.unit(4, "feet"),
  21778. weight: math.unit(90, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/reza/front.svg",
  21782. extra: 1183 / 1111,
  21783. bottom: 0.017
  21784. }
  21785. },
  21786. back: {
  21787. height: math.unit(4, "feet"),
  21788. weight: math.unit(90, "lb"),
  21789. name: "Back",
  21790. image: {
  21791. source: "./media/characters/reza/back.svg",
  21792. extra: 1183 / 1111,
  21793. bottom: 0.01
  21794. }
  21795. },
  21796. drake: {
  21797. height: math.unit(30, "feet"),
  21798. weight: math.unit(246960, "lb"),
  21799. name: "Drake",
  21800. image: {
  21801. source: "./media/characters/reza/drake.svg",
  21802. extra: 2350 / 2024,
  21803. bottom: 60.7 / 2403
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(4, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21817. {
  21818. side: {
  21819. height: math.unit(15, "feet"),
  21820. weight: math.unit(14, "tons"),
  21821. name: "Side",
  21822. image: {
  21823. source: "./media/characters/athea/side.svg",
  21824. extra: 960 / 540,
  21825. bottom: 0.003
  21826. }
  21827. },
  21828. sitting: {
  21829. height: math.unit(6 * 2.85, "feet"),
  21830. weight: math.unit(14, "tons"),
  21831. name: "Sitting",
  21832. image: {
  21833. source: "./media/characters/athea/sitting.svg",
  21834. extra: 621 / 581,
  21835. bottom: 0.075
  21836. }
  21837. },
  21838. maw: {
  21839. height: math.unit(7.59498031496063, "feet"),
  21840. name: "Maw",
  21841. image: {
  21842. source: "./media/characters/athea/maw.svg"
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Lap Cat",
  21849. height: math.unit(2.5, "feet")
  21850. },
  21851. {
  21852. name: "Minimacro",
  21853. height: math.unit(15, "feet"),
  21854. default: true
  21855. },
  21856. {
  21857. name: "Macro",
  21858. height: math.unit(120, "feet")
  21859. },
  21860. {
  21861. name: "Macro+",
  21862. height: math.unit(640, "feet")
  21863. },
  21864. {
  21865. name: "Colossus",
  21866. height: math.unit(2.2, "miles")
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(8 + 8 / 12, "feet"),
  21875. weight: math.unit(130, "kg"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/seroko/front.svg",
  21879. extra: 1385 / 1280,
  21880. bottom: 0.025
  21881. }
  21882. },
  21883. back: {
  21884. height: math.unit(8 + 8 / 12, "feet"),
  21885. weight: math.unit(130, "kg"),
  21886. name: "Back",
  21887. image: {
  21888. source: "./media/characters/seroko/back.svg",
  21889. extra: 1369 / 1238,
  21890. bottom: 0.018
  21891. }
  21892. },
  21893. frontDressed: {
  21894. height: math.unit(8 + 8 / 12, "feet"),
  21895. weight: math.unit(130, "kg"),
  21896. name: "Front (Dressed)",
  21897. image: {
  21898. source: "./media/characters/seroko/front-dressed.svg",
  21899. extra: 1366 / 1275,
  21900. bottom: 0.03
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(8 + 8 / 12, "feet"),
  21908. default: true
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(5.5, "feet"),
  21917. weight: math.unit(160, "lb"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/quatzi/front.svg",
  21921. extra: 2346 / 2242,
  21922. bottom: 0.015
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(5.5, "feet"),
  21930. default: true
  21931. },
  21932. {
  21933. name: "Big",
  21934. height: math.unit(7.7, "feet")
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21940. {
  21941. front: {
  21942. height: math.unit(5 + 11 / 12, "feet"),
  21943. weight: math.unit(180, "lb"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/sen/front.svg",
  21947. extra: 1321 / 1254,
  21948. bottom: 0.015
  21949. }
  21950. },
  21951. side: {
  21952. height: math.unit(5 + 11 / 12, "feet"),
  21953. weight: math.unit(180, "lb"),
  21954. name: "Side",
  21955. image: {
  21956. source: "./media/characters/sen/side.svg",
  21957. extra: 1321 / 1254,
  21958. bottom: 0.007
  21959. }
  21960. },
  21961. back: {
  21962. height: math.unit(5 + 11 / 12, "feet"),
  21963. weight: math.unit(180, "lb"),
  21964. name: "Back",
  21965. image: {
  21966. source: "./media/characters/sen/back.svg",
  21967. extra: 1321 / 1254
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(5 + 11 / 12, "feet"),
  21975. default: true
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21981. {
  21982. front: {
  21983. height: math.unit(166.6, "cm"),
  21984. weight: math.unit(66.6, "kg"),
  21985. name: "Front",
  21986. image: {
  21987. source: "./media/characters/fruity/front.svg",
  21988. extra: 1510 / 1386,
  21989. bottom: 0.04
  21990. }
  21991. },
  21992. back: {
  21993. height: math.unit(166.6, "cm"),
  21994. weight: math.unit(66.6, "lb"),
  21995. name: "Back",
  21996. image: {
  21997. source: "./media/characters/fruity/back.svg",
  21998. extra: 1563 / 1435,
  21999. bottom: 0.005
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "Normal",
  22006. height: math.unit(166.6, "cm"),
  22007. default: true
  22008. },
  22009. {
  22010. name: "Demonic",
  22011. height: math.unit(166.6, "feet")
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22017. {
  22018. side: {
  22019. height: math.unit(10, "feet"),
  22020. weight: math.unit(500, "lb"),
  22021. name: "Side",
  22022. image: {
  22023. source: "./media/characters/zost/side.svg",
  22024. extra: 2870/2533,
  22025. bottom: 252/3122
  22026. }
  22027. },
  22028. mawFront: {
  22029. height: math.unit(1.08, "meters"),
  22030. name: "Maw (Front)",
  22031. image: {
  22032. source: "./media/characters/zost/maw-front.svg"
  22033. }
  22034. },
  22035. mawSide: {
  22036. height: math.unit(2.66, "feet"),
  22037. name: "Maw (Side)",
  22038. image: {
  22039. source: "./media/characters/zost/maw-side.svg"
  22040. }
  22041. },
  22042. wingspan: {
  22043. height: math.unit(7.4, "feet"),
  22044. name: "Wingspan",
  22045. image: {
  22046. source: "./media/characters/zost/wingspan.svg"
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(10, "feet"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(5 + 4 / 12, "feet"),
  22063. weight: math.unit(120, "lb"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/luci/front.svg",
  22067. extra: 1985 / 1884,
  22068. bottom: 0.04
  22069. }
  22070. },
  22071. back: {
  22072. height: math.unit(5 + 4 / 12, "feet"),
  22073. weight: math.unit(120, "lb"),
  22074. name: "Back",
  22075. image: {
  22076. source: "./media/characters/luci/back.svg",
  22077. extra: 1892 / 1791,
  22078. bottom: 0.002
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(5 + 4 / 12, "feet"),
  22086. default: true
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22092. {
  22093. front: {
  22094. height: math.unit(1500, "feet"),
  22095. weight: math.unit(3.8e6, "tons"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/2th/front.svg",
  22099. extra: 3489 / 3350,
  22100. bottom: 0.1
  22101. }
  22102. },
  22103. foot: {
  22104. height: math.unit(461, "feet"),
  22105. name: "Foot",
  22106. image: {
  22107. source: "./media/characters/2th/foot.svg"
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "\"Micro\"",
  22114. height: math.unit(15 + 7 / 12, "feet")
  22115. },
  22116. {
  22117. name: "Normal",
  22118. height: math.unit(1500, "feet"),
  22119. default: true
  22120. },
  22121. {
  22122. name: "Macro",
  22123. height: math.unit(5000, "feet")
  22124. },
  22125. {
  22126. name: "Megamacro",
  22127. height: math.unit(15, "miles")
  22128. },
  22129. {
  22130. name: "Gigamacro",
  22131. height: math.unit(4000, "miles")
  22132. },
  22133. {
  22134. name: "Galactic",
  22135. height: math.unit(50, "AU")
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(5 + 6 / 12, "feet"),
  22144. weight: math.unit(220, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/amethyst/front.svg",
  22148. extra: 2078 / 2040,
  22149. bottom: 0.045
  22150. }
  22151. },
  22152. back: {
  22153. height: math.unit(5 + 6 / 12, "feet"),
  22154. weight: math.unit(220, "lb"),
  22155. name: "Back",
  22156. image: {
  22157. source: "./media/characters/amethyst/back.svg",
  22158. extra: 2021 / 1989,
  22159. bottom: 0.02
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(5 + 6 / 12, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22173. {
  22174. front: {
  22175. height: math.unit(4 + 11 / 12, "feet"),
  22176. weight: math.unit(120, "lb"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/yumi-akiyama/front.svg",
  22180. extra: 1327 / 1235,
  22181. bottom: 0.02
  22182. }
  22183. },
  22184. back: {
  22185. height: math.unit(4 + 11 / 12, "feet"),
  22186. weight: math.unit(120, "lb"),
  22187. name: "Back",
  22188. image: {
  22189. source: "./media/characters/yumi-akiyama/back.svg",
  22190. extra: 1287 / 1245,
  22191. bottom: 0.002
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Galactic",
  22198. height: math.unit(50, "galaxies"),
  22199. default: true
  22200. },
  22201. {
  22202. name: "Universal",
  22203. height: math.unit(100, "universes")
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(8, "feet"),
  22212. weight: math.unit(500, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/rifter-yrmori/front.svg",
  22216. extra: 1180 / 1125,
  22217. bottom: 0.02
  22218. }
  22219. },
  22220. back: {
  22221. height: math.unit(8, "feet"),
  22222. weight: math.unit(500, "lb"),
  22223. name: "Back",
  22224. image: {
  22225. source: "./media/characters/rifter-yrmori/back.svg",
  22226. extra: 1190 / 1145,
  22227. bottom: 0.001
  22228. }
  22229. },
  22230. wings: {
  22231. height: math.unit(7.75, "feet"),
  22232. weight: math.unit(500, "lb"),
  22233. name: "Wings",
  22234. image: {
  22235. source: "./media/characters/rifter-yrmori/wings.svg",
  22236. extra: 1357 / 1285
  22237. }
  22238. },
  22239. maw: {
  22240. height: math.unit(0.8, "feet"),
  22241. name: "Maw",
  22242. image: {
  22243. source: "./media/characters/rifter-yrmori/maw.svg"
  22244. }
  22245. },
  22246. mawfront: {
  22247. height: math.unit(1.45, "feet"),
  22248. name: "Maw (Front)",
  22249. image: {
  22250. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(8, "feet"),
  22258. default: true
  22259. },
  22260. {
  22261. name: "Macro",
  22262. height: math.unit(42, "meters")
  22263. },
  22264. ]
  22265. ))
  22266. characterMakers.push(() => makeCharacter(
  22267. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22268. {
  22269. were: {
  22270. height: math.unit(25 + 6 / 12, "feet"),
  22271. weight: math.unit(10000, "lb"),
  22272. name: "Were",
  22273. image: {
  22274. source: "./media/characters/tahajin/were.svg",
  22275. extra: 801 / 770,
  22276. bottom: 0.042
  22277. }
  22278. },
  22279. aquatic: {
  22280. height: math.unit(6 + 4 / 12, "feet"),
  22281. weight: math.unit(160, "lb"),
  22282. name: "Aquatic",
  22283. image: {
  22284. source: "./media/characters/tahajin/aquatic.svg",
  22285. extra: 572 / 542,
  22286. bottom: 0.04
  22287. }
  22288. },
  22289. chow: {
  22290. height: math.unit(8 + 11 / 12, "feet"),
  22291. weight: math.unit(450, "lb"),
  22292. name: "Chow",
  22293. image: {
  22294. source: "./media/characters/tahajin/chow.svg",
  22295. extra: 660 / 640,
  22296. bottom: 0.015
  22297. }
  22298. },
  22299. demiNaga: {
  22300. height: math.unit(6 + 8 / 12, "feet"),
  22301. weight: math.unit(300, "lb"),
  22302. name: "Demi Naga",
  22303. image: {
  22304. source: "./media/characters/tahajin/demi-naga.svg",
  22305. extra: 643 / 615,
  22306. bottom: 0.1
  22307. }
  22308. },
  22309. data: {
  22310. height: math.unit(5, "inches"),
  22311. weight: math.unit(0.1, "lb"),
  22312. name: "Data",
  22313. image: {
  22314. source: "./media/characters/tahajin/data.svg"
  22315. }
  22316. },
  22317. fluu: {
  22318. height: math.unit(5 + 7 / 12, "feet"),
  22319. weight: math.unit(140, "lb"),
  22320. name: "Fluu",
  22321. image: {
  22322. source: "./media/characters/tahajin/fluu.svg",
  22323. extra: 628 / 592,
  22324. bottom: 0.02
  22325. }
  22326. },
  22327. starWarrior: {
  22328. height: math.unit(4 + 5 / 12, "feet"),
  22329. weight: math.unit(50, "lb"),
  22330. name: "Star Warrior",
  22331. image: {
  22332. source: "./media/characters/tahajin/star-warrior.svg"
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(25 + 6 / 12, "feet"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(8, "feet"),
  22349. weight: math.unit(350, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/gabira/front.svg",
  22353. extra: 608 / 580,
  22354. bottom: 0.03
  22355. }
  22356. },
  22357. back: {
  22358. height: math.unit(8, "feet"),
  22359. weight: math.unit(350, "lb"),
  22360. name: "Back",
  22361. image: {
  22362. source: "./media/characters/gabira/back.svg",
  22363. extra: 608 / 580,
  22364. bottom: 0.03
  22365. }
  22366. },
  22367. },
  22368. [
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(8, "feet"),
  22372. default: true
  22373. },
  22374. ]
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22378. {
  22379. front: {
  22380. height: math.unit(5 + 3 / 12, "feet"),
  22381. weight: math.unit(137, "lb"),
  22382. name: "Front",
  22383. image: {
  22384. source: "./media/characters/sasha-katraine/front.svg",
  22385. extra: 1745/1694,
  22386. bottom: 37/1782
  22387. }
  22388. },
  22389. back: {
  22390. height: math.unit(5 + 3 / 12, "feet"),
  22391. weight: math.unit(137, "lb"),
  22392. name: "Back",
  22393. image: {
  22394. source: "./media/characters/sasha-katraine/back.svg",
  22395. extra: 1776/1699,
  22396. bottom: 26/1802
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Micro",
  22403. height: math.unit(5, "inches")
  22404. },
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(5 + 3 / 12, "feet"),
  22408. default: true
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22414. {
  22415. side: {
  22416. height: math.unit(4, "inches"),
  22417. weight: math.unit(200, "grams"),
  22418. name: "Side",
  22419. image: {
  22420. source: "./media/characters/der/side.svg",
  22421. extra: 719 / 400,
  22422. bottom: 30.6 / 749.9187
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Micro",
  22429. height: math.unit(4, "inches"),
  22430. default: true
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22436. {
  22437. side: {
  22438. height: math.unit(30, "meters"),
  22439. weight: math.unit(700, "tonnes"),
  22440. name: "Side",
  22441. image: {
  22442. source: "./media/characters/fixerdragon/side.svg",
  22443. extra: (1293.0514 - 116.03) / 1106.86,
  22444. bottom: 116.03 / 1293.0514
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Planck",
  22451. height: math.unit(1.6e-35, "meters")
  22452. },
  22453. {
  22454. name: "Micro",
  22455. height: math.unit(0.4, "meters")
  22456. },
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(30, "meters"),
  22460. default: true
  22461. },
  22462. {
  22463. name: "Megamacro",
  22464. height: math.unit(1.2, "megameters")
  22465. },
  22466. {
  22467. name: "Teramacro",
  22468. height: math.unit(130, "terameters")
  22469. },
  22470. {
  22471. name: "Yottamacro",
  22472. height: math.unit(6200, "yottameters")
  22473. },
  22474. ]
  22475. ));
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22478. {
  22479. front: {
  22480. height: math.unit(8, "feet"),
  22481. weight: math.unit(250, "lb"),
  22482. name: "Front",
  22483. image: {
  22484. source: "./media/characters/kite/front.svg",
  22485. extra: 2796 / 2659,
  22486. bottom: 0.002
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(8, "feet"),
  22494. default: true
  22495. },
  22496. {
  22497. name: "Macro",
  22498. height: math.unit(360, "feet")
  22499. },
  22500. {
  22501. name: "Megamacro",
  22502. height: math.unit(1500, "feet")
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(5 + 11/12, "feet"),
  22511. weight: math.unit(170, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/poojawa-vynar/front.svg",
  22515. extra: 1735/1585,
  22516. bottom: 96/1831
  22517. }
  22518. },
  22519. back: {
  22520. height: math.unit(5 + 11/12, "feet"),
  22521. weight: math.unit(170, "lb"),
  22522. name: "Back",
  22523. image: {
  22524. source: "./media/characters/poojawa-vynar/back.svg",
  22525. extra: 1749/1607,
  22526. bottom: 28/1777
  22527. }
  22528. },
  22529. male: {
  22530. height: math.unit(5 + 11/12, "feet"),
  22531. weight: math.unit(170, "lb"),
  22532. name: "Male",
  22533. image: {
  22534. source: "./media/characters/poojawa-vynar/male.svg",
  22535. extra: 1855/1713,
  22536. bottom: 63/1918
  22537. }
  22538. },
  22539. taur: {
  22540. height: math.unit(5 + 11/12, "feet"),
  22541. weight: math.unit(170, "lb"),
  22542. name: "Taur",
  22543. image: {
  22544. source: "./media/characters/poojawa-vynar/taur.svg",
  22545. extra: 1151/1059,
  22546. bottom: 356/1507
  22547. }
  22548. },
  22549. frontDressed: {
  22550. height: math.unit(5 + 11/12, "feet"),
  22551. weight: math.unit(170, "lb"),
  22552. name: "Front (Dressed)",
  22553. image: {
  22554. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22555. extra: 1735/1585,
  22556. bottom: 96/1831
  22557. }
  22558. },
  22559. backDressed: {
  22560. height: math.unit(5 + 11/12, "feet"),
  22561. weight: math.unit(170, "lb"),
  22562. name: "Back (Dressed)",
  22563. image: {
  22564. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22565. extra: 1749/1607,
  22566. bottom: 28/1777
  22567. }
  22568. },
  22569. maleDressed: {
  22570. height: math.unit(5 + 11/12, "feet"),
  22571. weight: math.unit(170, "lb"),
  22572. name: "Male (Dressed)",
  22573. image: {
  22574. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22575. extra: 1855/1713,
  22576. bottom: 63/1918
  22577. }
  22578. },
  22579. taurDressed: {
  22580. height: math.unit(5 + 11/12, "feet"),
  22581. weight: math.unit(170, "lb"),
  22582. name: "Taur (Dressed)",
  22583. image: {
  22584. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22585. extra: 1151/1059,
  22586. bottom: 356/1507
  22587. }
  22588. },
  22589. maw: {
  22590. height: math.unit(1.46, "feet"),
  22591. name: "Maw",
  22592. image: {
  22593. source: "./media/characters/poojawa-vynar/maw.svg"
  22594. }
  22595. },
  22596. head: {
  22597. height: math.unit(2.34, "feet"),
  22598. name: "Head",
  22599. image: {
  22600. source: "./media/characters/poojawa-vynar/head.svg"
  22601. }
  22602. },
  22603. paw: {
  22604. height: math.unit(1.61, "feet"),
  22605. name: "Paw",
  22606. image: {
  22607. source: "./media/characters/poojawa-vynar/paw.svg"
  22608. }
  22609. },
  22610. pawToering: {
  22611. height: math.unit(1.72, "feet"),
  22612. name: "Paw (Toering)",
  22613. image: {
  22614. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22615. }
  22616. },
  22617. toering: {
  22618. height: math.unit(2.9, "inches"),
  22619. name: "Toering",
  22620. image: {
  22621. source: "./media/characters/poojawa-vynar/toering.svg"
  22622. }
  22623. },
  22624. shaft: {
  22625. height: math.unit(0.625, "feet"),
  22626. name: "Shaft",
  22627. image: {
  22628. source: "./media/characters/poojawa-vynar/shaft.svg"
  22629. }
  22630. },
  22631. spade: {
  22632. height: math.unit(0.42, "feet"),
  22633. name: "Spade",
  22634. image: {
  22635. source: "./media/characters/poojawa-vynar/spade.svg"
  22636. }
  22637. },
  22638. },
  22639. [
  22640. {
  22641. name: "Shortstack",
  22642. height: math.unit(4, "feet")
  22643. },
  22644. {
  22645. name: "Normal",
  22646. height: math.unit(5 + 11 / 12, "feet"),
  22647. default: true
  22648. },
  22649. {
  22650. name: "Tauric",
  22651. height: math.unit(4, "meters")
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22657. {
  22658. front: {
  22659. height: math.unit(293, "meters"),
  22660. weight: math.unit(70400, "tons"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/violette/front.svg",
  22664. extra: 1227 / 1180,
  22665. bottom: 0.005
  22666. }
  22667. },
  22668. back: {
  22669. height: math.unit(293, "meters"),
  22670. weight: math.unit(70400, "tons"),
  22671. name: "Back",
  22672. image: {
  22673. source: "./media/characters/violette/back.svg",
  22674. extra: 1227 / 1180,
  22675. bottom: 0.005
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Macro",
  22682. height: math.unit(293, "meters"),
  22683. default: true
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22689. {
  22690. front: {
  22691. height: math.unit(1050, "feet"),
  22692. weight: math.unit(200000, "tons"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/alessandra/front.svg",
  22696. extra: 960 / 912,
  22697. bottom: 0.06
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Macro",
  22704. height: math.unit(1050, "feet")
  22705. },
  22706. {
  22707. name: "Macro+",
  22708. height: math.unit(900, "meters"),
  22709. default: true
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22715. {
  22716. front: {
  22717. height: math.unit(5, "feet"),
  22718. weight: math.unit(187, "lb"),
  22719. name: "Front",
  22720. image: {
  22721. source: "./media/characters/person/front.svg",
  22722. extra: 3087 / 2945,
  22723. bottom: 91 / 3181
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Micro",
  22730. height: math.unit(3, "inches")
  22731. },
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(5, "feet"),
  22735. default: true
  22736. },
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(90, "feet")
  22740. },
  22741. {
  22742. name: "Max Size",
  22743. height: math.unit(280, "feet")
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(4.5, "meters"),
  22752. weight: math.unit(3200, "lb"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/ty/front.svg",
  22756. extra: 1038 / 960,
  22757. bottom: 31.156 / 1068
  22758. }
  22759. },
  22760. back: {
  22761. height: math.unit(4.5, "meters"),
  22762. weight: math.unit(3200, "lb"),
  22763. name: "Back",
  22764. image: {
  22765. source: "./media/characters/ty/back.svg",
  22766. extra: 1044 / 966,
  22767. bottom: 7.48 / 1049
  22768. }
  22769. },
  22770. },
  22771. [
  22772. {
  22773. name: "Normal",
  22774. height: math.unit(4.5, "meters"),
  22775. default: true
  22776. },
  22777. ]
  22778. ))
  22779. characterMakers.push(() => makeCharacter(
  22780. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22781. {
  22782. front: {
  22783. height: math.unit(5 + 4 / 12, "feet"),
  22784. weight: math.unit(115, "lb"),
  22785. name: "Front",
  22786. image: {
  22787. source: "./media/characters/rocky/front.svg",
  22788. extra: 1012 / 975,
  22789. bottom: 54 / 1066
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Normal",
  22796. height: math.unit(5 + 4 / 12, "feet"),
  22797. default: true
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22803. {
  22804. upright: {
  22805. height: math.unit(6, "meters"),
  22806. weight: math.unit(4000, "kg"),
  22807. name: "Upright",
  22808. image: {
  22809. source: "./media/characters/ruin/upright.svg",
  22810. extra: 668 / 661,
  22811. bottom: 42 / 799.8396
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Normal",
  22818. height: math.unit(6, "meters"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22825. {
  22826. front: {
  22827. height: math.unit(5, "feet"),
  22828. weight: math.unit(106, "lb"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/robin/front.svg",
  22832. extra: 862 / 799,
  22833. bottom: 42.4 / 914.8856
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(5, "feet"),
  22841. default: true
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22847. {
  22848. side: {
  22849. height: math.unit(3, "feet"),
  22850. weight: math.unit(225, "lb"),
  22851. name: "Side",
  22852. image: {
  22853. source: "./media/characters/saian/side.svg",
  22854. extra: 566 / 356,
  22855. bottom: 79.7 / 643
  22856. }
  22857. },
  22858. maw: {
  22859. height: math.unit(2.85, "feet"),
  22860. name: "Maw",
  22861. image: {
  22862. source: "./media/characters/saian/maw.svg"
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Normal",
  22869. height: math.unit(3, "feet"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22876. {
  22877. side: {
  22878. height: math.unit(8, "feet"),
  22879. weight: math.unit(300, "lb"),
  22880. name: "Side",
  22881. image: {
  22882. source: "./media/characters/equus-silvermane/side.svg",
  22883. extra: 2176 / 2050,
  22884. bottom: 65.7 / 2245
  22885. }
  22886. },
  22887. front: {
  22888. height: math.unit(8, "feet"),
  22889. weight: math.unit(300, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/equus-silvermane/front.svg",
  22893. extra: 4633 / 4400,
  22894. bottom: 71.3 / 4706.915
  22895. }
  22896. },
  22897. sideStepping: {
  22898. height: math.unit(8, "feet"),
  22899. weight: math.unit(300, "lb"),
  22900. name: "Side (Stepping)",
  22901. image: {
  22902. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22903. extra: 1968 / 1860,
  22904. bottom: 16.4 / 1989
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(8, "feet")
  22912. },
  22913. {
  22914. name: "Minimacro",
  22915. height: math.unit(75, "feet"),
  22916. default: true
  22917. },
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(150, "feet")
  22921. },
  22922. {
  22923. name: "Macro+",
  22924. height: math.unit(1000, "feet")
  22925. },
  22926. {
  22927. name: "Megamacro",
  22928. height: math.unit(1, "mile")
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22934. {
  22935. side: {
  22936. height: math.unit(20, "feet"),
  22937. weight: math.unit(30000, "kg"),
  22938. name: "Side",
  22939. image: {
  22940. source: "./media/characters/windar/side.svg",
  22941. extra: 1491 / 1248,
  22942. bottom: 82.56 / 1568
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(20, "feet"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22956. {
  22957. side: {
  22958. height: math.unit(15.66, "feet"),
  22959. weight: math.unit(150, "lb"),
  22960. name: "Side",
  22961. image: {
  22962. source: "./media/characters/melody/side.svg",
  22963. extra: 1097 / 944,
  22964. bottom: 11.8 / 1109
  22965. }
  22966. },
  22967. sideOutfit: {
  22968. height: math.unit(15.66, "feet"),
  22969. weight: math.unit(150, "lb"),
  22970. name: "Side (Outfit)",
  22971. image: {
  22972. source: "./media/characters/melody/side-outfit.svg",
  22973. extra: 1097 / 944,
  22974. bottom: 11.8 / 1109
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(15.66, "feet"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22988. {
  22989. armoredFront: {
  22990. height: math.unit(8, "feet"),
  22991. weight: math.unit(325, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/windera/armored-front.svg",
  22995. extra: 1830/1598,
  22996. bottom: 151/1981
  22997. },
  22998. form: "armored",
  22999. default: true
  23000. },
  23001. macroFront: {
  23002. height: math.unit(70, "feet"),
  23003. weight: math.unit(315453, "lb"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/windera/macro-front.svg",
  23007. extra: 963/883,
  23008. bottom: 23/986
  23009. },
  23010. form: "macro",
  23011. default: true
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(8, "feet"),
  23018. default: true,
  23019. form: "armored"
  23020. },
  23021. {
  23022. name: "Normal",
  23023. height: math.unit(70, "feet"),
  23024. default: true,
  23025. form: "macro"
  23026. },
  23027. ],
  23028. {
  23029. "armored": {
  23030. name: "Armored",
  23031. default: true
  23032. },
  23033. "macro": {
  23034. name: "Macro",
  23035. },
  23036. }
  23037. ))
  23038. characterMakers.push(() => makeCharacter(
  23039. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23040. {
  23041. front: {
  23042. height: math.unit(28.75, "feet"),
  23043. weight: math.unit(2000, "kg"),
  23044. name: "Front",
  23045. image: {
  23046. source: "./media/characters/sonear/front.svg",
  23047. extra: 1041.1 / 964.9,
  23048. bottom: 53.7 / 1096.6
  23049. }
  23050. },
  23051. },
  23052. [
  23053. {
  23054. name: "Normal",
  23055. height: math.unit(28.75, "feet"),
  23056. default: true
  23057. },
  23058. ]
  23059. ))
  23060. characterMakers.push(() => makeCharacter(
  23061. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23062. {
  23063. side: {
  23064. height: math.unit(25.5, "feet"),
  23065. weight: math.unit(23000, "kg"),
  23066. name: "Side",
  23067. image: {
  23068. source: "./media/characters/kanara/side.svg"
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Normal",
  23075. height: math.unit(25.5, "feet"),
  23076. default: true
  23077. },
  23078. ]
  23079. ))
  23080. characterMakers.push(() => makeCharacter(
  23081. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23082. {
  23083. side: {
  23084. height: math.unit(10, "feet"),
  23085. weight: math.unit(1000, "kg"),
  23086. name: "Side",
  23087. image: {
  23088. source: "./media/characters/ereus/side.svg",
  23089. extra: 1157 / 959,
  23090. bottom: 153 / 1312.5
  23091. }
  23092. },
  23093. },
  23094. [
  23095. {
  23096. name: "Normal",
  23097. height: math.unit(10, "feet"),
  23098. default: true
  23099. },
  23100. ]
  23101. ))
  23102. characterMakers.push(() => makeCharacter(
  23103. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23104. {
  23105. side: {
  23106. height: math.unit(4.5, "feet"),
  23107. weight: math.unit(500, "lb"),
  23108. name: "Side",
  23109. image: {
  23110. source: "./media/characters/e-ter/side.svg",
  23111. extra: 1550 / 1248,
  23112. bottom: 146 / 1694
  23113. }
  23114. },
  23115. },
  23116. [
  23117. {
  23118. name: "Normal",
  23119. height: math.unit(4.5, "feet"),
  23120. default: true
  23121. },
  23122. ]
  23123. ))
  23124. characterMakers.push(() => makeCharacter(
  23125. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23126. {
  23127. side: {
  23128. height: math.unit(9.7, "feet"),
  23129. weight: math.unit(4000, "kg"),
  23130. name: "Side",
  23131. image: {
  23132. source: "./media/characters/yamie/side.svg"
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(9.7, "feet"),
  23140. default: true
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(50, "feet"),
  23149. weight: math.unit(50000, "kg"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/anders/front.svg",
  23153. extra: 570 / 539,
  23154. bottom: 14.7 / 586.7
  23155. }
  23156. },
  23157. },
  23158. [
  23159. {
  23160. name: "Large",
  23161. height: math.unit(50, "feet")
  23162. },
  23163. {
  23164. name: "Macro",
  23165. height: math.unit(2000, "feet"),
  23166. default: true
  23167. },
  23168. {
  23169. name: "Megamacro",
  23170. height: math.unit(12, "miles")
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(7 + 2 / 12, "feet"),
  23179. weight: math.unit(300, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/reban/front.svg",
  23183. extra: 1287/1212,
  23184. bottom: 148/1435
  23185. }
  23186. },
  23187. head: {
  23188. height: math.unit(1.95, "feet"),
  23189. name: "Head",
  23190. image: {
  23191. source: "./media/characters/reban/head.svg"
  23192. }
  23193. },
  23194. maw: {
  23195. height: math.unit(0.95, "feet"),
  23196. name: "Maw",
  23197. image: {
  23198. source: "./media/characters/reban/maw.svg"
  23199. }
  23200. },
  23201. foot: {
  23202. height: math.unit(1.65, "feet"),
  23203. name: "Foot",
  23204. image: {
  23205. source: "./media/characters/reban/foot.svg"
  23206. }
  23207. },
  23208. dick: {
  23209. height: math.unit(7 / 5, "feet"),
  23210. name: "Dick",
  23211. image: {
  23212. source: "./media/characters/reban/dick.svg"
  23213. }
  23214. },
  23215. },
  23216. [
  23217. {
  23218. name: "Natural Height",
  23219. height: math.unit(7 + 2 / 12, "feet")
  23220. },
  23221. {
  23222. name: "Macro",
  23223. height: math.unit(500, "feet"),
  23224. default: true
  23225. },
  23226. {
  23227. name: "Canon Height",
  23228. height: math.unit(50, "AU")
  23229. },
  23230. ]
  23231. ))
  23232. characterMakers.push(() => makeCharacter(
  23233. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23234. {
  23235. front: {
  23236. height: math.unit(6, "feet"),
  23237. weight: math.unit(150, "lb"),
  23238. name: "Front",
  23239. image: {
  23240. source: "./media/characters/terrance-keayes/front.svg",
  23241. extra: 1.005,
  23242. bottom: 151 / 1615
  23243. }
  23244. },
  23245. side: {
  23246. height: math.unit(6, "feet"),
  23247. weight: math.unit(150, "lb"),
  23248. name: "Side",
  23249. image: {
  23250. source: "./media/characters/terrance-keayes/side.svg",
  23251. extra: 1.005,
  23252. bottom: 129.4 / 1544
  23253. }
  23254. },
  23255. back: {
  23256. height: math.unit(6, "feet"),
  23257. weight: math.unit(150, "lb"),
  23258. name: "Back",
  23259. image: {
  23260. source: "./media/characters/terrance-keayes/back.svg",
  23261. extra: 1.005,
  23262. bottom: 58.4 / 1557.3
  23263. }
  23264. },
  23265. dick: {
  23266. height: math.unit(6 * 0.208, "feet"),
  23267. name: "Dick",
  23268. image: {
  23269. source: "./media/characters/terrance-keayes/dick.svg"
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Canon Height",
  23276. height: math.unit(35, "miles"),
  23277. default: true
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23283. {
  23284. front: {
  23285. height: math.unit(6, "feet"),
  23286. weight: math.unit(150, "lb"),
  23287. name: "Front",
  23288. image: {
  23289. source: "./media/characters/ofelia/front.svg",
  23290. extra: 1130/1117,
  23291. bottom: 91/1221
  23292. }
  23293. },
  23294. back: {
  23295. height: math.unit(6, "feet"),
  23296. weight: math.unit(150, "lb"),
  23297. name: "Back",
  23298. image: {
  23299. source: "./media/characters/ofelia/back.svg",
  23300. extra: 1172/1159,
  23301. bottom: 28/1200
  23302. }
  23303. },
  23304. maw: {
  23305. height: math.unit(1, "feet"),
  23306. name: "Maw",
  23307. image: {
  23308. source: "./media/characters/ofelia/maw.svg"
  23309. }
  23310. },
  23311. foot: {
  23312. height: math.unit(1.949, "feet"),
  23313. name: "Foot",
  23314. image: {
  23315. source: "./media/characters/ofelia/foot.svg"
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Canon Height",
  23322. height: math.unit(2000, "miles"),
  23323. default: true
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23329. {
  23330. front: {
  23331. height: math.unit(6, "feet"),
  23332. weight: math.unit(150, "lb"),
  23333. name: "Front",
  23334. image: {
  23335. source: "./media/characters/samuel/front.svg",
  23336. extra: 265 / 258,
  23337. bottom: 2 / 266.1566
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Macro",
  23344. height: math.unit(100, "feet"),
  23345. default: true
  23346. },
  23347. {
  23348. name: "Full Size",
  23349. height: math.unit(1000, "miles")
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23355. {
  23356. front: {
  23357. height: math.unit(6, "feet"),
  23358. weight: math.unit(300, "lb"),
  23359. name: "Front",
  23360. image: {
  23361. source: "./media/characters/beishir-kiel/front.svg",
  23362. extra: 569 / 547,
  23363. bottom: 41.9 / 609
  23364. }
  23365. },
  23366. maw: {
  23367. height: math.unit(6 * 0.202, "feet"),
  23368. name: "Maw",
  23369. image: {
  23370. source: "./media/characters/beishir-kiel/maw.svg"
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Macro",
  23377. height: math.unit(300, "feet"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(5 + 7/12, "feet"),
  23387. weight: math.unit(120, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/logan-grey/front.svg",
  23391. extra: 1836/1738,
  23392. bottom: 108/1944
  23393. }
  23394. },
  23395. back: {
  23396. height: math.unit(5 + 7/12, "feet"),
  23397. weight: math.unit(120, "lb"),
  23398. name: "Back",
  23399. image: {
  23400. source: "./media/characters/logan-grey/back.svg",
  23401. extra: 1880/1794,
  23402. bottom: 24/1904
  23403. }
  23404. },
  23405. frontSfw: {
  23406. height: math.unit(5 + 7/12, "feet"),
  23407. weight: math.unit(120, "lb"),
  23408. name: "Front (SFW)",
  23409. image: {
  23410. source: "./media/characters/logan-grey/front-sfw.svg",
  23411. extra: 1836/1738,
  23412. bottom: 108/1944
  23413. }
  23414. },
  23415. backSfw: {
  23416. height: math.unit(5 + 7/12, "feet"),
  23417. weight: math.unit(120, "lb"),
  23418. name: "Back (SFW)",
  23419. image: {
  23420. source: "./media/characters/logan-grey/back-sfw.svg",
  23421. extra: 1880/1794,
  23422. bottom: 24/1904
  23423. }
  23424. },
  23425. hands: {
  23426. height: math.unit(0.84, "feet"),
  23427. name: "Hands",
  23428. image: {
  23429. source: "./media/characters/logan-grey/hands.svg"
  23430. }
  23431. },
  23432. paws: {
  23433. height: math.unit(0.72, "feet"),
  23434. name: "Paws",
  23435. image: {
  23436. source: "./media/characters/logan-grey/paws.svg"
  23437. }
  23438. },
  23439. cock: {
  23440. height: math.unit(1.45, "feet"),
  23441. name: "Cock",
  23442. image: {
  23443. source: "./media/characters/logan-grey/cock.svg"
  23444. }
  23445. },
  23446. cockAlt: {
  23447. height: math.unit(1.437, "feet"),
  23448. name: "Cock (alt)",
  23449. image: {
  23450. source: "./media/characters/logan-grey/cock-alt.svg"
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(5 + 8 / 12, "feet")
  23458. },
  23459. {
  23460. name: "The 500 Foot Femboy",
  23461. height: math.unit(500, "feet"),
  23462. default: true
  23463. },
  23464. {
  23465. name: "Megmacro",
  23466. height: math.unit(20, "miles")
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23472. {
  23473. front: {
  23474. height: math.unit(8 + 2 / 12, "feet"),
  23475. weight: math.unit(275, "lb"),
  23476. name: "Front",
  23477. image: {
  23478. source: "./media/characters/draganta/front.svg",
  23479. extra: 1177 / 1135,
  23480. bottom: 33.46 / 1212.1
  23481. }
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Normal",
  23487. height: math.unit(8 + 6 / 12, "feet"),
  23488. default: true
  23489. },
  23490. {
  23491. name: "Macro",
  23492. height: math.unit(150, "feet")
  23493. },
  23494. {
  23495. name: "Megamacro",
  23496. height: math.unit(1000, "miles")
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(1.72, "m"),
  23505. weight: math.unit(80, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/voski/front.svg",
  23509. extra: 2076.22 / 2022.4,
  23510. bottom: 102.7 / 2177.3866
  23511. }
  23512. },
  23513. frontFlaccid: {
  23514. height: math.unit(1.72, "m"),
  23515. weight: math.unit(80, "lb"),
  23516. name: "Front (Flaccid)",
  23517. image: {
  23518. source: "./media/characters/voski/front-flaccid.svg",
  23519. extra: 2076.22 / 2022.4,
  23520. bottom: 102.7 / 2177.3866
  23521. }
  23522. },
  23523. frontErect: {
  23524. height: math.unit(1.72, "m"),
  23525. weight: math.unit(80, "lb"),
  23526. name: "Front (Erect)",
  23527. image: {
  23528. source: "./media/characters/voski/front-erect.svg",
  23529. extra: 2076.22 / 2022.4,
  23530. bottom: 102.7 / 2177.3866
  23531. }
  23532. },
  23533. back: {
  23534. height: math.unit(1.72, "m"),
  23535. weight: math.unit(80, "lb"),
  23536. name: "Back",
  23537. image: {
  23538. source: "./media/characters/voski/back.svg",
  23539. extra: 2104 / 2051,
  23540. bottom: 10.45 / 2113.63
  23541. }
  23542. },
  23543. },
  23544. [
  23545. {
  23546. name: "Normal",
  23547. height: math.unit(1.72, "m")
  23548. },
  23549. {
  23550. name: "Macro",
  23551. height: math.unit(55, "m"),
  23552. default: true
  23553. },
  23554. {
  23555. name: "Macro+",
  23556. height: math.unit(300, "m")
  23557. },
  23558. {
  23559. name: "Macro++",
  23560. height: math.unit(700, "m")
  23561. },
  23562. {
  23563. name: "Macro+++",
  23564. height: math.unit(4500, "m")
  23565. },
  23566. {
  23567. name: "Macro++++",
  23568. height: math.unit(45, "km")
  23569. },
  23570. {
  23571. name: "Macro+++++",
  23572. height: math.unit(1220, "km")
  23573. },
  23574. ]
  23575. ))
  23576. characterMakers.push(() => makeCharacter(
  23577. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23578. {
  23579. front: {
  23580. height: math.unit(2.3, "m"),
  23581. weight: math.unit(304, "kg"),
  23582. name: "Front",
  23583. image: {
  23584. source: "./media/characters/icowom-lee/front.svg",
  23585. extra: 985 / 955,
  23586. bottom: 25.4 / 1012
  23587. }
  23588. },
  23589. fronttentacles: {
  23590. height: math.unit(2.3, "m"),
  23591. weight: math.unit(304, "kg"),
  23592. name: "Front-tentacles",
  23593. image: {
  23594. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23595. extra: 985 / 955,
  23596. bottom: 25.4 / 1012
  23597. }
  23598. },
  23599. back: {
  23600. height: math.unit(2.3, "m"),
  23601. weight: math.unit(304, "kg"),
  23602. name: "Back",
  23603. image: {
  23604. source: "./media/characters/icowom-lee/back.svg",
  23605. extra: 975 / 954,
  23606. bottom: 9.5 / 985
  23607. }
  23608. },
  23609. backtentacles: {
  23610. height: math.unit(2.3, "m"),
  23611. weight: math.unit(304, "kg"),
  23612. name: "Back-tentacles",
  23613. image: {
  23614. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23615. extra: 975 / 954,
  23616. bottom: 9.5 / 985
  23617. }
  23618. },
  23619. frontDressed: {
  23620. height: math.unit(2.3, "m"),
  23621. weight: math.unit(304, "kg"),
  23622. name: "Front (Dressed)",
  23623. image: {
  23624. source: "./media/characters/icowom-lee/front-dressed.svg",
  23625. extra: 3076 / 2933,
  23626. bottom: 51.4 / 3125.1889
  23627. }
  23628. },
  23629. rump: {
  23630. height: math.unit(0.776, "meters"),
  23631. name: "Rump",
  23632. image: {
  23633. source: "./media/characters/icowom-lee/rump.svg"
  23634. }
  23635. },
  23636. genitals: {
  23637. height: math.unit(0.78, "meters"),
  23638. name: "Genitals",
  23639. image: {
  23640. source: "./media/characters/icowom-lee/genitals.svg"
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Normal",
  23647. height: math.unit(2.3, "meters"),
  23648. default: true
  23649. },
  23650. {
  23651. name: "Macro",
  23652. height: math.unit(94, "meters"),
  23653. default: true
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(22, "meters"),
  23662. weight: math.unit(21000, "kg"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/shock-diamond/front.svg",
  23666. extra: 2204 / 2053,
  23667. bottom: 65 / 2239.47
  23668. }
  23669. },
  23670. frontNude: {
  23671. height: math.unit(22, "meters"),
  23672. weight: math.unit(21000, "kg"),
  23673. name: "Front (Nude)",
  23674. image: {
  23675. source: "./media/characters/shock-diamond/front-nude.svg",
  23676. extra: 2514 / 2285,
  23677. bottom: 13 / 2527.56
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(3, "meters")
  23685. },
  23686. {
  23687. name: "Macro",
  23688. height: math.unit(22, "meters"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(5 + 4 / 12, "feet"),
  23698. weight: math.unit(120, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/rory/front.svg",
  23702. extra: 1318/1241,
  23703. bottom: 42/1360
  23704. }
  23705. },
  23706. back: {
  23707. height: math.unit(5 + 4 / 12, "feet"),
  23708. weight: math.unit(120, "lb"),
  23709. name: "Back",
  23710. image: {
  23711. source: "./media/characters/rory/back.svg",
  23712. extra: 1318/1241,
  23713. bottom: 42/1360
  23714. }
  23715. },
  23716. butt: {
  23717. height: math.unit(1.74, "feet"),
  23718. name: "Butt",
  23719. image: {
  23720. source: "./media/characters/rory/butt.svg"
  23721. }
  23722. },
  23723. dick: {
  23724. height: math.unit(1.02, "feet"),
  23725. name: "Dick",
  23726. image: {
  23727. source: "./media/characters/rory/dick.svg"
  23728. }
  23729. },
  23730. paws: {
  23731. height: math.unit(1, "feet"),
  23732. name: "Paws",
  23733. image: {
  23734. source: "./media/characters/rory/paws.svg"
  23735. }
  23736. },
  23737. frontAlt: {
  23738. height: math.unit(5 + 4 / 12, "feet"),
  23739. weight: math.unit(120, "lb"),
  23740. name: "Front (Alt)",
  23741. image: {
  23742. source: "./media/characters/rory/front-alt.svg",
  23743. extra: 589 / 556,
  23744. bottom: 45.7 / 635.76
  23745. }
  23746. },
  23747. frontAltNude: {
  23748. height: math.unit(5 + 4 / 12, "feet"),
  23749. weight: math.unit(120, "lb"),
  23750. name: "Front (Alt, Nude)",
  23751. image: {
  23752. source: "./media/characters/rory/front-alt-nude.svg",
  23753. extra: 589 / 556,
  23754. bottom: 45.7 / 635.76
  23755. }
  23756. },
  23757. side: {
  23758. height: math.unit(5 + 4 / 12, "feet"),
  23759. weight: math.unit(120, "lb"),
  23760. name: "Side",
  23761. image: {
  23762. source: "./media/characters/rory/side.svg",
  23763. extra: 597 / 564,
  23764. bottom: 55 / 653
  23765. }
  23766. },
  23767. backAlt: {
  23768. height: math.unit(5 + 4 / 12, "feet"),
  23769. weight: math.unit(120, "lb"),
  23770. name: "Back (Alt)",
  23771. image: {
  23772. source: "./media/characters/rory/back-alt.svg",
  23773. extra: 620 / 585,
  23774. bottom: 8.86 / 630.43
  23775. }
  23776. },
  23777. dickAlt: {
  23778. height: math.unit(0.86, "feet"),
  23779. name: "Dick (Alt)",
  23780. image: {
  23781. source: "./media/characters/rory/dick-alt.svg"
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Normal",
  23788. height: math.unit(5 + 4 / 12, "feet"),
  23789. default: true
  23790. },
  23791. {
  23792. name: "Macro",
  23793. height: math.unit(100, "feet")
  23794. },
  23795. {
  23796. name: "Macro+",
  23797. height: math.unit(140, "feet")
  23798. },
  23799. {
  23800. name: "Macro++",
  23801. height: math.unit(300, "feet")
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23807. {
  23808. front: {
  23809. height: math.unit(5 + 9 / 12, "feet"),
  23810. weight: math.unit(190, "lb"),
  23811. name: "Front",
  23812. image: {
  23813. source: "./media/characters/sprisk/front.svg",
  23814. extra: 1225 / 1180,
  23815. bottom: 42.7 / 1266.4
  23816. }
  23817. },
  23818. frontNsfw: {
  23819. height: math.unit(5 + 9 / 12, "feet"),
  23820. weight: math.unit(190, "lb"),
  23821. name: "Front (NSFW)",
  23822. image: {
  23823. source: "./media/characters/sprisk/front-nsfw.svg",
  23824. extra: 1225 / 1180,
  23825. bottom: 42.7 / 1266.4
  23826. }
  23827. },
  23828. back: {
  23829. height: math.unit(5 + 9 / 12, "feet"),
  23830. weight: math.unit(190, "lb"),
  23831. name: "Back",
  23832. image: {
  23833. source: "./media/characters/sprisk/back.svg",
  23834. extra: 1247 / 1200,
  23835. bottom: 5.6 / 1253.04
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Tiny",
  23842. height: math.unit(2, "inches")
  23843. },
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(5 + 9 / 12, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Mini Macro",
  23851. height: math.unit(18, "feet")
  23852. },
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(100, "feet")
  23856. },
  23857. {
  23858. name: "MACRO",
  23859. height: math.unit(50, "miles")
  23860. },
  23861. {
  23862. name: "M A C R O",
  23863. height: math.unit(300, "miles")
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23869. {
  23870. side: {
  23871. height: math.unit(15.6, "meters"),
  23872. weight: math.unit(700000, "kg"),
  23873. name: "Side",
  23874. image: {
  23875. source: "./media/characters/bunsen/side.svg",
  23876. extra: 1644 / 358
  23877. }
  23878. },
  23879. foot: {
  23880. height: math.unit(1.611 * 1644 / 358, "meter"),
  23881. name: "Foot",
  23882. image: {
  23883. source: "./media/characters/bunsen/foot.svg"
  23884. }
  23885. },
  23886. },
  23887. [
  23888. {
  23889. name: "Small",
  23890. height: math.unit(10, "feet")
  23891. },
  23892. {
  23893. name: "Normal",
  23894. height: math.unit(15.6, "meters"),
  23895. default: true
  23896. },
  23897. ]
  23898. ))
  23899. characterMakers.push(() => makeCharacter(
  23900. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23901. {
  23902. front: {
  23903. height: math.unit(4 + 11 / 12, "feet"),
  23904. weight: math.unit(140, "lb"),
  23905. name: "Front",
  23906. image: {
  23907. source: "./media/characters/sesh/front.svg",
  23908. extra: 3420 / 3231,
  23909. bottom: 72 / 3949.5
  23910. }
  23911. },
  23912. },
  23913. [
  23914. {
  23915. name: "Normal",
  23916. height: math.unit(4 + 11 / 12, "feet")
  23917. },
  23918. {
  23919. name: "Grown",
  23920. height: math.unit(15, "feet"),
  23921. default: true
  23922. },
  23923. {
  23924. name: "Macro",
  23925. height: math.unit(1500, "feet")
  23926. },
  23927. {
  23928. name: "Megamacro",
  23929. height: math.unit(30, "miles")
  23930. },
  23931. {
  23932. name: "Continental",
  23933. height: math.unit(3000, "miles")
  23934. },
  23935. {
  23936. name: "Gravity Mass",
  23937. height: math.unit(300000, "miles")
  23938. },
  23939. {
  23940. name: "Planet Buster",
  23941. height: math.unit(30000000, "miles")
  23942. },
  23943. {
  23944. name: "Big",
  23945. height: math.unit(3000000000, "miles")
  23946. },
  23947. ]
  23948. ))
  23949. characterMakers.push(() => makeCharacter(
  23950. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23951. {
  23952. front: {
  23953. height: math.unit(9, "feet"),
  23954. weight: math.unit(350, "lb"),
  23955. name: "Front",
  23956. image: {
  23957. source: "./media/characters/pepper/front.svg",
  23958. extra: 1448 / 1312,
  23959. bottom: 9.4 / 1457.88
  23960. }
  23961. },
  23962. back: {
  23963. height: math.unit(9, "feet"),
  23964. weight: math.unit(350, "lb"),
  23965. name: "Back",
  23966. image: {
  23967. source: "./media/characters/pepper/back.svg",
  23968. extra: 1423 / 1300,
  23969. bottom: 4.6 / 1429
  23970. }
  23971. },
  23972. maw: {
  23973. height: math.unit(0.932, "feet"),
  23974. name: "Maw",
  23975. image: {
  23976. source: "./media/characters/pepper/maw.svg"
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(9, "feet"),
  23984. default: true
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(6, "feet"),
  23993. weight: math.unit(150, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/maelstrom/front.svg",
  23997. extra: 2100 / 1883,
  23998. bottom: 94 / 2196.7
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Less Kaiju",
  24005. height: math.unit(200, "feet")
  24006. },
  24007. {
  24008. name: "Kaiju",
  24009. height: math.unit(400, "feet"),
  24010. default: true
  24011. },
  24012. {
  24013. name: "Kaiju-er",
  24014. height: math.unit(600, "feet")
  24015. },
  24016. ]
  24017. ))
  24018. characterMakers.push(() => makeCharacter(
  24019. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24020. {
  24021. front: {
  24022. height: math.unit(6 + 5 / 12, "feet"),
  24023. weight: math.unit(180, "lb"),
  24024. name: "Front",
  24025. image: {
  24026. source: "./media/characters/lexir/front.svg",
  24027. extra: 180 / 172,
  24028. bottom: 12 / 192
  24029. }
  24030. },
  24031. back: {
  24032. height: math.unit(6 + 5 / 12, "feet"),
  24033. weight: math.unit(180, "lb"),
  24034. name: "Back",
  24035. image: {
  24036. source: "./media/characters/lexir/back.svg",
  24037. extra: 1273/1201,
  24038. bottom: 39/1312
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Very Smal",
  24045. height: math.unit(1, "nm")
  24046. },
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(6 + 5 / 12, "feet"),
  24050. default: true
  24051. },
  24052. {
  24053. name: "Macro",
  24054. height: math.unit(1, "mile")
  24055. },
  24056. {
  24057. name: "Megamacro",
  24058. height: math.unit(50, "miles")
  24059. },
  24060. ]
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24064. {
  24065. front: {
  24066. height: math.unit(1.5, "meters"),
  24067. weight: math.unit(100, "lb"),
  24068. name: "Front",
  24069. image: {
  24070. source: "./media/characters/maksio/front.svg",
  24071. extra: 1549 / 1531,
  24072. bottom: 123.7 / 1674.5429
  24073. }
  24074. },
  24075. back: {
  24076. height: math.unit(1.5, "meters"),
  24077. weight: math.unit(100, "lb"),
  24078. name: "Back",
  24079. image: {
  24080. source: "./media/characters/maksio/back.svg",
  24081. extra: 1541 / 1509,
  24082. bottom: 97 / 1639
  24083. }
  24084. },
  24085. hand: {
  24086. height: math.unit(0.621, "feet"),
  24087. name: "Hand",
  24088. image: {
  24089. source: "./media/characters/maksio/hand.svg"
  24090. }
  24091. },
  24092. foot: {
  24093. height: math.unit(1.611, "feet"),
  24094. name: "Foot",
  24095. image: {
  24096. source: "./media/characters/maksio/foot.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Shrunken",
  24103. height: math.unit(10, "cm")
  24104. },
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(150, "cm"),
  24108. default: true
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(100, "feet"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/erza-bear/front.svg",
  24120. extra: 2449 / 2390,
  24121. bottom: 46 / 2494
  24122. }
  24123. },
  24124. back: {
  24125. height: math.unit(100, "feet"),
  24126. name: "Back",
  24127. image: {
  24128. source: "./media/characters/erza-bear/back.svg",
  24129. extra: 2489 / 2430,
  24130. bottom: 85.4 / 2480
  24131. }
  24132. },
  24133. tail: {
  24134. height: math.unit(42, "feet"),
  24135. name: "Tail",
  24136. image: {
  24137. source: "./media/characters/erza-bear/tail.svg"
  24138. }
  24139. },
  24140. tongue: {
  24141. height: math.unit(8, "feet"),
  24142. name: "Tongue",
  24143. image: {
  24144. source: "./media/characters/erza-bear/tongue.svg"
  24145. }
  24146. },
  24147. dick: {
  24148. height: math.unit(10.5, "feet"),
  24149. name: "Dick",
  24150. image: {
  24151. source: "./media/characters/erza-bear/dick.svg"
  24152. }
  24153. },
  24154. dickVertical: {
  24155. height: math.unit(16.9, "feet"),
  24156. name: "Dick (Vertical)",
  24157. image: {
  24158. source: "./media/characters/erza-bear/dick-vertical.svg"
  24159. }
  24160. },
  24161. },
  24162. [
  24163. {
  24164. name: "Macro",
  24165. height: math.unit(100, "feet"),
  24166. default: true
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24172. {
  24173. front: {
  24174. height: math.unit(172, "cm"),
  24175. weight: math.unit(73, "kg"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/violet-flor/front.svg",
  24179. extra: 1530 / 1442,
  24180. bottom: 61.9 / 1588.8
  24181. }
  24182. },
  24183. back: {
  24184. height: math.unit(180, "cm"),
  24185. weight: math.unit(73, "kg"),
  24186. name: "Back",
  24187. image: {
  24188. source: "./media/characters/violet-flor/back.svg",
  24189. extra: 1692 / 1630,
  24190. bottom: 20 / 1712
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(172, "cm"),
  24198. default: true
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(6, "feet"),
  24207. weight: math.unit(220, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/lynn-rhea/front.svg",
  24211. extra: 310 / 273
  24212. }
  24213. },
  24214. back: {
  24215. height: math.unit(6, "feet"),
  24216. weight: math.unit(220, "lb"),
  24217. name: "Back",
  24218. image: {
  24219. source: "./media/characters/lynn-rhea/back.svg",
  24220. extra: 310 / 273
  24221. }
  24222. },
  24223. dicks: {
  24224. height: math.unit(0.9, "feet"),
  24225. name: "Dicks",
  24226. image: {
  24227. source: "./media/characters/lynn-rhea/dicks.svg"
  24228. }
  24229. },
  24230. slit: {
  24231. height: math.unit(0.4, "feet"),
  24232. name: "Slit",
  24233. image: {
  24234. source: "./media/characters/lynn-rhea/slit.svg"
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Micro",
  24241. height: math.unit(1, "inch")
  24242. },
  24243. {
  24244. name: "Macro",
  24245. height: math.unit(60, "feet"),
  24246. default: true
  24247. },
  24248. {
  24249. name: "Megamacro",
  24250. height: math.unit(2, "miles")
  24251. },
  24252. {
  24253. name: "Gigamacro",
  24254. height: math.unit(3, "earths")
  24255. },
  24256. {
  24257. name: "Galactic",
  24258. height: math.unit(0.8, "galaxies")
  24259. },
  24260. ]
  24261. ))
  24262. characterMakers.push(() => makeCharacter(
  24263. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24264. {
  24265. front: {
  24266. height: math.unit(1600, "feet"),
  24267. weight: math.unit(85758785169, "kg"),
  24268. name: "Front",
  24269. image: {
  24270. source: "./media/characters/valathos/front.svg",
  24271. extra: 1451 / 1339
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Macro",
  24278. height: math.unit(1600, "feet"),
  24279. default: true
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24285. {
  24286. front: {
  24287. height: math.unit(7 + 5 / 12, "feet"),
  24288. weight: math.unit(300, "lb"),
  24289. name: "Front",
  24290. image: {
  24291. source: "./media/characters/azula/front.svg",
  24292. extra: 3208 / 2880,
  24293. bottom: 80.2 / 3277
  24294. }
  24295. },
  24296. back: {
  24297. height: math.unit(7 + 5 / 12, "feet"),
  24298. weight: math.unit(300, "lb"),
  24299. name: "Back",
  24300. image: {
  24301. source: "./media/characters/azula/back.svg",
  24302. extra: 3169 / 2822,
  24303. bottom: 150.6 / 3321
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Normal",
  24310. height: math.unit(7 + 5 / 12, "feet"),
  24311. default: true
  24312. },
  24313. {
  24314. name: "Big",
  24315. height: math.unit(20, "feet")
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24321. {
  24322. front: {
  24323. height: math.unit(5 + 1 / 12, "feet"),
  24324. weight: math.unit(110, "lb"),
  24325. name: "Front",
  24326. image: {
  24327. source: "./media/characters/rupert/front.svg",
  24328. extra: 1549 / 1495,
  24329. bottom: 54.2 / 1604.4
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Normal",
  24336. height: math.unit(5 + 1 / 12, "feet"),
  24337. default: true
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24343. {
  24344. front: {
  24345. height: math.unit(8 + 4 / 12, "feet"),
  24346. weight: math.unit(350, "lb"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/sheera-castellar/front.svg",
  24350. extra: 1957 / 1894,
  24351. bottom: 26.97 / 1975.017
  24352. }
  24353. },
  24354. side: {
  24355. height: math.unit(8 + 4 / 12, "feet"),
  24356. weight: math.unit(350, "lb"),
  24357. name: "Side",
  24358. image: {
  24359. source: "./media/characters/sheera-castellar/side.svg",
  24360. extra: 1957 / 1894
  24361. }
  24362. },
  24363. back: {
  24364. height: math.unit(8 + 4 / 12, "feet"),
  24365. weight: math.unit(350, "lb"),
  24366. name: "Back",
  24367. image: {
  24368. source: "./media/characters/sheera-castellar/back.svg",
  24369. extra: 1957 / 1894
  24370. }
  24371. },
  24372. angled: {
  24373. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24374. weight: math.unit(350, "lb"),
  24375. name: "Angled",
  24376. image: {
  24377. source: "./media/characters/sheera-castellar/angled.svg",
  24378. extra: 1807 / 1707,
  24379. bottom: 68 / 1875
  24380. }
  24381. },
  24382. genitals: {
  24383. height: math.unit(2.2, "feet"),
  24384. name: "Genitals",
  24385. image: {
  24386. source: "./media/characters/sheera-castellar/genitals.svg"
  24387. }
  24388. },
  24389. taur: {
  24390. height: math.unit(10 + 6/12, "feet"),
  24391. name: "Taur",
  24392. image: {
  24393. source: "./media/characters/sheera-castellar/taur.svg",
  24394. extra: 2017/1909,
  24395. bottom: 185/2202
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(8 + 4 / 12, "feet")
  24403. },
  24404. {
  24405. name: "Macro",
  24406. height: math.unit(150, "feet"),
  24407. default: true
  24408. },
  24409. {
  24410. name: "Macro+",
  24411. height: math.unit(800, "feet")
  24412. },
  24413. ]
  24414. ))
  24415. characterMakers.push(() => makeCharacter(
  24416. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24417. {
  24418. front: {
  24419. height: math.unit(6, "feet"),
  24420. weight: math.unit(150, "lb"),
  24421. name: "Front",
  24422. image: {
  24423. source: "./media/characters/jaipur/front.svg",
  24424. extra: 3860 / 3731,
  24425. bottom: 287 / 4140
  24426. }
  24427. },
  24428. back: {
  24429. height: math.unit(6, "feet"),
  24430. weight: math.unit(150, "lb"),
  24431. name: "Back",
  24432. image: {
  24433. source: "./media/characters/jaipur/back.svg",
  24434. extra: 1637/1561,
  24435. bottom: 154/1791
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Normal",
  24442. height: math.unit(1.85, "meters"),
  24443. default: true
  24444. },
  24445. {
  24446. name: "Macro",
  24447. height: math.unit(150, "meters")
  24448. },
  24449. {
  24450. name: "Macro+",
  24451. height: math.unit(0.5, "miles")
  24452. },
  24453. {
  24454. name: "Macro++",
  24455. height: math.unit(2.5, "miles")
  24456. },
  24457. {
  24458. name: "Macro+++",
  24459. height: math.unit(12, "miles")
  24460. },
  24461. {
  24462. name: "Macro++++",
  24463. height: math.unit(120, "miles")
  24464. },
  24465. {
  24466. name: "Macro+++++",
  24467. height: math.unit(1200, "miles")
  24468. },
  24469. ]
  24470. ))
  24471. characterMakers.push(() => makeCharacter(
  24472. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24473. {
  24474. front: {
  24475. height: math.unit(6, "feet"),
  24476. weight: math.unit(150, "lb"),
  24477. name: "Front",
  24478. image: {
  24479. source: "./media/characters/sheila-wolf/front.svg",
  24480. extra: 1931 / 1808,
  24481. bottom: 29.5 / 1960
  24482. }
  24483. },
  24484. dick: {
  24485. height: math.unit(1.464, "feet"),
  24486. name: "Dick",
  24487. image: {
  24488. source: "./media/characters/sheila-wolf/dick.svg"
  24489. }
  24490. },
  24491. muzzle: {
  24492. height: math.unit(0.513, "feet"),
  24493. name: "Muzzle",
  24494. image: {
  24495. source: "./media/characters/sheila-wolf/muzzle.svg"
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Macro",
  24502. height: math.unit(70, "feet"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24509. {
  24510. front: {
  24511. height: math.unit(32, "meters"),
  24512. weight: math.unit(300000, "kg"),
  24513. name: "Front",
  24514. image: {
  24515. source: "./media/characters/almor/front.svg",
  24516. extra: 1408 / 1322,
  24517. bottom: 94.6 / 1506.5
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Macro",
  24524. height: math.unit(32, "meters"),
  24525. default: true
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24531. {
  24532. front: {
  24533. height: math.unit(7, "feet"),
  24534. weight: math.unit(200, "lb"),
  24535. name: "Front",
  24536. image: {
  24537. source: "./media/characters/silver/front.svg",
  24538. extra: 472.1 / 450.5,
  24539. bottom: 26.5 / 499.424
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(7, "feet"),
  24547. default: true
  24548. },
  24549. {
  24550. name: "Macro",
  24551. height: math.unit(800, "feet")
  24552. },
  24553. {
  24554. name: "Megamacro",
  24555. height: math.unit(250, "miles")
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(6, "feet"),
  24564. weight: math.unit(150, "lb"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/pliskin/front.svg",
  24568. extra: 1469 / 1359,
  24569. bottom: 70 / 1540
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Micro",
  24576. height: math.unit(3, "inches")
  24577. },
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(5 + 11 / 12, "feet"),
  24581. default: true
  24582. },
  24583. {
  24584. name: "Macro",
  24585. height: math.unit(120, "feet")
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24591. {
  24592. front: {
  24593. height: math.unit(6, "feet"),
  24594. weight: math.unit(150, "lb"),
  24595. name: "Front",
  24596. image: {
  24597. source: "./media/characters/sammy/front.svg",
  24598. extra: 1193 / 1089,
  24599. bottom: 30.5 / 1226
  24600. }
  24601. },
  24602. },
  24603. [
  24604. {
  24605. name: "Macro",
  24606. height: math.unit(1700, "feet"),
  24607. default: true
  24608. },
  24609. {
  24610. name: "Examacro",
  24611. height: math.unit(2.5e9, "lightyears")
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24617. {
  24618. front: {
  24619. height: math.unit(21, "meters"),
  24620. weight: math.unit(12, "tonnes"),
  24621. name: "Front",
  24622. image: {
  24623. source: "./media/characters/kuru/front.svg",
  24624. extra: 4301 / 3785,
  24625. bottom: 371.3 / 4691
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Macro",
  24632. height: math.unit(21, "meters"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(23, "meters"),
  24642. weight: math.unit(12.2, "tonnes"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/rakka/front.svg",
  24646. extra: 4670 / 4169,
  24647. bottom: 301 / 4968.7
  24648. }
  24649. },
  24650. },
  24651. [
  24652. {
  24653. name: "Macro",
  24654. height: math.unit(23, "meters"),
  24655. default: true
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(6, "feet"),
  24664. weight: math.unit(150, "lb"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/rhys-feline/front.svg",
  24668. extra: 2488 / 2308,
  24669. bottom: 35.67 / 2519.19
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Really Small",
  24676. height: math.unit(1, "nm")
  24677. },
  24678. {
  24679. name: "Micro",
  24680. height: math.unit(4, "inches")
  24681. },
  24682. {
  24683. name: "Normal",
  24684. height: math.unit(4 + 10 / 12, "feet"),
  24685. default: true
  24686. },
  24687. {
  24688. name: "Macro",
  24689. height: math.unit(100, "feet")
  24690. },
  24691. {
  24692. name: "Megamacto",
  24693. height: math.unit(50, "miles")
  24694. },
  24695. ]
  24696. ))
  24697. characterMakers.push(() => makeCharacter(
  24698. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24699. {
  24700. side: {
  24701. height: math.unit(30, "feet"),
  24702. weight: math.unit(35000, "kg"),
  24703. name: "Side",
  24704. image: {
  24705. source: "./media/characters/alydar/side.svg",
  24706. extra: 234 / 222,
  24707. bottom: 6.5 / 241
  24708. }
  24709. },
  24710. front: {
  24711. height: math.unit(30, "feet"),
  24712. weight: math.unit(35000, "kg"),
  24713. name: "Front",
  24714. image: {
  24715. source: "./media/characters/alydar/front.svg",
  24716. extra: 223.37 / 210.2,
  24717. bottom: 22.3 / 246.76
  24718. }
  24719. },
  24720. top: {
  24721. height: math.unit(64.54, "feet"),
  24722. weight: math.unit(35000, "kg"),
  24723. name: "Top",
  24724. image: {
  24725. source: "./media/characters/alydar/top.svg"
  24726. }
  24727. },
  24728. anthro: {
  24729. height: math.unit(30, "feet"),
  24730. weight: math.unit(9000, "kg"),
  24731. name: "Anthro",
  24732. image: {
  24733. source: "./media/characters/alydar/anthro.svg",
  24734. extra: 432 / 421,
  24735. bottom: 7.18 / 440
  24736. }
  24737. },
  24738. maw: {
  24739. height: math.unit(11.693, "feet"),
  24740. name: "Maw",
  24741. image: {
  24742. source: "./media/characters/alydar/maw.svg"
  24743. }
  24744. },
  24745. head: {
  24746. height: math.unit(11.693, "feet"),
  24747. name: "Head",
  24748. image: {
  24749. source: "./media/characters/alydar/head.svg"
  24750. }
  24751. },
  24752. headAlt: {
  24753. height: math.unit(12.861, "feet"),
  24754. name: "Head (Alt)",
  24755. image: {
  24756. source: "./media/characters/alydar/head-alt.svg"
  24757. }
  24758. },
  24759. wing: {
  24760. height: math.unit(20.712, "feet"),
  24761. name: "Wing",
  24762. image: {
  24763. source: "./media/characters/alydar/wing.svg"
  24764. }
  24765. },
  24766. wingFeather: {
  24767. height: math.unit(9.662, "feet"),
  24768. name: "Wing Feather",
  24769. image: {
  24770. source: "./media/characters/alydar/wing-feather.svg"
  24771. }
  24772. },
  24773. countourFeather: {
  24774. height: math.unit(4.154, "feet"),
  24775. name: "Contour Feather",
  24776. image: {
  24777. source: "./media/characters/alydar/contour-feather.svg"
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Diplomatic",
  24784. height: math.unit(13, "feet"),
  24785. default: true
  24786. },
  24787. {
  24788. name: "Small",
  24789. height: math.unit(30, "feet")
  24790. },
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(95, "feet"),
  24794. default: true
  24795. },
  24796. {
  24797. name: "Large",
  24798. height: math.unit(285, "feet")
  24799. },
  24800. {
  24801. name: "Incomprehensible",
  24802. height: math.unit(450, "megameters")
  24803. },
  24804. ]
  24805. ))
  24806. characterMakers.push(() => makeCharacter(
  24807. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24808. {
  24809. side: {
  24810. height: math.unit(11, "feet"),
  24811. weight: math.unit(1750, "kg"),
  24812. name: "Side",
  24813. image: {
  24814. source: "./media/characters/selicia/side.svg",
  24815. extra: 440 / 396,
  24816. bottom: 24.8 / 465.979
  24817. }
  24818. },
  24819. maw: {
  24820. height: math.unit(4.665, "feet"),
  24821. name: "Maw",
  24822. image: {
  24823. source: "./media/characters/selicia/maw.svg"
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Normal",
  24830. height: math.unit(11, "feet"),
  24831. default: true
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24837. {
  24838. side: {
  24839. height: math.unit(2 + 6 / 12, "feet"),
  24840. weight: math.unit(30, "lb"),
  24841. name: "Side",
  24842. image: {
  24843. source: "./media/characters/layla/side.svg",
  24844. extra: 244 / 188,
  24845. bottom: 18.2 / 262.1
  24846. }
  24847. },
  24848. back: {
  24849. height: math.unit(2 + 6 / 12, "feet"),
  24850. weight: math.unit(30, "lb"),
  24851. name: "Back",
  24852. image: {
  24853. source: "./media/characters/layla/back.svg",
  24854. extra: 308 / 241.5,
  24855. bottom: 8.9 / 316.8
  24856. }
  24857. },
  24858. cumming: {
  24859. height: math.unit(2 + 6 / 12, "feet"),
  24860. weight: math.unit(30, "lb"),
  24861. name: "Cumming",
  24862. image: {
  24863. source: "./media/characters/layla/cumming.svg",
  24864. extra: 342 / 279,
  24865. bottom: 595 / 938
  24866. }
  24867. },
  24868. dickFlaccid: {
  24869. height: math.unit(2.595, "feet"),
  24870. name: "Flaccid Genitals",
  24871. image: {
  24872. source: "./media/characters/layla/dick-flaccid.svg"
  24873. }
  24874. },
  24875. dickErect: {
  24876. height: math.unit(2.359, "feet"),
  24877. name: "Erect Genitals",
  24878. image: {
  24879. source: "./media/characters/layla/dick-erect.svg"
  24880. }
  24881. },
  24882. dragon: {
  24883. height: math.unit(40, "feet"),
  24884. name: "Dragon",
  24885. image: {
  24886. source: "./media/characters/layla/dragon.svg",
  24887. extra: 610/535,
  24888. bottom: 367/977
  24889. }
  24890. },
  24891. taur: {
  24892. height: math.unit(30, "feet"),
  24893. name: "Taur",
  24894. image: {
  24895. source: "./media/characters/layla/taur.svg",
  24896. extra: 1268/1199,
  24897. bottom: 112/1380
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Micro",
  24904. height: math.unit(1, "inch")
  24905. },
  24906. {
  24907. name: "Small",
  24908. height: math.unit(1, "foot")
  24909. },
  24910. {
  24911. name: "Normal",
  24912. height: math.unit(2 + 6 / 12, "feet"),
  24913. default: true
  24914. },
  24915. {
  24916. name: "Macro",
  24917. height: math.unit(200, "feet")
  24918. },
  24919. {
  24920. name: "Megamacro",
  24921. height: math.unit(1000, "miles")
  24922. },
  24923. {
  24924. name: "Planetary",
  24925. height: math.unit(8000, "miles")
  24926. },
  24927. {
  24928. name: "True Layla",
  24929. height: math.unit(200000 * 7, "multiverses")
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24935. {
  24936. back: {
  24937. height: math.unit(10.5, "feet"),
  24938. weight: math.unit(800, "lb"),
  24939. name: "Back",
  24940. image: {
  24941. source: "./media/characters/knox/back.svg",
  24942. extra: 1486 / 1089,
  24943. bottom: 107 / 1601.4
  24944. }
  24945. },
  24946. side: {
  24947. height: math.unit(10.5, "feet"),
  24948. weight: math.unit(800, "lb"),
  24949. name: "Side",
  24950. image: {
  24951. source: "./media/characters/knox/side.svg",
  24952. extra: 244 / 218,
  24953. bottom: 14 / 260
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Compact",
  24960. height: math.unit(10.5, "feet"),
  24961. default: true
  24962. },
  24963. {
  24964. name: "Dynamax",
  24965. height: math.unit(210, "feet")
  24966. },
  24967. {
  24968. name: "Full Macro",
  24969. height: math.unit(850, "feet")
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(28, "feet"),
  24978. weight: math.unit(10500, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/kayda/front.svg",
  24982. extra: 1536 / 1428,
  24983. bottom: 68.7 / 1603
  24984. }
  24985. },
  24986. back: {
  24987. height: math.unit(28, "feet"),
  24988. weight: math.unit(10500, "lb"),
  24989. name: "Back",
  24990. image: {
  24991. source: "./media/characters/kayda/back.svg",
  24992. extra: 1557 / 1464,
  24993. bottom: 39.5 / 1597.49
  24994. }
  24995. },
  24996. dick: {
  24997. height: math.unit(3.858, "feet"),
  24998. name: "Dick",
  24999. image: {
  25000. source: "./media/characters/kayda/dick.svg"
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Macro",
  25007. height: math.unit(28, "feet"),
  25008. default: true
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25014. {
  25015. front: {
  25016. height: math.unit(10 + 11 / 12, "feet"),
  25017. weight: math.unit(1400, "lb"),
  25018. name: "Front",
  25019. image: {
  25020. source: "./media/characters/brian/front.svg",
  25021. extra: 737 / 692,
  25022. bottom: 55.4 / 785
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(10 + 11 / 12, "feet"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(5 + 8 / 12, "feet"),
  25039. weight: math.unit(140, "lb"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/khemri/front.svg",
  25043. extra: 4780 / 4059,
  25044. bottom: 80.1 / 4859.25
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Micro",
  25051. height: math.unit(6, "inches")
  25052. },
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(5 + 8 / 12, "feet"),
  25056. default: true
  25057. },
  25058. ]
  25059. ))
  25060. characterMakers.push(() => makeCharacter(
  25061. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25062. {
  25063. front: {
  25064. height: math.unit(13, "feet"),
  25065. weight: math.unit(1700, "lb"),
  25066. name: "Front",
  25067. image: {
  25068. source: "./media/characters/felix-braveheart/front.svg",
  25069. extra: 1222 / 1157,
  25070. bottom: 53.2 / 1280
  25071. }
  25072. },
  25073. back: {
  25074. height: math.unit(13, "feet"),
  25075. weight: math.unit(1700, "lb"),
  25076. name: "Back",
  25077. image: {
  25078. source: "./media/characters/felix-braveheart/back.svg",
  25079. extra: 1277 / 1203,
  25080. bottom: 50.2 / 1327
  25081. }
  25082. },
  25083. feral: {
  25084. height: math.unit(6, "feet"),
  25085. weight: math.unit(400, "lb"),
  25086. name: "Feral",
  25087. image: {
  25088. source: "./media/characters/felix-braveheart/feral.svg",
  25089. extra: 682 / 625,
  25090. bottom: 6.9 / 688
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(13, "feet"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25104. {
  25105. side: {
  25106. height: math.unit(5 + 11 / 12, "feet"),
  25107. weight: math.unit(1400, "lb"),
  25108. name: "Side",
  25109. image: {
  25110. source: "./media/characters/shadow-blade/side.svg",
  25111. extra: 1726 / 1267,
  25112. bottom: 58.4 / 1785
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(5 + 11 / 12, "feet"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(1 + 6 / 12, "feet"),
  25129. weight: math.unit(25, "lb"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/karla-halldor/front.svg",
  25133. extra: 1459 / 1383,
  25134. bottom: 12 / 1472
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(1 + 6 / 12, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(6 + 2 / 12, "feet"),
  25151. weight: math.unit(160, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/ariam/front.svg",
  25155. extra: 1073/976,
  25156. bottom: 52/1125
  25157. }
  25158. },
  25159. back: {
  25160. height: math.unit(6 + 2/12, "feet"),
  25161. weight: math.unit(160, "lb"),
  25162. name: "Back",
  25163. image: {
  25164. source: "./media/characters/ariam/back.svg",
  25165. extra: 1103/1023,
  25166. bottom: 9/1112
  25167. }
  25168. },
  25169. dressed: {
  25170. height: math.unit(6 + 2/12, "feet"),
  25171. weight: math.unit(160, "lb"),
  25172. name: "Dressed",
  25173. image: {
  25174. source: "./media/characters/ariam/dressed.svg",
  25175. extra: 1099/1009,
  25176. bottom: 25/1124
  25177. }
  25178. },
  25179. squatting: {
  25180. height: math.unit(4.1, "feet"),
  25181. weight: math.unit(160, "lb"),
  25182. name: "Squatting",
  25183. image: {
  25184. source: "./media/characters/ariam/squatting.svg",
  25185. extra: 2617 / 2112,
  25186. bottom: 61.2 / 2681,
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(6 + 2 / 12, "feet"),
  25194. default: true
  25195. },
  25196. {
  25197. name: "Normal+",
  25198. height: math.unit(4, "meters")
  25199. },
  25200. {
  25201. name: "Macro",
  25202. height: math.unit(50, "meters")
  25203. },
  25204. {
  25205. name: "Macro+",
  25206. height: math.unit(100, "meters")
  25207. },
  25208. {
  25209. name: "Megamacro",
  25210. height: math.unit(20, "km")
  25211. },
  25212. {
  25213. name: "Caretaker",
  25214. height: math.unit(444, "megameters")
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25220. {
  25221. front: {
  25222. height: math.unit(1.67, "meters"),
  25223. weight: math.unit(140, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25227. extra: 438 / 410,
  25228. bottom: 0.75 / 439
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Shrunken",
  25235. height: math.unit(7.6, "cm")
  25236. },
  25237. {
  25238. name: "Human Scale",
  25239. height: math.unit(1.67, "meters")
  25240. },
  25241. {
  25242. name: "Wolxi Scale",
  25243. height: math.unit(36.7, "meters"),
  25244. default: true
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25250. {
  25251. front: {
  25252. height: math.unit(1.73, "meters"),
  25253. weight: math.unit(240, "lb"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/izue-two-mothers/front.svg",
  25257. extra: 469 / 437,
  25258. bottom: 1.24 / 470.6
  25259. }
  25260. },
  25261. },
  25262. [
  25263. {
  25264. name: "Shrunken",
  25265. height: math.unit(7.86, "cm")
  25266. },
  25267. {
  25268. name: "Human Scale",
  25269. height: math.unit(1.73, "meters")
  25270. },
  25271. {
  25272. name: "Wolxi Scale",
  25273. height: math.unit(38, "meters"),
  25274. default: true
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25280. {
  25281. front: {
  25282. height: math.unit(1.55, "meters"),
  25283. weight: math.unit(120, "lb"),
  25284. name: "Front",
  25285. image: {
  25286. source: "./media/characters/teeku-love-shack/front.svg",
  25287. extra: 387 / 362,
  25288. bottom: 1.51 / 388
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Shrunken",
  25295. height: math.unit(7, "cm")
  25296. },
  25297. {
  25298. name: "Human Scale",
  25299. height: math.unit(1.55, "meters")
  25300. },
  25301. {
  25302. name: "Wolxi Scale",
  25303. height: math.unit(34.1, "meters"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(1.83, "meters"),
  25313. weight: math.unit(135, "lb"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/dejma-the-red/front.svg",
  25317. extra: 480 / 458,
  25318. bottom: 1.8 / 482
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Shrunken",
  25325. height: math.unit(8.3, "cm")
  25326. },
  25327. {
  25328. name: "Human Scale",
  25329. height: math.unit(1.83, "meters")
  25330. },
  25331. {
  25332. name: "Wolxi Scale",
  25333. height: math.unit(40, "meters"),
  25334. default: true
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25340. {
  25341. front: {
  25342. height: math.unit(1.78, "meters"),
  25343. weight: math.unit(65, "kg"),
  25344. name: "Front",
  25345. image: {
  25346. source: "./media/characters/aki/front.svg",
  25347. extra: 452 / 415
  25348. }
  25349. },
  25350. frontNsfw: {
  25351. height: math.unit(1.78, "meters"),
  25352. weight: math.unit(65, "kg"),
  25353. name: "Front (NSFW)",
  25354. image: {
  25355. source: "./media/characters/aki/front-nsfw.svg",
  25356. extra: 452 / 415
  25357. }
  25358. },
  25359. back: {
  25360. height: math.unit(1.78, "meters"),
  25361. weight: math.unit(65, "kg"),
  25362. name: "Back",
  25363. image: {
  25364. source: "./media/characters/aki/back.svg",
  25365. extra: 452 / 415
  25366. }
  25367. },
  25368. rump: {
  25369. height: math.unit(2.05, "feet"),
  25370. name: "Rump",
  25371. image: {
  25372. source: "./media/characters/aki/rump.svg"
  25373. }
  25374. },
  25375. dick: {
  25376. height: math.unit(0.95, "feet"),
  25377. name: "Dick",
  25378. image: {
  25379. source: "./media/characters/aki/dick.svg"
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Micro",
  25386. height: math.unit(15, "cm")
  25387. },
  25388. {
  25389. name: "Normal",
  25390. height: math.unit(178, "cm"),
  25391. default: true
  25392. },
  25393. {
  25394. name: "Macro",
  25395. height: math.unit(214, "m")
  25396. },
  25397. {
  25398. name: "Macro+",
  25399. height: math.unit(534, "m")
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25405. {
  25406. front: {
  25407. height: math.unit(5 + 5 / 12, "feet"),
  25408. weight: math.unit(120, "lb"),
  25409. name: "Front",
  25410. image: {
  25411. source: "./media/characters/ari/front.svg",
  25412. extra: 1550/1471,
  25413. bottom: 39/1589
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(5 + 5 / 12, "feet")
  25421. },
  25422. {
  25423. name: "Macro",
  25424. height: math.unit(100, "feet"),
  25425. default: true
  25426. },
  25427. {
  25428. name: "Megamacro",
  25429. height: math.unit(100, "miles")
  25430. },
  25431. {
  25432. name: "Gigamacro",
  25433. height: math.unit(80000, "miles")
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25439. {
  25440. side: {
  25441. height: math.unit(9, "feet"),
  25442. weight: math.unit(400, "kg"),
  25443. name: "Side",
  25444. image: {
  25445. source: "./media/characters/bolt/side.svg",
  25446. extra: 1126 / 896,
  25447. bottom: 60 / 1187.3,
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Micro",
  25454. height: math.unit(5, "inches")
  25455. },
  25456. {
  25457. name: "Normal",
  25458. height: math.unit(9, "feet"),
  25459. default: true
  25460. },
  25461. {
  25462. name: "Macro",
  25463. height: math.unit(700, "feet")
  25464. },
  25465. {
  25466. name: "Max Size",
  25467. height: math.unit(1.52e22, "yottameters")
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(4.3, "meters"),
  25476. weight: math.unit(3, "tons"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/draekon-sylviar/front.svg",
  25480. extra: 2072/1512,
  25481. bottom: 74/2146
  25482. }
  25483. },
  25484. back: {
  25485. height: math.unit(4.3, "meters"),
  25486. weight: math.unit(3, "tons"),
  25487. name: "Back",
  25488. image: {
  25489. source: "./media/characters/draekon-sylviar/back.svg",
  25490. extra: 1639/1483,
  25491. bottom: 41/1680
  25492. }
  25493. },
  25494. feral: {
  25495. height: math.unit(1.15, "meters"),
  25496. weight: math.unit(3, "tons"),
  25497. name: "Feral",
  25498. image: {
  25499. source: "./media/characters/draekon-sylviar/feral.svg",
  25500. extra: 1033/395,
  25501. bottom: 130/1163
  25502. }
  25503. },
  25504. maw: {
  25505. height: math.unit(1.3, "meters"),
  25506. name: "Maw",
  25507. image: {
  25508. source: "./media/characters/draekon-sylviar/maw.svg"
  25509. }
  25510. },
  25511. mawSeparated: {
  25512. height: math.unit(1.53, "meters"),
  25513. name: "Separated Maw",
  25514. image: {
  25515. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25516. }
  25517. },
  25518. tail: {
  25519. height: math.unit(1.15, "meters"),
  25520. name: "Tail",
  25521. image: {
  25522. source: "./media/characters/draekon-sylviar/tail.svg"
  25523. }
  25524. },
  25525. tailDick: {
  25526. height: math.unit(1.15, "meters"),
  25527. name: "Tail (Dick)",
  25528. image: {
  25529. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25530. }
  25531. },
  25532. tailDickSeparated: {
  25533. height: math.unit(1.19, "meters"),
  25534. name: "Tail (Separated Dick)",
  25535. image: {
  25536. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25537. }
  25538. },
  25539. slit: {
  25540. height: math.unit(1, "meters"),
  25541. name: "Slit",
  25542. image: {
  25543. source: "./media/characters/draekon-sylviar/slit.svg"
  25544. }
  25545. },
  25546. dick: {
  25547. height: math.unit(1.15, "meters"),
  25548. name: "Dick",
  25549. image: {
  25550. source: "./media/characters/draekon-sylviar/dick.svg"
  25551. }
  25552. },
  25553. dickSeparated: {
  25554. height: math.unit(1.1, "meters"),
  25555. name: "Separated Dick",
  25556. image: {
  25557. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25558. }
  25559. },
  25560. sheath: {
  25561. height: math.unit(1.15, "meters"),
  25562. name: "Sheath",
  25563. image: {
  25564. source: "./media/characters/draekon-sylviar/sheath.svg"
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Small",
  25571. height: math.unit(4.53 / 2, "meters"),
  25572. default: true
  25573. },
  25574. {
  25575. name: "Normal",
  25576. height: math.unit(4.53, "meters"),
  25577. default: true
  25578. },
  25579. {
  25580. name: "Large",
  25581. height: math.unit(4.53 * 2, "meters"),
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25587. {
  25588. front: {
  25589. height: math.unit(6 + 2 / 12, "feet"),
  25590. weight: math.unit(180, "lb"),
  25591. name: "Front",
  25592. image: {
  25593. source: "./media/characters/brawler/front.svg",
  25594. extra: 3301 / 3027,
  25595. bottom: 138 / 3439
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Normal",
  25602. height: math.unit(6 + 2 / 12, "feet"),
  25603. default: true
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25609. {
  25610. front: {
  25611. height: math.unit(11, "feet"),
  25612. weight: math.unit(1000, "lb"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/alex/front.svg",
  25616. bottom: 44.5 / 620
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Micro",
  25623. height: math.unit(5, "inches")
  25624. },
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(11, "feet"),
  25628. default: true
  25629. },
  25630. {
  25631. name: "Macro",
  25632. height: math.unit(9.5e9, "feet")
  25633. },
  25634. {
  25635. name: "Max Size",
  25636. height: math.unit(1.4e283, "yottameters")
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25642. {
  25643. female: {
  25644. height: math.unit(29.9, "m"),
  25645. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25646. name: "Female",
  25647. image: {
  25648. source: "./media/characters/zenari/female.svg",
  25649. extra: 3281.6 / 3217,
  25650. bottom: 72.2 / 3353
  25651. }
  25652. },
  25653. male: {
  25654. height: math.unit(27.7, "m"),
  25655. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25656. name: "Male",
  25657. image: {
  25658. source: "./media/characters/zenari/male.svg",
  25659. extra: 3008 / 2991,
  25660. bottom: 54.6 / 3069
  25661. }
  25662. },
  25663. },
  25664. [
  25665. {
  25666. name: "Macro",
  25667. height: math.unit(29.7, "meters"),
  25668. default: true
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25674. {
  25675. female: {
  25676. height: math.unit(23.8, "m"),
  25677. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25678. name: "Female",
  25679. image: {
  25680. source: "./media/characters/mactarian/female.svg",
  25681. extra: 2662 / 2569,
  25682. bottom: 73 / 2736
  25683. }
  25684. },
  25685. male: {
  25686. height: math.unit(23.8, "m"),
  25687. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25688. name: "Male",
  25689. image: {
  25690. source: "./media/characters/mactarian/male.svg",
  25691. extra: 2673 / 2600,
  25692. bottom: 76 / 2750
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Macro",
  25699. height: math.unit(23.8, "meters"),
  25700. default: true
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25706. {
  25707. female: {
  25708. height: math.unit(19.3, "m"),
  25709. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25710. name: "Female",
  25711. image: {
  25712. source: "./media/characters/umok/female.svg",
  25713. extra: 2186 / 2078,
  25714. bottom: 87 / 2277
  25715. }
  25716. },
  25717. male: {
  25718. height: math.unit(19.5, "m"),
  25719. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25720. name: "Male",
  25721. image: {
  25722. source: "./media/characters/umok/male.svg",
  25723. extra: 2233 / 2140,
  25724. bottom: 24.4 / 2258
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Macro",
  25731. height: math.unit(19.3, "meters"),
  25732. default: true
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25738. {
  25739. female: {
  25740. height: math.unit(26.15, "m"),
  25741. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25742. name: "Female",
  25743. image: {
  25744. source: "./media/characters/joraxian/female.svg",
  25745. extra: 2912 / 2824,
  25746. bottom: 36 / 2956
  25747. }
  25748. },
  25749. male: {
  25750. height: math.unit(25.4, "m"),
  25751. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25752. name: "Male",
  25753. image: {
  25754. source: "./media/characters/joraxian/male.svg",
  25755. extra: 2877 / 2721,
  25756. bottom: 82 / 2967
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Macro",
  25763. height: math.unit(26.15, "meters"),
  25764. default: true
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25770. {
  25771. female: {
  25772. height: math.unit(21.6, "m"),
  25773. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25774. name: "Female",
  25775. image: {
  25776. source: "./media/characters/sthara/female.svg",
  25777. extra: 2516 / 2347,
  25778. bottom: 21.5 / 2537
  25779. }
  25780. },
  25781. male: {
  25782. height: math.unit(24, "m"),
  25783. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25784. name: "Male",
  25785. image: {
  25786. source: "./media/characters/sthara/male.svg",
  25787. extra: 2732 / 2607,
  25788. bottom: 23 / 2732
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Macro",
  25795. height: math.unit(21.6, "meters"),
  25796. default: true
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25802. {
  25803. front: {
  25804. height: math.unit(6 + 4 / 12, "feet"),
  25805. weight: math.unit(175, "lb"),
  25806. name: "Front",
  25807. image: {
  25808. source: "./media/characters/luka-bryzant/front.svg",
  25809. extra: 311 / 289,
  25810. bottom: 4 / 315
  25811. }
  25812. },
  25813. back: {
  25814. height: math.unit(6 + 4 / 12, "feet"),
  25815. weight: math.unit(175, "lb"),
  25816. name: "Back",
  25817. image: {
  25818. source: "./media/characters/luka-bryzant/back.svg",
  25819. extra: 311 / 289,
  25820. bottom: 3.8 / 313.7
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Micro",
  25827. height: math.unit(10, "inches")
  25828. },
  25829. {
  25830. name: "Normal",
  25831. height: math.unit(6 + 4 / 12, "feet"),
  25832. default: true
  25833. },
  25834. {
  25835. name: "Large",
  25836. height: math.unit(12, "feet")
  25837. },
  25838. ]
  25839. ))
  25840. characterMakers.push(() => makeCharacter(
  25841. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25842. {
  25843. front: {
  25844. height: math.unit(5 + 7 / 12, "feet"),
  25845. weight: math.unit(185, "lb"),
  25846. name: "Front",
  25847. image: {
  25848. source: "./media/characters/aman-aquila/front.svg",
  25849. extra: 1013 / 976,
  25850. bottom: 45.6 / 1057
  25851. }
  25852. },
  25853. side: {
  25854. height: math.unit(5 + 7 / 12, "feet"),
  25855. weight: math.unit(185, "lb"),
  25856. name: "Side",
  25857. image: {
  25858. source: "./media/characters/aman-aquila/side.svg",
  25859. extra: 1054 / 1011,
  25860. bottom: 15 / 1070
  25861. }
  25862. },
  25863. back: {
  25864. height: math.unit(5 + 7 / 12, "feet"),
  25865. weight: math.unit(185, "lb"),
  25866. name: "Back",
  25867. image: {
  25868. source: "./media/characters/aman-aquila/back.svg",
  25869. extra: 1026 / 970,
  25870. bottom: 12 / 1039
  25871. }
  25872. },
  25873. head: {
  25874. height: math.unit(1.211, "feet"),
  25875. name: "Head",
  25876. image: {
  25877. source: "./media/characters/aman-aquila/head.svg",
  25878. }
  25879. },
  25880. },
  25881. [
  25882. {
  25883. name: "Minimicro",
  25884. height: math.unit(0.057, "inches")
  25885. },
  25886. {
  25887. name: "Micro",
  25888. height: math.unit(7, "inches")
  25889. },
  25890. {
  25891. name: "Mini",
  25892. height: math.unit(3 + 7 / 12, "feet")
  25893. },
  25894. {
  25895. name: "Normal",
  25896. height: math.unit(5 + 7 / 12, "feet"),
  25897. default: true
  25898. },
  25899. {
  25900. name: "Macro",
  25901. height: math.unit(157 + 7 / 12, "feet")
  25902. },
  25903. {
  25904. name: "Megamacro",
  25905. height: math.unit(1557 + 7 / 12, "feet")
  25906. },
  25907. {
  25908. name: "Gigamacro",
  25909. height: math.unit(15557 + 7 / 12, "feet")
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(3 + 2 / 12, "inches"),
  25918. weight: math.unit(0.3, "ounces"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/hiphae/front.svg",
  25922. extra: 1931 / 1683,
  25923. bottom: 24 / 1955
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Normal",
  25930. height: math.unit(3 + 1 / 2, "inches"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(5 + 10 / 12, "feet"),
  25940. weight: math.unit(165, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/nicky/front.svg",
  25944. extra: 3144 / 2886,
  25945. bottom: 45.6 / 3192
  25946. }
  25947. },
  25948. back: {
  25949. height: math.unit(5 + 10 / 12, "feet"),
  25950. weight: math.unit(165, "lb"),
  25951. name: "Back",
  25952. image: {
  25953. source: "./media/characters/nicky/back.svg",
  25954. extra: 3055 / 2804,
  25955. bottom: 28.4 / 3087
  25956. }
  25957. },
  25958. frontclothed: {
  25959. height: math.unit(5 + 10 / 12, "feet"),
  25960. weight: math.unit(165, "lb"),
  25961. name: "Front-clothed",
  25962. image: {
  25963. source: "./media/characters/nicky/front-clothed.svg",
  25964. extra: 3184.9 / 2926.9,
  25965. bottom: 86.5 / 3239.9
  25966. }
  25967. },
  25968. foot: {
  25969. height: math.unit(1.16, "feet"),
  25970. name: "Foot",
  25971. image: {
  25972. source: "./media/characters/nicky/foot.svg"
  25973. }
  25974. },
  25975. feet: {
  25976. height: math.unit(1.34, "feet"),
  25977. name: "Feet",
  25978. image: {
  25979. source: "./media/characters/nicky/feet.svg"
  25980. }
  25981. },
  25982. maw: {
  25983. height: math.unit(0.9, "feet"),
  25984. name: "Maw",
  25985. image: {
  25986. source: "./media/characters/nicky/maw.svg"
  25987. }
  25988. },
  25989. },
  25990. [
  25991. {
  25992. name: "Normal",
  25993. height: math.unit(5 + 10 / 12, "feet"),
  25994. default: true
  25995. },
  25996. {
  25997. name: "Macro",
  25998. height: math.unit(60, "feet")
  25999. },
  26000. {
  26001. name: "Megamacro",
  26002. height: math.unit(1, "mile")
  26003. },
  26004. ]
  26005. ))
  26006. characterMakers.push(() => makeCharacter(
  26007. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26008. {
  26009. side: {
  26010. height: math.unit(10, "feet"),
  26011. weight: math.unit(600, "lb"),
  26012. name: "Side",
  26013. image: {
  26014. source: "./media/characters/blair/side.svg",
  26015. bottom: 16.6 / 475,
  26016. extra: 458 / 431
  26017. }
  26018. },
  26019. },
  26020. [
  26021. {
  26022. name: "Micro",
  26023. height: math.unit(8, "inches")
  26024. },
  26025. {
  26026. name: "Normal",
  26027. height: math.unit(10, "feet"),
  26028. default: true
  26029. },
  26030. {
  26031. name: "Macro",
  26032. height: math.unit(180, "feet")
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(5 + 4 / 12, "feet"),
  26041. weight: math.unit(125, "lb"),
  26042. name: "Front",
  26043. image: {
  26044. source: "./media/characters/fisher/front.svg",
  26045. extra: 444 / 390,
  26046. bottom: 2 / 444.8
  26047. }
  26048. },
  26049. },
  26050. [
  26051. {
  26052. name: "Micro",
  26053. height: math.unit(4, "inches")
  26054. },
  26055. {
  26056. name: "Normal",
  26057. height: math.unit(5 + 4 / 12, "feet"),
  26058. default: true
  26059. },
  26060. {
  26061. name: "Macro",
  26062. height: math.unit(100, "feet")
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26068. {
  26069. front: {
  26070. height: math.unit(6.71, "feet"),
  26071. weight: math.unit(200, "lb"),
  26072. preyCapacity: math.unit(1000000, "people"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/gliss/front.svg",
  26076. extra: 2347 / 2231,
  26077. bottom: 113 / 2462
  26078. }
  26079. },
  26080. hammerspaceSize: {
  26081. height: math.unit(6.71 * 717, "feet"),
  26082. weight: math.unit(200, "lb"),
  26083. preyCapacity: math.unit(1000000, "people"),
  26084. name: "Hammerspace Size",
  26085. image: {
  26086. source: "./media/characters/gliss/front.svg",
  26087. extra: 2347 / 2231,
  26088. bottom: 113 / 2462
  26089. }
  26090. },
  26091. },
  26092. [
  26093. {
  26094. name: "Normal",
  26095. height: math.unit(6.71, "feet"),
  26096. default: true
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26102. {
  26103. side: {
  26104. height: math.unit(1.44, "m"),
  26105. weight: math.unit(80, "kg"),
  26106. name: "Side",
  26107. image: {
  26108. source: "./media/characters/dune-anderson/side.svg",
  26109. bottom: 49 / 1426
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Wolf-sized",
  26116. height: math.unit(1.44, "meters")
  26117. },
  26118. {
  26119. name: "Normal",
  26120. height: math.unit(5.05, "meters"),
  26121. default: true
  26122. },
  26123. {
  26124. name: "Big",
  26125. height: math.unit(14.4, "meters")
  26126. },
  26127. {
  26128. name: "Huge",
  26129. height: math.unit(144, "meters")
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26135. {
  26136. front: {
  26137. height: math.unit(7, "feet"),
  26138. weight: math.unit(425, "lb"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/hind/front.svg",
  26142. extra: 2091 / 1860,
  26143. bottom: 129 / 2220
  26144. }
  26145. },
  26146. back: {
  26147. height: math.unit(7, "feet"),
  26148. weight: math.unit(425, "lb"),
  26149. name: "Back",
  26150. image: {
  26151. source: "./media/characters/hind/back.svg",
  26152. extra: 2091 / 1860,
  26153. bottom: 24.6 / 2309
  26154. }
  26155. },
  26156. tail: {
  26157. height: math.unit(2.8, "feet"),
  26158. name: "Tail",
  26159. image: {
  26160. source: "./media/characters/hind/tail.svg"
  26161. }
  26162. },
  26163. head: {
  26164. height: math.unit(2.55, "feet"),
  26165. name: "Head",
  26166. image: {
  26167. source: "./media/characters/hind/head.svg"
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "XS",
  26174. height: math.unit(0.7, "feet")
  26175. },
  26176. {
  26177. name: "Normal",
  26178. height: math.unit(7, "feet"),
  26179. default: true
  26180. },
  26181. {
  26182. name: "XL",
  26183. height: math.unit(70, "feet")
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(2.1, "meters"),
  26192. weight: math.unit(150, "lb"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/tharquench-sizestealer/front.svg",
  26196. extra: 1605/1470,
  26197. bottom: 36/1641
  26198. }
  26199. },
  26200. frontAlt: {
  26201. height: math.unit(2.1, "meters"),
  26202. weight: math.unit(150, "lb"),
  26203. name: "Front (Alt)",
  26204. image: {
  26205. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26206. extra: 2318 / 2063,
  26207. bottom: 93.4 / 2410
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Nano",
  26214. height: math.unit(1, "mm")
  26215. },
  26216. {
  26217. name: "Micro",
  26218. height: math.unit(1, "cm")
  26219. },
  26220. {
  26221. name: "Normal",
  26222. height: math.unit(2.1, "meters"),
  26223. default: true
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26229. {
  26230. front: {
  26231. height: math.unit(7 + 5 / 12, "feet"),
  26232. weight: math.unit(357, "lb"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/solex-draconov/front.svg",
  26236. extra: 1993 / 1865,
  26237. bottom: 117 / 2111
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Natural Height",
  26244. height: math.unit(7 + 5 / 12, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Macro",
  26249. height: math.unit(350, "feet")
  26250. },
  26251. {
  26252. name: "Macro+",
  26253. height: math.unit(1000, "feet")
  26254. },
  26255. {
  26256. name: "Megamacro",
  26257. height: math.unit(20, "km")
  26258. },
  26259. {
  26260. name: "Megamacro+",
  26261. height: math.unit(1000, "km")
  26262. },
  26263. {
  26264. name: "Gigamacro",
  26265. height: math.unit(2.5, "Gm")
  26266. },
  26267. {
  26268. name: "Teramacro",
  26269. height: math.unit(15, "Tm")
  26270. },
  26271. {
  26272. name: "Galactic",
  26273. height: math.unit(30, "Zm")
  26274. },
  26275. {
  26276. name: "Universal",
  26277. height: math.unit(21000, "Ym")
  26278. },
  26279. {
  26280. name: "Omniversal",
  26281. height: math.unit(9.861e50, "Ym")
  26282. },
  26283. {
  26284. name: "Existential",
  26285. height: math.unit(1e300, "meters")
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26291. {
  26292. side: {
  26293. height: math.unit(25, "feet"),
  26294. weight: math.unit(90000, "lb"),
  26295. name: "Side",
  26296. image: {
  26297. source: "./media/characters/mandarax/side.svg",
  26298. extra: 614 / 332,
  26299. bottom: 55 / 630
  26300. }
  26301. },
  26302. lounging: {
  26303. height: math.unit(15.4, "feet"),
  26304. weight: math.unit(90000, "lb"),
  26305. name: "Lounging",
  26306. image: {
  26307. source: "./media/characters/mandarax/lounging.svg",
  26308. extra: 817/609,
  26309. bottom: 685/1502
  26310. }
  26311. },
  26312. head: {
  26313. height: math.unit(11.4, "feet"),
  26314. name: "Head",
  26315. image: {
  26316. source: "./media/characters/mandarax/head.svg"
  26317. }
  26318. },
  26319. belly: {
  26320. height: math.unit(33, "feet"),
  26321. name: "Belly",
  26322. preyCapacity: math.unit(500, "people"),
  26323. image: {
  26324. source: "./media/characters/mandarax/belly.svg"
  26325. }
  26326. },
  26327. dick: {
  26328. height: math.unit(8.46, "feet"),
  26329. name: "Dick",
  26330. image: {
  26331. source: "./media/characters/mandarax/dick.svg"
  26332. }
  26333. },
  26334. top: {
  26335. height: math.unit(28, "meters"),
  26336. name: "Top",
  26337. image: {
  26338. source: "./media/characters/mandarax/top.svg"
  26339. }
  26340. },
  26341. },
  26342. [
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(25, "feet"),
  26346. default: true
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(5, "feet"),
  26355. weight: math.unit(90, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/pixil/front.svg",
  26359. extra: 2000 / 1618,
  26360. bottom: 12.3 / 2011
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(5, "feet"),
  26368. default: true
  26369. },
  26370. {
  26371. name: "Megamacro",
  26372. height: math.unit(10, "miles"),
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(7 + 2 / 12, "feet"),
  26381. weight: math.unit(200, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/angel/front.svg",
  26385. extra: 1830 / 1737,
  26386. bottom: 22.6 / 1854,
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(7 + 2 / 12, "feet"),
  26394. default: true
  26395. },
  26396. {
  26397. name: "Macro",
  26398. height: math.unit(1000, "feet")
  26399. },
  26400. {
  26401. name: "Megamacro",
  26402. height: math.unit(2, "miles")
  26403. },
  26404. {
  26405. name: "Gigamacro",
  26406. height: math.unit(20, "earths")
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(5, "feet"),
  26415. weight: math.unit(180, "lb"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/mekana/front.svg",
  26419. extra: 1671 / 1605,
  26420. bottom: 3.5 / 1691
  26421. }
  26422. },
  26423. side: {
  26424. height: math.unit(5, "feet"),
  26425. weight: math.unit(180, "lb"),
  26426. name: "Side",
  26427. image: {
  26428. source: "./media/characters/mekana/side.svg",
  26429. extra: 1671 / 1605,
  26430. bottom: 3.5 / 1691
  26431. }
  26432. },
  26433. back: {
  26434. height: math.unit(5, "feet"),
  26435. weight: math.unit(180, "lb"),
  26436. name: "Back",
  26437. image: {
  26438. source: "./media/characters/mekana/back.svg",
  26439. extra: 1671 / 1605,
  26440. bottom: 3.5 / 1691
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(5, "feet"),
  26448. default: true
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26454. {
  26455. front: {
  26456. height: math.unit(4 + 6 / 12, "feet"),
  26457. weight: math.unit(80, "lb"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/pixie/front.svg",
  26461. extra: 1924 / 1825,
  26462. bottom: 22.4 / 1946
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(4 + 6 / 12, "feet"),
  26470. default: true
  26471. },
  26472. {
  26473. name: "Macro",
  26474. height: math.unit(40, "feet")
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26480. {
  26481. front: {
  26482. height: math.unit(2.1, "meters"),
  26483. weight: math.unit(200, "lb"),
  26484. name: "Front",
  26485. image: {
  26486. source: "./media/characters/the-lascivious/front.svg",
  26487. extra: 1 / 0.893,
  26488. bottom: 3.5 / 573.7
  26489. }
  26490. },
  26491. },
  26492. [
  26493. {
  26494. name: "Human Scale",
  26495. height: math.unit(2.1, "meters")
  26496. },
  26497. {
  26498. name: "Wolxi Scale",
  26499. height: math.unit(46.2, "m"),
  26500. default: true
  26501. },
  26502. {
  26503. name: "Boinker of Buildings",
  26504. height: math.unit(10, "km")
  26505. },
  26506. {
  26507. name: "Shagger of Skyscrapers",
  26508. height: math.unit(40, "km")
  26509. },
  26510. {
  26511. name: "Banger of Boroughs",
  26512. height: math.unit(4000, "km")
  26513. },
  26514. {
  26515. name: "Screwer of States",
  26516. height: math.unit(100000, "km")
  26517. },
  26518. {
  26519. name: "Pounder of Planets",
  26520. height: math.unit(2000000, "km")
  26521. },
  26522. ]
  26523. ))
  26524. characterMakers.push(() => makeCharacter(
  26525. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26526. {
  26527. front: {
  26528. height: math.unit(6, "feet"),
  26529. weight: math.unit(150, "lb"),
  26530. name: "Front",
  26531. image: {
  26532. source: "./media/characters/aj/front.svg",
  26533. extra: 2039 / 1562,
  26534. bottom: 40 / 2079
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Normal",
  26541. height: math.unit(11 + 6 / 12, "feet"),
  26542. default: true
  26543. },
  26544. {
  26545. name: "Megamacro",
  26546. height: math.unit(60, "megameters")
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26552. {
  26553. side: {
  26554. height: math.unit(31 + 8 / 12, "feet"),
  26555. weight: math.unit(75000, "kg"),
  26556. name: "Side",
  26557. image: {
  26558. source: "./media/characters/koros/side.svg",
  26559. extra: 1442 / 1297,
  26560. bottom: 122.7 / 1562
  26561. }
  26562. },
  26563. dicksKingsCrown: {
  26564. height: math.unit(6, "feet"),
  26565. name: "Dicks (King's Crown)",
  26566. image: {
  26567. source: "./media/characters/koros/dicks-kings-crown.svg"
  26568. }
  26569. },
  26570. dicksTailSet: {
  26571. height: math.unit(3, "feet"),
  26572. name: "Dicks (Tail Set)",
  26573. image: {
  26574. source: "./media/characters/koros/dicks-tail-set.svg"
  26575. }
  26576. },
  26577. dickCumming: {
  26578. height: math.unit(7.98, "feet"),
  26579. name: "Dick (Cumming)",
  26580. image: {
  26581. source: "./media/characters/koros/dick-cumming.svg"
  26582. }
  26583. },
  26584. dicksBack: {
  26585. height: math.unit(5.9, "feet"),
  26586. name: "Dicks (Back)",
  26587. image: {
  26588. source: "./media/characters/koros/dicks-back.svg"
  26589. }
  26590. },
  26591. dicksFront: {
  26592. height: math.unit(3.72, "feet"),
  26593. name: "Dicks (Front)",
  26594. image: {
  26595. source: "./media/characters/koros/dicks-front.svg"
  26596. }
  26597. },
  26598. dicksPeeking: {
  26599. height: math.unit(3.0, "feet"),
  26600. name: "Dicks (Peeking)",
  26601. image: {
  26602. source: "./media/characters/koros/dicks-peeking.svg"
  26603. }
  26604. },
  26605. eye: {
  26606. height: math.unit(1.7, "feet"),
  26607. name: "Eye",
  26608. image: {
  26609. source: "./media/characters/koros/eye.svg"
  26610. }
  26611. },
  26612. headFront: {
  26613. height: math.unit(11.69, "feet"),
  26614. name: "Head (Front)",
  26615. image: {
  26616. source: "./media/characters/koros/head-front.svg"
  26617. }
  26618. },
  26619. headSide: {
  26620. height: math.unit(14, "feet"),
  26621. name: "Head (Side)",
  26622. image: {
  26623. source: "./media/characters/koros/head-side.svg"
  26624. }
  26625. },
  26626. leg: {
  26627. height: math.unit(17, "feet"),
  26628. name: "Leg",
  26629. image: {
  26630. source: "./media/characters/koros/leg.svg"
  26631. }
  26632. },
  26633. mawSide: {
  26634. height: math.unit(12.8, "feet"),
  26635. name: "Maw (Side)",
  26636. image: {
  26637. source: "./media/characters/koros/maw-side.svg"
  26638. }
  26639. },
  26640. mawSpitting: {
  26641. height: math.unit(17, "feet"),
  26642. name: "Maw (Spitting)",
  26643. image: {
  26644. source: "./media/characters/koros/maw-spitting.svg"
  26645. }
  26646. },
  26647. slit: {
  26648. height: math.unit(2.8, "feet"),
  26649. name: "Slit",
  26650. image: {
  26651. source: "./media/characters/koros/slit.svg"
  26652. }
  26653. },
  26654. stomach: {
  26655. height: math.unit(6.8, "feet"),
  26656. preyCapacity: math.unit(20, "people"),
  26657. name: "Stomach",
  26658. image: {
  26659. source: "./media/characters/koros/stomach.svg"
  26660. }
  26661. },
  26662. wingspanBottom: {
  26663. height: math.unit(114, "feet"),
  26664. name: "Wingspan (Bottom)",
  26665. image: {
  26666. source: "./media/characters/koros/wingspan-bottom.svg"
  26667. }
  26668. },
  26669. wingspanTop: {
  26670. height: math.unit(104, "feet"),
  26671. name: "Wingspan (Top)",
  26672. image: {
  26673. source: "./media/characters/koros/wingspan-top.svg"
  26674. }
  26675. },
  26676. },
  26677. [
  26678. {
  26679. name: "Normal",
  26680. height: math.unit(31 + 8 / 12, "feet"),
  26681. default: true
  26682. },
  26683. ]
  26684. ))
  26685. characterMakers.push(() => makeCharacter(
  26686. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26687. {
  26688. front: {
  26689. height: math.unit(18 + 5 / 12, "feet"),
  26690. weight: math.unit(3750, "kg"),
  26691. name: "Front",
  26692. image: {
  26693. source: "./media/characters/vexx/front.svg",
  26694. extra: 426 / 396,
  26695. bottom: 31.5 / 458
  26696. }
  26697. },
  26698. maw: {
  26699. height: math.unit(6, "feet"),
  26700. name: "Maw",
  26701. image: {
  26702. source: "./media/characters/vexx/maw.svg"
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(18 + 5 / 12, "feet"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(17 + 6 / 12, "feet"),
  26719. weight: math.unit(150, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/baadra/front.svg",
  26723. extra: 1694/1553,
  26724. bottom: 179/1873
  26725. }
  26726. },
  26727. frontAlt: {
  26728. height: math.unit(17 + 6 / 12, "feet"),
  26729. weight: math.unit(150, "lb"),
  26730. name: "Front (Alt)",
  26731. image: {
  26732. source: "./media/characters/baadra/front-alt.svg",
  26733. extra: 3137 / 2890,
  26734. bottom: 168.4 / 3305
  26735. }
  26736. },
  26737. back: {
  26738. height: math.unit(17 + 6 / 12, "feet"),
  26739. weight: math.unit(150, "lb"),
  26740. name: "Back",
  26741. image: {
  26742. source: "./media/characters/baadra/back.svg",
  26743. extra: 3142 / 2890,
  26744. bottom: 220 / 3371
  26745. }
  26746. },
  26747. head: {
  26748. height: math.unit(5.45, "feet"),
  26749. name: "Head",
  26750. image: {
  26751. source: "./media/characters/baadra/head.svg"
  26752. }
  26753. },
  26754. headAngry: {
  26755. height: math.unit(4.95, "feet"),
  26756. name: "Head (Angry)",
  26757. image: {
  26758. source: "./media/characters/baadra/head-angry.svg"
  26759. }
  26760. },
  26761. headOpen: {
  26762. height: math.unit(6, "feet"),
  26763. name: "Head (Open)",
  26764. image: {
  26765. source: "./media/characters/baadra/head-open.svg"
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(17 + 6 / 12, "feet"),
  26773. default: true
  26774. },
  26775. ]
  26776. ))
  26777. characterMakers.push(() => makeCharacter(
  26778. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26779. {
  26780. front: {
  26781. height: math.unit(7 + 3 / 12, "feet"),
  26782. weight: math.unit(180, "lb"),
  26783. name: "Front",
  26784. image: {
  26785. source: "./media/characters/juri/front.svg",
  26786. extra: 1401 / 1237,
  26787. bottom: 18.5 / 1418
  26788. }
  26789. },
  26790. side: {
  26791. height: math.unit(7 + 3 / 12, "feet"),
  26792. weight: math.unit(180, "lb"),
  26793. name: "Side",
  26794. image: {
  26795. source: "./media/characters/juri/side.svg",
  26796. extra: 1424 / 1242,
  26797. bottom: 18.5 / 1447
  26798. }
  26799. },
  26800. sitting: {
  26801. height: math.unit(6, "feet"),
  26802. weight: math.unit(180, "lb"),
  26803. name: "Sitting",
  26804. image: {
  26805. source: "./media/characters/juri/sitting.svg",
  26806. extra: 1270 / 1143,
  26807. bottom: 100 / 1343
  26808. }
  26809. },
  26810. back: {
  26811. height: math.unit(7 + 3 / 12, "feet"),
  26812. weight: math.unit(180, "lb"),
  26813. name: "Back",
  26814. image: {
  26815. source: "./media/characters/juri/back.svg",
  26816. extra: 1377 / 1240,
  26817. bottom: 23.7 / 1405
  26818. }
  26819. },
  26820. maw: {
  26821. height: math.unit(2.8, "feet"),
  26822. name: "Maw",
  26823. image: {
  26824. source: "./media/characters/juri/maw.svg"
  26825. }
  26826. },
  26827. stomach: {
  26828. height: math.unit(0.89, "feet"),
  26829. preyCapacity: math.unit(4, "liters"),
  26830. name: "Stomach",
  26831. image: {
  26832. source: "./media/characters/juri/stomach.svg"
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Normal",
  26839. height: math.unit(7 + 3 / 12, "feet"),
  26840. default: true
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26846. {
  26847. fox: {
  26848. height: math.unit(5 + 6 / 12, "feet"),
  26849. weight: math.unit(140, "lb"),
  26850. name: "Fox",
  26851. image: {
  26852. source: "./media/characters/maxene-sita/fox.svg",
  26853. extra: 146 / 138,
  26854. bottom: 2.1 / 148.19
  26855. }
  26856. },
  26857. foxLaying: {
  26858. height: math.unit(1.70, "feet"),
  26859. weight: math.unit(140, "lb"),
  26860. name: "Fox (Laying)",
  26861. image: {
  26862. source: "./media/characters/maxene-sita/fox-laying.svg",
  26863. extra: 910 / 572,
  26864. bottom: 71 / 981
  26865. }
  26866. },
  26867. kitsune: {
  26868. height: math.unit(10, "feet"),
  26869. weight: math.unit(800, "lb"),
  26870. name: "Kitsune",
  26871. image: {
  26872. source: "./media/characters/maxene-sita/kitsune.svg",
  26873. extra: 185 / 176,
  26874. bottom: 4.7 / 189.9
  26875. }
  26876. },
  26877. hellhound: {
  26878. height: math.unit(10, "feet"),
  26879. weight: math.unit(700, "lb"),
  26880. name: "Hellhound",
  26881. image: {
  26882. source: "./media/characters/maxene-sita/hellhound.svg",
  26883. extra: 1600 / 1545,
  26884. bottom: 81 / 1681
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(5 + 6 / 12, "feet"),
  26892. default: true
  26893. },
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26898. {
  26899. front: {
  26900. height: math.unit(3 + 4 / 12, "feet"),
  26901. weight: math.unit(70, "lb"),
  26902. name: "Front",
  26903. image: {
  26904. source: "./media/characters/maia/front.svg",
  26905. extra: 227 / 219.5,
  26906. bottom: 40 / 267
  26907. }
  26908. },
  26909. back: {
  26910. height: math.unit(3 + 4 / 12, "feet"),
  26911. weight: math.unit(70, "lb"),
  26912. name: "Back",
  26913. image: {
  26914. source: "./media/characters/maia/back.svg",
  26915. extra: 237 / 225
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(3 + 4 / 12, "feet"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(5 + 10 / 12, "feet"),
  26932. weight: math.unit(197, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/jabaro/front.svg",
  26936. extra: 225 / 216,
  26937. bottom: 5.06 / 230
  26938. }
  26939. },
  26940. back: {
  26941. height: math.unit(5 + 10 / 12, "feet"),
  26942. weight: math.unit(197, "lb"),
  26943. name: "Back",
  26944. image: {
  26945. source: "./media/characters/jabaro/back.svg",
  26946. extra: 225 / 219,
  26947. bottom: 1.9 / 227
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(5 + 10 / 12, "feet"),
  26955. default: true
  26956. },
  26957. ]
  26958. ))
  26959. characterMakers.push(() => makeCharacter(
  26960. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26961. {
  26962. front: {
  26963. height: math.unit(5 + 8 / 12, "feet"),
  26964. weight: math.unit(139, "lb"),
  26965. name: "Front",
  26966. image: {
  26967. source: "./media/characters/risa/front.svg",
  26968. extra: 270 / 260,
  26969. bottom: 11.2 / 282
  26970. }
  26971. },
  26972. back: {
  26973. height: math.unit(5 + 8 / 12, "feet"),
  26974. weight: math.unit(139, "lb"),
  26975. name: "Back",
  26976. image: {
  26977. source: "./media/characters/risa/back.svg",
  26978. extra: 264 / 255,
  26979. bottom: 4 / 268
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Normal",
  26986. height: math.unit(5 + 8 / 12, "feet"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(2 + 11 / 12, "feet"),
  26996. weight: math.unit(30, "lb"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/weatley/front.svg",
  27000. bottom: 10.7 / 414,
  27001. extra: 403.5 / 362
  27002. }
  27003. },
  27004. back: {
  27005. height: math.unit(2 + 11 / 12, "feet"),
  27006. weight: math.unit(30, "lb"),
  27007. name: "Back",
  27008. image: {
  27009. source: "./media/characters/weatley/back.svg",
  27010. bottom: 10.7 / 414,
  27011. extra: 403.5 / 362
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Normal",
  27018. height: math.unit(2 + 11 / 12, "feet"),
  27019. default: true
  27020. },
  27021. ]
  27022. ))
  27023. characterMakers.push(() => makeCharacter(
  27024. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27025. {
  27026. front: {
  27027. height: math.unit(5 + 2 / 12, "feet"),
  27028. weight: math.unit(50, "kg"),
  27029. name: "Front",
  27030. image: {
  27031. source: "./media/characters/mercury-crescent/front.svg",
  27032. extra: 1088 / 1033,
  27033. bottom: 18.9 / 1109
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(5 + 2 / 12, "feet"),
  27041. default: true
  27042. },
  27043. ]
  27044. ))
  27045. characterMakers.push(() => makeCharacter(
  27046. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27047. {
  27048. front: {
  27049. height: math.unit(2, "feet"),
  27050. weight: math.unit(15, "kg"),
  27051. name: "Front",
  27052. image: {
  27053. source: "./media/characters/diamond-jones/front.svg",
  27054. extra: 727/723,
  27055. bottom: 46/773
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(2, "feet"),
  27063. default: true
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27069. {
  27070. front: {
  27071. height: math.unit(3, "feet"),
  27072. weight: math.unit(30, "kg"),
  27073. name: "Front",
  27074. image: {
  27075. source: "./media/characters/sweet-bit/front.svg",
  27076. extra: 675 / 567,
  27077. bottom: 27.7 / 703
  27078. }
  27079. },
  27080. },
  27081. [
  27082. {
  27083. name: "Normal",
  27084. height: math.unit(3, "feet"),
  27085. default: true
  27086. },
  27087. ]
  27088. ))
  27089. characterMakers.push(() => makeCharacter(
  27090. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27091. {
  27092. side: {
  27093. height: math.unit(9.178, "feet"),
  27094. weight: math.unit(500, "lb"),
  27095. name: "Side",
  27096. image: {
  27097. source: "./media/characters/umbrazen/side.svg",
  27098. extra: 1730 / 1473,
  27099. bottom: 34.6 / 1765
  27100. }
  27101. },
  27102. },
  27103. [
  27104. {
  27105. name: "Normal",
  27106. height: math.unit(9.178, "feet"),
  27107. default: true
  27108. },
  27109. ]
  27110. ))
  27111. characterMakers.push(() => makeCharacter(
  27112. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27113. {
  27114. front: {
  27115. height: math.unit(10, "feet"),
  27116. weight: math.unit(750, "lb"),
  27117. name: "Front",
  27118. image: {
  27119. source: "./media/characters/arlist/front.svg",
  27120. extra: 961 / 778,
  27121. bottom: 6.2 / 986
  27122. }
  27123. },
  27124. },
  27125. [
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(10, "feet"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(5 + 1 / 12, "feet"),
  27138. weight: math.unit(110, "lb"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/aradel/front.svg",
  27142. extra: 324 / 303,
  27143. bottom: 3.6 / 329.4
  27144. }
  27145. },
  27146. },
  27147. [
  27148. {
  27149. name: "Normal",
  27150. height: math.unit(5 + 1 / 12, "feet"),
  27151. default: true
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27157. {
  27158. dressed: {
  27159. height: math.unit(3 + 8 / 12, "feet"),
  27160. weight: math.unit(50, "lb"),
  27161. name: "Dressed",
  27162. image: {
  27163. source: "./media/characters/serryn/dressed.svg",
  27164. extra: 1792 / 1656,
  27165. bottom: 43.5 / 1840
  27166. }
  27167. },
  27168. nude: {
  27169. height: math.unit(3 + 8 / 12, "feet"),
  27170. weight: math.unit(50, "lb"),
  27171. name: "Nude",
  27172. image: {
  27173. source: "./media/characters/serryn/nude.svg",
  27174. extra: 1792 / 1656,
  27175. bottom: 43.5 / 1840
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(3 + 8 / 12, "feet"),
  27183. default: true
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27189. {
  27190. front: {
  27191. height: math.unit(7 + 10 / 12, "feet"),
  27192. weight: math.unit(255, "lb"),
  27193. name: "Front",
  27194. image: {
  27195. source: "./media/characters/xavier-thyme/front.svg",
  27196. extra: 3733 / 3642,
  27197. bottom: 131 / 3869
  27198. }
  27199. },
  27200. frontRaven: {
  27201. height: math.unit(7 + 10 / 12, "feet"),
  27202. weight: math.unit(255, "lb"),
  27203. name: "Front (Raven)",
  27204. image: {
  27205. source: "./media/characters/xavier-thyme/front-raven.svg",
  27206. extra: 4385 / 3642,
  27207. bottom: 131 / 4517
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(7 + 10 / 12, "feet"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(1.6, "m"),
  27224. weight: math.unit(50, "kg"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/kiki/front.svg",
  27228. extra: 4682 / 3610,
  27229. bottom: 115 / 4777
  27230. }
  27231. },
  27232. },
  27233. [
  27234. {
  27235. name: "Normal",
  27236. height: math.unit(1.6, "meters"),
  27237. default: true
  27238. },
  27239. ]
  27240. ))
  27241. characterMakers.push(() => makeCharacter(
  27242. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27243. {
  27244. front: {
  27245. height: math.unit(50, "m"),
  27246. weight: math.unit(500, "tonnes"),
  27247. name: "Front",
  27248. image: {
  27249. source: "./media/characters/ryoko/front.svg",
  27250. extra: 4632 / 3926,
  27251. bottom: 193 / 4823
  27252. }
  27253. },
  27254. },
  27255. [
  27256. {
  27257. name: "Normal",
  27258. height: math.unit(50, "meters"),
  27259. default: true
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(30, "m"),
  27268. weight: math.unit(22, "tonnes"),
  27269. name: "Front",
  27270. image: {
  27271. source: "./media/characters/elio/front.svg",
  27272. extra: 4582 / 3720,
  27273. bottom: 236 / 4828
  27274. }
  27275. },
  27276. },
  27277. [
  27278. {
  27279. name: "Normal",
  27280. height: math.unit(30, "meters"),
  27281. default: true
  27282. },
  27283. ]
  27284. ))
  27285. characterMakers.push(() => makeCharacter(
  27286. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27287. {
  27288. front: {
  27289. height: math.unit(6 + 3 / 12, "feet"),
  27290. weight: math.unit(120, "lb"),
  27291. name: "Front",
  27292. image: {
  27293. source: "./media/characters/azura/front.svg",
  27294. extra: 1149 / 1135,
  27295. bottom: 45 / 1194
  27296. }
  27297. },
  27298. frontClothed: {
  27299. height: math.unit(6 + 3 / 12, "feet"),
  27300. weight: math.unit(120, "lb"),
  27301. name: "Front (Clothed)",
  27302. image: {
  27303. source: "./media/characters/azura/front-clothed.svg",
  27304. extra: 1149 / 1135,
  27305. bottom: 45 / 1194
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Normal",
  27312. height: math.unit(6 + 3 / 12, "feet"),
  27313. default: true
  27314. },
  27315. {
  27316. name: "Macro",
  27317. height: math.unit(20 + 6 / 12, "feet")
  27318. },
  27319. {
  27320. name: "Megamacro",
  27321. height: math.unit(12, "miles")
  27322. },
  27323. {
  27324. name: "Gigamacro",
  27325. height: math.unit(10000, "miles")
  27326. },
  27327. {
  27328. name: "Teramacro",
  27329. height: math.unit(900000, "miles")
  27330. },
  27331. ]
  27332. ))
  27333. characterMakers.push(() => makeCharacter(
  27334. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27335. {
  27336. front: {
  27337. height: math.unit(12, "feet"),
  27338. weight: math.unit(1, "ton"),
  27339. capacity: math.unit(660000, "gallons"),
  27340. name: "Front",
  27341. image: {
  27342. source: "./media/characters/zeus/front.svg",
  27343. extra: 5005 / 4717,
  27344. bottom: 363 / 5388
  27345. }
  27346. },
  27347. },
  27348. [
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(12, "feet")
  27352. },
  27353. {
  27354. name: "Preferred Size",
  27355. height: math.unit(0.5, "miles"),
  27356. default: true
  27357. },
  27358. {
  27359. name: "Giga Horse",
  27360. height: math.unit(300, "miles")
  27361. },
  27362. {
  27363. name: "Riding Planets",
  27364. height: math.unit(30, "megameters")
  27365. },
  27366. {
  27367. name: "Cosmic Giant",
  27368. height: math.unit(3, "zettameters")
  27369. },
  27370. {
  27371. name: "Breeding God",
  27372. height: math.unit(9.92e22, "yottameters")
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27378. {
  27379. side: {
  27380. height: math.unit(9, "feet"),
  27381. weight: math.unit(1500, "kg"),
  27382. name: "Side",
  27383. image: {
  27384. source: "./media/characters/fang/side.svg",
  27385. extra: 924 / 866,
  27386. bottom: 47.5 / 972.3
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(9, "feet"),
  27394. default: true
  27395. },
  27396. {
  27397. name: "Macro",
  27398. height: math.unit(75 + 6 / 12, "feet")
  27399. },
  27400. {
  27401. name: "Teramacro",
  27402. height: math.unit(50000, "miles")
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(10, "feet"),
  27411. weight: math.unit(2, "tons"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/rekhit/front.svg",
  27415. extra: 2796 / 2590,
  27416. bottom: 225 / 3022
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(10, "feet"),
  27424. default: true
  27425. },
  27426. {
  27427. name: "Macro",
  27428. height: math.unit(500, "feet")
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(7 + 6.451 / 12, "feet"),
  27437. weight: math.unit(310, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/dahlia-verrick/front.svg",
  27441. extra: 1488 / 1365,
  27442. bottom: 6.2 / 1495
  27443. }
  27444. },
  27445. back: {
  27446. height: math.unit(7 + 6.451 / 12, "feet"),
  27447. weight: math.unit(310, "lb"),
  27448. name: "Back",
  27449. image: {
  27450. source: "./media/characters/dahlia-verrick/back.svg",
  27451. extra: 1472 / 1351,
  27452. bottom: 5.28 / 1477
  27453. }
  27454. },
  27455. frontBusiness: {
  27456. height: math.unit(7 + 6.451 / 12, "feet"),
  27457. weight: math.unit(200, "lb"),
  27458. name: "Front (Business)",
  27459. image: {
  27460. source: "./media/characters/dahlia-verrick/front-business.svg",
  27461. extra: 1478 / 1381,
  27462. bottom: 5.5 / 1484
  27463. }
  27464. },
  27465. frontCasual: {
  27466. height: math.unit(7 + 6.451 / 12, "feet"),
  27467. weight: math.unit(200, "lb"),
  27468. name: "Front (Casual)",
  27469. image: {
  27470. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27471. extra: 1478 / 1381,
  27472. bottom: 5.5 / 1484
  27473. }
  27474. },
  27475. },
  27476. [
  27477. {
  27478. name: "Travel-Sized",
  27479. height: math.unit(7.45, "inches")
  27480. },
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(7 + 6.451 / 12, "feet"),
  27484. default: true
  27485. },
  27486. {
  27487. name: "Hitting the Town",
  27488. height: math.unit(37 + 8 / 12, "feet")
  27489. },
  27490. {
  27491. name: "Stomp in the Suburbs",
  27492. height: math.unit(964 + 9.728 / 12, "feet")
  27493. },
  27494. {
  27495. name: "Sit on the City",
  27496. height: math.unit(61747 + 10.592 / 12, "feet")
  27497. },
  27498. {
  27499. name: "Glomp the Globe",
  27500. height: math.unit(252919327 + 4.832 / 12, "feet")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27506. {
  27507. front: {
  27508. height: math.unit(6 + 4 / 12, "feet"),
  27509. weight: math.unit(320, "lb"),
  27510. name: "Front",
  27511. image: {
  27512. source: "./media/characters/balina-mahigan/front.svg",
  27513. extra: 447 / 428,
  27514. bottom: 18 / 466
  27515. }
  27516. },
  27517. back: {
  27518. height: math.unit(6 + 4 / 12, "feet"),
  27519. weight: math.unit(320, "lb"),
  27520. name: "Back",
  27521. image: {
  27522. source: "./media/characters/balina-mahigan/back.svg",
  27523. extra: 445 / 428,
  27524. bottom: 4.07 / 448
  27525. }
  27526. },
  27527. arm: {
  27528. height: math.unit(1.88, "feet"),
  27529. name: "Arm",
  27530. image: {
  27531. source: "./media/characters/balina-mahigan/arm.svg"
  27532. }
  27533. },
  27534. backPort: {
  27535. height: math.unit(0.685, "feet"),
  27536. name: "Back Port",
  27537. image: {
  27538. source: "./media/characters/balina-mahigan/back-port.svg"
  27539. }
  27540. },
  27541. hoofpaw: {
  27542. height: math.unit(1.41, "feet"),
  27543. name: "Hoofpaw",
  27544. image: {
  27545. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27546. }
  27547. },
  27548. leftHandBack: {
  27549. height: math.unit(0.938, "feet"),
  27550. name: "Left Hand (Back)",
  27551. image: {
  27552. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27553. }
  27554. },
  27555. leftHandFront: {
  27556. height: math.unit(0.938, "feet"),
  27557. name: "Left Hand (Front)",
  27558. image: {
  27559. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27560. }
  27561. },
  27562. rightHandBack: {
  27563. height: math.unit(0.95, "feet"),
  27564. name: "Right Hand (Back)",
  27565. image: {
  27566. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27567. }
  27568. },
  27569. rightHandFront: {
  27570. height: math.unit(0.95, "feet"),
  27571. name: "Right Hand (Front)",
  27572. image: {
  27573. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27574. }
  27575. },
  27576. },
  27577. [
  27578. {
  27579. name: "Normal",
  27580. height: math.unit(6 + 4 / 12, "feet"),
  27581. default: true
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(6, "feet"),
  27590. weight: math.unit(320, "lb"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/balina-mejeri/front.svg",
  27594. extra: 517 / 488,
  27595. bottom: 44.2 / 561
  27596. }
  27597. },
  27598. },
  27599. [
  27600. {
  27601. name: "Normal",
  27602. height: math.unit(6 + 4 / 12, "feet")
  27603. },
  27604. {
  27605. name: "Business",
  27606. height: math.unit(155, "feet"),
  27607. default: true
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27613. {
  27614. kneeling: {
  27615. height: math.unit(6 + 4 / 12, "feet"),
  27616. weight: math.unit(300 * 20, "lb"),
  27617. name: "Kneeling",
  27618. image: {
  27619. source: "./media/characters/balbarian/kneeling.svg",
  27620. extra: 922 / 862,
  27621. bottom: 42.4 / 965
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(6 + 4 / 12, "feet")
  27629. },
  27630. {
  27631. name: "Treasured",
  27632. height: math.unit(18 + 9 / 12, "feet"),
  27633. default: true
  27634. },
  27635. {
  27636. name: "Macro",
  27637. height: math.unit(900, "feet")
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(6 + 4 / 12, "feet"),
  27646. weight: math.unit(325, "lb"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/balina-amarini/front.svg",
  27650. extra: 415 / 403,
  27651. bottom: 19 / 433.4
  27652. }
  27653. },
  27654. back: {
  27655. height: math.unit(6 + 4 / 12, "feet"),
  27656. weight: math.unit(325, "lb"),
  27657. name: "Back",
  27658. image: {
  27659. source: "./media/characters/balina-amarini/back.svg",
  27660. extra: 415 / 403,
  27661. bottom: 13.5 / 432
  27662. }
  27663. },
  27664. overdrive: {
  27665. height: math.unit(6 + 4 / 12, "feet"),
  27666. weight: math.unit(400, "lb"),
  27667. name: "Overdrive",
  27668. image: {
  27669. source: "./media/characters/balina-amarini/overdrive.svg",
  27670. extra: 269 / 259,
  27671. bottom: 12 / 282
  27672. }
  27673. },
  27674. },
  27675. [
  27676. {
  27677. name: "Boom",
  27678. height: math.unit(9 + 10 / 12, "feet"),
  27679. default: true
  27680. },
  27681. {
  27682. name: "Macro",
  27683. height: math.unit(280, "feet")
  27684. },
  27685. ]
  27686. ))
  27687. characterMakers.push(() => makeCharacter(
  27688. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27689. {
  27690. goddess: {
  27691. height: math.unit(600, "feet"),
  27692. weight: math.unit(2000000, "tons"),
  27693. name: "Goddess",
  27694. image: {
  27695. source: "./media/characters/lady-kubwa/goddess.svg",
  27696. extra: 1240.5 / 1223,
  27697. bottom: 22 / 1263
  27698. }
  27699. },
  27700. goddesser: {
  27701. height: math.unit(900, "feet"),
  27702. weight: math.unit(20000000, "lb"),
  27703. name: "Goddess-er",
  27704. image: {
  27705. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27706. extra: 899 / 888,
  27707. bottom: 12.6 / 912
  27708. }
  27709. },
  27710. },
  27711. [
  27712. {
  27713. name: "Macro",
  27714. height: math.unit(600, "feet"),
  27715. default: true
  27716. },
  27717. {
  27718. name: "Megamacro",
  27719. height: math.unit(250, "miles")
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(7 + 7 / 12, "feet"),
  27728. weight: math.unit(250, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/tala-grovehorn/front.svg",
  27732. extra: 2636 / 2525,
  27733. bottom: 147 / 2781
  27734. }
  27735. },
  27736. back: {
  27737. height: math.unit(7 + 7 / 12, "feet"),
  27738. weight: math.unit(250, "lb"),
  27739. name: "Back",
  27740. image: {
  27741. source: "./media/characters/tala-grovehorn/back.svg",
  27742. extra: 2635 / 2539,
  27743. bottom: 100 / 2732.8
  27744. }
  27745. },
  27746. mouth: {
  27747. height: math.unit(1.15, "feet"),
  27748. name: "Mouth",
  27749. image: {
  27750. source: "./media/characters/tala-grovehorn/mouth.svg"
  27751. }
  27752. },
  27753. dick: {
  27754. height: math.unit(2.36, "feet"),
  27755. name: "Dick",
  27756. image: {
  27757. source: "./media/characters/tala-grovehorn/dick.svg"
  27758. }
  27759. },
  27760. slit: {
  27761. height: math.unit(0.61, "feet"),
  27762. name: "Slit",
  27763. image: {
  27764. source: "./media/characters/tala-grovehorn/slit.svg"
  27765. }
  27766. },
  27767. },
  27768. [
  27769. ]
  27770. ))
  27771. characterMakers.push(() => makeCharacter(
  27772. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27773. {
  27774. front: {
  27775. height: math.unit(7 + 7 / 12, "feet"),
  27776. weight: math.unit(225, "lb"),
  27777. name: "Front",
  27778. image: {
  27779. source: "./media/characters/epona/front.svg",
  27780. extra: 2445 / 2290,
  27781. bottom: 251 / 2696
  27782. }
  27783. },
  27784. back: {
  27785. height: math.unit(7 + 7 / 12, "feet"),
  27786. weight: math.unit(225, "lb"),
  27787. name: "Back",
  27788. image: {
  27789. source: "./media/characters/epona/back.svg",
  27790. extra: 2546 / 2408,
  27791. bottom: 44 / 2589
  27792. }
  27793. },
  27794. genitals: {
  27795. height: math.unit(1.5, "feet"),
  27796. name: "Genitals",
  27797. image: {
  27798. source: "./media/characters/epona/genitals.svg"
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(7 + 7 / 12, "feet"),
  27806. default: true
  27807. },
  27808. ]
  27809. ))
  27810. characterMakers.push(() => makeCharacter(
  27811. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27812. {
  27813. front: {
  27814. height: math.unit(7, "feet"),
  27815. weight: math.unit(518, "lb"),
  27816. name: "Front",
  27817. image: {
  27818. source: "./media/characters/avia-bloodbourn/front.svg",
  27819. extra: 1466 / 1350,
  27820. bottom: 65 / 1527
  27821. }
  27822. },
  27823. },
  27824. [
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(9.35, "feet"),
  27832. weight: math.unit(600, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/amera/front.svg",
  27836. extra: 891 / 818,
  27837. bottom: 30 / 922.7
  27838. }
  27839. },
  27840. back: {
  27841. height: math.unit(9.35, "feet"),
  27842. weight: math.unit(600, "lb"),
  27843. name: "Back",
  27844. image: {
  27845. source: "./media/characters/amera/back.svg",
  27846. extra: 876 / 824,
  27847. bottom: 6.8 / 884
  27848. }
  27849. },
  27850. dick: {
  27851. height: math.unit(2.14, "feet"),
  27852. name: "Dick",
  27853. image: {
  27854. source: "./media/characters/amera/dick.svg"
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(9.35, "feet"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27868. {
  27869. kneeling: {
  27870. height: math.unit(3 + 4 / 12, "feet"),
  27871. weight: math.unit(90, "lb"),
  27872. name: "Kneeling",
  27873. image: {
  27874. source: "./media/characters/rosewen/kneeling.svg",
  27875. extra: 1835 / 1571,
  27876. bottom: 27.7 / 1862
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(3 + 4 / 12, "feet"),
  27884. default: true
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(5 + 10 / 12, "feet"),
  27893. weight: math.unit(200, "lb"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/sabah/front.svg",
  27897. extra: 849 / 763,
  27898. bottom: 33.9 / 881
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(5 + 10 / 12, "feet"),
  27906. default: true
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27912. {
  27913. front: {
  27914. height: math.unit(3 + 5 / 12, "feet"),
  27915. weight: math.unit(40, "kg"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/purple-flame/front.svg",
  27919. extra: 1577 / 1412,
  27920. bottom: 97 / 1694
  27921. }
  27922. },
  27923. frontDressed: {
  27924. height: math.unit(3 + 5 / 12, "feet"),
  27925. weight: math.unit(40, "kg"),
  27926. name: "Front (Dressed)",
  27927. image: {
  27928. source: "./media/characters/purple-flame/front-dressed.svg",
  27929. extra: 1577 / 1412,
  27930. bottom: 97 / 1694
  27931. }
  27932. },
  27933. headphones: {
  27934. height: math.unit(0.85, "feet"),
  27935. name: "Headphones",
  27936. image: {
  27937. source: "./media/characters/purple-flame/headphones.svg"
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Really Small",
  27944. height: math.unit(5, "cm")
  27945. },
  27946. {
  27947. name: "Micro",
  27948. height: math.unit(1 + 5 / 12, "feet")
  27949. },
  27950. {
  27951. name: "Normal",
  27952. height: math.unit(3 + 5 / 12, "feet"),
  27953. default: true
  27954. },
  27955. {
  27956. name: "Minimacro",
  27957. height: math.unit(125, "feet")
  27958. },
  27959. {
  27960. name: "Macro",
  27961. height: math.unit(0.5, "miles")
  27962. },
  27963. {
  27964. name: "Megamacro",
  27965. height: math.unit(50, "miles")
  27966. },
  27967. {
  27968. name: "Gigantic",
  27969. height: math.unit(750, "miles")
  27970. },
  27971. {
  27972. name: "Planetary",
  27973. height: math.unit(15000, "miles")
  27974. },
  27975. ]
  27976. ))
  27977. characterMakers.push(() => makeCharacter(
  27978. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27979. {
  27980. front: {
  27981. height: math.unit(14, "feet"),
  27982. weight: math.unit(959, "lb"),
  27983. name: "Front",
  27984. image: {
  27985. source: "./media/characters/arsenal/front.svg",
  27986. extra: 2357 / 2157,
  27987. bottom: 93 / 2458
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(14, "feet"),
  27995. default: true
  27996. },
  27997. ]
  27998. ))
  27999. characterMakers.push(() => makeCharacter(
  28000. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28001. {
  28002. front: {
  28003. height: math.unit(6, "feet"),
  28004. weight: math.unit(150, "lb"),
  28005. name: "Front",
  28006. image: {
  28007. source: "./media/characters/adira/front.svg",
  28008. extra: 1078 / 1029,
  28009. bottom: 87 / 1166
  28010. }
  28011. },
  28012. },
  28013. [
  28014. {
  28015. name: "Micro",
  28016. height: math.unit(4, "inches"),
  28017. default: true
  28018. },
  28019. {
  28020. name: "Macro",
  28021. height: math.unit(50, "feet")
  28022. },
  28023. ]
  28024. ))
  28025. characterMakers.push(() => makeCharacter(
  28026. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28027. {
  28028. front: {
  28029. height: math.unit(16, "feet"),
  28030. weight: math.unit(1000, "lb"),
  28031. name: "Front",
  28032. image: {
  28033. source: "./media/characters/grim/front.svg",
  28034. extra: 622 / 614,
  28035. bottom: 18.1 / 642
  28036. }
  28037. },
  28038. back: {
  28039. height: math.unit(16, "feet"),
  28040. weight: math.unit(1000, "lb"),
  28041. name: "Back",
  28042. image: {
  28043. source: "./media/characters/grim/back.svg",
  28044. extra: 610.6 / 602,
  28045. bottom: 40.8 / 652
  28046. }
  28047. },
  28048. hunched: {
  28049. height: math.unit(9.75, "feet"),
  28050. weight: math.unit(1000, "lb"),
  28051. name: "Hunched",
  28052. image: {
  28053. source: "./media/characters/grim/hunched.svg",
  28054. extra: 304 / 297,
  28055. bottom: 35.4 / 394
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(16, "feet"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28069. {
  28070. front: {
  28071. height: math.unit(2.3, "meters"),
  28072. weight: math.unit(300, "lb"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/sinja/front-sfw.svg",
  28076. extra: 1393 / 1294,
  28077. bottom: 70 / 1463
  28078. }
  28079. },
  28080. frontNsfw: {
  28081. height: math.unit(2.3, "meters"),
  28082. weight: math.unit(300, "lb"),
  28083. name: "Front (NSFW)",
  28084. image: {
  28085. source: "./media/characters/sinja/front-nsfw.svg",
  28086. extra: 1393 / 1294,
  28087. bottom: 70 / 1463
  28088. }
  28089. },
  28090. back: {
  28091. height: math.unit(2.3, "meters"),
  28092. weight: math.unit(300, "lb"),
  28093. name: "Back",
  28094. image: {
  28095. source: "./media/characters/sinja/back.svg",
  28096. extra: 1393 / 1294,
  28097. bottom: 70 / 1463
  28098. }
  28099. },
  28100. head: {
  28101. height: math.unit(1.771, "feet"),
  28102. name: "Head",
  28103. image: {
  28104. source: "./media/characters/sinja/head.svg"
  28105. }
  28106. },
  28107. slit: {
  28108. height: math.unit(0.8, "feet"),
  28109. name: "Slit",
  28110. image: {
  28111. source: "./media/characters/sinja/slit.svg"
  28112. }
  28113. },
  28114. },
  28115. [
  28116. {
  28117. name: "Normal",
  28118. height: math.unit(2.3, "meters")
  28119. },
  28120. {
  28121. name: "Macro",
  28122. height: math.unit(91, "meters"),
  28123. default: true
  28124. },
  28125. {
  28126. name: "Megamacro",
  28127. height: math.unit(91440, "meters")
  28128. },
  28129. {
  28130. name: "Gigamacro",
  28131. height: math.unit(60960000, "meters")
  28132. },
  28133. {
  28134. name: "Teramacro",
  28135. height: math.unit(9144000000, "meters")
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28141. {
  28142. front: {
  28143. height: math.unit(1.7, "meters"),
  28144. weight: math.unit(130, "lb"),
  28145. name: "Front",
  28146. image: {
  28147. source: "./media/characters/kyu/front.svg",
  28148. extra: 415 / 395,
  28149. bottom: 5 / 420
  28150. }
  28151. },
  28152. head: {
  28153. height: math.unit(1.75, "feet"),
  28154. name: "Head",
  28155. image: {
  28156. source: "./media/characters/kyu/head.svg"
  28157. }
  28158. },
  28159. foot: {
  28160. height: math.unit(0.81, "feet"),
  28161. name: "Foot",
  28162. image: {
  28163. source: "./media/characters/kyu/foot.svg"
  28164. }
  28165. },
  28166. },
  28167. [
  28168. {
  28169. name: "Normal",
  28170. height: math.unit(1.7, "meters")
  28171. },
  28172. {
  28173. name: "Macro",
  28174. height: math.unit(131, "feet"),
  28175. default: true
  28176. },
  28177. {
  28178. name: "Megamacro",
  28179. height: math.unit(91440, "meters")
  28180. },
  28181. {
  28182. name: "Gigamacro",
  28183. height: math.unit(60960000, "meters")
  28184. },
  28185. {
  28186. name: "Teramacro",
  28187. height: math.unit(9144000000, "meters")
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(7 + 1 / 12, "feet"),
  28196. weight: math.unit(250, "lb"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/joey/front.svg",
  28200. extra: 1791 / 1537,
  28201. bottom: 28 / 1816
  28202. }
  28203. },
  28204. },
  28205. [
  28206. {
  28207. name: "Micro",
  28208. height: math.unit(3, "inches")
  28209. },
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(7 + 1 / 12, "feet"),
  28213. default: true
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(165, "cm"),
  28222. weight: math.unit(140, "lb"),
  28223. name: "Front",
  28224. image: {
  28225. source: "./media/characters/sam-evans/front.svg",
  28226. extra: 3417 / 3230,
  28227. bottom: 41.3 / 3417
  28228. }
  28229. },
  28230. frontSixTails: {
  28231. height: math.unit(165, "cm"),
  28232. weight: math.unit(140, "lb"),
  28233. name: "Front-six-tails",
  28234. image: {
  28235. source: "./media/characters/sam-evans/front-six-tails.svg",
  28236. extra: 3417 / 3230,
  28237. bottom: 41.3 / 3417
  28238. }
  28239. },
  28240. back: {
  28241. height: math.unit(165, "cm"),
  28242. weight: math.unit(140, "lb"),
  28243. name: "Back",
  28244. image: {
  28245. source: "./media/characters/sam-evans/back.svg",
  28246. extra: 3227 / 3032,
  28247. bottom: 6.8 / 3234
  28248. }
  28249. },
  28250. face: {
  28251. height: math.unit(0.68, "feet"),
  28252. name: "Face",
  28253. image: {
  28254. source: "./media/characters/sam-evans/face.svg"
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(165, "cm"),
  28262. default: true
  28263. },
  28264. {
  28265. name: "Macro",
  28266. height: math.unit(100, "meters")
  28267. },
  28268. {
  28269. name: "Macro+",
  28270. height: math.unit(800, "meters")
  28271. },
  28272. {
  28273. name: "Macro++",
  28274. height: math.unit(3, "km")
  28275. },
  28276. {
  28277. name: "Macro+++",
  28278. height: math.unit(30, "km")
  28279. },
  28280. ]
  28281. ))
  28282. characterMakers.push(() => makeCharacter(
  28283. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28284. {
  28285. front: {
  28286. height: math.unit(10, "feet"),
  28287. weight: math.unit(750, "lb"),
  28288. name: "Front",
  28289. image: {
  28290. source: "./media/characters/juliet-a/front.svg",
  28291. extra: 1766 / 1720,
  28292. bottom: 43 / 1809
  28293. }
  28294. },
  28295. back: {
  28296. height: math.unit(10, "feet"),
  28297. weight: math.unit(750, "lb"),
  28298. name: "Back",
  28299. image: {
  28300. source: "./media/characters/juliet-a/back.svg",
  28301. extra: 1781 / 1734,
  28302. bottom: 35 / 1810,
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(10, "feet"),
  28310. default: true
  28311. },
  28312. {
  28313. name: "Dragon Form",
  28314. height: math.unit(250, "feet")
  28315. },
  28316. {
  28317. name: "Macro",
  28318. height: math.unit(1000, "feet")
  28319. },
  28320. {
  28321. name: "Megamacro",
  28322. height: math.unit(10000, "feet")
  28323. }
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28328. {
  28329. regular: {
  28330. height: math.unit(7 + 3 / 12, "feet"),
  28331. weight: math.unit(260, "lb"),
  28332. name: "Regular",
  28333. image: {
  28334. source: "./media/characters/wild/regular.svg",
  28335. extra: 97.45 / 92,
  28336. bottom: 6.8 / 104.3
  28337. }
  28338. },
  28339. biggums: {
  28340. height: math.unit(8 + 6 / 12, "feet"),
  28341. weight: math.unit(425, "lb"),
  28342. name: "Biggums",
  28343. image: {
  28344. source: "./media/characters/wild/biggums.svg",
  28345. extra: 97.45 / 92,
  28346. bottom: 7.5 / 132.34
  28347. }
  28348. },
  28349. mawRegular: {
  28350. height: math.unit(1.24, "feet"),
  28351. name: "Maw (Regular)",
  28352. image: {
  28353. source: "./media/characters/wild/maw.svg"
  28354. }
  28355. },
  28356. mawBiggums: {
  28357. height: math.unit(1.47, "feet"),
  28358. name: "Maw (Biggums)",
  28359. image: {
  28360. source: "./media/characters/wild/maw.svg"
  28361. }
  28362. },
  28363. },
  28364. [
  28365. {
  28366. name: "Normal",
  28367. height: math.unit(7 + 3 / 12, "feet"),
  28368. default: true
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28374. {
  28375. front: {
  28376. height: math.unit(2.5, "meters"),
  28377. weight: math.unit(200, "kg"),
  28378. name: "Front",
  28379. image: {
  28380. source: "./media/characters/vidar/front.svg",
  28381. extra: 2994 / 2795,
  28382. bottom: 56 / 3061
  28383. }
  28384. },
  28385. back: {
  28386. height: math.unit(2.5, "meters"),
  28387. weight: math.unit(200, "kg"),
  28388. name: "Back",
  28389. image: {
  28390. source: "./media/characters/vidar/back.svg",
  28391. extra: 3131 / 2928,
  28392. bottom: 13.5 / 3141.5
  28393. }
  28394. },
  28395. feral: {
  28396. height: math.unit(2.5, "meters"),
  28397. weight: math.unit(2000, "kg"),
  28398. name: "Feral",
  28399. image: {
  28400. source: "./media/characters/vidar/feral.svg",
  28401. extra: 2790 / 1765,
  28402. bottom: 6 / 2796
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(2.5, "meters"),
  28410. default: true
  28411. },
  28412. {
  28413. name: "Macro",
  28414. height: math.unit(100, "meters")
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28420. {
  28421. front: {
  28422. height: math.unit(5 + 9 / 12, "feet"),
  28423. weight: math.unit(120, "lb"),
  28424. name: "Front",
  28425. image: {
  28426. source: "./media/characters/ash/front.svg",
  28427. extra: 2189 / 1961,
  28428. bottom: 5.2 / 2194
  28429. }
  28430. },
  28431. },
  28432. [
  28433. {
  28434. name: "Normal",
  28435. height: math.unit(5 + 9 / 12, "feet"),
  28436. default: true
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28442. {
  28443. front: {
  28444. height: math.unit(9, "feet"),
  28445. weight: math.unit(10000, "lb"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/gygabite/front.svg",
  28449. bottom: 31.7 / 537.8,
  28450. extra: 505 / 370
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(9, "feet"),
  28458. default: true
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(12, "feet"),
  28467. weight: math.unit(35000, "lb"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/p0tat0/front.svg",
  28471. extra: 1065 / 921,
  28472. bottom: 55.7 / 1121.25
  28473. }
  28474. },
  28475. },
  28476. [
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(12, "feet"),
  28480. default: true
  28481. },
  28482. ]
  28483. ))
  28484. characterMakers.push(() => makeCharacter(
  28485. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28486. {
  28487. side: {
  28488. height: math.unit(6.5, "feet"),
  28489. weight: math.unit(800, "lb"),
  28490. name: "Side",
  28491. image: {
  28492. source: "./media/characters/dusk/side.svg",
  28493. extra: 615 / 373,
  28494. bottom: 53 / 664
  28495. }
  28496. },
  28497. sitting: {
  28498. height: math.unit(7, "feet"),
  28499. weight: math.unit(800, "lb"),
  28500. name: "Sitting",
  28501. image: {
  28502. source: "./media/characters/dusk/sitting.svg",
  28503. extra: 753 / 425,
  28504. bottom: 33 / 774
  28505. }
  28506. },
  28507. head: {
  28508. height: math.unit(6.1, "feet"),
  28509. name: "Head",
  28510. image: {
  28511. source: "./media/characters/dusk/head.svg"
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Normal",
  28518. height: math.unit(7, "feet"),
  28519. default: true
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(15, "feet"),
  28528. weight: math.unit(7000, "lb"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/jay-direwolf/front.svg",
  28532. extra: 1810 / 1732,
  28533. bottom: 66 / 1892
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(15, "feet"),
  28541. default: true
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(4 + 9 / 12, "feet"),
  28550. weight: math.unit(130, "lb"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/anchovie/front.svg",
  28554. extra: 382 / 350,
  28555. bottom: 25 / 409
  28556. }
  28557. },
  28558. back: {
  28559. height: math.unit(4 + 9 / 12, "feet"),
  28560. weight: math.unit(130, "lb"),
  28561. name: "Back",
  28562. image: {
  28563. source: "./media/characters/anchovie/back.svg",
  28564. extra: 385 / 352,
  28565. bottom: 16.6 / 402
  28566. }
  28567. },
  28568. frontDressed: {
  28569. height: math.unit(4 + 9 / 12, "feet"),
  28570. weight: math.unit(130, "lb"),
  28571. name: "Front (Dressed)",
  28572. image: {
  28573. source: "./media/characters/anchovie/front-dressed.svg",
  28574. extra: 382 / 350,
  28575. bottom: 25 / 409
  28576. }
  28577. },
  28578. backDressed: {
  28579. height: math.unit(4 + 9 / 12, "feet"),
  28580. weight: math.unit(130, "lb"),
  28581. name: "Back (Dressed)",
  28582. image: {
  28583. source: "./media/characters/anchovie/back-dressed.svg",
  28584. extra: 385 / 352,
  28585. bottom: 16.6 / 402
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Micro",
  28592. height: math.unit(6.4, "inches")
  28593. },
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(4 + 9 / 12, "feet"),
  28597. default: true
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(2, "meters"),
  28606. weight: math.unit(180, "lb"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/acidrenamon/front.svg",
  28610. extra: 987 / 890,
  28611. bottom: 22.8 / 1009
  28612. }
  28613. },
  28614. back: {
  28615. height: math.unit(2, "meters"),
  28616. weight: math.unit(180, "lb"),
  28617. name: "Back",
  28618. image: {
  28619. source: "./media/characters/acidrenamon/back.svg",
  28620. extra: 983 / 891,
  28621. bottom: 8.4 / 992
  28622. }
  28623. },
  28624. head: {
  28625. height: math.unit(1.92, "feet"),
  28626. name: "Head",
  28627. image: {
  28628. source: "./media/characters/acidrenamon/head.svg"
  28629. }
  28630. },
  28631. rump: {
  28632. height: math.unit(1.72, "feet"),
  28633. name: "Rump",
  28634. image: {
  28635. source: "./media/characters/acidrenamon/rump.svg"
  28636. }
  28637. },
  28638. tail: {
  28639. height: math.unit(4.2, "feet"),
  28640. name: "Tail",
  28641. image: {
  28642. source: "./media/characters/acidrenamon/tail.svg"
  28643. }
  28644. },
  28645. },
  28646. [
  28647. {
  28648. name: "Normal",
  28649. height: math.unit(2, "meters"),
  28650. default: true
  28651. },
  28652. {
  28653. name: "Minimacro",
  28654. height: math.unit(7, "meters")
  28655. },
  28656. {
  28657. name: "Macro",
  28658. height: math.unit(200, "meters")
  28659. },
  28660. {
  28661. name: "Gigamacro",
  28662. height: math.unit(0.2, "earths")
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(152, "feet"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/kenzie-lee/front.svg",
  28674. extra: 1869/1774,
  28675. bottom: 128/1997
  28676. }
  28677. },
  28678. side: {
  28679. height: math.unit(86, "feet"),
  28680. name: "Side",
  28681. image: {
  28682. source: "./media/characters/kenzie-lee/side.svg",
  28683. extra: 930/815,
  28684. bottom: 177/1107
  28685. }
  28686. },
  28687. paw: {
  28688. height: math.unit(15, "feet"),
  28689. name: "Paw",
  28690. image: {
  28691. source: "./media/characters/kenzie-lee/paw.svg"
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Kenzie Flea",
  28698. height: math.unit(2, "mm"),
  28699. default: true
  28700. },
  28701. {
  28702. name: "Micro",
  28703. height: math.unit(2, "inches")
  28704. },
  28705. {
  28706. name: "Normal",
  28707. height: math.unit(152, "feet")
  28708. },
  28709. {
  28710. name: "Megamacro",
  28711. height: math.unit(7, "miles")
  28712. },
  28713. {
  28714. name: "Gigamacro",
  28715. height: math.unit(8000, "miles")
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(6, "feet"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/withers/front.svg",
  28727. extra: 1935/1760,
  28728. bottom: 72/2007
  28729. }
  28730. },
  28731. back: {
  28732. height: math.unit(6, "feet"),
  28733. name: "Back",
  28734. image: {
  28735. source: "./media/characters/withers/back.svg",
  28736. extra: 1944/1792,
  28737. bottom: 12/1956
  28738. }
  28739. },
  28740. dressed: {
  28741. height: math.unit(6, "feet"),
  28742. name: "Dressed",
  28743. image: {
  28744. source: "./media/characters/withers/dressed.svg",
  28745. extra: 1937/1765,
  28746. bottom: 73/2010
  28747. }
  28748. },
  28749. phase1: {
  28750. height: math.unit(1.1, "feet"),
  28751. name: "Phase 1",
  28752. image: {
  28753. source: "./media/characters/withers/phase-1.svg",
  28754. extra: 1885/1232,
  28755. bottom: 0/1885
  28756. }
  28757. },
  28758. phase2: {
  28759. height: math.unit(1.05, "feet"),
  28760. name: "Phase 2",
  28761. image: {
  28762. source: "./media/characters/withers/phase-2.svg",
  28763. extra: 1792/1090,
  28764. bottom: 0/1792
  28765. }
  28766. },
  28767. partyWipe: {
  28768. height: math.unit(1.1, "feet"),
  28769. name: "Party Wipe",
  28770. image: {
  28771. source: "./media/characters/withers/party-wipe.svg",
  28772. extra: 1864/1207,
  28773. bottom: 0/1864
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Macro",
  28780. height: math.unit(167, "feet"),
  28781. default: true
  28782. },
  28783. {
  28784. name: "Megamacro",
  28785. height: math.unit(15, "miles")
  28786. }
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(6 + 7 / 12, "feet"),
  28794. weight: math.unit(250, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/nemoskii/front.svg",
  28798. extra: 2270 / 1734,
  28799. bottom: 86 / 2354
  28800. }
  28801. },
  28802. back: {
  28803. height: math.unit(6 + 7 / 12, "feet"),
  28804. weight: math.unit(250, "lb"),
  28805. name: "Back",
  28806. image: {
  28807. source: "./media/characters/nemoskii/back.svg",
  28808. extra: 1845 / 1788,
  28809. bottom: 10.5 / 1852
  28810. }
  28811. },
  28812. head: {
  28813. height: math.unit(1.31, "feet"),
  28814. name: "Head",
  28815. image: {
  28816. source: "./media/characters/nemoskii/head.svg"
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Micro",
  28823. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28824. },
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(6 + 7 / 12, "feet"),
  28828. default: true
  28829. },
  28830. {
  28831. name: "Macro",
  28832. height: math.unit((6 + 7 / 12) * 150, "feet")
  28833. },
  28834. {
  28835. name: "Macro+",
  28836. height: math.unit((6 + 7 / 12) * 500, "feet")
  28837. },
  28838. {
  28839. name: "Megamacro",
  28840. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(1, "mile"),
  28849. weight: math.unit(265261.9, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/shui/front.svg",
  28853. extra: 1633 / 1564,
  28854. bottom: 91.5 / 1726
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Macro",
  28861. height: math.unit(1, "mile"),
  28862. default: true
  28863. },
  28864. ]
  28865. ))
  28866. characterMakers.push(() => makeCharacter(
  28867. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28868. {
  28869. front: {
  28870. height: math.unit(12 + 6 / 12, "feet"),
  28871. weight: math.unit(1342, "lb"),
  28872. name: "Front",
  28873. image: {
  28874. source: "./media/characters/arokh-takakura/front.svg",
  28875. extra: 1089 / 1043,
  28876. bottom: 77.4 / 1176.7
  28877. }
  28878. },
  28879. back: {
  28880. height: math.unit(12 + 6 / 12, "feet"),
  28881. weight: math.unit(1342, "lb"),
  28882. name: "Back",
  28883. image: {
  28884. source: "./media/characters/arokh-takakura/back.svg",
  28885. extra: 1046 / 1019,
  28886. bottom: 102 / 1150
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Big",
  28893. height: math.unit(12 + 6 / 12, "feet"),
  28894. default: true
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(5 + 6 / 12, "feet"),
  28903. weight: math.unit(150, "lb"),
  28904. name: "Front",
  28905. image: {
  28906. source: "./media/characters/theo/front.svg",
  28907. extra: 1184 / 1131,
  28908. bottom: 7.4 / 1191
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Micro",
  28915. height: math.unit(5, "inches")
  28916. },
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(5 + 6 / 12, "feet"),
  28920. default: true
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28926. {
  28927. front: {
  28928. height: math.unit(5 + 9 / 12, "feet"),
  28929. weight: math.unit(130, "lb"),
  28930. name: "Front",
  28931. image: {
  28932. source: "./media/characters/cecelia-swift/front.svg",
  28933. extra: 502 / 484,
  28934. bottom: 23 / 523
  28935. }
  28936. },
  28937. back: {
  28938. height: math.unit(5 + 9 / 12, "feet"),
  28939. weight: math.unit(130, "lb"),
  28940. name: "Back",
  28941. image: {
  28942. source: "./media/characters/cecelia-swift/back.svg",
  28943. extra: 499 / 485,
  28944. bottom: 12 / 511
  28945. }
  28946. },
  28947. head: {
  28948. height: math.unit(0.90, "feet"),
  28949. name: "Head",
  28950. image: {
  28951. source: "./media/characters/cecelia-swift/head.svg"
  28952. }
  28953. },
  28954. rump: {
  28955. height: math.unit(1.75, "feet"),
  28956. name: "Rump",
  28957. image: {
  28958. source: "./media/characters/cecelia-swift/rump.svg"
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Normal",
  28965. height: math.unit(5 + 9 / 12, "feet"),
  28966. default: true
  28967. },
  28968. {
  28969. name: "Big",
  28970. height: math.unit(50, "feet")
  28971. },
  28972. {
  28973. name: "Macro",
  28974. height: math.unit(100, "feet")
  28975. },
  28976. {
  28977. name: "Macro+",
  28978. height: math.unit(500, "feet")
  28979. },
  28980. {
  28981. name: "Macro++",
  28982. height: math.unit(1000, "feet")
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(6, "feet"),
  28991. weight: math.unit(150, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/kaunan/front.svg",
  28995. extra: 2890 / 2523,
  28996. bottom: 49 / 2939
  28997. }
  28998. },
  28999. },
  29000. [
  29001. {
  29002. name: "Macro",
  29003. height: math.unit(150, "feet"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(175, "cm"),
  29013. weight: math.unit(60, "kg"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/fei/front.svg",
  29017. extra: 1873/1723,
  29018. bottom: 53/1926
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Mortal",
  29025. height: math.unit(175, "cm")
  29026. },
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(3500, "m"),
  29030. default: true
  29031. },
  29032. {
  29033. name: "Stroll",
  29034. height: math.unit(17.5, "km")
  29035. },
  29036. {
  29037. name: "Showoff",
  29038. height: math.unit(175, "km")
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(7, "feet"),
  29047. weight: math.unit(1000, "kg"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/edrax/front.svg",
  29051. extra: 2838 / 2550,
  29052. bottom: 130 / 2968
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Small",
  29059. height: math.unit(7, "feet")
  29060. },
  29061. {
  29062. name: "Normal",
  29063. height: math.unit(1500, "meters")
  29064. },
  29065. {
  29066. name: "Mega",
  29067. height: math.unit(12000000, "km"),
  29068. default: true
  29069. },
  29070. {
  29071. name: "Megamacro",
  29072. height: math.unit(10600000, "lightyears")
  29073. },
  29074. {
  29075. name: "Hypermacro",
  29076. height: math.unit(256, "yottameters")
  29077. },
  29078. ]
  29079. ))
  29080. characterMakers.push(() => makeCharacter(
  29081. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29082. {
  29083. front: {
  29084. height: math.unit(10, "feet"),
  29085. weight: math.unit(750, "lb"),
  29086. name: "Front",
  29087. image: {
  29088. source: "./media/characters/clove/front.svg",
  29089. extra: 1918/1751,
  29090. bottom: 52/1970
  29091. }
  29092. },
  29093. back: {
  29094. height: math.unit(10, "feet"),
  29095. weight: math.unit(750, "lb"),
  29096. name: "Back",
  29097. image: {
  29098. source: "./media/characters/clove/back.svg",
  29099. extra: 1912/1747,
  29100. bottom: 50/1962
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Normal",
  29107. height: math.unit(10, "feet"),
  29108. default: true
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29114. {
  29115. front: {
  29116. height: math.unit(4, "feet"),
  29117. weight: math.unit(50, "lb"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/alex-rabbit/front.svg",
  29121. extra: 507 / 458,
  29122. bottom: 18.5 / 527
  29123. }
  29124. },
  29125. back: {
  29126. height: math.unit(4, "feet"),
  29127. weight: math.unit(50, "lb"),
  29128. name: "Back",
  29129. image: {
  29130. source: "./media/characters/alex-rabbit/back.svg",
  29131. extra: 502 / 460,
  29132. bottom: 18.9 / 521
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Normal",
  29139. height: math.unit(4, "feet"),
  29140. default: true
  29141. },
  29142. ]
  29143. ))
  29144. characterMakers.push(() => makeCharacter(
  29145. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29146. {
  29147. front: {
  29148. height: math.unit(1 + 3 / 12, "feet"),
  29149. weight: math.unit(80, "lb"),
  29150. name: "Front",
  29151. image: {
  29152. source: "./media/characters/zander-rose/front.svg",
  29153. extra: 916 / 797,
  29154. bottom: 17 / 933
  29155. }
  29156. },
  29157. back: {
  29158. height: math.unit(1 + 3 / 12, "feet"),
  29159. weight: math.unit(80, "lb"),
  29160. name: "Back",
  29161. image: {
  29162. source: "./media/characters/zander-rose/back.svg",
  29163. extra: 903 / 779,
  29164. bottom: 31 / 934
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(1 + 3 / 12, "feet"),
  29172. default: true
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29178. {
  29179. anthro: {
  29180. height: math.unit(6, "feet"),
  29181. weight: math.unit(150, "lb"),
  29182. name: "Anthro",
  29183. image: {
  29184. source: "./media/characters/razz/anthro.svg",
  29185. extra: 1437 / 1343,
  29186. bottom: 48 / 1485
  29187. }
  29188. },
  29189. feral: {
  29190. height: math.unit(6, "feet"),
  29191. weight: math.unit(150, "lb"),
  29192. name: "Feral",
  29193. image: {
  29194. source: "./media/characters/razz/feral.svg",
  29195. extra: 2569 / 1385,
  29196. bottom: 95 / 2664
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Normal",
  29203. height: math.unit(6, "feet"),
  29204. default: true
  29205. },
  29206. ]
  29207. ))
  29208. characterMakers.push(() => makeCharacter(
  29209. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29210. {
  29211. front: {
  29212. height: math.unit(9 + 4 / 12, "feet"),
  29213. weight: math.unit(500, "lb"),
  29214. name: "Front",
  29215. image: {
  29216. source: "./media/characters/morrigan/front.svg",
  29217. extra: 2707 / 2579,
  29218. bottom: 156 / 2863
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(9 + 4 / 12, "feet"),
  29226. default: true
  29227. },
  29228. ]
  29229. ))
  29230. characterMakers.push(() => makeCharacter(
  29231. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29232. {
  29233. front: {
  29234. height: math.unit(5, "stories"),
  29235. weight: math.unit(4000, "lb"),
  29236. name: "Front",
  29237. image: {
  29238. source: "./media/characters/jenene/front.svg",
  29239. extra: 1780 / 1710,
  29240. bottom: 57 / 1837
  29241. }
  29242. },
  29243. },
  29244. [
  29245. {
  29246. name: "Normal",
  29247. height: math.unit(5, "stories"),
  29248. default: true
  29249. },
  29250. ]
  29251. ))
  29252. characterMakers.push(() => makeCharacter(
  29253. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29254. {
  29255. taurSfw: {
  29256. height: math.unit(10, "meters"),
  29257. weight: math.unit(17500, "kg"),
  29258. name: "Taur",
  29259. image: {
  29260. source: "./media/characters/faey/taur-sfw.svg",
  29261. extra: 1200 / 968,
  29262. bottom: 41 / 1241
  29263. }
  29264. },
  29265. chestmaw: {
  29266. height: math.unit(2.01, "meters"),
  29267. name: "Chestmaw",
  29268. image: {
  29269. source: "./media/characters/faey/chestmaw.svg"
  29270. }
  29271. },
  29272. foot: {
  29273. height: math.unit(2.43, "meters"),
  29274. name: "Foot",
  29275. image: {
  29276. source: "./media/characters/faey/foot.svg"
  29277. }
  29278. },
  29279. jaws: {
  29280. height: math.unit(1.66, "meters"),
  29281. name: "Jaws",
  29282. image: {
  29283. source: "./media/characters/faey/jaws.svg"
  29284. }
  29285. },
  29286. tongues: {
  29287. height: math.unit(2.01, "meters"),
  29288. name: "Tongues",
  29289. image: {
  29290. source: "./media/characters/faey/tongues.svg"
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Small",
  29297. height: math.unit(10, "meters"),
  29298. default: true
  29299. },
  29300. {
  29301. name: "Big",
  29302. height: math.unit(500000, "km")
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(7, "feet"),
  29311. weight: math.unit(275, "lb"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/roku/front.svg",
  29315. extra: 903 / 878,
  29316. bottom: 37 / 940
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(7, "feet"),
  29324. default: true
  29325. },
  29326. {
  29327. name: "Macro",
  29328. height: math.unit(500, "feet")
  29329. },
  29330. {
  29331. name: "Megamacro",
  29332. height: math.unit(200, "miles")
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(6 + 2 / 12, "feet"),
  29341. weight: math.unit(150, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/lira/front.svg",
  29345. extra: 1727 / 1605,
  29346. bottom: 26 / 1753
  29347. }
  29348. },
  29349. back: {
  29350. height: math.unit(6 + 2 / 12, "feet"),
  29351. weight: math.unit(150, "lb"),
  29352. name: "Back",
  29353. image: {
  29354. source: "./media/characters/lira/back.svg",
  29355. extra: 1713/1621,
  29356. bottom: 20/1733
  29357. }
  29358. },
  29359. hand: {
  29360. height: math.unit(0.75, "feet"),
  29361. name: "Hand",
  29362. image: {
  29363. source: "./media/characters/lira/hand.svg"
  29364. }
  29365. },
  29366. maw: {
  29367. height: math.unit(0.65, "feet"),
  29368. name: "Maw",
  29369. image: {
  29370. source: "./media/characters/lira/maw.svg"
  29371. }
  29372. },
  29373. pawDigi: {
  29374. height: math.unit(1.6, "feet"),
  29375. name: "Paw Digi",
  29376. image: {
  29377. source: "./media/characters/lira/paw-digi.svg"
  29378. }
  29379. },
  29380. pawPlanti: {
  29381. height: math.unit(1.4, "feet"),
  29382. name: "Paw Planti",
  29383. image: {
  29384. source: "./media/characters/lira/paw-planti.svg"
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(6 + 2 / 12, "feet"),
  29392. default: true
  29393. },
  29394. {
  29395. name: "Macro",
  29396. height: math.unit(100, "feet")
  29397. },
  29398. {
  29399. name: "Macro²",
  29400. height: math.unit(1600, "feet")
  29401. },
  29402. {
  29403. name: "Planetary",
  29404. height: math.unit(20, "earths")
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29410. {
  29411. front: {
  29412. height: math.unit(6, "feet"),
  29413. weight: math.unit(150, "lb"),
  29414. name: "Front",
  29415. image: {
  29416. source: "./media/characters/hadjet/front.svg",
  29417. extra: 1480 / 1346,
  29418. bottom: 26 / 1506
  29419. }
  29420. },
  29421. frontNsfw: {
  29422. height: math.unit(6, "feet"),
  29423. weight: math.unit(150, "lb"),
  29424. name: "Front (NSFW)",
  29425. image: {
  29426. source: "./media/characters/hadjet/front-nsfw.svg",
  29427. extra: 1440 / 1358,
  29428. bottom: 52 / 1492
  29429. }
  29430. },
  29431. },
  29432. [
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(10, "stories"),
  29436. default: true
  29437. },
  29438. {
  29439. name: "Megamacro",
  29440. height: math.unit(1.5, "miles")
  29441. },
  29442. {
  29443. name: "Megamacro+",
  29444. height: math.unit(5, "miles")
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29450. {
  29451. side: {
  29452. height: math.unit(106, "feet"),
  29453. weight: math.unit(500, "tonnes"),
  29454. name: "Side",
  29455. image: {
  29456. source: "./media/characters/kodran/side.svg",
  29457. extra: 553 / 480,
  29458. bottom: 33 / 586
  29459. }
  29460. },
  29461. front: {
  29462. height: math.unit(132, "feet"),
  29463. weight: math.unit(500, "tonnes"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/kodran/front.svg",
  29467. extra: 667 / 643,
  29468. bottom: 42 / 709
  29469. }
  29470. },
  29471. flying: {
  29472. height: math.unit(350, "feet"),
  29473. weight: math.unit(500, "tonnes"),
  29474. name: "Flying",
  29475. image: {
  29476. source: "./media/characters/kodran/flying.svg"
  29477. }
  29478. },
  29479. foot: {
  29480. height: math.unit(33, "feet"),
  29481. name: "Foot",
  29482. image: {
  29483. source: "./media/characters/kodran/foot.svg"
  29484. }
  29485. },
  29486. footFront: {
  29487. height: math.unit(19, "feet"),
  29488. name: "Foot (Front)",
  29489. image: {
  29490. source: "./media/characters/kodran/foot-front.svg",
  29491. extra: 261 / 261,
  29492. bottom: 91 / 352
  29493. }
  29494. },
  29495. headFront: {
  29496. height: math.unit(53, "feet"),
  29497. name: "Head (Front)",
  29498. image: {
  29499. source: "./media/characters/kodran/head-front.svg"
  29500. }
  29501. },
  29502. headSide: {
  29503. height: math.unit(65, "feet"),
  29504. name: "Head (Side)",
  29505. image: {
  29506. source: "./media/characters/kodran/head-side.svg"
  29507. }
  29508. },
  29509. throat: {
  29510. height: math.unit(79, "feet"),
  29511. name: "Throat",
  29512. image: {
  29513. source: "./media/characters/kodran/throat.svg"
  29514. }
  29515. },
  29516. },
  29517. [
  29518. {
  29519. name: "Large",
  29520. height: math.unit(106, "feet"),
  29521. default: true
  29522. },
  29523. ]
  29524. ))
  29525. characterMakers.push(() => makeCharacter(
  29526. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29527. {
  29528. side: {
  29529. height: math.unit(11, "feet"),
  29530. weight: math.unit(150, "lb"),
  29531. name: "Side",
  29532. image: {
  29533. source: "./media/characters/pyxaron/side.svg",
  29534. extra: 305 / 195,
  29535. bottom: 17 / 322
  29536. }
  29537. },
  29538. },
  29539. [
  29540. {
  29541. name: "Normal",
  29542. height: math.unit(11, "feet"),
  29543. default: true
  29544. },
  29545. ]
  29546. ))
  29547. characterMakers.push(() => makeCharacter(
  29548. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29549. {
  29550. front: {
  29551. height: math.unit(6, "feet"),
  29552. weight: math.unit(150, "lb"),
  29553. name: "Front",
  29554. image: {
  29555. source: "./media/characters/meep/front.svg",
  29556. extra: 88 / 80,
  29557. bottom: 6 / 94
  29558. }
  29559. },
  29560. },
  29561. [
  29562. {
  29563. name: "Fun Sized",
  29564. height: math.unit(2, "inches"),
  29565. default: true
  29566. },
  29567. {
  29568. name: "Friend Sized",
  29569. height: math.unit(8, "inches")
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(15, "feet"),
  29578. weight: math.unit(2500, "lb"),
  29579. name: "Front",
  29580. image: {
  29581. source: "./media/characters/holly-rabbit/front.svg",
  29582. extra: 1433 / 1233,
  29583. bottom: 125 / 1558
  29584. }
  29585. },
  29586. dick: {
  29587. height: math.unit(4.6, "feet"),
  29588. name: "Dick",
  29589. image: {
  29590. source: "./media/characters/holly-rabbit/dick.svg"
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(15, "feet"),
  29598. default: true
  29599. },
  29600. {
  29601. name: "Macro",
  29602. height: math.unit(250, "feet")
  29603. },
  29604. {
  29605. name: "Macro+",
  29606. height: math.unit(2500, "feet")
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29612. {
  29613. front: {
  29614. height: math.unit(3.02, "meters"),
  29615. weight: math.unit(500, "kg"),
  29616. name: "Front",
  29617. image: {
  29618. source: "./media/characters/drena/front.svg",
  29619. extra: 282 / 243,
  29620. bottom: 8 / 290
  29621. }
  29622. },
  29623. side: {
  29624. height: math.unit(3.02, "meters"),
  29625. weight: math.unit(500, "kg"),
  29626. name: "Side",
  29627. image: {
  29628. source: "./media/characters/drena/side.svg",
  29629. extra: 280 / 245,
  29630. bottom: 10 / 290
  29631. }
  29632. },
  29633. back: {
  29634. height: math.unit(3.02, "meters"),
  29635. weight: math.unit(500, "kg"),
  29636. name: "Back",
  29637. image: {
  29638. source: "./media/characters/drena/back.svg",
  29639. extra: 278 / 243,
  29640. bottom: 2 / 280
  29641. }
  29642. },
  29643. foot: {
  29644. height: math.unit(0.75, "meters"),
  29645. name: "Foot",
  29646. image: {
  29647. source: "./media/characters/drena/foot.svg"
  29648. }
  29649. },
  29650. maw: {
  29651. height: math.unit(0.82, "meters"),
  29652. name: "Maw",
  29653. image: {
  29654. source: "./media/characters/drena/maw.svg"
  29655. }
  29656. },
  29657. eating: {
  29658. height: math.unit(0.75, "meters"),
  29659. name: "Eating",
  29660. image: {
  29661. source: "./media/characters/drena/eating.svg"
  29662. }
  29663. },
  29664. rump: {
  29665. height: math.unit(0.93, "meters"),
  29666. name: "Rump",
  29667. image: {
  29668. source: "./media/characters/drena/rump.svg"
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(3.02, "meters"),
  29676. default: true
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(6 + 4 / 12, "feet"),
  29685. weight: math.unit(250, "lb"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/remmyzilla/front.svg",
  29689. extra: 4033 / 3588,
  29690. bottom: 123 / 4156
  29691. }
  29692. },
  29693. back: {
  29694. height: math.unit(6 + 4 / 12, "feet"),
  29695. weight: math.unit(250, "lb"),
  29696. name: "Back",
  29697. image: {
  29698. source: "./media/characters/remmyzilla/back.svg",
  29699. extra: 2687 / 2555,
  29700. bottom: 48 / 2735
  29701. }
  29702. },
  29703. paw: {
  29704. height: math.unit(1.73, "feet"),
  29705. name: "Paw",
  29706. image: {
  29707. source: "./media/characters/remmyzilla/paw.svg"
  29708. },
  29709. extraAttributes: {
  29710. "toeSize": {
  29711. name: "Toe Size",
  29712. power: 2,
  29713. type: "area",
  29714. base: math.unit(0.0035, "m^2")
  29715. },
  29716. "padSize": {
  29717. name: "Pad Size",
  29718. power: 2,
  29719. type: "area",
  29720. base: math.unit(0.015, "m^2")
  29721. },
  29722. "pawsize": {
  29723. name: "Paw Size",
  29724. power: 2,
  29725. type: "area",
  29726. base: math.unit(0.072, "m^2")
  29727. },
  29728. }
  29729. },
  29730. maw: {
  29731. height: math.unit(1.73, "feet"),
  29732. name: "Maw",
  29733. image: {
  29734. source: "./media/characters/remmyzilla/maw.svg"
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(6 + 4 / 12, "feet")
  29742. },
  29743. {
  29744. name: "Minimacro",
  29745. height: math.unit(12 + 8 / 12, "feet")
  29746. },
  29747. {
  29748. name: "Normal",
  29749. height: math.unit(640, "feet"),
  29750. default: true
  29751. },
  29752. {
  29753. name: "Megamacro",
  29754. height: math.unit(6400, "feet")
  29755. },
  29756. {
  29757. name: "Gigamacro",
  29758. height: math.unit(64000, "miles")
  29759. },
  29760. ]
  29761. ))
  29762. characterMakers.push(() => makeCharacter(
  29763. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29764. {
  29765. front: {
  29766. height: math.unit(2.5, "meters"),
  29767. weight: math.unit(300, "lb"),
  29768. name: "Front",
  29769. image: {
  29770. source: "./media/characters/lawrence/front.svg",
  29771. extra: 357 / 335,
  29772. bottom: 30 / 387
  29773. }
  29774. },
  29775. back: {
  29776. height: math.unit(2.5, "meters"),
  29777. weight: math.unit(300, "lb"),
  29778. name: "Back",
  29779. image: {
  29780. source: "./media/characters/lawrence/back.svg",
  29781. extra: 357 / 338,
  29782. bottom: 16 / 373
  29783. }
  29784. },
  29785. head: {
  29786. height: math.unit(0.9, "meter"),
  29787. name: "Head",
  29788. image: {
  29789. source: "./media/characters/lawrence/head.svg"
  29790. }
  29791. },
  29792. maw: {
  29793. height: math.unit(0.7, "meter"),
  29794. name: "Maw",
  29795. image: {
  29796. source: "./media/characters/lawrence/maw.svg"
  29797. }
  29798. },
  29799. footBottom: {
  29800. height: math.unit(0.5, "meter"),
  29801. name: "Foot (Bottom)",
  29802. image: {
  29803. source: "./media/characters/lawrence/foot-bottom.svg"
  29804. }
  29805. },
  29806. footTop: {
  29807. height: math.unit(0.5, "meter"),
  29808. name: "Foot (Top)",
  29809. image: {
  29810. source: "./media/characters/lawrence/foot-top.svg"
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Normal",
  29817. height: math.unit(2.5, "meters"),
  29818. default: true
  29819. },
  29820. {
  29821. name: "Macro",
  29822. height: math.unit(95, "meters")
  29823. },
  29824. {
  29825. name: "Megamacro",
  29826. height: math.unit(150, "km")
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29832. {
  29833. front: {
  29834. height: math.unit(4.2, "meters"),
  29835. name: "Front",
  29836. image: {
  29837. source: "./media/characters/sydney/front.svg",
  29838. extra: 1323 / 1277,
  29839. bottom: 111 / 1434
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(4.2, "meters"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29853. {
  29854. back: {
  29855. height: math.unit(201, "feet"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/jessica/back.svg",
  29859. extra: 273 / 259,
  29860. bottom: 7 / 280
  29861. }
  29862. },
  29863. },
  29864. [
  29865. {
  29866. name: "Normal",
  29867. height: math.unit(201, "feet"),
  29868. default: true
  29869. },
  29870. {
  29871. name: "Megamacro",
  29872. height: math.unit(8, "miles")
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29878. {
  29879. side: {
  29880. height: math.unit(5.6, "m"),
  29881. weight: math.unit(8000, "kg"),
  29882. name: "Side",
  29883. image: {
  29884. source: "./media/characters/victoria/side.svg",
  29885. extra: 1542/1229,
  29886. bottom: 124/1666
  29887. }
  29888. },
  29889. maw: {
  29890. height: math.unit(7.14, "feet"),
  29891. name: "Maw",
  29892. image: {
  29893. source: "./media/characters/victoria/maw.svg"
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Normal",
  29900. height: math.unit(5.6, "m"),
  29901. default: true
  29902. },
  29903. ]
  29904. ))
  29905. characterMakers.push(() => makeCharacter(
  29906. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29907. {
  29908. front: {
  29909. height: math.unit(5 + 6 / 12, "feet"),
  29910. name: "Front",
  29911. image: {
  29912. source: "./media/characters/cat/front.svg",
  29913. extra: 1449/1295,
  29914. bottom: 34/1483
  29915. },
  29916. form: "cat",
  29917. default: true
  29918. },
  29919. back: {
  29920. height: math.unit(5 + 6 / 12, "feet"),
  29921. name: "Back",
  29922. image: {
  29923. source: "./media/characters/cat/back.svg",
  29924. extra: 1466/1301,
  29925. bottom: 19/1485
  29926. },
  29927. form: "cat"
  29928. },
  29929. taur: {
  29930. height: math.unit(7, "feet"),
  29931. name: "Taur",
  29932. image: {
  29933. source: "./media/characters/cat/taur.svg",
  29934. extra: 1389/1233,
  29935. bottom: 83/1472
  29936. },
  29937. form: "taur",
  29938. default: true
  29939. },
  29940. lucarioFront: {
  29941. height: math.unit(4, "feet"),
  29942. name: "Lucario (Front)",
  29943. image: {
  29944. source: "./media/characters/cat/lucario-front.svg",
  29945. extra: 1149/1019,
  29946. bottom: 84/1233
  29947. },
  29948. form: "lucario",
  29949. default: true
  29950. },
  29951. lucarioBack: {
  29952. height: math.unit(4, "feet"),
  29953. name: "Lucario (Back)",
  29954. image: {
  29955. source: "./media/characters/cat/lucario-back.svg",
  29956. extra: 1190/1059,
  29957. bottom: 33/1223
  29958. },
  29959. form: "lucario"
  29960. },
  29961. megaLucario: {
  29962. height: math.unit(4, "feet"),
  29963. name: "Mega Lucario",
  29964. image: {
  29965. source: "./media/characters/cat/mega-lucario.svg",
  29966. extra: 1515 / 1319,
  29967. bottom: 63 / 1578
  29968. },
  29969. form: "lucario"
  29970. },
  29971. nickit: {
  29972. height: math.unit(2, "feet"),
  29973. name: "Nickit",
  29974. image: {
  29975. source: "./media/characters/cat/nickit.svg",
  29976. extra: 1980 / 1585,
  29977. bottom: 102 / 2082
  29978. },
  29979. form: "nickit",
  29980. default: true
  29981. },
  29982. lopunnyFront: {
  29983. height: math.unit(5, "feet"),
  29984. name: "Lopunny (Front)",
  29985. image: {
  29986. source: "./media/characters/cat/lopunny-front.svg",
  29987. extra: 1782 / 1469,
  29988. bottom: 38 / 1820
  29989. },
  29990. form: "lopunny",
  29991. default: true
  29992. },
  29993. lopunnyBack: {
  29994. height: math.unit(5, "feet"),
  29995. name: "Lopunny (Back)",
  29996. image: {
  29997. source: "./media/characters/cat/lopunny-back.svg",
  29998. extra: 1660 / 1490,
  29999. bottom: 25 / 1685
  30000. },
  30001. form: "lopunny"
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Really small",
  30007. height: math.unit(1, "nm")
  30008. },
  30009. {
  30010. name: "Micro",
  30011. height: math.unit(5, "inches")
  30012. },
  30013. {
  30014. name: "Normal",
  30015. height: math.unit(5 + 6 / 12, "feet"),
  30016. default: true
  30017. },
  30018. {
  30019. name: "Macro",
  30020. height: math.unit(50, "feet")
  30021. },
  30022. {
  30023. name: "Macro+",
  30024. height: math.unit(150, "feet")
  30025. },
  30026. {
  30027. name: "Megamacro",
  30028. height: math.unit(100, "miles")
  30029. },
  30030. ]
  30031. ))
  30032. characterMakers.push(() => makeCharacter(
  30033. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30034. {
  30035. front: {
  30036. height: math.unit(63.4, "meters"),
  30037. weight: math.unit(3.28349e+6, "kilograms"),
  30038. name: "Front",
  30039. image: {
  30040. source: "./media/characters/kirina-violet/front.svg",
  30041. extra: 2812 / 2725,
  30042. bottom: 0 / 2812
  30043. }
  30044. },
  30045. back: {
  30046. height: math.unit(63.4, "meters"),
  30047. weight: math.unit(3.28349e+6, "kilograms"),
  30048. name: "Back",
  30049. image: {
  30050. source: "./media/characters/kirina-violet/back.svg",
  30051. extra: 2812 / 2725,
  30052. bottom: 0 / 2812
  30053. }
  30054. },
  30055. mouth: {
  30056. height: math.unit(4.35, "meters"),
  30057. name: "Mouth",
  30058. image: {
  30059. source: "./media/characters/kirina-violet/mouth.svg"
  30060. }
  30061. },
  30062. paw: {
  30063. height: math.unit(5.6, "meters"),
  30064. name: "Paw",
  30065. image: {
  30066. source: "./media/characters/kirina-violet/paw.svg"
  30067. }
  30068. },
  30069. tail: {
  30070. height: math.unit(18, "meters"),
  30071. name: "Tail",
  30072. image: {
  30073. source: "./media/characters/kirina-violet/tail.svg"
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Macro",
  30080. height: math.unit(63.4, "meters"),
  30081. default: true
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(75, "feet"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/cat-gigachu/front.svg",
  30093. extra: 1239/1027,
  30094. bottom: 32/1271
  30095. }
  30096. },
  30097. back: {
  30098. height: math.unit(75, "feet"),
  30099. name: "Back",
  30100. image: {
  30101. source: "./media/characters/cat-gigachu/back.svg",
  30102. extra: 1229/1030,
  30103. bottom: 9/1238
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Dynamax",
  30110. height: math.unit(75, "feet"),
  30111. default: true
  30112. },
  30113. ]
  30114. ))
  30115. characterMakers.push(() => makeCharacter(
  30116. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30117. {
  30118. front: {
  30119. height: math.unit(6, "feet"),
  30120. weight: math.unit(150, "lb"),
  30121. name: "Front",
  30122. image: {
  30123. source: "./media/characters/sfaiyan/front.svg",
  30124. extra: 999 / 978,
  30125. bottom: 5 / 1004
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Normal",
  30132. height: math.unit(1.82, "meters")
  30133. },
  30134. {
  30135. name: "Giant",
  30136. height: math.unit(2.27, "km"),
  30137. default: true
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30143. {
  30144. front: {
  30145. height: math.unit(179, "cm"),
  30146. weight: math.unit(100, "kg"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/raunehkeli/front.svg",
  30150. extra: 1934 / 1926,
  30151. bottom: 0 / 1934
  30152. }
  30153. },
  30154. },
  30155. [
  30156. {
  30157. name: "Normal",
  30158. height: math.unit(179, "cm")
  30159. },
  30160. {
  30161. name: "Maximum",
  30162. height: math.unit(575, "meters"),
  30163. default: true
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30169. {
  30170. front: {
  30171. height: math.unit(6, "feet"),
  30172. weight: math.unit(150, "lb"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30176. extra: 2625 / 2518,
  30177. bottom: 60 / 2685
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Normal",
  30184. height: math.unit(6 + 2 / 12, "feet")
  30185. },
  30186. {
  30187. name: "Macro",
  30188. height: math.unit(1180, "feet"),
  30189. default: true
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30195. {
  30196. front: {
  30197. height: math.unit(5 + 6 / 12, "feet"),
  30198. weight: math.unit(108, "lb"),
  30199. name: "Front",
  30200. image: {
  30201. source: "./media/characters/lilith-zott/front.svg",
  30202. extra: 2510 / 2238,
  30203. bottom: 100 / 2610
  30204. }
  30205. },
  30206. frontDressed: {
  30207. height: math.unit(5 + 6 / 12, "feet"),
  30208. weight: math.unit(108, "lb"),
  30209. name: "Front (Dressed)",
  30210. image: {
  30211. source: "./media/characters/lilith-zott/front-dressed.svg",
  30212. extra: 2510 / 2238,
  30213. bottom: 100 / 2610
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Normal",
  30220. height: math.unit(5 + 6 / 12, "feet")
  30221. },
  30222. {
  30223. name: "Macro",
  30224. height: math.unit(1030, "feet"),
  30225. default: true
  30226. },
  30227. ]
  30228. ))
  30229. characterMakers.push(() => makeCharacter(
  30230. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30231. {
  30232. front: {
  30233. height: math.unit(6, "feet"),
  30234. weight: math.unit(150, "lb"),
  30235. name: "Front",
  30236. image: {
  30237. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30238. extra: 2567 / 2435,
  30239. bottom: 39 / 2606
  30240. }
  30241. },
  30242. frontSuper: {
  30243. height: math.unit(6, "feet"),
  30244. name: "Front (Super)",
  30245. image: {
  30246. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30247. extra: 2567 / 2435,
  30248. bottom: 39 / 2606
  30249. }
  30250. },
  30251. },
  30252. [
  30253. {
  30254. name: "Normal",
  30255. height: math.unit(5 + 10 / 12, "feet")
  30256. },
  30257. {
  30258. name: "Macro",
  30259. height: math.unit(1100, "feet"),
  30260. default: true
  30261. },
  30262. ]
  30263. ))
  30264. characterMakers.push(() => makeCharacter(
  30265. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30266. {
  30267. front: {
  30268. height: math.unit(100, "miles"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/sona/front.svg",
  30272. extra: 2433 / 2201,
  30273. bottom: 53 / 2486
  30274. }
  30275. },
  30276. foot: {
  30277. height: math.unit(16.1, "miles"),
  30278. name: "Foot",
  30279. image: {
  30280. source: "./media/characters/sona/foot.svg"
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Macro",
  30287. height: math.unit(100, "miles"),
  30288. default: true
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(6, "feet"),
  30297. weight: math.unit(150, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/bailey/front.svg",
  30301. extra: 1778 / 1724,
  30302. bottom: 30 / 1808
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Micro",
  30309. height: math.unit(4, "inches")
  30310. },
  30311. {
  30312. name: "Normal",
  30313. height: math.unit(5 + 5 / 12, "feet"),
  30314. default: true
  30315. },
  30316. {
  30317. name: "Macro",
  30318. height: math.unit(250, "feet")
  30319. },
  30320. {
  30321. name: "Megamacro",
  30322. height: math.unit(100, "miles")
  30323. },
  30324. ]
  30325. ))
  30326. characterMakers.push(() => makeCharacter(
  30327. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30328. {
  30329. front: {
  30330. height: math.unit(5 + 2 / 12, "feet"),
  30331. weight: math.unit(120, "lb"),
  30332. name: "Front",
  30333. image: {
  30334. source: "./media/characters/snaps/front.svg",
  30335. extra: 2370 / 2177,
  30336. bottom: 48 / 2418
  30337. }
  30338. },
  30339. back: {
  30340. height: math.unit(5 + 2 / 12, "feet"),
  30341. weight: math.unit(120, "lb"),
  30342. name: "Back",
  30343. image: {
  30344. source: "./media/characters/snaps/back.svg",
  30345. extra: 2408 / 2258,
  30346. bottom: 15 / 2423
  30347. }
  30348. },
  30349. },
  30350. [
  30351. {
  30352. name: "Micro",
  30353. height: math.unit(9, "inches")
  30354. },
  30355. {
  30356. name: "Normal",
  30357. height: math.unit(5 + 2 / 12, "feet"),
  30358. default: true
  30359. },
  30360. {
  30361. name: "Mini Macro",
  30362. height: math.unit(10, "feet")
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30368. {
  30369. front: {
  30370. height: math.unit(1.8, "meters"),
  30371. weight: math.unit(85, "kg"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/azteck/front.svg",
  30375. extra: 2815 / 2625,
  30376. bottom: 89 / 2904
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(1.8, "meters"),
  30381. weight: math.unit(85, "kg"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/azteck/back.svg",
  30385. extra: 2856 / 2648,
  30386. bottom: 85 / 2941
  30387. }
  30388. },
  30389. frontDressed: {
  30390. height: math.unit(1.8, "meters"),
  30391. weight: math.unit(85, "kg"),
  30392. name: "Front (Dressed)",
  30393. image: {
  30394. source: "./media/characters/azteck/front-dressed.svg",
  30395. extra: 2147 / 2003,
  30396. bottom: 68 / 2215
  30397. }
  30398. },
  30399. head: {
  30400. height: math.unit(0.47, "meters"),
  30401. weight: math.unit(85, "kg"),
  30402. name: "Head",
  30403. image: {
  30404. source: "./media/characters/azteck/head.svg"
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Bite sized",
  30411. height: math.unit(16, "cm")
  30412. },
  30413. {
  30414. name: "Normal",
  30415. height: math.unit(1.8, "meters"),
  30416. default: true
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30422. {
  30423. front: {
  30424. height: math.unit(6, "feet"),
  30425. weight: math.unit(150, "lb"),
  30426. name: "Front",
  30427. image: {
  30428. source: "./media/characters/pidge/front.svg",
  30429. extra: 1936/1820,
  30430. bottom: 0/1936
  30431. }
  30432. },
  30433. back: {
  30434. height: math.unit(6, "feet"),
  30435. weight: math.unit(150, "lb"),
  30436. name: "Back",
  30437. image: {
  30438. source: "./media/characters/pidge/back.svg",
  30439. extra: 1938/1843,
  30440. bottom: 0/1938
  30441. }
  30442. },
  30443. casual: {
  30444. height: math.unit(6, "feet"),
  30445. weight: math.unit(150, "lb"),
  30446. name: "Casual",
  30447. image: {
  30448. source: "./media/characters/pidge/casual.svg",
  30449. extra: 1936/1820,
  30450. bottom: 0/1936
  30451. }
  30452. },
  30453. tech: {
  30454. height: math.unit(6, "feet"),
  30455. weight: math.unit(150, "lb"),
  30456. name: "Tech",
  30457. image: {
  30458. source: "./media/characters/pidge/tech.svg",
  30459. extra: 1802/1682,
  30460. bottom: 0/1802
  30461. }
  30462. },
  30463. head: {
  30464. height: math.unit(1.61, "feet"),
  30465. name: "Head",
  30466. image: {
  30467. source: "./media/characters/pidge/head.svg"
  30468. }
  30469. },
  30470. collar: {
  30471. height: math.unit(0.82, "feet"),
  30472. name: "Collar",
  30473. image: {
  30474. source: "./media/characters/pidge/collar.svg"
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Macro",
  30481. height: math.unit(2, "mile"),
  30482. default: true
  30483. },
  30484. {
  30485. name: "PUPPY",
  30486. height: math.unit(20, "miles")
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30492. {
  30493. front: {
  30494. height: math.unit(6, "feet"),
  30495. weight: math.unit(150, "lb"),
  30496. name: "Front",
  30497. image: {
  30498. source: "./media/characters/en/front.svg",
  30499. extra: 1697 / 1563,
  30500. bottom: 103 / 1800
  30501. }
  30502. },
  30503. back: {
  30504. height: math.unit(6, "feet"),
  30505. weight: math.unit(150, "lb"),
  30506. name: "Back",
  30507. image: {
  30508. source: "./media/characters/en/back.svg",
  30509. extra: 1700 / 1570,
  30510. bottom: 51 / 1751
  30511. }
  30512. },
  30513. frontDressed: {
  30514. height: math.unit(6, "feet"),
  30515. weight: math.unit(150, "lb"),
  30516. name: "Front (Dressed)",
  30517. image: {
  30518. source: "./media/characters/en/front-dressed.svg",
  30519. extra: 1697 / 1563,
  30520. bottom: 103 / 1800
  30521. }
  30522. },
  30523. backDressed: {
  30524. height: math.unit(6, "feet"),
  30525. weight: math.unit(150, "lb"),
  30526. name: "Back (Dressed)",
  30527. image: {
  30528. source: "./media/characters/en/back-dressed.svg",
  30529. extra: 1700 / 1570,
  30530. bottom: 51 / 1751
  30531. }
  30532. },
  30533. },
  30534. [
  30535. {
  30536. name: "Macro",
  30537. height: math.unit(210, "feet"),
  30538. default: true
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(6, "feet"),
  30547. weight: math.unit(150, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/haze-orris/front.svg",
  30551. extra: 3975 / 3525,
  30552. bottom: 137 / 4112
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Micro",
  30559. height: math.unit(150, "mm"),
  30560. default: true
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(6, "feet"),
  30569. weight: math.unit(150, "lb"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/casselene-yaro/front.svg",
  30573. extra: 4721 / 4541,
  30574. bottom: 82 / 4803
  30575. }
  30576. },
  30577. back: {
  30578. height: math.unit(6, "feet"),
  30579. weight: math.unit(150, "lb"),
  30580. name: "Back",
  30581. image: {
  30582. source: "./media/characters/casselene-yaro/back.svg",
  30583. extra: 4569 / 4377,
  30584. bottom: 69 / 4638
  30585. }
  30586. },
  30587. dressed: {
  30588. height: math.unit(6, "feet"),
  30589. weight: math.unit(150, "lb"),
  30590. name: "Dressed",
  30591. image: {
  30592. source: "./media/characters/casselene-yaro/dressed.svg",
  30593. extra: 4721 / 4541,
  30594. bottom: 82 / 4803
  30595. }
  30596. },
  30597. maw: {
  30598. height: math.unit(1, "feet"),
  30599. name: "Maw",
  30600. image: {
  30601. source: "./media/characters/casselene-yaro/maw.svg"
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Macro",
  30608. height: math.unit(190, "feet"),
  30609. default: true
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(10, "feet"),
  30618. weight: math.unit(15015, "lb"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/platine/front.svg",
  30622. extra: 1428/1353,
  30623. bottom: 31/1459
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Normal",
  30630. height: math.unit(10, "feet"),
  30631. default: true
  30632. },
  30633. {
  30634. name: "Macro",
  30635. height: math.unit(100, "feet")
  30636. },
  30637. {
  30638. name: "Megamacro",
  30639. height: math.unit(1000, "feet")
  30640. },
  30641. ]
  30642. ))
  30643. characterMakers.push(() => makeCharacter(
  30644. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30645. {
  30646. front: {
  30647. height: math.unit(15 + 5 / 12, "feet"),
  30648. weight: math.unit(4600, "lb"),
  30649. name: "Front",
  30650. image: {
  30651. source: "./media/characters/neapolitan-ananassa/front.svg",
  30652. extra: 2903 / 2736,
  30653. bottom: 0 / 2903
  30654. }
  30655. },
  30656. side: {
  30657. height: math.unit(15 + 5 / 12, "feet"),
  30658. weight: math.unit(4600, "lb"),
  30659. name: "Side",
  30660. image: {
  30661. source: "./media/characters/neapolitan-ananassa/side.svg",
  30662. extra: 2925 / 2719,
  30663. bottom: 0 / 2925
  30664. }
  30665. },
  30666. back: {
  30667. height: math.unit(15 + 5 / 12, "feet"),
  30668. weight: math.unit(4600, "lb"),
  30669. name: "Back",
  30670. image: {
  30671. source: "./media/characters/neapolitan-ananassa/back.svg",
  30672. extra: 2903 / 2736,
  30673. bottom: 0 / 2903
  30674. }
  30675. },
  30676. },
  30677. [
  30678. {
  30679. name: "Normal",
  30680. height: math.unit(15 + 5 / 12, "feet"),
  30681. default: true
  30682. },
  30683. {
  30684. name: "Post-Millenium",
  30685. height: math.unit(35 + 5 / 12, "feet")
  30686. },
  30687. {
  30688. name: "Post-Era",
  30689. height: math.unit(450 + 5 / 12, "feet")
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(300, "meters"),
  30698. weight: math.unit(125000, "tonnes"),
  30699. name: "Front",
  30700. image: {
  30701. source: "./media/characters/pazuzu/front.svg",
  30702. extra: 877 / 794,
  30703. bottom: 47 / 924
  30704. }
  30705. },
  30706. },
  30707. [
  30708. {
  30709. name: "Macro",
  30710. height: math.unit(300, "meters"),
  30711. default: true
  30712. },
  30713. ]
  30714. ))
  30715. characterMakers.push(() => makeCharacter(
  30716. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30717. {
  30718. side: {
  30719. height: math.unit(10 + 7 / 12, "feet"),
  30720. weight: math.unit(2.5, "tons"),
  30721. name: "Side",
  30722. image: {
  30723. source: "./media/characters/aasha/side.svg",
  30724. extra: 1345 / 1245,
  30725. bottom: 111 / 1456
  30726. }
  30727. },
  30728. back: {
  30729. height: math.unit(10 + 7 / 12, "feet"),
  30730. weight: math.unit(2.5, "tons"),
  30731. name: "Back",
  30732. image: {
  30733. source: "./media/characters/aasha/back.svg",
  30734. extra: 1133 / 1057,
  30735. bottom: 257 / 1390
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Normal",
  30742. height: math.unit(10 + 7 / 12, "feet"),
  30743. default: true
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(6 + 3 / 12, "feet"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/nevan/front.svg",
  30755. extra: 704 / 704,
  30756. bottom: 28 / 732
  30757. }
  30758. },
  30759. back: {
  30760. height: math.unit(6 + 3 / 12, "feet"),
  30761. name: "Back",
  30762. image: {
  30763. source: "./media/characters/nevan/back.svg",
  30764. extra: 714 / 714,
  30765. bottom: 21 / 735
  30766. }
  30767. },
  30768. frontFlaccid: {
  30769. height: math.unit(6 + 3 / 12, "feet"),
  30770. name: "Front (Flaccid)",
  30771. image: {
  30772. source: "./media/characters/nevan/front-flaccid.svg",
  30773. extra: 704 / 704,
  30774. bottom: 28 / 732
  30775. }
  30776. },
  30777. frontErect: {
  30778. height: math.unit(6 + 3 / 12, "feet"),
  30779. name: "Front (Erect)",
  30780. image: {
  30781. source: "./media/characters/nevan/front-erect.svg",
  30782. extra: 704 / 704,
  30783. bottom: 28 / 732
  30784. }
  30785. },
  30786. backFlaccid: {
  30787. height: math.unit(6 + 3 / 12, "feet"),
  30788. name: "Back (Flaccid)",
  30789. image: {
  30790. source: "./media/characters/nevan/back-flaccid.svg",
  30791. extra: 714 / 714,
  30792. bottom: 21 / 735
  30793. }
  30794. },
  30795. },
  30796. [
  30797. {
  30798. name: "Normal",
  30799. height: math.unit(6 + 3 / 12, "feet"),
  30800. default: true
  30801. },
  30802. ]
  30803. ))
  30804. characterMakers.push(() => makeCharacter(
  30805. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30806. {
  30807. front: {
  30808. height: math.unit(4, "feet"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/arhan/front.svg",
  30812. extra: 3368 / 3133,
  30813. bottom: 0 / 3368
  30814. }
  30815. },
  30816. side: {
  30817. height: math.unit(4, "feet"),
  30818. name: "Side",
  30819. image: {
  30820. source: "./media/characters/arhan/side.svg",
  30821. extra: 3347 / 3105,
  30822. bottom: 0 / 3347
  30823. }
  30824. },
  30825. tongue: {
  30826. height: math.unit(1.42, "feet"),
  30827. name: "Tongue",
  30828. image: {
  30829. source: "./media/characters/arhan/tongue.svg"
  30830. }
  30831. },
  30832. head: {
  30833. height: math.unit(0.85, "feet"),
  30834. name: "Head",
  30835. image: {
  30836. source: "./media/characters/arhan/head.svg"
  30837. }
  30838. },
  30839. },
  30840. [
  30841. {
  30842. name: "Normal",
  30843. height: math.unit(4, "feet"),
  30844. default: true
  30845. },
  30846. ]
  30847. ))
  30848. characterMakers.push(() => makeCharacter(
  30849. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30850. {
  30851. front: {
  30852. height: math.unit(5 + 7.5 / 12, "feet"),
  30853. weight: math.unit(120, "lb"),
  30854. name: "Front",
  30855. image: {
  30856. source: "./media/characters/digi-duncan/front.svg",
  30857. extra: 330 / 326,
  30858. bottom: 16 / 346
  30859. }
  30860. },
  30861. side: {
  30862. height: math.unit(5 + 7.5 / 12, "feet"),
  30863. weight: math.unit(120, "lb"),
  30864. name: "Side",
  30865. image: {
  30866. source: "./media/characters/digi-duncan/side.svg",
  30867. extra: 341 / 337,
  30868. bottom: 1 / 342
  30869. }
  30870. },
  30871. back: {
  30872. height: math.unit(5 + 7.5 / 12, "feet"),
  30873. weight: math.unit(120, "lb"),
  30874. name: "Back",
  30875. image: {
  30876. source: "./media/characters/digi-duncan/back.svg",
  30877. extra: 330 / 326,
  30878. bottom: 12 / 342
  30879. }
  30880. },
  30881. },
  30882. [
  30883. {
  30884. name: "Speck",
  30885. height: math.unit(0.25, "mm")
  30886. },
  30887. {
  30888. name: "Micro",
  30889. height: math.unit(5, "mm")
  30890. },
  30891. {
  30892. name: "Tiny",
  30893. height: math.unit(0.5, "inches"),
  30894. default: true
  30895. },
  30896. {
  30897. name: "Human",
  30898. height: math.unit(5 + 7.5 / 12, "feet")
  30899. },
  30900. {
  30901. name: "Minigiant",
  30902. height: math.unit(8 + 5.25, "feet")
  30903. },
  30904. {
  30905. name: "Giant",
  30906. height: math.unit(2000, "feet")
  30907. },
  30908. {
  30909. name: "Mega",
  30910. height: math.unit(371.1, "miles")
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(2, "meters"),
  30919. weight: math.unit(350, "kg"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30923. extra: 898 / 838,
  30924. bottom: 9 / 907
  30925. }
  30926. },
  30927. },
  30928. [
  30929. {
  30930. name: "Micro",
  30931. height: math.unit(8, "meters")
  30932. },
  30933. {
  30934. name: "Normal",
  30935. height: math.unit(50, "meters"),
  30936. default: true
  30937. },
  30938. {
  30939. name: "Macro",
  30940. height: math.unit(500, "meters")
  30941. },
  30942. ]
  30943. ))
  30944. characterMakers.push(() => makeCharacter(
  30945. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30946. {
  30947. front: {
  30948. height: math.unit(6 + 6 / 12, "feet"),
  30949. name: "Front",
  30950. image: {
  30951. source: "./media/characters/khardesh/front.svg",
  30952. extra: 1788/1596,
  30953. bottom: 66/1854
  30954. }
  30955. },
  30956. back: {
  30957. height: math.unit(6 + 6 / 12, "feet"),
  30958. name: "Back",
  30959. image: {
  30960. source: "./media/characters/khardesh/back.svg",
  30961. extra: 1781/1584,
  30962. bottom: 68/1849
  30963. }
  30964. },
  30965. },
  30966. [
  30967. {
  30968. name: "Normal",
  30969. height: math.unit(6 + 6 / 12, "feet"),
  30970. default: true
  30971. },
  30972. {
  30973. name: "Normal+",
  30974. height: math.unit(4, "meters")
  30975. },
  30976. {
  30977. name: "Macro",
  30978. height: math.unit(50, "meters")
  30979. },
  30980. {
  30981. name: "Macro+",
  30982. height: math.unit(100, "meters")
  30983. },
  30984. {
  30985. name: "Megamacro",
  30986. height: math.unit(20, "km")
  30987. },
  30988. ]
  30989. ))
  30990. characterMakers.push(() => makeCharacter(
  30991. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30992. {
  30993. front: {
  30994. height: math.unit(6, "feet"),
  30995. weight: math.unit(150, "lb"),
  30996. name: "Front",
  30997. image: {
  30998. source: "./media/characters/kosho/front.svg",
  30999. extra: 1847 / 1847,
  31000. bottom: 86 / 1933
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Second-stage micro",
  31007. height: math.unit(0.5, "inches")
  31008. },
  31009. {
  31010. name: "First-stage micro",
  31011. height: math.unit(6, "inches")
  31012. },
  31013. {
  31014. name: "Normal",
  31015. height: math.unit(6, "feet"),
  31016. default: true
  31017. },
  31018. {
  31019. name: "First-stage macro",
  31020. height: math.unit(72, "feet")
  31021. },
  31022. {
  31023. name: "Second-stage macro",
  31024. height: math.unit(864, "feet")
  31025. },
  31026. ]
  31027. ))
  31028. characterMakers.push(() => makeCharacter(
  31029. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31030. {
  31031. normal: {
  31032. height: math.unit(4 + 6 / 12, "feet"),
  31033. name: "Normal",
  31034. image: {
  31035. source: "./media/characters/hydra/normal.svg",
  31036. extra: 2833 / 2634,
  31037. bottom: 68 / 2901
  31038. }
  31039. },
  31040. smol: {
  31041. height: math.unit(0.705, "inches"),
  31042. name: "Smol",
  31043. image: {
  31044. source: "./media/characters/hydra/smol.svg",
  31045. extra: 2715 / 2540,
  31046. bottom: 0 / 2715
  31047. }
  31048. },
  31049. },
  31050. [
  31051. {
  31052. name: "Normal",
  31053. height: math.unit(4 + 6 / 12, "feet"),
  31054. default: true
  31055. }
  31056. ]
  31057. ))
  31058. characterMakers.push(() => makeCharacter(
  31059. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31060. {
  31061. front: {
  31062. height: math.unit(0.6, "cm"),
  31063. name: "Front",
  31064. image: {
  31065. source: "./media/characters/daz/front.svg",
  31066. extra: 1682 / 1164,
  31067. bottom: 42 / 1724
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "Normal",
  31074. height: math.unit(0.6, "cm"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31081. {
  31082. front: {
  31083. height: math.unit(6, "feet"),
  31084. weight: math.unit(235, "lb"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/theo-pangolin/front.svg",
  31088. extra: 1996 / 1969,
  31089. bottom: 115 / 2111
  31090. }
  31091. },
  31092. back: {
  31093. height: math.unit(6, "feet"),
  31094. weight: math.unit(235, "lb"),
  31095. name: "Back",
  31096. image: {
  31097. source: "./media/characters/theo-pangolin/back.svg",
  31098. extra: 1979 / 1979,
  31099. bottom: 40 / 2019
  31100. }
  31101. },
  31102. feral: {
  31103. height: math.unit(2, "feet"),
  31104. weight: math.unit(30, "lb"),
  31105. name: "Feral",
  31106. image: {
  31107. source: "./media/characters/theo-pangolin/feral.svg",
  31108. extra: 803 / 791,
  31109. bottom: 181 / 984
  31110. }
  31111. },
  31112. footFive: {
  31113. height: math.unit(1.43, "feet"),
  31114. name: "Foot (Five Toes)",
  31115. image: {
  31116. source: "./media/characters/theo-pangolin/foot-five.svg"
  31117. }
  31118. },
  31119. footFour: {
  31120. height: math.unit(1.43, "feet"),
  31121. name: "Foot (Four Toes)",
  31122. image: {
  31123. source: "./media/characters/theo-pangolin/foot-four.svg"
  31124. }
  31125. },
  31126. handFour: {
  31127. height: math.unit(0.81, "feet"),
  31128. name: "Hand (Four Fingers)",
  31129. image: {
  31130. source: "./media/characters/theo-pangolin/hand-four.svg"
  31131. }
  31132. },
  31133. handThree: {
  31134. height: math.unit(0.81, "feet"),
  31135. name: "Hand (Three Fingers)",
  31136. image: {
  31137. source: "./media/characters/theo-pangolin/hand-three.svg"
  31138. }
  31139. },
  31140. headFront: {
  31141. height: math.unit(1.37, "feet"),
  31142. name: "Head (Front)",
  31143. image: {
  31144. source: "./media/characters/theo-pangolin/head-front.svg"
  31145. }
  31146. },
  31147. headSide: {
  31148. height: math.unit(1.43, "feet"),
  31149. name: "Head (Side)",
  31150. image: {
  31151. source: "./media/characters/theo-pangolin/head-side.svg"
  31152. }
  31153. },
  31154. tongue: {
  31155. height: math.unit(2.29, "feet"),
  31156. name: "Tongue",
  31157. image: {
  31158. source: "./media/characters/theo-pangolin/tongue.svg"
  31159. }
  31160. },
  31161. },
  31162. [
  31163. {
  31164. name: "Normal",
  31165. height: math.unit(6, "feet")
  31166. },
  31167. {
  31168. name: "Macro",
  31169. height: math.unit(400, "feet"),
  31170. default: true
  31171. },
  31172. ]
  31173. ))
  31174. characterMakers.push(() => makeCharacter(
  31175. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31176. {
  31177. front: {
  31178. height: math.unit(6, "inches"),
  31179. weight: math.unit(0.036, "kg"),
  31180. name: "Front",
  31181. image: {
  31182. source: "./media/characters/renée/front.svg",
  31183. extra: 900 / 886,
  31184. bottom: 8 / 908
  31185. }
  31186. },
  31187. },
  31188. [
  31189. {
  31190. name: "Nano",
  31191. height: math.unit(1, "nm")
  31192. },
  31193. {
  31194. name: "Micro",
  31195. height: math.unit(1, "mm")
  31196. },
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(6, "inches")
  31200. },
  31201. {
  31202. name: "Macro",
  31203. height: math.unit(2000, "feet"),
  31204. default: true
  31205. },
  31206. {
  31207. name: "Megamacro",
  31208. height: math.unit(2, "km")
  31209. },
  31210. {
  31211. name: "Gigamacro",
  31212. height: math.unit(2000, "km")
  31213. },
  31214. {
  31215. name: "Teramacro",
  31216. height: math.unit(250000, "km")
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31222. {
  31223. front: {
  31224. height: math.unit(4, "meters"),
  31225. weight: math.unit(150, "kg"),
  31226. name: "Front",
  31227. image: {
  31228. source: "./media/characters/caledvwlch/front.svg",
  31229. extra: 1760 / 1551,
  31230. bottom: 28 / 1788
  31231. }
  31232. },
  31233. side: {
  31234. height: math.unit(4, "meters"),
  31235. weight: math.unit(150, "kg"),
  31236. name: "Side",
  31237. image: {
  31238. source: "./media/characters/caledvwlch/side.svg",
  31239. extra: 1605 / 1536,
  31240. bottom: 31 / 1636
  31241. }
  31242. },
  31243. back: {
  31244. height: math.unit(4, "meters"),
  31245. weight: math.unit(150, "kg"),
  31246. name: "Back",
  31247. image: {
  31248. source: "./media/characters/caledvwlch/back.svg",
  31249. extra: 1635 / 1565,
  31250. bottom: 27 / 1662
  31251. }
  31252. },
  31253. },
  31254. [
  31255. {
  31256. name: "\"Incognito\"",
  31257. height: math.unit(4, "meters")
  31258. },
  31259. {
  31260. name: "Small rampage",
  31261. height: math.unit(600, "meters")
  31262. },
  31263. {
  31264. name: "Mega",
  31265. height: math.unit(30, "km")
  31266. },
  31267. {
  31268. name: "Home-size",
  31269. height: math.unit(50, "km"),
  31270. default: true
  31271. },
  31272. {
  31273. name: "Giga",
  31274. height: math.unit(300, "km")
  31275. },
  31276. {
  31277. name: "Lounging",
  31278. height: math.unit(11000, "km")
  31279. },
  31280. {
  31281. name: "Planet snacking",
  31282. height: math.unit(2000000, "km")
  31283. },
  31284. ]
  31285. ))
  31286. characterMakers.push(() => makeCharacter(
  31287. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31288. {
  31289. front: {
  31290. height: math.unit(6, "feet"),
  31291. weight: math.unit(215, "lb"),
  31292. name: "Front",
  31293. image: {
  31294. source: "./media/characters/sapphire-svell/front.svg",
  31295. extra: 495 / 455,
  31296. bottom: 20 / 515
  31297. }
  31298. },
  31299. back: {
  31300. height: math.unit(6, "feet"),
  31301. weight: math.unit(216, "lb"),
  31302. name: "Back",
  31303. image: {
  31304. source: "./media/characters/sapphire-svell/back.svg",
  31305. extra: 497 / 477,
  31306. bottom: 7 / 504
  31307. }
  31308. },
  31309. maw: {
  31310. height: math.unit(1.57, "feet"),
  31311. name: "Maw",
  31312. image: {
  31313. source: "./media/characters/sapphire-svell/maw.svg"
  31314. }
  31315. },
  31316. foot: {
  31317. height: math.unit(1.07, "feet"),
  31318. name: "Foot",
  31319. image: {
  31320. source: "./media/characters/sapphire-svell/foot.svg"
  31321. }
  31322. },
  31323. toering: {
  31324. height: math.unit(1.7, "inch"),
  31325. name: "Toering",
  31326. image: {
  31327. source: "./media/characters/sapphire-svell/toering.svg"
  31328. }
  31329. },
  31330. },
  31331. [
  31332. {
  31333. name: "Normal",
  31334. height: math.unit(300, "feet"),
  31335. default: true
  31336. },
  31337. {
  31338. name: "Augmented",
  31339. height: math.unit(1250, "feet")
  31340. },
  31341. {
  31342. name: "Unleashed",
  31343. height: math.unit(3000, "feet")
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31349. {
  31350. side: {
  31351. height: math.unit(2 + 3 / 12, "feet"),
  31352. weight: math.unit(110, "lb"),
  31353. name: "Side",
  31354. image: {
  31355. source: "./media/characters/glitch-flux/side.svg",
  31356. extra: 997 / 805,
  31357. bottom: 20 / 1017
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(2 + 3 / 12, "feet"),
  31365. default: true
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31371. {
  31372. front: {
  31373. height: math.unit(4, "meters"),
  31374. name: "Front",
  31375. image: {
  31376. source: "./media/characters/mid/front.svg",
  31377. extra: 507 / 476,
  31378. bottom: 17 / 524
  31379. }
  31380. },
  31381. back: {
  31382. height: math.unit(4, "meters"),
  31383. name: "Back",
  31384. image: {
  31385. source: "./media/characters/mid/back.svg",
  31386. extra: 519 / 487,
  31387. bottom: 7 / 526
  31388. }
  31389. },
  31390. stuck: {
  31391. height: math.unit(2.2, "meters"),
  31392. name: "Stuck",
  31393. image: {
  31394. source: "./media/characters/mid/stuck.svg",
  31395. extra: 1951 / 1869,
  31396. bottom: 88 / 2039
  31397. }
  31398. }
  31399. },
  31400. [
  31401. {
  31402. name: "Normal",
  31403. height: math.unit(4, "meters"),
  31404. default: true
  31405. },
  31406. {
  31407. name: "Big",
  31408. height: math.unit(10, "meters")
  31409. },
  31410. {
  31411. name: "Macro",
  31412. height: math.unit(800, "meters")
  31413. },
  31414. {
  31415. name: "Megamacro",
  31416. height: math.unit(100, "km")
  31417. },
  31418. {
  31419. name: "Overgrown",
  31420. height: math.unit(1, "parsec")
  31421. },
  31422. ]
  31423. ))
  31424. characterMakers.push(() => makeCharacter(
  31425. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31426. {
  31427. front: {
  31428. height: math.unit(2.5, "meters"),
  31429. weight: math.unit(225, "kg"),
  31430. name: "Front",
  31431. image: {
  31432. source: "./media/characters/iris/front.svg",
  31433. extra: 3348 / 3251,
  31434. bottom: 205 / 3553
  31435. }
  31436. },
  31437. maw: {
  31438. height: math.unit(0.56, "meter"),
  31439. name: "Maw",
  31440. image: {
  31441. source: "./media/characters/iris/maw.svg"
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Mewter cat",
  31448. height: math.unit(1.2, "meters")
  31449. },
  31450. {
  31451. name: "Minimacro",
  31452. height: math.unit(2.5, "meters"),
  31453. default: true
  31454. },
  31455. {
  31456. name: "Macro",
  31457. height: math.unit(180, "meters")
  31458. },
  31459. {
  31460. name: "Megamacro",
  31461. height: math.unit(2746, "meters")
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(6, "feet"),
  31470. weight: math.unit(135, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/axel/front.svg",
  31474. extra: 908 / 908,
  31475. bottom: 58 / 966
  31476. }
  31477. },
  31478. side: {
  31479. height: math.unit(6, "feet"),
  31480. weight: math.unit(135, "lb"),
  31481. name: "Side",
  31482. image: {
  31483. source: "./media/characters/axel/side.svg",
  31484. extra: 958 / 958,
  31485. bottom: 11 / 969
  31486. }
  31487. },
  31488. back: {
  31489. height: math.unit(6, "feet"),
  31490. weight: math.unit(135, "lb"),
  31491. name: "Back",
  31492. image: {
  31493. source: "./media/characters/axel/back.svg",
  31494. extra: 887 / 887,
  31495. bottom: 34 / 921
  31496. }
  31497. },
  31498. head: {
  31499. height: math.unit(1.07, "feet"),
  31500. name: "Head",
  31501. image: {
  31502. source: "./media/characters/axel/head.svg"
  31503. }
  31504. },
  31505. beak: {
  31506. height: math.unit(1.4, "feet"),
  31507. name: "Beak",
  31508. image: {
  31509. source: "./media/characters/axel/beak.svg"
  31510. }
  31511. },
  31512. beakSide: {
  31513. height: math.unit(1.4, "feet"),
  31514. name: "Beak Side",
  31515. image: {
  31516. source: "./media/characters/axel/beak-side.svg"
  31517. }
  31518. },
  31519. sheath: {
  31520. height: math.unit(0.5, "feet"),
  31521. name: "Sheath",
  31522. image: {
  31523. source: "./media/characters/axel/sheath.svg"
  31524. }
  31525. },
  31526. dick: {
  31527. height: math.unit(0.98, "feet"),
  31528. name: "Dick",
  31529. image: {
  31530. source: "./media/characters/axel/dick.svg"
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Macro",
  31537. height: math.unit(68, "meters"),
  31538. default: true
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31544. {
  31545. front: {
  31546. height: math.unit(3.5, "meters"),
  31547. weight: math.unit(1200, "kg"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/joanna/front.svg",
  31551. extra: 1596 / 1488,
  31552. bottom: 29 / 1625
  31553. }
  31554. },
  31555. back: {
  31556. height: math.unit(3.5, "meters"),
  31557. weight: math.unit(1200, "kg"),
  31558. name: "Back",
  31559. image: {
  31560. source: "./media/characters/joanna/back.svg",
  31561. extra: 1594 / 1495,
  31562. bottom: 26 / 1620
  31563. }
  31564. },
  31565. frontShorts: {
  31566. height: math.unit(3.5, "meters"),
  31567. weight: math.unit(1200, "kg"),
  31568. name: "Front (Shorts)",
  31569. image: {
  31570. source: "./media/characters/joanna/front-shorts.svg",
  31571. extra: 1596 / 1488,
  31572. bottom: 29 / 1625
  31573. }
  31574. },
  31575. frontBiker: {
  31576. height: math.unit(3.5, "meters"),
  31577. weight: math.unit(1200, "kg"),
  31578. name: "Front (Biker)",
  31579. image: {
  31580. source: "./media/characters/joanna/front-biker.svg",
  31581. extra: 1596 / 1488,
  31582. bottom: 29 / 1625
  31583. }
  31584. },
  31585. backBiker: {
  31586. height: math.unit(3.5, "meters"),
  31587. weight: math.unit(1200, "kg"),
  31588. name: "Back (Biker)",
  31589. image: {
  31590. source: "./media/characters/joanna/back-biker.svg",
  31591. extra: 1594 / 1495,
  31592. bottom: 88 / 1682
  31593. }
  31594. },
  31595. bikeLeft: {
  31596. height: math.unit(2.4, "meters"),
  31597. weight: math.unit(1600, "kg"),
  31598. name: "Bike (Left)",
  31599. image: {
  31600. source: "./media/characters/joanna/bike-left.svg",
  31601. extra: 720 / 720,
  31602. bottom: 8 / 728
  31603. }
  31604. },
  31605. bikeRight: {
  31606. height: math.unit(2.4, "meters"),
  31607. weight: math.unit(1600, "kg"),
  31608. name: "Bike (Right)",
  31609. image: {
  31610. source: "./media/characters/joanna/bike-right.svg",
  31611. extra: 720 / 720,
  31612. bottom: 8 / 728
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Incognito",
  31619. height: math.unit(3.5, "meters")
  31620. },
  31621. {
  31622. name: "Casual Big",
  31623. height: math.unit(200, "meters")
  31624. },
  31625. {
  31626. name: "Macro",
  31627. height: math.unit(600, "meters")
  31628. },
  31629. {
  31630. name: "Original",
  31631. height: math.unit(20, "km"),
  31632. default: true
  31633. },
  31634. {
  31635. name: "Giga",
  31636. height: math.unit(400, "km")
  31637. },
  31638. {
  31639. name: "Lounging",
  31640. height: math.unit(1500, "km")
  31641. },
  31642. {
  31643. name: "Planetary",
  31644. height: math.unit(200000, "km")
  31645. },
  31646. ]
  31647. ))
  31648. characterMakers.push(() => makeCharacter(
  31649. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31650. {
  31651. front: {
  31652. height: math.unit(6, "feet"),
  31653. weight: math.unit(150, "lb"),
  31654. name: "Front",
  31655. image: {
  31656. source: "./media/characters/hugo-sigil/front.svg",
  31657. extra: 522 / 500,
  31658. bottom: 2 / 524
  31659. }
  31660. },
  31661. back: {
  31662. height: math.unit(6, "feet"),
  31663. weight: math.unit(150, "lb"),
  31664. name: "Back",
  31665. image: {
  31666. source: "./media/characters/hugo-sigil/back.svg",
  31667. extra: 519 / 495,
  31668. bottom: 5 / 524
  31669. }
  31670. },
  31671. maw: {
  31672. height: math.unit(1.4, "feet"),
  31673. weight: math.unit(150, "lb"),
  31674. name: "Maw",
  31675. image: {
  31676. source: "./media/characters/hugo-sigil/maw.svg"
  31677. }
  31678. },
  31679. feet: {
  31680. height: math.unit(1.56, "feet"),
  31681. weight: math.unit(150, "lb"),
  31682. name: "Feet",
  31683. image: {
  31684. source: "./media/characters/hugo-sigil/feet.svg",
  31685. extra: 177 / 177,
  31686. bottom: 12 / 189
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Normal",
  31693. height: math.unit(6, "feet")
  31694. },
  31695. {
  31696. name: "Macro",
  31697. height: math.unit(200, "feet"),
  31698. default: true
  31699. },
  31700. ]
  31701. ))
  31702. characterMakers.push(() => makeCharacter(
  31703. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31704. {
  31705. front: {
  31706. height: math.unit(6, "feet"),
  31707. weight: math.unit(150, "lb"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/peri/front.svg",
  31711. extra: 2354 / 2233,
  31712. bottom: 49 / 2403
  31713. }
  31714. },
  31715. },
  31716. [
  31717. {
  31718. name: "Really Small",
  31719. height: math.unit(1, "nm")
  31720. },
  31721. {
  31722. name: "Micro",
  31723. height: math.unit(4, "inches")
  31724. },
  31725. {
  31726. name: "Normal",
  31727. height: math.unit(7, "inches"),
  31728. default: true
  31729. },
  31730. {
  31731. name: "Macro",
  31732. height: math.unit(400, "feet")
  31733. },
  31734. {
  31735. name: "Megamacro",
  31736. height: math.unit(100, "miles")
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31742. {
  31743. frontSlim: {
  31744. height: math.unit(7, "feet"),
  31745. name: "Front (Slim)",
  31746. image: {
  31747. source: "./media/characters/issilora/front-slim.svg",
  31748. extra: 529 / 449,
  31749. bottom: 53 / 582
  31750. }
  31751. },
  31752. sideSlim: {
  31753. height: math.unit(7, "feet"),
  31754. name: "Side (Slim)",
  31755. image: {
  31756. source: "./media/characters/issilora/side-slim.svg",
  31757. extra: 570 / 480,
  31758. bottom: 30 / 600
  31759. }
  31760. },
  31761. backSlim: {
  31762. height: math.unit(7, "feet"),
  31763. name: "Back (Slim)",
  31764. image: {
  31765. source: "./media/characters/issilora/back-slim.svg",
  31766. extra: 537 / 455,
  31767. bottom: 46 / 583
  31768. }
  31769. },
  31770. frontBuff: {
  31771. height: math.unit(7, "feet"),
  31772. name: "Front (Buff)",
  31773. image: {
  31774. source: "./media/characters/issilora/front-buff.svg",
  31775. extra: 2310 / 2035,
  31776. bottom: 335 / 2645
  31777. }
  31778. },
  31779. head: {
  31780. height: math.unit(1.94, "feet"),
  31781. name: "Head",
  31782. image: {
  31783. source: "./media/characters/issilora/head.svg"
  31784. }
  31785. },
  31786. },
  31787. [
  31788. {
  31789. name: "Minimum",
  31790. height: math.unit(7, "feet")
  31791. },
  31792. {
  31793. name: "Comfortable",
  31794. height: math.unit(17, "feet")
  31795. },
  31796. {
  31797. name: "Fun Size",
  31798. height: math.unit(47, "feet")
  31799. },
  31800. {
  31801. name: "Natural Macro",
  31802. height: math.unit(137, "feet"),
  31803. default: true
  31804. },
  31805. {
  31806. name: "Maximum Kaiju",
  31807. height: math.unit(397, "feet")
  31808. },
  31809. ]
  31810. ))
  31811. characterMakers.push(() => makeCharacter(
  31812. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31813. {
  31814. front: {
  31815. height: math.unit(50 + 9/12, "feet"),
  31816. weight: math.unit(32.8, "tons"),
  31817. name: "Front",
  31818. image: {
  31819. source: "./media/characters/irb'iiritaahn/front.svg",
  31820. extra: 1878/1826,
  31821. bottom: 326/2204
  31822. }
  31823. },
  31824. back: {
  31825. height: math.unit(50 + 9/12, "feet"),
  31826. weight: math.unit(32.8, "tons"),
  31827. name: "Back",
  31828. image: {
  31829. source: "./media/characters/irb'iiritaahn/back.svg",
  31830. extra: 2052/2018,
  31831. bottom: 152/2204
  31832. }
  31833. },
  31834. head: {
  31835. height: math.unit(12.86, "feet"),
  31836. name: "Head",
  31837. image: {
  31838. source: "./media/characters/irb'iiritaahn/head.svg"
  31839. }
  31840. },
  31841. maw: {
  31842. height: math.unit(9.66, "feet"),
  31843. name: "Maw",
  31844. image: {
  31845. source: "./media/characters/irb'iiritaahn/maw.svg"
  31846. }
  31847. },
  31848. frontDick: {
  31849. height: math.unit(8.78461, "feet"),
  31850. name: "Front Dick",
  31851. image: {
  31852. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31853. }
  31854. },
  31855. rearDick: {
  31856. height: math.unit(8.78461, "feet"),
  31857. name: "Rear Dick",
  31858. image: {
  31859. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31860. }
  31861. },
  31862. rearDickUnfolded: {
  31863. height: math.unit(8.78, "feet"),
  31864. name: "Rear Dick (Unfolded)",
  31865. image: {
  31866. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31867. }
  31868. },
  31869. wings: {
  31870. height: math.unit(43, "feet"),
  31871. name: "Wings",
  31872. image: {
  31873. source: "./media/characters/irb'iiritaahn/wings.svg"
  31874. }
  31875. },
  31876. },
  31877. [
  31878. {
  31879. name: "Macro",
  31880. height: math.unit(50 + 9/12, "feet"),
  31881. default: true
  31882. },
  31883. ]
  31884. ))
  31885. characterMakers.push(() => makeCharacter(
  31886. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31887. {
  31888. front: {
  31889. height: math.unit(205, "cm"),
  31890. weight: math.unit(102, "kg"),
  31891. name: "Front",
  31892. image: {
  31893. source: "./media/characters/irbisgreif/front.svg",
  31894. extra: 785/706,
  31895. bottom: 13/798
  31896. }
  31897. },
  31898. back: {
  31899. height: math.unit(205, "cm"),
  31900. weight: math.unit(102, "kg"),
  31901. name: "Back",
  31902. image: {
  31903. source: "./media/characters/irbisgreif/back.svg",
  31904. extra: 713/701,
  31905. bottom: 26/739
  31906. }
  31907. },
  31908. frontDressed: {
  31909. height: math.unit(216, "cm"),
  31910. weight: math.unit(102, "kg"),
  31911. name: "Front-dressed",
  31912. image: {
  31913. source: "./media/characters/irbisgreif/front-dressed.svg",
  31914. extra: 902/776,
  31915. bottom: 14/916
  31916. }
  31917. },
  31918. sideDressed: {
  31919. height: math.unit(195, "cm"),
  31920. weight: math.unit(102, "kg"),
  31921. name: "Side-dressed",
  31922. image: {
  31923. source: "./media/characters/irbisgreif/side-dressed.svg",
  31924. extra: 788/688,
  31925. bottom: 21/809
  31926. }
  31927. },
  31928. backDressed: {
  31929. height: math.unit(216, "cm"),
  31930. weight: math.unit(102, "kg"),
  31931. name: "Back-dressed",
  31932. image: {
  31933. source: "./media/characters/irbisgreif/back-dressed.svg",
  31934. extra: 901/783,
  31935. bottom: 10/911
  31936. }
  31937. },
  31938. dick: {
  31939. height: math.unit(0.49, "feet"),
  31940. name: "Dick",
  31941. image: {
  31942. source: "./media/characters/irbisgreif/dick.svg"
  31943. }
  31944. },
  31945. wingTop: {
  31946. height: math.unit(1.93 , "feet"),
  31947. name: "Wing-top",
  31948. image: {
  31949. source: "./media/characters/irbisgreif/wing-top.svg"
  31950. }
  31951. },
  31952. wingBottom: {
  31953. height: math.unit(1.93 , "feet"),
  31954. name: "Wing-bottom",
  31955. image: {
  31956. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(216, "cm"),
  31964. default: true
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31970. {
  31971. front: {
  31972. height: math.unit(6, "feet"),
  31973. weight: math.unit(150, "lb"),
  31974. name: "Front",
  31975. image: {
  31976. source: "./media/characters/pride/front.svg",
  31977. extra: 1299/1230,
  31978. bottom: 18/1317
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Normal",
  31985. height: math.unit(7, "feet")
  31986. },
  31987. {
  31988. name: "Mini-macro",
  31989. height: math.unit(11, "feet")
  31990. },
  31991. {
  31992. name: "Macro",
  31993. height: math.unit(15, "meters"),
  31994. default: true
  31995. },
  31996. {
  31997. name: "Macro+",
  31998. height: math.unit(40, "meters")
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32004. {
  32005. front: {
  32006. height: math.unit(4 + 2 / 12, "feet"),
  32007. weight: math.unit(95, "lb"),
  32008. name: "Front",
  32009. image: {
  32010. source: "./media/characters/vaelophis-nyx/front.svg",
  32011. extra: 2532/2330,
  32012. bottom: 0/2532
  32013. }
  32014. },
  32015. back: {
  32016. height: math.unit(4 + 2 / 12, "feet"),
  32017. weight: math.unit(95, "lb"),
  32018. name: "Back",
  32019. image: {
  32020. source: "./media/characters/vaelophis-nyx/back.svg",
  32021. extra: 2484/2361,
  32022. bottom: 0/2484
  32023. }
  32024. },
  32025. feralSide: {
  32026. height: math.unit(2 + 1/12, "feet"),
  32027. weight: math.unit(20, "lb"),
  32028. name: "Feral (Side)",
  32029. image: {
  32030. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32031. extra: 1721/1581,
  32032. bottom: 70/1791
  32033. }
  32034. },
  32035. feralLazing: {
  32036. height: math.unit(1.08, "feet"),
  32037. weight: math.unit(20, "lb"),
  32038. name: "Feral (Lazing)",
  32039. image: {
  32040. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32041. extra: 822/822,
  32042. bottom: 248/1070
  32043. }
  32044. },
  32045. ear: {
  32046. height: math.unit(0.416, "feet"),
  32047. name: "Ear",
  32048. image: {
  32049. source: "./media/characters/vaelophis-nyx/ear.svg"
  32050. }
  32051. },
  32052. eye: {
  32053. height: math.unit(0.0748, "feet"),
  32054. name: "Eye",
  32055. image: {
  32056. source: "./media/characters/vaelophis-nyx/eye.svg"
  32057. }
  32058. },
  32059. mouth: {
  32060. height: math.unit(0.378, "feet"),
  32061. name: "Mouth",
  32062. image: {
  32063. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32064. }
  32065. },
  32066. spade: {
  32067. height: math.unit(0.55, "feet"),
  32068. name: "Spade",
  32069. image: {
  32070. source: "./media/characters/vaelophis-nyx/spade.svg"
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(4 + 2/12, "feet"),
  32078. default: true
  32079. },
  32080. ]
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32084. {
  32085. front: {
  32086. height: math.unit(7, "feet"),
  32087. weight: math.unit(231, "lb"),
  32088. name: "Front",
  32089. image: {
  32090. source: "./media/characters/flux/front.svg",
  32091. extra: 919/871,
  32092. bottom: 0/919
  32093. }
  32094. },
  32095. back: {
  32096. height: math.unit(7, "feet"),
  32097. weight: math.unit(231, "lb"),
  32098. name: "Back",
  32099. image: {
  32100. source: "./media/characters/flux/back.svg",
  32101. extra: 1040/992,
  32102. bottom: 0/1040
  32103. }
  32104. },
  32105. frontDressed: {
  32106. height: math.unit(7, "feet"),
  32107. weight: math.unit(231, "lb"),
  32108. name: "Front (Dressed)",
  32109. image: {
  32110. source: "./media/characters/flux/front-dressed.svg",
  32111. extra: 919/871,
  32112. bottom: 0/919
  32113. }
  32114. },
  32115. feralSide: {
  32116. height: math.unit(5, "feet"),
  32117. weight: math.unit(150, "lb"),
  32118. name: "Feral (Side)",
  32119. image: {
  32120. source: "./media/characters/flux/feral-side.svg",
  32121. extra: 598/528,
  32122. bottom: 28/626
  32123. }
  32124. },
  32125. head: {
  32126. height: math.unit(1.585, "feet"),
  32127. name: "Head",
  32128. image: {
  32129. source: "./media/characters/flux/head.svg"
  32130. }
  32131. },
  32132. headSide: {
  32133. height: math.unit(1.74, "feet"),
  32134. name: "Head (Side)",
  32135. image: {
  32136. source: "./media/characters/flux/head-side.svg"
  32137. }
  32138. },
  32139. headSideFire: {
  32140. height: math.unit(1.76, "feet"),
  32141. name: "Head (Side, Fire)",
  32142. image: {
  32143. source: "./media/characters/flux/head-side-fire.svg"
  32144. }
  32145. },
  32146. },
  32147. [
  32148. {
  32149. name: "Normal",
  32150. height: math.unit(7, "feet"),
  32151. default: true
  32152. },
  32153. ]
  32154. ))
  32155. characterMakers.push(() => makeCharacter(
  32156. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32157. {
  32158. front: {
  32159. height: math.unit(9, "feet"),
  32160. weight: math.unit(1012, "lb"),
  32161. name: "Front",
  32162. image: {
  32163. source: "./media/characters/ulfra-lupae/front.svg",
  32164. extra: 1083/1011,
  32165. bottom: 67/1150
  32166. }
  32167. },
  32168. },
  32169. [
  32170. {
  32171. name: "Micro",
  32172. height: math.unit(6, "inches")
  32173. },
  32174. {
  32175. name: "Socializing",
  32176. height: math.unit(6 + 5/12, "feet")
  32177. },
  32178. {
  32179. name: "Normal",
  32180. height: math.unit(9, "feet"),
  32181. default: true
  32182. },
  32183. {
  32184. name: "Macro",
  32185. height: math.unit(150, "feet")
  32186. },
  32187. ]
  32188. ))
  32189. characterMakers.push(() => makeCharacter(
  32190. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32191. {
  32192. front: {
  32193. height: math.unit(5 + 2/12, "feet"),
  32194. weight: math.unit(120, "lb"),
  32195. name: "Front",
  32196. image: {
  32197. source: "./media/characters/timber/front.svg",
  32198. extra: 2814/2705,
  32199. bottom: 181/2995
  32200. }
  32201. },
  32202. },
  32203. [
  32204. {
  32205. name: "Normal",
  32206. height: math.unit(5 + 2/12, "feet"),
  32207. default: true
  32208. },
  32209. ]
  32210. ))
  32211. characterMakers.push(() => makeCharacter(
  32212. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32213. {
  32214. front: {
  32215. height: math.unit(9, "feet"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/nicki/front.svg",
  32219. extra: 1240/990,
  32220. bottom: 45/1285
  32221. },
  32222. form: "anthro",
  32223. default: true
  32224. },
  32225. side: {
  32226. height: math.unit(9, "feet"),
  32227. name: "Side",
  32228. image: {
  32229. source: "./media/characters/nicki/side.svg",
  32230. extra: 1047/973,
  32231. bottom: 61/1108
  32232. },
  32233. form: "anthro"
  32234. },
  32235. back: {
  32236. height: math.unit(9, "feet"),
  32237. name: "Back",
  32238. image: {
  32239. source: "./media/characters/nicki/back.svg",
  32240. extra: 1006/965,
  32241. bottom: 39/1045
  32242. },
  32243. form: "anthro"
  32244. },
  32245. taur: {
  32246. height: math.unit(15, "feet"),
  32247. name: "Taur",
  32248. image: {
  32249. source: "./media/characters/nicki/taur.svg",
  32250. extra: 1592/1347,
  32251. bottom: 0/1592
  32252. },
  32253. form: "taur",
  32254. default: true
  32255. },
  32256. },
  32257. [
  32258. {
  32259. name: "Normal",
  32260. height: math.unit(9, "feet"),
  32261. form: "anthro",
  32262. default: true
  32263. },
  32264. {
  32265. name: "Normal",
  32266. height: math.unit(15, "feet"),
  32267. form: "taur",
  32268. default: true
  32269. }
  32270. ],
  32271. {
  32272. "anthro": {
  32273. name: "Anthro",
  32274. default: true
  32275. },
  32276. "taur": {
  32277. name: "Taur"
  32278. }
  32279. }
  32280. ))
  32281. characterMakers.push(() => makeCharacter(
  32282. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32283. {
  32284. front: {
  32285. height: math.unit(7 + 10/12, "feet"),
  32286. weight: math.unit(3.5, "tons"),
  32287. name: "Front",
  32288. image: {
  32289. source: "./media/characters/lee/front.svg",
  32290. extra: 1773/1615,
  32291. bottom: 86/1859
  32292. }
  32293. },
  32294. hand: {
  32295. height: math.unit(1.78, "feet"),
  32296. name: "Hand",
  32297. image: {
  32298. source: "./media/characters/lee/hand.svg"
  32299. }
  32300. },
  32301. maw: {
  32302. height: math.unit(1.18, "feet"),
  32303. name: "Maw",
  32304. image: {
  32305. source: "./media/characters/lee/maw.svg"
  32306. }
  32307. },
  32308. },
  32309. [
  32310. {
  32311. name: "Normal",
  32312. height: math.unit(7 + 10/12, "feet"),
  32313. default: true
  32314. },
  32315. ]
  32316. ))
  32317. characterMakers.push(() => makeCharacter(
  32318. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32319. {
  32320. front: {
  32321. height: math.unit(9, "feet"),
  32322. name: "Front",
  32323. image: {
  32324. source: "./media/characters/guti/front.svg",
  32325. extra: 4551/4355,
  32326. bottom: 123/4674
  32327. }
  32328. },
  32329. tongue: {
  32330. height: math.unit(1, "feet"),
  32331. name: "Tongue",
  32332. image: {
  32333. source: "./media/characters/guti/tongue.svg"
  32334. }
  32335. },
  32336. paw: {
  32337. height: math.unit(1.18, "feet"),
  32338. name: "Paw",
  32339. image: {
  32340. source: "./media/characters/guti/paw.svg"
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Normal",
  32347. height: math.unit(9, "feet"),
  32348. default: true
  32349. },
  32350. ]
  32351. ))
  32352. characterMakers.push(() => makeCharacter(
  32353. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32354. {
  32355. side: {
  32356. height: math.unit(5, "meters"),
  32357. name: "Side",
  32358. image: {
  32359. source: "./media/characters/vesper/side.svg",
  32360. extra: 1605/1518,
  32361. bottom: 0/1605
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Small",
  32368. height: math.unit(5, "meters")
  32369. },
  32370. {
  32371. name: "Sage",
  32372. height: math.unit(100, "meters"),
  32373. default: true
  32374. },
  32375. {
  32376. name: "Fun Size",
  32377. height: math.unit(600, "meters")
  32378. },
  32379. {
  32380. name: "Goddess",
  32381. height: math.unit(20000, "km")
  32382. },
  32383. {
  32384. name: "Maximum",
  32385. height: math.unit(5, "galaxies")
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(6 + 3/12, "feet"),
  32394. weight: math.unit(190, "lb"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/gawain/front.svg",
  32398. extra: 2222/2139,
  32399. bottom: 90/2312
  32400. }
  32401. },
  32402. back: {
  32403. height: math.unit(6 + 3/12, "feet"),
  32404. weight: math.unit(190, "lb"),
  32405. name: "Back",
  32406. image: {
  32407. source: "./media/characters/gawain/back.svg",
  32408. extra: 2199/2111,
  32409. bottom: 73/2272
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Normal",
  32416. height: math.unit(6 + 3/12, "feet"),
  32417. default: true
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32423. {
  32424. side: {
  32425. height: math.unit(3.5, "meters"),
  32426. weight: math.unit(16000, "lb"),
  32427. name: "Side",
  32428. image: {
  32429. source: "./media/characters/dascalti/side.svg",
  32430. extra: 392/273,
  32431. bottom: 47/439
  32432. }
  32433. },
  32434. breath: {
  32435. height: math.unit(7.4, "feet"),
  32436. name: "Breath",
  32437. image: {
  32438. source: "./media/characters/dascalti/breath.svg"
  32439. }
  32440. },
  32441. fed: {
  32442. height: math.unit(3.6, "meters"),
  32443. weight: math.unit(16000, "lb"),
  32444. name: "Fed",
  32445. image: {
  32446. source: "./media/characters/dascalti/fed.svg",
  32447. extra: 1419/820,
  32448. bottom: 95/1514
  32449. }
  32450. },
  32451. },
  32452. [
  32453. {
  32454. name: "Normal",
  32455. height: math.unit(3.5, "meters"),
  32456. default: true
  32457. },
  32458. ]
  32459. ))
  32460. characterMakers.push(() => makeCharacter(
  32461. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32462. {
  32463. front: {
  32464. height: math.unit(3 + 5/12, "feet"),
  32465. name: "Front",
  32466. image: {
  32467. source: "./media/characters/mauve/front.svg",
  32468. extra: 1126/1033,
  32469. bottom: 65/1191
  32470. }
  32471. },
  32472. side: {
  32473. height: math.unit(3 + 5/12, "feet"),
  32474. name: "Side",
  32475. image: {
  32476. source: "./media/characters/mauve/side.svg",
  32477. extra: 1089/1001,
  32478. bottom: 29/1118
  32479. }
  32480. },
  32481. back: {
  32482. height: math.unit(3 + 5/12, "feet"),
  32483. name: "Back",
  32484. image: {
  32485. source: "./media/characters/mauve/back.svg",
  32486. extra: 1173/1053,
  32487. bottom: 109/1282
  32488. }
  32489. },
  32490. },
  32491. [
  32492. {
  32493. name: "Normal",
  32494. height: math.unit(3 + 5/12, "feet"),
  32495. default: true
  32496. },
  32497. ]
  32498. ))
  32499. characterMakers.push(() => makeCharacter(
  32500. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32501. {
  32502. front: {
  32503. height: math.unit(6 + 3/12, "feet"),
  32504. weight: math.unit(430, "lb"),
  32505. name: "Front",
  32506. image: {
  32507. source: "./media/characters/carlos/front.svg",
  32508. extra: 1964/1913,
  32509. bottom: 70/2034
  32510. }
  32511. },
  32512. },
  32513. [
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(6 + 3/12, "feet"),
  32517. default: true
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32523. {
  32524. back: {
  32525. height: math.unit(5 + 10/12, "feet"),
  32526. weight: math.unit(200, "lb"),
  32527. name: "Back",
  32528. image: {
  32529. source: "./media/characters/jax/back.svg",
  32530. extra: 764/739,
  32531. bottom: 25/789
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(5 + 10/12, "feet"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(8, "feet"),
  32548. weight: math.unit(250, "lb"),
  32549. name: "Front",
  32550. image: {
  32551. source: "./media/characters/eikthynir/front.svg",
  32552. extra: 1332/1166,
  32553. bottom: 82/1414
  32554. }
  32555. },
  32556. back: {
  32557. height: math.unit(8, "feet"),
  32558. weight: math.unit(250, "lb"),
  32559. name: "Back",
  32560. image: {
  32561. source: "./media/characters/eikthynir/back.svg",
  32562. extra: 1342/1190,
  32563. bottom: 19/1361
  32564. }
  32565. },
  32566. dick: {
  32567. height: math.unit(2.35, "feet"),
  32568. name: "Dick",
  32569. image: {
  32570. source: "./media/characters/eikthynir/dick.svg"
  32571. }
  32572. },
  32573. },
  32574. [
  32575. {
  32576. name: "Normal",
  32577. height: math.unit(8, "feet"),
  32578. default: true
  32579. },
  32580. ]
  32581. ))
  32582. characterMakers.push(() => makeCharacter(
  32583. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32584. {
  32585. front: {
  32586. height: math.unit(99, "meters"),
  32587. weight: math.unit(13000, "tons"),
  32588. name: "Front",
  32589. image: {
  32590. source: "./media/characters/zlmos/front.svg",
  32591. extra: 2202/1992,
  32592. bottom: 315/2517
  32593. }
  32594. },
  32595. },
  32596. [
  32597. {
  32598. name: "Macro",
  32599. height: math.unit(99, "meters"),
  32600. default: true
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32606. {
  32607. front: {
  32608. height: math.unit(6 + 5/12, "feet"),
  32609. name: "Front",
  32610. image: {
  32611. source: "./media/characters/purri/front.svg",
  32612. extra: 1698/1610,
  32613. bottom: 32/1730
  32614. }
  32615. },
  32616. frontAlt: {
  32617. height: math.unit(6 + 5/12, "feet"),
  32618. name: "Front (Alt)",
  32619. image: {
  32620. source: "./media/characters/purri/front-alt.svg",
  32621. extra: 450/420,
  32622. bottom: 26/476
  32623. }
  32624. },
  32625. boots: {
  32626. height: math.unit(5.5, "feet"),
  32627. name: "Boots",
  32628. image: {
  32629. source: "./media/characters/purri/boots.svg",
  32630. extra: 905/853,
  32631. bottom: 18/923
  32632. }
  32633. },
  32634. lying: {
  32635. height: math.unit(2, "feet"),
  32636. name: "Lying",
  32637. image: {
  32638. source: "./media/characters/purri/lying.svg",
  32639. extra: 940/843,
  32640. bottom: 146/1086
  32641. }
  32642. },
  32643. devious: {
  32644. height: math.unit(1.77, "feet"),
  32645. name: "Devious",
  32646. image: {
  32647. source: "./media/characters/purri/devious.svg",
  32648. extra: 1440/1155,
  32649. bottom: 147/1587
  32650. }
  32651. },
  32652. bean: {
  32653. height: math.unit(1.94, "feet"),
  32654. name: "Bean",
  32655. image: {
  32656. source: "./media/characters/purri/bean.svg"
  32657. }
  32658. },
  32659. },
  32660. [
  32661. {
  32662. name: "Micro",
  32663. height: math.unit(1, "mm")
  32664. },
  32665. {
  32666. name: "Normal",
  32667. height: math.unit(6 + 5/12, "feet"),
  32668. default: true
  32669. },
  32670. {
  32671. name: "Macro :3c",
  32672. height: math.unit(2, "miles")
  32673. },
  32674. ]
  32675. ))
  32676. characterMakers.push(() => makeCharacter(
  32677. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32678. {
  32679. front: {
  32680. height: math.unit(6 + 2/12, "feet"),
  32681. weight: math.unit(250, "lb"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/moonlight/front.svg",
  32685. extra: 1044/908,
  32686. bottom: 56/1100
  32687. }
  32688. },
  32689. feral: {
  32690. height: math.unit(3 + 1/12, "feet"),
  32691. weight: math.unit(50, "kg"),
  32692. name: "Feral",
  32693. image: {
  32694. source: "./media/characters/moonlight/feral.svg",
  32695. extra: 3705/2791,
  32696. bottom: 145/3850
  32697. }
  32698. },
  32699. paw: {
  32700. height: math.unit(1, "feet"),
  32701. name: "Paw",
  32702. image: {
  32703. source: "./media/characters/moonlight/paw.svg"
  32704. }
  32705. },
  32706. paws: {
  32707. height: math.unit(0.98, "feet"),
  32708. name: "Paws",
  32709. image: {
  32710. source: "./media/characters/moonlight/paws.svg",
  32711. extra: 939/939,
  32712. bottom: 50/989
  32713. }
  32714. },
  32715. mouth: {
  32716. height: math.unit(0.48, "feet"),
  32717. name: "Mouth",
  32718. image: {
  32719. source: "./media/characters/moonlight/mouth.svg"
  32720. }
  32721. },
  32722. dick: {
  32723. height: math.unit(1.46, "feet"),
  32724. name: "Dick",
  32725. image: {
  32726. source: "./media/characters/moonlight/dick.svg"
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Normal",
  32733. height: math.unit(6 + 2/12, "feet"),
  32734. default: true
  32735. },
  32736. {
  32737. name: "Macro",
  32738. height: math.unit(300, "feet")
  32739. },
  32740. {
  32741. name: "Macro+",
  32742. height: math.unit(1, "mile")
  32743. },
  32744. {
  32745. name: "Mt. Moon",
  32746. height: math.unit(5, "miles")
  32747. },
  32748. {
  32749. name: "Megamacro",
  32750. height: math.unit(15, "miles")
  32751. },
  32752. ]
  32753. ))
  32754. characterMakers.push(() => makeCharacter(
  32755. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32756. {
  32757. back: {
  32758. height: math.unit(6, "feet"),
  32759. weight: math.unit(150, "lb"),
  32760. name: "Back",
  32761. image: {
  32762. source: "./media/characters/sylen/back.svg",
  32763. extra: 1335/1273,
  32764. bottom: 107/1442
  32765. }
  32766. },
  32767. },
  32768. [
  32769. {
  32770. name: "Normal",
  32771. height: math.unit(5 + 5/12, "feet")
  32772. },
  32773. {
  32774. name: "Megamacro",
  32775. height: math.unit(3, "miles"),
  32776. default: true
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(6, "feet"),
  32785. weight: math.unit(190, "lb"),
  32786. name: "Front",
  32787. image: {
  32788. source: "./media/characters/huttser/front.svg",
  32789. extra: 1152/1058,
  32790. bottom: 23/1175
  32791. }
  32792. },
  32793. side: {
  32794. height: math.unit(6, "feet"),
  32795. weight: math.unit(190, "lb"),
  32796. name: "Side",
  32797. image: {
  32798. source: "./media/characters/huttser/side.svg",
  32799. extra: 1174/1065,
  32800. bottom: 18/1192
  32801. }
  32802. },
  32803. back: {
  32804. height: math.unit(6, "feet"),
  32805. weight: math.unit(190, "lb"),
  32806. name: "Back",
  32807. image: {
  32808. source: "./media/characters/huttser/back.svg",
  32809. extra: 1158/1056,
  32810. bottom: 12/1170
  32811. }
  32812. },
  32813. },
  32814. [
  32815. ]
  32816. ))
  32817. characterMakers.push(() => makeCharacter(
  32818. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32819. {
  32820. side: {
  32821. height: math.unit(12 + 9/12, "feet"),
  32822. weight: math.unit(15000, "lb"),
  32823. name: "Side",
  32824. image: {
  32825. source: "./media/characters/faan/side.svg",
  32826. extra: 2747/2697,
  32827. bottom: 0/2747
  32828. }
  32829. },
  32830. front: {
  32831. height: math.unit(12 + 9/12, "feet"),
  32832. weight: math.unit(15000, "lb"),
  32833. name: "Front",
  32834. image: {
  32835. source: "./media/characters/faan/front.svg",
  32836. extra: 607/571,
  32837. bottom: 24/631
  32838. }
  32839. },
  32840. head: {
  32841. height: math.unit(2.85, "feet"),
  32842. name: "Head",
  32843. image: {
  32844. source: "./media/characters/faan/head.svg"
  32845. }
  32846. },
  32847. headAlt: {
  32848. height: math.unit(3.13, "feet"),
  32849. name: "Head-alt",
  32850. image: {
  32851. source: "./media/characters/faan/head-alt.svg"
  32852. }
  32853. },
  32854. },
  32855. [
  32856. {
  32857. name: "Normal",
  32858. height: math.unit(12 + 9/12, "feet"),
  32859. default: true
  32860. },
  32861. ]
  32862. ))
  32863. characterMakers.push(() => makeCharacter(
  32864. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32865. {
  32866. front: {
  32867. height: math.unit(6, "feet"),
  32868. weight: math.unit(300, "lb"),
  32869. name: "Front",
  32870. image: {
  32871. source: "./media/characters/tanio/front.svg",
  32872. extra: 711/673,
  32873. bottom: 25/736
  32874. }
  32875. },
  32876. },
  32877. [
  32878. {
  32879. name: "Normal",
  32880. height: math.unit(6, "feet"),
  32881. default: true
  32882. },
  32883. ]
  32884. ))
  32885. characterMakers.push(() => makeCharacter(
  32886. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32887. {
  32888. front: {
  32889. height: math.unit(3, "inches"),
  32890. name: "Front",
  32891. image: {
  32892. source: "./media/characters/noboru/front.svg",
  32893. extra: 1039/932,
  32894. bottom: 18/1057
  32895. }
  32896. },
  32897. },
  32898. [
  32899. {
  32900. name: "Micro",
  32901. height: math.unit(3, "inches"),
  32902. default: true
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32908. {
  32909. front: {
  32910. height: math.unit(1.85, "meters"),
  32911. weight: math.unit(80, "kg"),
  32912. name: "Front",
  32913. image: {
  32914. source: "./media/characters/daniel-barrett/front.svg",
  32915. extra: 355/337,
  32916. bottom: 9/364
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Pico",
  32923. height: math.unit(0.0433, "mm")
  32924. },
  32925. {
  32926. name: "Nano",
  32927. height: math.unit(1.5, "mm")
  32928. },
  32929. {
  32930. name: "Micro",
  32931. height: math.unit(5.3, "cm"),
  32932. default: true
  32933. },
  32934. {
  32935. name: "Normal",
  32936. height: math.unit(1.85, "meters")
  32937. },
  32938. {
  32939. name: "Macro",
  32940. height: math.unit(64.7, "meters")
  32941. },
  32942. {
  32943. name: "Megamacro",
  32944. height: math.unit(2.26, "km")
  32945. },
  32946. {
  32947. name: "Gigamacro",
  32948. height: math.unit(79, "km")
  32949. },
  32950. {
  32951. name: "Teramacro",
  32952. height: math.unit(2765, "km")
  32953. },
  32954. {
  32955. name: "Petamacro",
  32956. height: math.unit(96678, "km")
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32962. {
  32963. front: {
  32964. height: math.unit(30, "meters"),
  32965. weight: math.unit(400, "tons"),
  32966. name: "Front",
  32967. image: {
  32968. source: "./media/characters/zeel/front.svg",
  32969. extra: 2599/2599,
  32970. bottom: 226/2825
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Macro",
  32977. height: math.unit(30, "meters"),
  32978. default: true
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32984. {
  32985. front: {
  32986. height: math.unit(6 + 7/12, "feet"),
  32987. weight: math.unit(210, "lb"),
  32988. name: "Front",
  32989. image: {
  32990. source: "./media/characters/tarn/front.svg",
  32991. extra: 3517/3220,
  32992. bottom: 91/3608
  32993. }
  32994. },
  32995. back: {
  32996. height: math.unit(6 + 7/12, "feet"),
  32997. weight: math.unit(210, "lb"),
  32998. name: "Back",
  32999. image: {
  33000. source: "./media/characters/tarn/back.svg",
  33001. extra: 3566/3241,
  33002. bottom: 34/3600
  33003. }
  33004. },
  33005. dick: {
  33006. height: math.unit(1.65, "feet"),
  33007. name: "Dick",
  33008. image: {
  33009. source: "./media/characters/tarn/dick.svg"
  33010. }
  33011. },
  33012. paw: {
  33013. height: math.unit(1.80, "feet"),
  33014. name: "Paw",
  33015. image: {
  33016. source: "./media/characters/tarn/paw.svg"
  33017. }
  33018. },
  33019. tongue: {
  33020. height: math.unit(0.97, "feet"),
  33021. name: "Tongue",
  33022. image: {
  33023. source: "./media/characters/tarn/tongue.svg"
  33024. }
  33025. },
  33026. },
  33027. [
  33028. {
  33029. name: "Micro",
  33030. height: math.unit(4, "inches")
  33031. },
  33032. {
  33033. name: "Normal",
  33034. height: math.unit(6 + 7/12, "feet"),
  33035. default: true
  33036. },
  33037. {
  33038. name: "Macro",
  33039. height: math.unit(300, "feet")
  33040. },
  33041. ]
  33042. ))
  33043. characterMakers.push(() => makeCharacter(
  33044. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33045. {
  33046. front: {
  33047. height: math.unit(5 + 7/12, "feet"),
  33048. weight: math.unit(80, "kg"),
  33049. name: "Front",
  33050. image: {
  33051. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33052. extra: 3023/2865,
  33053. bottom: 33/3056
  33054. }
  33055. },
  33056. back: {
  33057. height: math.unit(5 + 7/12, "feet"),
  33058. weight: math.unit(80, "kg"),
  33059. name: "Back",
  33060. image: {
  33061. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33062. extra: 3020/2886,
  33063. bottom: 30/3050
  33064. }
  33065. },
  33066. dick: {
  33067. height: math.unit(0.98, "feet"),
  33068. name: "Dick",
  33069. image: {
  33070. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33071. }
  33072. },
  33073. anatomy: {
  33074. height: math.unit(2.86, "feet"),
  33075. name: "Anatomy",
  33076. image: {
  33077. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33078. }
  33079. },
  33080. },
  33081. [
  33082. {
  33083. name: "Really Small",
  33084. height: math.unit(2, "inches")
  33085. },
  33086. {
  33087. name: "Micro",
  33088. height: math.unit(5.583, "inches")
  33089. },
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(5 + 7/12, "feet"),
  33093. default: true
  33094. },
  33095. {
  33096. name: "Macro",
  33097. height: math.unit(67, "feet")
  33098. },
  33099. {
  33100. name: "Megamacro",
  33101. height: math.unit(134, "feet")
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(9, "feet"),
  33110. weight: math.unit(120, "lb"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/sally/front.svg",
  33114. extra: 1506/1349,
  33115. bottom: 66/1572
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Normal",
  33122. height: math.unit(9, "feet"),
  33123. default: true
  33124. },
  33125. ]
  33126. ))
  33127. characterMakers.push(() => makeCharacter(
  33128. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33129. {
  33130. front: {
  33131. height: math.unit(8, "feet"),
  33132. weight: math.unit(900, "lb"),
  33133. name: "Front",
  33134. image: {
  33135. source: "./media/characters/owen/front.svg",
  33136. extra: 1761/1657,
  33137. bottom: 74/1835
  33138. }
  33139. },
  33140. side: {
  33141. height: math.unit(8, "feet"),
  33142. weight: math.unit(900, "lb"),
  33143. name: "Side",
  33144. image: {
  33145. source: "./media/characters/owen/side.svg",
  33146. extra: 1797/1734,
  33147. bottom: 30/1827
  33148. }
  33149. },
  33150. back: {
  33151. height: math.unit(8, "feet"),
  33152. weight: math.unit(900, "lb"),
  33153. name: "Back",
  33154. image: {
  33155. source: "./media/characters/owen/back.svg",
  33156. extra: 1796/1706,
  33157. bottom: 59/1855
  33158. }
  33159. },
  33160. maw: {
  33161. height: math.unit(1.76, "feet"),
  33162. name: "Maw",
  33163. image: {
  33164. source: "./media/characters/owen/maw.svg"
  33165. }
  33166. },
  33167. },
  33168. [
  33169. {
  33170. name: "Normal",
  33171. height: math.unit(8, "feet"),
  33172. default: true
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33178. {
  33179. front: {
  33180. height: math.unit(4, "feet"),
  33181. weight: math.unit(400, "lb"),
  33182. name: "Front",
  33183. image: {
  33184. source: "./media/characters/ryth/front.svg",
  33185. extra: 1920/1748,
  33186. bottom: 42/1962
  33187. }
  33188. },
  33189. back: {
  33190. height: math.unit(4, "feet"),
  33191. weight: math.unit(400, "lb"),
  33192. name: "Back",
  33193. image: {
  33194. source: "./media/characters/ryth/back.svg",
  33195. extra: 1897/1690,
  33196. bottom: 89/1986
  33197. }
  33198. },
  33199. mouth: {
  33200. height: math.unit(1.39, "feet"),
  33201. name: "Mouth",
  33202. image: {
  33203. source: "./media/characters/ryth/mouth.svg"
  33204. }
  33205. },
  33206. tailmaw: {
  33207. height: math.unit(1.23, "feet"),
  33208. name: "Tailmaw",
  33209. image: {
  33210. source: "./media/characters/ryth/tailmaw.svg"
  33211. }
  33212. },
  33213. goia: {
  33214. height: math.unit(4, "meters"),
  33215. weight: math.unit(10800, "lb"),
  33216. name: "Goia",
  33217. image: {
  33218. source: "./media/characters/ryth/goia.svg",
  33219. extra: 745/640,
  33220. bottom: 107/852
  33221. }
  33222. },
  33223. goiaFront: {
  33224. height: math.unit(4, "meters"),
  33225. weight: math.unit(10800, "lb"),
  33226. name: "Goia (Front)",
  33227. image: {
  33228. source: "./media/characters/ryth/goia-front.svg",
  33229. extra: 750/586,
  33230. bottom: 114/864
  33231. }
  33232. },
  33233. goiaMaw: {
  33234. height: math.unit(5.55, "feet"),
  33235. name: "Goia Maw",
  33236. image: {
  33237. source: "./media/characters/ryth/goia-maw.svg"
  33238. }
  33239. },
  33240. goiaForepaw: {
  33241. height: math.unit(3.5, "feet"),
  33242. name: "Goia Forepaw",
  33243. image: {
  33244. source: "./media/characters/ryth/goia-forepaw.svg"
  33245. }
  33246. },
  33247. goiaHindpaw: {
  33248. height: math.unit(5.55, "feet"),
  33249. name: "Goia Hindpaw",
  33250. image: {
  33251. source: "./media/characters/ryth/goia-hindpaw.svg"
  33252. }
  33253. },
  33254. },
  33255. [
  33256. {
  33257. name: "Normal",
  33258. height: math.unit(4, "feet"),
  33259. default: true
  33260. },
  33261. ]
  33262. ))
  33263. characterMakers.push(() => makeCharacter(
  33264. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33265. {
  33266. front: {
  33267. height: math.unit(7, "feet"),
  33268. weight: math.unit(180, "lb"),
  33269. name: "Front",
  33270. image: {
  33271. source: "./media/characters/necrolance/front.svg",
  33272. extra: 1062/947,
  33273. bottom: 41/1103
  33274. }
  33275. },
  33276. back: {
  33277. height: math.unit(7, "feet"),
  33278. weight: math.unit(180, "lb"),
  33279. name: "Back",
  33280. image: {
  33281. source: "./media/characters/necrolance/back.svg",
  33282. extra: 1045/984,
  33283. bottom: 14/1059
  33284. }
  33285. },
  33286. wing: {
  33287. height: math.unit(2.67, "feet"),
  33288. name: "Wing",
  33289. image: {
  33290. source: "./media/characters/necrolance/wing.svg"
  33291. }
  33292. },
  33293. },
  33294. [
  33295. {
  33296. name: "Normal",
  33297. height: math.unit(7, "feet"),
  33298. default: true
  33299. },
  33300. ]
  33301. ))
  33302. characterMakers.push(() => makeCharacter(
  33303. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33304. {
  33305. front: {
  33306. height: math.unit(76, "meters"),
  33307. weight: math.unit(30000, "tons"),
  33308. name: "Front",
  33309. image: {
  33310. source: "./media/characters/tyler/front.svg",
  33311. extra: 1640/1640,
  33312. bottom: 114/1754
  33313. }
  33314. },
  33315. },
  33316. [
  33317. {
  33318. name: "Macro",
  33319. height: math.unit(76, "meters"),
  33320. default: true
  33321. },
  33322. ]
  33323. ))
  33324. characterMakers.push(() => makeCharacter(
  33325. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33326. {
  33327. front: {
  33328. height: math.unit(4 + 11/12, "feet"),
  33329. weight: math.unit(132, "lb"),
  33330. name: "Front",
  33331. image: {
  33332. source: "./media/characters/icey/front.svg",
  33333. extra: 2750/2550,
  33334. bottom: 33/2783
  33335. }
  33336. },
  33337. back: {
  33338. height: math.unit(4 + 11/12, "feet"),
  33339. weight: math.unit(132, "lb"),
  33340. name: "Back",
  33341. image: {
  33342. source: "./media/characters/icey/back.svg",
  33343. extra: 2624/2481,
  33344. bottom: 35/2659
  33345. }
  33346. },
  33347. },
  33348. [
  33349. {
  33350. name: "Normal",
  33351. height: math.unit(4 + 11/12, "feet"),
  33352. default: true
  33353. },
  33354. ]
  33355. ))
  33356. characterMakers.push(() => makeCharacter(
  33357. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33358. {
  33359. front: {
  33360. height: math.unit(100, "feet"),
  33361. weight: math.unit(0, "lb"),
  33362. name: "Front",
  33363. image: {
  33364. source: "./media/characters/smile/front.svg",
  33365. extra: 2983/2912,
  33366. bottom: 162/3145
  33367. }
  33368. },
  33369. back: {
  33370. height: math.unit(100, "feet"),
  33371. weight: math.unit(0, "lb"),
  33372. name: "Back",
  33373. image: {
  33374. source: "./media/characters/smile/back.svg",
  33375. extra: 3143/3031,
  33376. bottom: 91/3234
  33377. }
  33378. },
  33379. head: {
  33380. height: math.unit(26.3, "feet"),
  33381. weight: math.unit(0, "lb"),
  33382. name: "Head",
  33383. image: {
  33384. source: "./media/characters/smile/head.svg"
  33385. }
  33386. },
  33387. collar: {
  33388. height: math.unit(5.3, "feet"),
  33389. weight: math.unit(0, "lb"),
  33390. name: "Collar",
  33391. image: {
  33392. source: "./media/characters/smile/collar.svg"
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Macro",
  33399. height: math.unit(100, "feet"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33406. {
  33407. dragon: {
  33408. height: math.unit(26, "feet"),
  33409. weight: math.unit(36, "tons"),
  33410. name: "Dragon",
  33411. image: {
  33412. source: "./media/characters/arimphae/dragon.svg",
  33413. extra: 1574/983,
  33414. bottom: 357/1931
  33415. }
  33416. },
  33417. drake: {
  33418. height: math.unit(9, "feet"),
  33419. weight: math.unit(1.5, "tons"),
  33420. name: "Drake",
  33421. image: {
  33422. source: "./media/characters/arimphae/drake.svg",
  33423. extra: 1120/925,
  33424. bottom: 435/1555
  33425. }
  33426. },
  33427. },
  33428. [
  33429. {
  33430. name: "Small",
  33431. height: math.unit(26*5/9, "feet")
  33432. },
  33433. {
  33434. name: "Normal",
  33435. height: math.unit(26, "feet"),
  33436. default: true
  33437. },
  33438. ]
  33439. ))
  33440. characterMakers.push(() => makeCharacter(
  33441. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33442. {
  33443. front: {
  33444. height: math.unit(8 + 9/12, "feet"),
  33445. name: "Front",
  33446. image: {
  33447. source: "./media/characters/xander/front.svg",
  33448. extra: 1237/974,
  33449. bottom: 94/1331
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Normal",
  33456. height: math.unit(8 + 9/12, "feet"),
  33457. default: true
  33458. },
  33459. {
  33460. name: "Gaze Grabber",
  33461. height: math.unit(13 + 8/12, "feet")
  33462. },
  33463. {
  33464. name: "Jaw Dropper",
  33465. height: math.unit(27, "feet")
  33466. },
  33467. {
  33468. name: "Show Stopper",
  33469. height: math.unit(136, "feet")
  33470. },
  33471. {
  33472. name: "Superstar",
  33473. height: math.unit(1.9e6, "miles")
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33479. {
  33480. side: {
  33481. height: math.unit(2100, "feet"),
  33482. name: "Side",
  33483. image: {
  33484. source: "./media/characters/osiris/side.svg",
  33485. extra: 1105/939,
  33486. bottom: 167/1272
  33487. }
  33488. },
  33489. },
  33490. [
  33491. {
  33492. name: "Macro",
  33493. height: math.unit(2100, "feet"),
  33494. default: true
  33495. },
  33496. ]
  33497. ))
  33498. characterMakers.push(() => makeCharacter(
  33499. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33500. {
  33501. front: {
  33502. height: math.unit(6 + 8/12, "feet"),
  33503. weight: math.unit(225, "lb"),
  33504. name: "Front",
  33505. image: {
  33506. source: "./media/characters/rhys-londe/front.svg",
  33507. extra: 2258/2141,
  33508. bottom: 188/2446
  33509. }
  33510. },
  33511. back: {
  33512. height: math.unit(6 + 8/12, "feet"),
  33513. weight: math.unit(225, "lb"),
  33514. name: "Back",
  33515. image: {
  33516. source: "./media/characters/rhys-londe/back.svg",
  33517. extra: 2237/2137,
  33518. bottom: 63/2300
  33519. }
  33520. },
  33521. frontNsfw: {
  33522. height: math.unit(6 + 8/12, "feet"),
  33523. weight: math.unit(225, "lb"),
  33524. name: "Front (NSFW)",
  33525. image: {
  33526. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33527. extra: 2258/2141,
  33528. bottom: 188/2446
  33529. }
  33530. },
  33531. backNsfw: {
  33532. height: math.unit(6 + 8/12, "feet"),
  33533. weight: math.unit(225, "lb"),
  33534. name: "Back (NSFW)",
  33535. image: {
  33536. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33537. extra: 2237/2137,
  33538. bottom: 63/2300
  33539. }
  33540. },
  33541. dick: {
  33542. height: math.unit(30, "inches"),
  33543. name: "Dick",
  33544. image: {
  33545. source: "./media/characters/rhys-londe/dick.svg"
  33546. }
  33547. },
  33548. maw: {
  33549. height: math.unit(1.6, "feet"),
  33550. name: "Maw",
  33551. image: {
  33552. source: "./media/characters/rhys-londe/maw.svg"
  33553. }
  33554. },
  33555. },
  33556. [
  33557. {
  33558. name: "Normal",
  33559. height: math.unit(6 + 8/12, "feet"),
  33560. default: true
  33561. },
  33562. ]
  33563. ))
  33564. characterMakers.push(() => makeCharacter(
  33565. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33566. {
  33567. front: {
  33568. height: math.unit(3 + 10/12, "feet"),
  33569. weight: math.unit(90, "lb"),
  33570. name: "Front",
  33571. image: {
  33572. source: "./media/characters/taivas-ensim/front.svg",
  33573. extra: 1327/1216,
  33574. bottom: 96/1423
  33575. }
  33576. },
  33577. back: {
  33578. height: math.unit(3 + 10/12, "feet"),
  33579. weight: math.unit(90, "lb"),
  33580. name: "Back",
  33581. image: {
  33582. source: "./media/characters/taivas-ensim/back.svg",
  33583. extra: 1355/1247,
  33584. bottom: 11/1366
  33585. }
  33586. },
  33587. frontNsfw: {
  33588. height: math.unit(3 + 10/12, "feet"),
  33589. weight: math.unit(90, "lb"),
  33590. name: "Front (NSFW)",
  33591. image: {
  33592. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33593. extra: 1327/1216,
  33594. bottom: 96/1423
  33595. }
  33596. },
  33597. backNsfw: {
  33598. height: math.unit(3 + 10/12, "feet"),
  33599. weight: math.unit(90, "lb"),
  33600. name: "Back (NSFW)",
  33601. image: {
  33602. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33603. extra: 1355/1247,
  33604. bottom: 11/1366
  33605. }
  33606. },
  33607. },
  33608. [
  33609. {
  33610. name: "Normal",
  33611. height: math.unit(3 + 10/12, "feet"),
  33612. default: true
  33613. },
  33614. ]
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33618. {
  33619. front: {
  33620. height: math.unit(9 + 6/12, "feet"),
  33621. weight: math.unit(940, "lb"),
  33622. name: "Front",
  33623. image: {
  33624. source: "./media/characters/byliss/front.svg",
  33625. extra: 1327/1290,
  33626. bottom: 82/1409
  33627. }
  33628. },
  33629. back: {
  33630. height: math.unit(9 + 6/12, "feet"),
  33631. weight: math.unit(940, "lb"),
  33632. name: "Back",
  33633. image: {
  33634. source: "./media/characters/byliss/back.svg",
  33635. extra: 1376/1349,
  33636. bottom: 9/1385
  33637. }
  33638. },
  33639. frontNsfw: {
  33640. height: math.unit(9 + 6/12, "feet"),
  33641. weight: math.unit(940, "lb"),
  33642. name: "Front (NSFW)",
  33643. image: {
  33644. source: "./media/characters/byliss/front-nsfw.svg",
  33645. extra: 1327/1290,
  33646. bottom: 82/1409
  33647. }
  33648. },
  33649. backNsfw: {
  33650. height: math.unit(9 + 6/12, "feet"),
  33651. weight: math.unit(940, "lb"),
  33652. name: "Back (NSFW)",
  33653. image: {
  33654. source: "./media/characters/byliss/back-nsfw.svg",
  33655. extra: 1376/1349,
  33656. bottom: 9/1385
  33657. }
  33658. },
  33659. },
  33660. [
  33661. {
  33662. name: "Normal",
  33663. height: math.unit(9 + 6/12, "feet"),
  33664. default: true
  33665. },
  33666. ]
  33667. ))
  33668. characterMakers.push(() => makeCharacter(
  33669. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33670. {
  33671. front: {
  33672. height: math.unit(5 + 2/12, "feet"),
  33673. weight: math.unit(200, "lb"),
  33674. name: "Front",
  33675. image: {
  33676. source: "./media/characters/noraly/front.svg",
  33677. extra: 4985/4773,
  33678. bottom: 150/5135
  33679. }
  33680. },
  33681. full: {
  33682. height: math.unit(5 + 2/12, "feet"),
  33683. weight: math.unit(164, "lb"),
  33684. name: "Full",
  33685. image: {
  33686. source: "./media/characters/noraly/full.svg",
  33687. extra: 1114/1059,
  33688. bottom: 35/1149
  33689. }
  33690. },
  33691. fuller: {
  33692. height: math.unit(5 + 2/12, "feet"),
  33693. weight: math.unit(230, "lb"),
  33694. name: "Fuller",
  33695. image: {
  33696. source: "./media/characters/noraly/fuller.svg",
  33697. extra: 1114/1059,
  33698. bottom: 35/1149
  33699. }
  33700. },
  33701. fullest: {
  33702. height: math.unit(5 + 2/12, "feet"),
  33703. weight: math.unit(300, "lb"),
  33704. name: "Fullest",
  33705. image: {
  33706. source: "./media/characters/noraly/fullest.svg",
  33707. extra: 1114/1059,
  33708. bottom: 35/1149
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(5 + 2/12, "feet"),
  33716. default: true
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33722. {
  33723. front: {
  33724. height: math.unit(5 + 2/12, "feet"),
  33725. weight: math.unit(210, "lb"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/pera/front.svg",
  33729. extra: 1560/1531,
  33730. bottom: 165/1725
  33731. }
  33732. },
  33733. back: {
  33734. height: math.unit(5 + 2/12, "feet"),
  33735. weight: math.unit(210, "lb"),
  33736. name: "Back",
  33737. image: {
  33738. source: "./media/characters/pera/back.svg",
  33739. extra: 1523/1493,
  33740. bottom: 152/1675
  33741. }
  33742. },
  33743. dick: {
  33744. height: math.unit(2.4, "feet"),
  33745. name: "Dick",
  33746. image: {
  33747. source: "./media/characters/pera/dick.svg"
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Normal",
  33754. height: math.unit(5 + 2/12, "feet"),
  33755. default: true
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33761. {
  33762. front: {
  33763. height: math.unit(12, "feet"),
  33764. weight: math.unit(3200, "lb"),
  33765. name: "Front",
  33766. image: {
  33767. source: "./media/characters/julian/front.svg",
  33768. extra: 2962/2701,
  33769. bottom: 184/3146
  33770. }
  33771. },
  33772. maw: {
  33773. height: math.unit(5.35, "feet"),
  33774. name: "Maw",
  33775. image: {
  33776. source: "./media/characters/julian/maw.svg"
  33777. }
  33778. },
  33779. paw: {
  33780. height: math.unit(3.07, "feet"),
  33781. name: "Paw",
  33782. image: {
  33783. source: "./media/characters/julian/paw.svg"
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Default",
  33790. height: math.unit(12, "feet"),
  33791. default: true
  33792. },
  33793. {
  33794. name: "Big",
  33795. height: math.unit(50, "feet")
  33796. },
  33797. {
  33798. name: "Really Big",
  33799. height: math.unit(1, "mile")
  33800. },
  33801. {
  33802. name: "Extremely Big",
  33803. height: math.unit(100, "miles")
  33804. },
  33805. {
  33806. name: "Planet Hugger",
  33807. height: math.unit(200, "megameters")
  33808. },
  33809. {
  33810. name: "Unreasonably Big",
  33811. height: math.unit(1e300, "meters")
  33812. },
  33813. ]
  33814. ))
  33815. characterMakers.push(() => makeCharacter(
  33816. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33817. {
  33818. solgooleo: {
  33819. height: math.unit(4, "meters"),
  33820. weight: math.unit(6000*1.5, "kg"),
  33821. volume: math.unit(6000, "liters"),
  33822. name: "Solgooleo",
  33823. image: {
  33824. source: "./media/characters/pi/solgooleo.svg",
  33825. extra: 388/331,
  33826. bottom: 29/417
  33827. }
  33828. },
  33829. },
  33830. [
  33831. {
  33832. name: "Normal",
  33833. height: math.unit(4, "meters"),
  33834. default: true
  33835. },
  33836. ]
  33837. ))
  33838. characterMakers.push(() => makeCharacter(
  33839. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33840. {
  33841. front: {
  33842. height: math.unit(8, "feet"),
  33843. weight: math.unit(4, "tons"),
  33844. name: "Front",
  33845. image: {
  33846. source: "./media/characters/shaun/front.svg",
  33847. extra: 503/495,
  33848. bottom: 20/523
  33849. }
  33850. },
  33851. back: {
  33852. height: math.unit(8, "feet"),
  33853. weight: math.unit(4, "tons"),
  33854. name: "Back",
  33855. image: {
  33856. source: "./media/characters/shaun/back.svg",
  33857. extra: 487/480,
  33858. bottom: 20/507
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Lorg",
  33865. height: math.unit(8, "feet"),
  33866. default: true
  33867. },
  33868. ]
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33872. {
  33873. frontAnthro: {
  33874. height: math.unit(7, "feet"),
  33875. name: "Front",
  33876. image: {
  33877. source: "./media/characters/sini/front-anthro.svg",
  33878. extra: 726/678,
  33879. bottom: 35/761
  33880. },
  33881. form: "anthro",
  33882. default: true
  33883. },
  33884. backAnthro: {
  33885. height: math.unit(7, "feet"),
  33886. name: "Back",
  33887. image: {
  33888. source: "./media/characters/sini/back-anthro.svg",
  33889. extra: 743/701,
  33890. bottom: 12/755
  33891. },
  33892. form: "anthro",
  33893. },
  33894. frontAnthroNsfw: {
  33895. height: math.unit(7, "feet"),
  33896. name: "Front (NSFW)",
  33897. image: {
  33898. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33899. extra: 726/678,
  33900. bottom: 35/761
  33901. },
  33902. form: "anthro"
  33903. },
  33904. backAnthroNsfw: {
  33905. height: math.unit(7, "feet"),
  33906. name: "Back (NSFW)",
  33907. image: {
  33908. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33909. extra: 743/701,
  33910. bottom: 12/755
  33911. },
  33912. form: "anthro",
  33913. },
  33914. mawAnthro: {
  33915. height: math.unit(2.14, "feet"),
  33916. name: "Maw",
  33917. image: {
  33918. source: "./media/characters/sini/maw-anthro.svg"
  33919. },
  33920. form: "anthro"
  33921. },
  33922. dick: {
  33923. height: math.unit(1.45, "feet"),
  33924. name: "Dick",
  33925. image: {
  33926. source: "./media/characters/sini/dick-anthro.svg"
  33927. },
  33928. form: "anthro"
  33929. },
  33930. feral: {
  33931. height: math.unit(16, "feet"),
  33932. name: "Feral",
  33933. image: {
  33934. source: "./media/characters/sini/feral.svg",
  33935. extra: 814/605,
  33936. bottom: 11/825
  33937. },
  33938. form: "feral",
  33939. default: true
  33940. },
  33941. feralNsfw: {
  33942. height: math.unit(16, "feet"),
  33943. name: "Feral (NSFW)",
  33944. image: {
  33945. source: "./media/characters/sini/feral-nsfw.svg",
  33946. extra: 814/605,
  33947. bottom: 11/825
  33948. },
  33949. form: "feral"
  33950. },
  33951. mawFeral: {
  33952. height: math.unit(5.66, "feet"),
  33953. name: "Maw",
  33954. image: {
  33955. source: "./media/characters/sini/maw-feral.svg"
  33956. },
  33957. form: "feral",
  33958. },
  33959. pawFeral: {
  33960. height: math.unit(5.17, "feet"),
  33961. name: "Paw",
  33962. image: {
  33963. source: "./media/characters/sini/paw-feral.svg"
  33964. },
  33965. form: "feral",
  33966. },
  33967. rumpFeral: {
  33968. height: math.unit(13.11, "feet"),
  33969. name: "Rump",
  33970. image: {
  33971. source: "./media/characters/sini/rump-feral.svg"
  33972. },
  33973. form: "feral",
  33974. },
  33975. dickFeral: {
  33976. height: math.unit(1, "feet"),
  33977. name: "Dick",
  33978. image: {
  33979. source: "./media/characters/sini/dick-feral.svg"
  33980. },
  33981. form: "feral",
  33982. },
  33983. eyeFeral: {
  33984. height: math.unit(1.23, "feet"),
  33985. name: "Eye",
  33986. image: {
  33987. source: "./media/characters/sini/eye-feral.svg"
  33988. },
  33989. form: "feral",
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(7, "feet"),
  33996. default: true,
  33997. form: "anthro"
  33998. },
  33999. {
  34000. name: "Normal",
  34001. height: math.unit(16, "feet"),
  34002. default: true,
  34003. form: "feral"
  34004. },
  34005. ],
  34006. {
  34007. "anthro": {
  34008. name: "Anthro",
  34009. default: true
  34010. },
  34011. "feral": {
  34012. name: "Feral",
  34013. }
  34014. }
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34018. {
  34019. side: {
  34020. height: math.unit(47.2, "meters"),
  34021. weight: math.unit(10000, "tons"),
  34022. name: "Side",
  34023. image: {
  34024. source: "./media/characters/raylldo/side.svg",
  34025. extra: 2363/642,
  34026. bottom: 221/2584
  34027. }
  34028. },
  34029. top: {
  34030. height: math.unit(240, "meters"),
  34031. weight: math.unit(10000, "tons"),
  34032. name: "Top",
  34033. image: {
  34034. source: "./media/characters/raylldo/top.svg"
  34035. }
  34036. },
  34037. bottom: {
  34038. height: math.unit(240, "meters"),
  34039. weight: math.unit(10000, "tons"),
  34040. name: "Bottom",
  34041. image: {
  34042. source: "./media/characters/raylldo/bottom.svg"
  34043. }
  34044. },
  34045. head: {
  34046. height: math.unit(38.6, "meters"),
  34047. name: "Head",
  34048. image: {
  34049. source: "./media/characters/raylldo/head.svg",
  34050. extra: 1335/1112,
  34051. bottom: 0/1335
  34052. }
  34053. },
  34054. maw: {
  34055. height: math.unit(16.37, "meters"),
  34056. name: "Maw",
  34057. image: {
  34058. source: "./media/characters/raylldo/maw.svg",
  34059. extra: 883/660,
  34060. bottom: 0/883
  34061. },
  34062. extraAttributes: {
  34063. preyCapacity: {
  34064. name: "Capacity",
  34065. power: 3,
  34066. type: "volume",
  34067. base: math.unit(1000, "people")
  34068. },
  34069. tongueSize: {
  34070. name: "Tongue Size",
  34071. power: 2,
  34072. type: "area",
  34073. base: math.unit(21, "m^2")
  34074. }
  34075. }
  34076. },
  34077. forepaw: {
  34078. height: math.unit(18, "meters"),
  34079. name: "Forepaw",
  34080. image: {
  34081. source: "./media/characters/raylldo/forepaw.svg"
  34082. }
  34083. },
  34084. hindpaw: {
  34085. height: math.unit(23, "meters"),
  34086. name: "Hindpaw",
  34087. image: {
  34088. source: "./media/characters/raylldo/hindpaw.svg"
  34089. }
  34090. },
  34091. genitals: {
  34092. height: math.unit(42, "meters"),
  34093. name: "Genitals",
  34094. image: {
  34095. source: "./media/characters/raylldo/genitals.svg"
  34096. }
  34097. },
  34098. },
  34099. [
  34100. {
  34101. name: "Normal",
  34102. height: math.unit(47.2, "meters"),
  34103. default: true
  34104. },
  34105. ]
  34106. ))
  34107. characterMakers.push(() => makeCharacter(
  34108. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34109. {
  34110. anthroFront: {
  34111. height: math.unit(9, "feet"),
  34112. weight: math.unit(600, "lb"),
  34113. name: "Anthro (Front)",
  34114. image: {
  34115. source: "./media/characters/glint/anthro-front.svg",
  34116. extra: 1097/1018,
  34117. bottom: 28/1125
  34118. }
  34119. },
  34120. anthroBack: {
  34121. height: math.unit(9, "feet"),
  34122. weight: math.unit(600, "lb"),
  34123. name: "Anthro (Back)",
  34124. image: {
  34125. source: "./media/characters/glint/anthro-back.svg",
  34126. extra: 1154/997,
  34127. bottom: 36/1190
  34128. }
  34129. },
  34130. feral: {
  34131. height: math.unit(11, "feet"),
  34132. weight: math.unit(50000, "lb"),
  34133. name: "Feral",
  34134. image: {
  34135. source: "./media/characters/glint/feral.svg",
  34136. extra: 3035/1585,
  34137. bottom: 1169/4204
  34138. }
  34139. },
  34140. dickAnthro: {
  34141. height: math.unit(0.7, "meters"),
  34142. name: "Dick (Anthro)",
  34143. image: {
  34144. source: "./media/characters/glint/dick-anthro.svg"
  34145. }
  34146. },
  34147. dickFeral: {
  34148. height: math.unit(2.65, "meters"),
  34149. name: "Dick (Feral)",
  34150. image: {
  34151. source: "./media/characters/glint/dick-feral.svg"
  34152. }
  34153. },
  34154. slitHidden: {
  34155. height: math.unit(5.85, "meters"),
  34156. name: "Slit (Hidden)",
  34157. image: {
  34158. source: "./media/characters/glint/slit-hidden.svg"
  34159. }
  34160. },
  34161. slitErect: {
  34162. height: math.unit(5.85, "meters"),
  34163. name: "Slit (Erect)",
  34164. image: {
  34165. source: "./media/characters/glint/slit-erect.svg"
  34166. }
  34167. },
  34168. mawAnthro: {
  34169. height: math.unit(0.63, "meters"),
  34170. name: "Maw (Anthro)",
  34171. image: {
  34172. source: "./media/characters/glint/maw.svg"
  34173. }
  34174. },
  34175. mawFeral: {
  34176. height: math.unit(2.89, "meters"),
  34177. name: "Maw (Feral)",
  34178. image: {
  34179. source: "./media/characters/glint/maw.svg"
  34180. }
  34181. },
  34182. },
  34183. [
  34184. {
  34185. name: "Normal",
  34186. height: math.unit(9, "feet"),
  34187. default: true
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34193. {
  34194. side: {
  34195. height: math.unit(15, "feet"),
  34196. weight: math.unit(5000, "kg"),
  34197. name: "Side",
  34198. image: {
  34199. source: "./media/characters/kairne/side.svg",
  34200. extra: 979/811,
  34201. bottom: 13/992
  34202. }
  34203. },
  34204. front: {
  34205. height: math.unit(15, "feet"),
  34206. weight: math.unit(5000, "kg"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/kairne/front.svg",
  34210. extra: 908/814,
  34211. bottom: 26/934
  34212. }
  34213. },
  34214. sideNsfw: {
  34215. height: math.unit(15, "feet"),
  34216. weight: math.unit(5000, "kg"),
  34217. name: "Side (NSFW)",
  34218. image: {
  34219. source: "./media/characters/kairne/side-nsfw.svg",
  34220. extra: 979/811,
  34221. bottom: 13/992
  34222. }
  34223. },
  34224. frontNsfw: {
  34225. height: math.unit(15, "feet"),
  34226. weight: math.unit(5000, "kg"),
  34227. name: "Front (NSFW)",
  34228. image: {
  34229. source: "./media/characters/kairne/front-nsfw.svg",
  34230. extra: 908/814,
  34231. bottom: 26/934
  34232. }
  34233. },
  34234. dickCaged: {
  34235. height: math.unit(0.65, "meters"),
  34236. name: "Dick-caged",
  34237. image: {
  34238. source: "./media/characters/kairne/dick-caged.svg"
  34239. }
  34240. },
  34241. dick: {
  34242. height: math.unit(0.79, "meters"),
  34243. name: "Dick",
  34244. image: {
  34245. source: "./media/characters/kairne/dick.svg"
  34246. }
  34247. },
  34248. genitals: {
  34249. height: math.unit(1.29, "meters"),
  34250. name: "Genitals",
  34251. image: {
  34252. source: "./media/characters/kairne/genitals.svg"
  34253. }
  34254. },
  34255. maw: {
  34256. height: math.unit(1.73, "meters"),
  34257. name: "Maw",
  34258. image: {
  34259. source: "./media/characters/kairne/maw.svg"
  34260. }
  34261. },
  34262. },
  34263. [
  34264. {
  34265. name: "Normal",
  34266. height: math.unit(15, "feet"),
  34267. default: true
  34268. },
  34269. ]
  34270. ))
  34271. characterMakers.push(() => makeCharacter(
  34272. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34273. {
  34274. front: {
  34275. height: math.unit(5 + 8/12, "feet"),
  34276. weight: math.unit(139, "lb"),
  34277. name: "Front",
  34278. image: {
  34279. source: "./media/characters/biscuit-jackal/front.svg",
  34280. extra: 2106/1961,
  34281. bottom: 58/2164
  34282. }
  34283. },
  34284. back: {
  34285. height: math.unit(5 + 8/12, "feet"),
  34286. weight: math.unit(139, "lb"),
  34287. name: "Back",
  34288. image: {
  34289. source: "./media/characters/biscuit-jackal/back.svg",
  34290. extra: 2132/1976,
  34291. bottom: 57/2189
  34292. }
  34293. },
  34294. werejackal: {
  34295. height: math.unit(6 + 3/12, "feet"),
  34296. weight: math.unit(188, "lb"),
  34297. name: "Werejackal",
  34298. image: {
  34299. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34300. extra: 2373/2178,
  34301. bottom: 53/2426
  34302. }
  34303. },
  34304. },
  34305. [
  34306. {
  34307. name: "Normal",
  34308. height: math.unit(5 + 8/12, "feet"),
  34309. default: true
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34315. {
  34316. front: {
  34317. height: math.unit(140, "cm"),
  34318. weight: math.unit(45, "kg"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/tayra-white/front.svg",
  34322. extra: 2229/2192,
  34323. bottom: 75/2304
  34324. }
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Normal",
  34330. height: math.unit(140, "cm"),
  34331. default: true
  34332. },
  34333. ]
  34334. ))
  34335. characterMakers.push(() => makeCharacter(
  34336. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34337. {
  34338. front: {
  34339. height: math.unit(4 + 5/12, "feet"),
  34340. name: "Front",
  34341. image: {
  34342. source: "./media/characters/scoop/front.svg",
  34343. extra: 1257/1136,
  34344. bottom: 69/1326
  34345. }
  34346. },
  34347. back: {
  34348. height: math.unit(4 + 5/12, "feet"),
  34349. name: "Back",
  34350. image: {
  34351. source: "./media/characters/scoop/back.svg",
  34352. extra: 1321/1152,
  34353. bottom: 32/1353
  34354. }
  34355. },
  34356. maw: {
  34357. height: math.unit(0.68, "feet"),
  34358. name: "Maw",
  34359. image: {
  34360. source: "./media/characters/scoop/maw.svg"
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Really Small",
  34367. height: math.unit(1, "mm")
  34368. },
  34369. {
  34370. name: "Micro",
  34371. height: math.unit(1, "inch")
  34372. },
  34373. {
  34374. name: "Normal",
  34375. height: math.unit(4 + 5/12, "feet"),
  34376. default: true
  34377. },
  34378. {
  34379. name: "Macro",
  34380. height: math.unit(200, "feet")
  34381. },
  34382. {
  34383. name: "Megamacro",
  34384. height: math.unit(3240, "feet")
  34385. },
  34386. {
  34387. name: "Teramacro",
  34388. height: math.unit(2500, "miles")
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(15 + 7/12, "feet"),
  34397. weight: math.unit(1150, "tons"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/saphinara/front.svg",
  34401. extra: 1837/1643,
  34402. bottom: 84/1921
  34403. },
  34404. form: "normal",
  34405. default: true
  34406. },
  34407. side: {
  34408. height: math.unit(15 + 7/12, "feet"),
  34409. weight: math.unit(1150, "tons"),
  34410. name: "Side",
  34411. image: {
  34412. source: "./media/characters/saphinara/side.svg",
  34413. extra: 605/547,
  34414. bottom: 6/611
  34415. },
  34416. form: "normal"
  34417. },
  34418. back: {
  34419. height: math.unit(15 + 7/12, "feet"),
  34420. weight: math.unit(1150, "tons"),
  34421. name: "Back",
  34422. image: {
  34423. source: "./media/characters/saphinara/back.svg",
  34424. extra: 591/531,
  34425. bottom: 13/604
  34426. },
  34427. form: "normal"
  34428. },
  34429. frontTail: {
  34430. height: math.unit(15 + 7/12, "feet"),
  34431. weight: math.unit(1150, "tons"),
  34432. name: "Front (Full Tail)",
  34433. image: {
  34434. source: "./media/characters/saphinara/front-tail.svg",
  34435. extra: 2256/1630,
  34436. bottom: 261/2517
  34437. },
  34438. form: "normal"
  34439. },
  34440. insides: {
  34441. height: math.unit(11.92, "feet"),
  34442. name: "Insides",
  34443. image: {
  34444. source: "./media/characters/saphinara/insides.svg"
  34445. },
  34446. form: "normal"
  34447. },
  34448. head: {
  34449. height: math.unit(4.17, "feet"),
  34450. name: "Head",
  34451. image: {
  34452. source: "./media/characters/saphinara/head.svg"
  34453. },
  34454. form: "normal"
  34455. },
  34456. tongue: {
  34457. height: math.unit(4.60, "feet"),
  34458. name: "Tongue",
  34459. image: {
  34460. source: "./media/characters/saphinara/tongue.svg"
  34461. },
  34462. form: "normal"
  34463. },
  34464. headEnraged: {
  34465. height: math.unit(5.55, "feet"),
  34466. name: "Head (Enraged)",
  34467. image: {
  34468. source: "./media/characters/saphinara/head-enraged.svg"
  34469. },
  34470. form: "normal"
  34471. },
  34472. wings: {
  34473. height: math.unit(11.95, "feet"),
  34474. name: "Wings",
  34475. image: {
  34476. source: "./media/characters/saphinara/wings.svg"
  34477. },
  34478. form: "normal"
  34479. },
  34480. feathers: {
  34481. height: math.unit(8.92, "feet"),
  34482. name: "Feathers",
  34483. image: {
  34484. source: "./media/characters/saphinara/feathers.svg"
  34485. },
  34486. form: "normal"
  34487. },
  34488. shackles: {
  34489. height: math.unit(2, "feet"),
  34490. name: "Shackles",
  34491. image: {
  34492. source: "./media/characters/saphinara/shackles.svg"
  34493. },
  34494. form: "normal"
  34495. },
  34496. eyes: {
  34497. height: math.unit(1.331, "feet"),
  34498. name: "Eyes",
  34499. image: {
  34500. source: "./media/characters/saphinara/eyes.svg"
  34501. },
  34502. form: "normal"
  34503. },
  34504. eyesEnraged: {
  34505. height: math.unit(1.331, "feet"),
  34506. name: "Eyes (Enraged)",
  34507. image: {
  34508. source: "./media/characters/saphinara/eyes-enraged.svg"
  34509. },
  34510. form: "normal"
  34511. },
  34512. trueFormSide: {
  34513. height: math.unit(200, "feet"),
  34514. weight: math.unit(1e7, "tons"),
  34515. name: "Side",
  34516. image: {
  34517. source: "./media/characters/saphinara/true-form-side.svg",
  34518. extra: 1399/770,
  34519. bottom: 97/1496
  34520. },
  34521. form: "true-form",
  34522. default: true
  34523. },
  34524. trueFormMaw: {
  34525. height: math.unit(71.5, "feet"),
  34526. name: "Maw",
  34527. image: {
  34528. source: "./media/characters/saphinara/true-form-maw.svg",
  34529. extra: 2302/1453,
  34530. bottom: 0/2302
  34531. },
  34532. form: "true-form"
  34533. },
  34534. meowberusSide: {
  34535. height: math.unit(75, "feet"),
  34536. weight: math.unit(180000, "kg"),
  34537. preyCapacity: math.unit(50000, "people"),
  34538. name: "Side",
  34539. image: {
  34540. source: "./media/characters/saphinara/meowberus-side.svg",
  34541. extra: 1400/711,
  34542. bottom: 126/1526
  34543. },
  34544. form: "meowberus",
  34545. extraAttributes: {
  34546. "pawArea": {
  34547. name: "Paw Size",
  34548. power: 2,
  34549. type: "area",
  34550. base: math.unit(35, "m^2")
  34551. }
  34552. }
  34553. },
  34554. },
  34555. [
  34556. {
  34557. name: "Normal",
  34558. height: math.unit(15 + 7/12, "feet"),
  34559. default: true,
  34560. form: "normal"
  34561. },
  34562. {
  34563. name: "Angry",
  34564. height: math.unit(30 + 6/12, "feet"),
  34565. form: "normal"
  34566. },
  34567. {
  34568. name: "Enraged",
  34569. height: math.unit(102 + 1/12, "feet"),
  34570. form: "normal"
  34571. },
  34572. {
  34573. name: "True",
  34574. height: math.unit(200, "feet"),
  34575. default: true,
  34576. form: "true-form"
  34577. },
  34578. {
  34579. name: "Normal",
  34580. height: math.unit(75, "feet"),
  34581. default: true,
  34582. form: "meowberus"
  34583. },
  34584. ],
  34585. {
  34586. "normal": {
  34587. name: "Normal",
  34588. default: true
  34589. },
  34590. "true-form": {
  34591. name: "True Form"
  34592. },
  34593. "meowberus": {
  34594. name: "Meowberus",
  34595. },
  34596. }
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(6 + 8/12, "feet"),
  34603. weight: math.unit(300, "lb"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/jrain/front.svg",
  34607. extra: 3039/2865,
  34608. bottom: 399/3438
  34609. }
  34610. },
  34611. back: {
  34612. height: math.unit(6 + 8/12, "feet"),
  34613. weight: math.unit(300, "lb"),
  34614. name: "Back",
  34615. image: {
  34616. source: "./media/characters/jrain/back.svg",
  34617. extra: 3089/2938,
  34618. bottom: 172/3261
  34619. }
  34620. },
  34621. head: {
  34622. height: math.unit(2.14, "feet"),
  34623. name: "Head",
  34624. image: {
  34625. source: "./media/characters/jrain/head.svg"
  34626. }
  34627. },
  34628. maw: {
  34629. height: math.unit(1.77, "feet"),
  34630. name: "Maw",
  34631. image: {
  34632. source: "./media/characters/jrain/maw.svg"
  34633. }
  34634. },
  34635. leftHand: {
  34636. height: math.unit(1.1, "feet"),
  34637. name: "Left Hand",
  34638. image: {
  34639. source: "./media/characters/jrain/left-hand.svg"
  34640. }
  34641. },
  34642. rightHand: {
  34643. height: math.unit(1.1, "feet"),
  34644. name: "Right Hand",
  34645. image: {
  34646. source: "./media/characters/jrain/right-hand.svg"
  34647. }
  34648. },
  34649. eye: {
  34650. height: math.unit(0.35, "feet"),
  34651. name: "Eye",
  34652. image: {
  34653. source: "./media/characters/jrain/eye.svg"
  34654. }
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Normal",
  34660. height: math.unit(6 + 8/12, "feet"),
  34661. default: true
  34662. },
  34663. {
  34664. name: "Casually Large",
  34665. height: math.unit(25, "feet")
  34666. },
  34667. {
  34668. name: "Giant",
  34669. height: math.unit(100, "feet")
  34670. },
  34671. {
  34672. name: "Kaiju",
  34673. height: math.unit(300, "feet")
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34679. {
  34680. dragon: {
  34681. height: math.unit(5, "meters"),
  34682. name: "Dragon",
  34683. image: {
  34684. source: "./media/characters/sabrina/dragon.svg",
  34685. extra: 3670 / 2365,
  34686. bottom: 333 / 4003
  34687. }
  34688. },
  34689. gryphon: {
  34690. height: math.unit(3, "meters"),
  34691. name: "Gryphon",
  34692. image: {
  34693. source: "./media/characters/sabrina/gryphon.svg",
  34694. extra: 1576 / 945,
  34695. bottom: 71 / 1647
  34696. }
  34697. },
  34698. snake: {
  34699. height: math.unit(12, "meters"),
  34700. name: "Snake",
  34701. image: {
  34702. source: "./media/characters/sabrina/snake.svg",
  34703. extra: 1758 / 1320,
  34704. bottom: 186 / 1944
  34705. }
  34706. },
  34707. collar: {
  34708. height: math.unit(1.86, "meters"),
  34709. name: "Collar",
  34710. image: {
  34711. source: "./media/characters/sabrina/collar.svg"
  34712. }
  34713. },
  34714. eye: {
  34715. height: math.unit(0.53, "meters"),
  34716. name: "Eye",
  34717. image: {
  34718. source: "./media/characters/sabrina/eye.svg"
  34719. }
  34720. },
  34721. foot: {
  34722. height: math.unit(1.86, "meters"),
  34723. name: "Foot",
  34724. image: {
  34725. source: "./media/characters/sabrina/foot.svg"
  34726. }
  34727. },
  34728. hand: {
  34729. height: math.unit(1.32, "meters"),
  34730. name: "Hand",
  34731. image: {
  34732. source: "./media/characters/sabrina/hand.svg"
  34733. }
  34734. },
  34735. head: {
  34736. height: math.unit(2.44, "meters"),
  34737. name: "Head",
  34738. image: {
  34739. source: "./media/characters/sabrina/head.svg"
  34740. }
  34741. },
  34742. headAngry: {
  34743. height: math.unit(2.44, "meters"),
  34744. name: "Head (Angry))",
  34745. image: {
  34746. source: "./media/characters/sabrina/head-angry.svg"
  34747. }
  34748. },
  34749. maw: {
  34750. height: math.unit(1.65, "meters"),
  34751. name: "Maw",
  34752. image: {
  34753. source: "./media/characters/sabrina/maw.svg"
  34754. }
  34755. },
  34756. spikes: {
  34757. height: math.unit(1.69, "meters"),
  34758. name: "Spikes",
  34759. image: {
  34760. source: "./media/characters/sabrina/spikes.svg"
  34761. }
  34762. },
  34763. stomach: {
  34764. height: math.unit(1.15, "meters"),
  34765. name: "Stomach",
  34766. image: {
  34767. source: "./media/characters/sabrina/stomach.svg"
  34768. }
  34769. },
  34770. tongue: {
  34771. height: math.unit(1.27, "meters"),
  34772. name: "Tongue",
  34773. image: {
  34774. source: "./media/characters/sabrina/tongue.svg"
  34775. }
  34776. },
  34777. wingDorsal: {
  34778. height: math.unit(4.85, "meters"),
  34779. name: "Wing (Dorsal)",
  34780. image: {
  34781. source: "./media/characters/sabrina/wing-dorsal.svg"
  34782. }
  34783. },
  34784. wingVentral: {
  34785. height: math.unit(4.85, "meters"),
  34786. name: "Wing (Ventral)",
  34787. image: {
  34788. source: "./media/characters/sabrina/wing-ventral.svg"
  34789. }
  34790. },
  34791. },
  34792. [
  34793. {
  34794. name: "Normal",
  34795. height: math.unit(5, "meters"),
  34796. default: true
  34797. },
  34798. ]
  34799. ))
  34800. characterMakers.push(() => makeCharacter(
  34801. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34802. {
  34803. frontMaid: {
  34804. height: math.unit(5 + 5/12, "feet"),
  34805. weight: math.unit(130, "lb"),
  34806. name: "Front (Maid)",
  34807. image: {
  34808. source: "./media/characters/midnight-tales/front-maid.svg",
  34809. extra: 489/454,
  34810. bottom: 61/550
  34811. }
  34812. },
  34813. frontFormal: {
  34814. height: math.unit(5 + 5/12, "feet"),
  34815. weight: math.unit(130, "lb"),
  34816. name: "Front (Formal)",
  34817. image: {
  34818. source: "./media/characters/midnight-tales/front-formal.svg",
  34819. extra: 489/454,
  34820. bottom: 61/550
  34821. }
  34822. },
  34823. back: {
  34824. height: math.unit(5 + 5/12, "feet"),
  34825. weight: math.unit(130, "lb"),
  34826. name: "Back",
  34827. image: {
  34828. source: "./media/characters/midnight-tales/back.svg",
  34829. extra: 498/456,
  34830. bottom: 33/531
  34831. }
  34832. },
  34833. frontBeast: {
  34834. height: math.unit(40, "feet"),
  34835. weight: math.unit(64000, "lb"),
  34836. name: "Front (Beast)",
  34837. image: {
  34838. source: "./media/characters/midnight-tales/front-beast.svg",
  34839. extra: 927/860,
  34840. bottom: 53/980
  34841. }
  34842. },
  34843. backBeast: {
  34844. height: math.unit(40, "feet"),
  34845. weight: math.unit(64000, "lb"),
  34846. name: "Back (Beast)",
  34847. image: {
  34848. source: "./media/characters/midnight-tales/back-beast.svg",
  34849. extra: 929/855,
  34850. bottom: 16/945
  34851. }
  34852. },
  34853. footBeast: {
  34854. height: math.unit(6.7, "feet"),
  34855. name: "Foot (Beast)",
  34856. image: {
  34857. source: "./media/characters/midnight-tales/foot-beast.svg"
  34858. }
  34859. },
  34860. headBeast: {
  34861. height: math.unit(8, "feet"),
  34862. name: "Head (Beast)",
  34863. image: {
  34864. source: "./media/characters/midnight-tales/head-beast.svg"
  34865. }
  34866. },
  34867. },
  34868. [
  34869. {
  34870. name: "Normal",
  34871. height: math.unit(5 + 5 / 12, "feet"),
  34872. default: true
  34873. },
  34874. {
  34875. name: "Macro",
  34876. height: math.unit(25, "feet")
  34877. },
  34878. ]
  34879. ))
  34880. characterMakers.push(() => makeCharacter(
  34881. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34882. {
  34883. front: {
  34884. height: math.unit(5 + 10/12, "feet"),
  34885. name: "Front",
  34886. image: {
  34887. source: "./media/characters/argon/front.svg",
  34888. extra: 2009/1935,
  34889. bottom: 118/2127
  34890. }
  34891. },
  34892. back: {
  34893. height: math.unit(5 + 10/12, "feet"),
  34894. name: "Back",
  34895. image: {
  34896. source: "./media/characters/argon/back.svg",
  34897. extra: 2047/1992,
  34898. bottom: 20/2067
  34899. }
  34900. },
  34901. frontDressed: {
  34902. height: math.unit(5 + 10/12, "feet"),
  34903. name: "Front (Dressed)",
  34904. image: {
  34905. source: "./media/characters/argon/front-dressed.svg",
  34906. extra: 2009/1935,
  34907. bottom: 118/2127
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Normal",
  34914. height: math.unit(5 + 10/12, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(8 + 6/12, "feet"),
  34924. weight: math.unit(1150, "lb"),
  34925. name: "Front",
  34926. image: {
  34927. source: "./media/characters/kichi/front.svg",
  34928. extra: 1267/1164,
  34929. bottom: 61/1328
  34930. }
  34931. },
  34932. back: {
  34933. height: math.unit(8 + 6/12, "feet"),
  34934. weight: math.unit(1150, "lb"),
  34935. name: "Back",
  34936. image: {
  34937. source: "./media/characters/kichi/back.svg",
  34938. extra: 1273/1166,
  34939. bottom: 33/1306
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(8 + 6/12, "feet"),
  34947. default: true
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34953. {
  34954. front: {
  34955. height: math.unit(6, "feet"),
  34956. weight: math.unit(210, "lb"),
  34957. name: "Front",
  34958. image: {
  34959. source: "./media/characters/manetel-greyscale/front.svg",
  34960. extra: 350/312,
  34961. bottom: 8/358
  34962. }
  34963. },
  34964. },
  34965. [
  34966. {
  34967. name: "Micro",
  34968. height: math.unit(2, "inches")
  34969. },
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(6, "feet"),
  34973. default: true
  34974. },
  34975. {
  34976. name: "Minimacro",
  34977. height: math.unit(17, "feet")
  34978. },
  34979. {
  34980. name: "Macro",
  34981. height: math.unit(117, "feet")
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34987. {
  34988. side: {
  34989. height: math.unit(5 + 1/12, "feet"),
  34990. weight: math.unit(418, "lb"),
  34991. name: "Side",
  34992. image: {
  34993. source: "./media/characters/softpurr/side.svg",
  34994. extra: 1993/1945,
  34995. bottom: 134/2127
  34996. }
  34997. },
  34998. front: {
  34999. height: math.unit(5 + 1/12, "feet"),
  35000. weight: math.unit(418, "lb"),
  35001. name: "Front",
  35002. image: {
  35003. source: "./media/characters/softpurr/front.svg",
  35004. extra: 1950/1856,
  35005. bottom: 174/2124
  35006. }
  35007. },
  35008. paw: {
  35009. height: math.unit(1, "feet"),
  35010. name: "Paw",
  35011. image: {
  35012. source: "./media/characters/softpurr/paw.svg"
  35013. }
  35014. },
  35015. },
  35016. [
  35017. {
  35018. name: "Normal",
  35019. height: math.unit(5 + 1/12, "feet"),
  35020. default: true
  35021. },
  35022. ]
  35023. ))
  35024. characterMakers.push(() => makeCharacter(
  35025. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35026. {
  35027. front: {
  35028. height: math.unit(260, "meters"),
  35029. name: "Front",
  35030. image: {
  35031. source: "./media/characters/anahita/front.svg",
  35032. extra: 665/635,
  35033. bottom: 89/754
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Macro",
  35040. height: math.unit(260, "meters"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(4 + 10/12, "feet"),
  35050. weight: math.unit(160, "lb"),
  35051. name: "Front",
  35052. image: {
  35053. source: "./media/characters/chip-mouse/front.svg",
  35054. extra: 3528/3408,
  35055. bottom: 0/3528
  35056. }
  35057. },
  35058. frontNsfw: {
  35059. height: math.unit(4 + 10/12, "feet"),
  35060. weight: math.unit(160, "lb"),
  35061. name: "Front (NSFW)",
  35062. image: {
  35063. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35064. extra: 3528/3408,
  35065. bottom: 0/3528
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(4 + 10/12, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35079. {
  35080. side: {
  35081. height: math.unit(10, "feet"),
  35082. weight: math.unit(14000, "lb"),
  35083. name: "Side",
  35084. image: {
  35085. source: "./media/characters/kremm/side.svg",
  35086. extra: 1390/1053,
  35087. bottom: 90/1480
  35088. }
  35089. },
  35090. gut: {
  35091. height: math.unit(5.8, "feet"),
  35092. name: "Gut",
  35093. image: {
  35094. source: "./media/characters/kremm/gut.svg"
  35095. }
  35096. },
  35097. ass: {
  35098. height: math.unit(6.1, "feet"),
  35099. name: "Ass",
  35100. image: {
  35101. source: "./media/characters/kremm/ass.svg"
  35102. }
  35103. },
  35104. jaws: {
  35105. height: math.unit(2.2, "feet"),
  35106. name: "Jaws",
  35107. image: {
  35108. source: "./media/characters/kremm/jaws.svg"
  35109. }
  35110. },
  35111. dick: {
  35112. height: math.unit(4.26, "feet"),
  35113. name: "Dick",
  35114. image: {
  35115. source: "./media/characters/kremm/dick.svg"
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(10, "feet"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(30, "stories"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/kai/front.svg",
  35135. extra: 1892/1718,
  35136. bottom: 162/2054
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Macro",
  35143. height: math.unit(30, "stories"),
  35144. default: true
  35145. },
  35146. ]
  35147. ))
  35148. characterMakers.push(() => makeCharacter(
  35149. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35150. {
  35151. front: {
  35152. height: math.unit(6 + 4/12, "feet"),
  35153. weight: math.unit(145, "lb"),
  35154. name: "Front",
  35155. image: {
  35156. source: "./media/characters/sykes/front.svg",
  35157. extra: 1321 / 1187,
  35158. bottom: 66 / 1387
  35159. }
  35160. },
  35161. back: {
  35162. height: math.unit(6 + 4/12, "feet"),
  35163. weight: math.unit(145, "lb"),
  35164. name: "Back",
  35165. image: {
  35166. source: "./media/characters/sykes/back.svg",
  35167. extra: 1326/1181,
  35168. bottom: 31/1357
  35169. }
  35170. },
  35171. traditionalOutfit: {
  35172. height: math.unit(6 + 4/12, "feet"),
  35173. weight: math.unit(145, "lb"),
  35174. name: "Traditional Outfit",
  35175. image: {
  35176. source: "./media/characters/sykes/traditional-outfit.svg",
  35177. extra: 1321 / 1187,
  35178. bottom: 66 / 1387
  35179. }
  35180. },
  35181. adventureOutfit: {
  35182. height: math.unit(6 + 4/12, "feet"),
  35183. weight: math.unit(145, "lb"),
  35184. name: "Adventure Outfit",
  35185. image: {
  35186. source: "./media/characters/sykes/adventure-outfit.svg",
  35187. extra: 1321 / 1187,
  35188. bottom: 66 / 1387
  35189. }
  35190. },
  35191. handLeft: {
  35192. height: math.unit(0.9, "feet"),
  35193. name: "Hand (Left)",
  35194. image: {
  35195. source: "./media/characters/sykes/hand-left.svg"
  35196. }
  35197. },
  35198. handRight: {
  35199. height: math.unit(0.839, "feet"),
  35200. name: "Hand (Right)",
  35201. image: {
  35202. source: "./media/characters/sykes/hand-right.svg"
  35203. }
  35204. },
  35205. leftFoot: {
  35206. height: math.unit(1.2, "feet"),
  35207. name: "Foot (Left)",
  35208. image: {
  35209. source: "./media/characters/sykes/foot-left.svg"
  35210. }
  35211. },
  35212. rightFoot: {
  35213. height: math.unit(1.2, "feet"),
  35214. name: "Foot (Right)",
  35215. image: {
  35216. source: "./media/characters/sykes/foot-right.svg"
  35217. }
  35218. },
  35219. maw: {
  35220. height: math.unit(1.93, "feet"),
  35221. name: "Maw",
  35222. image: {
  35223. source: "./media/characters/sykes/maw.svg"
  35224. }
  35225. },
  35226. teeth: {
  35227. height: math.unit(0.51, "feet"),
  35228. name: "Teeth",
  35229. image: {
  35230. source: "./media/characters/sykes/teeth.svg"
  35231. }
  35232. },
  35233. tongue: {
  35234. height: math.unit(2.13, "feet"),
  35235. name: "Tongue",
  35236. image: {
  35237. source: "./media/characters/sykes/tongue.svg"
  35238. }
  35239. },
  35240. uvula: {
  35241. height: math.unit(0.16, "feet"),
  35242. name: "Uvula",
  35243. image: {
  35244. source: "./media/characters/sykes/uvula.svg"
  35245. }
  35246. },
  35247. collar: {
  35248. height: math.unit(0.287, "feet"),
  35249. name: "Collar",
  35250. image: {
  35251. source: "./media/characters/sykes/collar.svg"
  35252. }
  35253. },
  35254. tail: {
  35255. height: math.unit(3.8, "feet"),
  35256. name: "Tail",
  35257. image: {
  35258. source: "./media/characters/sykes/tail.svg"
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Shrunken",
  35265. height: math.unit(5, "inches")
  35266. },
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(6 + 4 / 12, "feet"),
  35270. default: true
  35271. },
  35272. {
  35273. name: "Big",
  35274. height: math.unit(15, "feet")
  35275. },
  35276. ]
  35277. ))
  35278. characterMakers.push(() => makeCharacter(
  35279. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35280. {
  35281. front: {
  35282. height: math.unit(5 + 8/12, "feet"),
  35283. weight: math.unit(190, "lb"),
  35284. name: "Front",
  35285. image: {
  35286. source: "./media/characters/oven-otter/front.svg",
  35287. extra: 1809/1740,
  35288. bottom: 181/1990
  35289. }
  35290. },
  35291. back: {
  35292. height: math.unit(5 + 8/12, "feet"),
  35293. weight: math.unit(190, "lb"),
  35294. name: "Back",
  35295. image: {
  35296. source: "./media/characters/oven-otter/back.svg",
  35297. extra: 1709/1635,
  35298. bottom: 118/1827
  35299. }
  35300. },
  35301. hand: {
  35302. height: math.unit(1.07, "feet"),
  35303. name: "Hand",
  35304. image: {
  35305. source: "./media/characters/oven-otter/hand.svg"
  35306. }
  35307. },
  35308. beans: {
  35309. height: math.unit(1.74, "feet"),
  35310. name: "Beans",
  35311. image: {
  35312. source: "./media/characters/oven-otter/beans.svg"
  35313. }
  35314. },
  35315. },
  35316. [
  35317. {
  35318. name: "Micro",
  35319. height: math.unit(0.5, "inches")
  35320. },
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(5 + 8/12, "feet"),
  35324. default: true
  35325. },
  35326. {
  35327. name: "Macro",
  35328. height: math.unit(250, "feet")
  35329. },
  35330. {
  35331. name: "Really High",
  35332. height: math.unit(420, "feet")
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(5, "meters"),
  35341. weight: math.unit(292000000000000, "kg"),
  35342. name: "Front",
  35343. image: {
  35344. source: "./media/characters/devourer/front.svg",
  35345. extra: 1800/1733,
  35346. bottom: 211/2011
  35347. }
  35348. },
  35349. maw: {
  35350. height: math.unit(1.1, "meter"),
  35351. name: "Maw",
  35352. image: {
  35353. source: "./media/characters/devourer/maw.svg"
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Small",
  35360. height: math.unit(3, "meters")
  35361. },
  35362. {
  35363. name: "Large",
  35364. height: math.unit(5, "meters"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35371. {
  35372. front: {
  35373. height: math.unit(6, "feet"),
  35374. weight: math.unit(400, "lb"),
  35375. name: "Front",
  35376. image: {
  35377. source: "./media/characters/ellarby/front.svg",
  35378. extra: 1909/1763,
  35379. bottom: 80/1989
  35380. }
  35381. },
  35382. back: {
  35383. height: math.unit(6, "feet"),
  35384. weight: math.unit(400, "lb"),
  35385. name: "Back",
  35386. image: {
  35387. source: "./media/characters/ellarby/back.svg",
  35388. extra: 1914/1784,
  35389. bottom: 172/2086
  35390. }
  35391. },
  35392. },
  35393. [
  35394. {
  35395. name: "Mischief",
  35396. height: math.unit(18, "inches")
  35397. },
  35398. {
  35399. name: "Trouble",
  35400. height: math.unit(12, "feet")
  35401. },
  35402. {
  35403. name: "Havoc",
  35404. height: math.unit(200, "feet"),
  35405. default: true
  35406. },
  35407. {
  35408. name: "Pandemonium",
  35409. height: math.unit(1, "mile")
  35410. },
  35411. {
  35412. name: "Catastrophe",
  35413. height: math.unit(100, "miles")
  35414. },
  35415. ]
  35416. ))
  35417. characterMakers.push(() => makeCharacter(
  35418. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35419. {
  35420. front: {
  35421. height: math.unit(4.7, "meters"),
  35422. weight: math.unit(6500, "kg"),
  35423. name: "Front",
  35424. image: {
  35425. source: "./media/characters/vex/front.svg",
  35426. extra: 1288/1140,
  35427. bottom: 100/1388
  35428. }
  35429. },
  35430. },
  35431. [
  35432. {
  35433. name: "Normal",
  35434. height: math.unit(4.7, "meters"),
  35435. default: true
  35436. },
  35437. ]
  35438. ))
  35439. characterMakers.push(() => makeCharacter(
  35440. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35441. {
  35442. normal: {
  35443. height: math.unit(6, "feet"),
  35444. weight: math.unit(350, "lb"),
  35445. name: "Normal",
  35446. image: {
  35447. source: "./media/characters/teshy/normal.svg",
  35448. extra: 1795/1735,
  35449. bottom: 16/1811
  35450. }
  35451. },
  35452. monsterFront: {
  35453. height: math.unit(12, "feet"),
  35454. weight: math.unit(4700, "lb"),
  35455. name: "Monster (Front)",
  35456. image: {
  35457. source: "./media/characters/teshy/monster-front.svg",
  35458. extra: 2042/2034,
  35459. bottom: 128/2170
  35460. }
  35461. },
  35462. monsterSide: {
  35463. height: math.unit(12, "feet"),
  35464. weight: math.unit(4700, "lb"),
  35465. name: "Monster (Side)",
  35466. image: {
  35467. source: "./media/characters/teshy/monster-side.svg",
  35468. extra: 2067/2056,
  35469. bottom: 70/2137
  35470. }
  35471. },
  35472. monsterBack: {
  35473. height: math.unit(12, "feet"),
  35474. weight: math.unit(4700, "lb"),
  35475. name: "Monster (Back)",
  35476. image: {
  35477. source: "./media/characters/teshy/monster-back.svg",
  35478. extra: 1921/1914,
  35479. bottom: 171/2092
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(6, "feet"),
  35487. default: true
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(6, "feet"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/ramey/front.svg",
  35499. extra: 790/787,
  35500. bottom: 27/817
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Normal",
  35507. height: math.unit(6, "feet"),
  35508. default: true
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(5 + 5/12, "feet"),
  35517. weight: math.unit(120, "lb"),
  35518. name: "Front",
  35519. image: {
  35520. source: "./media/characters/phirae/front.svg",
  35521. extra: 2491/2436,
  35522. bottom: 38/2529
  35523. }
  35524. },
  35525. },
  35526. [
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(5 + 5/12, "feet"),
  35530. default: true
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35536. {
  35537. front: {
  35538. height: math.unit(5 + 3/12, "feet"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/stagglas/front.svg",
  35542. extra: 962/882,
  35543. bottom: 53/1015
  35544. }
  35545. },
  35546. feral: {
  35547. height: math.unit(335, "cm"),
  35548. name: "Feral",
  35549. image: {
  35550. source: "./media/characters/stagglas/feral.svg",
  35551. extra: 1732/1090,
  35552. bottom: 48/1780
  35553. }
  35554. },
  35555. },
  35556. [
  35557. {
  35558. name: "Normal",
  35559. height: math.unit(5 + 3/12, "feet"),
  35560. default: true
  35561. },
  35562. ]
  35563. ))
  35564. characterMakers.push(() => makeCharacter(
  35565. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35566. {
  35567. front: {
  35568. height: math.unit(5 + 4/12, "feet"),
  35569. weight: math.unit(145, "lb"),
  35570. name: "Front",
  35571. image: {
  35572. source: "./media/characters/starra/front.svg",
  35573. extra: 1790/1691,
  35574. bottom: 91/1881
  35575. }
  35576. },
  35577. },
  35578. [
  35579. {
  35580. name: "Normal",
  35581. height: math.unit(5 + 4/12, "feet"),
  35582. default: true
  35583. },
  35584. ]
  35585. ))
  35586. characterMakers.push(() => makeCharacter(
  35587. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35588. {
  35589. front: {
  35590. height: math.unit(2.2, "meters"),
  35591. name: "Front",
  35592. image: {
  35593. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35594. extra: 1194/1005,
  35595. bottom: 25/1219
  35596. }
  35597. },
  35598. },
  35599. [
  35600. {
  35601. name: "Normal",
  35602. height: math.unit(2.2, "meters"),
  35603. default: true
  35604. },
  35605. ]
  35606. ))
  35607. characterMakers.push(() => makeCharacter(
  35608. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35609. {
  35610. side: {
  35611. height: math.unit(8 + 2/12, "feet"),
  35612. weight: math.unit(1240, "lb"),
  35613. name: "Side",
  35614. image: {
  35615. source: "./media/characters/mika-valentine/side.svg",
  35616. extra: 2670/2501,
  35617. bottom: 250/2920
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Normal",
  35624. height: math.unit(8 + 2/12, "feet"),
  35625. default: true
  35626. },
  35627. ]
  35628. ))
  35629. characterMakers.push(() => makeCharacter(
  35630. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35631. {
  35632. front: {
  35633. height: math.unit(7 + 2/12, "feet"),
  35634. name: "Front",
  35635. image: {
  35636. source: "./media/characters/xoltol/front.svg",
  35637. extra: 2212/2124,
  35638. bottom: 84/2296
  35639. }
  35640. },
  35641. side: {
  35642. height: math.unit(7 + 2/12, "feet"),
  35643. name: "Side",
  35644. image: {
  35645. source: "./media/characters/xoltol/side.svg",
  35646. extra: 2273/2197,
  35647. bottom: 26/2299
  35648. }
  35649. },
  35650. hand: {
  35651. height: math.unit(2.5, "feet"),
  35652. name: "Hand",
  35653. image: {
  35654. source: "./media/characters/xoltol/hand.svg"
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Small-ish",
  35661. height: math.unit(5 + 11/12, "feet")
  35662. },
  35663. {
  35664. name: "Normal",
  35665. height: math.unit(7 + 2/12, "feet")
  35666. },
  35667. {
  35668. name: "\"Macro\"",
  35669. height: math.unit(14 + 9/12, "feet"),
  35670. default: true
  35671. },
  35672. {
  35673. name: "Alternate Height",
  35674. height: math.unit(20, "feet")
  35675. },
  35676. {
  35677. name: "Actually Macro",
  35678. height: math.unit(100, "feet")
  35679. },
  35680. ]
  35681. ))
  35682. characterMakers.push(() => makeCharacter(
  35683. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35684. {
  35685. front: {
  35686. height: math.unit(5 + 2/12, "feet"),
  35687. name: "Front",
  35688. image: {
  35689. source: "./media/characters/kotetsu-redwood/front.svg",
  35690. extra: 1053/942,
  35691. bottom: 60/1113
  35692. }
  35693. },
  35694. },
  35695. [
  35696. {
  35697. name: "Normal",
  35698. height: math.unit(5 + 2/12, "feet"),
  35699. default: true
  35700. },
  35701. ]
  35702. ))
  35703. characterMakers.push(() => makeCharacter(
  35704. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35705. {
  35706. front: {
  35707. height: math.unit(2.4, "meters"),
  35708. weight: math.unit(125, "kg"),
  35709. name: "Front",
  35710. image: {
  35711. source: "./media/characters/lilith/front.svg",
  35712. extra: 1590/1513,
  35713. bottom: 203/1793
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Humanoid",
  35720. height: math.unit(2.4, "meters")
  35721. },
  35722. {
  35723. name: "Normal",
  35724. height: math.unit(6, "meters"),
  35725. default: true
  35726. },
  35727. {
  35728. name: "Largest",
  35729. height: math.unit(55, "meters")
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35735. {
  35736. front: {
  35737. height: math.unit(8 + 4/12, "feet"),
  35738. weight: math.unit(535, "lb"),
  35739. name: "Front",
  35740. image: {
  35741. source: "./media/characters/beh'kah-bolger/front.svg",
  35742. extra: 1660/1603,
  35743. bottom: 37/1697
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(8 + 4/12, "feet"),
  35751. default: true
  35752. },
  35753. {
  35754. name: "Kaiju",
  35755. height: math.unit(250, "feet")
  35756. },
  35757. {
  35758. name: "Still Growing",
  35759. height: math.unit(10, "miles")
  35760. },
  35761. {
  35762. name: "Continental",
  35763. height: math.unit(5000, "miles")
  35764. },
  35765. {
  35766. name: "Final Form",
  35767. height: math.unit(2500000, "miles")
  35768. },
  35769. ]
  35770. ))
  35771. characterMakers.push(() => makeCharacter(
  35772. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35773. {
  35774. front: {
  35775. height: math.unit(7 + 2/12, "feet"),
  35776. weight: math.unit(230, "kg"),
  35777. name: "Front",
  35778. image: {
  35779. source: "./media/characters/tatyana-milewska/front.svg",
  35780. extra: 1199/1150,
  35781. bottom: 86/1285
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Normal",
  35788. height: math.unit(7 + 2/12, "feet"),
  35789. default: true
  35790. },
  35791. {
  35792. name: "Big",
  35793. height: math.unit(12, "feet")
  35794. },
  35795. {
  35796. name: "Minimacro",
  35797. height: math.unit(20, "feet")
  35798. },
  35799. {
  35800. name: "Macro",
  35801. height: math.unit(120, "feet")
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35807. {
  35808. front: {
  35809. height: math.unit(7 + 8/12, "feet"),
  35810. weight: math.unit(152, "kg"),
  35811. name: "Front",
  35812. image: {
  35813. source: "./media/characters/helen-arri/front.svg",
  35814. extra: 440/423,
  35815. bottom: 14/454
  35816. }
  35817. },
  35818. back: {
  35819. height: math.unit(7 + 8/12, "feet"),
  35820. weight: math.unit(152, "kg"),
  35821. name: "Back",
  35822. image: {
  35823. source: "./media/characters/helen-arri/back.svg",
  35824. extra: 443/426,
  35825. bottom: 8/451
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(7 + 8/12, "feet"),
  35833. default: true
  35834. },
  35835. {
  35836. name: "Big",
  35837. height: math.unit(14, "feet")
  35838. },
  35839. {
  35840. name: "Minimacro",
  35841. height: math.unit(24, "feet")
  35842. },
  35843. {
  35844. name: "Macro",
  35845. height: math.unit(140, "feet")
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35851. {
  35852. front: {
  35853. height: math.unit(6, "meters"),
  35854. name: "Front",
  35855. image: {
  35856. source: "./media/characters/ehanu-rehu/front.svg",
  35857. extra: 1800/1800,
  35858. bottom: 59/1859
  35859. }
  35860. },
  35861. },
  35862. [
  35863. {
  35864. name: "Normal",
  35865. height: math.unit(6, "meters"),
  35866. default: true
  35867. },
  35868. ]
  35869. ))
  35870. characterMakers.push(() => makeCharacter(
  35871. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35872. {
  35873. front: {
  35874. height: math.unit(7 + 3/12, "feet"),
  35875. name: "Front",
  35876. image: {
  35877. source: "./media/characters/renholder/front.svg",
  35878. extra: 3096/2960,
  35879. bottom: 250/3346
  35880. }
  35881. },
  35882. },
  35883. [
  35884. {
  35885. name: "Normal Bat",
  35886. height: math.unit(7 + 3/12, "feet"),
  35887. default: true
  35888. },
  35889. {
  35890. name: "Slightly Tall Bat",
  35891. height: math.unit(100, "feet")
  35892. },
  35893. {
  35894. name: "Big Bat",
  35895. height: math.unit(1000, "feet")
  35896. },
  35897. {
  35898. name: "City-Sized Bat",
  35899. height: math.unit(200000, "feet")
  35900. },
  35901. {
  35902. name: "Bigger Bat",
  35903. height: math.unit(10000, "miles")
  35904. },
  35905. {
  35906. name: "Solar Sized Bat",
  35907. height: math.unit(100, "AU")
  35908. },
  35909. {
  35910. name: "Galactic Bat",
  35911. height: math.unit(200000, "lightyears")
  35912. },
  35913. {
  35914. name: "Universally Known Bat",
  35915. height: math.unit(1, "universe")
  35916. },
  35917. ]
  35918. ))
  35919. characterMakers.push(() => makeCharacter(
  35920. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35921. {
  35922. front: {
  35923. height: math.unit(6 + 11/12, "feet"),
  35924. weight: math.unit(250, "lb"),
  35925. name: "Front",
  35926. image: {
  35927. source: "./media/characters/cookiecat/front.svg",
  35928. extra: 893/827,
  35929. bottom: 14/907
  35930. }
  35931. },
  35932. },
  35933. [
  35934. {
  35935. name: "Micro",
  35936. height: math.unit(3, "inches")
  35937. },
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(6 + 11/12, "feet"),
  35941. default: true
  35942. },
  35943. {
  35944. name: "Macro",
  35945. height: math.unit(100, "feet")
  35946. },
  35947. {
  35948. name: "Macro+",
  35949. height: math.unit(404, "feet")
  35950. },
  35951. {
  35952. name: "Megamacro",
  35953. height: math.unit(165, "miles")
  35954. },
  35955. {
  35956. name: "Planetary",
  35957. height: math.unit(4600, "miles")
  35958. },
  35959. ]
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35963. {
  35964. front: {
  35965. height: math.unit(10 + 3/12, "feet"),
  35966. weight: math.unit(1500, "lb"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/tux-kusanagi/front.svg",
  35970. extra: 944/840,
  35971. bottom: 39/983
  35972. }
  35973. },
  35974. back: {
  35975. height: math.unit(10 + 3/12, "feet"),
  35976. weight: math.unit(1500, "lb"),
  35977. name: "Back",
  35978. image: {
  35979. source: "./media/characters/tux-kusanagi/back.svg",
  35980. extra: 941/842,
  35981. bottom: 28/969
  35982. }
  35983. },
  35984. rump: {
  35985. height: math.unit(5.25, "feet"),
  35986. name: "Rump",
  35987. image: {
  35988. source: "./media/characters/tux-kusanagi/rump.svg"
  35989. }
  35990. },
  35991. beak: {
  35992. height: math.unit(1.54, "feet"),
  35993. name: "Beak",
  35994. image: {
  35995. source: "./media/characters/tux-kusanagi/beak.svg"
  35996. }
  35997. },
  35998. },
  35999. [
  36000. {
  36001. name: "Normal",
  36002. height: math.unit(10 + 3/12, "feet"),
  36003. default: true
  36004. },
  36005. ]
  36006. ))
  36007. characterMakers.push(() => makeCharacter(
  36008. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36009. {
  36010. front: {
  36011. height: math.unit(58, "feet"),
  36012. weight: math.unit(200, "tons"),
  36013. name: "Front",
  36014. image: {
  36015. source: "./media/characters/uzarmazari/front.svg",
  36016. extra: 1575/1455,
  36017. bottom: 152/1727
  36018. }
  36019. },
  36020. back: {
  36021. height: math.unit(58, "feet"),
  36022. weight: math.unit(200, "tons"),
  36023. name: "Back",
  36024. image: {
  36025. source: "./media/characters/uzarmazari/back.svg",
  36026. extra: 1585/1510,
  36027. bottom: 157/1742
  36028. }
  36029. },
  36030. head: {
  36031. height: math.unit(26, "feet"),
  36032. name: "Head",
  36033. image: {
  36034. source: "./media/characters/uzarmazari/head.svg"
  36035. }
  36036. },
  36037. },
  36038. [
  36039. {
  36040. name: "Normal",
  36041. height: math.unit(58, "feet"),
  36042. default: true
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36048. {
  36049. side: {
  36050. height: math.unit(15, "feet"),
  36051. name: "Side",
  36052. image: {
  36053. source: "./media/characters/akitu/side.svg",
  36054. extra: 1421/1321,
  36055. bottom: 157/1578
  36056. }
  36057. },
  36058. front: {
  36059. height: math.unit(15, "feet"),
  36060. name: "Front",
  36061. image: {
  36062. source: "./media/characters/akitu/front.svg",
  36063. extra: 1435/1326,
  36064. bottom: 232/1667
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(15, "feet"),
  36072. default: true
  36073. },
  36074. ]
  36075. ))
  36076. characterMakers.push(() => makeCharacter(
  36077. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36078. {
  36079. front: {
  36080. height: math.unit(10 + 8/12, "feet"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/azalie-croixland/front.svg",
  36084. extra: 1972/1856,
  36085. bottom: 31/2003
  36086. }
  36087. },
  36088. },
  36089. [
  36090. {
  36091. name: "Original Height",
  36092. height: math.unit(5 + 4/12, "feet")
  36093. },
  36094. {
  36095. name: "Normal Height",
  36096. height: math.unit(10 + 8/12, "feet"),
  36097. default: true
  36098. },
  36099. ]
  36100. ))
  36101. characterMakers.push(() => makeCharacter(
  36102. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36103. {
  36104. side: {
  36105. height: math.unit(7 + 1/12, "feet"),
  36106. weight: math.unit(245, "lb"),
  36107. name: "Side",
  36108. image: {
  36109. source: "./media/characters/kavus-kazian/side.svg",
  36110. extra: 349/342,
  36111. bottom: 15/364
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(7 + 1/12, "feet"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36125. {
  36126. normalFront: {
  36127. height: math.unit(5 + 11/12, "feet"),
  36128. name: "Front",
  36129. image: {
  36130. source: "./media/characters/moonlight-rose/normal-front.svg",
  36131. extra: 1980/1825,
  36132. bottom: 18/1998
  36133. },
  36134. form: "normal",
  36135. default: true
  36136. },
  36137. normalBack: {
  36138. height: math.unit(5 + 11/12, "feet"),
  36139. name: "Back",
  36140. image: {
  36141. source: "./media/characters/moonlight-rose/normal-back.svg",
  36142. extra: 2010/1839,
  36143. bottom: 10/2020
  36144. },
  36145. form: "normal"
  36146. },
  36147. demonFront: {
  36148. height: math.unit(1.5, "earths"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/moonlight-rose/demon.svg",
  36152. extra: 1400/1294,
  36153. bottom: 45/1445
  36154. },
  36155. form: "demon",
  36156. default: true
  36157. },
  36158. terraFront: {
  36159. height: math.unit(1.5, "earths"),
  36160. name: "Front",
  36161. image: {
  36162. source: "./media/characters/moonlight-rose/terra.svg"
  36163. },
  36164. form: "terra",
  36165. default: true
  36166. },
  36167. jupiterFront: {
  36168. height: math.unit(69911*2, "km"),
  36169. name: "Front",
  36170. image: {
  36171. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36172. extra: 1367/1286,
  36173. bottom: 55/1422
  36174. },
  36175. form: "jupiter",
  36176. default: true
  36177. },
  36178. neptuneFront: {
  36179. height: math.unit(24622*2, "feet"),
  36180. name: "Front",
  36181. image: {
  36182. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36183. extra: 1851/1712,
  36184. bottom: 0/1851
  36185. },
  36186. form: "neptune",
  36187. default: true
  36188. },
  36189. },
  36190. [
  36191. {
  36192. name: "\"Natural\" Height",
  36193. height: math.unit(5 + 11/12, "feet"),
  36194. form: "normal"
  36195. },
  36196. {
  36197. name: "Smallest comfortable size",
  36198. height: math.unit(40, "meters"),
  36199. form: "normal"
  36200. },
  36201. {
  36202. name: "Common size",
  36203. height: math.unit(50, "km"),
  36204. form: "normal",
  36205. default: true
  36206. },
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(1.5, "earths"),
  36210. form: "demon",
  36211. default: true
  36212. },
  36213. {
  36214. name: "Universal",
  36215. height: math.unit(15, "universes"),
  36216. form: "demon"
  36217. },
  36218. {
  36219. name: "Earth",
  36220. height: math.unit(1.5, "earths"),
  36221. form: "terra",
  36222. default: true
  36223. },
  36224. {
  36225. name: "Super Earth",
  36226. height: math.unit(67.5, "earths"),
  36227. form: "terra"
  36228. },
  36229. {
  36230. name: "Doesn't fit in a solar system...",
  36231. height: math.unit(1, "galaxy"),
  36232. form: "terra"
  36233. },
  36234. {
  36235. name: "Saturn",
  36236. height: math.unit(58232*2, "km"),
  36237. form: "jupiter"
  36238. },
  36239. {
  36240. name: "Jupiter",
  36241. height: math.unit(69911*2, "km"),
  36242. form: "jupiter",
  36243. default: true
  36244. },
  36245. {
  36246. name: "HD 100546 b",
  36247. height: math.unit(482938, "km"),
  36248. form: "jupiter"
  36249. },
  36250. {
  36251. name: "Enceladus",
  36252. height: math.unit(513*2, "km"),
  36253. form: "neptune"
  36254. },
  36255. {
  36256. name: "Europe",
  36257. height: math.unit(1560*2, "km"),
  36258. form: "neptune"
  36259. },
  36260. {
  36261. name: "Neptune",
  36262. height: math.unit(24622*2, "km"),
  36263. form: "neptune",
  36264. default: true
  36265. },
  36266. {
  36267. name: "CoRoT-9b",
  36268. height: math.unit(75067*2, "km"),
  36269. form: "neptune"
  36270. },
  36271. ],
  36272. {
  36273. "normal": {
  36274. name: "Normal",
  36275. default: true
  36276. },
  36277. "demon": {
  36278. name: "Demon"
  36279. },
  36280. "terra": {
  36281. name: "Terra"
  36282. },
  36283. "jupiter": {
  36284. name: "Jupiter"
  36285. },
  36286. "neptune": {
  36287. name: "Neptune"
  36288. }
  36289. }
  36290. ))
  36291. characterMakers.push(() => makeCharacter(
  36292. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36293. {
  36294. front: {
  36295. height: math.unit(16, "feet"),
  36296. weight: math.unit(610, "kg"),
  36297. name: "Front",
  36298. image: {
  36299. source: "./media/characters/huckle/front.svg",
  36300. extra: 1731/1625,
  36301. bottom: 33/1764
  36302. }
  36303. },
  36304. back: {
  36305. height: math.unit(16, "feet"),
  36306. weight: math.unit(610, "kg"),
  36307. name: "Back",
  36308. image: {
  36309. source: "./media/characters/huckle/back.svg",
  36310. extra: 1738/1651,
  36311. bottom: 37/1775
  36312. }
  36313. },
  36314. laughing: {
  36315. height: math.unit(3.75, "feet"),
  36316. name: "Laughing",
  36317. image: {
  36318. source: "./media/characters/huckle/laughing.svg"
  36319. }
  36320. },
  36321. angry: {
  36322. height: math.unit(4.15, "feet"),
  36323. name: "Angry",
  36324. image: {
  36325. source: "./media/characters/huckle/angry.svg"
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Normal",
  36332. height: math.unit(16, "feet"),
  36333. default: true
  36334. },
  36335. {
  36336. name: "Mini Macro",
  36337. height: math.unit(463, "feet")
  36338. },
  36339. {
  36340. name: "Macro",
  36341. height: math.unit(1680, "meters")
  36342. },
  36343. {
  36344. name: "Mega Macro",
  36345. height: math.unit(175, "km")
  36346. },
  36347. {
  36348. name: "Terra Macro",
  36349. height: math.unit(32, "gigameters")
  36350. },
  36351. {
  36352. name: "Multiverse+",
  36353. height: math.unit(2.56e23, "yottameters")
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36359. {
  36360. front: {
  36361. height: math.unit(6 + 9/12, "feet"),
  36362. weight: math.unit(280, "lb"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/candy/front.svg",
  36366. extra: 234/217,
  36367. bottom: 11/245
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Really Small",
  36374. height: math.unit(0.1, "nm")
  36375. },
  36376. {
  36377. name: "Micro",
  36378. height: math.unit(2, "inches")
  36379. },
  36380. {
  36381. name: "Normal",
  36382. height: math.unit(6 + 9/12, "feet"),
  36383. default: true
  36384. },
  36385. {
  36386. name: "Small Macro",
  36387. height: math.unit(69, "feet")
  36388. },
  36389. {
  36390. name: "Macro",
  36391. height: math.unit(160, "feet")
  36392. },
  36393. {
  36394. name: "Megamacro",
  36395. height: math.unit(22000, "miles")
  36396. },
  36397. {
  36398. name: "Gigamacro",
  36399. height: math.unit(50000, "miles")
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36405. {
  36406. front: {
  36407. height: math.unit(4, "feet"),
  36408. weight: math.unit(90, "lb"),
  36409. name: "Front",
  36410. image: {
  36411. source: "./media/characters/joey-mcdonald/front.svg",
  36412. extra: 1059/852,
  36413. bottom: 33/1092
  36414. }
  36415. },
  36416. back: {
  36417. height: math.unit(4, "feet"),
  36418. weight: math.unit(90, "lb"),
  36419. name: "Back",
  36420. image: {
  36421. source: "./media/characters/joey-mcdonald/back.svg",
  36422. extra: 1077/879,
  36423. bottom: 5/1082
  36424. }
  36425. },
  36426. frontKobold: {
  36427. height: math.unit(4, "feet"),
  36428. weight: math.unit(100, "lb"),
  36429. name: "Front-kobold",
  36430. image: {
  36431. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36432. extra: 1480/1367,
  36433. bottom: 0/1480
  36434. }
  36435. },
  36436. backKobold: {
  36437. height: math.unit(4, "feet"),
  36438. weight: math.unit(100, "lb"),
  36439. name: "Back-kobold",
  36440. image: {
  36441. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36442. extra: 1449/1361,
  36443. bottom: 0/1449
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(4, "feet"),
  36451. default: true
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36457. {
  36458. front: {
  36459. height: math.unit(12 + 6/12, "feet"),
  36460. name: "Front",
  36461. image: {
  36462. source: "./media/characters/kass-lockheed/front.svg",
  36463. extra: 354/343,
  36464. bottom: 9/363
  36465. }
  36466. },
  36467. back: {
  36468. height: math.unit(12 + 6/12, "feet"),
  36469. name: "Back",
  36470. image: {
  36471. source: "./media/characters/kass-lockheed/back.svg",
  36472. extra: 364/352,
  36473. bottom: 3/367
  36474. }
  36475. },
  36476. dick: {
  36477. height: math.unit(3.12, "feet"),
  36478. name: "Dick",
  36479. image: {
  36480. source: "./media/characters/kass-lockheed/dick.svg"
  36481. }
  36482. },
  36483. head: {
  36484. height: math.unit(2.6, "feet"),
  36485. name: "Head",
  36486. image: {
  36487. source: "./media/characters/kass-lockheed/head.svg"
  36488. }
  36489. },
  36490. bleh: {
  36491. height: math.unit(2.85, "feet"),
  36492. name: "Bleh",
  36493. image: {
  36494. source: "./media/characters/kass-lockheed/bleh.svg"
  36495. }
  36496. },
  36497. smug: {
  36498. height: math.unit(2.85, "feet"),
  36499. name: "Smug",
  36500. image: {
  36501. source: "./media/characters/kass-lockheed/smug.svg"
  36502. }
  36503. },
  36504. },
  36505. [
  36506. {
  36507. name: "Normal",
  36508. height: math.unit(12 + 6/12, "feet"),
  36509. default: true
  36510. },
  36511. ]
  36512. ))
  36513. characterMakers.push(() => makeCharacter(
  36514. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36515. {
  36516. front: {
  36517. height: math.unit(6 + 2/12, "feet"),
  36518. name: "Front",
  36519. image: {
  36520. source: "./media/characters/taylor/front.svg",
  36521. extra: 639/495,
  36522. bottom: 12/651
  36523. }
  36524. },
  36525. },
  36526. [
  36527. {
  36528. name: "Normal",
  36529. height: math.unit(6 + 2/12, "feet"),
  36530. default: true
  36531. },
  36532. {
  36533. name: "Big",
  36534. height: math.unit(15, "feet")
  36535. },
  36536. {
  36537. name: "Lorg",
  36538. height: math.unit(80, "feet")
  36539. },
  36540. {
  36541. name: "Too Lorg",
  36542. height: math.unit(120, "feet")
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(15, "feet"),
  36551. name: "Front",
  36552. image: {
  36553. source: "./media/characters/kaizer/front.svg",
  36554. extra: 1612/1436,
  36555. bottom: 43/1655
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(15, "feet"),
  36563. default: true
  36564. },
  36565. ]
  36566. ))
  36567. characterMakers.push(() => makeCharacter(
  36568. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36569. {
  36570. front: {
  36571. height: math.unit(2, "feet"),
  36572. weight: math.unit(30, "lb"),
  36573. name: "Front",
  36574. image: {
  36575. source: "./media/characters/sandy/front.svg",
  36576. extra: 1439/1307,
  36577. bottom: 194/1633
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(2, "feet"),
  36585. default: true
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(3, "feet"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/mellvi/front.svg",
  36597. extra: 1831/1630,
  36598. bottom: 58/1889
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(3, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36612. {
  36613. front: {
  36614. height: math.unit(5 + 11/12, "feet"),
  36615. weight: math.unit(200, "lb"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/shirou/front.svg",
  36619. extra: 2491/2383,
  36620. bottom: 189/2680
  36621. }
  36622. },
  36623. back: {
  36624. height: math.unit(5 + 11/12, "feet"),
  36625. weight: math.unit(200, "lb"),
  36626. name: "Back",
  36627. image: {
  36628. source: "./media/characters/shirou/back.svg",
  36629. extra: 2554/2450,
  36630. bottom: 76/2630
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(5 + 11/12, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(6 + 3/12, "feet"),
  36647. weight: math.unit(177, "lb"),
  36648. name: "Front",
  36649. image: {
  36650. source: "./media/characters/noryu/front.svg",
  36651. extra: 973/885,
  36652. bottom: 10/983
  36653. }
  36654. },
  36655. },
  36656. [
  36657. {
  36658. name: "Normal",
  36659. height: math.unit(6 + 3/12, "feet"),
  36660. default: true
  36661. },
  36662. ]
  36663. ))
  36664. characterMakers.push(() => makeCharacter(
  36665. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36666. {
  36667. front: {
  36668. height: math.unit(5 + 6/12, "feet"),
  36669. weight: math.unit(170, "lb"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/mevolas-rubenido/front.svg",
  36673. extra: 2109/1901,
  36674. bottom: 96/2205
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(5 + 6/12, "feet"),
  36682. default: true
  36683. },
  36684. ]
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(100, "feet"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/dee/front.svg",
  36694. extra: 2153/2036,
  36695. bottom: 59/2212
  36696. }
  36697. },
  36698. back: {
  36699. height: math.unit(100, "feet"),
  36700. name: "Back",
  36701. image: {
  36702. source: "./media/characters/dee/back.svg",
  36703. extra: 2183/2058,
  36704. bottom: 75/2258
  36705. }
  36706. },
  36707. foot: {
  36708. height: math.unit(19.43, "feet"),
  36709. name: "Foot",
  36710. image: {
  36711. source: "./media/characters/dee/foot.svg"
  36712. }
  36713. },
  36714. hoof: {
  36715. height: math.unit(20.6, "feet"),
  36716. name: "Hoof",
  36717. image: {
  36718. source: "./media/characters/dee/hoof.svg"
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Macro",
  36725. height: math.unit(100, "feet"),
  36726. default: true
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36732. {
  36733. front: {
  36734. height: math.unit(5 + 6/12, "feet"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/teh/front.svg",
  36738. extra: 1002/847,
  36739. bottom: 62/1064
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(5 + 6/12, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36753. {
  36754. side: {
  36755. height: math.unit(6 + 1/12, "feet"),
  36756. weight: math.unit(204, "lb"),
  36757. name: "Side",
  36758. image: {
  36759. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36760. extra: 974/775,
  36761. bottom: 169/1143
  36762. }
  36763. },
  36764. sitting: {
  36765. height: math.unit(6 + 2/12, "feet"),
  36766. weight: math.unit(204, "lb"),
  36767. name: "Sitting",
  36768. image: {
  36769. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36770. extra: 1175/964,
  36771. bottom: 378/1553
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "Normal",
  36778. height: math.unit(6 + 1/12, "feet"),
  36779. default: true
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36785. {
  36786. front: {
  36787. height: math.unit(6, "inches"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/tululi/front.svg",
  36791. extra: 1997/1876,
  36792. bottom: 20/2017
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Normal",
  36799. height: math.unit(6, "inches"),
  36800. default: true
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36806. {
  36807. front: {
  36808. height: math.unit(4 + 1/12, "feet"),
  36809. name: "Front",
  36810. image: {
  36811. source: "./media/characters/star/front.svg",
  36812. extra: 1493/1189,
  36813. bottom: 48/1541
  36814. }
  36815. },
  36816. },
  36817. [
  36818. {
  36819. name: "Normal",
  36820. height: math.unit(4 + 1/12, "feet"),
  36821. default: true
  36822. },
  36823. ]
  36824. ))
  36825. characterMakers.push(() => makeCharacter(
  36826. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36827. {
  36828. front: {
  36829. height: math.unit(6 + 3/12, "feet"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/comet/front.svg",
  36833. extra: 1681/1462,
  36834. bottom: 26/1707
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Normal",
  36841. height: math.unit(6 + 3/12, "feet"),
  36842. default: true
  36843. },
  36844. ]
  36845. ))
  36846. characterMakers.push(() => makeCharacter(
  36847. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36848. {
  36849. front: {
  36850. height: math.unit(950, "feet"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/vortex/front.svg",
  36854. extra: 1497/1434,
  36855. bottom: 56/1553
  36856. }
  36857. },
  36858. maw: {
  36859. height: math.unit(285, "feet"),
  36860. name: "Maw",
  36861. image: {
  36862. source: "./media/characters/vortex/maw.svg"
  36863. }
  36864. },
  36865. },
  36866. [
  36867. {
  36868. name: "Macro",
  36869. height: math.unit(950, "feet"),
  36870. default: true
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(600, "feet"),
  36879. weight: math.unit(0.02, "grams"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/doodle/front.svg",
  36883. extra: 1578/1413,
  36884. bottom: 37/1615
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Macro",
  36891. height: math.unit(600, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(6 + 6/12, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/jai/front.svg",
  36904. extra: 1645/1534,
  36905. bottom: 115/1760
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(6 + 6/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(6 + 8/12, "feet"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/pixel/front.svg",
  36925. extra: 1900/1735,
  36926. bottom: 63/1963
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Normal",
  36933. height: math.unit(6 + 8/12, "feet"),
  36934. default: true
  36935. },
  36936. ]
  36937. ))
  36938. characterMakers.push(() => makeCharacter(
  36939. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36940. {
  36941. back: {
  36942. height: math.unit(4 + 1/12, "feet"),
  36943. weight: math.unit(75, "lb"),
  36944. name: "Back",
  36945. image: {
  36946. source: "./media/characters/rhett/back.svg",
  36947. extra: 930/878,
  36948. bottom: 25/955
  36949. }
  36950. },
  36951. front: {
  36952. height: math.unit(4 + 1/12, "feet"),
  36953. weight: math.unit(75, "lb"),
  36954. name: "Front",
  36955. image: {
  36956. source: "./media/characters/rhett/front.svg",
  36957. extra: 1682/1586,
  36958. bottom: 92/1774
  36959. }
  36960. },
  36961. },
  36962. [
  36963. {
  36964. name: "Micro",
  36965. height: math.unit(8, "inches")
  36966. },
  36967. {
  36968. name: "Tiny",
  36969. height: math.unit(2, "feet")
  36970. },
  36971. {
  36972. name: "Normal",
  36973. height: math.unit(4 + 1/12, "feet"),
  36974. default: true
  36975. },
  36976. ]
  36977. ))
  36978. characterMakers.push(() => makeCharacter(
  36979. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36980. {
  36981. front: {
  36982. height: math.unit(3 + 3/12, "feet"),
  36983. name: "Front",
  36984. image: {
  36985. source: "./media/characters/penny/front.svg",
  36986. extra: 1406/1311,
  36987. bottom: 26/1432
  36988. }
  36989. },
  36990. },
  36991. [
  36992. {
  36993. name: "Normal",
  36994. height: math.unit(3 + 3/12, "feet"),
  36995. default: true
  36996. },
  36997. ]
  36998. ))
  36999. characterMakers.push(() => makeCharacter(
  37000. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37001. {
  37002. front: {
  37003. height: math.unit(4 + 11/12, "feet"),
  37004. name: "Front",
  37005. image: {
  37006. source: "./media/characters/monty/front.svg",
  37007. extra: 1479/1209,
  37008. bottom: 0/1479
  37009. }
  37010. },
  37011. },
  37012. [
  37013. {
  37014. name: "Normal",
  37015. height: math.unit(4 + 11/12, "feet"),
  37016. default: true
  37017. },
  37018. ]
  37019. ))
  37020. characterMakers.push(() => makeCharacter(
  37021. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37022. {
  37023. front: {
  37024. height: math.unit(8 + 4/12, "feet"),
  37025. name: "Front",
  37026. image: {
  37027. source: "./media/characters/sterling/front.svg",
  37028. extra: 1420/1236,
  37029. bottom: 27/1447
  37030. }
  37031. },
  37032. },
  37033. [
  37034. {
  37035. name: "Normal",
  37036. height: math.unit(8 + 4/12, "feet"),
  37037. default: true
  37038. },
  37039. ]
  37040. ))
  37041. characterMakers.push(() => makeCharacter(
  37042. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37043. {
  37044. front: {
  37045. height: math.unit(15, "feet"),
  37046. name: "Front",
  37047. image: {
  37048. source: "./media/characters/marble/front.svg",
  37049. extra: 973/937,
  37050. bottom: 32/1005
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(15, "feet"),
  37058. default: true
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37064. {
  37065. front: {
  37066. height: math.unit(3, "inches"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/powder/front.svg",
  37070. extra: 1504/1334,
  37071. bottom: 518/2022
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(3, "inches"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(4 + 5/12, "feet"),
  37088. name: "Front",
  37089. image: {
  37090. source: "./media/characters/joey-raccoon/front.svg",
  37091. extra: 1273/1197,
  37092. bottom: 0/1273
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Normal",
  37099. height: math.unit(4 + 5/12, "feet"),
  37100. default: true
  37101. },
  37102. ]
  37103. ))
  37104. characterMakers.push(() => makeCharacter(
  37105. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37106. {
  37107. front: {
  37108. height: math.unit(8 + 4/12, "feet"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/vick/front.svg",
  37112. extra: 2187/2118,
  37113. bottom: 47/2234
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Normal",
  37120. height: math.unit(8 + 4/12, "feet"),
  37121. default: true
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(5 + 5/12, "feet"),
  37130. name: "Front",
  37131. image: {
  37132. source: "./media/characters/mitsy/front.svg",
  37133. extra: 1842/1695,
  37134. bottom: 0/1842
  37135. }
  37136. },
  37137. },
  37138. [
  37139. {
  37140. name: "Normal",
  37141. height: math.unit(5 + 5/12, "feet"),
  37142. default: true
  37143. },
  37144. ]
  37145. ))
  37146. characterMakers.push(() => makeCharacter(
  37147. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37148. {
  37149. front: {
  37150. height: math.unit(6 + 3/12, "feet"),
  37151. name: "Front",
  37152. image: {
  37153. source: "./media/characters/silvy/front.svg",
  37154. extra: 1995/1836,
  37155. bottom: 225/2220
  37156. }
  37157. },
  37158. },
  37159. [
  37160. {
  37161. name: "Normal",
  37162. height: math.unit(6 + 3/12, "feet"),
  37163. default: true
  37164. },
  37165. ]
  37166. ))
  37167. characterMakers.push(() => makeCharacter(
  37168. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37169. {
  37170. front: {
  37171. height: math.unit(3 + 8/12, "feet"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/rodney/front.svg",
  37175. extra: 1956/1747,
  37176. bottom: 31/1987
  37177. }
  37178. },
  37179. frontDressed: {
  37180. height: math.unit(2.9, "feet"),
  37181. name: "Front (Dressed)",
  37182. image: {
  37183. source: "./media/characters/rodney/front-dressed.svg",
  37184. extra: 1382/1241,
  37185. bottom: 385/1767
  37186. }
  37187. },
  37188. },
  37189. [
  37190. {
  37191. name: "Normal",
  37192. height: math.unit(3 + 8/12, "feet"),
  37193. default: true
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(5 + 9/12, "feet"),
  37202. weight: math.unit(194, "lbs"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/zakail-sudekai/front.svg",
  37206. extra: 2696/2533,
  37207. bottom: 248/2944
  37208. }
  37209. },
  37210. maw: {
  37211. height: math.unit(1.35, "feet"),
  37212. name: "Maw",
  37213. image: {
  37214. source: "./media/characters/zakail-sudekai/maw.svg"
  37215. }
  37216. },
  37217. },
  37218. [
  37219. {
  37220. name: "Normal",
  37221. height: math.unit(5 + 9/12, "feet"),
  37222. default: true
  37223. },
  37224. ]
  37225. ))
  37226. characterMakers.push(() => makeCharacter(
  37227. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37228. {
  37229. front: {
  37230. height: math.unit(8 + 4/12, "feet"),
  37231. weight: math.unit(1200, "lb"),
  37232. name: "Front",
  37233. image: {
  37234. source: "./media/characters/eleanor/front.svg",
  37235. extra: 1226/1192,
  37236. bottom: 52/1278
  37237. }
  37238. },
  37239. back: {
  37240. height: math.unit(8 + 4/12, "feet"),
  37241. weight: math.unit(1200, "lb"),
  37242. name: "Back",
  37243. image: {
  37244. source: "./media/characters/eleanor/back.svg",
  37245. extra: 1242/1184,
  37246. bottom: 60/1302
  37247. }
  37248. },
  37249. head: {
  37250. height: math.unit(2.62, "feet"),
  37251. name: "Head",
  37252. image: {
  37253. source: "./media/characters/eleanor/head.svg"
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(8 + 4/12, "feet"),
  37261. default: true
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(8 + 4/12, "feet"),
  37270. weight: math.unit(750, "lb"),
  37271. name: "Front",
  37272. image: {
  37273. source: "./media/characters/tanya/front.svg",
  37274. extra: 1749/1615,
  37275. bottom: 33/1782
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(8 + 4/12, "feet"),
  37283. default: true
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(5, "feet"),
  37292. weight: math.unit(225, "lb"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/cindy/front.svg",
  37296. extra: 1320/1250,
  37297. bottom: 42/1362
  37298. }
  37299. },
  37300. frontDressed: {
  37301. height: math.unit(5, "feet"),
  37302. weight: math.unit(225, "lb"),
  37303. name: "Front (Dressed)",
  37304. image: {
  37305. source: "./media/characters/cindy/front-dressed.svg",
  37306. extra: 1320/1250,
  37307. bottom: 42/1362
  37308. }
  37309. },
  37310. back: {
  37311. height: math.unit(5, "feet"),
  37312. weight: math.unit(225, "lb"),
  37313. name: "Back",
  37314. image: {
  37315. source: "./media/characters/cindy/back.svg",
  37316. extra: 1384/1346,
  37317. bottom: 14/1398
  37318. }
  37319. },
  37320. },
  37321. [
  37322. {
  37323. name: "Normal",
  37324. height: math.unit(5, "feet"),
  37325. default: true
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37331. {
  37332. front: {
  37333. height: math.unit(6 + 9/12, "feet"),
  37334. weight: math.unit(440, "lb"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/wilbur-owen/front.svg",
  37338. extra: 1575/1448,
  37339. bottom: 72/1647
  37340. }
  37341. },
  37342. back: {
  37343. height: math.unit(6 + 9/12, "feet"),
  37344. weight: math.unit(440, "lb"),
  37345. name: "Back",
  37346. image: {
  37347. source: "./media/characters/wilbur-owen/back.svg",
  37348. extra: 1578/1445,
  37349. bottom: 36/1614
  37350. }
  37351. },
  37352. },
  37353. [
  37354. {
  37355. name: "Normal",
  37356. height: math.unit(6 + 9/12, "feet"),
  37357. default: true
  37358. },
  37359. ]
  37360. ))
  37361. characterMakers.push(() => makeCharacter(
  37362. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37363. {
  37364. front: {
  37365. height: math.unit(6 + 5/12, "feet"),
  37366. weight: math.unit(650, "lb"),
  37367. name: "Front",
  37368. image: {
  37369. source: "./media/characters/keegan/front.svg",
  37370. extra: 2387/2198,
  37371. bottom: 33/2420
  37372. }
  37373. },
  37374. side: {
  37375. height: math.unit(6 + 5/12, "feet"),
  37376. weight: math.unit(650, "lb"),
  37377. name: "Side",
  37378. image: {
  37379. source: "./media/characters/keegan/side.svg",
  37380. extra: 2390/2202,
  37381. bottom: 47/2437
  37382. }
  37383. },
  37384. back: {
  37385. height: math.unit(6 + 5/12, "feet"),
  37386. weight: math.unit(650, "lb"),
  37387. name: "Back",
  37388. image: {
  37389. source: "./media/characters/keegan/back.svg",
  37390. extra: 2418/2268,
  37391. bottom: 15/2433
  37392. }
  37393. },
  37394. frontSfw: {
  37395. height: math.unit(6 + 5/12, "feet"),
  37396. weight: math.unit(650, "lb"),
  37397. name: "Front (SFW)",
  37398. image: {
  37399. source: "./media/characters/keegan/front-sfw.svg",
  37400. extra: 2387/2198,
  37401. bottom: 33/2420
  37402. }
  37403. },
  37404. beans: {
  37405. height: math.unit(1.85, "feet"),
  37406. name: "Beans",
  37407. image: {
  37408. source: "./media/characters/keegan/beans.svg"
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(6 + 5/12, "feet"),
  37416. default: true
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(9, "feet"),
  37425. name: "Front",
  37426. image: {
  37427. source: "./media/characters/colton/front.svg",
  37428. extra: 1589/1326,
  37429. bottom: 139/1728
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(9, "feet"),
  37437. default: true
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37443. {
  37444. front: {
  37445. height: math.unit(2 + 9/12, "feet"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/bora/front.svg",
  37449. extra: 1265/1250,
  37450. bottom: 24/1289
  37451. }
  37452. },
  37453. },
  37454. [
  37455. {
  37456. name: "Normal",
  37457. height: math.unit(2 + 9/12, "feet"),
  37458. default: true
  37459. },
  37460. ]
  37461. ))
  37462. characterMakers.push(() => makeCharacter(
  37463. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37464. {
  37465. front: {
  37466. height: math.unit(8, "feet"),
  37467. name: "Front",
  37468. image: {
  37469. source: "./media/characters/myu-myu/front.svg",
  37470. extra: 1949/1857,
  37471. bottom: 90/2039
  37472. }
  37473. },
  37474. },
  37475. [
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(8, "feet"),
  37479. default: true
  37480. },
  37481. {
  37482. name: "Big",
  37483. height: math.unit(15, "feet")
  37484. },
  37485. {
  37486. name: "BIG",
  37487. height: math.unit(25, "feet")
  37488. },
  37489. ]
  37490. ))
  37491. characterMakers.push(() => makeCharacter(
  37492. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37493. {
  37494. side: {
  37495. height: math.unit(7 + 5/12, "feet"),
  37496. weight: math.unit(2800, "lb"),
  37497. name: "Side",
  37498. image: {
  37499. source: "./media/characters/haloren/side.svg",
  37500. extra: 1793/409,
  37501. bottom: 59/1852
  37502. }
  37503. },
  37504. frontPaw: {
  37505. height: math.unit(2.36, "feet"),
  37506. name: "Front paw",
  37507. image: {
  37508. source: "./media/characters/haloren/front-paw.svg"
  37509. }
  37510. },
  37511. hindPaw: {
  37512. height: math.unit(3.18, "feet"),
  37513. name: "Hind paw",
  37514. image: {
  37515. source: "./media/characters/haloren/hind-paw.svg"
  37516. }
  37517. },
  37518. maw: {
  37519. height: math.unit(5.05, "feet"),
  37520. name: "Maw",
  37521. image: {
  37522. source: "./media/characters/haloren/maw.svg"
  37523. }
  37524. },
  37525. dick: {
  37526. height: math.unit(2.90, "feet"),
  37527. name: "Dick",
  37528. image: {
  37529. source: "./media/characters/haloren/dick.svg"
  37530. }
  37531. },
  37532. },
  37533. [
  37534. {
  37535. name: "Normal",
  37536. height: math.unit(7 + 5/12, "feet"),
  37537. default: true
  37538. },
  37539. {
  37540. name: "Enhanced",
  37541. height: math.unit(14 + 3/12, "feet")
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37547. {
  37548. front: {
  37549. height: math.unit(171, "cm"),
  37550. name: "Front",
  37551. image: {
  37552. source: "./media/characters/kimmy/front.svg",
  37553. extra: 1491/1435,
  37554. bottom: 53/1544
  37555. }
  37556. },
  37557. },
  37558. [
  37559. {
  37560. name: "Small",
  37561. height: math.unit(9, "cm")
  37562. },
  37563. {
  37564. name: "Normal",
  37565. height: math.unit(171, "cm"),
  37566. default: true
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37572. {
  37573. front: {
  37574. height: math.unit(8, "feet"),
  37575. weight: math.unit(300, "lb"),
  37576. name: "Front",
  37577. image: {
  37578. source: "./media/characters/galeboomer/front.svg",
  37579. extra: 4651/4415,
  37580. bottom: 162/4813
  37581. }
  37582. },
  37583. back: {
  37584. height: math.unit(8, "feet"),
  37585. weight: math.unit(300, "lb"),
  37586. name: "Back",
  37587. image: {
  37588. source: "./media/characters/galeboomer/back.svg",
  37589. extra: 4544/4314,
  37590. bottom: 16/4560
  37591. }
  37592. },
  37593. frontAlt: {
  37594. height: math.unit(8, "feet"),
  37595. weight: math.unit(300, "lb"),
  37596. name: "Front (Alt)",
  37597. image: {
  37598. source: "./media/characters/galeboomer/front-alt.svg",
  37599. extra: 4458/4228,
  37600. bottom: 68/4526
  37601. }
  37602. },
  37603. maw: {
  37604. height: math.unit(1.2, "feet"),
  37605. name: "Maw",
  37606. image: {
  37607. source: "./media/characters/galeboomer/maw.svg"
  37608. }
  37609. },
  37610. },
  37611. [
  37612. {
  37613. name: "Normal",
  37614. height: math.unit(8, "feet"),
  37615. default: true
  37616. },
  37617. ]
  37618. ))
  37619. characterMakers.push(() => makeCharacter(
  37620. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37621. {
  37622. front: {
  37623. height: math.unit(5 + 9/12, "feet"),
  37624. weight: math.unit(120, "lb"),
  37625. name: "Front",
  37626. image: {
  37627. source: "./media/characters/chyr/front.svg",
  37628. extra: 1323/1254,
  37629. bottom: 63/1386
  37630. }
  37631. },
  37632. back: {
  37633. height: math.unit(5 + 9/12, "feet"),
  37634. weight: math.unit(120, "lb"),
  37635. name: "Back",
  37636. image: {
  37637. source: "./media/characters/chyr/back.svg",
  37638. extra: 1323/1252,
  37639. bottom: 48/1371
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Normal",
  37646. height: math.unit(5 + 9/12, "feet"),
  37647. default: true
  37648. },
  37649. ]
  37650. ))
  37651. characterMakers.push(() => makeCharacter(
  37652. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37653. {
  37654. front: {
  37655. height: math.unit(7, "feet"),
  37656. weight: math.unit(310, "lb"),
  37657. name: "Front",
  37658. image: {
  37659. source: "./media/characters/solarus/front.svg",
  37660. extra: 2415/2021,
  37661. bottom: 103/2518
  37662. }
  37663. },
  37664. back: {
  37665. height: math.unit(7, "feet"),
  37666. weight: math.unit(310, "lb"),
  37667. name: "Back",
  37668. image: {
  37669. source: "./media/characters/solarus/back.svg",
  37670. extra: 2463/2089,
  37671. bottom: 79/2542
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(7, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(16, "feet"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37691. extra: 1844/1780,
  37692. bottom: 58/1902
  37693. }
  37694. },
  37695. winterCoat: {
  37696. height: math.unit(16, "feet"),
  37697. name: "Winter Coat",
  37698. image: {
  37699. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37700. extra: 1807/1775,
  37701. bottom: 69/1876
  37702. }
  37703. },
  37704. },
  37705. [
  37706. {
  37707. name: "Normal",
  37708. height: math.unit(16, "feet"),
  37709. default: true
  37710. },
  37711. {
  37712. name: "Chicago Size",
  37713. height: math.unit(560, "feet")
  37714. },
  37715. ]
  37716. ))
  37717. characterMakers.push(() => makeCharacter(
  37718. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37719. {
  37720. front: {
  37721. height: math.unit(11 + 6/12, "feet"),
  37722. weight: math.unit(1366, "lb"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/lexor/front.svg",
  37726. extra: 1560/1481,
  37727. bottom: 211/1771
  37728. }
  37729. },
  37730. back: {
  37731. height: math.unit(11 + 6/12, "feet"),
  37732. weight: math.unit(1366, "lb"),
  37733. name: "Back",
  37734. image: {
  37735. source: "./media/characters/lexor/back.svg",
  37736. extra: 1614/1533,
  37737. bottom: 76/1690
  37738. }
  37739. },
  37740. maw: {
  37741. height: math.unit(3, "feet"),
  37742. name: "Maw",
  37743. image: {
  37744. source: "./media/characters/lexor/maw.svg"
  37745. }
  37746. },
  37747. dick: {
  37748. height: math.unit(2.59, "feet"),
  37749. name: "Dick",
  37750. image: {
  37751. source: "./media/characters/lexor/dick.svg"
  37752. }
  37753. },
  37754. },
  37755. [
  37756. {
  37757. name: "Normal",
  37758. height: math.unit(11 + 6/12, "feet"),
  37759. default: true
  37760. },
  37761. ]
  37762. ))
  37763. characterMakers.push(() => makeCharacter(
  37764. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37765. {
  37766. front: {
  37767. height: math.unit(5 + 8/12, "feet"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/magnum/front.svg",
  37771. extra: 942/855,
  37772. bottom: 26/968
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(5 + 8/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(18 + 4/12, "feet"),
  37789. weight: math.unit(1500, "kg"),
  37790. name: "Front",
  37791. image: {
  37792. source: "./media/characters/solas-sharpsman/front.svg",
  37793. extra: 1698/1589,
  37794. bottom: 0/1698
  37795. }
  37796. },
  37797. },
  37798. [
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(18 + 4/12, "feet"),
  37802. default: true
  37803. },
  37804. ]
  37805. ))
  37806. characterMakers.push(() => makeCharacter(
  37807. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37808. {
  37809. front: {
  37810. height: math.unit(5 + 5/12, "feet"),
  37811. weight: math.unit(180, "lb"),
  37812. name: "Front",
  37813. image: {
  37814. source: "./media/characters/october/front.svg",
  37815. extra: 1800/1650,
  37816. bottom: 0/1800
  37817. }
  37818. },
  37819. frontNsfw: {
  37820. height: math.unit(5 + 5/12, "feet"),
  37821. weight: math.unit(180, "lb"),
  37822. name: "Front (NSFW)",
  37823. image: {
  37824. source: "./media/characters/october/front-nsfw.svg",
  37825. extra: 1392/1307,
  37826. bottom: 42/1434
  37827. }
  37828. },
  37829. },
  37830. [
  37831. {
  37832. name: "Normal",
  37833. height: math.unit(5 + 5/12, "feet"),
  37834. default: true
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(8 + 6/12, "feet"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/essynkardi/front.svg",
  37846. extra: 1914/1846,
  37847. bottom: 22/1936
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(8 + 6/12, "feet"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(6 + 6/12, "feet"),
  37864. weight: math.unit(7, "lb"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/icky/front.svg",
  37868. extra: 813/782,
  37869. bottom: 66/879
  37870. }
  37871. },
  37872. back: {
  37873. height: math.unit(6 + 6/12, "feet"),
  37874. weight: math.unit(7, "lb"),
  37875. name: "Back",
  37876. image: {
  37877. source: "./media/characters/icky/back.svg",
  37878. extra: 754/735,
  37879. bottom: 56/810
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(6 + 6/12, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37893. {
  37894. front: {
  37895. height: math.unit(15, "feet"),
  37896. name: "Front",
  37897. image: {
  37898. source: "./media/characters/rojas/front.svg",
  37899. extra: 1462/1408,
  37900. bottom: 95/1557
  37901. }
  37902. },
  37903. back: {
  37904. height: math.unit(15, "feet"),
  37905. name: "Back",
  37906. image: {
  37907. source: "./media/characters/rojas/back.svg",
  37908. extra: 1023/954,
  37909. bottom: 28/1051
  37910. }
  37911. },
  37912. },
  37913. [
  37914. {
  37915. name: "Normal",
  37916. height: math.unit(15, "feet"),
  37917. default: true
  37918. },
  37919. ]
  37920. ))
  37921. characterMakers.push(() => makeCharacter(
  37922. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37923. {
  37924. frontHuman: {
  37925. height: math.unit(5 + 7/12, "feet"),
  37926. name: "Front (Human)",
  37927. image: {
  37928. source: "./media/characters/alek-dryagan/front-human.svg",
  37929. extra: 1687/1667,
  37930. bottom: 69/1756
  37931. }
  37932. },
  37933. backHuman: {
  37934. height: math.unit(5 + 7/12, "feet"),
  37935. name: "Back (Human)",
  37936. image: {
  37937. source: "./media/characters/alek-dryagan/back-human.svg",
  37938. extra: 1670/1649,
  37939. bottom: 65/1735
  37940. }
  37941. },
  37942. frontDemi: {
  37943. height: math.unit(65, "feet"),
  37944. name: "Front (Demi)",
  37945. image: {
  37946. source: "./media/characters/alek-dryagan/front-demi.svg",
  37947. extra: 1669/1642,
  37948. bottom: 49/1718
  37949. }
  37950. },
  37951. backDemi: {
  37952. height: math.unit(65, "feet"),
  37953. name: "Back (Demi)",
  37954. image: {
  37955. source: "./media/characters/alek-dryagan/back-demi.svg",
  37956. extra: 1658/1637,
  37957. bottom: 40/1698
  37958. }
  37959. },
  37960. mawHuman: {
  37961. height: math.unit(0.3, "feet"),
  37962. name: "Maw (Human)",
  37963. image: {
  37964. source: "./media/characters/alek-dryagan/maw-human.svg"
  37965. }
  37966. },
  37967. mawDemi: {
  37968. height: math.unit(3.8, "feet"),
  37969. name: "Maw (Demi)",
  37970. image: {
  37971. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(5 + 7/12, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37985. {
  37986. frontHuman: {
  37987. height: math.unit(5 + 2/12, "feet"),
  37988. name: "Front (Human)",
  37989. image: {
  37990. source: "./media/characters/gen/front-human.svg",
  37991. extra: 1627/1538,
  37992. bottom: 71/1698
  37993. }
  37994. },
  37995. backHuman: {
  37996. height: math.unit(5 + 2/12, "feet"),
  37997. name: "Back (Human)",
  37998. image: {
  37999. source: "./media/characters/gen/back-human.svg",
  38000. extra: 1638/1548,
  38001. bottom: 69/1707
  38002. }
  38003. },
  38004. frontDemi: {
  38005. height: math.unit(5 + 2/12, "feet"),
  38006. name: "Front (Demi)",
  38007. image: {
  38008. source: "./media/characters/gen/front-demi.svg",
  38009. extra: 1627/1538,
  38010. bottom: 71/1698
  38011. }
  38012. },
  38013. backDemi: {
  38014. height: math.unit(5 + 2/12, "feet"),
  38015. name: "Back (Demi)",
  38016. image: {
  38017. source: "./media/characters/gen/back-demi.svg",
  38018. extra: 1638/1548,
  38019. bottom: 69/1707
  38020. }
  38021. },
  38022. },
  38023. [
  38024. {
  38025. name: "Normal",
  38026. height: math.unit(5 + 2/12, "feet"),
  38027. default: true
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38033. {
  38034. frontImp: {
  38035. height: math.unit(1 + 11/12, "feet"),
  38036. name: "Front (Imp)",
  38037. image: {
  38038. source: "./media/characters/max-kobold/front-imp.svg",
  38039. extra: 1238/1134,
  38040. bottom: 81/1319
  38041. }
  38042. },
  38043. backImp: {
  38044. height: math.unit(1 + 11/12, "feet"),
  38045. name: "Back (Imp)",
  38046. image: {
  38047. source: "./media/characters/max-kobold/back-imp.svg",
  38048. extra: 1334/1175,
  38049. bottom: 34/1368
  38050. }
  38051. },
  38052. frontDemi: {
  38053. height: math.unit(5 + 9/12, "feet"),
  38054. name: "Front (Demi)",
  38055. image: {
  38056. source: "./media/characters/max-kobold/front-demi.svg",
  38057. extra: 1715/1685,
  38058. bottom: 54/1769
  38059. }
  38060. },
  38061. backDemi: {
  38062. height: math.unit(5 + 9/12, "feet"),
  38063. name: "Back (Demi)",
  38064. image: {
  38065. source: "./media/characters/max-kobold/back-demi.svg",
  38066. extra: 1752/1729,
  38067. bottom: 41/1793
  38068. }
  38069. },
  38070. handImp: {
  38071. height: math.unit(0.45, "feet"),
  38072. name: "Hand (Imp)",
  38073. image: {
  38074. source: "./media/characters/max-kobold/hand.svg"
  38075. }
  38076. },
  38077. pawImp: {
  38078. height: math.unit(0.46, "feet"),
  38079. name: "Paw (Imp)",
  38080. image: {
  38081. source: "./media/characters/max-kobold/paw.svg"
  38082. }
  38083. },
  38084. handDemi: {
  38085. height: math.unit(0.80, "feet"),
  38086. name: "Hand (Demi)",
  38087. image: {
  38088. source: "./media/characters/max-kobold/hand.svg"
  38089. }
  38090. },
  38091. pawDemi: {
  38092. height: math.unit(1.1, "feet"),
  38093. name: "Paw (Demi)",
  38094. image: {
  38095. source: "./media/characters/max-kobold/paw.svg"
  38096. }
  38097. },
  38098. headImp: {
  38099. height: math.unit(1.33, "feet"),
  38100. name: "Head (Imp)",
  38101. image: {
  38102. source: "./media/characters/max-kobold/head-imp.svg"
  38103. }
  38104. },
  38105. mawImp: {
  38106. height: math.unit(0.75, "feet"),
  38107. name: "Maw (Imp)",
  38108. image: {
  38109. source: "./media/characters/max-kobold/maw-imp.svg"
  38110. }
  38111. },
  38112. mawDemi: {
  38113. height: math.unit(0.42, "feet"),
  38114. name: "Maw (Demi)",
  38115. image: {
  38116. source: "./media/characters/max-kobold/maw-demi.svg"
  38117. }
  38118. },
  38119. },
  38120. [
  38121. {
  38122. name: "Normal",
  38123. height: math.unit(1 + 11/12, "feet"),
  38124. default: true
  38125. },
  38126. ]
  38127. ))
  38128. characterMakers.push(() => makeCharacter(
  38129. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38130. {
  38131. front: {
  38132. height: math.unit(7 + 5/12, "feet"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/carbon/front.svg",
  38136. extra: 1754/1689,
  38137. bottom: 65/1819
  38138. }
  38139. },
  38140. back: {
  38141. height: math.unit(7 + 5/12, "feet"),
  38142. name: "Back",
  38143. image: {
  38144. source: "./media/characters/carbon/back.svg",
  38145. extra: 1762/1695,
  38146. bottom: 24/1786
  38147. }
  38148. },
  38149. frontGigantamax: {
  38150. height: math.unit(150, "feet"),
  38151. name: "Front (Gigantamax)",
  38152. image: {
  38153. source: "./media/characters/carbon/front-gigantamax.svg",
  38154. extra: 1826/1669,
  38155. bottom: 59/1885
  38156. }
  38157. },
  38158. backGigantamax: {
  38159. height: math.unit(150, "feet"),
  38160. name: "Back (Gigantamax)",
  38161. image: {
  38162. source: "./media/characters/carbon/back-gigantamax.svg",
  38163. extra: 1796/1653,
  38164. bottom: 53/1849
  38165. }
  38166. },
  38167. maw: {
  38168. height: math.unit(0.48, "feet"),
  38169. name: "Maw",
  38170. image: {
  38171. source: "./media/characters/carbon/maw.svg"
  38172. }
  38173. },
  38174. mawGigantamax: {
  38175. height: math.unit(7.5, "feet"),
  38176. name: "Maw (Gigantamax)",
  38177. image: {
  38178. source: "./media/characters/carbon/maw-gigantamax.svg"
  38179. }
  38180. },
  38181. },
  38182. [
  38183. {
  38184. name: "Normal",
  38185. height: math.unit(7 + 5/12, "feet"),
  38186. default: true
  38187. },
  38188. ]
  38189. ))
  38190. characterMakers.push(() => makeCharacter(
  38191. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38192. {
  38193. front: {
  38194. height: math.unit(6, "feet"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/maverick/front.svg",
  38198. extra: 1672/1661,
  38199. bottom: 85/1757
  38200. }
  38201. },
  38202. back: {
  38203. height: math.unit(6, "feet"),
  38204. name: "Back",
  38205. image: {
  38206. source: "./media/characters/maverick/back.svg",
  38207. extra: 1642/1631,
  38208. bottom: 38/1680
  38209. }
  38210. },
  38211. },
  38212. [
  38213. {
  38214. name: "Normal",
  38215. height: math.unit(6, "feet"),
  38216. default: true
  38217. },
  38218. ]
  38219. ))
  38220. characterMakers.push(() => makeCharacter(
  38221. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38222. {
  38223. front: {
  38224. height: math.unit(15, "feet"),
  38225. weight: math.unit(615, "lb"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/grockle/front.svg",
  38229. extra: 1535/1427,
  38230. bottom: 56/1591
  38231. }
  38232. },
  38233. },
  38234. [
  38235. {
  38236. name: "Normal",
  38237. height: math.unit(15, "feet"),
  38238. default: true
  38239. },
  38240. {
  38241. name: "Large",
  38242. height: math.unit(150, "feet")
  38243. },
  38244. {
  38245. name: "Macro",
  38246. height: math.unit(1876, "feet")
  38247. },
  38248. {
  38249. name: "Mega Macro",
  38250. height: math.unit(121940, "feet")
  38251. },
  38252. {
  38253. name: "Giga Macro",
  38254. height: math.unit(750, "km")
  38255. },
  38256. {
  38257. name: "Tera Macro",
  38258. height: math.unit(750000, "km")
  38259. },
  38260. {
  38261. name: "Galactic",
  38262. height: math.unit(1.4e5, "km")
  38263. },
  38264. {
  38265. name: "Godlike",
  38266. height: math.unit(9.8e280, "galaxies")
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38272. {
  38273. front: {
  38274. height: math.unit(11, "meters"),
  38275. weight: math.unit(20, "tonnes"),
  38276. name: "Front",
  38277. image: {
  38278. source: "./media/characters/alistair/front.svg",
  38279. extra: 1265/1009,
  38280. bottom: 93/1358
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(11, "meters"),
  38288. default: true
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38294. {
  38295. front: {
  38296. height: math.unit(5 + 8/12, "feet"),
  38297. name: "Front",
  38298. image: {
  38299. source: "./media/characters/haruka/front.svg",
  38300. extra: 2012/1952,
  38301. bottom: 0/2012
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(5 + 8/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38315. {
  38316. back: {
  38317. height: math.unit(9, "feet"),
  38318. name: "Back",
  38319. image: {
  38320. source: "./media/characters/vivian-sylveon/back.svg",
  38321. extra: 1853/1714,
  38322. bottom: 0/1853
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Normal",
  38329. height: math.unit(9, "feet"),
  38330. default: true
  38331. },
  38332. {
  38333. name: "Macro",
  38334. height: math.unit(500, "feet")
  38335. },
  38336. {
  38337. name: "Megamacro",
  38338. height: math.unit(600, "miles")
  38339. },
  38340. {
  38341. name: "Gigamacro",
  38342. height: math.unit(30000, "miles")
  38343. },
  38344. ]
  38345. ))
  38346. characterMakers.push(() => makeCharacter(
  38347. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38348. {
  38349. anthro: {
  38350. height: math.unit(5 + 10/12, "feet"),
  38351. weight: math.unit(100, "lb"),
  38352. name: "Anthro",
  38353. image: {
  38354. source: "./media/characters/daiki/anthro.svg",
  38355. extra: 1115/1027,
  38356. bottom: 69/1184
  38357. }
  38358. },
  38359. feral: {
  38360. height: math.unit(200, "feet"),
  38361. name: "Feral",
  38362. image: {
  38363. source: "./media/characters/daiki/feral.svg",
  38364. extra: 1256/313,
  38365. bottom: 39/1295
  38366. }
  38367. },
  38368. feralHead: {
  38369. height: math.unit(171, "feet"),
  38370. name: "Feral Head",
  38371. image: {
  38372. source: "./media/characters/daiki/feral-head.svg"
  38373. }
  38374. },
  38375. manaDragon: {
  38376. height: math.unit(170, "meters"),
  38377. name: "Mana-dragon",
  38378. image: {
  38379. source: "./media/characters/daiki/mana-dragon.svg",
  38380. extra: 763/420,
  38381. bottom: 97/860
  38382. }
  38383. },
  38384. },
  38385. [
  38386. {
  38387. name: "Normal",
  38388. height: math.unit(5 + 10/12, "feet"),
  38389. default: true
  38390. },
  38391. ]
  38392. ))
  38393. characterMakers.push(() => makeCharacter(
  38394. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38395. {
  38396. fullyEquippedFront: {
  38397. height: math.unit(3 + 1/12, "feet"),
  38398. weight: math.unit(24, "lb"),
  38399. name: "Fully Equipped (Front)",
  38400. image: {
  38401. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38402. extra: 687/605,
  38403. bottom: 18/705
  38404. }
  38405. },
  38406. fullyEquippedBack: {
  38407. height: math.unit(3 + 1/12, "feet"),
  38408. weight: math.unit(24, "lb"),
  38409. name: "Fully Equipped (Back)",
  38410. image: {
  38411. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38412. extra: 689/590,
  38413. bottom: 18/707
  38414. }
  38415. },
  38416. dailyWear: {
  38417. height: math.unit(3 + 1/12, "feet"),
  38418. weight: math.unit(24, "lb"),
  38419. name: "Daily Wear",
  38420. image: {
  38421. source: "./media/characters/tea-spot/daily-wear.svg",
  38422. extra: 701/620,
  38423. bottom: 21/722
  38424. }
  38425. },
  38426. maidWork: {
  38427. height: math.unit(3 + 1/12, "feet"),
  38428. weight: math.unit(24, "lb"),
  38429. name: "Maid Work",
  38430. image: {
  38431. source: "./media/characters/tea-spot/maid-work.svg",
  38432. extra: 693/609,
  38433. bottom: 15/708
  38434. }
  38435. },
  38436. },
  38437. [
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(3 + 1/12, "feet"),
  38441. default: true
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(175, "cm"),
  38450. weight: math.unit(75, "kg"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/chee/front.svg",
  38454. extra: 1796/1740,
  38455. bottom: 40/1836
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Micro-Micro",
  38462. height: math.unit(1, "nm")
  38463. },
  38464. {
  38465. name: "Micro-erst",
  38466. height: math.unit(1, "micrometer")
  38467. },
  38468. {
  38469. name: "Micro-er",
  38470. height: math.unit(1, "cm")
  38471. },
  38472. {
  38473. name: "Normal",
  38474. height: math.unit(175, "cm"),
  38475. default: true
  38476. },
  38477. {
  38478. name: "Macro",
  38479. height: math.unit(100, "m")
  38480. },
  38481. {
  38482. name: "Macro-er",
  38483. height: math.unit(1, "km")
  38484. },
  38485. {
  38486. name: "Macro-erst",
  38487. height: math.unit(10, "km")
  38488. },
  38489. {
  38490. name: "Macro-Macro",
  38491. height: math.unit(100, "km")
  38492. },
  38493. ]
  38494. ))
  38495. characterMakers.push(() => makeCharacter(
  38496. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38497. {
  38498. front: {
  38499. height: math.unit(11 + 9/12, "feet"),
  38500. weight: math.unit(935, "lb"),
  38501. name: "Front",
  38502. image: {
  38503. source: "./media/characters/kingsley/front.svg",
  38504. extra: 1803/1674,
  38505. bottom: 127/1930
  38506. }
  38507. },
  38508. frontNude: {
  38509. height: math.unit(11 + 9/12, "feet"),
  38510. weight: math.unit(935, "lb"),
  38511. name: "Front (Nude)",
  38512. image: {
  38513. source: "./media/characters/kingsley/front-nude.svg",
  38514. extra: 1803/1674,
  38515. bottom: 127/1930
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Normal",
  38522. height: math.unit(11 + 9/12, "feet"),
  38523. default: true
  38524. },
  38525. ]
  38526. ))
  38527. characterMakers.push(() => makeCharacter(
  38528. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38529. {
  38530. side: {
  38531. height: math.unit(9, "feet"),
  38532. name: "Side",
  38533. image: {
  38534. source: "./media/characters/rymel/side.svg",
  38535. extra: 792/469,
  38536. bottom: 121/913
  38537. }
  38538. },
  38539. maw: {
  38540. height: math.unit(2.4, "meters"),
  38541. name: "Maw",
  38542. image: {
  38543. source: "./media/characters/rymel/maw.svg"
  38544. }
  38545. },
  38546. },
  38547. [
  38548. {
  38549. name: "House Drake",
  38550. height: math.unit(2, "feet")
  38551. },
  38552. {
  38553. name: "Reduced",
  38554. height: math.unit(4.5, "feet")
  38555. },
  38556. {
  38557. name: "Normal",
  38558. height: math.unit(9, "feet"),
  38559. default: true
  38560. },
  38561. ]
  38562. ))
  38563. characterMakers.push(() => makeCharacter(
  38564. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38565. {
  38566. front: {
  38567. height: math.unit(1.74, "meters"),
  38568. weight: math.unit(55, "kg"),
  38569. name: "Front",
  38570. image: {
  38571. source: "./media/characters/rubus/front.svg",
  38572. extra: 1894/1742,
  38573. bottom: 44/1938
  38574. }
  38575. },
  38576. },
  38577. [
  38578. {
  38579. name: "Normal",
  38580. height: math.unit(1.74, "meters"),
  38581. default: true
  38582. },
  38583. ]
  38584. ))
  38585. characterMakers.push(() => makeCharacter(
  38586. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38587. {
  38588. front: {
  38589. height: math.unit(5 + 2/12, "feet"),
  38590. weight: math.unit(112, "lb"),
  38591. name: "Front",
  38592. image: {
  38593. source: "./media/characters/cassie-kingston/front.svg",
  38594. extra: 1438/1390,
  38595. bottom: 47/1485
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(5 + 2/12, "feet"),
  38603. default: true
  38604. },
  38605. {
  38606. name: "Macro",
  38607. height: math.unit(128, "feet")
  38608. },
  38609. {
  38610. name: "Megamacro",
  38611. height: math.unit(2.56, "miles")
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(7, "feet"),
  38620. name: "Front",
  38621. image: {
  38622. source: "./media/characters/fox/front.svg",
  38623. extra: 1798/1703,
  38624. bottom: 55/1853
  38625. }
  38626. },
  38627. back: {
  38628. height: math.unit(7, "feet"),
  38629. name: "Back",
  38630. image: {
  38631. source: "./media/characters/fox/back.svg",
  38632. extra: 1748/1649,
  38633. bottom: 32/1780
  38634. }
  38635. },
  38636. head: {
  38637. height: math.unit(1.95, "feet"),
  38638. name: "Head",
  38639. image: {
  38640. source: "./media/characters/fox/head.svg"
  38641. }
  38642. },
  38643. dick: {
  38644. height: math.unit(1.33, "feet"),
  38645. name: "Dick",
  38646. image: {
  38647. source: "./media/characters/fox/dick.svg"
  38648. }
  38649. },
  38650. foot: {
  38651. height: math.unit(1, "feet"),
  38652. name: "Foot",
  38653. image: {
  38654. source: "./media/characters/fox/foot.svg"
  38655. }
  38656. },
  38657. paw: {
  38658. height: math.unit(0.92, "feet"),
  38659. name: "Paw",
  38660. image: {
  38661. source: "./media/characters/fox/paw.svg"
  38662. }
  38663. },
  38664. },
  38665. [
  38666. {
  38667. name: "Small",
  38668. height: math.unit(3, "inches")
  38669. },
  38670. {
  38671. name: "\"Realistic\"",
  38672. height: math.unit(7, "feet")
  38673. },
  38674. {
  38675. name: "Normal",
  38676. height: math.unit(150, "feet"),
  38677. default: true
  38678. },
  38679. {
  38680. name: "BIG",
  38681. height: math.unit(1200, "feet")
  38682. },
  38683. {
  38684. name: "👀",
  38685. height: math.unit(5, "miles")
  38686. },
  38687. {
  38688. name: "👀👀👀",
  38689. height: math.unit(64, "miles")
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(625, "feet"),
  38698. name: "Front",
  38699. image: {
  38700. source: "./media/characters/asonja-rossa/front.svg",
  38701. extra: 1833/1686,
  38702. bottom: 24/1857
  38703. }
  38704. },
  38705. back: {
  38706. height: math.unit(625, "feet"),
  38707. name: "Back",
  38708. image: {
  38709. source: "./media/characters/asonja-rossa/back.svg",
  38710. extra: 1852/1753,
  38711. bottom: 26/1878
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Macro",
  38718. height: math.unit(625, "feet"),
  38719. default: true
  38720. },
  38721. ]
  38722. ))
  38723. characterMakers.push(() => makeCharacter(
  38724. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38725. {
  38726. side: {
  38727. height: math.unit(8, "feet"),
  38728. name: "Side",
  38729. image: {
  38730. source: "./media/characters/rezukii/side.svg",
  38731. extra: 979/542,
  38732. bottom: 87/1066
  38733. }
  38734. },
  38735. sitting: {
  38736. height: math.unit(14.6, "feet"),
  38737. name: "Sitting",
  38738. image: {
  38739. source: "./media/characters/rezukii/sitting.svg",
  38740. extra: 1023/813,
  38741. bottom: 45/1068
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Tiny",
  38748. height: math.unit(2, "feet")
  38749. },
  38750. {
  38751. name: "Smol",
  38752. height: math.unit(4, "feet")
  38753. },
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(8, "feet"),
  38757. default: true
  38758. },
  38759. {
  38760. name: "Big",
  38761. height: math.unit(12, "feet")
  38762. },
  38763. {
  38764. name: "Macro",
  38765. height: math.unit(30, "feet")
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38771. {
  38772. front: {
  38773. height: math.unit(14, "feet"),
  38774. weight: math.unit(9.5, "tonnes"),
  38775. name: "Front",
  38776. image: {
  38777. source: "./media/characters/dawnheart/front.svg",
  38778. extra: 2792/2675,
  38779. bottom: 64/2856
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(14, "feet"),
  38787. default: true
  38788. },
  38789. ]
  38790. ))
  38791. characterMakers.push(() => makeCharacter(
  38792. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38793. {
  38794. front: {
  38795. height: math.unit(1.7, "m"),
  38796. name: "Front",
  38797. image: {
  38798. source: "./media/characters/gladi/front.svg",
  38799. extra: 1460/1362,
  38800. bottom: 19/1479
  38801. }
  38802. },
  38803. back: {
  38804. height: math.unit(1.7, "m"),
  38805. name: "Back",
  38806. image: {
  38807. source: "./media/characters/gladi/back.svg",
  38808. extra: 1459/1357,
  38809. bottom: 12/1471
  38810. }
  38811. },
  38812. feral: {
  38813. height: math.unit(2.05, "m"),
  38814. name: "Feral",
  38815. image: {
  38816. source: "./media/characters/gladi/feral.svg",
  38817. extra: 821/557,
  38818. bottom: 91/912
  38819. }
  38820. },
  38821. },
  38822. [
  38823. {
  38824. name: "Shortest",
  38825. height: math.unit(70, "cm")
  38826. },
  38827. {
  38828. name: "Normal",
  38829. height: math.unit(1.7, "m")
  38830. },
  38831. {
  38832. name: "Macro",
  38833. height: math.unit(10, "m"),
  38834. default: true
  38835. },
  38836. {
  38837. name: "Tallest",
  38838. height: math.unit(200, "m")
  38839. },
  38840. ]
  38841. ))
  38842. characterMakers.push(() => makeCharacter(
  38843. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38844. {
  38845. front: {
  38846. height: math.unit(5 + 7/12, "feet"),
  38847. weight: math.unit(2, "tons"),
  38848. name: "Front",
  38849. image: {
  38850. source: "./media/characters/erdno/front.svg",
  38851. extra: 1234/1129,
  38852. bottom: 35/1269
  38853. }
  38854. },
  38855. angled: {
  38856. height: math.unit(5 + 7/12, "feet"),
  38857. weight: math.unit(2, "tons"),
  38858. name: "Angled",
  38859. image: {
  38860. source: "./media/characters/erdno/angled.svg",
  38861. extra: 1185/1139,
  38862. bottom: 36/1221
  38863. }
  38864. },
  38865. side: {
  38866. height: math.unit(5 + 7/12, "feet"),
  38867. weight: math.unit(2, "tons"),
  38868. name: "Side",
  38869. image: {
  38870. source: "./media/characters/erdno/side.svg",
  38871. extra: 1191/1144,
  38872. bottom: 40/1231
  38873. }
  38874. },
  38875. back: {
  38876. height: math.unit(5 + 7/12, "feet"),
  38877. weight: math.unit(2, "tons"),
  38878. name: "Back",
  38879. image: {
  38880. source: "./media/characters/erdno/back.svg",
  38881. extra: 1202/1146,
  38882. bottom: 17/1219
  38883. }
  38884. },
  38885. frontNsfw: {
  38886. height: math.unit(5 + 7/12, "feet"),
  38887. weight: math.unit(2, "tons"),
  38888. name: "Front (NSFW)",
  38889. image: {
  38890. source: "./media/characters/erdno/front-nsfw.svg",
  38891. extra: 1234/1129,
  38892. bottom: 35/1269
  38893. }
  38894. },
  38895. angledNsfw: {
  38896. height: math.unit(5 + 7/12, "feet"),
  38897. weight: math.unit(2, "tons"),
  38898. name: "Angled (NSFW)",
  38899. image: {
  38900. source: "./media/characters/erdno/angled-nsfw.svg",
  38901. extra: 1185/1139,
  38902. bottom: 36/1221
  38903. }
  38904. },
  38905. sideNsfw: {
  38906. height: math.unit(5 + 7/12, "feet"),
  38907. weight: math.unit(2, "tons"),
  38908. name: "Side (NSFW)",
  38909. image: {
  38910. source: "./media/characters/erdno/side-nsfw.svg",
  38911. extra: 1191/1144,
  38912. bottom: 40/1231
  38913. }
  38914. },
  38915. backNsfw: {
  38916. height: math.unit(5 + 7/12, "feet"),
  38917. weight: math.unit(2, "tons"),
  38918. name: "Back (NSFW)",
  38919. image: {
  38920. source: "./media/characters/erdno/back-nsfw.svg",
  38921. extra: 1202/1146,
  38922. bottom: 17/1219
  38923. }
  38924. },
  38925. frontHyper: {
  38926. height: math.unit(5 + 7/12, "feet"),
  38927. weight: math.unit(2, "tons"),
  38928. name: "Front (Hyper)",
  38929. image: {
  38930. source: "./media/characters/erdno/front-hyper.svg",
  38931. extra: 1298/1136,
  38932. bottom: 35/1333
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(5 + 7/12, "feet"),
  38940. default: true
  38941. },
  38942. {
  38943. name: "Big",
  38944. height: math.unit(5.7, "meters")
  38945. },
  38946. {
  38947. name: "Macro",
  38948. height: math.unit(5.7, "kilometers")
  38949. },
  38950. {
  38951. name: "Megamacro",
  38952. height: math.unit(5.7, "earths")
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(5 + 10/12, "feet"),
  38961. weight: math.unit(150, "lb"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/jamie/front.svg",
  38965. extra: 1908/1768,
  38966. bottom: 19/1927
  38967. }
  38968. },
  38969. },
  38970. [
  38971. {
  38972. name: "Minimum",
  38973. height: math.unit(2, "cm")
  38974. },
  38975. {
  38976. name: "Micro",
  38977. height: math.unit(3, "inches")
  38978. },
  38979. {
  38980. name: "Normal",
  38981. height: math.unit(5 + 10/12, "feet"),
  38982. default: true
  38983. },
  38984. {
  38985. name: "Macro",
  38986. height: math.unit(150, "feet")
  38987. },
  38988. {
  38989. name: "Megamacro",
  38990. height: math.unit(10000, "m")
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(2, "meters"),
  38999. weight: math.unit(100, "kg"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/shiron/front.svg",
  39003. extra: 2103/1985,
  39004. bottom: 98/2201
  39005. }
  39006. },
  39007. back: {
  39008. height: math.unit(2, "meters"),
  39009. weight: math.unit(100, "kg"),
  39010. name: "Back",
  39011. image: {
  39012. source: "./media/characters/shiron/back.svg",
  39013. extra: 2110/2015,
  39014. bottom: 89/2199
  39015. }
  39016. },
  39017. hand: {
  39018. height: math.unit(0.96, "feet"),
  39019. name: "Hand",
  39020. image: {
  39021. source: "./media/characters/shiron/hand.svg"
  39022. }
  39023. },
  39024. foot: {
  39025. height: math.unit(1.464, "feet"),
  39026. name: "Foot",
  39027. image: {
  39028. source: "./media/characters/shiron/foot.svg"
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Normal",
  39035. height: math.unit(2, "meters")
  39036. },
  39037. {
  39038. name: "Macro",
  39039. height: math.unit(500, "meters"),
  39040. default: true
  39041. },
  39042. {
  39043. name: "Megamacro",
  39044. height: math.unit(20, "km")
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39050. {
  39051. front: {
  39052. height: math.unit(6, "feet"),
  39053. name: "Front",
  39054. image: {
  39055. source: "./media/characters/sam/front.svg",
  39056. extra: 849/826,
  39057. bottom: 19/868
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(6, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(8 + 4/12, "feet"),
  39074. weight: math.unit(122, "kg"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/namori-kurogawa/front.svg",
  39078. extra: 1894/1576,
  39079. bottom: 34/1928
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Normal",
  39086. height: math.unit(8 + 4/12, "feet"),
  39087. default: true
  39088. },
  39089. ]
  39090. ))
  39091. characterMakers.push(() => makeCharacter(
  39092. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39093. {
  39094. front: {
  39095. height: math.unit(9, "feet"),
  39096. weight: math.unit(621, "lb"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/unmru/front.svg",
  39100. extra: 1853/1747,
  39101. bottom: 73/1926
  39102. }
  39103. },
  39104. side: {
  39105. height: math.unit(9, "feet"),
  39106. weight: math.unit(621, "lb"),
  39107. name: "Side",
  39108. image: {
  39109. source: "./media/characters/unmru/side.svg",
  39110. extra: 1781/1671,
  39111. bottom: 127/1908
  39112. }
  39113. },
  39114. back: {
  39115. height: math.unit(9, "feet"),
  39116. weight: math.unit(621, "lb"),
  39117. name: "Back",
  39118. image: {
  39119. source: "./media/characters/unmru/back.svg",
  39120. extra: 1894/1765,
  39121. bottom: 75/1969
  39122. }
  39123. },
  39124. dick: {
  39125. height: math.unit(3, "feet"),
  39126. weight: math.unit(35, "lb"),
  39127. name: "Dick",
  39128. image: {
  39129. source: "./media/characters/unmru/dick.svg"
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Normal",
  39136. height: math.unit(9, "feet")
  39137. },
  39138. {
  39139. name: "Natural",
  39140. height: math.unit(27, "feet"),
  39141. default: true
  39142. },
  39143. {
  39144. name: "Giant",
  39145. height: math.unit(90, "feet")
  39146. },
  39147. {
  39148. name: "Kaiju",
  39149. height: math.unit(270, "feet")
  39150. },
  39151. {
  39152. name: "Macro",
  39153. height: math.unit(900, "feet")
  39154. },
  39155. {
  39156. name: "Macro+",
  39157. height: math.unit(2700, "feet")
  39158. },
  39159. {
  39160. name: "Megamacro",
  39161. height: math.unit(9000, "feet")
  39162. },
  39163. {
  39164. name: "City-Crushing",
  39165. height: math.unit(27000, "feet")
  39166. },
  39167. {
  39168. name: "Mountain-Mashing",
  39169. height: math.unit(90000, "feet")
  39170. },
  39171. {
  39172. name: "Earth-Eclipsing",
  39173. height: math.unit(2.7e8, "feet")
  39174. },
  39175. {
  39176. name: "Sol-Swallowing",
  39177. height: math.unit(9e10, "feet")
  39178. },
  39179. {
  39180. name: "Majoris-Munching",
  39181. height: math.unit(2.7e13, "feet")
  39182. },
  39183. ]
  39184. ))
  39185. characterMakers.push(() => makeCharacter(
  39186. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39187. {
  39188. front: {
  39189. height: math.unit(1, "inch"),
  39190. name: "Front",
  39191. image: {
  39192. source: "./media/characters/squeaks-mouse/front.svg",
  39193. extra: 352/308,
  39194. bottom: 25/377
  39195. }
  39196. },
  39197. },
  39198. [
  39199. {
  39200. name: "Micro",
  39201. height: math.unit(1, "inch"),
  39202. default: true
  39203. },
  39204. ]
  39205. ))
  39206. characterMakers.push(() => makeCharacter(
  39207. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39208. {
  39209. side: {
  39210. height: math.unit(35, "feet"),
  39211. name: "Side",
  39212. image: {
  39213. source: "./media/characters/sayko/side.svg",
  39214. extra: 1697/1021,
  39215. bottom: 82/1779
  39216. }
  39217. },
  39218. head: {
  39219. height: math.unit(16, "feet"),
  39220. name: "Head",
  39221. image: {
  39222. source: "./media/characters/sayko/head.svg"
  39223. }
  39224. },
  39225. forepaw: {
  39226. height: math.unit(7.85, "feet"),
  39227. name: "Forepaw",
  39228. image: {
  39229. source: "./media/characters/sayko/forepaw.svg"
  39230. }
  39231. },
  39232. hindpaw: {
  39233. height: math.unit(8.8, "feet"),
  39234. name: "Hindpaw",
  39235. image: {
  39236. source: "./media/characters/sayko/hindpaw.svg"
  39237. }
  39238. },
  39239. },
  39240. [
  39241. {
  39242. name: "Normal",
  39243. height: math.unit(35, "feet"),
  39244. default: true
  39245. },
  39246. {
  39247. name: "Colossus",
  39248. height: math.unit(100, "meters")
  39249. },
  39250. {
  39251. name: "\"Small\" Deity",
  39252. height: math.unit(1, "km")
  39253. },
  39254. {
  39255. name: "\"Large\" Deity",
  39256. height: math.unit(15, "km")
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39262. {
  39263. front: {
  39264. height: math.unit(6, "feet"),
  39265. weight: math.unit(250, "lb"),
  39266. name: "Front",
  39267. image: {
  39268. source: "./media/characters/mukiro/front.svg",
  39269. extra: 1368/1310,
  39270. bottom: 34/1402
  39271. }
  39272. },
  39273. },
  39274. [
  39275. {
  39276. name: "Normal",
  39277. height: math.unit(6, "feet"),
  39278. default: true
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39284. {
  39285. front: {
  39286. height: math.unit(12 + 4/12, "feet"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39290. extra: 1346/1311,
  39291. bottom: 65/1411
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Base",
  39298. height: math.unit(12 + 4/12, "feet"),
  39299. default: true
  39300. },
  39301. {
  39302. name: "Macro",
  39303. height: math.unit(150, "feet")
  39304. },
  39305. {
  39306. name: "Mega",
  39307. height: math.unit(2, "miles")
  39308. },
  39309. {
  39310. name: "Demi God",
  39311. height: math.unit(4, "AU")
  39312. },
  39313. {
  39314. name: "God Size",
  39315. height: math.unit(1, "universe")
  39316. },
  39317. ]
  39318. ))
  39319. characterMakers.push(() => makeCharacter(
  39320. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39321. {
  39322. front: {
  39323. height: math.unit(3 + 3/12, "feet"),
  39324. weight: math.unit(88, "lb"),
  39325. name: "Front",
  39326. image: {
  39327. source: "./media/characters/trey/front.svg",
  39328. extra: 1815/1509,
  39329. bottom: 60/1875
  39330. }
  39331. },
  39332. },
  39333. [
  39334. {
  39335. name: "Normal",
  39336. height: math.unit(3 + 3/12, "feet"),
  39337. default: true
  39338. },
  39339. ]
  39340. ))
  39341. characterMakers.push(() => makeCharacter(
  39342. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39343. {
  39344. front: {
  39345. height: math.unit(4, "meters"),
  39346. name: "Front",
  39347. image: {
  39348. source: "./media/characters/adelonda/front.svg",
  39349. extra: 1077/982,
  39350. bottom: 39/1116
  39351. }
  39352. },
  39353. back: {
  39354. height: math.unit(4, "meters"),
  39355. name: "Back",
  39356. image: {
  39357. source: "./media/characters/adelonda/back.svg",
  39358. extra: 1105/1003,
  39359. bottom: 25/1130
  39360. }
  39361. },
  39362. feral: {
  39363. height: math.unit(40/1.5, "meters"),
  39364. name: "Feral",
  39365. image: {
  39366. source: "./media/characters/adelonda/feral.svg",
  39367. extra: 597/271,
  39368. bottom: 387/984
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Normal",
  39375. height: math.unit(4, "meters"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(8 + 4/12, "feet"),
  39385. weight: math.unit(670, "lb"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/acadiel/front.svg",
  39389. extra: 1901/1595,
  39390. bottom: 142/2043
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(8 + 4/12, "feet"),
  39398. default: true
  39399. },
  39400. {
  39401. name: "Macro",
  39402. height: math.unit(200, "feet")
  39403. },
  39404. ]
  39405. ))
  39406. characterMakers.push(() => makeCharacter(
  39407. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39408. {
  39409. front: {
  39410. height: math.unit(6 + 2/12, "feet"),
  39411. weight: math.unit(185, "lb"),
  39412. name: "Front",
  39413. image: {
  39414. source: "./media/characters/kayne-ein/front.svg",
  39415. extra: 1780/1560,
  39416. bottom: 81/1861
  39417. }
  39418. },
  39419. },
  39420. [
  39421. {
  39422. name: "Normal",
  39423. height: math.unit(6 + 2/12, "feet"),
  39424. default: true
  39425. },
  39426. {
  39427. name: "Transformation Stage",
  39428. height: math.unit(15, "feet")
  39429. },
  39430. {
  39431. name: "Macro",
  39432. height: math.unit(150, "feet")
  39433. },
  39434. {
  39435. name: "Earth's Shadow",
  39436. height: math.unit(6200, "miles")
  39437. },
  39438. {
  39439. name: "Universal Demon",
  39440. height: math.unit(28e9, "parsecs")
  39441. },
  39442. {
  39443. name: "Multiverse God",
  39444. height: math.unit(3, "multiverses")
  39445. },
  39446. ]
  39447. ))
  39448. characterMakers.push(() => makeCharacter(
  39449. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39450. {
  39451. front: {
  39452. height: math.unit(5 + 5/12, "feet"),
  39453. name: "Front",
  39454. image: {
  39455. source: "./media/characters/fawn/front.svg",
  39456. extra: 1873/1731,
  39457. bottom: 95/1968
  39458. }
  39459. },
  39460. back: {
  39461. height: math.unit(5 + 5/12, "feet"),
  39462. name: "Back",
  39463. image: {
  39464. source: "./media/characters/fawn/back.svg",
  39465. extra: 1813/1700,
  39466. bottom: 14/1827
  39467. }
  39468. },
  39469. hoof: {
  39470. height: math.unit(1.45, "feet"),
  39471. name: "Hoof",
  39472. image: {
  39473. source: "./media/characters/fawn/hoof.svg"
  39474. }
  39475. },
  39476. },
  39477. [
  39478. {
  39479. name: "Normal",
  39480. height: math.unit(5 + 5/12, "feet"),
  39481. default: true
  39482. },
  39483. ]
  39484. ))
  39485. characterMakers.push(() => makeCharacter(
  39486. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39487. {
  39488. front: {
  39489. height: math.unit(2 + 5/12, "feet"),
  39490. name: "Front",
  39491. image: {
  39492. source: "./media/characters/orion/front.svg",
  39493. extra: 1366/1304,
  39494. bottom: 43/1409
  39495. }
  39496. },
  39497. paw: {
  39498. height: math.unit(0.52, "feet"),
  39499. name: "Paw",
  39500. image: {
  39501. source: "./media/characters/orion/paw.svg"
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Normal",
  39508. height: math.unit(2 + 5/12, "feet"),
  39509. default: true
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(5 + 10/12, "feet"),
  39518. name: "Front",
  39519. image: {
  39520. source: "./media/characters/vera/front.svg",
  39521. extra: 1680/1575,
  39522. bottom: 49/1729
  39523. }
  39524. },
  39525. back: {
  39526. height: math.unit(5 + 10/12, "feet"),
  39527. name: "Back",
  39528. image: {
  39529. source: "./media/characters/vera/back.svg",
  39530. extra: 1700/1588,
  39531. bottom: 18/1718
  39532. }
  39533. },
  39534. arcanine: {
  39535. height: math.unit(6 + 8/12, "feet"),
  39536. name: "Arcanine",
  39537. image: {
  39538. source: "./media/characters/vera/arcanine.svg",
  39539. extra: 1590/1511,
  39540. bottom: 71/1661
  39541. }
  39542. },
  39543. maw: {
  39544. height: math.unit(0.82, "feet"),
  39545. name: "Maw",
  39546. image: {
  39547. source: "./media/characters/vera/maw.svg"
  39548. }
  39549. },
  39550. mawArcanine: {
  39551. height: math.unit(0.97, "feet"),
  39552. name: "Maw (Arcanine)",
  39553. image: {
  39554. source: "./media/characters/vera/maw-arcanine.svg"
  39555. }
  39556. },
  39557. paw: {
  39558. height: math.unit(0.75, "feet"),
  39559. name: "Paw",
  39560. image: {
  39561. source: "./media/characters/vera/paw.svg"
  39562. }
  39563. },
  39564. pawprint: {
  39565. height: math.unit(0.52, "feet"),
  39566. name: "Pawprint",
  39567. image: {
  39568. source: "./media/characters/vera/pawprint.svg"
  39569. }
  39570. },
  39571. },
  39572. [
  39573. {
  39574. name: "Normal",
  39575. height: math.unit(5 + 10/12, "feet"),
  39576. default: true
  39577. },
  39578. {
  39579. name: "Macro",
  39580. height: math.unit(75, "feet")
  39581. },
  39582. ]
  39583. ))
  39584. characterMakers.push(() => makeCharacter(
  39585. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39586. {
  39587. front: {
  39588. height: math.unit(4, "feet"),
  39589. weight: math.unit(40, "lb"),
  39590. name: "Front",
  39591. image: {
  39592. source: "./media/characters/orvan-rabbit/front.svg",
  39593. extra: 1896/1642,
  39594. bottom: 29/1925
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Normal",
  39601. height: math.unit(4, "feet"),
  39602. default: true
  39603. },
  39604. ]
  39605. ))
  39606. characterMakers.push(() => makeCharacter(
  39607. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39608. {
  39609. front: {
  39610. height: math.unit(6, "feet"),
  39611. weight: math.unit(168, "lb"),
  39612. name: "Front",
  39613. image: {
  39614. source: "./media/characters/lisa/front.svg",
  39615. extra: 2065/1867,
  39616. bottom: 46/2111
  39617. }
  39618. },
  39619. back: {
  39620. height: math.unit(6, "feet"),
  39621. weight: math.unit(168, "lb"),
  39622. name: "Back",
  39623. image: {
  39624. source: "./media/characters/lisa/back.svg",
  39625. extra: 1982/1838,
  39626. bottom: 29/2011
  39627. }
  39628. },
  39629. maw: {
  39630. height: math.unit(0.81, "feet"),
  39631. name: "Maw",
  39632. image: {
  39633. source: "./media/characters/lisa/maw.svg"
  39634. }
  39635. },
  39636. paw: {
  39637. height: math.unit(0.9, "feet"),
  39638. name: "Paw",
  39639. image: {
  39640. source: "./media/characters/lisa/paw.svg"
  39641. }
  39642. },
  39643. caribousune: {
  39644. height: math.unit(7 + 2/12, "feet"),
  39645. weight: math.unit(268, "lb"),
  39646. name: "Caribousune",
  39647. image: {
  39648. source: "./media/characters/lisa/caribousune.svg",
  39649. extra: 1843/1633,
  39650. bottom: 29/1872
  39651. }
  39652. },
  39653. frontCaribousune: {
  39654. height: math.unit(7 + 2/12, "feet"),
  39655. weight: math.unit(268, "lb"),
  39656. name: "Front (Caribousune)",
  39657. image: {
  39658. source: "./media/characters/lisa/front-caribousune.svg",
  39659. extra: 1818/1638,
  39660. bottom: 52/1870
  39661. }
  39662. },
  39663. sideCaribousune: {
  39664. height: math.unit(7 + 2/12, "feet"),
  39665. weight: math.unit(268, "lb"),
  39666. name: "Side (Caribousune)",
  39667. image: {
  39668. source: "./media/characters/lisa/side-caribousune.svg",
  39669. extra: 1851/1635,
  39670. bottom: 16/1867
  39671. }
  39672. },
  39673. backCaribousune: {
  39674. height: math.unit(7 + 2/12, "feet"),
  39675. weight: math.unit(268, "lb"),
  39676. name: "Back (Caribousune)",
  39677. image: {
  39678. source: "./media/characters/lisa/back-caribousune.svg",
  39679. extra: 1801/1604,
  39680. bottom: 44/1845
  39681. }
  39682. },
  39683. caribou: {
  39684. height: math.unit(7 + 2/12, "feet"),
  39685. weight: math.unit(268, "lb"),
  39686. name: "Caribou",
  39687. image: {
  39688. source: "./media/characters/lisa/caribou.svg",
  39689. extra: 1843/1633,
  39690. bottom: 29/1872
  39691. }
  39692. },
  39693. frontCaribou: {
  39694. height: math.unit(7 + 2/12, "feet"),
  39695. weight: math.unit(268, "lb"),
  39696. name: "Front (Caribou)",
  39697. image: {
  39698. source: "./media/characters/lisa/front-caribou.svg",
  39699. extra: 1818/1638,
  39700. bottom: 52/1870
  39701. }
  39702. },
  39703. sideCaribou: {
  39704. height: math.unit(7 + 2/12, "feet"),
  39705. weight: math.unit(268, "lb"),
  39706. name: "Side (Caribou)",
  39707. image: {
  39708. source: "./media/characters/lisa/side-caribou.svg",
  39709. extra: 1851/1635,
  39710. bottom: 16/1867
  39711. }
  39712. },
  39713. backCaribou: {
  39714. height: math.unit(7 + 2/12, "feet"),
  39715. weight: math.unit(268, "lb"),
  39716. name: "Back (Caribou)",
  39717. image: {
  39718. source: "./media/characters/lisa/back-caribou.svg",
  39719. extra: 1801/1604,
  39720. bottom: 44/1845
  39721. }
  39722. },
  39723. mawCaribou: {
  39724. height: math.unit(1.45, "feet"),
  39725. name: "Maw (Caribou)",
  39726. image: {
  39727. source: "./media/characters/lisa/maw-caribou.svg"
  39728. }
  39729. },
  39730. mawCaribousune: {
  39731. height: math.unit(1.45, "feet"),
  39732. name: "Maw (Caribousune)",
  39733. image: {
  39734. source: "./media/characters/lisa/maw-caribousune.svg"
  39735. }
  39736. },
  39737. pawCaribousune: {
  39738. height: math.unit(1.61, "feet"),
  39739. name: "Paw (Caribou)",
  39740. image: {
  39741. source: "./media/characters/lisa/paw-caribousune.svg"
  39742. }
  39743. },
  39744. },
  39745. [
  39746. {
  39747. name: "Normal",
  39748. height: math.unit(6, "feet")
  39749. },
  39750. {
  39751. name: "God Size",
  39752. height: math.unit(72, "feet"),
  39753. default: true
  39754. },
  39755. {
  39756. name: "Towering",
  39757. height: math.unit(288, "feet")
  39758. },
  39759. {
  39760. name: "City Size",
  39761. height: math.unit(48384, "feet")
  39762. },
  39763. {
  39764. name: "Continental",
  39765. height: math.unit(4200, "miles")
  39766. },
  39767. {
  39768. name: "Planet Eater",
  39769. height: math.unit(42, "earths")
  39770. },
  39771. {
  39772. name: "Star Swallower",
  39773. height: math.unit(42, "solarradii")
  39774. },
  39775. {
  39776. name: "System Swallower",
  39777. height: math.unit(84000, "AU")
  39778. },
  39779. {
  39780. name: "Galaxy Gobbler",
  39781. height: math.unit(42, "galaxies")
  39782. },
  39783. {
  39784. name: "Universe Devourer",
  39785. height: math.unit(42, "universes")
  39786. },
  39787. {
  39788. name: "Multiverse Muncher",
  39789. height: math.unit(42, "multiverses")
  39790. },
  39791. ]
  39792. ))
  39793. characterMakers.push(() => makeCharacter(
  39794. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39795. {
  39796. front: {
  39797. height: math.unit(36, "feet"),
  39798. name: "Front",
  39799. image: {
  39800. source: "./media/characters/shadow-rat/front.svg",
  39801. extra: 1845/1758,
  39802. bottom: 83/1928
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Macro",
  39809. height: math.unit(36, "feet"),
  39810. default: true
  39811. },
  39812. ]
  39813. ))
  39814. characterMakers.push(() => makeCharacter(
  39815. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39816. {
  39817. side: {
  39818. height: math.unit(8, "feet"),
  39819. weight: math.unit(2630, "lb"),
  39820. name: "Side",
  39821. image: {
  39822. source: "./media/characters/torallia/side.svg",
  39823. extra: 2164/2021,
  39824. bottom: 371/2535
  39825. }
  39826. },
  39827. },
  39828. [
  39829. {
  39830. name: "Mortal Interaction",
  39831. height: math.unit(8, "feet")
  39832. },
  39833. {
  39834. name: "Natural",
  39835. height: math.unit(24, "feet"),
  39836. default: true
  39837. },
  39838. {
  39839. name: "Giant",
  39840. height: math.unit(80, "feet")
  39841. },
  39842. {
  39843. name: "Kaiju",
  39844. height: math.unit(240, "feet")
  39845. },
  39846. {
  39847. name: "Macro",
  39848. height: math.unit(800, "feet")
  39849. },
  39850. {
  39851. name: "Macro+",
  39852. height: math.unit(2400, "feet")
  39853. },
  39854. {
  39855. name: "Macro++",
  39856. height: math.unit(8000, "feet")
  39857. },
  39858. {
  39859. name: "City-Crushing",
  39860. height: math.unit(24000, "feet")
  39861. },
  39862. {
  39863. name: "Mountain-Mashing",
  39864. height: math.unit(80000, "feet")
  39865. },
  39866. {
  39867. name: "District Demolisher",
  39868. height: math.unit(240000, "feet")
  39869. },
  39870. {
  39871. name: "Tri-County Terror",
  39872. height: math.unit(800000, "feet")
  39873. },
  39874. {
  39875. name: "State Smasher",
  39876. height: math.unit(2.4e6, "feet")
  39877. },
  39878. {
  39879. name: "Nation Nemesis",
  39880. height: math.unit(8e6, "feet")
  39881. },
  39882. {
  39883. name: "Continent Cracker",
  39884. height: math.unit(2.4e7, "feet")
  39885. },
  39886. {
  39887. name: "Planet-Pillaging",
  39888. height: math.unit(8e7, "feet")
  39889. },
  39890. {
  39891. name: "Earth-Eclipsing",
  39892. height: math.unit(2.4e8, "feet")
  39893. },
  39894. {
  39895. name: "Jovian-Jostling",
  39896. height: math.unit(8e8, "feet")
  39897. },
  39898. {
  39899. name: "Gas Giant Gulper",
  39900. height: math.unit(2.4e9, "feet")
  39901. },
  39902. {
  39903. name: "Astral Annihilator",
  39904. height: math.unit(8e9, "feet")
  39905. },
  39906. {
  39907. name: "Celestial Conqueror",
  39908. height: math.unit(2.4e10, "feet")
  39909. },
  39910. {
  39911. name: "Sol-Swallowing",
  39912. height: math.unit(8e10, "feet")
  39913. },
  39914. {
  39915. name: "Hunter of the Heavens",
  39916. height: math.unit(2.4e13, "feet")
  39917. },
  39918. ]
  39919. ))
  39920. characterMakers.push(() => makeCharacter(
  39921. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39922. {
  39923. front: {
  39924. height: math.unit(6 + 8/12, "feet"),
  39925. weight: math.unit(250, "kilograms"),
  39926. volume: math.unit(28, "liters"),
  39927. name: "Front",
  39928. image: {
  39929. source: "./media/characters/rebecca-pawlson/front.svg",
  39930. extra: 1737/1596,
  39931. bottom: 107/1844
  39932. }
  39933. },
  39934. back: {
  39935. height: math.unit(6 + 8/12, "feet"),
  39936. weight: math.unit(250, "kilograms"),
  39937. volume: math.unit(28, "liters"),
  39938. name: "Back",
  39939. image: {
  39940. source: "./media/characters/rebecca-pawlson/back.svg",
  39941. extra: 1702/1523,
  39942. bottom: 86/1788
  39943. }
  39944. },
  39945. },
  39946. [
  39947. {
  39948. name: "Normal",
  39949. height: math.unit(6 + 8/12, "feet")
  39950. },
  39951. {
  39952. name: "Mini Macro",
  39953. height: math.unit(10, "feet"),
  39954. default: true
  39955. },
  39956. {
  39957. name: "Macro",
  39958. height: math.unit(100, "feet")
  39959. },
  39960. {
  39961. name: "Mega Macro",
  39962. height: math.unit(2500, "feet")
  39963. },
  39964. {
  39965. name: "Giga Macro",
  39966. height: math.unit(50, "miles")
  39967. },
  39968. ]
  39969. ))
  39970. characterMakers.push(() => makeCharacter(
  39971. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39972. {
  39973. front: {
  39974. height: math.unit(7 + 6/12, "feet"),
  39975. weight: math.unit(600, "lb"),
  39976. name: "Front",
  39977. image: {
  39978. source: "./media/characters/moxie-nova/front.svg",
  39979. extra: 1734/1652,
  39980. bottom: 41/1775
  39981. }
  39982. },
  39983. },
  39984. [
  39985. {
  39986. name: "Normal",
  39987. height: math.unit(7 + 6/12, "feet"),
  39988. default: true
  39989. },
  39990. ]
  39991. ))
  39992. characterMakers.push(() => makeCharacter(
  39993. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39994. {
  39995. goat: {
  39996. height: math.unit(4, "feet"),
  39997. weight: math.unit(180, "lb"),
  39998. name: "Goat",
  39999. image: {
  40000. source: "./media/characters/tiffany/goat.svg",
  40001. extra: 1845/1595,
  40002. bottom: 106/1951
  40003. }
  40004. },
  40005. front: {
  40006. height: math.unit(5, "feet"),
  40007. weight: math.unit(150, "lb"),
  40008. name: "Foxcoon",
  40009. image: {
  40010. source: "./media/characters/tiffany/foxcoon.svg",
  40011. extra: 1941/1845,
  40012. bottom: 58/1999
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Normal",
  40019. height: math.unit(5, "feet"),
  40020. default: true
  40021. },
  40022. ]
  40023. ))
  40024. characterMakers.push(() => makeCharacter(
  40025. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40026. {
  40027. front: {
  40028. height: math.unit(8, "feet"),
  40029. weight: math.unit(300, "lb"),
  40030. name: "Front",
  40031. image: {
  40032. source: "./media/characters/raxinath/front.svg",
  40033. extra: 1407/1309,
  40034. bottom: 39/1446
  40035. }
  40036. },
  40037. back: {
  40038. height: math.unit(8, "feet"),
  40039. weight: math.unit(300, "lb"),
  40040. name: "Back",
  40041. image: {
  40042. source: "./media/characters/raxinath/back.svg",
  40043. extra: 1405/1315,
  40044. bottom: 9/1414
  40045. }
  40046. },
  40047. },
  40048. [
  40049. {
  40050. name: "Speck",
  40051. height: math.unit(0.5, "nm")
  40052. },
  40053. {
  40054. name: "Micro",
  40055. height: math.unit(3, "inches")
  40056. },
  40057. {
  40058. name: "Kobold",
  40059. height: math.unit(3, "feet")
  40060. },
  40061. {
  40062. name: "Normal",
  40063. height: math.unit(8, "feet"),
  40064. default: true
  40065. },
  40066. {
  40067. name: "Giant",
  40068. height: math.unit(50, "feet")
  40069. },
  40070. {
  40071. name: "Macro",
  40072. height: math.unit(1000, "feet")
  40073. },
  40074. {
  40075. name: "Megamacro",
  40076. height: math.unit(1, "mile")
  40077. },
  40078. ]
  40079. ))
  40080. characterMakers.push(() => makeCharacter(
  40081. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40082. {
  40083. front: {
  40084. height: math.unit(10, "feet"),
  40085. weight: math.unit(1442, "lb"),
  40086. name: "Front",
  40087. image: {
  40088. source: "./media/characters/mal-dragon/front.svg",
  40089. extra: 1515/1444,
  40090. bottom: 113/1628
  40091. }
  40092. },
  40093. back: {
  40094. height: math.unit(10, "feet"),
  40095. weight: math.unit(1442, "lb"),
  40096. name: "Back",
  40097. image: {
  40098. source: "./media/characters/mal-dragon/back.svg",
  40099. extra: 1527/1434,
  40100. bottom: 25/1552
  40101. }
  40102. },
  40103. },
  40104. [
  40105. {
  40106. name: "Mortal Interaction",
  40107. height: math.unit(10, "feet"),
  40108. default: true
  40109. },
  40110. {
  40111. name: "Large",
  40112. height: math.unit(30, "feet")
  40113. },
  40114. {
  40115. name: "Kaiju",
  40116. height: math.unit(300, "feet")
  40117. },
  40118. {
  40119. name: "Megamacro",
  40120. height: math.unit(10000, "feet")
  40121. },
  40122. {
  40123. name: "Continent Cracker",
  40124. height: math.unit(30000000, "feet")
  40125. },
  40126. {
  40127. name: "Sol-Swallowing",
  40128. height: math.unit(1e11, "feet")
  40129. },
  40130. {
  40131. name: "Light Universal",
  40132. height: math.unit(5, "universes")
  40133. },
  40134. {
  40135. name: "Universe Atoms",
  40136. height: math.unit(1.829e9, "universes")
  40137. },
  40138. {
  40139. name: "Light Multiversal",
  40140. height: math.unit(5, "multiverses")
  40141. },
  40142. {
  40143. name: "Multiverse Atoms",
  40144. height: math.unit(1.829e9, "multiverses")
  40145. },
  40146. {
  40147. name: "Fabric of Time",
  40148. height: math.unit(1e262, "multiverses")
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40154. {
  40155. front: {
  40156. height: math.unit(9, "feet"),
  40157. weight: math.unit(1050, "lb"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/tabitha/front.svg",
  40161. extra: 2083/1994,
  40162. bottom: 68/2151
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Baseline",
  40169. height: math.unit(9, "feet"),
  40170. default: true
  40171. },
  40172. {
  40173. name: "Giant",
  40174. height: math.unit(90, "feet")
  40175. },
  40176. {
  40177. name: "Macro",
  40178. height: math.unit(900, "feet")
  40179. },
  40180. {
  40181. name: "Megamacro",
  40182. height: math.unit(9000, "feet")
  40183. },
  40184. {
  40185. name: "City-Crushing",
  40186. height: math.unit(27000, "feet")
  40187. },
  40188. {
  40189. name: "Mountain-Mashing",
  40190. height: math.unit(90000, "feet")
  40191. },
  40192. {
  40193. name: "Nation Nemesis",
  40194. height: math.unit(9e6, "feet")
  40195. },
  40196. {
  40197. name: "Continent Cracker",
  40198. height: math.unit(27e6, "feet")
  40199. },
  40200. {
  40201. name: "Earth-Eclipsing",
  40202. height: math.unit(2.7e8, "feet")
  40203. },
  40204. {
  40205. name: "Gas Giant Gulper",
  40206. height: math.unit(2.7e9, "feet")
  40207. },
  40208. {
  40209. name: "Sol-Swallowing",
  40210. height: math.unit(9e10, "feet")
  40211. },
  40212. {
  40213. name: "Galaxy Gulper",
  40214. height: math.unit(9, "galaxies")
  40215. },
  40216. {
  40217. name: "Cosmos Churner",
  40218. height: math.unit(9, "universes")
  40219. },
  40220. ]
  40221. ))
  40222. characterMakers.push(() => makeCharacter(
  40223. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40224. {
  40225. front: {
  40226. height: math.unit(160, "cm"),
  40227. weight: math.unit(55, "kg"),
  40228. name: "Front",
  40229. image: {
  40230. source: "./media/characters/tow/front.svg",
  40231. extra: 1751/1722,
  40232. bottom: 74/1825
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Norm",
  40239. height: math.unit(160, "cm")
  40240. },
  40241. {
  40242. name: "Casual",
  40243. height: math.unit(3200, "m"),
  40244. default: true
  40245. },
  40246. {
  40247. name: "Show-Off",
  40248. height: math.unit(160, "km")
  40249. },
  40250. ]
  40251. ))
  40252. characterMakers.push(() => makeCharacter(
  40253. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40254. {
  40255. front: {
  40256. height: math.unit(7 + 11/12, "feet"),
  40257. weight: math.unit(342.8, "lb"),
  40258. name: "Front",
  40259. image: {
  40260. source: "./media/characters/vivian-orca-dragon/front.svg",
  40261. extra: 1890/1865,
  40262. bottom: 28/1918
  40263. }
  40264. },
  40265. },
  40266. [
  40267. {
  40268. name: "Micro",
  40269. height: math.unit(5, "inches")
  40270. },
  40271. {
  40272. name: "Normal",
  40273. height: math.unit(7 + 11/12, "feet"),
  40274. default: true
  40275. },
  40276. {
  40277. name: "Macro",
  40278. height: math.unit(395 + 7/12, "feet")
  40279. },
  40280. ]
  40281. ))
  40282. characterMakers.push(() => makeCharacter(
  40283. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40284. {
  40285. side: {
  40286. height: math.unit(10, "feet"),
  40287. weight: math.unit(1442, "lb"),
  40288. name: "Side",
  40289. image: {
  40290. source: "./media/characters/lotherakon/side.svg",
  40291. extra: 1604/1497,
  40292. bottom: 89/1693
  40293. }
  40294. },
  40295. },
  40296. [
  40297. {
  40298. name: "Mortal Interaction",
  40299. height: math.unit(10, "feet")
  40300. },
  40301. {
  40302. name: "Large",
  40303. height: math.unit(30, "feet"),
  40304. default: true
  40305. },
  40306. {
  40307. name: "Giant",
  40308. height: math.unit(100, "feet")
  40309. },
  40310. {
  40311. name: "Kaiju",
  40312. height: math.unit(300, "feet")
  40313. },
  40314. {
  40315. name: "Macro",
  40316. height: math.unit(1000, "feet")
  40317. },
  40318. {
  40319. name: "Macro+",
  40320. height: math.unit(3000, "feet")
  40321. },
  40322. {
  40323. name: "Megamacro",
  40324. height: math.unit(10000, "feet")
  40325. },
  40326. {
  40327. name: "City-Crushing",
  40328. height: math.unit(30000, "feet")
  40329. },
  40330. {
  40331. name: "Continent Cracker",
  40332. height: math.unit(30e6, "feet")
  40333. },
  40334. {
  40335. name: "Earth Eclipsing",
  40336. height: math.unit(3e8, "feet")
  40337. },
  40338. {
  40339. name: "Gas Giant Gulper",
  40340. height: math.unit(3e9, "feet")
  40341. },
  40342. {
  40343. name: "Sol-Swallowing",
  40344. height: math.unit(1e11, "feet")
  40345. },
  40346. {
  40347. name: "System Swallower",
  40348. height: math.unit(3e14, "feet")
  40349. },
  40350. {
  40351. name: "Galaxy Gulper",
  40352. height: math.unit(10, "galaxies")
  40353. },
  40354. {
  40355. name: "Light Universal",
  40356. height: math.unit(5, "universes")
  40357. },
  40358. {
  40359. name: "Universe Palm",
  40360. height: math.unit(20, "universes")
  40361. },
  40362. {
  40363. name: "Light Multiversal",
  40364. height: math.unit(5, "multiverses")
  40365. },
  40366. {
  40367. name: "Multiverse Palm",
  40368. height: math.unit(20, "multiverses")
  40369. },
  40370. {
  40371. name: "Inferno Incarnate",
  40372. height: math.unit(1e7, "multiverses")
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(8, "feet"),
  40381. weight: math.unit(1200, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/malithee/front.svg",
  40385. extra: 1675/1640,
  40386. bottom: 162/1837
  40387. }
  40388. },
  40389. },
  40390. [
  40391. {
  40392. name: "Mortal Interaction",
  40393. height: math.unit(8, "feet"),
  40394. default: true
  40395. },
  40396. {
  40397. name: "Large",
  40398. height: math.unit(24, "feet")
  40399. },
  40400. {
  40401. name: "Kaiju",
  40402. height: math.unit(240, "feet")
  40403. },
  40404. {
  40405. name: "Megamacro",
  40406. height: math.unit(8000, "feet")
  40407. },
  40408. {
  40409. name: "Continent Cracker",
  40410. height: math.unit(24e6, "feet")
  40411. },
  40412. {
  40413. name: "Earth-Eclipsing",
  40414. height: math.unit(2.4e8, "feet")
  40415. },
  40416. {
  40417. name: "Sol-Swallowing",
  40418. height: math.unit(8e10, "feet")
  40419. },
  40420. {
  40421. name: "Galaxy Gulper",
  40422. height: math.unit(8, "galaxies")
  40423. },
  40424. {
  40425. name: "Light Universal",
  40426. height: math.unit(4, "universes")
  40427. },
  40428. {
  40429. name: "Universe Atoms",
  40430. height: math.unit(1.829e9, "universes")
  40431. },
  40432. {
  40433. name: "Light Multiversal",
  40434. height: math.unit(4, "multiverses")
  40435. },
  40436. {
  40437. name: "Multiverse Atoms",
  40438. height: math.unit(1.829e9, "multiverses")
  40439. },
  40440. {
  40441. name: "Nigh-Omnipresence",
  40442. height: math.unit(8e261, "multiverses")
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(10, "feet"),
  40451. weight: math.unit(1500, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/miles-thestia/front.svg",
  40455. extra: 1812/1727,
  40456. bottom: 86/1898
  40457. }
  40458. },
  40459. back: {
  40460. height: math.unit(10, "feet"),
  40461. weight: math.unit(1500, "lb"),
  40462. name: "Back",
  40463. image: {
  40464. source: "./media/characters/miles-thestia/back.svg",
  40465. extra: 1799/1690,
  40466. bottom: 47/1846
  40467. }
  40468. },
  40469. frontNsfw: {
  40470. height: math.unit(10, "feet"),
  40471. weight: math.unit(1500, "lb"),
  40472. name: "Front (NSFW)",
  40473. image: {
  40474. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40475. extra: 1812/1727,
  40476. bottom: 86/1898
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Mini-Macro",
  40483. height: math.unit(10, "feet"),
  40484. default: true
  40485. },
  40486. ]
  40487. ))
  40488. characterMakers.push(() => makeCharacter(
  40489. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40490. {
  40491. front: {
  40492. height: math.unit(25, "feet"),
  40493. name: "Front",
  40494. image: {
  40495. source: "./media/characters/titan-s-wulf/front.svg",
  40496. extra: 1560/1484,
  40497. bottom: 76/1636
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Smallest",
  40504. height: math.unit(25, "feet"),
  40505. default: true
  40506. },
  40507. {
  40508. name: "Normal",
  40509. height: math.unit(200, "feet")
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(200000, "feet")
  40514. },
  40515. {
  40516. name: "Multiversal Original",
  40517. height: math.unit(10000, "multiverses")
  40518. },
  40519. ]
  40520. ))
  40521. characterMakers.push(() => makeCharacter(
  40522. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40523. {
  40524. front: {
  40525. height: math.unit(8, "feet"),
  40526. weight: math.unit(553, "lb"),
  40527. name: "Front",
  40528. image: {
  40529. source: "./media/characters/tawendeh/front.svg",
  40530. extra: 2365/2268,
  40531. bottom: 83/2448
  40532. }
  40533. },
  40534. frontClothed: {
  40535. height: math.unit(8, "feet"),
  40536. weight: math.unit(553, "lb"),
  40537. name: "Front (Clothed)",
  40538. image: {
  40539. source: "./media/characters/tawendeh/front-clothed.svg",
  40540. extra: 2365/2268,
  40541. bottom: 83/2448
  40542. }
  40543. },
  40544. back: {
  40545. height: math.unit(8, "feet"),
  40546. weight: math.unit(553, "lb"),
  40547. name: "Back",
  40548. image: {
  40549. source: "./media/characters/tawendeh/back.svg",
  40550. extra: 2397/2294,
  40551. bottom: 42/2439
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Mortal Interaction",
  40558. height: math.unit(8, "feet"),
  40559. default: true
  40560. },
  40561. {
  40562. name: "Giant",
  40563. height: math.unit(80, "feet")
  40564. },
  40565. {
  40566. name: "Macro",
  40567. height: math.unit(800, "feet")
  40568. },
  40569. {
  40570. name: "Megamacro",
  40571. height: math.unit(8000, "feet")
  40572. },
  40573. {
  40574. name: "City-Crushing",
  40575. height: math.unit(24000, "feet")
  40576. },
  40577. {
  40578. name: "Mountain-Mashing",
  40579. height: math.unit(80000, "feet")
  40580. },
  40581. {
  40582. name: "Nation Nemesis",
  40583. height: math.unit(8e6, "feet")
  40584. },
  40585. {
  40586. name: "Continent Cracker",
  40587. height: math.unit(24e6, "feet")
  40588. },
  40589. {
  40590. name: "Earth-Eclipsing",
  40591. height: math.unit(2.4e8, "feet")
  40592. },
  40593. {
  40594. name: "Gas Giant Gulper",
  40595. height: math.unit(2.4e9, "feet")
  40596. },
  40597. {
  40598. name: "Sol-Swallowing",
  40599. height: math.unit(8e10, "feet")
  40600. },
  40601. {
  40602. name: "Galaxy Gulper",
  40603. height: math.unit(8, "galaxies")
  40604. },
  40605. {
  40606. name: "Cosmos Churner",
  40607. height: math.unit(8, "universes")
  40608. },
  40609. {
  40610. name: "Omnipotent Otter",
  40611. height: math.unit(80, "universes")
  40612. },
  40613. ]
  40614. ))
  40615. characterMakers.push(() => makeCharacter(
  40616. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40617. {
  40618. front: {
  40619. height: math.unit(2.6, "meters"),
  40620. weight: math.unit(900, "kg"),
  40621. name: "Front",
  40622. image: {
  40623. source: "./media/characters/neesha/front.svg",
  40624. extra: 1803/1653,
  40625. bottom: 128/1931
  40626. }
  40627. },
  40628. },
  40629. [
  40630. {
  40631. name: "Normal",
  40632. height: math.unit(2.6, "meters"),
  40633. default: true
  40634. },
  40635. {
  40636. name: "Macro",
  40637. height: math.unit(50, "meters")
  40638. },
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40643. {
  40644. front: {
  40645. height: math.unit(5, "feet"),
  40646. weight: math.unit(185, "lb"),
  40647. name: "Front",
  40648. image: {
  40649. source: "./media/characters/kyera/front.svg",
  40650. extra: 1875/1790,
  40651. bottom: 96/1971
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(5, "feet"),
  40659. default: true
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(7 + 6/12, "feet"),
  40668. weight: math.unit(540, "lb"),
  40669. name: "Front",
  40670. image: {
  40671. source: "./media/characters/yuko/front.svg",
  40672. extra: 1282/1222,
  40673. bottom: 101/1383
  40674. }
  40675. },
  40676. frontClothed: {
  40677. height: math.unit(7 + 6/12, "feet"),
  40678. weight: math.unit(540, "lb"),
  40679. name: "Front (Clothed)",
  40680. image: {
  40681. source: "./media/characters/yuko/front-clothed.svg",
  40682. extra: 1282/1222,
  40683. bottom: 101/1383
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Normal",
  40690. height: math.unit(7 + 6/12, "feet"),
  40691. default: true
  40692. },
  40693. {
  40694. name: "Macro",
  40695. height: math.unit(26 + 9/12, "feet")
  40696. },
  40697. {
  40698. name: "Megamacro",
  40699. height: math.unit(300, "feet")
  40700. },
  40701. {
  40702. name: "Gigamacro",
  40703. height: math.unit(5000, "feet")
  40704. },
  40705. {
  40706. name: "Planetary",
  40707. height: math.unit(10000, "miles")
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40713. {
  40714. front: {
  40715. height: math.unit(8 + 2/12, "feet"),
  40716. weight: math.unit(600, "lb"),
  40717. name: "Front",
  40718. image: {
  40719. source: "./media/characters/deam-nitrel/front.svg",
  40720. extra: 1308/1234,
  40721. bottom: 125/1433
  40722. }
  40723. },
  40724. },
  40725. [
  40726. {
  40727. name: "Normal",
  40728. height: math.unit(8 + 2/12, "feet"),
  40729. default: true
  40730. },
  40731. ]
  40732. ))
  40733. characterMakers.push(() => makeCharacter(
  40734. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40735. {
  40736. front: {
  40737. height: math.unit(6.1, "feet"),
  40738. weight: math.unit(180, "lb"),
  40739. name: "Front",
  40740. image: {
  40741. source: "./media/characters/skyress/front.svg",
  40742. extra: 1045/915,
  40743. bottom: 28/1073
  40744. }
  40745. },
  40746. maw: {
  40747. height: math.unit(1, "feet"),
  40748. name: "Maw",
  40749. image: {
  40750. source: "./media/characters/skyress/maw.svg"
  40751. }
  40752. },
  40753. },
  40754. [
  40755. {
  40756. name: "Normal",
  40757. height: math.unit(6.1, "feet"),
  40758. default: true
  40759. },
  40760. {
  40761. name: "Macro",
  40762. height: math.unit(200, "feet")
  40763. },
  40764. ]
  40765. ))
  40766. characterMakers.push(() => makeCharacter(
  40767. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40768. {
  40769. front: {
  40770. height: math.unit(4 + 2/12, "feet"),
  40771. weight: math.unit(40, "kg"),
  40772. name: "Front",
  40773. image: {
  40774. source: "./media/characters/amethyst-jones/front.svg",
  40775. extra: 1220/1150,
  40776. bottom: 101/1321
  40777. }
  40778. },
  40779. },
  40780. [
  40781. {
  40782. name: "Normal",
  40783. height: math.unit(4 + 2/12, "feet"),
  40784. default: true
  40785. },
  40786. ]
  40787. ))
  40788. characterMakers.push(() => makeCharacter(
  40789. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40790. {
  40791. front: {
  40792. height: math.unit(1.7, "m"),
  40793. weight: math.unit(135, "lb"),
  40794. name: "Front",
  40795. image: {
  40796. source: "./media/characters/jade/front.svg",
  40797. extra: 1818/1767,
  40798. bottom: 32/1850
  40799. }
  40800. },
  40801. back: {
  40802. height: math.unit(1.7, "m"),
  40803. weight: math.unit(135, "lb"),
  40804. name: "Back",
  40805. image: {
  40806. source: "./media/characters/jade/back.svg",
  40807. extra: 1869/1809,
  40808. bottom: 35/1904
  40809. }
  40810. },
  40811. hand: {
  40812. height: math.unit(0.24, "m"),
  40813. name: "Hand",
  40814. image: {
  40815. source: "./media/characters/jade/hand.svg"
  40816. }
  40817. },
  40818. foot: {
  40819. height: math.unit(0.263, "m"),
  40820. name: "Foot",
  40821. image: {
  40822. source: "./media/characters/jade/foot.svg"
  40823. }
  40824. },
  40825. dick: {
  40826. height: math.unit(0.47, "m"),
  40827. name: "Dick",
  40828. image: {
  40829. source: "./media/characters/jade/dick.svg"
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Micro",
  40836. height: math.unit(22, "cm")
  40837. },
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(1.7, "m"),
  40841. default: true
  40842. },
  40843. {
  40844. name: "Macro",
  40845. height: math.unit(152, "m")
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(100, "miles"),
  40854. weight: math.unit(20000, "tons"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/cookie/front.svg",
  40858. extra: 1125/1070,
  40859. bottom: 30/1155
  40860. }
  40861. },
  40862. },
  40863. [
  40864. {
  40865. name: "Big",
  40866. height: math.unit(50, "feet")
  40867. },
  40868. {
  40869. name: "Macro",
  40870. height: math.unit(100, "miles"),
  40871. default: true
  40872. },
  40873. {
  40874. name: "Megamacro",
  40875. height: math.unit(90000, "miles")
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(6, "feet"),
  40884. weight: math.unit(145, "lb"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/farzian/front.svg",
  40888. extra: 1902/1693,
  40889. bottom: 108/2010
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Macro",
  40896. height: math.unit(500, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(3 + 6/12, "feet"),
  40906. weight: math.unit(50, "lb"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/kimberly-tilson/front.svg",
  40910. extra: 1400/1322,
  40911. bottom: 36/1436
  40912. }
  40913. },
  40914. back: {
  40915. height: math.unit(3 + 6/12, "feet"),
  40916. weight: math.unit(50, "lb"),
  40917. name: "Back",
  40918. image: {
  40919. source: "./media/characters/kimberly-tilson/back.svg",
  40920. extra: 1370/1307,
  40921. bottom: 20/1390
  40922. }
  40923. },
  40924. },
  40925. [
  40926. {
  40927. name: "Normal",
  40928. height: math.unit(3 + 6/12, "feet"),
  40929. default: true
  40930. },
  40931. ]
  40932. ))
  40933. characterMakers.push(() => makeCharacter(
  40934. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40935. {
  40936. front: {
  40937. height: math.unit(1148, "feet"),
  40938. weight: math.unit(34057, "lb"),
  40939. name: "Front",
  40940. image: {
  40941. source: "./media/characters/harthos/front.svg",
  40942. extra: 1391/1339,
  40943. bottom: 13/1404
  40944. }
  40945. },
  40946. },
  40947. [
  40948. {
  40949. name: "Macro",
  40950. height: math.unit(1148, "feet"),
  40951. default: true
  40952. },
  40953. ]
  40954. ))
  40955. characterMakers.push(() => makeCharacter(
  40956. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40957. {
  40958. front: {
  40959. height: math.unit(15, "feet"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/hypatia/front.svg",
  40963. extra: 1653/1591,
  40964. bottom: 79/1732
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(15, "feet")
  40972. },
  40973. {
  40974. name: "Small",
  40975. height: math.unit(300, "feet")
  40976. },
  40977. {
  40978. name: "Macro",
  40979. height: math.unit(2500, "feet"),
  40980. default: true
  40981. },
  40982. {
  40983. name: "Mega Macro",
  40984. height: math.unit(1500, "miles")
  40985. },
  40986. {
  40987. name: "Giga Macro",
  40988. height: math.unit(1.5e6, "miles")
  40989. },
  40990. ]
  40991. ))
  40992. characterMakers.push(() => makeCharacter(
  40993. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40994. {
  40995. front: {
  40996. height: math.unit(6, "feet"),
  40997. weight: math.unit(200, "lb"),
  40998. name: "Front",
  40999. image: {
  41000. source: "./media/characters/wulver/front.svg",
  41001. extra: 1724/1632,
  41002. bottom: 130/1854
  41003. }
  41004. },
  41005. frontNsfw: {
  41006. height: math.unit(6, "feet"),
  41007. weight: math.unit(200, "lb"),
  41008. name: "Front (NSFW)",
  41009. image: {
  41010. source: "./media/characters/wulver/front-nsfw.svg",
  41011. extra: 1724/1632,
  41012. bottom: 130/1854
  41013. }
  41014. },
  41015. },
  41016. [
  41017. {
  41018. name: "Human-Sized",
  41019. height: math.unit(6, "feet")
  41020. },
  41021. {
  41022. name: "Normal",
  41023. height: math.unit(4, "meters"),
  41024. default: true
  41025. },
  41026. {
  41027. name: "Large",
  41028. height: math.unit(6, "m")
  41029. },
  41030. ]
  41031. ))
  41032. characterMakers.push(() => makeCharacter(
  41033. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41034. {
  41035. front: {
  41036. height: math.unit(7, "feet"),
  41037. name: "Front",
  41038. image: {
  41039. source: "./media/characters/maru/front.svg",
  41040. extra: 1595/1570,
  41041. bottom: 0/1595
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(7, "feet"),
  41049. default: true
  41050. },
  41051. {
  41052. name: "Macro",
  41053. height: math.unit(700, "feet")
  41054. },
  41055. {
  41056. name: "Mega Macro",
  41057. height: math.unit(25, "miles")
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41063. {
  41064. front: {
  41065. height: math.unit(6, "feet"),
  41066. weight: math.unit(170, "lb"),
  41067. name: "Front",
  41068. image: {
  41069. source: "./media/characters/xenon/front.svg",
  41070. extra: 1376/1305,
  41071. bottom: 56/1432
  41072. }
  41073. },
  41074. back: {
  41075. height: math.unit(6, "feet"),
  41076. weight: math.unit(170, "lb"),
  41077. name: "Back",
  41078. image: {
  41079. source: "./media/characters/xenon/back.svg",
  41080. extra: 1328/1259,
  41081. bottom: 95/1423
  41082. }
  41083. },
  41084. maw: {
  41085. height: math.unit(0.52, "feet"),
  41086. name: "Maw",
  41087. image: {
  41088. source: "./media/characters/xenon/maw.svg"
  41089. }
  41090. },
  41091. hand: {
  41092. height: math.unit(0.82, "feet"),
  41093. name: "Hand",
  41094. image: {
  41095. source: "./media/characters/xenon/hand.svg"
  41096. }
  41097. },
  41098. foot: {
  41099. height: math.unit(1.13, "feet"),
  41100. name: "Foot",
  41101. image: {
  41102. source: "./media/characters/xenon/foot.svg"
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Micro",
  41109. height: math.unit(0.8, "inches")
  41110. },
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(6, "feet")
  41114. },
  41115. {
  41116. name: "Macro",
  41117. height: math.unit(50, "feet"),
  41118. default: true
  41119. },
  41120. {
  41121. name: "Macro+",
  41122. height: math.unit(250, "feet")
  41123. },
  41124. {
  41125. name: "Megamacro",
  41126. height: math.unit(1500, "feet")
  41127. },
  41128. ]
  41129. ))
  41130. characterMakers.push(() => makeCharacter(
  41131. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41132. {
  41133. front: {
  41134. height: math.unit(7 + 5/12, "feet"),
  41135. name: "Front",
  41136. image: {
  41137. source: "./media/characters/zane/front.svg",
  41138. extra: 1260/1203,
  41139. bottom: 94/1354
  41140. }
  41141. },
  41142. back: {
  41143. height: math.unit(5.05, "feet"),
  41144. name: "Back",
  41145. image: {
  41146. source: "./media/characters/zane/back.svg",
  41147. extra: 893/829,
  41148. bottom: 30/923
  41149. }
  41150. },
  41151. werewolf: {
  41152. height: math.unit(11, "feet"),
  41153. name: "Werewolf",
  41154. image: {
  41155. source: "./media/characters/zane/werewolf.svg",
  41156. extra: 1383/1323,
  41157. bottom: 89/1472
  41158. }
  41159. },
  41160. foot: {
  41161. height: math.unit(1.46, "feet"),
  41162. name: "Foot",
  41163. image: {
  41164. source: "./media/characters/zane/foot.svg"
  41165. }
  41166. },
  41167. footFront: {
  41168. height: math.unit(0.784, "feet"),
  41169. name: "Foot (Front)",
  41170. image: {
  41171. source: "./media/characters/zane/foot-front.svg"
  41172. }
  41173. },
  41174. dick: {
  41175. height: math.unit(1.95, "feet"),
  41176. name: "Dick",
  41177. image: {
  41178. source: "./media/characters/zane/dick.svg"
  41179. }
  41180. },
  41181. dickWerewolf: {
  41182. height: math.unit(3.77, "feet"),
  41183. name: "Dick (Werewolf)",
  41184. image: {
  41185. source: "./media/characters/zane/dick.svg"
  41186. }
  41187. },
  41188. },
  41189. [
  41190. {
  41191. name: "Normal",
  41192. height: math.unit(7 + 5/12, "feet"),
  41193. default: true
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(6 + 2/12, "feet"),
  41202. weight: math.unit(284, "lb"),
  41203. name: "Front",
  41204. image: {
  41205. source: "./media/characters/benni-desparque/front.svg",
  41206. extra: 1353/1126,
  41207. bottom: 69/1422
  41208. }
  41209. },
  41210. },
  41211. [
  41212. {
  41213. name: "Civilian",
  41214. height: math.unit(6 + 2/12, "feet")
  41215. },
  41216. {
  41217. name: "Normal",
  41218. height: math.unit(98, "feet"),
  41219. default: true
  41220. },
  41221. {
  41222. name: "Kaiju Fighter",
  41223. height: math.unit(268, "feet")
  41224. },
  41225. ]
  41226. ))
  41227. characterMakers.push(() => makeCharacter(
  41228. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41229. {
  41230. front: {
  41231. height: math.unit(5, "feet"),
  41232. weight: math.unit(105, "lb"),
  41233. name: "Front",
  41234. image: {
  41235. source: "./media/characters/maxine/front.svg",
  41236. extra: 1386/1250,
  41237. bottom: 71/1457
  41238. }
  41239. },
  41240. },
  41241. [
  41242. {
  41243. name: "Normal",
  41244. height: math.unit(5, "feet"),
  41245. default: true
  41246. },
  41247. ]
  41248. ))
  41249. characterMakers.push(() => makeCharacter(
  41250. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41251. {
  41252. front: {
  41253. height: math.unit(11 + 7/12, "feet"),
  41254. weight: math.unit(9576, "lb"),
  41255. name: "Front",
  41256. image: {
  41257. source: "./media/characters/scaly/front.svg",
  41258. extra: 888/867,
  41259. bottom: 36/924
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Normal",
  41266. height: math.unit(11 + 7/12, "feet"),
  41267. default: true
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41273. {
  41274. front: {
  41275. height: math.unit(6 + 3/12, "feet"),
  41276. name: "Front",
  41277. image: {
  41278. source: "./media/characters/saelria/front.svg",
  41279. extra: 1243/1138,
  41280. bottom: 46/1289
  41281. }
  41282. },
  41283. },
  41284. [
  41285. {
  41286. name: "Micro",
  41287. height: math.unit(6, "inches"),
  41288. },
  41289. {
  41290. name: "Normal",
  41291. height: math.unit(6 + 3/12, "feet"),
  41292. default: true
  41293. },
  41294. {
  41295. name: "Macro",
  41296. height: math.unit(25, "feet")
  41297. },
  41298. ]
  41299. ))
  41300. characterMakers.push(() => makeCharacter(
  41301. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41302. {
  41303. front: {
  41304. height: math.unit(80, "meters"),
  41305. weight: math.unit(7000, "tonnes"),
  41306. name: "Front",
  41307. image: {
  41308. source: "./media/characters/tef/front.svg",
  41309. extra: 2036/1991,
  41310. bottom: 54/2090
  41311. }
  41312. },
  41313. back: {
  41314. height: math.unit(80, "meters"),
  41315. weight: math.unit(7000, "tonnes"),
  41316. name: "Back",
  41317. image: {
  41318. source: "./media/characters/tef/back.svg",
  41319. extra: 2036/1991,
  41320. bottom: 54/2090
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "Macro",
  41327. height: math.unit(80, "meters"),
  41328. default: true
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41334. {
  41335. front: {
  41336. height: math.unit(13, "feet"),
  41337. weight: math.unit(6, "tons"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/rover/front.svg",
  41341. extra: 1233/1156,
  41342. bottom: 50/1283
  41343. }
  41344. },
  41345. back: {
  41346. height: math.unit(13, "feet"),
  41347. weight: math.unit(6, "tons"),
  41348. name: "Back",
  41349. image: {
  41350. source: "./media/characters/rover/back.svg",
  41351. extra: 1327/1258,
  41352. bottom: 39/1366
  41353. }
  41354. },
  41355. },
  41356. [
  41357. {
  41358. name: "Normal",
  41359. height: math.unit(13, "feet"),
  41360. default: true
  41361. },
  41362. {
  41363. name: "Macro",
  41364. height: math.unit(1300, "feet")
  41365. },
  41366. {
  41367. name: "Megamacro",
  41368. height: math.unit(1300, "miles")
  41369. },
  41370. {
  41371. name: "Gigamacro",
  41372. height: math.unit(1300000, "miles")
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41378. {
  41379. front: {
  41380. height: math.unit(6, "feet"),
  41381. weight: math.unit(150, "lb"),
  41382. name: "Front",
  41383. image: {
  41384. source: "./media/characters/ariz/front.svg",
  41385. extra: 1401/1346,
  41386. bottom: 5/1406
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(10, "feet"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41400. {
  41401. front: {
  41402. height: math.unit(6, "feet"),
  41403. weight: math.unit(140, "lb"),
  41404. name: "Front",
  41405. image: {
  41406. source: "./media/characters/sigrun/front.svg",
  41407. extra: 1418/1359,
  41408. bottom: 27/1445
  41409. }
  41410. },
  41411. },
  41412. [
  41413. {
  41414. name: "Macro",
  41415. height: math.unit(35, "feet"),
  41416. default: true
  41417. },
  41418. ]
  41419. ))
  41420. characterMakers.push(() => makeCharacter(
  41421. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41422. {
  41423. front: {
  41424. height: math.unit(6, "feet"),
  41425. weight: math.unit(150, "lb"),
  41426. name: "Front",
  41427. image: {
  41428. source: "./media/characters/numin/front.svg",
  41429. extra: 1433/1388,
  41430. bottom: 12/1445
  41431. }
  41432. },
  41433. },
  41434. [
  41435. {
  41436. name: "Macro",
  41437. height: math.unit(21.5, "km"),
  41438. default: true
  41439. },
  41440. ]
  41441. ))
  41442. characterMakers.push(() => makeCharacter(
  41443. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41444. {
  41445. front: {
  41446. height: math.unit(6, "feet"),
  41447. weight: math.unit(463, "lb"),
  41448. name: "Front",
  41449. image: {
  41450. source: "./media/characters/melwa/front.svg",
  41451. extra: 1307/1248,
  41452. bottom: 93/1400
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Macro",
  41459. height: math.unit(50, "meters"),
  41460. default: true
  41461. },
  41462. ]
  41463. ))
  41464. characterMakers.push(() => makeCharacter(
  41465. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41466. {
  41467. front: {
  41468. height: math.unit(325, "feet"),
  41469. name: "Front",
  41470. image: {
  41471. source: "./media/characters/zorkaiju/front.svg",
  41472. extra: 1955/1814,
  41473. bottom: 40/1995
  41474. }
  41475. },
  41476. frontExtended: {
  41477. height: math.unit(325, "feet"),
  41478. name: "Front (Extended)",
  41479. image: {
  41480. source: "./media/characters/zorkaiju/front-extended.svg",
  41481. extra: 1955/1814,
  41482. bottom: 40/1995
  41483. }
  41484. },
  41485. side: {
  41486. height: math.unit(325, "feet"),
  41487. name: "Side",
  41488. image: {
  41489. source: "./media/characters/zorkaiju/side.svg",
  41490. extra: 1495/1396,
  41491. bottom: 17/1512
  41492. }
  41493. },
  41494. sideExtended: {
  41495. height: math.unit(325, "feet"),
  41496. name: "Side (Extended)",
  41497. image: {
  41498. source: "./media/characters/zorkaiju/side-extended.svg",
  41499. extra: 1495/1396,
  41500. bottom: 17/1512
  41501. }
  41502. },
  41503. back: {
  41504. height: math.unit(325, "feet"),
  41505. name: "Back",
  41506. image: {
  41507. source: "./media/characters/zorkaiju/back.svg",
  41508. extra: 1959/1821,
  41509. bottom: 31/1990
  41510. }
  41511. },
  41512. backExtended: {
  41513. height: math.unit(325, "feet"),
  41514. name: "Back (Extended)",
  41515. image: {
  41516. source: "./media/characters/zorkaiju/back-extended.svg",
  41517. extra: 1959/1821,
  41518. bottom: 31/1990
  41519. }
  41520. },
  41521. hand: {
  41522. height: math.unit(58.4, "feet"),
  41523. name: "Hand",
  41524. image: {
  41525. source: "./media/characters/zorkaiju/hand.svg"
  41526. }
  41527. },
  41528. handExtended: {
  41529. height: math.unit(61.4, "feet"),
  41530. name: "Hand (Extended)",
  41531. image: {
  41532. source: "./media/characters/zorkaiju/hand-extended.svg"
  41533. }
  41534. },
  41535. foot: {
  41536. height: math.unit(95, "feet"),
  41537. name: "Foot",
  41538. image: {
  41539. source: "./media/characters/zorkaiju/foot.svg"
  41540. }
  41541. },
  41542. leftArm: {
  41543. height: math.unit(59, "feet"),
  41544. name: "Left Arm",
  41545. image: {
  41546. source: "./media/characters/zorkaiju/left-arm.svg"
  41547. }
  41548. },
  41549. rightArm: {
  41550. height: math.unit(59, "feet"),
  41551. name: "Right Arm",
  41552. image: {
  41553. source: "./media/characters/zorkaiju/right-arm.svg"
  41554. }
  41555. },
  41556. tail: {
  41557. height: math.unit(104, "feet"),
  41558. name: "Tail",
  41559. image: {
  41560. source: "./media/characters/zorkaiju/tail.svg"
  41561. }
  41562. },
  41563. tailExtended: {
  41564. height: math.unit(104, "feet"),
  41565. name: "Tail (Extended)",
  41566. image: {
  41567. source: "./media/characters/zorkaiju/tail-extended.svg"
  41568. }
  41569. },
  41570. tailBottom: {
  41571. height: math.unit(104, "feet"),
  41572. name: "Tail Bottom",
  41573. image: {
  41574. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41575. }
  41576. },
  41577. crystal: {
  41578. height: math.unit(27.54, "feet"),
  41579. name: "Crystal",
  41580. image: {
  41581. source: "./media/characters/zorkaiju/crystal.svg"
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Kaiju",
  41588. height: math.unit(325, "feet"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41595. {
  41596. front: {
  41597. height: math.unit(6 + 1/12, "feet"),
  41598. weight: math.unit(115, "lb"),
  41599. name: "Front",
  41600. image: {
  41601. source: "./media/characters/bailey-belfry/front.svg",
  41602. extra: 1240/1121,
  41603. bottom: 101/1341
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Normal",
  41610. height: math.unit(6 + 1/12, "feet"),
  41611. default: true
  41612. },
  41613. ]
  41614. ))
  41615. characterMakers.push(() => makeCharacter(
  41616. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41617. {
  41618. side: {
  41619. height: math.unit(4, "meters"),
  41620. weight: math.unit(250, "kg"),
  41621. name: "Side",
  41622. image: {
  41623. source: "./media/characters/blacky/side.svg",
  41624. extra: 1027/919,
  41625. bottom: 43/1070
  41626. }
  41627. },
  41628. maw: {
  41629. height: math.unit(1, "meters"),
  41630. name: "Maw",
  41631. image: {
  41632. source: "./media/characters/blacky/maw.svg"
  41633. }
  41634. },
  41635. paw: {
  41636. height: math.unit(1, "meters"),
  41637. name: "Paw",
  41638. image: {
  41639. source: "./media/characters/blacky/paw.svg"
  41640. }
  41641. },
  41642. },
  41643. [
  41644. {
  41645. name: "Normal",
  41646. height: math.unit(4, "meters"),
  41647. default: true
  41648. },
  41649. ]
  41650. ))
  41651. characterMakers.push(() => makeCharacter(
  41652. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41653. {
  41654. front: {
  41655. height: math.unit(170, "cm"),
  41656. weight: math.unit(66, "kg"),
  41657. name: "Front",
  41658. image: {
  41659. source: "./media/characters/thux-ei/front.svg",
  41660. extra: 1109/1011,
  41661. bottom: 8/1117
  41662. }
  41663. },
  41664. },
  41665. [
  41666. {
  41667. name: "Normal",
  41668. height: math.unit(170, "cm"),
  41669. default: true
  41670. },
  41671. ]
  41672. ))
  41673. characterMakers.push(() => makeCharacter(
  41674. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41675. {
  41676. front: {
  41677. height: math.unit(5, "feet"),
  41678. weight: math.unit(120, "lb"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/roxanne-voltaire/front.svg",
  41682. extra: 1901/1779,
  41683. bottom: 53/1954
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Normal",
  41690. height: math.unit(5, "feet"),
  41691. default: true
  41692. },
  41693. {
  41694. name: "Giant",
  41695. height: math.unit(50, "feet")
  41696. },
  41697. {
  41698. name: "Titan",
  41699. height: math.unit(500, "feet")
  41700. },
  41701. {
  41702. name: "Macro",
  41703. height: math.unit(5000, "feet")
  41704. },
  41705. {
  41706. name: "Megamacro",
  41707. height: math.unit(50000, "feet")
  41708. },
  41709. {
  41710. name: "Gigamacro",
  41711. height: math.unit(500000, "feet")
  41712. },
  41713. {
  41714. name: "Teramacro",
  41715. height: math.unit(5e6, "feet")
  41716. },
  41717. ]
  41718. ))
  41719. characterMakers.push(() => makeCharacter(
  41720. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41721. {
  41722. front: {
  41723. height: math.unit(6 + 2/12, "feet"),
  41724. name: "Front",
  41725. image: {
  41726. source: "./media/characters/squeaks/front.svg",
  41727. extra: 1823/1768,
  41728. bottom: 138/1961
  41729. }
  41730. },
  41731. },
  41732. [
  41733. {
  41734. name: "Micro",
  41735. height: math.unit(0.5, "inches")
  41736. },
  41737. {
  41738. name: "Normal",
  41739. height: math.unit(6 + 2/12, "feet"),
  41740. default: true
  41741. },
  41742. {
  41743. name: "Macro",
  41744. height: math.unit(600, "feet")
  41745. },
  41746. ]
  41747. ))
  41748. characterMakers.push(() => makeCharacter(
  41749. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41750. {
  41751. front: {
  41752. height: math.unit(1.72, "meters"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/archinger/front.svg",
  41756. extra: 1861/1675,
  41757. bottom: 125/1986
  41758. }
  41759. },
  41760. back: {
  41761. height: math.unit(1.72, "meters"),
  41762. name: "Back",
  41763. image: {
  41764. source: "./media/characters/archinger/back.svg",
  41765. extra: 1844/1701,
  41766. bottom: 104/1948
  41767. }
  41768. },
  41769. cock: {
  41770. height: math.unit(0.59, "feet"),
  41771. name: "Cock",
  41772. image: {
  41773. source: "./media/characters/archinger/cock.svg"
  41774. }
  41775. },
  41776. },
  41777. [
  41778. {
  41779. name: "Normal",
  41780. height: math.unit(1.72, "meters"),
  41781. default: true
  41782. },
  41783. {
  41784. name: "Macro",
  41785. height: math.unit(84, "meters")
  41786. },
  41787. {
  41788. name: "Macro+",
  41789. height: math.unit(112, "meters")
  41790. },
  41791. {
  41792. name: "Macro++",
  41793. height: math.unit(960, "meters")
  41794. },
  41795. {
  41796. name: "Macro+++",
  41797. height: math.unit(4, "km")
  41798. },
  41799. {
  41800. name: "Macro++++",
  41801. height: math.unit(48, "km")
  41802. },
  41803. {
  41804. name: "Macro+++++",
  41805. height: math.unit(4500, "km")
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41811. {
  41812. front: {
  41813. height: math.unit(5 + 5/12, "feet"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/alsnapz/front.svg",
  41817. extra: 1157/1065,
  41818. bottom: 42/1199
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Normal",
  41825. height: math.unit(5 + 5/12, "feet"),
  41826. default: true
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41832. {
  41833. side: {
  41834. height: math.unit(3.2, "earths"),
  41835. name: "Side",
  41836. image: {
  41837. source: "./media/characters/mag/side.svg",
  41838. extra: 1331/1008,
  41839. bottom: 52/1383
  41840. }
  41841. },
  41842. wing: {
  41843. height: math.unit(1.94, "earths"),
  41844. name: "Wing",
  41845. image: {
  41846. source: "./media/characters/mag/wing.svg"
  41847. }
  41848. },
  41849. dick: {
  41850. height: math.unit(1.8, "earths"),
  41851. name: "Dick",
  41852. image: {
  41853. source: "./media/characters/mag/dick.svg"
  41854. }
  41855. },
  41856. ass: {
  41857. height: math.unit(1.33, "earths"),
  41858. name: "Ass",
  41859. image: {
  41860. source: "./media/characters/mag/ass.svg"
  41861. }
  41862. },
  41863. head: {
  41864. height: math.unit(1.1, "earths"),
  41865. name: "Head",
  41866. image: {
  41867. source: "./media/characters/mag/head.svg"
  41868. }
  41869. },
  41870. maw: {
  41871. height: math.unit(1.62, "earths"),
  41872. name: "Maw",
  41873. image: {
  41874. source: "./media/characters/mag/maw.svg"
  41875. }
  41876. },
  41877. },
  41878. [
  41879. {
  41880. name: "Small",
  41881. height: math.unit(162, "feet")
  41882. },
  41883. {
  41884. name: "Normal",
  41885. height: math.unit(3.2, "earths"),
  41886. default: true
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41892. {
  41893. front: {
  41894. height: math.unit(512, "feet"),
  41895. weight: math.unit(63509, "tonnes"),
  41896. name: "Front",
  41897. image: {
  41898. source: "./media/characters/vorrel-harroc/front.svg",
  41899. extra: 1075/1063,
  41900. bottom: 62/1137
  41901. }
  41902. },
  41903. },
  41904. [
  41905. {
  41906. name: "Normal",
  41907. height: math.unit(10, "feet")
  41908. },
  41909. {
  41910. name: "Macro",
  41911. height: math.unit(512, "feet"),
  41912. default: true
  41913. },
  41914. {
  41915. name: "Megamacro",
  41916. height: math.unit(256, "miles")
  41917. },
  41918. {
  41919. name: "Gigamacro",
  41920. height: math.unit(4096, "miles")
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41926. {
  41927. side: {
  41928. height: math.unit(50, "feet"),
  41929. name: "Side",
  41930. image: {
  41931. source: "./media/characters/froimar/side.svg",
  41932. extra: 855/638,
  41933. bottom: 99/954
  41934. }
  41935. },
  41936. },
  41937. [
  41938. {
  41939. name: "Macro",
  41940. height: math.unit(50, "feet"),
  41941. default: true
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41947. {
  41948. front: {
  41949. height: math.unit(210, "miles"),
  41950. name: "Front",
  41951. image: {
  41952. source: "./media/characters/timothy/front.svg",
  41953. extra: 1007/943,
  41954. bottom: 62/1069
  41955. }
  41956. },
  41957. frontSkirt: {
  41958. height: math.unit(210, "miles"),
  41959. name: "Front (Skirt)",
  41960. image: {
  41961. source: "./media/characters/timothy/front-skirt.svg",
  41962. extra: 1007/943,
  41963. bottom: 62/1069
  41964. }
  41965. },
  41966. frontCoat: {
  41967. height: math.unit(210, "miles"),
  41968. name: "Front (Coat)",
  41969. image: {
  41970. source: "./media/characters/timothy/front-coat.svg",
  41971. extra: 1007/943,
  41972. bottom: 62/1069
  41973. }
  41974. },
  41975. },
  41976. [
  41977. {
  41978. name: "Macro",
  41979. height: math.unit(210, "miles"),
  41980. default: true
  41981. },
  41982. {
  41983. name: "Megamacro",
  41984. height: math.unit(210000, "miles")
  41985. },
  41986. ]
  41987. ))
  41988. characterMakers.push(() => makeCharacter(
  41989. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41990. {
  41991. front: {
  41992. height: math.unit(188, "feet"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/pyotr/front.svg",
  41996. extra: 1912/1826,
  41997. bottom: 18/1930
  41998. }
  41999. },
  42000. },
  42001. [
  42002. {
  42003. name: "Macro",
  42004. height: math.unit(188, "feet"),
  42005. default: true
  42006. },
  42007. {
  42008. name: "Megamacro",
  42009. height: math.unit(8, "miles")
  42010. },
  42011. ]
  42012. ))
  42013. characterMakers.push(() => makeCharacter(
  42014. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42015. {
  42016. side: {
  42017. height: math.unit(10, "feet"),
  42018. weight: math.unit(4500, "lb"),
  42019. name: "Side",
  42020. image: {
  42021. source: "./media/characters/ackart/side.svg",
  42022. extra: 1776/1668,
  42023. bottom: 116/1892
  42024. }
  42025. },
  42026. },
  42027. [
  42028. {
  42029. name: "Normal",
  42030. height: math.unit(10, "feet"),
  42031. default: true
  42032. },
  42033. ]
  42034. ))
  42035. characterMakers.push(() => makeCharacter(
  42036. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42037. {
  42038. side: {
  42039. height: math.unit(21, "feet"),
  42040. name: "Side",
  42041. image: {
  42042. source: "./media/characters/nolow/side.svg",
  42043. extra: 1484/1434,
  42044. bottom: 85/1569
  42045. }
  42046. },
  42047. sideErect: {
  42048. height: math.unit(21, "feet"),
  42049. name: "Side-erect",
  42050. image: {
  42051. source: "./media/characters/nolow/side-erect.svg",
  42052. extra: 1484/1434,
  42053. bottom: 85/1569
  42054. }
  42055. },
  42056. },
  42057. [
  42058. {
  42059. name: "Regular",
  42060. height: math.unit(12, "feet")
  42061. },
  42062. {
  42063. name: "Big Chee",
  42064. height: math.unit(21, "feet"),
  42065. default: true
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42071. {
  42072. front: {
  42073. height: math.unit(7, "feet"),
  42074. weight: math.unit(250, "lb"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/nines/front.svg",
  42078. extra: 1741/1607,
  42079. bottom: 41/1782
  42080. }
  42081. },
  42082. side: {
  42083. height: math.unit(7, "feet"),
  42084. weight: math.unit(250, "lb"),
  42085. name: "Side",
  42086. image: {
  42087. source: "./media/characters/nines/side.svg",
  42088. extra: 1854/1735,
  42089. bottom: 93/1947
  42090. }
  42091. },
  42092. back: {
  42093. height: math.unit(7, "feet"),
  42094. weight: math.unit(250, "lb"),
  42095. name: "Back",
  42096. image: {
  42097. source: "./media/characters/nines/back.svg",
  42098. extra: 1748/1615,
  42099. bottom: 20/1768
  42100. }
  42101. },
  42102. },
  42103. [
  42104. {
  42105. name: "Megamacro",
  42106. height: math.unit(99, "km"),
  42107. default: true
  42108. },
  42109. ]
  42110. ))
  42111. characterMakers.push(() => makeCharacter(
  42112. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42113. {
  42114. front: {
  42115. height: math.unit(5 + 10/12, "feet"),
  42116. weight: math.unit(210, "lb"),
  42117. name: "Front",
  42118. image: {
  42119. source: "./media/characters/zenith/front.svg",
  42120. extra: 1531/1452,
  42121. bottom: 198/1729
  42122. }
  42123. },
  42124. back: {
  42125. height: math.unit(5 + 10/12, "feet"),
  42126. weight: math.unit(210, "lb"),
  42127. name: "Back",
  42128. image: {
  42129. source: "./media/characters/zenith/back.svg",
  42130. extra: 1571/1487,
  42131. bottom: 75/1646
  42132. }
  42133. },
  42134. },
  42135. [
  42136. {
  42137. name: "Normal",
  42138. height: math.unit(5 + 10/12, "feet"),
  42139. default: true
  42140. }
  42141. ]
  42142. ))
  42143. characterMakers.push(() => makeCharacter(
  42144. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42145. {
  42146. front: {
  42147. height: math.unit(4, "feet"),
  42148. weight: math.unit(60, "lb"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/jasper/front.svg",
  42152. extra: 1450/1379,
  42153. bottom: 19/1469
  42154. }
  42155. },
  42156. },
  42157. [
  42158. {
  42159. name: "Normal",
  42160. height: math.unit(4, "feet"),
  42161. default: true
  42162. },
  42163. ]
  42164. ))
  42165. characterMakers.push(() => makeCharacter(
  42166. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42167. {
  42168. front: {
  42169. height: math.unit(6 + 5/12, "feet"),
  42170. weight: math.unit(290, "lb"),
  42171. name: "Front",
  42172. image: {
  42173. source: "./media/characters/tiberius-thyben/front.svg",
  42174. extra: 757/739,
  42175. bottom: 39/796
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Micro",
  42182. height: math.unit(1.5, "inches")
  42183. },
  42184. {
  42185. name: "Normal",
  42186. height: math.unit(6 + 5/12, "feet"),
  42187. default: true
  42188. },
  42189. {
  42190. name: "Macro",
  42191. height: math.unit(300, "feet")
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42197. {
  42198. front: {
  42199. height: math.unit(5 + 6/12, "feet"),
  42200. weight: math.unit(60, "kg"),
  42201. name: "Front",
  42202. image: {
  42203. source: "./media/characters/sabre/front.svg",
  42204. extra: 738/671,
  42205. bottom: 27/765
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Teeny",
  42212. height: math.unit(2, "inches")
  42213. },
  42214. {
  42215. name: "Smol",
  42216. height: math.unit(8, "inches")
  42217. },
  42218. {
  42219. name: "Normal",
  42220. height: math.unit(5 + 6/12, "feet"),
  42221. default: true
  42222. },
  42223. {
  42224. name: "Mini-Macro",
  42225. height: math.unit(15, "feet")
  42226. },
  42227. {
  42228. name: "Macro",
  42229. height: math.unit(50, "feet")
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42235. {
  42236. front: {
  42237. height: math.unit(6 + 4/12, "feet"),
  42238. weight: math.unit(170, "lb"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/charlie/front.svg",
  42242. extra: 1348/1228,
  42243. bottom: 15/1363
  42244. }
  42245. },
  42246. },
  42247. [
  42248. {
  42249. name: "Macro",
  42250. height: math.unit(1700, "meters"),
  42251. default: true
  42252. },
  42253. {
  42254. name: "MegaMacro",
  42255. height: math.unit(20400, "meters")
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(6 + 3/12, "feet"),
  42264. weight: math.unit(185, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/susan-grant/front.svg",
  42268. extra: 1351/1327,
  42269. bottom: 26/1377
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Normal",
  42276. height: math.unit(6 + 3/12, "feet"),
  42277. default: true
  42278. },
  42279. {
  42280. name: "Macro",
  42281. height: math.unit(225, "feet")
  42282. },
  42283. {
  42284. name: "Macro+",
  42285. height: math.unit(900, "feet")
  42286. },
  42287. {
  42288. name: "MegaMacro",
  42289. height: math.unit(14400, "feet")
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42295. {
  42296. front: {
  42297. height: math.unit(5 + 4/12, "feet"),
  42298. weight: math.unit(110, "lb"),
  42299. name: "Front",
  42300. image: {
  42301. source: "./media/characters/axel-isanov/front.svg",
  42302. extra: 1096/1065,
  42303. bottom: 13/1109
  42304. }
  42305. },
  42306. },
  42307. [
  42308. {
  42309. name: "Normal",
  42310. height: math.unit(5 + 4/12, "feet"),
  42311. default: true
  42312. },
  42313. ]
  42314. ))
  42315. characterMakers.push(() => makeCharacter(
  42316. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42317. {
  42318. front: {
  42319. height: math.unit(9, "feet"),
  42320. weight: math.unit(467, "lb"),
  42321. name: "Front",
  42322. image: {
  42323. source: "./media/characters/necahual/front.svg",
  42324. extra: 920/873,
  42325. bottom: 26/946
  42326. }
  42327. },
  42328. back: {
  42329. height: math.unit(9, "feet"),
  42330. weight: math.unit(467, "lb"),
  42331. name: "Back",
  42332. image: {
  42333. source: "./media/characters/necahual/back.svg",
  42334. extra: 930/884,
  42335. bottom: 16/946
  42336. }
  42337. },
  42338. frontUnderwear: {
  42339. height: math.unit(9, "feet"),
  42340. weight: math.unit(467, "lb"),
  42341. name: "Front (Underwear)",
  42342. image: {
  42343. source: "./media/characters/necahual/front-underwear.svg",
  42344. extra: 920/873,
  42345. bottom: 26/946
  42346. }
  42347. },
  42348. frontDressed: {
  42349. height: math.unit(9, "feet"),
  42350. weight: math.unit(467, "lb"),
  42351. name: "Front (Dressed)",
  42352. image: {
  42353. source: "./media/characters/necahual/front-dressed.svg",
  42354. extra: 920/873,
  42355. bottom: 26/946
  42356. }
  42357. },
  42358. },
  42359. [
  42360. {
  42361. name: "Comprsesed",
  42362. height: math.unit(9, "feet")
  42363. },
  42364. {
  42365. name: "Natural",
  42366. height: math.unit(15, "feet"),
  42367. default: true
  42368. },
  42369. {
  42370. name: "Boosted",
  42371. height: math.unit(50, "feet")
  42372. },
  42373. {
  42374. name: "Boosted+",
  42375. height: math.unit(150, "feet")
  42376. },
  42377. {
  42378. name: "Max",
  42379. height: math.unit(500, "feet")
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42385. {
  42386. front: {
  42387. height: math.unit(22 + 1/12, "feet"),
  42388. weight: math.unit(3200, "lb"),
  42389. name: "Front",
  42390. image: {
  42391. source: "./media/characters/theo-acacia/front.svg",
  42392. extra: 1796/1741,
  42393. bottom: 83/1879
  42394. }
  42395. },
  42396. frontUnderwear: {
  42397. height: math.unit(22 + 1/12, "feet"),
  42398. weight: math.unit(3200, "lb"),
  42399. name: "Front (Underwear)",
  42400. image: {
  42401. source: "./media/characters/theo-acacia/front-underwear.svg",
  42402. extra: 1796/1741,
  42403. bottom: 83/1879
  42404. }
  42405. },
  42406. frontNude: {
  42407. height: math.unit(22 + 1/12, "feet"),
  42408. weight: math.unit(3200, "lb"),
  42409. name: "Front (Nude)",
  42410. image: {
  42411. source: "./media/characters/theo-acacia/front-nude.svg",
  42412. extra: 1796/1741,
  42413. bottom: 83/1879
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(22 + 1/12, "feet"),
  42421. default: true
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42427. {
  42428. front: {
  42429. height: math.unit(20, "feet"),
  42430. name: "Front",
  42431. image: {
  42432. source: "./media/characters/astra/front.svg",
  42433. extra: 1850/1714,
  42434. bottom: 106/1956
  42435. }
  42436. },
  42437. frontUndressed: {
  42438. height: math.unit(20, "feet"),
  42439. name: "Front (Undressed)",
  42440. image: {
  42441. source: "./media/characters/astra/front-undressed.svg",
  42442. extra: 1926/1749,
  42443. bottom: 0/1926
  42444. }
  42445. },
  42446. hand: {
  42447. height: math.unit(1.53, "feet"),
  42448. name: "Hand",
  42449. image: {
  42450. source: "./media/characters/astra/hand.svg"
  42451. }
  42452. },
  42453. paw: {
  42454. height: math.unit(1.53, "feet"),
  42455. name: "Paw",
  42456. image: {
  42457. source: "./media/characters/astra/paw.svg"
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Smallest",
  42464. height: math.unit(20, "feet")
  42465. },
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(1e9, "miles"),
  42469. default: true
  42470. },
  42471. {
  42472. name: "Larger",
  42473. height: math.unit(5, "multiverses")
  42474. },
  42475. {
  42476. name: "Largest",
  42477. height: math.unit(1e9, "multiverses")
  42478. },
  42479. ]
  42480. ))
  42481. characterMakers.push(() => makeCharacter(
  42482. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42483. {
  42484. front: {
  42485. height: math.unit(8, "feet"),
  42486. name: "Front",
  42487. image: {
  42488. source: "./media/characters/breanna/front.svg",
  42489. extra: 1912/1632,
  42490. bottom: 33/1945
  42491. }
  42492. },
  42493. },
  42494. [
  42495. {
  42496. name: "Smallest",
  42497. height: math.unit(8, "feet")
  42498. },
  42499. {
  42500. name: "Normal",
  42501. height: math.unit(1, "mile"),
  42502. default: true
  42503. },
  42504. {
  42505. name: "Maximum",
  42506. height: math.unit(1500000000000, "lightyears")
  42507. },
  42508. ]
  42509. ))
  42510. characterMakers.push(() => makeCharacter(
  42511. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42512. {
  42513. front: {
  42514. height: math.unit(5 + 11/12, "feet"),
  42515. weight: math.unit(155, "lb"),
  42516. name: "Front",
  42517. image: {
  42518. source: "./media/characters/cai/front.svg",
  42519. extra: 1823/1702,
  42520. bottom: 32/1855
  42521. }
  42522. },
  42523. back: {
  42524. height: math.unit(5 + 11/12, "feet"),
  42525. weight: math.unit(155, "lb"),
  42526. name: "Back",
  42527. image: {
  42528. source: "./media/characters/cai/back.svg",
  42529. extra: 1809/1708,
  42530. bottom: 31/1840
  42531. }
  42532. },
  42533. },
  42534. [
  42535. {
  42536. name: "Normal",
  42537. height: math.unit(5 + 11/12, "feet"),
  42538. default: true
  42539. },
  42540. {
  42541. name: "Big",
  42542. height: math.unit(15, "feet")
  42543. },
  42544. {
  42545. name: "Macro",
  42546. height: math.unit(200, "feet")
  42547. },
  42548. ]
  42549. ))
  42550. characterMakers.push(() => makeCharacter(
  42551. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42552. {
  42553. front: {
  42554. height: math.unit(5 + 6/12, "feet"),
  42555. weight: math.unit(160, "lb"),
  42556. name: "Front",
  42557. image: {
  42558. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42559. extra: 1227/1174,
  42560. bottom: 37/1264
  42561. }
  42562. },
  42563. },
  42564. [
  42565. {
  42566. name: "Macro",
  42567. height: math.unit(444, "meters"),
  42568. default: true
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42574. {
  42575. front: {
  42576. height: math.unit(18 + 7/12, "feet"),
  42577. name: "Front",
  42578. image: {
  42579. source: "./media/characters/rex/front.svg",
  42580. extra: 1941/1807,
  42581. bottom: 66/2007
  42582. }
  42583. },
  42584. back: {
  42585. height: math.unit(18 + 7/12, "feet"),
  42586. name: "Back",
  42587. image: {
  42588. source: "./media/characters/rex/back.svg",
  42589. extra: 1937/1822,
  42590. bottom: 42/1979
  42591. }
  42592. },
  42593. boot: {
  42594. height: math.unit(3.45, "feet"),
  42595. name: "Boot",
  42596. image: {
  42597. source: "./media/characters/rex/boot.svg"
  42598. }
  42599. },
  42600. paw: {
  42601. height: math.unit(4.17, "feet"),
  42602. name: "Paw",
  42603. image: {
  42604. source: "./media/characters/rex/paw.svg"
  42605. }
  42606. },
  42607. head: {
  42608. height: math.unit(6.728, "feet"),
  42609. name: "Head",
  42610. image: {
  42611. source: "./media/characters/rex/head.svg"
  42612. }
  42613. },
  42614. },
  42615. [
  42616. {
  42617. name: "Nano",
  42618. height: math.unit(18 + 7/12, "feet")
  42619. },
  42620. {
  42621. name: "Micro",
  42622. height: math.unit(1.5, "megameters")
  42623. },
  42624. {
  42625. name: "Normal",
  42626. height: math.unit(440, "megameters"),
  42627. default: true
  42628. },
  42629. {
  42630. name: "Macro",
  42631. height: math.unit(2.5, "gigameters")
  42632. },
  42633. {
  42634. name: "Gigamacro",
  42635. height: math.unit(2, "galaxies")
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42641. {
  42642. side: {
  42643. height: math.unit(32, "feet"),
  42644. weight: math.unit(250000, "lb"),
  42645. name: "Side",
  42646. image: {
  42647. source: "./media/characters/silverwing/side.svg",
  42648. extra: 1100/1019,
  42649. bottom: 204/1304
  42650. }
  42651. },
  42652. },
  42653. [
  42654. {
  42655. name: "Normal",
  42656. height: math.unit(32, "feet"),
  42657. default: true
  42658. },
  42659. ]
  42660. ))
  42661. characterMakers.push(() => makeCharacter(
  42662. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42663. {
  42664. front: {
  42665. height: math.unit(6 + 6/12, "feet"),
  42666. weight: math.unit(350, "lb"),
  42667. name: "Front",
  42668. image: {
  42669. source: "./media/characters/tristan-hawthorne/front.svg",
  42670. extra: 1159/1124,
  42671. bottom: 37/1196
  42672. },
  42673. form: "labrador",
  42674. default: true
  42675. },
  42676. skunkFront: {
  42677. height: math.unit(4 + 6/12, "feet"),
  42678. weight: math.unit(120, "lb"),
  42679. name: "Front",
  42680. image: {
  42681. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42682. extra: 1609/1551,
  42683. bottom: 169/1778
  42684. },
  42685. form: "skunk",
  42686. default: true
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "Normal",
  42692. height: math.unit(6 + 6/12, "feet"),
  42693. form: "labrador",
  42694. default: true
  42695. },
  42696. {
  42697. name: "Normal",
  42698. height: math.unit(4 + 6/12, "feet"),
  42699. form: "skunk",
  42700. default: true
  42701. },
  42702. ],
  42703. {
  42704. "labrador": {
  42705. name: "Labrador",
  42706. default: true
  42707. },
  42708. "skunk": {
  42709. name: "Skunk"
  42710. }
  42711. }
  42712. ))
  42713. characterMakers.push(() => makeCharacter(
  42714. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42715. {
  42716. front: {
  42717. height: math.unit(5 + 11/12, "feet"),
  42718. weight: math.unit(190, "lb"),
  42719. name: "Front",
  42720. image: {
  42721. source: "./media/characters/mizu/front.svg",
  42722. extra: 1988/1788,
  42723. bottom: 14/2002
  42724. }
  42725. },
  42726. },
  42727. [
  42728. {
  42729. name: "Normal",
  42730. height: math.unit(5 + 11/12, "feet"),
  42731. default: true
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42737. {
  42738. front: {
  42739. height: math.unit(1.7, "feet"),
  42740. weight: math.unit(50, "lb"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/dechroma/front.svg",
  42744. extra: 1095/859,
  42745. bottom: 64/1159
  42746. }
  42747. },
  42748. },
  42749. [
  42750. {
  42751. name: "Normal",
  42752. height: math.unit(1.7, "feet"),
  42753. default: true
  42754. },
  42755. ]
  42756. ))
  42757. characterMakers.push(() => makeCharacter(
  42758. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42759. {
  42760. side: {
  42761. height: math.unit(30, "feet"),
  42762. name: "Side",
  42763. image: {
  42764. source: "./media/characters/veluren-thanazel/side.svg",
  42765. extra: 1611/633,
  42766. bottom: 118/1729
  42767. }
  42768. },
  42769. front: {
  42770. height: math.unit(30, "feet"),
  42771. name: "Front",
  42772. image: {
  42773. source: "./media/characters/veluren-thanazel/front.svg",
  42774. extra: 1486/636,
  42775. bottom: 238/1724
  42776. }
  42777. },
  42778. head: {
  42779. height: math.unit(21.4, "feet"),
  42780. name: "Head",
  42781. image: {
  42782. source: "./media/characters/veluren-thanazel/head.svg"
  42783. }
  42784. },
  42785. genitals: {
  42786. height: math.unit(19.4, "feet"),
  42787. name: "Genitals",
  42788. image: {
  42789. source: "./media/characters/veluren-thanazel/genitals.svg"
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Social",
  42796. height: math.unit(6, "feet")
  42797. },
  42798. {
  42799. name: "Play",
  42800. height: math.unit(12, "feet")
  42801. },
  42802. {
  42803. name: "True",
  42804. height: math.unit(30, "feet"),
  42805. default: true
  42806. },
  42807. ]
  42808. ))
  42809. characterMakers.push(() => makeCharacter(
  42810. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42811. {
  42812. front: {
  42813. height: math.unit(7 + 6/12, "feet"),
  42814. weight: math.unit(500, "kg"),
  42815. name: "Front",
  42816. image: {
  42817. source: "./media/characters/arcturas/front.svg",
  42818. extra: 1700/1500,
  42819. bottom: 145/1845
  42820. }
  42821. },
  42822. },
  42823. [
  42824. {
  42825. name: "Normal",
  42826. height: math.unit(7 + 6/12, "feet"),
  42827. default: true
  42828. },
  42829. ]
  42830. ))
  42831. characterMakers.push(() => makeCharacter(
  42832. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42833. {
  42834. side: {
  42835. height: math.unit(6, "feet"),
  42836. weight: math.unit(2, "tons"),
  42837. name: "Side",
  42838. image: {
  42839. source: "./media/characters/vitaen/side.svg",
  42840. extra: 1157/617,
  42841. bottom: 122/1279
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Normal",
  42848. height: math.unit(6, "feet"),
  42849. default: true
  42850. },
  42851. ]
  42852. ))
  42853. characterMakers.push(() => makeCharacter(
  42854. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42855. {
  42856. front: {
  42857. height: math.unit(19, "feet"),
  42858. name: "Front",
  42859. image: {
  42860. source: "./media/characters/fia-dreamweaver/front.svg",
  42861. extra: 1630/1504,
  42862. bottom: 25/1655
  42863. }
  42864. },
  42865. },
  42866. [
  42867. {
  42868. name: "Normal",
  42869. height: math.unit(19, "feet"),
  42870. default: true
  42871. },
  42872. ]
  42873. ))
  42874. characterMakers.push(() => makeCharacter(
  42875. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42876. {
  42877. front: {
  42878. height: math.unit(5 + 4/12, "feet"),
  42879. name: "Front",
  42880. image: {
  42881. source: "./media/characters/artan/front.svg",
  42882. extra: 1618/1535,
  42883. bottom: 46/1664
  42884. }
  42885. },
  42886. back: {
  42887. height: math.unit(5 + 4/12, "feet"),
  42888. name: "Back",
  42889. image: {
  42890. source: "./media/characters/artan/back.svg",
  42891. extra: 1618/1543,
  42892. bottom: 31/1649
  42893. }
  42894. },
  42895. },
  42896. [
  42897. {
  42898. name: "Normal",
  42899. height: math.unit(5 + 4/12, "feet"),
  42900. default: true
  42901. },
  42902. ]
  42903. ))
  42904. characterMakers.push(() => makeCharacter(
  42905. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42906. {
  42907. side: {
  42908. height: math.unit(182, "cm"),
  42909. weight: math.unit(1000, "lb"),
  42910. name: "Side",
  42911. image: {
  42912. source: "./media/characters/silver-dragon/side.svg",
  42913. extra: 710/287,
  42914. bottom: 88/798
  42915. }
  42916. },
  42917. },
  42918. [
  42919. {
  42920. name: "Normal",
  42921. height: math.unit(182, "cm"),
  42922. default: true
  42923. },
  42924. ]
  42925. ))
  42926. characterMakers.push(() => makeCharacter(
  42927. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42928. {
  42929. side: {
  42930. height: math.unit(6 + 6/12, "feet"),
  42931. weight: math.unit(1.5, "tons"),
  42932. name: "Side",
  42933. image: {
  42934. source: "./media/characters/zephyr/side.svg",
  42935. extra: 1433/586,
  42936. bottom: 109/1542
  42937. }
  42938. },
  42939. },
  42940. [
  42941. {
  42942. name: "Normal",
  42943. height: math.unit(6 + 6/12, "feet"),
  42944. default: true
  42945. },
  42946. ]
  42947. ))
  42948. characterMakers.push(() => makeCharacter(
  42949. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42950. {
  42951. side: {
  42952. height: math.unit(1, "feet"),
  42953. name: "Side",
  42954. image: {
  42955. source: "./media/characters/vixye/side.svg",
  42956. extra: 632/541,
  42957. bottom: 0/632
  42958. }
  42959. },
  42960. },
  42961. [
  42962. {
  42963. name: "Normal",
  42964. height: math.unit(1, "feet"),
  42965. default: true
  42966. },
  42967. {
  42968. name: "True",
  42969. height: math.unit(1e15, "multiverses")
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42975. {
  42976. front: {
  42977. height: math.unit(8 + 2/12, "feet"),
  42978. weight: math.unit(650, "lb"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42982. extra: 1174/1137,
  42983. bottom: 82/1256
  42984. }
  42985. },
  42986. back: {
  42987. height: math.unit(8 + 2/12, "feet"),
  42988. weight: math.unit(650, "lb"),
  42989. name: "Back",
  42990. image: {
  42991. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42992. extra: 1204/1157,
  42993. bottom: 46/1250
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Wildform",
  43000. height: math.unit(8 + 2/12, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43007. {
  43008. front: {
  43009. height: math.unit(18, "feet"),
  43010. name: "Front",
  43011. image: {
  43012. source: "./media/characters/cyphin/front.svg",
  43013. extra: 970/886,
  43014. bottom: 42/1012
  43015. }
  43016. },
  43017. back: {
  43018. height: math.unit(18, "feet"),
  43019. name: "Back",
  43020. image: {
  43021. source: "./media/characters/cyphin/back.svg",
  43022. extra: 1009/894,
  43023. bottom: 24/1033
  43024. }
  43025. },
  43026. head: {
  43027. height: math.unit(5.05, "feet"),
  43028. name: "Head",
  43029. image: {
  43030. source: "./media/characters/cyphin/head.svg"
  43031. }
  43032. },
  43033. tailbud: {
  43034. height: math.unit(5, "feet"),
  43035. name: "Tailbud",
  43036. image: {
  43037. source: "./media/characters/cyphin/tailbud.svg"
  43038. }
  43039. },
  43040. },
  43041. [
  43042. ]
  43043. ))
  43044. characterMakers.push(() => makeCharacter(
  43045. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43046. {
  43047. side: {
  43048. height: math.unit(10, "feet"),
  43049. weight: math.unit(6, "tons"),
  43050. name: "Side",
  43051. image: {
  43052. source: "./media/characters/raijin/side.svg",
  43053. extra: 1529/613,
  43054. bottom: 337/1866
  43055. }
  43056. },
  43057. },
  43058. [
  43059. {
  43060. name: "Normal",
  43061. height: math.unit(10, "feet"),
  43062. default: true
  43063. },
  43064. ]
  43065. ))
  43066. characterMakers.push(() => makeCharacter(
  43067. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43068. {
  43069. side: {
  43070. height: math.unit(9, "feet"),
  43071. name: "Side",
  43072. image: {
  43073. source: "./media/characters/nilghais/side.svg",
  43074. extra: 1047/744,
  43075. bottom: 91/1138
  43076. }
  43077. },
  43078. head: {
  43079. height: math.unit(3.14, "feet"),
  43080. name: "Head",
  43081. image: {
  43082. source: "./media/characters/nilghais/head.svg"
  43083. }
  43084. },
  43085. mouth: {
  43086. height: math.unit(4.6, "feet"),
  43087. name: "Mouth",
  43088. image: {
  43089. source: "./media/characters/nilghais/mouth.svg"
  43090. }
  43091. },
  43092. wings: {
  43093. height: math.unit(24, "feet"),
  43094. name: "Wings",
  43095. image: {
  43096. source: "./media/characters/nilghais/wings.svg"
  43097. }
  43098. },
  43099. ass: {
  43100. height: math.unit(6.12, "feet"),
  43101. name: "Ass",
  43102. image: {
  43103. source: "./media/characters/nilghais/ass.svg"
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(9, "feet"),
  43111. default: true
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43117. {
  43118. regular: {
  43119. height: math.unit(16 + 2/12, "feet"),
  43120. weight: math.unit(2300, "lb"),
  43121. name: "Regular",
  43122. image: {
  43123. source: "./media/characters/zolgar/regular.svg",
  43124. extra: 1246/1004,
  43125. bottom: 124/1370
  43126. }
  43127. },
  43128. boxers: {
  43129. height: math.unit(16 + 2/12, "feet"),
  43130. weight: math.unit(2300, "lb"),
  43131. name: "Boxers",
  43132. image: {
  43133. source: "./media/characters/zolgar/boxers.svg",
  43134. extra: 1246/1004,
  43135. bottom: 124/1370
  43136. }
  43137. },
  43138. armored: {
  43139. height: math.unit(16 + 2/12, "feet"),
  43140. weight: math.unit(2300, "lb"),
  43141. name: "Armored",
  43142. image: {
  43143. source: "./media/characters/zolgar/armored.svg",
  43144. extra: 1246/1004,
  43145. bottom: 124/1370
  43146. }
  43147. },
  43148. goth: {
  43149. height: math.unit(16 + 2/12, "feet"),
  43150. weight: math.unit(2300, "lb"),
  43151. name: "Goth",
  43152. image: {
  43153. source: "./media/characters/zolgar/goth.svg",
  43154. extra: 1246/1004,
  43155. bottom: 124/1370
  43156. }
  43157. },
  43158. },
  43159. [
  43160. {
  43161. name: "Shrunken Down",
  43162. height: math.unit(9 + 2/12, "feet")
  43163. },
  43164. {
  43165. name: "Normal",
  43166. height: math.unit(16 + 2/12, "feet"),
  43167. default: true
  43168. },
  43169. ]
  43170. ))
  43171. characterMakers.push(() => makeCharacter(
  43172. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43173. {
  43174. front: {
  43175. height: math.unit(6, "feet"),
  43176. weight: math.unit(168, "lb"),
  43177. name: "Front",
  43178. image: {
  43179. source: "./media/characters/luca/front.svg",
  43180. extra: 841/667,
  43181. bottom: 102/943
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Normal",
  43188. height: math.unit(6, "feet"),
  43189. default: true
  43190. },
  43191. ]
  43192. ))
  43193. characterMakers.push(() => makeCharacter(
  43194. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43195. {
  43196. side: {
  43197. height: math.unit(7 + 3/12, "feet"),
  43198. weight: math.unit(312, "lb"),
  43199. name: "Side",
  43200. image: {
  43201. source: "./media/characters/zezo/side.svg",
  43202. extra: 1192/1067,
  43203. bottom: 63/1255
  43204. }
  43205. },
  43206. },
  43207. [
  43208. {
  43209. name: "Normal",
  43210. height: math.unit(7 + 3/12, "feet"),
  43211. default: true
  43212. },
  43213. ]
  43214. ))
  43215. characterMakers.push(() => makeCharacter(
  43216. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43217. {
  43218. front: {
  43219. height: math.unit(5 + 5/12, "feet"),
  43220. weight: math.unit(170, "lb"),
  43221. name: "Front",
  43222. image: {
  43223. source: "./media/characters/mayso/front.svg",
  43224. extra: 1215/1108,
  43225. bottom: 16/1231
  43226. }
  43227. },
  43228. },
  43229. [
  43230. {
  43231. name: "Normal",
  43232. height: math.unit(5 + 5/12, "feet"),
  43233. default: true
  43234. },
  43235. ]
  43236. ))
  43237. characterMakers.push(() => makeCharacter(
  43238. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43239. {
  43240. front: {
  43241. height: math.unit(4 + 3/12, "feet"),
  43242. weight: math.unit(80, "lb"),
  43243. name: "Front",
  43244. image: {
  43245. source: "./media/characters/hess/front.svg",
  43246. extra: 1200/1123,
  43247. bottom: 16/1216
  43248. }
  43249. },
  43250. },
  43251. [
  43252. {
  43253. name: "Normal",
  43254. height: math.unit(4 + 3/12, "feet"),
  43255. default: true
  43256. },
  43257. ]
  43258. ))
  43259. characterMakers.push(() => makeCharacter(
  43260. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43261. {
  43262. front: {
  43263. height: math.unit(1.9, "meters"),
  43264. name: "Front",
  43265. image: {
  43266. source: "./media/characters/ashgar/front.svg",
  43267. extra: 1177/1146,
  43268. bottom: 99/1276
  43269. }
  43270. },
  43271. back: {
  43272. height: math.unit(1.9, "meters"),
  43273. name: "Back",
  43274. image: {
  43275. source: "./media/characters/ashgar/back.svg",
  43276. extra: 1201/1183,
  43277. bottom: 53/1254
  43278. }
  43279. },
  43280. feral: {
  43281. height: math.unit(1.4, "meters"),
  43282. name: "Feral",
  43283. image: {
  43284. source: "./media/characters/ashgar/feral.svg",
  43285. extra: 370/345,
  43286. bottom: 45/415
  43287. }
  43288. },
  43289. },
  43290. [
  43291. {
  43292. name: "Normal",
  43293. height: math.unit(1.9, "meters"),
  43294. default: true
  43295. },
  43296. ]
  43297. ))
  43298. characterMakers.push(() => makeCharacter(
  43299. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43300. {
  43301. regular: {
  43302. height: math.unit(6, "feet"),
  43303. weight: math.unit(220, "lb"),
  43304. name: "Regular",
  43305. image: {
  43306. source: "./media/characters/phillip/regular.svg",
  43307. extra: 1373/1277,
  43308. bottom: 75/1448
  43309. }
  43310. },
  43311. dressed: {
  43312. height: math.unit(6, "feet"),
  43313. weight: math.unit(220, "lb"),
  43314. name: "Dressed",
  43315. image: {
  43316. source: "./media/characters/phillip/dressed.svg",
  43317. extra: 1373/1277,
  43318. bottom: 75/1448
  43319. }
  43320. },
  43321. paw: {
  43322. height: math.unit(1.44, "feet"),
  43323. name: "Paw",
  43324. image: {
  43325. source: "./media/characters/phillip/paw.svg"
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(6, "feet"),
  43333. default: true
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43339. {
  43340. side: {
  43341. height: math.unit(42, "feet"),
  43342. name: "Side",
  43343. image: {
  43344. source: "./media/characters/uvula/side.svg",
  43345. extra: 683/586,
  43346. bottom: 60/743
  43347. }
  43348. },
  43349. front: {
  43350. height: math.unit(42, "feet"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/uvula/front.svg",
  43354. extra: 705/613,
  43355. bottom: 54/759
  43356. }
  43357. },
  43358. maw: {
  43359. height: math.unit(23.5, "feet"),
  43360. name: "Maw",
  43361. image: {
  43362. source: "./media/characters/uvula/maw.svg"
  43363. }
  43364. },
  43365. },
  43366. [
  43367. {
  43368. name: "Original Size",
  43369. height: math.unit(14, "inches")
  43370. },
  43371. {
  43372. name: "Human Size",
  43373. height: math.unit(6, "feet")
  43374. },
  43375. {
  43376. name: "Big",
  43377. height: math.unit(42, "feet"),
  43378. default: true
  43379. },
  43380. {
  43381. name: "Bigger",
  43382. height: math.unit(100, "feet")
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(5 + 11/12, "feet"),
  43391. name: "Front",
  43392. image: {
  43393. source: "./media/characters/lannah/front.svg",
  43394. extra: 1208/1113,
  43395. bottom: 97/1305
  43396. }
  43397. },
  43398. },
  43399. [
  43400. {
  43401. name: "Normal",
  43402. height: math.unit(5 + 11/12, "feet"),
  43403. default: true
  43404. },
  43405. ]
  43406. ))
  43407. characterMakers.push(() => makeCharacter(
  43408. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43409. {
  43410. front: {
  43411. height: math.unit(6 + 3/12, "feet"),
  43412. weight: math.unit(3.5, "tons"),
  43413. name: "Front",
  43414. image: {
  43415. source: "./media/characters/emberflame/front.svg",
  43416. extra: 1198/672,
  43417. bottom: 82/1280
  43418. }
  43419. },
  43420. side: {
  43421. height: math.unit(6 + 3/12, "feet"),
  43422. weight: math.unit(3.5, "tons"),
  43423. name: "Side",
  43424. image: {
  43425. source: "./media/characters/emberflame/side.svg",
  43426. extra: 938/527,
  43427. bottom: 56/994
  43428. }
  43429. },
  43430. },
  43431. [
  43432. {
  43433. name: "Normal",
  43434. height: math.unit(6 + 3/12, "feet"),
  43435. default: true
  43436. },
  43437. ]
  43438. ))
  43439. characterMakers.push(() => makeCharacter(
  43440. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43441. {
  43442. side: {
  43443. height: math.unit(17.5, "feet"),
  43444. weight: math.unit(35, "tons"),
  43445. name: "Side",
  43446. image: {
  43447. source: "./media/characters/sophie-ambrose/side.svg",
  43448. extra: 1573/1242,
  43449. bottom: 71/1644
  43450. }
  43451. },
  43452. maw: {
  43453. height: math.unit(7.4, "feet"),
  43454. name: "Maw",
  43455. image: {
  43456. source: "./media/characters/sophie-ambrose/maw.svg"
  43457. }
  43458. },
  43459. },
  43460. [
  43461. {
  43462. name: "Normal",
  43463. height: math.unit(17.5, "feet"),
  43464. default: true
  43465. },
  43466. ]
  43467. ))
  43468. characterMakers.push(() => makeCharacter(
  43469. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43470. {
  43471. front: {
  43472. height: math.unit(280, "feet"),
  43473. weight: math.unit(550, "tons"),
  43474. name: "Front",
  43475. image: {
  43476. source: "./media/characters/king-mugi/front.svg",
  43477. extra: 1102/947,
  43478. bottom: 104/1206
  43479. }
  43480. },
  43481. },
  43482. [
  43483. {
  43484. name: "King Mugi",
  43485. height: math.unit(280, "feet"),
  43486. default: true
  43487. },
  43488. ]
  43489. ))
  43490. characterMakers.push(() => makeCharacter(
  43491. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43492. {
  43493. front: {
  43494. height: math.unit(64, "meters"),
  43495. name: "Front",
  43496. image: {
  43497. source: "./media/characters/nova-fox/front.svg",
  43498. extra: 1310/1246,
  43499. bottom: 65/1375
  43500. }
  43501. },
  43502. },
  43503. [
  43504. {
  43505. name: "Macro",
  43506. height: math.unit(64, "meters"),
  43507. default: true
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(6 + 3/12, "feet"),
  43516. weight: math.unit(170, "lb"),
  43517. name: "Front",
  43518. image: {
  43519. source: "./media/characters/sam-bat/front.svg",
  43520. extra: 1601/1411,
  43521. bottom: 125/1726
  43522. }
  43523. },
  43524. back: {
  43525. height: math.unit(6 + 3/12, "feet"),
  43526. weight: math.unit(170, "lb"),
  43527. name: "Back",
  43528. image: {
  43529. source: "./media/characters/sam-bat/back.svg",
  43530. extra: 1577/1405,
  43531. bottom: 58/1635
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Normal",
  43538. height: math.unit(6 + 3/12, "feet"),
  43539. default: true
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43545. {
  43546. front: {
  43547. height: math.unit(59, "feet"),
  43548. weight: math.unit(40000, "lb"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/inari/front.svg",
  43552. extra: 1884/1350,
  43553. bottom: 95/1979
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Gigantamax",
  43560. height: math.unit(59, "feet"),
  43561. default: true
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43567. {
  43568. front: {
  43569. height: math.unit(5 + 8/12, "feet"),
  43570. name: "Front",
  43571. image: {
  43572. source: "./media/characters/elizabeth/front.svg",
  43573. extra: 1395/1298,
  43574. bottom: 54/1449
  43575. }
  43576. },
  43577. mouth: {
  43578. height: math.unit(1.97, "feet"),
  43579. name: "Mouth",
  43580. image: {
  43581. source: "./media/characters/elizabeth/mouth.svg"
  43582. }
  43583. },
  43584. foot: {
  43585. height: math.unit(1.17, "feet"),
  43586. name: "Foot",
  43587. image: {
  43588. source: "./media/characters/elizabeth/foot.svg"
  43589. }
  43590. },
  43591. },
  43592. [
  43593. {
  43594. name: "Normal",
  43595. height: math.unit(5 + 8/12, "feet"),
  43596. default: true
  43597. },
  43598. {
  43599. name: "Minimacro",
  43600. height: math.unit(18, "feet")
  43601. },
  43602. {
  43603. name: "Macro",
  43604. height: math.unit(180, "feet")
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(5 + 2/12, "feet"),
  43613. name: "Front",
  43614. image: {
  43615. source: "./media/characters/october-gossamer/front.svg",
  43616. extra: 505/454,
  43617. bottom: 7/512
  43618. }
  43619. },
  43620. back: {
  43621. height: math.unit(5 + 2/12, "feet"),
  43622. name: "Back",
  43623. image: {
  43624. source: "./media/characters/october-gossamer/back.svg",
  43625. extra: 501/454,
  43626. bottom: 11/512
  43627. }
  43628. },
  43629. },
  43630. [
  43631. {
  43632. name: "Normal",
  43633. height: math.unit(5 + 2/12, "feet"),
  43634. default: true
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43640. {
  43641. front: {
  43642. height: math.unit(5, "feet"),
  43643. name: "Front",
  43644. image: {
  43645. source: "./media/characters/epiglottis/front.svg",
  43646. extra: 923/849,
  43647. bottom: 17/940
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Original Size",
  43654. height: math.unit(10, "inches")
  43655. },
  43656. {
  43657. name: "Human Size",
  43658. height: math.unit(5, "feet"),
  43659. default: true
  43660. },
  43661. {
  43662. name: "Big",
  43663. height: math.unit(25, "feet")
  43664. },
  43665. {
  43666. name: "Bigger",
  43667. height: math.unit(50, "feet")
  43668. },
  43669. {
  43670. name: "oh lawd",
  43671. height: math.unit(75, "feet")
  43672. },
  43673. ]
  43674. ))
  43675. characterMakers.push(() => makeCharacter(
  43676. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43677. {
  43678. front: {
  43679. height: math.unit(2 + 4/12, "feet"),
  43680. weight: math.unit(60, "lb"),
  43681. name: "Front",
  43682. image: {
  43683. source: "./media/characters/lerm/front.svg",
  43684. extra: 796/790,
  43685. bottom: 79/875
  43686. }
  43687. },
  43688. },
  43689. [
  43690. {
  43691. name: "Normal",
  43692. height: math.unit(2 + 4/12, "feet"),
  43693. default: true
  43694. },
  43695. ]
  43696. ))
  43697. characterMakers.push(() => makeCharacter(
  43698. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43699. {
  43700. front: {
  43701. height: math.unit(5.5, "feet"),
  43702. weight: math.unit(130, "lb"),
  43703. name: "Front",
  43704. image: {
  43705. source: "./media/characters/xena-nebadon/front.svg",
  43706. extra: 1828/1730,
  43707. bottom: 79/1907
  43708. }
  43709. },
  43710. },
  43711. [
  43712. {
  43713. name: "Tiny Puppy",
  43714. height: math.unit(3, "inches")
  43715. },
  43716. {
  43717. name: "Normal",
  43718. height: math.unit(5.5, "feet"),
  43719. default: true
  43720. },
  43721. {
  43722. name: "Lotta Lady",
  43723. height: math.unit(12, "feet")
  43724. },
  43725. {
  43726. name: "Pretty Big",
  43727. height: math.unit(100, "feet")
  43728. },
  43729. {
  43730. name: "Big",
  43731. height: math.unit(500, "feet")
  43732. },
  43733. {
  43734. name: "Skyscraper Toys",
  43735. height: math.unit(2500, "feet")
  43736. },
  43737. {
  43738. name: "Plane Catcher",
  43739. height: math.unit(8, "miles")
  43740. },
  43741. {
  43742. name: "Planet Toys",
  43743. height: math.unit(15, "earths")
  43744. },
  43745. {
  43746. name: "Stardust",
  43747. height: math.unit(0.25, "galaxies")
  43748. },
  43749. {
  43750. name: "Snacks",
  43751. height: math.unit(70, "universes")
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(1.6, "meters"),
  43760. weight: math.unit(60, "kg"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/bounty/front.svg",
  43764. extra: 1426/1308,
  43765. bottom: 15/1441
  43766. }
  43767. },
  43768. back: {
  43769. height: math.unit(1.6, "meters"),
  43770. weight: math.unit(60, "kg"),
  43771. name: "Back",
  43772. image: {
  43773. source: "./media/characters/bounty/back.svg",
  43774. extra: 1417/1307,
  43775. bottom: 8/1425
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Normal",
  43782. height: math.unit(1.6, "meters"),
  43783. default: true
  43784. },
  43785. {
  43786. name: "Macro",
  43787. height: math.unit(300, "meters")
  43788. },
  43789. ]
  43790. ))
  43791. characterMakers.push(() => makeCharacter(
  43792. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43793. {
  43794. front: {
  43795. height: math.unit(2 + 8/12, "feet"),
  43796. weight: math.unit(15, "lb"),
  43797. name: "Front",
  43798. image: {
  43799. source: "./media/characters/mochi/front.svg",
  43800. extra: 1022/852,
  43801. bottom: 435/1457
  43802. }
  43803. },
  43804. back: {
  43805. height: math.unit(2 + 8/12, "feet"),
  43806. weight: math.unit(15, "lb"),
  43807. name: "Back",
  43808. image: {
  43809. source: "./media/characters/mochi/back.svg",
  43810. extra: 1335/1119,
  43811. bottom: 39/1374
  43812. }
  43813. },
  43814. bird: {
  43815. height: math.unit(2 + 8/12, "feet"),
  43816. weight: math.unit(15, "lb"),
  43817. name: "Bird",
  43818. image: {
  43819. source: "./media/characters/mochi/bird.svg",
  43820. extra: 1251/1113,
  43821. bottom: 178/1429
  43822. }
  43823. },
  43824. kaiju: {
  43825. height: math.unit(154, "feet"),
  43826. weight: math.unit(1e7, "lb"),
  43827. name: "Kaiju",
  43828. image: {
  43829. source: "./media/characters/mochi/kaiju.svg",
  43830. extra: 460/324,
  43831. bottom: 40/500
  43832. }
  43833. },
  43834. head: {
  43835. height: math.unit(1.21, "feet"),
  43836. name: "Head",
  43837. image: {
  43838. source: "./media/characters/mochi/head.svg"
  43839. }
  43840. },
  43841. alternateTail: {
  43842. height: math.unit(2 + 8/12, "feet"),
  43843. weight: math.unit(45, "lb"),
  43844. name: "Alternate Tail",
  43845. image: {
  43846. source: "./media/characters/mochi/alternate-tail.svg",
  43847. extra: 139/76,
  43848. bottom: 45/184
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Micro",
  43855. height: math.unit(2, "inches")
  43856. },
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(2 + 8/12, "feet"),
  43860. default: true
  43861. },
  43862. {
  43863. name: "Macro",
  43864. height: math.unit(106, "feet")
  43865. },
  43866. ]
  43867. ))
  43868. characterMakers.push(() => makeCharacter(
  43869. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43870. {
  43871. front: {
  43872. height: math.unit(5.67, "feet"),
  43873. weight: math.unit(135, "lb"),
  43874. name: "Front",
  43875. image: {
  43876. source: "./media/characters/sarel/front.svg",
  43877. extra: 865/788,
  43878. bottom: 97/962
  43879. }
  43880. },
  43881. back: {
  43882. height: math.unit(5.67, "feet"),
  43883. weight: math.unit(135, "lb"),
  43884. name: "Back",
  43885. image: {
  43886. source: "./media/characters/sarel/back.svg",
  43887. extra: 857/777,
  43888. bottom: 32/889
  43889. }
  43890. },
  43891. chozoan: {
  43892. height: math.unit(5.67, "feet"),
  43893. weight: math.unit(135, "lb"),
  43894. name: "Chozoan",
  43895. image: {
  43896. source: "./media/characters/sarel/chozoan.svg",
  43897. extra: 865/788,
  43898. bottom: 97/962
  43899. }
  43900. },
  43901. current: {
  43902. height: math.unit(5.67, "feet"),
  43903. weight: math.unit(135, "lb"),
  43904. name: "Current",
  43905. image: {
  43906. source: "./media/characters/sarel/current.svg",
  43907. extra: 865/788,
  43908. bottom: 97/962
  43909. }
  43910. },
  43911. head: {
  43912. height: math.unit(1.77, "feet"),
  43913. name: "Head",
  43914. image: {
  43915. source: "./media/characters/sarel/head.svg"
  43916. }
  43917. },
  43918. claws: {
  43919. height: math.unit(1.8, "feet"),
  43920. name: "Claws",
  43921. image: {
  43922. source: "./media/characters/sarel/claws.svg"
  43923. }
  43924. },
  43925. clawsAlt: {
  43926. height: math.unit(1.8, "feet"),
  43927. name: "Claws-alt",
  43928. image: {
  43929. source: "./media/characters/sarel/claws-alt.svg"
  43930. }
  43931. },
  43932. },
  43933. [
  43934. {
  43935. name: "Normal",
  43936. height: math.unit(5.67, "feet"),
  43937. default: true
  43938. },
  43939. ]
  43940. ))
  43941. characterMakers.push(() => makeCharacter(
  43942. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43943. {
  43944. front: {
  43945. height: math.unit(5500, "feet"),
  43946. name: "Front",
  43947. image: {
  43948. source: "./media/characters/alyonia/front.svg",
  43949. extra: 1200/1135,
  43950. bottom: 29/1229
  43951. }
  43952. },
  43953. back: {
  43954. height: math.unit(5500, "feet"),
  43955. name: "Back",
  43956. image: {
  43957. source: "./media/characters/alyonia/back.svg",
  43958. extra: 1205/1138,
  43959. bottom: 10/1215
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Small",
  43966. height: math.unit(10, "feet")
  43967. },
  43968. {
  43969. name: "Macro",
  43970. height: math.unit(500, "feet")
  43971. },
  43972. {
  43973. name: "Mega Macro",
  43974. height: math.unit(5500, "feet"),
  43975. default: true
  43976. },
  43977. {
  43978. name: "Mega Macro+",
  43979. height: math.unit(500000, "feet")
  43980. },
  43981. {
  43982. name: "Giga Macro",
  43983. height: math.unit(3000, "miles")
  43984. },
  43985. {
  43986. name: "Tera Macro",
  43987. height: math.unit(2.8e6, "miles")
  43988. },
  43989. {
  43990. name: "Galactic",
  43991. height: math.unit(120000, "lightyears")
  43992. },
  43993. ]
  43994. ))
  43995. characterMakers.push(() => makeCharacter(
  43996. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43997. {
  43998. werewolf: {
  43999. height: math.unit(8, "feet"),
  44000. weight: math.unit(425, "lb"),
  44001. name: "Werewolf",
  44002. image: {
  44003. source: "./media/characters/autumn/werewolf.svg",
  44004. extra: 2154/2031,
  44005. bottom: 160/2314
  44006. }
  44007. },
  44008. human: {
  44009. height: math.unit(5 + 8/12, "feet"),
  44010. weight: math.unit(150, "lb"),
  44011. name: "Human",
  44012. image: {
  44013. source: "./media/characters/autumn/human.svg",
  44014. extra: 1200/1149,
  44015. bottom: 30/1230
  44016. }
  44017. },
  44018. },
  44019. [
  44020. {
  44021. name: "Normal",
  44022. height: math.unit(8, "feet"),
  44023. default: true
  44024. },
  44025. ]
  44026. ))
  44027. characterMakers.push(() => makeCharacter(
  44028. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44029. {
  44030. front: {
  44031. height: math.unit(8 + 5/12, "feet"),
  44032. weight: math.unit(825, "lb"),
  44033. name: "Front",
  44034. image: {
  44035. source: "./media/characters/cobalt-charizard/front.svg",
  44036. extra: 1268/1155,
  44037. bottom: 122/1390
  44038. }
  44039. },
  44040. side: {
  44041. height: math.unit(8 + 5/12, "feet"),
  44042. weight: math.unit(825, "lb"),
  44043. name: "Side",
  44044. image: {
  44045. source: "./media/characters/cobalt-charizard/side.svg",
  44046. extra: 1348/1257,
  44047. bottom: 58/1406
  44048. }
  44049. },
  44050. gMax: {
  44051. height: math.unit(134 + 11/12, "feet"),
  44052. name: "G-Max",
  44053. image: {
  44054. source: "./media/characters/cobalt-charizard/g-max.svg",
  44055. extra: 1835/1541,
  44056. bottom: 151/1986
  44057. }
  44058. },
  44059. },
  44060. [
  44061. {
  44062. name: "Normal",
  44063. height: math.unit(8 + 5/12, "feet"),
  44064. default: true
  44065. },
  44066. ]
  44067. ))
  44068. characterMakers.push(() => makeCharacter(
  44069. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44070. {
  44071. front: {
  44072. height: math.unit(6 + 3/12, "feet"),
  44073. weight: math.unit(210, "lb"),
  44074. name: "Front",
  44075. image: {
  44076. source: "./media/characters/stella/front.svg",
  44077. extra: 3549/3335,
  44078. bottom: 51/3600
  44079. }
  44080. },
  44081. },
  44082. [
  44083. {
  44084. name: "Normal",
  44085. height: math.unit(6 + 3/12, "feet"),
  44086. default: true
  44087. },
  44088. ]
  44089. ))
  44090. characterMakers.push(() => makeCharacter(
  44091. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44092. {
  44093. front: {
  44094. height: math.unit(5, "feet"),
  44095. weight: math.unit(90, "lb"),
  44096. name: "Front",
  44097. image: {
  44098. source: "./media/characters/riley-bishop/front.svg",
  44099. extra: 1450/1428,
  44100. bottom: 152/1602
  44101. }
  44102. },
  44103. },
  44104. [
  44105. {
  44106. name: "Normal",
  44107. height: math.unit(5, "feet"),
  44108. default: true
  44109. },
  44110. ]
  44111. ))
  44112. characterMakers.push(() => makeCharacter(
  44113. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44114. {
  44115. side: {
  44116. height: math.unit(8 + 2/12, "feet"),
  44117. weight: math.unit(500, "kg"),
  44118. name: "Side",
  44119. image: {
  44120. source: "./media/characters/theo-arcanine/side.svg",
  44121. extra: 1342/1074,
  44122. bottom: 111/1453
  44123. }
  44124. },
  44125. },
  44126. [
  44127. {
  44128. name: "Normal",
  44129. height: math.unit(8 + 2/12, "feet"),
  44130. default: true
  44131. },
  44132. ]
  44133. ))
  44134. characterMakers.push(() => makeCharacter(
  44135. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44136. {
  44137. front: {
  44138. height: math.unit(4, "feet"),
  44139. name: "Front",
  44140. image: {
  44141. source: "./media/characters/kali/front.svg",
  44142. extra: 1921/1357,
  44143. bottom: 70/1991
  44144. }
  44145. },
  44146. },
  44147. [
  44148. {
  44149. name: "Normal",
  44150. height: math.unit(4, "feet"),
  44151. default: true
  44152. },
  44153. {
  44154. name: "Macro",
  44155. height: math.unit(32, "meters")
  44156. },
  44157. {
  44158. name: "Macro+",
  44159. height: math.unit(150, "meters")
  44160. },
  44161. {
  44162. name: "Megamacro",
  44163. height: math.unit(7500, "meters")
  44164. },
  44165. {
  44166. name: "Megamacro+",
  44167. height: math.unit(80, "kilometers")
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44173. {
  44174. side: {
  44175. height: math.unit(5 + 11/12, "feet"),
  44176. weight: math.unit(236, "lb"),
  44177. name: "Side",
  44178. image: {
  44179. source: "./media/characters/gapp/side.svg",
  44180. extra: 775/340,
  44181. bottom: 58/833
  44182. }
  44183. },
  44184. mouth: {
  44185. height: math.unit(2.98, "feet"),
  44186. name: "Mouth",
  44187. image: {
  44188. source: "./media/characters/gapp/mouth.svg"
  44189. }
  44190. },
  44191. },
  44192. [
  44193. {
  44194. name: "Normal",
  44195. height: math.unit(5 + 1/12, "feet"),
  44196. default: true
  44197. },
  44198. ]
  44199. ))
  44200. characterMakers.push(() => makeCharacter(
  44201. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44202. {
  44203. front: {
  44204. height: math.unit(6, "feet"),
  44205. name: "Front",
  44206. image: {
  44207. source: "./media/characters/persephone/front.svg",
  44208. extra: 1895/1717,
  44209. bottom: 96/1991
  44210. }
  44211. },
  44212. back: {
  44213. height: math.unit(6, "feet"),
  44214. name: "Back",
  44215. image: {
  44216. source: "./media/characters/persephone/back.svg",
  44217. extra: 1868/1679,
  44218. bottom: 26/1894
  44219. }
  44220. },
  44221. casual: {
  44222. height: math.unit(6, "feet"),
  44223. name: "Casual",
  44224. image: {
  44225. source: "./media/characters/persephone/casual.svg",
  44226. extra: 1713/1541,
  44227. bottom: 76/1789
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Human Size",
  44234. height: math.unit(6, "feet")
  44235. },
  44236. {
  44237. name: "Big Steppy",
  44238. height: math.unit(600, "meters"),
  44239. default: true
  44240. },
  44241. {
  44242. name: "Galaxy Brain",
  44243. height: math.unit(1, "zettameter")
  44244. },
  44245. ]
  44246. ))
  44247. characterMakers.push(() => makeCharacter(
  44248. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44249. {
  44250. front: {
  44251. height: math.unit(1.85, "meters"),
  44252. name: "Front",
  44253. image: {
  44254. source: "./media/characters/riley-foxthing/front.svg",
  44255. extra: 1495/1354,
  44256. bottom: 122/1617
  44257. }
  44258. },
  44259. frontAlt: {
  44260. height: math.unit(1.85, "meters"),
  44261. name: "Front (Alt)",
  44262. image: {
  44263. source: "./media/characters/riley-foxthing/front-alt.svg",
  44264. extra: 1572/1389,
  44265. bottom: 116/1688
  44266. }
  44267. },
  44268. },
  44269. [
  44270. {
  44271. name: "Normal Sized",
  44272. height: math.unit(1.85, "meters"),
  44273. default: true
  44274. },
  44275. {
  44276. name: "Quite Sizable",
  44277. height: math.unit(5, "meters")
  44278. },
  44279. {
  44280. name: "Rather Large",
  44281. height: math.unit(20, "meters")
  44282. },
  44283. {
  44284. name: "Macro",
  44285. height: math.unit(450, "meters")
  44286. },
  44287. {
  44288. name: "Giga",
  44289. height: math.unit(5, "km")
  44290. },
  44291. ]
  44292. ))
  44293. characterMakers.push(() => makeCharacter(
  44294. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44295. {
  44296. front: {
  44297. height: math.unit(6, "feet"),
  44298. weight: math.unit(200, "lb"),
  44299. name: "Front",
  44300. image: {
  44301. source: "./media/characters/blizzard/front.svg",
  44302. extra: 1136/990,
  44303. bottom: 136/1272
  44304. }
  44305. },
  44306. back: {
  44307. height: math.unit(6, "feet"),
  44308. weight: math.unit(200, "lb"),
  44309. name: "Back",
  44310. image: {
  44311. source: "./media/characters/blizzard/back.svg",
  44312. extra: 1175/1034,
  44313. bottom: 97/1272
  44314. }
  44315. },
  44316. sitting: {
  44317. height: math.unit(3.725, "feet"),
  44318. weight: math.unit(200, "lb"),
  44319. name: "Sitting",
  44320. image: {
  44321. source: "./media/characters/blizzard/sitting.svg",
  44322. extra: 581/485,
  44323. bottom: 90/671
  44324. }
  44325. },
  44326. frontWizard: {
  44327. height: math.unit(7.9, "feet"),
  44328. weight: math.unit(200, "lb"),
  44329. name: "Front (Wizard)",
  44330. image: {
  44331. source: "./media/characters/blizzard/front-wizard.svg"
  44332. }
  44333. },
  44334. backWizard: {
  44335. height: math.unit(7.9, "feet"),
  44336. weight: math.unit(200, "lb"),
  44337. name: "Back (Wizard)",
  44338. image: {
  44339. source: "./media/characters/blizzard/back-wizard.svg"
  44340. }
  44341. },
  44342. frontNsfw: {
  44343. height: math.unit(6, "feet"),
  44344. weight: math.unit(200, "lb"),
  44345. name: "Front (NSFW)",
  44346. image: {
  44347. source: "./media/characters/blizzard/front-nsfw.svg",
  44348. extra: 1136/990,
  44349. bottom: 136/1272
  44350. }
  44351. },
  44352. backNsfw: {
  44353. height: math.unit(6, "feet"),
  44354. weight: math.unit(200, "lb"),
  44355. name: "Back (NSFW)",
  44356. image: {
  44357. source: "./media/characters/blizzard/back-nsfw.svg",
  44358. extra: 1175/1034,
  44359. bottom: 97/1272
  44360. }
  44361. },
  44362. sittingNsfw: {
  44363. height: math.unit(3.725, "feet"),
  44364. weight: math.unit(200, "lb"),
  44365. name: "Sitting (NSFW)",
  44366. image: {
  44367. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44368. extra: 581/485,
  44369. bottom: 90/671
  44370. }
  44371. },
  44372. wizardFrontNsfw: {
  44373. height: math.unit(7.9, "feet"),
  44374. weight: math.unit(200, "lb"),
  44375. name: "Wizard (Front, NSFW)",
  44376. image: {
  44377. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44378. }
  44379. },
  44380. },
  44381. [
  44382. {
  44383. name: "Normal",
  44384. height: math.unit(6, "feet"),
  44385. default: true
  44386. },
  44387. ]
  44388. ))
  44389. characterMakers.push(() => makeCharacter(
  44390. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44391. {
  44392. front: {
  44393. height: math.unit(5 + 2/12, "feet"),
  44394. name: "Front",
  44395. image: {
  44396. source: "./media/characters/lumi/front.svg",
  44397. extra: 1328/1268,
  44398. bottom: 103/1431
  44399. }
  44400. },
  44401. back: {
  44402. height: math.unit(5 + 2/12, "feet"),
  44403. name: "Back",
  44404. image: {
  44405. source: "./media/characters/lumi/back.svg",
  44406. extra: 1381/1327,
  44407. bottom: 43/1424
  44408. }
  44409. },
  44410. },
  44411. [
  44412. {
  44413. name: "Normal",
  44414. height: math.unit(5 + 2/12, "feet"),
  44415. default: true
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44421. {
  44422. front: {
  44423. height: math.unit(5 + 9/12, "feet"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/aliya-cotton/front.svg",
  44427. extra: 577/564,
  44428. bottom: 29/606
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(5 + 9/12, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(2.7, "meters"),
  44445. weight: math.unit(25000, "lb"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/noah-luxray/front.svg",
  44449. extra: 1644/825,
  44450. bottom: 339/1983
  44451. }
  44452. },
  44453. side: {
  44454. height: math.unit(2.97, "meters"),
  44455. weight: math.unit(25000, "lb"),
  44456. name: "Side",
  44457. image: {
  44458. source: "./media/characters/noah-luxray/side.svg",
  44459. extra: 1319/650,
  44460. bottom: 163/1482
  44461. }
  44462. },
  44463. dick: {
  44464. height: math.unit(7.4, "feet"),
  44465. weight: math.unit(2500, "lb"),
  44466. name: "Dick",
  44467. image: {
  44468. source: "./media/characters/noah-luxray/dick.svg"
  44469. }
  44470. },
  44471. dickAlt: {
  44472. height: math.unit(10.83, "feet"),
  44473. weight: math.unit(2500, "lb"),
  44474. name: "Dick-alt",
  44475. image: {
  44476. source: "./media/characters/noah-luxray/dick-alt.svg"
  44477. }
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "BIG",
  44483. height: math.unit(2.7, "meters"),
  44484. default: true
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44490. {
  44491. standing: {
  44492. height: math.unit(183, "cm"),
  44493. weight: math.unit(68, "kg"),
  44494. name: "Standing",
  44495. image: {
  44496. source: "./media/characters/arion/standing.svg",
  44497. extra: 1869/1807,
  44498. bottom: 93/1962
  44499. }
  44500. },
  44501. reclining: {
  44502. height: math.unit(70.5, "cm"),
  44503. weight: math.unit(68, "lb"),
  44504. name: "Reclining",
  44505. image: {
  44506. source: "./media/characters/arion/reclining.svg",
  44507. extra: 937/870,
  44508. bottom: 63/1000
  44509. }
  44510. },
  44511. },
  44512. [
  44513. {
  44514. name: "Colossus Size, Low",
  44515. height: math.unit(33, "meters"),
  44516. default: true
  44517. },
  44518. {
  44519. name: "Colossus Size, Mid",
  44520. height: math.unit(52, "meters")
  44521. },
  44522. {
  44523. name: "Colossus Size, High",
  44524. height: math.unit(60, "meters")
  44525. },
  44526. {
  44527. name: "Titan Size, Low",
  44528. height: math.unit(91, "meters"),
  44529. },
  44530. {
  44531. name: "Titan Size, Mid",
  44532. height: math.unit(122, "meters")
  44533. },
  44534. {
  44535. name: "Titan Size, High",
  44536. height: math.unit(162, "meters")
  44537. },
  44538. ]
  44539. ))
  44540. characterMakers.push(() => makeCharacter(
  44541. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44542. {
  44543. front: {
  44544. height: math.unit(53, "meters"),
  44545. name: "Front",
  44546. image: {
  44547. source: "./media/characters/stellar-marbey/front.svg",
  44548. extra: 1913/1805,
  44549. bottom: 92/2005
  44550. }
  44551. },
  44552. back: {
  44553. height: math.unit(53, "meters"),
  44554. name: "Back",
  44555. image: {
  44556. source: "./media/characters/stellar-marbey/back.svg",
  44557. extra: 1960/1851,
  44558. bottom: 28/1988
  44559. }
  44560. },
  44561. mouth: {
  44562. height: math.unit(3.5, "meters"),
  44563. name: "Mouth",
  44564. image: {
  44565. source: "./media/characters/stellar-marbey/mouth.svg"
  44566. }
  44567. },
  44568. },
  44569. [
  44570. {
  44571. name: "Macro",
  44572. height: math.unit(53, "meters"),
  44573. default: true
  44574. },
  44575. ]
  44576. ))
  44577. characterMakers.push(() => makeCharacter(
  44578. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44579. {
  44580. front: {
  44581. height: math.unit(8 + 1/12, "feet"),
  44582. weight: math.unit(233, "lb"),
  44583. name: "Front",
  44584. image: {
  44585. source: "./media/characters/matsu/front.svg",
  44586. extra: 832/772,
  44587. bottom: 40/872
  44588. }
  44589. },
  44590. back: {
  44591. height: math.unit(8 + 1/12, "feet"),
  44592. weight: math.unit(233, "lb"),
  44593. name: "Back",
  44594. image: {
  44595. source: "./media/characters/matsu/back.svg",
  44596. extra: 839/780,
  44597. bottom: 47/886
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Normal",
  44604. height: math.unit(8 + 1/12, "feet"),
  44605. default: true
  44606. },
  44607. ]
  44608. ))
  44609. characterMakers.push(() => makeCharacter(
  44610. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44611. {
  44612. front: {
  44613. height: math.unit(4, "feet"),
  44614. weight: math.unit(148, "lb"),
  44615. name: "Front",
  44616. image: {
  44617. source: "./media/characters/thiz/front.svg",
  44618. extra: 1913/1748,
  44619. bottom: 62/1975
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(4, "feet"),
  44627. default: true
  44628. },
  44629. ]
  44630. ))
  44631. characterMakers.push(() => makeCharacter(
  44632. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44633. {
  44634. front: {
  44635. height: math.unit(7 + 6/12, "feet"),
  44636. weight: math.unit(267, "lb"),
  44637. name: "Front",
  44638. image: {
  44639. source: "./media/characters/marcel/front.svg",
  44640. extra: 1221/1096,
  44641. bottom: 76/1297
  44642. }
  44643. },
  44644. },
  44645. [
  44646. {
  44647. name: "Normal",
  44648. height: math.unit(7 + 6/12, "feet"),
  44649. default: true
  44650. },
  44651. ]
  44652. ))
  44653. characterMakers.push(() => makeCharacter(
  44654. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44655. {
  44656. side: {
  44657. height: math.unit(42, "meters"),
  44658. name: "Side",
  44659. image: {
  44660. source: "./media/characters/flake/side.svg",
  44661. extra: 1525/1306,
  44662. bottom: 209/1734
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(42, "meters"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44676. {
  44677. dressed: {
  44678. height: math.unit(6 + 4/12, "feet"),
  44679. weight: math.unit(520, "lb"),
  44680. name: "Dressed",
  44681. image: {
  44682. source: "./media/characters/someonne/dressed.svg",
  44683. extra: 1020/1010,
  44684. bottom: 178/1198
  44685. }
  44686. },
  44687. undressed: {
  44688. height: math.unit(6 + 4/12, "feet"),
  44689. weight: math.unit(520, "lb"),
  44690. name: "Undressed",
  44691. image: {
  44692. source: "./media/characters/someonne/undressed.svg",
  44693. extra: 1019/1014,
  44694. bottom: 169/1188
  44695. }
  44696. },
  44697. },
  44698. [
  44699. {
  44700. name: "Normal",
  44701. height: math.unit(6 + 4/12, "feet"),
  44702. default: true
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44708. {
  44709. front: {
  44710. height: math.unit(3, "feet"),
  44711. weight: math.unit(30, "lb"),
  44712. name: "Front",
  44713. image: {
  44714. source: "./media/characters/till/front.svg",
  44715. extra: 892/823,
  44716. bottom: 55/947
  44717. }
  44718. },
  44719. },
  44720. [
  44721. {
  44722. name: "Normal",
  44723. height: math.unit(3, "feet"),
  44724. default: true
  44725. },
  44726. ]
  44727. ))
  44728. characterMakers.push(() => makeCharacter(
  44729. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44730. {
  44731. front: {
  44732. height: math.unit(9 + 8/12, "feet"),
  44733. weight: math.unit(800, "lb"),
  44734. name: "Front",
  44735. image: {
  44736. source: "./media/characters/sydney-heki/front.svg",
  44737. extra: 1360/1300,
  44738. bottom: 22/1382
  44739. }
  44740. },
  44741. back: {
  44742. height: math.unit(9 + 8/12, "feet"),
  44743. weight: math.unit(800, "lb"),
  44744. name: "Back",
  44745. image: {
  44746. source: "./media/characters/sydney-heki/back.svg",
  44747. extra: 1356/1293,
  44748. bottom: 12/1368
  44749. }
  44750. },
  44751. frontDressed: {
  44752. height: math.unit(9 + 8/12, "feet"),
  44753. weight: math.unit(800, "lb"),
  44754. name: "Front-dressed",
  44755. image: {
  44756. source: "./media/characters/sydney-heki/front-dressed.svg",
  44757. extra: 1360/1300,
  44758. bottom: 22/1382
  44759. }
  44760. },
  44761. },
  44762. [
  44763. {
  44764. name: "Normal",
  44765. height: math.unit(9 + 8/12, "feet"),
  44766. default: true
  44767. },
  44768. {
  44769. name: "Macro",
  44770. height: math.unit(500, "feet")
  44771. },
  44772. {
  44773. name: "Megamacro",
  44774. height: math.unit(3.6, "miles")
  44775. },
  44776. ]
  44777. ))
  44778. characterMakers.push(() => makeCharacter(
  44779. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44780. {
  44781. front: {
  44782. height: math.unit(200, "cm"),
  44783. weight: math.unit(250, "lb"),
  44784. name: "Front",
  44785. image: {
  44786. source: "./media/characters/fowler-karlsson/front.svg",
  44787. extra: 897/845,
  44788. bottom: 123/1020
  44789. }
  44790. },
  44791. back: {
  44792. height: math.unit(200, "cm"),
  44793. weight: math.unit(250, "lb"),
  44794. name: "Back",
  44795. image: {
  44796. source: "./media/characters/fowler-karlsson/back.svg",
  44797. extra: 999/944,
  44798. bottom: 26/1025
  44799. }
  44800. },
  44801. dick: {
  44802. height: math.unit(1.92, "feet"),
  44803. weight: math.unit(150, "lb"),
  44804. name: "Dick",
  44805. image: {
  44806. source: "./media/characters/fowler-karlsson/dick.svg"
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(200, "cm"),
  44814. default: true
  44815. },
  44816. {
  44817. name: "Smaller Macro",
  44818. height: math.unit(90, "m")
  44819. },
  44820. {
  44821. name: "Macro",
  44822. height: math.unit(150, "m")
  44823. },
  44824. {
  44825. name: "Bigger Macro",
  44826. height: math.unit(300, "m")
  44827. },
  44828. ]
  44829. ))
  44830. characterMakers.push(() => makeCharacter(
  44831. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44832. {
  44833. side: {
  44834. height: math.unit(8 + 2/12, "feet"),
  44835. weight: math.unit(1, "tonne"),
  44836. name: "Side",
  44837. image: {
  44838. source: "./media/characters/rylide/side.svg",
  44839. extra: 1318/1034,
  44840. bottom: 106/1424
  44841. }
  44842. },
  44843. sitting: {
  44844. height: math.unit(303, "cm"),
  44845. weight: math.unit(1, "tonne"),
  44846. name: "Sitting",
  44847. image: {
  44848. source: "./media/characters/rylide/sitting.svg",
  44849. extra: 1303/1103,
  44850. bottom: 36/1339
  44851. }
  44852. },
  44853. },
  44854. [
  44855. {
  44856. name: "Normal",
  44857. height: math.unit(8 + 2/12, "feet"),
  44858. default: true
  44859. },
  44860. ]
  44861. ))
  44862. characterMakers.push(() => makeCharacter(
  44863. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44864. {
  44865. front: {
  44866. height: math.unit(5 + 10/12, "feet"),
  44867. weight: math.unit(160, "lb"),
  44868. name: "Front",
  44869. image: {
  44870. source: "./media/characters/pudask/front.svg",
  44871. extra: 1616/1590,
  44872. bottom: 161/1777
  44873. }
  44874. },
  44875. },
  44876. [
  44877. {
  44878. name: "Ferret Height",
  44879. height: math.unit(2 + 5/12, "feet")
  44880. },
  44881. {
  44882. name: "Canon Height",
  44883. height: math.unit(5 + 10/12, "feet"),
  44884. default: true
  44885. },
  44886. ]
  44887. ))
  44888. characterMakers.push(() => makeCharacter(
  44889. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44890. {
  44891. front: {
  44892. height: math.unit(3 + 6/12, "feet"),
  44893. weight: math.unit(60, "lb"),
  44894. name: "Front",
  44895. image: {
  44896. source: "./media/characters/ramita/front.svg",
  44897. extra: 1402/1232,
  44898. bottom: 62/1464
  44899. }
  44900. },
  44901. dressed: {
  44902. height: math.unit(3 + 6/12, "feet"),
  44903. weight: math.unit(60, "lb"),
  44904. name: "Dressed",
  44905. image: {
  44906. source: "./media/characters/ramita/dressed.svg",
  44907. extra: 1534/1249,
  44908. bottom: 50/1584
  44909. }
  44910. },
  44911. },
  44912. [
  44913. {
  44914. name: "Normal",
  44915. height: math.unit(3 + 6/12, "feet"),
  44916. default: true
  44917. },
  44918. ]
  44919. ))
  44920. characterMakers.push(() => makeCharacter(
  44921. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44922. {
  44923. front: {
  44924. height: math.unit(8, "feet"),
  44925. name: "Front",
  44926. image: {
  44927. source: "./media/characters/ark/front.svg",
  44928. extra: 772/693,
  44929. bottom: 45/817
  44930. }
  44931. },
  44932. },
  44933. [
  44934. {
  44935. name: "Normal",
  44936. height: math.unit(8, "feet"),
  44937. default: true
  44938. },
  44939. ]
  44940. ))
  44941. characterMakers.push(() => makeCharacter(
  44942. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44943. {
  44944. front: {
  44945. height: math.unit(6, "feet"),
  44946. weight: math.unit(250, "lb"),
  44947. volume: math.unit(5/8, "gallons"),
  44948. name: "Front",
  44949. image: {
  44950. source: "./media/characters/ludwig-horn/front.svg",
  44951. extra: 1782/1635,
  44952. bottom: 96/1878
  44953. }
  44954. },
  44955. back: {
  44956. height: math.unit(6, "feet"),
  44957. weight: math.unit(250, "lb"),
  44958. volume: math.unit(5/8, "gallons"),
  44959. name: "Back",
  44960. image: {
  44961. source: "./media/characters/ludwig-horn/back.svg",
  44962. extra: 1874/1729,
  44963. bottom: 27/1901
  44964. }
  44965. },
  44966. dick: {
  44967. height: math.unit(1.05, "feet"),
  44968. weight: math.unit(15, "lb"),
  44969. volume: math.unit(5/8, "gallons"),
  44970. name: "Dick",
  44971. image: {
  44972. source: "./media/characters/ludwig-horn/dick.svg"
  44973. }
  44974. },
  44975. },
  44976. [
  44977. {
  44978. name: "Small",
  44979. height: math.unit(6, "feet")
  44980. },
  44981. {
  44982. name: "Typical",
  44983. height: math.unit(12, "feet"),
  44984. default: true
  44985. },
  44986. {
  44987. name: "Building",
  44988. height: math.unit(80, "feet")
  44989. },
  44990. {
  44991. name: "Town",
  44992. height: math.unit(800, "feet")
  44993. },
  44994. {
  44995. name: "Kingdom",
  44996. height: math.unit(80000, "feet")
  44997. },
  44998. {
  44999. name: "Planet",
  45000. height: math.unit(8000000, "feet")
  45001. },
  45002. {
  45003. name: "Universe",
  45004. height: math.unit(8000000000, "feet")
  45005. },
  45006. {
  45007. name: "Transcended",
  45008. height: math.unit(8e27, "feet")
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45014. {
  45015. front: {
  45016. height: math.unit(5, "feet"),
  45017. weight: math.unit(50, "kg"),
  45018. name: "Front",
  45019. image: {
  45020. source: "./media/characters/biot-avery/front.svg",
  45021. extra: 1295/1232,
  45022. bottom: 86/1381
  45023. }
  45024. },
  45025. },
  45026. [
  45027. {
  45028. name: "Normal",
  45029. height: math.unit(5, "feet"),
  45030. default: true
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(6, "feet"),
  45039. name: "Front",
  45040. image: {
  45041. source: "./media/characters/kitsune-kiro/front.svg",
  45042. extra: 1270/1158,
  45043. bottom: 42/1312
  45044. }
  45045. },
  45046. frontAlt: {
  45047. height: math.unit(6, "feet"),
  45048. name: "Front-alt",
  45049. image: {
  45050. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45051. extra: 1130/1081,
  45052. bottom: 36/1166
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Smol",
  45059. height: math.unit(3, "feet")
  45060. },
  45061. {
  45062. name: "Normal",
  45063. height: math.unit(6, "feet"),
  45064. default: true
  45065. },
  45066. ]
  45067. ))
  45068. characterMakers.push(() => makeCharacter(
  45069. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45070. {
  45071. front: {
  45072. height: math.unit(6, "feet"),
  45073. weight: math.unit(125, "lb"),
  45074. name: "Front",
  45075. image: {
  45076. source: "./media/characters/jack-thatcher/front.svg",
  45077. extra: 1474/1370,
  45078. bottom: 26/1500
  45079. }
  45080. },
  45081. back: {
  45082. height: math.unit(6, "feet"),
  45083. weight: math.unit(125, "lb"),
  45084. name: "Back",
  45085. image: {
  45086. source: "./media/characters/jack-thatcher/back.svg",
  45087. extra: 1489/1384,
  45088. bottom: 18/1507
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Normal",
  45095. height: math.unit(6, "feet"),
  45096. default: true
  45097. },
  45098. {
  45099. name: "Macro",
  45100. height: math.unit(75, "feet")
  45101. },
  45102. {
  45103. name: "Macro-er",
  45104. height: math.unit(250, "feet")
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45110. {
  45111. front: {
  45112. height: math.unit(7, "feet"),
  45113. weight: math.unit(110, "kg"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/max-hyper/front.svg",
  45117. extra: 1969/1881,
  45118. bottom: 49/2018
  45119. }
  45120. },
  45121. },
  45122. [
  45123. {
  45124. name: "Normal",
  45125. height: math.unit(7, "feet"),
  45126. default: true
  45127. },
  45128. ]
  45129. ))
  45130. characterMakers.push(() => makeCharacter(
  45131. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45132. {
  45133. front: {
  45134. height: math.unit(5 + 5/12, "feet"),
  45135. weight: math.unit(160, "lb"),
  45136. name: "Front",
  45137. image: {
  45138. source: "./media/characters/spook/front.svg",
  45139. extra: 794/791,
  45140. bottom: 54/848
  45141. }
  45142. },
  45143. back: {
  45144. height: math.unit(5 + 5/12, "feet"),
  45145. weight: math.unit(160, "lb"),
  45146. name: "Back",
  45147. image: {
  45148. source: "./media/characters/spook/back.svg",
  45149. extra: 812/798,
  45150. bottom: 32/844
  45151. }
  45152. },
  45153. },
  45154. [
  45155. {
  45156. name: "Normal",
  45157. height: math.unit(5 + 5/12, "feet"),
  45158. default: true
  45159. },
  45160. ]
  45161. ))
  45162. characterMakers.push(() => makeCharacter(
  45163. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45164. {
  45165. front: {
  45166. height: math.unit(18, "feet"),
  45167. name: "Front",
  45168. image: {
  45169. source: "./media/characters/xeaduulix/front.svg",
  45170. extra: 1380/1166,
  45171. bottom: 110/1490
  45172. }
  45173. },
  45174. back: {
  45175. height: math.unit(18, "feet"),
  45176. name: "Back",
  45177. image: {
  45178. source: "./media/characters/xeaduulix/back.svg",
  45179. extra: 1592/1170,
  45180. bottom: 128/1720
  45181. }
  45182. },
  45183. frontNsfw: {
  45184. height: math.unit(18, "feet"),
  45185. name: "Front (NSFW)",
  45186. image: {
  45187. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45188. extra: 1380/1166,
  45189. bottom: 110/1490
  45190. }
  45191. },
  45192. backNsfw: {
  45193. height: math.unit(18, "feet"),
  45194. name: "Back (NSFW)",
  45195. image: {
  45196. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45197. extra: 1592/1170,
  45198. bottom: 128/1720
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(18, "feet"),
  45206. default: true
  45207. },
  45208. ]
  45209. ))
  45210. characterMakers.push(() => makeCharacter(
  45211. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45212. {
  45213. spreadWings: {
  45214. height: math.unit(20, "feet"),
  45215. name: "Spread Wings",
  45216. image: {
  45217. source: "./media/characters/fledge/spread-wings.svg",
  45218. extra: 693/635,
  45219. bottom: 26/719
  45220. }
  45221. },
  45222. front: {
  45223. height: math.unit(20, "feet"),
  45224. name: "Front",
  45225. image: {
  45226. source: "./media/characters/fledge/front.svg",
  45227. extra: 684/637,
  45228. bottom: 18/702
  45229. }
  45230. },
  45231. frontAlt: {
  45232. height: math.unit(20, "feet"),
  45233. name: "Front (Alt)",
  45234. image: {
  45235. source: "./media/characters/fledge/front-alt.svg",
  45236. extra: 708/664,
  45237. bottom: 13/721
  45238. }
  45239. },
  45240. back: {
  45241. height: math.unit(20, "feet"),
  45242. name: "Back",
  45243. image: {
  45244. source: "./media/characters/fledge/back.svg",
  45245. extra: 718/634,
  45246. bottom: 22/740
  45247. }
  45248. },
  45249. head: {
  45250. height: math.unit(5.55, "feet"),
  45251. name: "Head",
  45252. image: {
  45253. source: "./media/characters/fledge/head.svg"
  45254. }
  45255. },
  45256. headAlt: {
  45257. height: math.unit(5.1, "feet"),
  45258. name: "Head (Alt)",
  45259. image: {
  45260. source: "./media/characters/fledge/head-alt.svg"
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Small",
  45267. height: math.unit(6 + 2/12, "feet")
  45268. },
  45269. {
  45270. name: "Big",
  45271. height: math.unit(20, "feet"),
  45272. default: true
  45273. },
  45274. {
  45275. name: "Giant",
  45276. height: math.unit(100, "feet")
  45277. },
  45278. {
  45279. name: "Macro",
  45280. height: math.unit(200, "feet")
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(1, "meter"),
  45289. name: "Front",
  45290. image: {
  45291. source: "./media/characters/atlas-morenai/front.svg",
  45292. extra: 1275/1043,
  45293. bottom: 19/1294
  45294. }
  45295. },
  45296. back: {
  45297. height: math.unit(1, "meter"),
  45298. name: "Back",
  45299. image: {
  45300. source: "./media/characters/atlas-morenai/back.svg",
  45301. extra: 1141/1001,
  45302. bottom: 25/1166
  45303. }
  45304. },
  45305. },
  45306. [
  45307. {
  45308. name: "Normal",
  45309. height: math.unit(1, "meter"),
  45310. default: true
  45311. },
  45312. {
  45313. name: "Magic-Infused",
  45314. height: math.unit(5, "meters")
  45315. },
  45316. ]
  45317. ))
  45318. characterMakers.push(() => makeCharacter(
  45319. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45320. {
  45321. front: {
  45322. height: math.unit(5, "meters"),
  45323. name: "Front",
  45324. image: {
  45325. source: "./media/characters/cintia/front.svg",
  45326. extra: 1312/1228,
  45327. bottom: 38/1350
  45328. }
  45329. },
  45330. back: {
  45331. height: math.unit(5, "meters"),
  45332. name: "Back",
  45333. image: {
  45334. source: "./media/characters/cintia/back.svg",
  45335. extra: 1260/1166,
  45336. bottom: 98/1358
  45337. }
  45338. },
  45339. frontDick: {
  45340. height: math.unit(5, "meters"),
  45341. name: "Front (Dick)",
  45342. image: {
  45343. source: "./media/characters/cintia/front-dick.svg",
  45344. extra: 1312/1228,
  45345. bottom: 38/1350
  45346. }
  45347. },
  45348. backDick: {
  45349. height: math.unit(5, "meters"),
  45350. name: "Back (Dick)",
  45351. image: {
  45352. source: "./media/characters/cintia/back-dick.svg",
  45353. extra: 1260/1166,
  45354. bottom: 98/1358
  45355. }
  45356. },
  45357. bust: {
  45358. height: math.unit(1.97, "meters"),
  45359. name: "Bust",
  45360. image: {
  45361. source: "./media/characters/cintia/bust.svg",
  45362. extra: 617/565,
  45363. bottom: 0/617
  45364. }
  45365. },
  45366. },
  45367. [
  45368. {
  45369. name: "Normal",
  45370. height: math.unit(5, "meters"),
  45371. default: true
  45372. },
  45373. ]
  45374. ))
  45375. characterMakers.push(() => makeCharacter(
  45376. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45377. {
  45378. side: {
  45379. height: math.unit(100, "feet"),
  45380. name: "Side",
  45381. image: {
  45382. source: "./media/characters/denora/side.svg",
  45383. extra: 875/803,
  45384. bottom: 9/884
  45385. }
  45386. },
  45387. },
  45388. [
  45389. {
  45390. name: "Standard",
  45391. height: math.unit(100, "feet"),
  45392. default: true
  45393. },
  45394. {
  45395. name: "Grand",
  45396. height: math.unit(1000, "feet")
  45397. },
  45398. {
  45399. name: "Conquering",
  45400. height: math.unit(10000, "feet")
  45401. },
  45402. ]
  45403. ))
  45404. characterMakers.push(() => makeCharacter(
  45405. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45406. {
  45407. dressed: {
  45408. height: math.unit(8 + 5/12, "feet"),
  45409. weight: math.unit(700, "lb"),
  45410. name: "Dressed",
  45411. image: {
  45412. source: "./media/characters/kiva/dressed.svg",
  45413. extra: 1102/1055,
  45414. bottom: 60/1162
  45415. }
  45416. },
  45417. nude: {
  45418. height: math.unit(8 + 5/12, "feet"),
  45419. weight: math.unit(700, "lb"),
  45420. name: "Nude",
  45421. image: {
  45422. source: "./media/characters/kiva/nude.svg",
  45423. extra: 1102/1055,
  45424. bottom: 60/1162
  45425. }
  45426. },
  45427. },
  45428. [
  45429. {
  45430. name: "Base Height",
  45431. height: math.unit(8 + 5/12, "feet"),
  45432. default: true
  45433. },
  45434. {
  45435. name: "Macro",
  45436. height: math.unit(100, "feet")
  45437. },
  45438. {
  45439. name: "Max",
  45440. height: math.unit(3280, "feet")
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45446. {
  45447. front: {
  45448. height: math.unit(6 + 8/12, "feet"),
  45449. weight: math.unit(250, "lb"),
  45450. name: "Front",
  45451. image: {
  45452. source: "./media/characters/ztragon/front.svg",
  45453. extra: 1825/1684,
  45454. bottom: 98/1923
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Normal",
  45461. height: math.unit(6 + 8/12, "feet"),
  45462. default: true
  45463. },
  45464. {
  45465. name: "Macro",
  45466. height: math.unit(80, "feet")
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45472. {
  45473. front: {
  45474. height: math.unit(10.4, "feet"),
  45475. weight: math.unit(2, "tons"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/yesenia/front.svg",
  45479. extra: 1479/1474,
  45480. bottom: 233/1712
  45481. }
  45482. },
  45483. },
  45484. [
  45485. {
  45486. name: "Normal",
  45487. height: math.unit(10.4, "feet"),
  45488. default: true
  45489. },
  45490. ]
  45491. ))
  45492. characterMakers.push(() => makeCharacter(
  45493. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45494. {
  45495. normal: {
  45496. height: math.unit(6 + 1/12, "feet"),
  45497. weight: math.unit(180, "lb"),
  45498. name: "Normal",
  45499. image: {
  45500. source: "./media/characters/leanne-lycheborne/normal.svg",
  45501. extra: 1748/1660,
  45502. bottom: 98/1846
  45503. }
  45504. },
  45505. were: {
  45506. height: math.unit(12, "feet"),
  45507. weight: math.unit(1600, "lb"),
  45508. name: "Were",
  45509. image: {
  45510. source: "./media/characters/leanne-lycheborne/were.svg",
  45511. extra: 1485/1432,
  45512. bottom: 66/1551
  45513. }
  45514. },
  45515. },
  45516. [
  45517. {
  45518. name: "Normal",
  45519. height: math.unit(6 + 1/12, "feet"),
  45520. default: true
  45521. },
  45522. ]
  45523. ))
  45524. characterMakers.push(() => makeCharacter(
  45525. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45526. {
  45527. side: {
  45528. height: math.unit(13, "feet"),
  45529. name: "Side",
  45530. image: {
  45531. source: "./media/characters/kira-tyler/side.svg",
  45532. extra: 693/393,
  45533. bottom: 58/751
  45534. }
  45535. },
  45536. },
  45537. [
  45538. {
  45539. name: "Normal",
  45540. height: math.unit(13, "feet"),
  45541. default: true
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45547. {
  45548. front: {
  45549. height: math.unit(10.3, "feet"),
  45550. weight: math.unit(150, "lb"),
  45551. name: "Front",
  45552. image: {
  45553. source: "./media/characters/blaze/front.svg",
  45554. extra: 1378/1286,
  45555. bottom: 172/1550
  45556. }
  45557. },
  45558. },
  45559. [
  45560. {
  45561. name: "Normal",
  45562. height: math.unit(10.3, "feet"),
  45563. default: true
  45564. },
  45565. ]
  45566. ))
  45567. characterMakers.push(() => makeCharacter(
  45568. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45569. {
  45570. side: {
  45571. height: math.unit(2, "meters"),
  45572. weight: math.unit(400, "kg"),
  45573. name: "Side",
  45574. image: {
  45575. source: "./media/characters/anu/side.svg",
  45576. extra: 506/394,
  45577. bottom: 18/524
  45578. }
  45579. },
  45580. },
  45581. [
  45582. {
  45583. name: "Humanoid",
  45584. height: math.unit(2, "meters")
  45585. },
  45586. {
  45587. name: "Normal",
  45588. height: math.unit(5, "meters"),
  45589. default: true
  45590. },
  45591. ]
  45592. ))
  45593. characterMakers.push(() => makeCharacter(
  45594. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45595. {
  45596. front: {
  45597. height: math.unit(5 + 5/12, "feet"),
  45598. weight: math.unit(170, "lb"),
  45599. name: "Front",
  45600. image: {
  45601. source: "./media/characters/synx-the-lynx/front.svg",
  45602. extra: 1893/1745,
  45603. bottom: 17/1910
  45604. }
  45605. },
  45606. side: {
  45607. height: math.unit(5 + 5/12, "feet"),
  45608. weight: math.unit(170, "lb"),
  45609. name: "Side",
  45610. image: {
  45611. source: "./media/characters/synx-the-lynx/side.svg",
  45612. extra: 1884/1740,
  45613. bottom: 39/1923
  45614. }
  45615. },
  45616. back: {
  45617. height: math.unit(5 + 5/12, "feet"),
  45618. weight: math.unit(170, "lb"),
  45619. name: "Back",
  45620. image: {
  45621. source: "./media/characters/synx-the-lynx/back.svg",
  45622. extra: 1903/1755,
  45623. bottom: 14/1917
  45624. }
  45625. },
  45626. },
  45627. [
  45628. {
  45629. name: "Normal",
  45630. height: math.unit(5 + 5/12, "feet"),
  45631. default: true
  45632. },
  45633. ]
  45634. ))
  45635. characterMakers.push(() => makeCharacter(
  45636. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45637. {
  45638. back: {
  45639. height: math.unit(15, "feet"),
  45640. name: "Back",
  45641. image: {
  45642. source: "./media/characters/nadezda-fex/back.svg",
  45643. extra: 1695/1481,
  45644. bottom: 25/1720
  45645. }
  45646. },
  45647. },
  45648. [
  45649. {
  45650. name: "Normal",
  45651. height: math.unit(15, "feet"),
  45652. default: true
  45653. },
  45654. {
  45655. name: "Macro",
  45656. height: math.unit(2.5, "miles")
  45657. },
  45658. {
  45659. name: "Goddess",
  45660. height: math.unit(2, "multiverses")
  45661. },
  45662. ]
  45663. ))
  45664. characterMakers.push(() => makeCharacter(
  45665. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45666. {
  45667. front: {
  45668. height: math.unit(216, "cm"),
  45669. name: "Front",
  45670. image: {
  45671. source: "./media/characters/lev/front.svg",
  45672. extra: 1728/1670,
  45673. bottom: 82/1810
  45674. }
  45675. },
  45676. back: {
  45677. height: math.unit(216, "cm"),
  45678. name: "Back",
  45679. image: {
  45680. source: "./media/characters/lev/back.svg",
  45681. extra: 1738/1675,
  45682. bottom: 24/1762
  45683. }
  45684. },
  45685. dressed: {
  45686. height: math.unit(216, "cm"),
  45687. name: "Dressed",
  45688. image: {
  45689. source: "./media/characters/lev/dressed.svg",
  45690. extra: 1397/1351,
  45691. bottom: 73/1470
  45692. }
  45693. },
  45694. head: {
  45695. height: math.unit(0.51, "meter"),
  45696. name: "Head",
  45697. image: {
  45698. source: "./media/characters/lev/head.svg"
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(216, "cm"),
  45706. default: true
  45707. },
  45708. {
  45709. name: "Relatively Macro",
  45710. height: math.unit(80, "meters")
  45711. },
  45712. {
  45713. name: "Megamacro",
  45714. height: math.unit(21600, "meters")
  45715. },
  45716. {
  45717. name: "Megamacro+",
  45718. height: math.unit(64800, "meters")
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45724. {
  45725. front: {
  45726. height: math.unit(2, "meters"),
  45727. weight: math.unit(80, "kg"),
  45728. name: "Front",
  45729. image: {
  45730. source: "./media/characters/moka/front.svg",
  45731. extra: 1337/1255,
  45732. bottom: 58/1395
  45733. }
  45734. },
  45735. },
  45736. [
  45737. {
  45738. name: "Micro",
  45739. height: math.unit(15, "cm")
  45740. },
  45741. {
  45742. name: "Normal",
  45743. height: math.unit(2, "meters"),
  45744. default: true
  45745. },
  45746. {
  45747. name: "Macro",
  45748. height: math.unit(20, "meters"),
  45749. },
  45750. ]
  45751. ))
  45752. characterMakers.push(() => makeCharacter(
  45753. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45754. {
  45755. front: {
  45756. height: math.unit(9, "feet"),
  45757. weight: math.unit(240, "lb"),
  45758. name: "Front",
  45759. image: {
  45760. source: "./media/characters/kuzco/front.svg",
  45761. extra: 1593/1487,
  45762. bottom: 32/1625
  45763. }
  45764. },
  45765. side: {
  45766. height: math.unit(9, "feet"),
  45767. weight: math.unit(240, "lb"),
  45768. name: "Side",
  45769. image: {
  45770. source: "./media/characters/kuzco/side.svg",
  45771. extra: 1575/1485,
  45772. bottom: 30/1605
  45773. }
  45774. },
  45775. back: {
  45776. height: math.unit(9, "feet"),
  45777. weight: math.unit(240, "lb"),
  45778. name: "Back",
  45779. image: {
  45780. source: "./media/characters/kuzco/back.svg",
  45781. extra: 1603/1514,
  45782. bottom: 14/1617
  45783. }
  45784. },
  45785. },
  45786. [
  45787. {
  45788. name: "Normal",
  45789. height: math.unit(9, "feet"),
  45790. default: true
  45791. },
  45792. ]
  45793. ))
  45794. characterMakers.push(() => makeCharacter(
  45795. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45796. {
  45797. side: {
  45798. height: math.unit(2, "meters"),
  45799. weight: math.unit(300, "kg"),
  45800. name: "Side",
  45801. image: {
  45802. source: "./media/characters/ceruleus/side.svg",
  45803. extra: 1068/974,
  45804. bottom: 126/1194
  45805. }
  45806. },
  45807. },
  45808. [
  45809. {
  45810. name: "Normal",
  45811. height: math.unit(16, "meters"),
  45812. default: true
  45813. },
  45814. ]
  45815. ))
  45816. characterMakers.push(() => makeCharacter(
  45817. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45818. {
  45819. front: {
  45820. height: math.unit(9, "feet"),
  45821. weight: math.unit(500, "kg"),
  45822. name: "Front",
  45823. image: {
  45824. source: "./media/characters/acouya/front.svg",
  45825. extra: 1660/1473,
  45826. bottom: 28/1688
  45827. }
  45828. },
  45829. },
  45830. [
  45831. {
  45832. name: "Normal",
  45833. height: math.unit(9, "feet"),
  45834. default: true
  45835. },
  45836. ]
  45837. ))
  45838. characterMakers.push(() => makeCharacter(
  45839. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45840. {
  45841. front: {
  45842. height: math.unit(5 + 6/12, "feet"),
  45843. weight: math.unit(195, "lb"),
  45844. name: "Front",
  45845. image: {
  45846. source: "./media/characters/vant/front.svg",
  45847. extra: 1396/1320,
  45848. bottom: 20/1416
  45849. }
  45850. },
  45851. back: {
  45852. height: math.unit(5 + 6/12, "feet"),
  45853. weight: math.unit(195, "lb"),
  45854. name: "Back",
  45855. image: {
  45856. source: "./media/characters/vant/back.svg",
  45857. extra: 1396/1320,
  45858. bottom: 20/1416
  45859. }
  45860. },
  45861. maw: {
  45862. height: math.unit(0.75, "feet"),
  45863. name: "Maw",
  45864. image: {
  45865. source: "./media/characters/vant/maw.svg"
  45866. }
  45867. },
  45868. paw: {
  45869. height: math.unit(1.07, "feet"),
  45870. name: "Paw",
  45871. image: {
  45872. source: "./media/characters/vant/paw.svg"
  45873. }
  45874. },
  45875. },
  45876. [
  45877. {
  45878. name: "Micro",
  45879. height: math.unit(0.25, "inches")
  45880. },
  45881. {
  45882. name: "Normal",
  45883. height: math.unit(5 + 6/12, "feet"),
  45884. default: true
  45885. },
  45886. {
  45887. name: "Macro",
  45888. height: math.unit(75, "feet")
  45889. },
  45890. ]
  45891. ))
  45892. characterMakers.push(() => makeCharacter(
  45893. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45894. {
  45895. front: {
  45896. height: math.unit(30, "meters"),
  45897. weight: math.unit(363, "tons"),
  45898. name: "Front",
  45899. image: {
  45900. source: "./media/characters/ahra/front.svg",
  45901. extra: 1914/1814,
  45902. bottom: 46/1960
  45903. }
  45904. },
  45905. },
  45906. [
  45907. {
  45908. name: "Macro",
  45909. height: math.unit(30, "meters"),
  45910. default: true
  45911. },
  45912. ]
  45913. ))
  45914. characterMakers.push(() => makeCharacter(
  45915. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45916. {
  45917. undressed: {
  45918. height: math.unit(2, "m"),
  45919. weight: math.unit(250, "kg"),
  45920. name: "Undressed",
  45921. image: {
  45922. source: "./media/characters/coriander/undressed.svg",
  45923. extra: 1757/1606,
  45924. bottom: 107/1864
  45925. }
  45926. },
  45927. dressed: {
  45928. height: math.unit(2, "m"),
  45929. weight: math.unit(250, "kg"),
  45930. name: "Dressed",
  45931. image: {
  45932. source: "./media/characters/coriander/dressed.svg",
  45933. extra: 1757/1606,
  45934. bottom: 107/1864
  45935. }
  45936. },
  45937. },
  45938. [
  45939. {
  45940. name: "Normal",
  45941. height: math.unit(4, "meters"),
  45942. default: true
  45943. },
  45944. {
  45945. name: "XL",
  45946. height: math.unit(6, "meters")
  45947. },
  45948. {
  45949. name: "XXL",
  45950. height: math.unit(8, "meters")
  45951. },
  45952. ]
  45953. ))
  45954. characterMakers.push(() => makeCharacter(
  45955. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45956. {
  45957. front: {
  45958. height: math.unit(6, "feet"),
  45959. name: "Front",
  45960. image: {
  45961. source: "./media/characters/syrinx/front.svg",
  45962. extra: 1557/1259,
  45963. bottom: 171/1728
  45964. }
  45965. },
  45966. },
  45967. [
  45968. {
  45969. name: "Normal",
  45970. height: math.unit(6 + 3/12, "feet"),
  45971. default: true
  45972. },
  45973. ]
  45974. ))
  45975. characterMakers.push(() => makeCharacter(
  45976. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45977. {
  45978. front: {
  45979. height: math.unit(11 + 6/12, "feet"),
  45980. weight: math.unit(1.5, "tons"),
  45981. name: "Front",
  45982. image: {
  45983. source: "./media/characters/bor/front.svg",
  45984. extra: 1189/1109,
  45985. bottom: 170/1359
  45986. }
  45987. },
  45988. },
  45989. [
  45990. {
  45991. name: "Normal",
  45992. height: math.unit(11 + 6/12, "feet"),
  45993. default: true
  45994. },
  45995. {
  45996. name: "Macro",
  45997. height: math.unit(32 + 9/12, "feet")
  45998. },
  45999. ]
  46000. ))
  46001. characterMakers.push(() => makeCharacter(
  46002. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46003. {
  46004. anthro: {
  46005. height: math.unit(9, "feet"),
  46006. weight: math.unit(2076, "lb"),
  46007. name: "Anthro",
  46008. image: {
  46009. source: "./media/characters/abacus/anthro.svg",
  46010. extra: 1540/1494,
  46011. bottom: 233/1773
  46012. }
  46013. },
  46014. pigeon: {
  46015. height: math.unit(1, "feet"),
  46016. name: "Pigeon",
  46017. image: {
  46018. source: "./media/characters/abacus/pigeon.svg",
  46019. extra: 528/525,
  46020. bottom: 46/574
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(9, "feet"),
  46028. default: true
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46034. {
  46035. side: {
  46036. height: math.unit(6, "feet"),
  46037. name: "Side",
  46038. image: {
  46039. source: "./media/characters/delkhan/side.svg",
  46040. extra: 1884/1786,
  46041. bottom: 308/2192
  46042. }
  46043. },
  46044. head: {
  46045. height: math.unit(3.38, "feet"),
  46046. name: "Head",
  46047. image: {
  46048. source: "./media/characters/delkhan/head.svg"
  46049. }
  46050. },
  46051. },
  46052. [
  46053. {
  46054. name: "Normal",
  46055. height: math.unit(72, "feet"),
  46056. default: true
  46057. },
  46058. {
  46059. name: "Giant",
  46060. height: math.unit(172, "feet")
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46066. {
  46067. standing: {
  46068. height: math.unit(6, "feet"),
  46069. name: "Standing",
  46070. image: {
  46071. source: "./media/characters/euchidat/standing.svg",
  46072. extra: 1612/1553,
  46073. bottom: 116/1728
  46074. }
  46075. },
  46076. leaning: {
  46077. height: math.unit(6, "feet"),
  46078. name: "Leaning",
  46079. image: {
  46080. source: "./media/characters/euchidat/leaning.svg",
  46081. extra: 1719/1674,
  46082. bottom: 27/1746
  46083. }
  46084. },
  46085. },
  46086. [
  46087. {
  46088. name: "Normal",
  46089. height: math.unit(175, "feet"),
  46090. default: true
  46091. },
  46092. {
  46093. name: "Megamacro",
  46094. height: math.unit(190, "miles")
  46095. },
  46096. {
  46097. name: "Gigamacro",
  46098. height: math.unit(190000, "miles")
  46099. },
  46100. ]
  46101. ))
  46102. characterMakers.push(() => makeCharacter(
  46103. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46104. {
  46105. front: {
  46106. height: math.unit(6, "feet"),
  46107. weight: math.unit(150, "lb"),
  46108. name: "Front",
  46109. image: {
  46110. source: "./media/characters/rebecca-stack/front.svg",
  46111. extra: 1256/1201,
  46112. bottom: 18/1274
  46113. }
  46114. },
  46115. },
  46116. [
  46117. {
  46118. name: "Normal",
  46119. height: math.unit(5 + 8/12, "feet"),
  46120. default: true
  46121. },
  46122. {
  46123. name: "Demolitionist",
  46124. height: math.unit(200, "feet")
  46125. },
  46126. {
  46127. name: "Out of Control",
  46128. height: math.unit(2, "miles")
  46129. },
  46130. {
  46131. name: "Giga",
  46132. height: math.unit(7200, "miles")
  46133. },
  46134. ]
  46135. ))
  46136. characterMakers.push(() => makeCharacter(
  46137. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46138. {
  46139. front: {
  46140. height: math.unit(6, "feet"),
  46141. weight: math.unit(150, "lb"),
  46142. name: "Front",
  46143. image: {
  46144. source: "./media/characters/jenny-cartwright/front.svg",
  46145. extra: 1384/1376,
  46146. bottom: 58/1442
  46147. }
  46148. },
  46149. },
  46150. [
  46151. {
  46152. name: "Normal",
  46153. height: math.unit(6 + 7/12, "feet"),
  46154. default: true
  46155. },
  46156. {
  46157. name: "Librarian",
  46158. height: math.unit(55, "feet")
  46159. },
  46160. {
  46161. name: "Sightseer",
  46162. height: math.unit(50, "miles")
  46163. },
  46164. {
  46165. name: "Giga",
  46166. height: math.unit(30000, "miles")
  46167. },
  46168. ]
  46169. ))
  46170. characterMakers.push(() => makeCharacter(
  46171. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46172. {
  46173. nude: {
  46174. height: math.unit(8, "feet"),
  46175. weight: math.unit(225, "lb"),
  46176. name: "Nude",
  46177. image: {
  46178. source: "./media/characters/marvy/nude.svg",
  46179. extra: 1900/1683,
  46180. bottom: 89/1989
  46181. }
  46182. },
  46183. dressed: {
  46184. height: math.unit(8, "feet"),
  46185. weight: math.unit(225, "lb"),
  46186. name: "Dressed",
  46187. image: {
  46188. source: "./media/characters/marvy/dressed.svg",
  46189. extra: 1900/1683,
  46190. bottom: 89/1989
  46191. }
  46192. },
  46193. head: {
  46194. height: math.unit(2.85, "feet"),
  46195. name: "Head",
  46196. image: {
  46197. source: "./media/characters/marvy/head.svg"
  46198. }
  46199. },
  46200. },
  46201. [
  46202. {
  46203. name: "Normal",
  46204. height: math.unit(8, "feet"),
  46205. default: true
  46206. },
  46207. ]
  46208. ))
  46209. characterMakers.push(() => makeCharacter(
  46210. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46211. {
  46212. front: {
  46213. height: math.unit(8, "feet"),
  46214. weight: math.unit(250, "lb"),
  46215. name: "Front",
  46216. image: {
  46217. source: "./media/characters/leah/front.svg",
  46218. extra: 1257/1149,
  46219. bottom: 109/1366
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(8, "feet"),
  46227. default: true
  46228. },
  46229. {
  46230. name: "Minimacro",
  46231. height: math.unit(40, "feet")
  46232. },
  46233. {
  46234. name: "Macro",
  46235. height: math.unit(124, "feet")
  46236. },
  46237. {
  46238. name: "Megamacro",
  46239. height: math.unit(850, "feet")
  46240. },
  46241. ]
  46242. ))
  46243. characterMakers.push(() => makeCharacter(
  46244. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46245. {
  46246. side: {
  46247. height: math.unit(13 + 6/12, "feet"),
  46248. weight: math.unit(3200, "lb"),
  46249. name: "Side",
  46250. image: {
  46251. source: "./media/characters/alvir/side.svg",
  46252. extra: 896/589,
  46253. bottom: 26/922
  46254. }
  46255. },
  46256. },
  46257. [
  46258. {
  46259. name: "Normal",
  46260. height: math.unit(13 + 6/12, "feet"),
  46261. default: true
  46262. },
  46263. ]
  46264. ))
  46265. characterMakers.push(() => makeCharacter(
  46266. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46267. {
  46268. front: {
  46269. height: math.unit(5 + 4/12, "feet"),
  46270. weight: math.unit(236, "lb"),
  46271. name: "Front",
  46272. image: {
  46273. source: "./media/characters/zaina-khalil/front.svg",
  46274. extra: 1533/1485,
  46275. bottom: 94/1627
  46276. }
  46277. },
  46278. side: {
  46279. height: math.unit(5 + 4/12, "feet"),
  46280. weight: math.unit(236, "lb"),
  46281. name: "Side",
  46282. image: {
  46283. source: "./media/characters/zaina-khalil/side.svg",
  46284. extra: 1537/1498,
  46285. bottom: 66/1603
  46286. }
  46287. },
  46288. back: {
  46289. height: math.unit(5 + 4/12, "feet"),
  46290. weight: math.unit(236, "lb"),
  46291. name: "Back",
  46292. image: {
  46293. source: "./media/characters/zaina-khalil/back.svg",
  46294. extra: 1546/1494,
  46295. bottom: 89/1635
  46296. }
  46297. },
  46298. },
  46299. [
  46300. {
  46301. name: "Normal",
  46302. height: math.unit(5 + 4/12, "feet"),
  46303. default: true
  46304. },
  46305. ]
  46306. ))
  46307. characterMakers.push(() => makeCharacter(
  46308. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46309. {
  46310. side: {
  46311. height: math.unit(12, "feet"),
  46312. weight: math.unit(4000, "lb"),
  46313. name: "Side",
  46314. image: {
  46315. source: "./media/characters/terry/side.svg",
  46316. extra: 1518/1439,
  46317. bottom: 149/1667
  46318. }
  46319. },
  46320. },
  46321. [
  46322. {
  46323. name: "Normal",
  46324. height: math.unit(12, "feet"),
  46325. default: true
  46326. },
  46327. ]
  46328. ))
  46329. characterMakers.push(() => makeCharacter(
  46330. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46331. {
  46332. front: {
  46333. height: math.unit(12, "feet"),
  46334. weight: math.unit(1500, "lb"),
  46335. name: "Front",
  46336. image: {
  46337. source: "./media/characters/kahea/front.svg",
  46338. extra: 1722/1617,
  46339. bottom: 179/1901
  46340. }
  46341. },
  46342. },
  46343. [
  46344. {
  46345. name: "Normal",
  46346. height: math.unit(12, "feet"),
  46347. default: true
  46348. },
  46349. ]
  46350. ))
  46351. characterMakers.push(() => makeCharacter(
  46352. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46353. {
  46354. demonFront: {
  46355. height: math.unit(36, "feet"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/alex-xuria/demon-front.svg",
  46359. extra: 1705/1673,
  46360. bottom: 198/1903
  46361. },
  46362. form: "demon",
  46363. default: true
  46364. },
  46365. demonBack: {
  46366. height: math.unit(36, "feet"),
  46367. name: "Back",
  46368. image: {
  46369. source: "./media/characters/alex-xuria/demon-back.svg",
  46370. extra: 1725/1693,
  46371. bottom: 70/1795
  46372. },
  46373. form: "demon"
  46374. },
  46375. demonHead: {
  46376. height: math.unit(2.14, "meters"),
  46377. name: "Head",
  46378. image: {
  46379. source: "./media/characters/alex-xuria/demon-head.svg"
  46380. },
  46381. form: "demon"
  46382. },
  46383. demonHand: {
  46384. height: math.unit(1.61, "meters"),
  46385. name: "Hand",
  46386. image: {
  46387. source: "./media/characters/alex-xuria/demon-hand.svg"
  46388. },
  46389. form: "demon"
  46390. },
  46391. demonPaw: {
  46392. height: math.unit(1.35, "meters"),
  46393. name: "Paw",
  46394. image: {
  46395. source: "./media/characters/alex-xuria/demon-paw.svg"
  46396. },
  46397. form: "demon"
  46398. },
  46399. demonFoot: {
  46400. height: math.unit(2.2, "meters"),
  46401. name: "Foot",
  46402. image: {
  46403. source: "./media/characters/alex-xuria/demon-foot.svg"
  46404. },
  46405. form: "demon"
  46406. },
  46407. demonCock: {
  46408. height: math.unit(1.74, "meters"),
  46409. name: "Cock",
  46410. image: {
  46411. source: "./media/characters/alex-xuria/demon-cock.svg"
  46412. },
  46413. form: "demon"
  46414. },
  46415. demonTailClosed: {
  46416. height: math.unit(1.47, "meters"),
  46417. name: "Tail (Closed)",
  46418. image: {
  46419. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46420. },
  46421. form: "demon"
  46422. },
  46423. demonTailOpen: {
  46424. height: math.unit(2.85, "meters"),
  46425. name: "Tail (Open)",
  46426. image: {
  46427. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46428. },
  46429. form: "demon"
  46430. },
  46431. incubusFront: {
  46432. height: math.unit(12, "feet"),
  46433. name: "Front",
  46434. image: {
  46435. source: "./media/characters/alex-xuria/incubus-front.svg",
  46436. extra: 1754/1677,
  46437. bottom: 125/1879
  46438. },
  46439. form: "incubus",
  46440. default: true
  46441. },
  46442. incubusBack: {
  46443. height: math.unit(12, "feet"),
  46444. name: "Back",
  46445. image: {
  46446. source: "./media/characters/alex-xuria/incubus-back.svg",
  46447. extra: 1702/1647,
  46448. bottom: 30/1732
  46449. },
  46450. form: "incubus"
  46451. },
  46452. incubusHead: {
  46453. height: math.unit(3.45, "feet"),
  46454. name: "Head",
  46455. image: {
  46456. source: "./media/characters/alex-xuria/incubus-head.svg"
  46457. },
  46458. form: "incubus"
  46459. },
  46460. rabbitFront: {
  46461. height: math.unit(6, "feet"),
  46462. name: "Front",
  46463. image: {
  46464. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46465. extra: 1369/1349,
  46466. bottom: 45/1414
  46467. },
  46468. form: "rabbit",
  46469. default: true
  46470. },
  46471. rabbitSide: {
  46472. height: math.unit(6, "feet"),
  46473. name: "Side",
  46474. image: {
  46475. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46476. extra: 1370/1356,
  46477. bottom: 37/1407
  46478. },
  46479. form: "rabbit"
  46480. },
  46481. rabbitBack: {
  46482. height: math.unit(6, "feet"),
  46483. name: "Back",
  46484. image: {
  46485. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46486. extra: 1375/1358,
  46487. bottom: 43/1418
  46488. },
  46489. form: "rabbit"
  46490. },
  46491. },
  46492. [
  46493. {
  46494. name: "Normal",
  46495. height: math.unit(6, "feet"),
  46496. default: true,
  46497. form: "rabbit"
  46498. },
  46499. {
  46500. name: "Incubus",
  46501. height: math.unit(12, "feet"),
  46502. default: true,
  46503. form: "incubus"
  46504. },
  46505. {
  46506. name: "Demon",
  46507. height: math.unit(36, "feet"),
  46508. default: true,
  46509. form: "demon"
  46510. }
  46511. ],
  46512. {
  46513. "demon": {
  46514. name: "Demon",
  46515. default: true
  46516. },
  46517. "incubus": {
  46518. name: "Incubus",
  46519. },
  46520. "rabbit": {
  46521. name: "Rabbit"
  46522. }
  46523. }
  46524. ))
  46525. characterMakers.push(() => makeCharacter(
  46526. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46527. {
  46528. front: {
  46529. height: math.unit(7 + 5/12, "feet"),
  46530. weight: math.unit(510, "lb"),
  46531. name: "Front",
  46532. image: {
  46533. source: "./media/characters/syrup/front.svg",
  46534. extra: 932/916,
  46535. bottom: 26/958
  46536. }
  46537. },
  46538. },
  46539. [
  46540. {
  46541. name: "Normal",
  46542. height: math.unit(7 + 5/12, "feet"),
  46543. default: true
  46544. },
  46545. {
  46546. name: "Big",
  46547. height: math.unit(50, "feet")
  46548. },
  46549. {
  46550. name: "Macro",
  46551. height: math.unit(300, "feet")
  46552. },
  46553. {
  46554. name: "Megamacro",
  46555. height: math.unit(1, "mile")
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46561. {
  46562. front: {
  46563. height: math.unit(6 + 9/12, "feet"),
  46564. name: "Front",
  46565. image: {
  46566. source: "./media/characters/zeimne/front.svg",
  46567. extra: 1969/1806,
  46568. bottom: 53/2022
  46569. }
  46570. },
  46571. },
  46572. [
  46573. {
  46574. name: "Normal",
  46575. height: math.unit(6 + 9/12, "feet"),
  46576. default: true
  46577. },
  46578. {
  46579. name: "Giant",
  46580. height: math.unit(550, "feet")
  46581. },
  46582. {
  46583. name: "Mega",
  46584. height: math.unit(3, "miles")
  46585. },
  46586. {
  46587. name: "Giga",
  46588. height: math.unit(250, "miles")
  46589. },
  46590. {
  46591. name: "Tera",
  46592. height: math.unit(1, "AU")
  46593. },
  46594. ]
  46595. ))
  46596. characterMakers.push(() => makeCharacter(
  46597. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46598. {
  46599. front: {
  46600. height: math.unit(5 + 2/12, "feet"),
  46601. name: "Front",
  46602. image: {
  46603. source: "./media/characters/grar/front.svg",
  46604. extra: 1331/1119,
  46605. bottom: 60/1391
  46606. }
  46607. },
  46608. back: {
  46609. height: math.unit(5 + 2/12, "feet"),
  46610. name: "Back",
  46611. image: {
  46612. source: "./media/characters/grar/back.svg",
  46613. extra: 1385/1169,
  46614. bottom: 23/1408
  46615. }
  46616. },
  46617. },
  46618. [
  46619. {
  46620. name: "Normal",
  46621. height: math.unit(5 + 2/12, "feet"),
  46622. default: true
  46623. },
  46624. ]
  46625. ))
  46626. characterMakers.push(() => makeCharacter(
  46627. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46628. {
  46629. front: {
  46630. height: math.unit(13 + 7/12, "feet"),
  46631. weight: math.unit(2200, "lb"),
  46632. name: "Front",
  46633. image: {
  46634. source: "./media/characters/endraya/front.svg",
  46635. extra: 1289/1215,
  46636. bottom: 50/1339
  46637. }
  46638. },
  46639. nude: {
  46640. height: math.unit(13 + 7/12, "feet"),
  46641. weight: math.unit(2200, "lb"),
  46642. name: "Nude",
  46643. image: {
  46644. source: "./media/characters/endraya/nude.svg",
  46645. extra: 1247/1171,
  46646. bottom: 40/1287
  46647. }
  46648. },
  46649. head: {
  46650. height: math.unit(2.6, "feet"),
  46651. name: "Head",
  46652. image: {
  46653. source: "./media/characters/endraya/head.svg"
  46654. }
  46655. },
  46656. slit: {
  46657. height: math.unit(3.4, "feet"),
  46658. name: "Slit",
  46659. image: {
  46660. source: "./media/characters/endraya/slit.svg"
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(13 + 7/12, "feet"),
  46668. default: true
  46669. },
  46670. {
  46671. name: "Macro",
  46672. height: math.unit(200, "feet")
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46678. {
  46679. front: {
  46680. height: math.unit(1.81, "meters"),
  46681. weight: math.unit(69, "kg"),
  46682. name: "Front",
  46683. image: {
  46684. source: "./media/characters/rodryana/front.svg",
  46685. extra: 2002/1921,
  46686. bottom: 53/2055
  46687. }
  46688. },
  46689. back: {
  46690. height: math.unit(1.81, "meters"),
  46691. weight: math.unit(69, "kg"),
  46692. name: "Back",
  46693. image: {
  46694. source: "./media/characters/rodryana/back.svg",
  46695. extra: 1993/1926,
  46696. bottom: 48/2041
  46697. }
  46698. },
  46699. maw: {
  46700. height: math.unit(0.19769417475, "meters"),
  46701. name: "Maw",
  46702. image: {
  46703. source: "./media/characters/rodryana/maw.svg"
  46704. }
  46705. },
  46706. slit: {
  46707. height: math.unit(0.31631067961, "meters"),
  46708. name: "Slit",
  46709. image: {
  46710. source: "./media/characters/rodryana/slit.svg"
  46711. }
  46712. },
  46713. },
  46714. [
  46715. {
  46716. name: "Normal",
  46717. height: math.unit(1.81, "meters")
  46718. },
  46719. {
  46720. name: "Mini Macro",
  46721. height: math.unit(181, "meters")
  46722. },
  46723. {
  46724. name: "Macro",
  46725. height: math.unit(452, "meters"),
  46726. default: true
  46727. },
  46728. {
  46729. name: "Mega Macro",
  46730. height: math.unit(1.375, "km")
  46731. },
  46732. {
  46733. name: "Giga Macro",
  46734. height: math.unit(13.575, "km")
  46735. },
  46736. ]
  46737. ))
  46738. characterMakers.push(() => makeCharacter(
  46739. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46740. {
  46741. front: {
  46742. height: math.unit(6, "feet"),
  46743. weight: math.unit(1000, "lb"),
  46744. name: "Front",
  46745. image: {
  46746. source: "./media/characters/asaya/front.svg",
  46747. extra: 1460/1200,
  46748. bottom: 71/1531
  46749. }
  46750. },
  46751. },
  46752. [
  46753. {
  46754. name: "Normal",
  46755. height: math.unit(8, "km"),
  46756. default: true
  46757. },
  46758. ]
  46759. ))
  46760. characterMakers.push(() => makeCharacter(
  46761. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46762. {
  46763. front: {
  46764. height: math.unit(3.5, "meters"),
  46765. name: "Front",
  46766. image: {
  46767. source: "./media/characters/sarzu-and-israz/front.svg",
  46768. extra: 1570/1558,
  46769. bottom: 150/1720
  46770. },
  46771. },
  46772. back: {
  46773. height: math.unit(3.5, "meters"),
  46774. name: "Back",
  46775. image: {
  46776. source: "./media/characters/sarzu-and-israz/back.svg",
  46777. extra: 1523/1509,
  46778. bottom: 132/1655
  46779. },
  46780. },
  46781. frontFemale: {
  46782. height: math.unit(3.5, "meters"),
  46783. name: "Front (Female)",
  46784. image: {
  46785. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46786. extra: 1570/1558,
  46787. bottom: 150/1720
  46788. },
  46789. },
  46790. frontHerm: {
  46791. height: math.unit(3.5, "meters"),
  46792. name: "Front (Herm)",
  46793. image: {
  46794. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46795. extra: 1570/1558,
  46796. bottom: 150/1720
  46797. },
  46798. },
  46799. },
  46800. [
  46801. {
  46802. name: "Normal",
  46803. height: math.unit(3.5, "meters"),
  46804. default: true,
  46805. },
  46806. {
  46807. name: "Macro",
  46808. height: math.unit(65.5, "meters"),
  46809. },
  46810. ],
  46811. ))
  46812. characterMakers.push(() => makeCharacter(
  46813. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46814. {
  46815. front: {
  46816. height: math.unit(6, "feet"),
  46817. weight: math.unit(250, "lb"),
  46818. name: "Front",
  46819. image: {
  46820. source: "./media/characters/zenimma/front.svg",
  46821. extra: 1346/1320,
  46822. bottom: 58/1404
  46823. }
  46824. },
  46825. back: {
  46826. height: math.unit(6, "feet"),
  46827. weight: math.unit(250, "lb"),
  46828. name: "Back",
  46829. image: {
  46830. source: "./media/characters/zenimma/back.svg",
  46831. extra: 1324/1308,
  46832. bottom: 44/1368
  46833. }
  46834. },
  46835. dick: {
  46836. height: math.unit(1.44, "feet"),
  46837. name: "Dick",
  46838. image: {
  46839. source: "./media/characters/zenimma/dick.svg"
  46840. }
  46841. },
  46842. },
  46843. [
  46844. {
  46845. name: "Canon Height",
  46846. height: math.unit(66, "miles"),
  46847. default: true
  46848. },
  46849. ]
  46850. ))
  46851. characterMakers.push(() => makeCharacter(
  46852. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46853. {
  46854. nude: {
  46855. height: math.unit(6, "feet"),
  46856. weight: math.unit(150, "lb"),
  46857. name: "Nude",
  46858. image: {
  46859. source: "./media/characters/shavon/nude.svg",
  46860. extra: 1242/1096,
  46861. bottom: 98/1340
  46862. }
  46863. },
  46864. dressed: {
  46865. height: math.unit(6, "feet"),
  46866. weight: math.unit(150, "lb"),
  46867. name: "Dressed",
  46868. image: {
  46869. source: "./media/characters/shavon/dressed.svg",
  46870. extra: 1242/1096,
  46871. bottom: 98/1340
  46872. }
  46873. },
  46874. },
  46875. [
  46876. {
  46877. name: "Macro",
  46878. height: math.unit(255, "feet"),
  46879. default: true
  46880. },
  46881. ]
  46882. ))
  46883. characterMakers.push(() => makeCharacter(
  46884. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46885. {
  46886. front: {
  46887. height: math.unit(6, "feet"),
  46888. name: "Front",
  46889. image: {
  46890. source: "./media/characters/steph/front.svg",
  46891. extra: 1430/1330,
  46892. bottom: 54/1484
  46893. }
  46894. },
  46895. },
  46896. [
  46897. {
  46898. name: "Normal",
  46899. height: math.unit(6, "feet"),
  46900. default: true
  46901. },
  46902. ]
  46903. ))
  46904. characterMakers.push(() => makeCharacter(
  46905. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46906. {
  46907. front: {
  46908. height: math.unit(9, "feet"),
  46909. weight: math.unit(400, "lb"),
  46910. name: "Front",
  46911. image: {
  46912. source: "./media/characters/kil'aman/front.svg",
  46913. extra: 1210/1159,
  46914. bottom: 109/1319
  46915. }
  46916. },
  46917. head: {
  46918. height: math.unit(2.14, "feet"),
  46919. name: "Head",
  46920. image: {
  46921. source: "./media/characters/kil'aman/head.svg"
  46922. }
  46923. },
  46924. maw: {
  46925. height: math.unit(1.21, "feet"),
  46926. name: "Maw",
  46927. image: {
  46928. source: "./media/characters/kil'aman/maw.svg"
  46929. }
  46930. },
  46931. foot: {
  46932. height: math.unit(1.7, "feet"),
  46933. name: "Foot",
  46934. image: {
  46935. source: "./media/characters/kil'aman/foot.svg"
  46936. }
  46937. },
  46938. dick: {
  46939. height: math.unit(2.1, "feet"),
  46940. name: "Dick",
  46941. image: {
  46942. source: "./media/characters/kil'aman/dick.svg"
  46943. }
  46944. },
  46945. },
  46946. [
  46947. {
  46948. name: "Normal",
  46949. height: math.unit(9, "feet")
  46950. },
  46951. {
  46952. name: "Canon Height",
  46953. height: math.unit(10, "miles"),
  46954. default: true
  46955. },
  46956. {
  46957. name: "Maximum",
  46958. height: math.unit(6e9, "miles")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46964. {
  46965. front: {
  46966. height: math.unit(90, "feet"),
  46967. weight: math.unit(675000, "lb"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/qadan/front.svg",
  46971. extra: 1012/1004,
  46972. bottom: 78/1090
  46973. }
  46974. },
  46975. back: {
  46976. height: math.unit(90, "feet"),
  46977. weight: math.unit(675000, "lb"),
  46978. name: "Back",
  46979. image: {
  46980. source: "./media/characters/qadan/back.svg",
  46981. extra: 1042/1031,
  46982. bottom: 55/1097
  46983. }
  46984. },
  46985. armored: {
  46986. height: math.unit(90, "feet"),
  46987. weight: math.unit(675000, "lb"),
  46988. name: "Armored",
  46989. image: {
  46990. source: "./media/characters/qadan/armored.svg",
  46991. extra: 1047/1037,
  46992. bottom: 48/1095
  46993. }
  46994. },
  46995. },
  46996. [
  46997. {
  46998. name: "Normal",
  46999. height: math.unit(90, "feet"),
  47000. default: true
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47006. {
  47007. front: {
  47008. height: math.unit(6, "feet"),
  47009. weight: math.unit(225, "lb"),
  47010. name: "Front",
  47011. image: {
  47012. source: "./media/characters/brooke/front.svg",
  47013. extra: 1050/1010,
  47014. bottom: 66/1116
  47015. }
  47016. },
  47017. back: {
  47018. height: math.unit(6, "feet"),
  47019. weight: math.unit(225, "lb"),
  47020. name: "Back",
  47021. image: {
  47022. source: "./media/characters/brooke/back.svg",
  47023. extra: 1053/1013,
  47024. bottom: 41/1094
  47025. }
  47026. },
  47027. dressed: {
  47028. height: math.unit(6, "feet"),
  47029. weight: math.unit(225, "lb"),
  47030. name: "Dressed",
  47031. image: {
  47032. source: "./media/characters/brooke/dressed.svg",
  47033. extra: 1050/1010,
  47034. bottom: 66/1116
  47035. }
  47036. },
  47037. },
  47038. [
  47039. {
  47040. name: "Canon Height",
  47041. height: math.unit(500, "miles"),
  47042. default: true
  47043. },
  47044. ]
  47045. ))
  47046. characterMakers.push(() => makeCharacter(
  47047. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47048. {
  47049. front: {
  47050. height: math.unit(6 + 2/12, "feet"),
  47051. weight: math.unit(210, "lb"),
  47052. name: "Front",
  47053. image: {
  47054. source: "./media/characters/wubs/front.svg",
  47055. extra: 1345/1325,
  47056. bottom: 70/1415
  47057. }
  47058. },
  47059. back: {
  47060. height: math.unit(6 + 2/12, "feet"),
  47061. weight: math.unit(210, "lb"),
  47062. name: "Back",
  47063. image: {
  47064. source: "./media/characters/wubs/back.svg",
  47065. extra: 1296/1275,
  47066. bottom: 58/1354
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(6 + 2/12, "feet"),
  47074. default: true
  47075. },
  47076. {
  47077. name: "Macro",
  47078. height: math.unit(1000, "feet")
  47079. },
  47080. {
  47081. name: "Megamacro",
  47082. height: math.unit(1, "mile")
  47083. },
  47084. ]
  47085. ))
  47086. characterMakers.push(() => makeCharacter(
  47087. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47088. {
  47089. front: {
  47090. height: math.unit(4, "feet"),
  47091. weight: math.unit(120, "lb"),
  47092. name: "Front",
  47093. image: {
  47094. source: "./media/characters/blue/front.svg",
  47095. extra: 1636/1525,
  47096. bottom: 43/1679
  47097. }
  47098. },
  47099. back: {
  47100. height: math.unit(4, "feet"),
  47101. weight: math.unit(120, "lb"),
  47102. name: "Back",
  47103. image: {
  47104. source: "./media/characters/blue/back.svg",
  47105. extra: 1660/1560,
  47106. bottom: 57/1717
  47107. }
  47108. },
  47109. paws: {
  47110. height: math.unit(0.826, "feet"),
  47111. name: "Paws",
  47112. image: {
  47113. source: "./media/characters/blue/paws.svg"
  47114. }
  47115. },
  47116. },
  47117. [
  47118. {
  47119. name: "Micro",
  47120. height: math.unit(3, "inches")
  47121. },
  47122. {
  47123. name: "Normal",
  47124. height: math.unit(4, "feet"),
  47125. default: true
  47126. },
  47127. {
  47128. name: "Femenine Form",
  47129. height: math.unit(14, "feet")
  47130. },
  47131. {
  47132. name: "Werebat Form",
  47133. height: math.unit(18, "feet")
  47134. },
  47135. ]
  47136. ))
  47137. characterMakers.push(() => makeCharacter(
  47138. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47139. {
  47140. female: {
  47141. height: math.unit(7 + 4/12, "feet"),
  47142. weight: math.unit(243, "lb"),
  47143. name: "Female",
  47144. image: {
  47145. source: "./media/characters/kaya/female.svg",
  47146. extra: 975/898,
  47147. bottom: 34/1009
  47148. }
  47149. },
  47150. herm: {
  47151. height: math.unit(7 + 4/12, "feet"),
  47152. weight: math.unit(243, "lb"),
  47153. name: "Herm",
  47154. image: {
  47155. source: "./media/characters/kaya/herm.svg",
  47156. extra: 975/898,
  47157. bottom: 34/1009
  47158. }
  47159. },
  47160. },
  47161. [
  47162. {
  47163. name: "Normal",
  47164. height: math.unit(7 + 4/12, "feet"),
  47165. default: true
  47166. },
  47167. ]
  47168. ))
  47169. characterMakers.push(() => makeCharacter(
  47170. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47171. {
  47172. female: {
  47173. height: math.unit(9 + 4/12, "feet"),
  47174. weight: math.unit(398, "lb"),
  47175. name: "Female",
  47176. image: {
  47177. source: "./media/characters/kassandra/female.svg",
  47178. extra: 908/839,
  47179. bottom: 61/969
  47180. }
  47181. },
  47182. intersex: {
  47183. height: math.unit(9 + 4/12, "feet"),
  47184. weight: math.unit(398, "lb"),
  47185. name: "Intersex",
  47186. image: {
  47187. source: "./media/characters/kassandra/intersex.svg",
  47188. extra: 908/839,
  47189. bottom: 61/969
  47190. }
  47191. },
  47192. },
  47193. [
  47194. {
  47195. name: "Normal",
  47196. height: math.unit(9 + 4/12, "feet"),
  47197. default: true
  47198. },
  47199. ]
  47200. ))
  47201. characterMakers.push(() => makeCharacter(
  47202. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47203. {
  47204. front: {
  47205. height: math.unit(3, "meters"),
  47206. name: "Front",
  47207. image: {
  47208. source: "./media/characters/amy/front.svg",
  47209. extra: 1380/1343,
  47210. bottom: 70/1450
  47211. }
  47212. },
  47213. back: {
  47214. height: math.unit(3, "meters"),
  47215. name: "Back",
  47216. image: {
  47217. source: "./media/characters/amy/back.svg",
  47218. extra: 1380/1347,
  47219. bottom: 66/1446
  47220. }
  47221. },
  47222. },
  47223. [
  47224. {
  47225. name: "Normal",
  47226. height: math.unit(3, "meters"),
  47227. default: true
  47228. },
  47229. ]
  47230. ))
  47231. characterMakers.push(() => makeCharacter(
  47232. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47233. {
  47234. side: {
  47235. height: math.unit(47, "cm"),
  47236. weight: math.unit(10.8, "kg"),
  47237. name: "Side",
  47238. image: {
  47239. source: "./media/characters/alphaschakal/side.svg",
  47240. extra: 1058/568,
  47241. bottom: 62/1120
  47242. }
  47243. },
  47244. back: {
  47245. height: math.unit(78, "cm"),
  47246. weight: math.unit(10.8, "kg"),
  47247. name: "Back",
  47248. image: {
  47249. source: "./media/characters/alphaschakal/back.svg",
  47250. extra: 1102/942,
  47251. bottom: 185/1287
  47252. }
  47253. },
  47254. head: {
  47255. height: math.unit(28, "cm"),
  47256. name: "Head",
  47257. image: {
  47258. source: "./media/characters/alphaschakal/head.svg",
  47259. extra: 696/508,
  47260. bottom: 0/696
  47261. }
  47262. },
  47263. paw: {
  47264. height: math.unit(16, "cm"),
  47265. name: "Paw",
  47266. image: {
  47267. source: "./media/characters/alphaschakal/paw.svg"
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Normal",
  47274. height: math.unit(47, "cm"),
  47275. default: true
  47276. },
  47277. {
  47278. name: "Macro",
  47279. height: math.unit(340, "cm")
  47280. },
  47281. ]
  47282. ))
  47283. characterMakers.push(() => makeCharacter(
  47284. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47285. {
  47286. front: {
  47287. height: math.unit(36, "earths"),
  47288. name: "Front",
  47289. image: {
  47290. source: "./media/characters/ecobyss/front.svg",
  47291. extra: 1282/1215,
  47292. bottom: 11/1293
  47293. }
  47294. },
  47295. back: {
  47296. height: math.unit(36, "earths"),
  47297. name: "Back",
  47298. image: {
  47299. source: "./media/characters/ecobyss/back.svg",
  47300. extra: 1291/1222,
  47301. bottom: 8/1299
  47302. }
  47303. },
  47304. },
  47305. [
  47306. {
  47307. name: "Normal",
  47308. height: math.unit(36, "earths"),
  47309. default: true
  47310. },
  47311. ]
  47312. ))
  47313. characterMakers.push(() => makeCharacter(
  47314. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47315. {
  47316. front: {
  47317. height: math.unit(12, "feet"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/vasuk/front.svg",
  47321. extra: 1326/1207,
  47322. bottom: 64/1390
  47323. }
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Normal",
  47329. height: math.unit(12, "feet"),
  47330. default: true
  47331. },
  47332. ]
  47333. ))
  47334. characterMakers.push(() => makeCharacter(
  47335. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47336. {
  47337. side: {
  47338. height: math.unit(100, "feet"),
  47339. name: "Side",
  47340. image: {
  47341. source: "./media/characters/linneaus/side.svg",
  47342. extra: 987/807,
  47343. bottom: 47/1034
  47344. }
  47345. },
  47346. },
  47347. [
  47348. {
  47349. name: "Macro",
  47350. height: math.unit(100, "feet"),
  47351. default: true
  47352. },
  47353. ]
  47354. ))
  47355. characterMakers.push(() => makeCharacter(
  47356. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47357. {
  47358. front: {
  47359. height: math.unit(8, "feet"),
  47360. weight: math.unit(1200, "lb"),
  47361. name: "Front",
  47362. image: {
  47363. source: "./media/characters/nyterious-daligdig/front.svg",
  47364. extra: 1284/1094,
  47365. bottom: 84/1368
  47366. }
  47367. },
  47368. back: {
  47369. height: math.unit(8, "feet"),
  47370. weight: math.unit(1200, "lb"),
  47371. name: "Back",
  47372. image: {
  47373. source: "./media/characters/nyterious-daligdig/back.svg",
  47374. extra: 1301/1121,
  47375. bottom: 129/1430
  47376. }
  47377. },
  47378. mouth: {
  47379. height: math.unit(1.464, "feet"),
  47380. name: "Mouth",
  47381. image: {
  47382. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47383. }
  47384. },
  47385. },
  47386. [
  47387. {
  47388. name: "Small",
  47389. height: math.unit(8, "feet"),
  47390. default: true
  47391. },
  47392. {
  47393. name: "Normal",
  47394. height: math.unit(15, "feet")
  47395. },
  47396. {
  47397. name: "Macro",
  47398. height: math.unit(90, "feet")
  47399. },
  47400. ]
  47401. ))
  47402. characterMakers.push(() => makeCharacter(
  47403. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47404. {
  47405. front: {
  47406. height: math.unit(7 + 4/12, "feet"),
  47407. weight: math.unit(252, "lb"),
  47408. name: "Front",
  47409. image: {
  47410. source: "./media/characters/bandel/front.svg",
  47411. extra: 1946/1775,
  47412. bottom: 26/1972
  47413. }
  47414. },
  47415. back: {
  47416. height: math.unit(7 + 4/12, "feet"),
  47417. weight: math.unit(252, "lb"),
  47418. name: "Back",
  47419. image: {
  47420. source: "./media/characters/bandel/back.svg",
  47421. extra: 1940/1770,
  47422. bottom: 25/1965
  47423. }
  47424. },
  47425. maw: {
  47426. height: math.unit(2.15, "feet"),
  47427. name: "Maw",
  47428. image: {
  47429. source: "./media/characters/bandel/maw.svg"
  47430. }
  47431. },
  47432. stomach: {
  47433. height: math.unit(1.95, "feet"),
  47434. name: "Stomach",
  47435. image: {
  47436. source: "./media/characters/bandel/stomach.svg"
  47437. }
  47438. },
  47439. },
  47440. [
  47441. {
  47442. name: "Normal",
  47443. height: math.unit(7 + 4/12, "feet"),
  47444. default: true
  47445. },
  47446. ]
  47447. ))
  47448. characterMakers.push(() => makeCharacter(
  47449. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47450. {
  47451. front: {
  47452. height: math.unit(10 + 5/12, "feet"),
  47453. weight: math.unit(773.5, "kg"),
  47454. name: "Front",
  47455. image: {
  47456. source: "./media/characters/zed/front.svg",
  47457. extra: 987/941,
  47458. bottom: 52/1039
  47459. }
  47460. },
  47461. },
  47462. [
  47463. {
  47464. name: "Short",
  47465. height: math.unit(5 + 4/12, "feet")
  47466. },
  47467. {
  47468. name: "Average",
  47469. height: math.unit(10 + 5/12, "feet"),
  47470. default: true
  47471. },
  47472. {
  47473. name: "Mini-Macro",
  47474. height: math.unit(24 + 9/12, "feet")
  47475. },
  47476. {
  47477. name: "Macro",
  47478. height: math.unit(249, "feet")
  47479. },
  47480. {
  47481. name: "Mega-Macro",
  47482. height: math.unit(12490, "feet")
  47483. },
  47484. {
  47485. name: "Giga-Macro",
  47486. height: math.unit(24.9, "miles")
  47487. },
  47488. {
  47489. name: "Tera-Macro",
  47490. height: math.unit(24900, "miles")
  47491. },
  47492. {
  47493. name: "Cosmic Scale",
  47494. height: math.unit(38.9, "lightyears")
  47495. },
  47496. {
  47497. name: "Universal Scale",
  47498. height: math.unit(138e12, "lightyears")
  47499. },
  47500. ]
  47501. ))
  47502. characterMakers.push(() => makeCharacter(
  47503. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47504. {
  47505. front: {
  47506. height: math.unit(1561, "inches"),
  47507. name: "Front",
  47508. image: {
  47509. source: "./media/characters/ivan/front.svg",
  47510. extra: 1126/1071,
  47511. bottom: 26/1152
  47512. }
  47513. },
  47514. back: {
  47515. height: math.unit(1561, "inches"),
  47516. name: "Back",
  47517. image: {
  47518. source: "./media/characters/ivan/back.svg",
  47519. extra: 1134/1079,
  47520. bottom: 30/1164
  47521. }
  47522. },
  47523. },
  47524. [
  47525. {
  47526. name: "Normal",
  47527. height: math.unit(1561, "inches"),
  47528. default: true
  47529. },
  47530. ]
  47531. ))
  47532. characterMakers.push(() => makeCharacter(
  47533. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47534. {
  47535. front: {
  47536. height: math.unit(5 + 7/12, "feet"),
  47537. weight: math.unit(150, "lb"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/robin-arctic-hare/front.svg",
  47541. extra: 1148/974,
  47542. bottom: 20/1168
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Normal",
  47549. height: math.unit(5 + 7/12, "feet"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47556. {
  47557. side: {
  47558. height: math.unit(5, "feet"),
  47559. name: "Side",
  47560. image: {
  47561. source: "./media/characters/birch/side.svg",
  47562. extra: 985/796,
  47563. bottom: 111/1096
  47564. }
  47565. },
  47566. },
  47567. [
  47568. {
  47569. name: "Normal",
  47570. height: math.unit(5, "feet"),
  47571. default: true
  47572. },
  47573. ]
  47574. ))
  47575. characterMakers.push(() => makeCharacter(
  47576. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47577. {
  47578. front: {
  47579. height: math.unit(4, "feet"),
  47580. name: "Front",
  47581. image: {
  47582. source: "./media/characters/rasp/front.svg",
  47583. extra: 561/478,
  47584. bottom: 74/635
  47585. }
  47586. },
  47587. },
  47588. [
  47589. {
  47590. name: "Normal",
  47591. height: math.unit(4, "feet"),
  47592. default: true
  47593. },
  47594. ]
  47595. ))
  47596. characterMakers.push(() => makeCharacter(
  47597. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47598. {
  47599. front: {
  47600. height: math.unit(4 + 6/12, "feet"),
  47601. name: "Front",
  47602. image: {
  47603. source: "./media/characters/agatha/front.svg",
  47604. extra: 947/933,
  47605. bottom: 42/989
  47606. }
  47607. },
  47608. back: {
  47609. height: math.unit(4 + 6/12, "feet"),
  47610. name: "Back",
  47611. image: {
  47612. source: "./media/characters/agatha/back.svg",
  47613. extra: 935/922,
  47614. bottom: 48/983
  47615. }
  47616. },
  47617. },
  47618. [
  47619. {
  47620. name: "Normal",
  47621. height: math.unit(4 + 6 /12, "feet"),
  47622. default: true
  47623. },
  47624. {
  47625. name: "Max Size",
  47626. height: math.unit(500, "feet")
  47627. },
  47628. ]
  47629. ))
  47630. characterMakers.push(() => makeCharacter(
  47631. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47632. {
  47633. side: {
  47634. height: math.unit(30, "feet"),
  47635. name: "Side",
  47636. image: {
  47637. source: "./media/characters/roggy/side.svg",
  47638. extra: 909/643,
  47639. bottom: 63/972
  47640. }
  47641. },
  47642. lounging: {
  47643. height: math.unit(20, "feet"),
  47644. name: "Lounging",
  47645. image: {
  47646. source: "./media/characters/roggy/lounging.svg",
  47647. extra: 643/479,
  47648. bottom: 145/788
  47649. }
  47650. },
  47651. handpaw: {
  47652. height: math.unit(13.1, "feet"),
  47653. name: "Handpaw",
  47654. image: {
  47655. source: "./media/characters/roggy/handpaw.svg"
  47656. }
  47657. },
  47658. footpaw: {
  47659. height: math.unit(15.8, "feet"),
  47660. name: "Footpaw",
  47661. image: {
  47662. source: "./media/characters/roggy/footpaw.svg"
  47663. }
  47664. },
  47665. },
  47666. [
  47667. {
  47668. name: "Menacing",
  47669. height: math.unit(30, "feet"),
  47670. default: true
  47671. },
  47672. ]
  47673. ))
  47674. characterMakers.push(() => makeCharacter(
  47675. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47676. {
  47677. front: {
  47678. height: math.unit(5 + 7/12, "feet"),
  47679. weight: math.unit(135, "lb"),
  47680. name: "Front",
  47681. image: {
  47682. source: "./media/characters/naomi/front.svg",
  47683. extra: 1209/1154,
  47684. bottom: 129/1338
  47685. }
  47686. },
  47687. back: {
  47688. height: math.unit(5 + 7/12, "feet"),
  47689. weight: math.unit(135, "lb"),
  47690. name: "Back",
  47691. image: {
  47692. source: "./media/characters/naomi/back.svg",
  47693. extra: 1252/1190,
  47694. bottom: 23/1275
  47695. }
  47696. },
  47697. },
  47698. [
  47699. {
  47700. name: "Normal",
  47701. height: math.unit(5 + 7 /12, "feet"),
  47702. default: true
  47703. },
  47704. ]
  47705. ))
  47706. characterMakers.push(() => makeCharacter(
  47707. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47708. {
  47709. side: {
  47710. height: math.unit(35, "meters"),
  47711. name: "Side",
  47712. image: {
  47713. source: "./media/characters/kimpi/side.svg",
  47714. extra: 419/382,
  47715. bottom: 63/482
  47716. }
  47717. },
  47718. hand: {
  47719. height: math.unit(8.96, "meters"),
  47720. name: "Hand",
  47721. image: {
  47722. source: "./media/characters/kimpi/hand.svg"
  47723. }
  47724. },
  47725. },
  47726. [
  47727. {
  47728. name: "Normal",
  47729. height: math.unit(35, "meters"),
  47730. default: true
  47731. },
  47732. ]
  47733. ))
  47734. characterMakers.push(() => makeCharacter(
  47735. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47736. {
  47737. front: {
  47738. height: math.unit(4 + 4/12, "feet"),
  47739. name: "Front",
  47740. image: {
  47741. source: "./media/characters/pepper-purrloin/front.svg",
  47742. extra: 1141/1024,
  47743. bottom: 21/1162
  47744. }
  47745. },
  47746. },
  47747. [
  47748. {
  47749. name: "Normal",
  47750. height: math.unit(4 + 4/12, "feet"),
  47751. default: true
  47752. },
  47753. ]
  47754. ))
  47755. characterMakers.push(() => makeCharacter(
  47756. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47757. {
  47758. front: {
  47759. height: math.unit(6 + 2/12, "feet"),
  47760. name: "Front",
  47761. image: {
  47762. source: "./media/characters/raphael/front.svg",
  47763. extra: 1101/962,
  47764. bottom: 59/1160
  47765. }
  47766. },
  47767. },
  47768. [
  47769. {
  47770. name: "Normal",
  47771. height: math.unit(6 + 2/12, "feet"),
  47772. default: true
  47773. },
  47774. ]
  47775. ))
  47776. characterMakers.push(() => makeCharacter(
  47777. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47778. {
  47779. front: {
  47780. height: math.unit(6, "feet"),
  47781. weight: math.unit(150, "lb"),
  47782. name: "Front",
  47783. image: {
  47784. source: "./media/characters/victor-williams/front.svg",
  47785. extra: 1894/1825,
  47786. bottom: 67/1961
  47787. }
  47788. },
  47789. },
  47790. [
  47791. {
  47792. name: "Normal",
  47793. height: math.unit(6, "feet"),
  47794. default: true
  47795. },
  47796. ]
  47797. ))
  47798. characterMakers.push(() => makeCharacter(
  47799. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47800. {
  47801. front: {
  47802. height: math.unit(5 + 8/12, "feet"),
  47803. weight: math.unit(150, "lb"),
  47804. name: "Front",
  47805. image: {
  47806. source: "./media/characters/rachel/front.svg",
  47807. extra: 1902/1787,
  47808. bottom: 46/1948
  47809. }
  47810. },
  47811. },
  47812. [
  47813. {
  47814. name: "Base Height",
  47815. height: math.unit(5 + 8/12, "feet"),
  47816. default: true
  47817. },
  47818. {
  47819. name: "Macro",
  47820. height: math.unit(200, "feet")
  47821. },
  47822. {
  47823. name: "Mega Macro",
  47824. height: math.unit(1, "mile")
  47825. },
  47826. {
  47827. name: "Giga Macro",
  47828. height: math.unit(1500, "miles")
  47829. },
  47830. {
  47831. name: "Tera Macro",
  47832. height: math.unit(8000, "miles")
  47833. },
  47834. {
  47835. name: "Tera Macro+",
  47836. height: math.unit(2e5, "miles")
  47837. },
  47838. ]
  47839. ))
  47840. characterMakers.push(() => makeCharacter(
  47841. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47842. {
  47843. front: {
  47844. height: math.unit(6.5, "feet"),
  47845. name: "Front",
  47846. image: {
  47847. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47848. extra: 860/819,
  47849. bottom: 307/1167
  47850. }
  47851. },
  47852. back: {
  47853. height: math.unit(6.5, "feet"),
  47854. name: "Back",
  47855. image: {
  47856. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47857. extra: 880/837,
  47858. bottom: 395/1275
  47859. }
  47860. },
  47861. sleeping: {
  47862. height: math.unit(2.79, "feet"),
  47863. name: "Sleeping",
  47864. image: {
  47865. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47866. extra: 465/383,
  47867. bottom: 263/728
  47868. }
  47869. },
  47870. maw: {
  47871. height: math.unit(2.52, "feet"),
  47872. name: "Maw",
  47873. image: {
  47874. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47875. }
  47876. },
  47877. },
  47878. [
  47879. {
  47880. name: "Normal",
  47881. height: math.unit(6.5, "feet"),
  47882. default: true
  47883. },
  47884. ]
  47885. ))
  47886. characterMakers.push(() => makeCharacter(
  47887. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47888. {
  47889. front: {
  47890. height: math.unit(5, "feet"),
  47891. name: "Front",
  47892. image: {
  47893. source: "./media/characters/nova-nerium/front.svg",
  47894. extra: 1548/1392,
  47895. bottom: 374/1922
  47896. }
  47897. },
  47898. back: {
  47899. height: math.unit(5, "feet"),
  47900. name: "Back",
  47901. image: {
  47902. source: "./media/characters/nova-nerium/back.svg",
  47903. extra: 1658/1468,
  47904. bottom: 257/1915
  47905. }
  47906. },
  47907. },
  47908. [
  47909. {
  47910. name: "Normal",
  47911. height: math.unit(5, "feet"),
  47912. default: true
  47913. },
  47914. ]
  47915. ))
  47916. characterMakers.push(() => makeCharacter(
  47917. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47918. {
  47919. front: {
  47920. height: math.unit(5 + 4/12, "feet"),
  47921. name: "Front",
  47922. image: {
  47923. source: "./media/characters/ashe-pyriph/front.svg",
  47924. extra: 1935/1747,
  47925. bottom: 60/1995
  47926. }
  47927. },
  47928. },
  47929. [
  47930. {
  47931. name: "Normal",
  47932. height: math.unit(5 + 4/12, "feet"),
  47933. default: true
  47934. },
  47935. ]
  47936. ))
  47937. characterMakers.push(() => makeCharacter(
  47938. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47939. {
  47940. front: {
  47941. height: math.unit(8.7, "feet"),
  47942. name: "Front",
  47943. image: {
  47944. source: "./media/characters/flicker-wisp/front.svg",
  47945. extra: 1835/1613,
  47946. bottom: 449/2284
  47947. }
  47948. },
  47949. side: {
  47950. height: math.unit(8.7, "feet"),
  47951. name: "Side",
  47952. image: {
  47953. source: "./media/characters/flicker-wisp/side.svg",
  47954. extra: 1841/1642,
  47955. bottom: 336/2177
  47956. },
  47957. default: true
  47958. },
  47959. maw: {
  47960. height: math.unit(3.35, "feet"),
  47961. name: "Maw",
  47962. image: {
  47963. source: "./media/characters/flicker-wisp/maw.svg",
  47964. extra: 2338/1506,
  47965. bottom: 0/2338
  47966. }
  47967. },
  47968. ovipositor: {
  47969. height: math.unit(4.95, "feet"),
  47970. name: "Ovipositor",
  47971. image: {
  47972. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47973. }
  47974. },
  47975. egg: {
  47976. height: math.unit(0.385, "feet"),
  47977. weight: math.unit(2, "lb"),
  47978. name: "Egg",
  47979. image: {
  47980. source: "./media/characters/flicker-wisp/egg.svg"
  47981. }
  47982. },
  47983. },
  47984. [
  47985. {
  47986. name: "Normal",
  47987. height: math.unit(8.7, "feet"),
  47988. default: true
  47989. },
  47990. ]
  47991. ))
  47992. characterMakers.push(() => makeCharacter(
  47993. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47994. {
  47995. side: {
  47996. height: math.unit(11, "feet"),
  47997. name: "Side",
  47998. image: {
  47999. source: "./media/characters/faefnul/side.svg",
  48000. extra: 1100/1007,
  48001. bottom: 0/1100
  48002. }
  48003. },
  48004. },
  48005. [
  48006. {
  48007. name: "Normal",
  48008. height: math.unit(11, "feet"),
  48009. default: true
  48010. },
  48011. ]
  48012. ))
  48013. characterMakers.push(() => makeCharacter(
  48014. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48015. {
  48016. front: {
  48017. height: math.unit(6 + 2/12, "feet"),
  48018. name: "Front",
  48019. image: {
  48020. source: "./media/characters/shady/front.svg",
  48021. extra: 502/461,
  48022. bottom: 9/511
  48023. }
  48024. },
  48025. kneeling: {
  48026. height: math.unit(4.6, "feet"),
  48027. name: "Kneeling",
  48028. image: {
  48029. source: "./media/characters/shady/kneeling.svg",
  48030. extra: 1328/1219,
  48031. bottom: 117/1445
  48032. }
  48033. },
  48034. maw: {
  48035. height: math.unit(2, "feet"),
  48036. name: "Maw",
  48037. image: {
  48038. source: "./media/characters/shady/maw.svg"
  48039. }
  48040. },
  48041. },
  48042. [
  48043. {
  48044. name: "Nano",
  48045. height: math.unit(1, "mm")
  48046. },
  48047. {
  48048. name: "Micro",
  48049. height: math.unit(12, "mm")
  48050. },
  48051. {
  48052. name: "Tiny",
  48053. height: math.unit(3, "inches")
  48054. },
  48055. {
  48056. name: "Normal",
  48057. height: math.unit(6 + 2/12, "feet"),
  48058. default: true
  48059. },
  48060. {
  48061. name: "Big",
  48062. height: math.unit(15, "feet")
  48063. },
  48064. {
  48065. name: "Macro",
  48066. height: math.unit(150, "feet")
  48067. },
  48068. {
  48069. name: "Titanic",
  48070. height: math.unit(500, "feet")
  48071. },
  48072. ]
  48073. ))
  48074. characterMakers.push(() => makeCharacter(
  48075. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48076. {
  48077. front: {
  48078. height: math.unit(12, "feet"),
  48079. name: "Front",
  48080. image: {
  48081. source: "./media/characters/fenrir/front.svg",
  48082. extra: 968/875,
  48083. bottom: 22/990
  48084. }
  48085. },
  48086. },
  48087. [
  48088. {
  48089. name: "Big",
  48090. height: math.unit(12, "feet"),
  48091. default: true
  48092. },
  48093. ]
  48094. ))
  48095. characterMakers.push(() => makeCharacter(
  48096. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48097. {
  48098. front: {
  48099. height: math.unit(5 + 4/12, "feet"),
  48100. name: "Front",
  48101. image: {
  48102. source: "./media/characters/makar/front.svg",
  48103. extra: 1181/1112,
  48104. bottom: 78/1259
  48105. }
  48106. },
  48107. },
  48108. [
  48109. {
  48110. name: "Normal",
  48111. height: math.unit(5 + 4/12, "feet"),
  48112. default: true
  48113. },
  48114. ]
  48115. ))
  48116. characterMakers.push(() => makeCharacter(
  48117. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48118. {
  48119. front: {
  48120. height: math.unit(5 + 7/12, "feet"),
  48121. name: "Front",
  48122. image: {
  48123. source: "./media/characters/callow/front.svg",
  48124. extra: 1482/1304,
  48125. bottom: 23/1505
  48126. }
  48127. },
  48128. back: {
  48129. height: math.unit(5 + 7/12, "feet"),
  48130. name: "Back",
  48131. image: {
  48132. source: "./media/characters/callow/back.svg",
  48133. extra: 1484/1296,
  48134. bottom: 25/1509
  48135. }
  48136. },
  48137. },
  48138. [
  48139. {
  48140. name: "Micro",
  48141. height: math.unit(3, "inches"),
  48142. default: true
  48143. },
  48144. {
  48145. name: "Normal",
  48146. height: math.unit(5 + 7/12, "feet")
  48147. },
  48148. ]
  48149. ))
  48150. characterMakers.push(() => makeCharacter(
  48151. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48152. {
  48153. front: {
  48154. height: math.unit(6 + 2/12, "feet"),
  48155. name: "Front",
  48156. image: {
  48157. source: "./media/characters/natel/front.svg",
  48158. extra: 1833/1692,
  48159. bottom: 166/1999
  48160. }
  48161. },
  48162. },
  48163. [
  48164. {
  48165. name: "Normal",
  48166. height: math.unit(6 + 2/12, "feet"),
  48167. default: true
  48168. },
  48169. ]
  48170. ))
  48171. characterMakers.push(() => makeCharacter(
  48172. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48173. {
  48174. front: {
  48175. height: math.unit(1.75, "meters"),
  48176. name: "Front",
  48177. image: {
  48178. source: "./media/characters/misu/front.svg",
  48179. extra: 1690/1558,
  48180. bottom: 234/1924
  48181. }
  48182. },
  48183. back: {
  48184. height: math.unit(1.75, "meters"),
  48185. name: "Back",
  48186. image: {
  48187. source: "./media/characters/misu/back.svg",
  48188. extra: 1762/1618,
  48189. bottom: 146/1908
  48190. }
  48191. },
  48192. frontNude: {
  48193. height: math.unit(1.75, "meters"),
  48194. name: "Front (Nude)",
  48195. image: {
  48196. source: "./media/characters/misu/front-nude.svg",
  48197. extra: 1690/1558,
  48198. bottom: 234/1924
  48199. }
  48200. },
  48201. backNude: {
  48202. height: math.unit(1.75, "meters"),
  48203. name: "Back (Nude)",
  48204. image: {
  48205. source: "./media/characters/misu/back-nude.svg",
  48206. extra: 1762/1618,
  48207. bottom: 146/1908
  48208. }
  48209. },
  48210. frontErect: {
  48211. height: math.unit(1.75, "meters"),
  48212. name: "Front (Erect)",
  48213. image: {
  48214. source: "./media/characters/misu/front-erect.svg",
  48215. extra: 1690/1558,
  48216. bottom: 234/1924
  48217. }
  48218. },
  48219. maw: {
  48220. height: math.unit(0.47, "meters"),
  48221. name: "Maw",
  48222. image: {
  48223. source: "./media/characters/misu/maw.svg"
  48224. }
  48225. },
  48226. head: {
  48227. height: math.unit(0.35, "meters"),
  48228. name: "Head",
  48229. image: {
  48230. source: "./media/characters/misu/head.svg"
  48231. }
  48232. },
  48233. rear: {
  48234. height: math.unit(0.47, "meters"),
  48235. name: "Rear",
  48236. image: {
  48237. source: "./media/characters/misu/rear.svg"
  48238. }
  48239. },
  48240. },
  48241. [
  48242. {
  48243. name: "Normal",
  48244. height: math.unit(1.75, "meters")
  48245. },
  48246. {
  48247. name: "Not good for the people",
  48248. height: math.unit(42, "meters")
  48249. },
  48250. {
  48251. name: "Not good for the neighborhood",
  48252. height: math.unit(135, "meters")
  48253. },
  48254. {
  48255. name: "Bit bigger problem",
  48256. height: math.unit(380, "meters"),
  48257. default: true
  48258. },
  48259. {
  48260. name: "Not good for the city",
  48261. height: math.unit(1.5, "km")
  48262. },
  48263. {
  48264. name: "Not good for the county",
  48265. height: math.unit(5.5, "km")
  48266. },
  48267. {
  48268. name: "Not good for the state",
  48269. height: math.unit(25, "km")
  48270. },
  48271. {
  48272. name: "Not good for the country",
  48273. height: math.unit(125, "km")
  48274. },
  48275. {
  48276. name: "Not good for the continent",
  48277. height: math.unit(2100, "km")
  48278. },
  48279. {
  48280. name: "Not good for the planet",
  48281. height: math.unit(35000, "km")
  48282. },
  48283. {
  48284. name: "Just no",
  48285. height: math.unit(8.5e18, "km")
  48286. },
  48287. ]
  48288. ))
  48289. characterMakers.push(() => makeCharacter(
  48290. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48291. {
  48292. front: {
  48293. height: math.unit(6.5, "feet"),
  48294. name: "Front",
  48295. image: {
  48296. source: "./media/characters/poppy/front.svg",
  48297. extra: 1878/1812,
  48298. bottom: 43/1921
  48299. }
  48300. },
  48301. feet: {
  48302. height: math.unit(1.06, "feet"),
  48303. name: "Feet",
  48304. image: {
  48305. source: "./media/characters/poppy/feet.svg",
  48306. extra: 1083/1083,
  48307. bottom: 87/1170
  48308. }
  48309. },
  48310. },
  48311. [
  48312. {
  48313. name: "Human",
  48314. height: math.unit(6.5, "feet")
  48315. },
  48316. {
  48317. name: "Default",
  48318. height: math.unit(300, "feet"),
  48319. default: true
  48320. },
  48321. {
  48322. name: "Huge",
  48323. height: math.unit(850, "feet")
  48324. },
  48325. {
  48326. name: "Mega",
  48327. height: math.unit(8000, "feet")
  48328. },
  48329. {
  48330. name: "Giga",
  48331. height: math.unit(300, "miles")
  48332. },
  48333. ]
  48334. ))
  48335. characterMakers.push(() => makeCharacter(
  48336. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48337. {
  48338. bipedal: {
  48339. height: math.unit(7, "feet"),
  48340. name: "Bipedal",
  48341. image: {
  48342. source: "./media/characters/zener/bipedal.svg",
  48343. extra: 874/805,
  48344. bottom: 109/983
  48345. }
  48346. },
  48347. quadrupedal: {
  48348. height: math.unit(4.64, "feet"),
  48349. name: "Quadrupedal",
  48350. image: {
  48351. source: "./media/characters/zener/quadrupedal.svg",
  48352. extra: 638/507,
  48353. bottom: 190/828
  48354. }
  48355. },
  48356. cock: {
  48357. height: math.unit(18, "inches"),
  48358. name: "Cock",
  48359. image: {
  48360. source: "./media/characters/zener/cock.svg"
  48361. }
  48362. },
  48363. },
  48364. [
  48365. {
  48366. name: "Normal",
  48367. height: math.unit(7, "feet"),
  48368. default: true
  48369. },
  48370. ]
  48371. ))
  48372. characterMakers.push(() => makeCharacter(
  48373. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48374. {
  48375. nude: {
  48376. height: math.unit(5 + 6/12, "feet"),
  48377. name: "Nude",
  48378. image: {
  48379. source: "./media/characters/charlie-dog/nude.svg",
  48380. extra: 768/734,
  48381. bottom: 26/794
  48382. }
  48383. },
  48384. dressed: {
  48385. height: math.unit(5 + 6/12, "feet"),
  48386. name: "Dressed",
  48387. image: {
  48388. source: "./media/characters/charlie-dog/dressed.svg",
  48389. extra: 768/734,
  48390. bottom: 26/794
  48391. }
  48392. },
  48393. },
  48394. [
  48395. {
  48396. name: "Normal",
  48397. height: math.unit(5 + 6/12, "feet"),
  48398. default: true
  48399. },
  48400. ]
  48401. ))
  48402. characterMakers.push(() => makeCharacter(
  48403. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48404. {
  48405. front: {
  48406. height: math.unit(6 + 4/12, "feet"),
  48407. name: "Front",
  48408. image: {
  48409. source: "./media/characters/ir'istrasz/front.svg",
  48410. extra: 1014/977,
  48411. bottom: 65/1079
  48412. }
  48413. },
  48414. back: {
  48415. height: math.unit(6 + 4/12, "feet"),
  48416. name: "Back",
  48417. image: {
  48418. source: "./media/characters/ir'istrasz/back.svg",
  48419. extra: 1024/992,
  48420. bottom: 34/1058
  48421. }
  48422. },
  48423. },
  48424. [
  48425. {
  48426. name: "Normal",
  48427. height: math.unit(6 + 4/12, "feet"),
  48428. default: true
  48429. },
  48430. ]
  48431. ))
  48432. characterMakers.push(() => makeCharacter(
  48433. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48434. {
  48435. front: {
  48436. height: math.unit(5 + 8/12, "feet"),
  48437. name: "Front",
  48438. image: {
  48439. source: "./media/characters/dee-ditto/front.svg",
  48440. extra: 1874/1785,
  48441. bottom: 68/1942
  48442. }
  48443. },
  48444. back: {
  48445. height: math.unit(5 + 8/12, "feet"),
  48446. name: "Back",
  48447. image: {
  48448. source: "./media/characters/dee-ditto/back.svg",
  48449. extra: 1870/1783,
  48450. bottom: 77/1947
  48451. }
  48452. },
  48453. },
  48454. [
  48455. {
  48456. name: "Normal",
  48457. height: math.unit(5 + 8/12, "feet"),
  48458. default: true
  48459. },
  48460. ]
  48461. ))
  48462. characterMakers.push(() => makeCharacter(
  48463. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48464. {
  48465. front: {
  48466. height: math.unit(7 + 6/12, "feet"),
  48467. name: "Front",
  48468. image: {
  48469. source: "./media/characters/fey/front.svg",
  48470. extra: 995/979,
  48471. bottom: 30/1025
  48472. }
  48473. },
  48474. back: {
  48475. height: math.unit(7 + 6/12, "feet"),
  48476. name: "Back",
  48477. image: {
  48478. source: "./media/characters/fey/back.svg",
  48479. extra: 1079/1008,
  48480. bottom: 5/1084
  48481. }
  48482. },
  48483. dressed: {
  48484. height: math.unit(7 + 6/12, "feet"),
  48485. name: "Dressed",
  48486. image: {
  48487. source: "./media/characters/fey/dressed.svg",
  48488. extra: 995/979,
  48489. bottom: 30/1025
  48490. }
  48491. },
  48492. },
  48493. [
  48494. {
  48495. name: "Normal",
  48496. height: math.unit(7 + 6/12, "feet"),
  48497. default: true
  48498. },
  48499. ]
  48500. ))
  48501. characterMakers.push(() => makeCharacter(
  48502. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48503. {
  48504. standing: {
  48505. height: math.unit(17, "feet"),
  48506. name: "Standing",
  48507. image: {
  48508. source: "./media/characters/aster/standing.svg",
  48509. extra: 1798/1598,
  48510. bottom: 117/1915
  48511. }
  48512. },
  48513. },
  48514. [
  48515. {
  48516. name: "Normal",
  48517. height: math.unit(17, "feet"),
  48518. default: true
  48519. },
  48520. {
  48521. name: "Homewrecker",
  48522. height: math.unit(95, "feet")
  48523. },
  48524. {
  48525. name: "Planet Devourer",
  48526. height: math.unit(1008000, "miles")
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48532. {
  48533. front: {
  48534. height: math.unit(6 + 5/12, "feet"),
  48535. weight: math.unit(265, "lb"),
  48536. name: "Front",
  48537. image: {
  48538. source: "./media/characters/devon-childs/front.svg",
  48539. extra: 1795/1721,
  48540. bottom: 41/1836
  48541. }
  48542. },
  48543. side: {
  48544. height: math.unit(6 + 5/12, "feet"),
  48545. weight: math.unit(265, "lb"),
  48546. name: "Side",
  48547. image: {
  48548. source: "./media/characters/devon-childs/side.svg",
  48549. extra: 1812/1738,
  48550. bottom: 30/1842
  48551. }
  48552. },
  48553. back: {
  48554. height: math.unit(6 + 5/12, "feet"),
  48555. weight: math.unit(265, "lb"),
  48556. name: "Back",
  48557. image: {
  48558. source: "./media/characters/devon-childs/back.svg",
  48559. extra: 1808/1735,
  48560. bottom: 23/1831
  48561. }
  48562. },
  48563. hand: {
  48564. height: math.unit(1.464, "feet"),
  48565. name: "Hand",
  48566. image: {
  48567. source: "./media/characters/devon-childs/hand.svg"
  48568. }
  48569. },
  48570. foot: {
  48571. height: math.unit(1.6, "feet"),
  48572. name: "Foot",
  48573. image: {
  48574. source: "./media/characters/devon-childs/foot.svg"
  48575. }
  48576. },
  48577. },
  48578. [
  48579. {
  48580. name: "Micro",
  48581. height: math.unit(7, "cm")
  48582. },
  48583. {
  48584. name: "Normal",
  48585. height: math.unit(6 + 5/12, "feet"),
  48586. default: true
  48587. },
  48588. {
  48589. name: "Macro",
  48590. height: math.unit(154, "feet")
  48591. },
  48592. ]
  48593. ))
  48594. characterMakers.push(() => makeCharacter(
  48595. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48596. {
  48597. front: {
  48598. height: math.unit(6, "feet"),
  48599. weight: math.unit(180, "lb"),
  48600. name: "Front",
  48601. image: {
  48602. source: "./media/characters/lydemox-vir/front.svg",
  48603. extra: 1632/1435,
  48604. bottom: 58/1690
  48605. }
  48606. },
  48607. frontSFW: {
  48608. height: math.unit(6, "feet"),
  48609. weight: math.unit(180, "lb"),
  48610. name: "Front (SFW)",
  48611. image: {
  48612. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48613. extra: 1632/1435,
  48614. bottom: 58/1690
  48615. }
  48616. },
  48617. back: {
  48618. height: math.unit(6, "feet"),
  48619. weight: math.unit(180, "lb"),
  48620. name: "Back",
  48621. image: {
  48622. source: "./media/characters/lydemox-vir/back.svg",
  48623. extra: 1593/1408,
  48624. bottom: 31/1624
  48625. }
  48626. },
  48627. paw: {
  48628. height: math.unit(1.85, "feet"),
  48629. name: "Paw",
  48630. image: {
  48631. source: "./media/characters/lydemox-vir/paw.svg"
  48632. }
  48633. },
  48634. dick: {
  48635. height: math.unit(1.8, "feet"),
  48636. name: "Dick",
  48637. image: {
  48638. source: "./media/characters/lydemox-vir/dick.svg"
  48639. }
  48640. },
  48641. },
  48642. [
  48643. {
  48644. name: "Macro",
  48645. height: math.unit(100, "feet"),
  48646. default: true
  48647. },
  48648. {
  48649. name: "Teramacro",
  48650. height: math.unit(1, "earth")
  48651. },
  48652. {
  48653. name: "Planetary",
  48654. height: math.unit(20, "earths")
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48660. {
  48661. front: {
  48662. height: math.unit(15 + 8/12, "feet"),
  48663. weight: math.unit(1237, "kg"),
  48664. name: "Front",
  48665. image: {
  48666. source: "./media/characters/mia/front.svg",
  48667. extra: 1573/1446,
  48668. bottom: 58/1631
  48669. }
  48670. },
  48671. },
  48672. [
  48673. {
  48674. name: "Small",
  48675. height: math.unit(9 + 5/12, "feet")
  48676. },
  48677. {
  48678. name: "Normal",
  48679. height: math.unit(15 + 8/12, "feet"),
  48680. default: true
  48681. },
  48682. ]
  48683. ))
  48684. characterMakers.push(() => makeCharacter(
  48685. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48686. {
  48687. front: {
  48688. height: math.unit(10 + 6/12, "feet"),
  48689. weight: math.unit(1.3, "tons"),
  48690. name: "Front",
  48691. image: {
  48692. source: "./media/characters/mr-graves/front.svg",
  48693. extra: 1779/1695,
  48694. bottom: 198/1977
  48695. }
  48696. },
  48697. },
  48698. [
  48699. {
  48700. name: "Normal",
  48701. height: math.unit(10 + 6 /12, "feet"),
  48702. default: true
  48703. },
  48704. ]
  48705. ))
  48706. characterMakers.push(() => makeCharacter(
  48707. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48708. {
  48709. dressedFront: {
  48710. height: math.unit(5 + 8/12, "feet"),
  48711. weight: math.unit(125, "lb"),
  48712. name: "Dressed (Front)",
  48713. image: {
  48714. source: "./media/characters/jess/dressed-front.svg",
  48715. extra: 1176/1152,
  48716. bottom: 42/1218
  48717. }
  48718. },
  48719. dressedSide: {
  48720. height: math.unit(5 + 8/12, "feet"),
  48721. weight: math.unit(125, "lb"),
  48722. name: "Dressed (Side)",
  48723. image: {
  48724. source: "./media/characters/jess/dressed-side.svg",
  48725. extra: 1204/1190,
  48726. bottom: 6/1210
  48727. }
  48728. },
  48729. nudeFront: {
  48730. height: math.unit(5 + 8/12, "feet"),
  48731. weight: math.unit(125, "lb"),
  48732. name: "Nude (Front)",
  48733. image: {
  48734. source: "./media/characters/jess/nude-front.svg",
  48735. extra: 1176/1152,
  48736. bottom: 42/1218
  48737. }
  48738. },
  48739. nudeSide: {
  48740. height: math.unit(5 + 8/12, "feet"),
  48741. weight: math.unit(125, "lb"),
  48742. name: "Nude (Side)",
  48743. image: {
  48744. source: "./media/characters/jess/nude-side.svg",
  48745. extra: 1204/1190,
  48746. bottom: 6/1210
  48747. }
  48748. },
  48749. organsFront: {
  48750. height: math.unit(2.83799342105, "feet"),
  48751. name: "Organs (Front)",
  48752. image: {
  48753. source: "./media/characters/jess/organs-front.svg"
  48754. }
  48755. },
  48756. organsSide: {
  48757. height: math.unit(2.64225290474, "feet"),
  48758. name: "Organs (Side)",
  48759. image: {
  48760. source: "./media/characters/jess/organs-side.svg"
  48761. }
  48762. },
  48763. digestiveTractFront: {
  48764. height: math.unit(2.8106580871, "feet"),
  48765. name: "Digestive Tract (Front)",
  48766. image: {
  48767. source: "./media/characters/jess/digestive-tract-front.svg"
  48768. }
  48769. },
  48770. digestiveTractSide: {
  48771. height: math.unit(2.54365045014, "feet"),
  48772. name: "Digestive Tract (Side)",
  48773. image: {
  48774. source: "./media/characters/jess/digestive-tract-side.svg"
  48775. }
  48776. },
  48777. respiratorySystemFront: {
  48778. height: math.unit(1.11196233456, "feet"),
  48779. name: "Respiratory System (Front)",
  48780. image: {
  48781. source: "./media/characters/jess/respiratory-system-front.svg"
  48782. }
  48783. },
  48784. respiratorySystemSide: {
  48785. height: math.unit(0.89327966297, "feet"),
  48786. name: "Respiratory System (Side)",
  48787. image: {
  48788. source: "./media/characters/jess/respiratory-system-side.svg"
  48789. }
  48790. },
  48791. urinaryTractFront: {
  48792. height: math.unit(1.16126356186, "feet"),
  48793. name: "Urinary Tract (Front)",
  48794. image: {
  48795. source: "./media/characters/jess/urinary-tract-front.svg"
  48796. }
  48797. },
  48798. urinaryTractSide: {
  48799. height: math.unit(1.20910039627, "feet"),
  48800. name: "Urinary Tract (Side)",
  48801. image: {
  48802. source: "./media/characters/jess/urinary-tract-side.svg"
  48803. }
  48804. },
  48805. reproductiveOrgansFront: {
  48806. height: math.unit(0.48422591566, "feet"),
  48807. name: "Reproductive Organs (Front)",
  48808. image: {
  48809. source: "./media/characters/jess/reproductive-organs-front.svg"
  48810. }
  48811. },
  48812. reproductiveOrgansSide: {
  48813. height: math.unit(0.61553314481, "feet"),
  48814. name: "Reproductive Organs (Side)",
  48815. image: {
  48816. source: "./media/characters/jess/reproductive-organs-side.svg"
  48817. }
  48818. },
  48819. breastsFront: {
  48820. height: math.unit(0.47690395121, "feet"),
  48821. name: "Breasts (Front)",
  48822. image: {
  48823. source: "./media/characters/jess/breasts-front.svg"
  48824. }
  48825. },
  48826. breastsSide: {
  48827. height: math.unit(0.30556998307, "feet"),
  48828. name: "Breasts (Side)",
  48829. image: {
  48830. source: "./media/characters/jess/breasts-side.svg"
  48831. }
  48832. },
  48833. heartFront: {
  48834. height: math.unit(0.53011022622, "feet"),
  48835. name: "Heart (Front)",
  48836. image: {
  48837. source: "./media/characters/jess/heart-front.svg"
  48838. }
  48839. },
  48840. heartSide: {
  48841. height: math.unit(0.51790695213, "feet"),
  48842. name: "Heart (Side)",
  48843. image: {
  48844. source: "./media/characters/jess/heart-side.svg"
  48845. }
  48846. },
  48847. earsAndNoseFront: {
  48848. height: math.unit(0.29385483995, "feet"),
  48849. name: "Ears and Nose (Front)",
  48850. image: {
  48851. source: "./media/characters/jess/ears-and-nose-front.svg"
  48852. }
  48853. },
  48854. earsAndNoseSide: {
  48855. height: math.unit(0.18109658741, "feet"),
  48856. name: "Ears and Nose (Side)",
  48857. image: {
  48858. source: "./media/characters/jess/ears-and-nose-side.svg"
  48859. }
  48860. },
  48861. },
  48862. [
  48863. {
  48864. name: "Normal",
  48865. height: math.unit(5 + 8/12, "feet"),
  48866. default: true
  48867. },
  48868. ]
  48869. ))
  48870. characterMakers.push(() => makeCharacter(
  48871. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48872. {
  48873. front: {
  48874. height: math.unit(6, "feet"),
  48875. weight: math.unit(6.64467e-7, "grams"),
  48876. name: "Front",
  48877. image: {
  48878. source: "./media/characters/wimpering/front.svg",
  48879. extra: 597/587,
  48880. bottom: 34/631
  48881. }
  48882. },
  48883. },
  48884. [
  48885. {
  48886. name: "Micro",
  48887. height: math.unit(0.4, "mm"),
  48888. default: true
  48889. },
  48890. ]
  48891. ))
  48892. characterMakers.push(() => makeCharacter(
  48893. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48894. {
  48895. front: {
  48896. height: math.unit(5 + 2/12, "feet"),
  48897. weight: math.unit(110, "lb"),
  48898. name: "Front",
  48899. image: {
  48900. source: "./media/characters/keltre/front.svg",
  48901. extra: 1099/1057,
  48902. bottom: 22/1121
  48903. }
  48904. },
  48905. back: {
  48906. height: math.unit(5 + 2/12, "feet"),
  48907. weight: math.unit(110, "lb"),
  48908. name: "Back",
  48909. image: {
  48910. source: "./media/characters/keltre/back.svg",
  48911. extra: 1095/1053,
  48912. bottom: 17/1112
  48913. }
  48914. },
  48915. dressed: {
  48916. height: math.unit(5 + 2/12, "feet"),
  48917. weight: math.unit(110, "lb"),
  48918. name: "Dressed",
  48919. image: {
  48920. source: "./media/characters/keltre/dressed.svg",
  48921. extra: 1099/1057,
  48922. bottom: 22/1121
  48923. }
  48924. },
  48925. winter: {
  48926. height: math.unit(5 + 2/12, "feet"),
  48927. weight: math.unit(110, "lb"),
  48928. name: "Winter",
  48929. image: {
  48930. source: "./media/characters/keltre/winter.svg",
  48931. extra: 1099/1057,
  48932. bottom: 22/1121
  48933. }
  48934. },
  48935. head: {
  48936. height: math.unit(1.61 * 0.86, "feet"),
  48937. name: "Head",
  48938. image: {
  48939. source: "./media/characters/keltre/head.svg",
  48940. extra: 534/421,
  48941. bottom: 0/534
  48942. }
  48943. },
  48944. hand: {
  48945. height: math.unit(1.3 * 0.86, "feet"),
  48946. name: "Hand",
  48947. image: {
  48948. source: "./media/characters/keltre/hand.svg"
  48949. }
  48950. },
  48951. foot: {
  48952. height: math.unit(1.8 * 0.86, "feet"),
  48953. name: "Foot",
  48954. image: {
  48955. source: "./media/characters/keltre/foot.svg"
  48956. }
  48957. },
  48958. },
  48959. [
  48960. {
  48961. name: "Fine",
  48962. height: math.unit(1, "inch")
  48963. },
  48964. {
  48965. name: "Dimnutive",
  48966. height: math.unit(4, "inches")
  48967. },
  48968. {
  48969. name: "Tiny",
  48970. height: math.unit(1, "foot")
  48971. },
  48972. {
  48973. name: "Small",
  48974. height: math.unit(3, "feet")
  48975. },
  48976. {
  48977. name: "Normal",
  48978. height: math.unit(5 + 2/12, "feet"),
  48979. default: true
  48980. },
  48981. ]
  48982. ))
  48983. characterMakers.push(() => makeCharacter(
  48984. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48985. {
  48986. front: {
  48987. height: math.unit(6 + 2/12, "feet"),
  48988. name: "Front",
  48989. image: {
  48990. source: "./media/characters/nox/front.svg",
  48991. extra: 1917/1830,
  48992. bottom: 74/1991
  48993. }
  48994. },
  48995. back: {
  48996. height: math.unit(6 + 2/12, "feet"),
  48997. name: "Back",
  48998. image: {
  48999. source: "./media/characters/nox/back.svg",
  49000. extra: 1896/1815,
  49001. bottom: 21/1917
  49002. }
  49003. },
  49004. head: {
  49005. height: math.unit(1.1, "feet"),
  49006. name: "Head",
  49007. image: {
  49008. source: "./media/characters/nox/head.svg",
  49009. extra: 874/704,
  49010. bottom: 0/874
  49011. }
  49012. },
  49013. tattoo: {
  49014. height: math.unit(0.729, "feet"),
  49015. name: "Tattoo",
  49016. image: {
  49017. source: "./media/characters/nox/tattoo.svg"
  49018. }
  49019. },
  49020. },
  49021. [
  49022. {
  49023. name: "Normal",
  49024. height: math.unit(6 + 2/12, "feet")
  49025. },
  49026. {
  49027. name: "Gigamacro",
  49028. height: math.unit(2, "earths"),
  49029. default: true
  49030. },
  49031. {
  49032. name: "Cosmic",
  49033. height: math.unit(867, "yottameters")
  49034. },
  49035. ]
  49036. ))
  49037. characterMakers.push(() => makeCharacter(
  49038. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49039. {
  49040. front: {
  49041. height: math.unit(6, "feet"),
  49042. weight: math.unit(150, "lb"),
  49043. name: "Front",
  49044. image: {
  49045. source: "./media/characters/caspian/front.svg",
  49046. extra: 1443/1359,
  49047. bottom: 0/1443
  49048. }
  49049. },
  49050. back: {
  49051. height: math.unit(6, "feet"),
  49052. weight: math.unit(150, "lb"),
  49053. name: "Back",
  49054. image: {
  49055. source: "./media/characters/caspian/back.svg",
  49056. extra: 1379/1309,
  49057. bottom: 0/1379
  49058. }
  49059. },
  49060. head: {
  49061. height: math.unit(0.9, "feet"),
  49062. name: "Head",
  49063. image: {
  49064. source: "./media/characters/caspian/head.svg",
  49065. extra: 692/492,
  49066. bottom: 0/692
  49067. }
  49068. },
  49069. headAlt: {
  49070. height: math.unit(0.95, "feet"),
  49071. name: "Head (Alt)",
  49072. image: {
  49073. source: "./media/characters/caspian/head-alt.svg",
  49074. extra: 668/508,
  49075. bottom: 0/668
  49076. }
  49077. },
  49078. hand: {
  49079. height: math.unit(0.8, "feet"),
  49080. name: "Hand",
  49081. image: {
  49082. source: "./media/characters/caspian/hand.svg"
  49083. }
  49084. },
  49085. paw: {
  49086. height: math.unit(0.95, "feet"),
  49087. name: "Paw",
  49088. image: {
  49089. source: "./media/characters/caspian/paw.svg"
  49090. }
  49091. },
  49092. },
  49093. [
  49094. {
  49095. name: "Normal",
  49096. height: math.unit(162, "feet"),
  49097. default: true
  49098. },
  49099. ]
  49100. ))
  49101. characterMakers.push(() => makeCharacter(
  49102. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49103. {
  49104. front: {
  49105. height: math.unit(6, "feet"),
  49106. name: "Front",
  49107. image: {
  49108. source: "./media/characters/myra-aisling/front.svg",
  49109. extra: 1268/1166,
  49110. bottom: 73/1341
  49111. }
  49112. },
  49113. back: {
  49114. height: math.unit(6, "feet"),
  49115. name: "Back",
  49116. image: {
  49117. source: "./media/characters/myra-aisling/back.svg",
  49118. extra: 1249/1149,
  49119. bottom: 79/1328
  49120. }
  49121. },
  49122. dressed: {
  49123. height: math.unit(6, "feet"),
  49124. name: "Dressed",
  49125. image: {
  49126. source: "./media/characters/myra-aisling/dressed.svg",
  49127. extra: 1290/1189,
  49128. bottom: 47/1337
  49129. }
  49130. },
  49131. hand: {
  49132. height: math.unit(1.1, "feet"),
  49133. name: "Hand",
  49134. image: {
  49135. source: "./media/characters/myra-aisling/hand.svg"
  49136. }
  49137. },
  49138. paw: {
  49139. height: math.unit(1.23, "feet"),
  49140. name: "Paw",
  49141. image: {
  49142. source: "./media/characters/myra-aisling/paw.svg"
  49143. }
  49144. },
  49145. },
  49146. [
  49147. {
  49148. name: "Normal",
  49149. height: math.unit(160, "feet"),
  49150. default: true
  49151. },
  49152. ]
  49153. ))
  49154. characterMakers.push(() => makeCharacter(
  49155. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49156. {
  49157. front: {
  49158. height: math.unit(6, "feet"),
  49159. name: "Front",
  49160. image: {
  49161. source: "./media/characters/tenley-sidero/front.svg",
  49162. extra: 1365/1276,
  49163. bottom: 47/1412
  49164. }
  49165. },
  49166. back: {
  49167. height: math.unit(6, "feet"),
  49168. name: "Back",
  49169. image: {
  49170. source: "./media/characters/tenley-sidero/back.svg",
  49171. extra: 1383/1283,
  49172. bottom: 35/1418
  49173. }
  49174. },
  49175. dressed: {
  49176. height: math.unit(6, "feet"),
  49177. name: "Dressed",
  49178. image: {
  49179. source: "./media/characters/tenley-sidero/dressed.svg",
  49180. extra: 1364/1275,
  49181. bottom: 42/1406
  49182. }
  49183. },
  49184. head: {
  49185. height: math.unit(1.47, "feet"),
  49186. name: "Head",
  49187. image: {
  49188. source: "./media/characters/tenley-sidero/head.svg",
  49189. extra: 610/490,
  49190. bottom: 0/610
  49191. }
  49192. },
  49193. },
  49194. [
  49195. {
  49196. name: "Normal",
  49197. height: math.unit(154, "feet"),
  49198. default: true
  49199. },
  49200. ]
  49201. ))
  49202. characterMakers.push(() => makeCharacter(
  49203. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49204. {
  49205. front: {
  49206. height: math.unit(5, "inches"),
  49207. name: "Front",
  49208. image: {
  49209. source: "./media/characters/mallory/front.svg",
  49210. extra: 1919/1678,
  49211. bottom: 29/1948
  49212. }
  49213. },
  49214. hand: {
  49215. height: math.unit(0.73, "inches"),
  49216. name: "Hand",
  49217. image: {
  49218. source: "./media/characters/mallory/hand.svg"
  49219. }
  49220. },
  49221. paw: {
  49222. height: math.unit(0.68, "inches"),
  49223. name: "Paw",
  49224. image: {
  49225. source: "./media/characters/mallory/paw.svg"
  49226. }
  49227. },
  49228. },
  49229. [
  49230. {
  49231. name: "Small",
  49232. height: math.unit(5, "inches"),
  49233. default: true
  49234. },
  49235. ]
  49236. ))
  49237. characterMakers.push(() => makeCharacter(
  49238. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49239. {
  49240. naked: {
  49241. height: math.unit(6, "feet"),
  49242. name: "Naked",
  49243. image: {
  49244. source: "./media/characters/mab/naked.svg",
  49245. extra: 1855/1757,
  49246. bottom: 208/2063
  49247. }
  49248. },
  49249. outside: {
  49250. height: math.unit(6, "feet"),
  49251. name: "Outside",
  49252. image: {
  49253. source: "./media/characters/mab/outside.svg",
  49254. extra: 1855/1757,
  49255. bottom: 208/2063
  49256. }
  49257. },
  49258. party: {
  49259. height: math.unit(6, "feet"),
  49260. name: "Party",
  49261. image: {
  49262. source: "./media/characters/mab/party.svg",
  49263. extra: 1855/1757,
  49264. bottom: 208/2063
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Normal",
  49271. height: math.unit(165, "feet"),
  49272. default: true
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49278. {
  49279. front: {
  49280. height: math.unit(12, "feet"),
  49281. weight: math.unit(4000, "lb"),
  49282. name: "Front",
  49283. image: {
  49284. source: "./media/characters/winter/front.svg",
  49285. extra: 1286/943,
  49286. bottom: 112/1398
  49287. }
  49288. },
  49289. frontNsfw: {
  49290. height: math.unit(12, "feet"),
  49291. weight: math.unit(4000, "lb"),
  49292. name: "Front (NSFW)",
  49293. image: {
  49294. source: "./media/characters/winter/front-nsfw.svg",
  49295. extra: 1286/943,
  49296. bottom: 112/1398
  49297. }
  49298. },
  49299. dick: {
  49300. height: math.unit(3.79, "feet"),
  49301. name: "Dick",
  49302. image: {
  49303. source: "./media/characters/winter/dick.svg"
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Big",
  49310. height: math.unit(12, "feet"),
  49311. default: true
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(4.1, "inches"),
  49320. name: "Front",
  49321. image: {
  49322. source: "./media/characters/alto/front.svg",
  49323. extra: 736/627,
  49324. bottom: 90/826
  49325. }
  49326. },
  49327. },
  49328. [
  49329. {
  49330. name: "Normal",
  49331. height: math.unit(4.1, "inches"),
  49332. default: true
  49333. },
  49334. ]
  49335. ))
  49336. characterMakers.push(() => makeCharacter(
  49337. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49338. {
  49339. sitting: {
  49340. height: math.unit(3, "feet"),
  49341. name: "Sitting",
  49342. image: {
  49343. source: "./media/characters/ratstrid-v/sitting.svg",
  49344. extra: 355/310,
  49345. bottom: 136/491
  49346. }
  49347. },
  49348. },
  49349. [
  49350. {
  49351. name: "Normal",
  49352. height: math.unit(3, "feet"),
  49353. default: true
  49354. },
  49355. ]
  49356. ))
  49357. characterMakers.push(() => makeCharacter(
  49358. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49359. {
  49360. back: {
  49361. height: math.unit(6, "feet"),
  49362. weight: math.unit(350, "lb"),
  49363. name: "Back",
  49364. image: {
  49365. source: "./media/characters/siz/back.svg",
  49366. extra: 1449/1274,
  49367. bottom: 13/1462
  49368. }
  49369. },
  49370. },
  49371. [
  49372. {
  49373. name: "Over-Overcompressed",
  49374. height: math.unit(8, "feet")
  49375. },
  49376. {
  49377. name: "Overcompressed",
  49378. height: math.unit(32, "feet")
  49379. },
  49380. {
  49381. name: "Compressed",
  49382. height: math.unit(128, "feet"),
  49383. default: true
  49384. },
  49385. {
  49386. name: "Half-Compressed",
  49387. height: math.unit(512, "feet")
  49388. },
  49389. {
  49390. name: "Quarter-Compressed",
  49391. height: math.unit(2048, "feet")
  49392. },
  49393. {
  49394. name: "Uncompressed?",
  49395. height: math.unit(8192, "feet")
  49396. },
  49397. ]
  49398. ))
  49399. characterMakers.push(() => makeCharacter(
  49400. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49401. {
  49402. front: {
  49403. height: math.unit(5 + 9/12, "feet"),
  49404. weight: math.unit(150, "lb"),
  49405. name: "Front",
  49406. image: {
  49407. source: "./media/characters/ven/front.svg",
  49408. extra: 1372/1320,
  49409. bottom: 73/1445
  49410. }
  49411. },
  49412. side: {
  49413. height: math.unit(5 + 9/12, "feet"),
  49414. weight: math.unit(1150, "lb"),
  49415. name: "Side",
  49416. image: {
  49417. source: "./media/characters/ven/side.svg",
  49418. extra: 1119/1070,
  49419. bottom: 42/1161
  49420. },
  49421. default: true
  49422. },
  49423. },
  49424. [
  49425. {
  49426. name: "Normal",
  49427. height: math.unit(5 + 9/12, "feet"),
  49428. default: true
  49429. },
  49430. ]
  49431. ))
  49432. characterMakers.push(() => makeCharacter(
  49433. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49434. {
  49435. front: {
  49436. height: math.unit(12, "feet"),
  49437. weight: math.unit(1000, "kg"),
  49438. name: "Front",
  49439. image: {
  49440. source: "./media/characters/maple/front.svg",
  49441. extra: 1193/1081,
  49442. bottom: 22/1215
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Compressed",
  49449. height: math.unit(7, "feet")
  49450. },
  49451. {
  49452. name: "Normal",
  49453. height: math.unit(12, "feet"),
  49454. default: true
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49460. {
  49461. front: {
  49462. height: math.unit(9, "feet"),
  49463. weight: math.unit(1500, "lb"),
  49464. name: "Front",
  49465. image: {
  49466. source: "./media/characters/nora/front.svg",
  49467. extra: 1348/1286,
  49468. bottom: 218/1566
  49469. }
  49470. },
  49471. erect: {
  49472. height: math.unit(9, "feet"),
  49473. weight: math.unit(11500, "lb"),
  49474. name: "Erect",
  49475. image: {
  49476. source: "./media/characters/nora/erect.svg",
  49477. extra: 1488/1433,
  49478. bottom: 133/1621
  49479. }
  49480. },
  49481. },
  49482. [
  49483. {
  49484. name: "Normal",
  49485. height: math.unit(9, "feet"),
  49486. default: true
  49487. },
  49488. ]
  49489. ))
  49490. characterMakers.push(() => makeCharacter(
  49491. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49492. {
  49493. front: {
  49494. height: math.unit(25, "feet"),
  49495. weight: math.unit(27500, "lb"),
  49496. name: "Front",
  49497. image: {
  49498. source: "./media/characters/north-caudin/front.svg",
  49499. extra: 1184/1082,
  49500. bottom: 23/1207
  49501. }
  49502. },
  49503. },
  49504. [
  49505. {
  49506. name: "Compressed",
  49507. height: math.unit(10, "feet")
  49508. },
  49509. {
  49510. name: "Normal",
  49511. height: math.unit(25, "feet"),
  49512. default: true
  49513. },
  49514. ]
  49515. ))
  49516. characterMakers.push(() => makeCharacter(
  49517. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49518. {
  49519. front: {
  49520. height: math.unit(9, "feet"),
  49521. weight: math.unit(1250, "lb"),
  49522. name: "Front",
  49523. image: {
  49524. source: "./media/characters/merrian/front.svg",
  49525. extra: 2393/2304,
  49526. bottom: 40/2433
  49527. }
  49528. },
  49529. },
  49530. [
  49531. {
  49532. name: "Normal",
  49533. height: math.unit(9, "feet"),
  49534. default: true
  49535. },
  49536. ]
  49537. ))
  49538. characterMakers.push(() => makeCharacter(
  49539. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49540. {
  49541. front: {
  49542. height: math.unit(9, "feet"),
  49543. weight: math.unit(1000, "lb"),
  49544. name: "Front",
  49545. image: {
  49546. source: "./media/characters/hazel/front.svg",
  49547. extra: 2351/2298,
  49548. bottom: 38/2389
  49549. }
  49550. },
  49551. },
  49552. [
  49553. {
  49554. name: "Normal",
  49555. height: math.unit(9, "feet"),
  49556. default: true
  49557. },
  49558. ]
  49559. ))
  49560. characterMakers.push(() => makeCharacter(
  49561. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49562. {
  49563. front: {
  49564. height: math.unit(13, "feet"),
  49565. weight: math.unit(3200, "lb"),
  49566. name: "Front",
  49567. image: {
  49568. source: "./media/characters/emma/front.svg",
  49569. extra: 2263/2029,
  49570. bottom: 68/2331
  49571. }
  49572. },
  49573. },
  49574. [
  49575. {
  49576. name: "Normal",
  49577. height: math.unit(13, "feet"),
  49578. default: true
  49579. },
  49580. ]
  49581. ))
  49582. characterMakers.push(() => makeCharacter(
  49583. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49584. {
  49585. front: {
  49586. height: math.unit(11 + 9/12, "feet"),
  49587. weight: math.unit(2500, "lb"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/ilumina/front.svg",
  49591. extra: 2248/2209,
  49592. bottom: 164/2412
  49593. }
  49594. },
  49595. },
  49596. [
  49597. {
  49598. name: "Normal",
  49599. height: math.unit(11 + 9/12, "feet"),
  49600. default: true
  49601. },
  49602. ]
  49603. ))
  49604. characterMakers.push(() => makeCharacter(
  49605. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49606. {
  49607. front: {
  49608. height: math.unit(8 + 10/12, "feet"),
  49609. weight: math.unit(1350, "lb"),
  49610. name: "Front",
  49611. image: {
  49612. source: "./media/characters/moonshine/front.svg",
  49613. extra: 2395/2288,
  49614. bottom: 40/2435
  49615. }
  49616. },
  49617. },
  49618. [
  49619. {
  49620. name: "Normal",
  49621. height: math.unit(8 + 10/12, "feet"),
  49622. default: true
  49623. },
  49624. ]
  49625. ))
  49626. characterMakers.push(() => makeCharacter(
  49627. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49628. {
  49629. front: {
  49630. height: math.unit(14, "feet"),
  49631. weight: math.unit(3400, "lb"),
  49632. name: "Front",
  49633. image: {
  49634. source: "./media/characters/aletia/front.svg",
  49635. extra: 1185/1052,
  49636. bottom: 21/1206
  49637. }
  49638. },
  49639. },
  49640. [
  49641. {
  49642. name: "Compressed",
  49643. height: math.unit(8, "feet")
  49644. },
  49645. {
  49646. name: "Normal",
  49647. height: math.unit(14, "feet"),
  49648. default: true
  49649. },
  49650. ]
  49651. ))
  49652. characterMakers.push(() => makeCharacter(
  49653. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49654. {
  49655. front: {
  49656. height: math.unit(17, "feet"),
  49657. weight: math.unit(6500, "lb"),
  49658. name: "Front",
  49659. image: {
  49660. source: "./media/characters/deidra/front.svg",
  49661. extra: 1201/1081,
  49662. bottom: 16/1217
  49663. }
  49664. },
  49665. },
  49666. [
  49667. {
  49668. name: "Compressed",
  49669. height: math.unit(9 + 6/12, "feet")
  49670. },
  49671. {
  49672. name: "Normal",
  49673. height: math.unit(17, "feet"),
  49674. default: true
  49675. },
  49676. ]
  49677. ))
  49678. characterMakers.push(() => makeCharacter(
  49679. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49680. {
  49681. front: {
  49682. height: math.unit(7 + 4/12, "feet"),
  49683. weight: math.unit(280, "lb"),
  49684. name: "Front",
  49685. image: {
  49686. source: "./media/characters/freki-yrmori/front.svg",
  49687. extra: 1286/1182,
  49688. bottom: 29/1315
  49689. }
  49690. },
  49691. maw: {
  49692. height: math.unit(0.9, "feet"),
  49693. name: "Maw",
  49694. image: {
  49695. source: "./media/characters/freki-yrmori/maw.svg"
  49696. }
  49697. },
  49698. },
  49699. [
  49700. {
  49701. name: "Normal",
  49702. height: math.unit(7 + 4/12, "feet"),
  49703. default: true
  49704. },
  49705. {
  49706. name: "Macro",
  49707. height: math.unit(38.5, "meters")
  49708. },
  49709. ]
  49710. ))
  49711. characterMakers.push(() => makeCharacter(
  49712. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49713. {
  49714. side: {
  49715. height: math.unit(47.2, "meters"),
  49716. weight: math.unit(10000, "tons"),
  49717. name: "Side",
  49718. image: {
  49719. source: "./media/characters/aetherios/side.svg",
  49720. extra: 2363/642,
  49721. bottom: 221/2584
  49722. }
  49723. },
  49724. top: {
  49725. height: math.unit(240, "meters"),
  49726. weight: math.unit(10000, "tons"),
  49727. name: "Top",
  49728. image: {
  49729. source: "./media/characters/aetherios/top.svg"
  49730. }
  49731. },
  49732. bottom: {
  49733. height: math.unit(240, "meters"),
  49734. weight: math.unit(10000, "tons"),
  49735. name: "Bottom",
  49736. image: {
  49737. source: "./media/characters/aetherios/bottom.svg"
  49738. }
  49739. },
  49740. head: {
  49741. height: math.unit(38.6, "meters"),
  49742. name: "Head",
  49743. image: {
  49744. source: "./media/characters/aetherios/head.svg",
  49745. extra: 1335/1112,
  49746. bottom: 0/1335
  49747. }
  49748. },
  49749. front: {
  49750. height: math.unit(29, "meters"),
  49751. name: "Front",
  49752. image: {
  49753. source: "./media/characters/aetherios/front.svg",
  49754. extra: 1266/953,
  49755. bottom: 158/1424
  49756. }
  49757. },
  49758. maw: {
  49759. height: math.unit(16.37, "meters"),
  49760. name: "Maw",
  49761. image: {
  49762. source: "./media/characters/aetherios/maw.svg",
  49763. extra: 748/637,
  49764. bottom: 0/748
  49765. },
  49766. extraAttributes: {
  49767. preyCapacity: {
  49768. name: "Capacity",
  49769. power: 3,
  49770. type: "volume",
  49771. base: math.unit(1000, "people")
  49772. },
  49773. tongueSize: {
  49774. name: "Tongue Size",
  49775. power: 2,
  49776. type: "area",
  49777. base: math.unit(21, "m^2")
  49778. }
  49779. }
  49780. },
  49781. forepaw: {
  49782. height: math.unit(18, "meters"),
  49783. name: "Forepaw",
  49784. image: {
  49785. source: "./media/characters/aetherios/forepaw.svg"
  49786. }
  49787. },
  49788. hindpaw: {
  49789. height: math.unit(23, "meters"),
  49790. name: "Hindpaw",
  49791. image: {
  49792. source: "./media/characters/aetherios/hindpaw.svg"
  49793. }
  49794. },
  49795. genitals: {
  49796. height: math.unit(42, "meters"),
  49797. name: "Genitals",
  49798. image: {
  49799. source: "./media/characters/aetherios/genitals.svg"
  49800. }
  49801. },
  49802. },
  49803. [
  49804. {
  49805. name: "Normal",
  49806. height: math.unit(47.2, "meters"),
  49807. default: true
  49808. },
  49809. {
  49810. name: "Macro",
  49811. height: math.unit(160, "meters")
  49812. },
  49813. {
  49814. name: "Mega",
  49815. height: math.unit(1.87, "km")
  49816. },
  49817. {
  49818. name: "Giga",
  49819. height: math.unit(40000, "km")
  49820. },
  49821. {
  49822. name: "Stellar",
  49823. height: math.unit(158000000, "km")
  49824. },
  49825. {
  49826. name: "Cosmic",
  49827. height: math.unit(9.46e12, "km")
  49828. },
  49829. ]
  49830. ))
  49831. characterMakers.push(() => makeCharacter(
  49832. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49833. {
  49834. front: {
  49835. height: math.unit(5 + 4/12, "feet"),
  49836. weight: math.unit(80, "lb"),
  49837. name: "Front",
  49838. image: {
  49839. source: "./media/characters/mizu-gieeg/front.svg",
  49840. extra: 850/709,
  49841. bottom: 52/902
  49842. }
  49843. },
  49844. back: {
  49845. height: math.unit(5 + 4/12, "feet"),
  49846. weight: math.unit(80, "lb"),
  49847. name: "Back",
  49848. image: {
  49849. source: "./media/characters/mizu-gieeg/back.svg",
  49850. extra: 882/745,
  49851. bottom: 25/907
  49852. }
  49853. },
  49854. },
  49855. [
  49856. {
  49857. name: "Normal",
  49858. height: math.unit(5 + 4/12, "feet"),
  49859. default: true
  49860. },
  49861. ]
  49862. ))
  49863. characterMakers.push(() => makeCharacter(
  49864. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49865. {
  49866. front: {
  49867. height: math.unit(6, "feet"),
  49868. name: "Front",
  49869. image: {
  49870. source: "./media/characters/roselle-st-papier/front.svg",
  49871. extra: 1430/1280,
  49872. bottom: 37/1467
  49873. }
  49874. },
  49875. back: {
  49876. height: math.unit(6, "feet"),
  49877. name: "Back",
  49878. image: {
  49879. source: "./media/characters/roselle-st-papier/back.svg",
  49880. extra: 1491/1296,
  49881. bottom: 23/1514
  49882. }
  49883. },
  49884. ear: {
  49885. height: math.unit(1.26, "feet"),
  49886. name: "Ear",
  49887. image: {
  49888. source: "./media/characters/roselle-st-papier/ear.svg"
  49889. }
  49890. },
  49891. },
  49892. [
  49893. {
  49894. name: "Normal",
  49895. height: math.unit(150, "feet"),
  49896. default: true
  49897. },
  49898. ]
  49899. ))
  49900. characterMakers.push(() => makeCharacter(
  49901. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49902. {
  49903. front: {
  49904. height: math.unit(1, "inches"),
  49905. name: "Front",
  49906. image: {
  49907. source: "./media/characters/valargent/front.svg",
  49908. extra: 1825/1694,
  49909. bottom: 62/1887
  49910. }
  49911. },
  49912. back: {
  49913. height: math.unit(1, "inches"),
  49914. name: "Back",
  49915. image: {
  49916. source: "./media/characters/valargent/back.svg",
  49917. extra: 1775/1682,
  49918. bottom: 88/1863
  49919. }
  49920. },
  49921. },
  49922. [
  49923. {
  49924. name: "Micro",
  49925. height: math.unit(1, "inch"),
  49926. default: true
  49927. },
  49928. ]
  49929. ))
  49930. characterMakers.push(() => makeCharacter(
  49931. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49932. {
  49933. front: {
  49934. height: math.unit(3.4, "meters"),
  49935. name: "Front",
  49936. image: {
  49937. source: "./media/characters/zarina/front.svg",
  49938. extra: 1733/1425,
  49939. bottom: 93/1826
  49940. }
  49941. },
  49942. squatting: {
  49943. height: math.unit(2.14, "meters"),
  49944. name: "Squatting",
  49945. image: {
  49946. source: "./media/characters/zarina/squatting.svg",
  49947. extra: 1073/788,
  49948. bottom: 63/1136
  49949. }
  49950. },
  49951. back: {
  49952. height: math.unit(2.14, "meters"),
  49953. name: "Back",
  49954. image: {
  49955. source: "./media/characters/zarina/back.svg",
  49956. extra: 1128/885,
  49957. bottom: 0/1128
  49958. }
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(3.4, "meters"),
  49965. default: true
  49966. },
  49967. {
  49968. name: "Big",
  49969. height: math.unit(5, "meters")
  49970. },
  49971. {
  49972. name: "Macro",
  49973. height: math.unit(110, "meters")
  49974. },
  49975. ]
  49976. ))
  49977. characterMakers.push(() => makeCharacter(
  49978. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49979. {
  49980. front: {
  49981. height: math.unit(7, "feet"),
  49982. name: "Front",
  49983. image: {
  49984. source: "./media/characters/ventus-astro-fox/front.svg",
  49985. extra: 1792/1623,
  49986. bottom: 28/1820
  49987. }
  49988. },
  49989. back: {
  49990. height: math.unit(7, "feet"),
  49991. name: "Back",
  49992. image: {
  49993. source: "./media/characters/ventus-astro-fox/back.svg",
  49994. extra: 1789/1620,
  49995. bottom: 31/1820
  49996. }
  49997. },
  49998. outfit: {
  49999. height: math.unit(7, "feet"),
  50000. name: "Outfit",
  50001. image: {
  50002. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50003. extra: 1054/925,
  50004. bottom: 15/1069
  50005. }
  50006. },
  50007. head: {
  50008. height: math.unit(1.12, "feet"),
  50009. name: "Head",
  50010. image: {
  50011. source: "./media/characters/ventus-astro-fox/head.svg",
  50012. extra: 866/504,
  50013. bottom: 0/866
  50014. }
  50015. },
  50016. hand: {
  50017. height: math.unit(1, "feet"),
  50018. name: "Hand",
  50019. image: {
  50020. source: "./media/characters/ventus-astro-fox/hand.svg"
  50021. }
  50022. },
  50023. paw: {
  50024. height: math.unit(1.5, "feet"),
  50025. name: "Paw",
  50026. image: {
  50027. source: "./media/characters/ventus-astro-fox/paw.svg"
  50028. }
  50029. },
  50030. },
  50031. [
  50032. {
  50033. name: "Normal",
  50034. height: math.unit(7, "feet"),
  50035. default: true
  50036. },
  50037. {
  50038. name: "Macro",
  50039. height: math.unit(200, "feet")
  50040. },
  50041. {
  50042. name: "Cosmic",
  50043. height: math.unit(3, "universes")
  50044. },
  50045. ]
  50046. ))
  50047. characterMakers.push(() => makeCharacter(
  50048. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50049. {
  50050. front: {
  50051. height: math.unit(3, "meters"),
  50052. weight: math.unit(7000, "lb"),
  50053. name: "Front",
  50054. image: {
  50055. source: "./media/characters/core-t/front.svg",
  50056. extra: 5729/4941,
  50057. bottom: 1129/6858
  50058. }
  50059. },
  50060. },
  50061. [
  50062. {
  50063. name: "Big",
  50064. height: math.unit(3, "meters"),
  50065. default: true
  50066. },
  50067. ]
  50068. ))
  50069. characterMakers.push(() => makeCharacter(
  50070. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50071. {
  50072. normal: {
  50073. height: math.unit(6 + 6/12, "feet"),
  50074. weight: math.unit(275, "lb"),
  50075. name: "Front",
  50076. image: {
  50077. source: "./media/characters/cadbunny/normal.svg",
  50078. extra: 1129/947,
  50079. bottom: 93/1222
  50080. },
  50081. default: true,
  50082. form: "normal"
  50083. },
  50084. gigantamax: {
  50085. height: math.unit(26, "feet"),
  50086. weight: math.unit(16000, "lb"),
  50087. name: "Front",
  50088. image: {
  50089. source: "./media/characters/cadbunny/gigantamax.svg",
  50090. extra: 1133/944,
  50091. bottom: 90/1223
  50092. },
  50093. default: true,
  50094. form: "gigantamax"
  50095. },
  50096. },
  50097. [
  50098. {
  50099. name: "Normal",
  50100. height: math.unit(6 + 6/12, "feet"),
  50101. default: true,
  50102. form: "normal"
  50103. },
  50104. {
  50105. name: "Small",
  50106. height: math.unit(26, "feet"),
  50107. default: true,
  50108. form: "gigantamax"
  50109. },
  50110. {
  50111. name: "Large",
  50112. height: math.unit(78, "feet"),
  50113. form: "gigantamax"
  50114. },
  50115. ],
  50116. {
  50117. "normal": {
  50118. name: "Normal",
  50119. default: true
  50120. },
  50121. "gigantamax": {
  50122. name: "Gigantamax"
  50123. }
  50124. }
  50125. ))
  50126. characterMakers.push(() => makeCharacter(
  50127. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50128. {
  50129. anthroFront: {
  50130. height: math.unit(8, "feet"),
  50131. weight: math.unit(300, "lb"),
  50132. name: "Front",
  50133. image: {
  50134. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50135. extra: 1272/1176,
  50136. bottom: 53/1325
  50137. },
  50138. form: "anthro",
  50139. default: true
  50140. },
  50141. feralSide: {
  50142. height: math.unit(4, "feet"),
  50143. weight: math.unit(250, "lb"),
  50144. name: "Side",
  50145. image: {
  50146. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50147. extra: 731/621,
  50148. bottom: 0/731
  50149. },
  50150. form: "feral",
  50151. default: true
  50152. },
  50153. },
  50154. [
  50155. {
  50156. name: "Regular",
  50157. height: math.unit(8, "feet"),
  50158. form: "anthro"
  50159. },
  50160. {
  50161. name: "Macro",
  50162. height: math.unit(250, "feet"),
  50163. form: "anthro",
  50164. default: true
  50165. },
  50166. {
  50167. name: "Regular",
  50168. height: math.unit(4, "feet"),
  50169. form: "feral"
  50170. },
  50171. {
  50172. name: "Macro",
  50173. height: math.unit(125, "feet"),
  50174. form: "feral",
  50175. default: true
  50176. },
  50177. ],
  50178. {
  50179. "anthro": {
  50180. name: "Anthro",
  50181. default: true
  50182. },
  50183. "feral": {
  50184. name: "Feral",
  50185. },
  50186. }
  50187. ))
  50188. characterMakers.push(() => makeCharacter(
  50189. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50190. {
  50191. front: {
  50192. height: math.unit(11 + 10/12, "feet"),
  50193. weight: math.unit(1587, "kg"),
  50194. name: "Front",
  50195. image: {
  50196. source: "./media/characters/maple-javira-dragon/front.svg",
  50197. extra: 1136/744,
  50198. bottom: 73/1209
  50199. }
  50200. },
  50201. side: {
  50202. height: math.unit(11 + 10/12, "feet"),
  50203. weight: math.unit(1587, "kg"),
  50204. name: "Side",
  50205. image: {
  50206. source: "./media/characters/maple-javira-dragon/side.svg",
  50207. extra: 712/505,
  50208. bottom: 17/729
  50209. }
  50210. },
  50211. head: {
  50212. height: math.unit(8.05, "feet"),
  50213. name: "Head",
  50214. image: {
  50215. source: "./media/characters/maple-javira-dragon/head.svg",
  50216. extra: 1420/1344,
  50217. bottom: 0/1420
  50218. }
  50219. },
  50220. },
  50221. [
  50222. {
  50223. name: "Normal",
  50224. height: math.unit(11 + 10/12, "feet"),
  50225. default: true
  50226. },
  50227. ]
  50228. ))
  50229. characterMakers.push(() => makeCharacter(
  50230. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50231. {
  50232. front: {
  50233. height: math.unit(117, "cm"),
  50234. weight: math.unit(50, "kg"),
  50235. name: "Front",
  50236. image: {
  50237. source: "./media/characters/sonia-wyverntail/front.svg",
  50238. extra: 708/592,
  50239. bottom: 25/733
  50240. }
  50241. },
  50242. },
  50243. [
  50244. {
  50245. name: "Normal",
  50246. height: math.unit(117, "cm"),
  50247. default: true
  50248. },
  50249. ]
  50250. ))
  50251. characterMakers.push(() => makeCharacter(
  50252. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50253. {
  50254. front: {
  50255. height: math.unit(6 + 5/12, "feet"),
  50256. name: "Front",
  50257. image: {
  50258. source: "./media/characters/micah/front.svg",
  50259. extra: 1758/1546,
  50260. bottom: 214/1972
  50261. }
  50262. },
  50263. },
  50264. [
  50265. {
  50266. name: "Normal",
  50267. height: math.unit(6 + 5/12, "feet"),
  50268. default: true
  50269. },
  50270. ]
  50271. ))
  50272. characterMakers.push(() => makeCharacter(
  50273. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50274. {
  50275. front: {
  50276. height: math.unit(5 + 10/12, "feet"),
  50277. weight: math.unit(220, "lb"),
  50278. name: "Front",
  50279. image: {
  50280. source: "./media/characters/zarya/front.svg",
  50281. extra: 593/572,
  50282. bottom: 50/643
  50283. }
  50284. },
  50285. back: {
  50286. height: math.unit(5 + 10/12, "feet"),
  50287. weight: math.unit(220, "lb"),
  50288. name: "Back",
  50289. image: {
  50290. source: "./media/characters/zarya/back.svg",
  50291. extra: 603/582,
  50292. bottom: 38/641
  50293. }
  50294. },
  50295. },
  50296. [
  50297. {
  50298. name: "Normal",
  50299. height: math.unit(5 + 10/12, "feet"),
  50300. default: true
  50301. },
  50302. ]
  50303. ))
  50304. characterMakers.push(() => makeCharacter(
  50305. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50306. {
  50307. front: {
  50308. height: math.unit(7.5, "feet"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/sven-hatisson/front.svg",
  50312. extra: 917/857,
  50313. bottom: 42/959
  50314. }
  50315. },
  50316. back: {
  50317. height: math.unit(7.5, "feet"),
  50318. name: "Back",
  50319. image: {
  50320. source: "./media/characters/sven-hatisson/back.svg",
  50321. extra: 903/856,
  50322. bottom: 15/918
  50323. }
  50324. },
  50325. },
  50326. [
  50327. {
  50328. name: "Base Height",
  50329. height: math.unit(7.5, "feet")
  50330. },
  50331. {
  50332. name: "Usual Height",
  50333. height: math.unit(13.5, "feet"),
  50334. default: true
  50335. },
  50336. {
  50337. name: "Smaller Macro",
  50338. height: math.unit(85, "feet")
  50339. },
  50340. {
  50341. name: "Moderate Macro",
  50342. height: math.unit(320, "feet")
  50343. },
  50344. {
  50345. name: "Large Macro",
  50346. height: math.unit(1000, "feet")
  50347. },
  50348. {
  50349. name: "Largest Size",
  50350. height: math.unit(2, "miles")
  50351. },
  50352. ]
  50353. ))
  50354. characterMakers.push(() => makeCharacter(
  50355. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50356. {
  50357. side: {
  50358. height: math.unit(1.8, "meters"),
  50359. weight: math.unit(275, "kg"),
  50360. name: "Side",
  50361. image: {
  50362. source: "./media/characters/terra/side.svg",
  50363. extra: 1273/1147,
  50364. bottom: 0/1273
  50365. }
  50366. },
  50367. },
  50368. [
  50369. {
  50370. name: "Normal",
  50371. height: math.unit(16.2, "meters"),
  50372. default: true
  50373. },
  50374. ]
  50375. ))
  50376. characterMakers.push(() => makeCharacter(
  50377. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50378. {
  50379. borzoiFront: {
  50380. height: math.unit(6 + 9/12, "feet"),
  50381. name: "Front",
  50382. image: {
  50383. source: "./media/characters/rae/borzoi-front.svg",
  50384. extra: 1161/1098,
  50385. bottom: 31/1192
  50386. },
  50387. form: "borzoi",
  50388. default: true
  50389. },
  50390. werewolfFront: {
  50391. height: math.unit(8 + 7/12, "feet"),
  50392. name: "Front",
  50393. image: {
  50394. source: "./media/characters/rae/werewolf-front.svg",
  50395. extra: 1411/1334,
  50396. bottom: 127/1538
  50397. },
  50398. form: "werewolf",
  50399. default: true
  50400. },
  50401. },
  50402. [
  50403. {
  50404. name: "Normal",
  50405. height: math.unit(6 + 9/12, "feet"),
  50406. default: true,
  50407. form: "borzoi"
  50408. },
  50409. {
  50410. name: "Normal",
  50411. height: math.unit(8 + 7/12, "feet"),
  50412. default: true,
  50413. form: "werewolf"
  50414. },
  50415. ],
  50416. {
  50417. "borzoi": {
  50418. name: "Borzoi",
  50419. default: true
  50420. },
  50421. "werewolf": {
  50422. name: "Werewolf",
  50423. },
  50424. }
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50428. {
  50429. front: {
  50430. height: math.unit(8 + 7/12, "feet"),
  50431. weight: math.unit(482, "lb"),
  50432. name: "Front",
  50433. image: {
  50434. source: "./media/characters/kit/front.svg",
  50435. extra: 1247/1103,
  50436. bottom: 41/1288
  50437. }
  50438. },
  50439. back: {
  50440. height: math.unit(8 + 7/12, "feet"),
  50441. weight: math.unit(482, "lb"),
  50442. name: "Back",
  50443. image: {
  50444. source: "./media/characters/kit/back.svg",
  50445. extra: 1252/1123,
  50446. bottom: 21/1273
  50447. }
  50448. },
  50449. paw: {
  50450. height: math.unit(1.46, "feet"),
  50451. name: "Paw",
  50452. image: {
  50453. source: "./media/characters/kit/paw.svg"
  50454. }
  50455. },
  50456. },
  50457. [
  50458. {
  50459. name: "Normal",
  50460. height: math.unit(8 + 7/12, "feet"),
  50461. default: true
  50462. },
  50463. {
  50464. name: "Tall",
  50465. height: math.unit(7.8, "meters")
  50466. },
  50467. {
  50468. name: "Very Tall",
  50469. height: math.unit(17.9, "meters")
  50470. },
  50471. {
  50472. name: "Semi-Macro",
  50473. height: math.unit(45.8, "meters")
  50474. },
  50475. {
  50476. name: "Macro",
  50477. height: math.unit(86.1, "meters")
  50478. },
  50479. {
  50480. name: "Godlike",
  50481. height: math.unit(749.9, "meters")
  50482. },
  50483. {
  50484. name: "Second Form",
  50485. height: math.unit(92183.9, "meters")
  50486. },
  50487. {
  50488. name: "Third Form",
  50489. height: math.unit(164665.7, "meters")
  50490. },
  50491. {
  50492. name: "Fourth Form",
  50493. height: math.unit(745112.2, "meters")
  50494. },
  50495. {
  50496. name: "Final Form",
  50497. height: math.unit(9.14e144, "meters")
  50498. },
  50499. ]
  50500. ))
  50501. characterMakers.push(() => makeCharacter(
  50502. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50503. {
  50504. side: {
  50505. height: math.unit(0.6, "meters"),
  50506. weight: math.unit(24, "kg"),
  50507. name: "Side",
  50508. image: {
  50509. source: "./media/characters/celeste/side.svg",
  50510. extra: 810/517,
  50511. bottom: 53/863
  50512. }
  50513. },
  50514. },
  50515. [
  50516. {
  50517. name: "Velociraptor",
  50518. height: math.unit(0.6, "meters"),
  50519. default: true
  50520. },
  50521. {
  50522. name: "Utahraptor",
  50523. height: math.unit(1.8, "meters")
  50524. },
  50525. {
  50526. name: "Gallimimus",
  50527. height: math.unit(4.0, "meters")
  50528. },
  50529. {
  50530. name: "Large",
  50531. height: math.unit(20, "meters")
  50532. },
  50533. {
  50534. name: "Planetary",
  50535. height: math.unit(50, "megameters")
  50536. },
  50537. {
  50538. name: "Stellar",
  50539. height: math.unit(1.5, "gigameters")
  50540. },
  50541. {
  50542. name: "Galactic",
  50543. height: math.unit(100, "exameters")
  50544. },
  50545. ]
  50546. ))
  50547. characterMakers.push(() => makeCharacter(
  50548. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50549. {
  50550. front: {
  50551. height: math.unit(6, "feet"),
  50552. weight: math.unit(210, "lb"),
  50553. name: "Front",
  50554. image: {
  50555. source: "./media/characters/glacia/front.svg",
  50556. extra: 958/901,
  50557. bottom: 45/1003
  50558. }
  50559. },
  50560. },
  50561. [
  50562. {
  50563. name: "Macro",
  50564. height: math.unit(1000, "meters"),
  50565. default: true
  50566. },
  50567. ]
  50568. ))
  50569. characterMakers.push(() => makeCharacter(
  50570. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50571. {
  50572. front: {
  50573. height: math.unit(4, "meters"),
  50574. name: "Front",
  50575. image: {
  50576. source: "./media/characters/giri/front.svg",
  50577. extra: 966/894,
  50578. bottom: 21/987
  50579. }
  50580. },
  50581. },
  50582. [
  50583. {
  50584. name: "Normal",
  50585. height: math.unit(4, "meters"),
  50586. default: true
  50587. },
  50588. ]
  50589. ))
  50590. characterMakers.push(() => makeCharacter(
  50591. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50592. {
  50593. back: {
  50594. height: math.unit(4, "feet"),
  50595. weight: math.unit(37, "lb"),
  50596. name: "Back",
  50597. image: {
  50598. source: "./media/characters/tin/back.svg",
  50599. extra: 845/780,
  50600. bottom: 28/873
  50601. }
  50602. },
  50603. },
  50604. [
  50605. {
  50606. name: "Normal",
  50607. height: math.unit(4, "feet"),
  50608. default: true
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50614. {
  50615. front: {
  50616. height: math.unit(25, "feet"),
  50617. name: "Front",
  50618. image: {
  50619. source: "./media/characters/cadenza-vivace/front.svg",
  50620. extra: 1842/1578,
  50621. bottom: 30/1872
  50622. }
  50623. },
  50624. },
  50625. [
  50626. {
  50627. name: "Macro",
  50628. height: math.unit(25, "feet"),
  50629. default: true
  50630. },
  50631. ]
  50632. ))
  50633. characterMakers.push(() => makeCharacter(
  50634. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50635. {
  50636. front: {
  50637. height: math.unit(10, "feet"),
  50638. weight: math.unit(625, "kg"),
  50639. name: "Front",
  50640. image: {
  50641. source: "./media/characters/zain/front.svg",
  50642. extra: 1682/1498,
  50643. bottom: 223/1905
  50644. }
  50645. },
  50646. back: {
  50647. height: math.unit(10, "feet"),
  50648. weight: math.unit(625, "kg"),
  50649. name: "Back",
  50650. image: {
  50651. source: "./media/characters/zain/back.svg",
  50652. extra: 1814/1657,
  50653. bottom: 152/1966
  50654. }
  50655. },
  50656. head: {
  50657. height: math.unit(10, "feet"),
  50658. weight: math.unit(625, "kg"),
  50659. name: "Head",
  50660. image: {
  50661. source: "./media/characters/zain/head.svg",
  50662. extra: 1059/762,
  50663. bottom: 0/1059
  50664. }
  50665. },
  50666. },
  50667. [
  50668. {
  50669. name: "Normal",
  50670. height: math.unit(10, "feet"),
  50671. default: true
  50672. },
  50673. ]
  50674. ))
  50675. characterMakers.push(() => makeCharacter(
  50676. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50677. {
  50678. front: {
  50679. height: math.unit(6 + 5/12, "feet"),
  50680. weight: math.unit(750, "lb"),
  50681. name: "Front",
  50682. image: {
  50683. source: "./media/characters/ruchex/front.svg",
  50684. extra: 877/820,
  50685. bottom: 17/894
  50686. },
  50687. extraAttributes: {
  50688. "width": {
  50689. name: "Width",
  50690. power: 1,
  50691. type: "length",
  50692. base: math.unit(4.757, "feet")
  50693. },
  50694. }
  50695. },
  50696. },
  50697. [
  50698. {
  50699. name: "Normal",
  50700. height: math.unit(6 + 5/12, "feet"),
  50701. default: true
  50702. },
  50703. ]
  50704. ))
  50705. characterMakers.push(() => makeCharacter(
  50706. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50707. {
  50708. dressedFront: {
  50709. height: math.unit(191, "cm"),
  50710. weight: math.unit(80, "kg"),
  50711. name: "Front",
  50712. image: {
  50713. source: "./media/characters/buster/dressed-front.svg",
  50714. extra: 1022/973,
  50715. bottom: 69/1091
  50716. }
  50717. },
  50718. dressedBack: {
  50719. height: math.unit(191, "cm"),
  50720. weight: math.unit(80, "kg"),
  50721. name: "Back",
  50722. image: {
  50723. source: "./media/characters/buster/dressed-back.svg",
  50724. extra: 1018/970,
  50725. bottom: 55/1073
  50726. }
  50727. },
  50728. nudeFront: {
  50729. height: math.unit(191, "cm"),
  50730. weight: math.unit(80, "kg"),
  50731. name: "Front (Nude)",
  50732. image: {
  50733. source: "./media/characters/buster/nude-front.svg",
  50734. extra: 1022/973,
  50735. bottom: 69/1091
  50736. }
  50737. },
  50738. nudeBack: {
  50739. height: math.unit(191, "cm"),
  50740. weight: math.unit(80, "kg"),
  50741. name: "Back (Nude)",
  50742. image: {
  50743. source: "./media/characters/buster/nude-back.svg",
  50744. extra: 1018/970,
  50745. bottom: 55/1073
  50746. }
  50747. },
  50748. dick: {
  50749. height: math.unit(2.59, "feet"),
  50750. name: "Dick",
  50751. image: {
  50752. source: "./media/characters/buster/dick.svg"
  50753. }
  50754. },
  50755. ass: {
  50756. height: math.unit(1.2, "feet"),
  50757. name: "Ass",
  50758. image: {
  50759. source: "./media/characters/buster/ass.svg"
  50760. }
  50761. },
  50762. },
  50763. [
  50764. {
  50765. name: "Normal",
  50766. height: math.unit(191, "cm"),
  50767. default: true
  50768. },
  50769. ]
  50770. ))
  50771. //characters
  50772. function makeCharacters() {
  50773. const results = [];
  50774. characterMakers.forEach(character => {
  50775. results.push(character());
  50776. });
  50777. return results;
  50778. }