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.
 
 
 

53555 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. "corvid"
  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. "passerine"
  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: ["bird-of-prey"]
  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: ["bird-of-prey"]
  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. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. }
  2047. //species
  2048. function getSpeciesInfo(speciesList) {
  2049. let result = new Set();
  2050. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2051. result.add(entry)
  2052. });
  2053. return Array.from(result);
  2054. };
  2055. function getSpeciesInfoHelper(species) {
  2056. if (!speciesData[species]) {
  2057. console.warn(species + " doesn't exist");
  2058. return [];
  2059. }
  2060. if (speciesData[species].parents) {
  2061. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2062. } else {
  2063. return [species];
  2064. }
  2065. }
  2066. characterMakers.push(() => makeCharacter(
  2067. {
  2068. name: "Fen",
  2069. species: ["crux"],
  2070. description: {
  2071. title: "Bio",
  2072. text: "Very furry. Sheds on everything."
  2073. },
  2074. tags: [
  2075. "anthro",
  2076. "goo"
  2077. ]
  2078. },
  2079. {
  2080. front: {
  2081. height: math.unit(12, "feet"),
  2082. weight: math.unit(2400, "lb"),
  2083. name: "Front",
  2084. image: {
  2085. source: "./media/characters/fen/front.svg",
  2086. extra: 1804/1562,
  2087. bottom: 205/2009
  2088. },
  2089. extraAttributes: {
  2090. pawSize: {
  2091. name: "Paw Size",
  2092. power: 2,
  2093. type: "area",
  2094. base: math.unit(0.35, "m^2")
  2095. }
  2096. }
  2097. },
  2098. diving: {
  2099. height: math.unit(4.9, "meters"),
  2100. weight: math.unit(2400, "lb"),
  2101. name: "Diving",
  2102. image: {
  2103. source: "./media/characters/fen/diving.svg"
  2104. }
  2105. },
  2106. goo: {
  2107. height: math.unit(12, "feet"),
  2108. weight: math.unit(3600, "lb"),
  2109. volume: math.unit(1000, "liters"),
  2110. preyCapacity: math.unit(6, "people"),
  2111. name: "Goo",
  2112. image: {
  2113. source: "./media/characters/fen/goo.svg",
  2114. extra: 1307/1071,
  2115. bottom: 134/1441
  2116. }
  2117. },
  2118. gooNsfw: {
  2119. height: math.unit(12, "feet"),
  2120. weight: math.unit(3750, "lb"),
  2121. volume: math.unit(1000, "liters"),
  2122. preyCapacity: math.unit(6, "people"),
  2123. name: "Goo (NSFW)",
  2124. image: {
  2125. source: "./media/characters/fen/goo-nsfw.svg",
  2126. extra: 1875/1734,
  2127. bottom: 122/1997
  2128. }
  2129. },
  2130. maw: {
  2131. height: math.unit(5.03, "feet"),
  2132. name: "Maw",
  2133. image: {
  2134. source: "./media/characters/fen/maw.svg"
  2135. }
  2136. },
  2137. gooCeiling: {
  2138. height: math.unit(6.6, "feet"),
  2139. weight: math.unit(3000, "lb"),
  2140. volume: math.unit(1000, "liters"),
  2141. preyCapacity: math.unit(6, "people"),
  2142. name: "Goo (Ceiling)",
  2143. image: {
  2144. source: "./media/characters/fen/goo-ceiling.svg"
  2145. }
  2146. },
  2147. paw: {
  2148. height: math.unit(3.77, "feet"),
  2149. name: "Paw",
  2150. image: {
  2151. source: "./media/characters/fen/paw.svg"
  2152. },
  2153. extraAttributes: {
  2154. "toeSize": {
  2155. name: "Toe Size",
  2156. power: 2,
  2157. type: "area",
  2158. base: math.unit(0.02875, "m^2")
  2159. },
  2160. "pawSize": {
  2161. name: "Paw Size",
  2162. power: 2,
  2163. type: "area",
  2164. base: math.unit(0.378, "m^2")
  2165. },
  2166. }
  2167. },
  2168. tail: {
  2169. height: math.unit(12.1, "feet"),
  2170. name: "Tail",
  2171. image: {
  2172. source: "./media/characters/fen/tail.svg"
  2173. }
  2174. },
  2175. tailFull: {
  2176. height: math.unit(12.1, "feet"),
  2177. name: "Full Tail",
  2178. image: {
  2179. source: "./media/characters/fen/tail-full.svg"
  2180. }
  2181. },
  2182. back: {
  2183. height: math.unit(12, "feet"),
  2184. weight: math.unit(2400, "lb"),
  2185. name: "Back",
  2186. image: {
  2187. source: "./media/characters/fen/back.svg",
  2188. },
  2189. info: {
  2190. description: {
  2191. mode: "append",
  2192. text: "\n\nHe is not currently looking at you."
  2193. }
  2194. }
  2195. },
  2196. full: {
  2197. height: math.unit(1.85, "meter"),
  2198. weight: math.unit(3200, "lb"),
  2199. name: "Full",
  2200. image: {
  2201. source: "./media/characters/fen/full.svg",
  2202. extra: 1133/859,
  2203. bottom: 145/1278
  2204. },
  2205. info: {
  2206. description: {
  2207. mode: "append",
  2208. text: "\n\nMunch."
  2209. }
  2210. }
  2211. },
  2212. gooLounging: {
  2213. height: math.unit(4.53, "feet"),
  2214. weight: math.unit(3000, "lb"),
  2215. preyCapacity: math.unit(6, "people"),
  2216. name: "Goo (Lounging)",
  2217. image: {
  2218. source: "./media/characters/fen/goo-lounging.svg",
  2219. bottom: 116 / 613
  2220. }
  2221. },
  2222. lounging: {
  2223. height: math.unit(10.52, "feet"),
  2224. weight: math.unit(2400, "lb"),
  2225. name: "Lounging",
  2226. image: {
  2227. source: "./media/characters/fen/lounging.svg"
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Small",
  2234. height: math.unit(2.2428, "meter")
  2235. },
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(12, "feet"),
  2239. default: true,
  2240. },
  2241. {
  2242. name: "Big",
  2243. height: math.unit(20, "feet")
  2244. },
  2245. {
  2246. name: "Minimacro",
  2247. height: math.unit(40, "feet"),
  2248. info: {
  2249. description: {
  2250. mode: "append",
  2251. text: "\n\nTOO DAMN BIG"
  2252. }
  2253. }
  2254. },
  2255. {
  2256. name: "Macro",
  2257. height: math.unit(100, "feet"),
  2258. info: {
  2259. description: {
  2260. mode: "append",
  2261. text: "\n\nTOO DAMN BIG"
  2262. }
  2263. }
  2264. },
  2265. {
  2266. name: "Megamacro",
  2267. height: math.unit(2, "miles")
  2268. },
  2269. {
  2270. name: "Gigamacro",
  2271. height: math.unit(10, "earths")
  2272. },
  2273. ]
  2274. ))
  2275. characterMakers.push(() => makeCharacter(
  2276. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2277. {
  2278. front: {
  2279. height: math.unit(183, "cm"),
  2280. weight: math.unit(80, "kg"),
  2281. name: "Front",
  2282. image: {
  2283. source: "./media/characters/sofia-fluttertail/front.svg",
  2284. bottom: 0.01,
  2285. extra: 2154 / 2081
  2286. }
  2287. },
  2288. frontAlt: {
  2289. height: math.unit(183, "cm"),
  2290. weight: math.unit(80, "kg"),
  2291. name: "Front (alt)",
  2292. image: {
  2293. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2294. }
  2295. },
  2296. back: {
  2297. height: math.unit(183, "cm"),
  2298. weight: math.unit(80, "kg"),
  2299. name: "Back",
  2300. image: {
  2301. source: "./media/characters/sofia-fluttertail/back.svg"
  2302. }
  2303. },
  2304. kneeling: {
  2305. height: math.unit(125, "cm"),
  2306. weight: math.unit(80, "kg"),
  2307. name: "Kneeling",
  2308. image: {
  2309. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2310. extra: 1033 / 977,
  2311. bottom: 23.7 / 1057
  2312. }
  2313. },
  2314. maw: {
  2315. height: math.unit(183 / 5, "cm"),
  2316. name: "Maw",
  2317. image: {
  2318. source: "./media/characters/sofia-fluttertail/maw.svg"
  2319. }
  2320. },
  2321. mawcloseup: {
  2322. height: math.unit(183 / 5 * 0.41, "cm"),
  2323. name: "Maw (Closeup)",
  2324. image: {
  2325. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2326. }
  2327. },
  2328. paws: {
  2329. height: math.unit(1.17, "feet"),
  2330. name: "Paws",
  2331. image: {
  2332. source: "./media/characters/sofia-fluttertail/paws.svg",
  2333. extra: 851 / 851,
  2334. bottom: 17 / 868
  2335. }
  2336. },
  2337. },
  2338. [
  2339. {
  2340. name: "Normal",
  2341. height: math.unit(1.83, "meter")
  2342. },
  2343. {
  2344. name: "Size Thief",
  2345. height: math.unit(18, "feet")
  2346. },
  2347. {
  2348. name: "50 Foot Collie",
  2349. height: math.unit(50, "feet")
  2350. },
  2351. {
  2352. name: "Macro",
  2353. height: math.unit(96, "feet"),
  2354. default: true
  2355. },
  2356. {
  2357. name: "Megamerger",
  2358. height: math.unit(650, "feet")
  2359. },
  2360. ]
  2361. ))
  2362. characterMakers.push(() => makeCharacter(
  2363. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2364. {
  2365. front: {
  2366. height: math.unit(7, "feet"),
  2367. weight: math.unit(100, "kg"),
  2368. name: "Front",
  2369. image: {
  2370. source: "./media/characters/march/front.svg",
  2371. extra: 1992/1851,
  2372. bottom: 39/2031
  2373. }
  2374. },
  2375. foot: {
  2376. height: math.unit(0.9, "feet"),
  2377. name: "Foot",
  2378. image: {
  2379. source: "./media/characters/march/foot.svg"
  2380. }
  2381. },
  2382. },
  2383. [
  2384. {
  2385. name: "Normal",
  2386. height: math.unit(7.9, "feet")
  2387. },
  2388. {
  2389. name: "Macro",
  2390. height: math.unit(220, "meters")
  2391. },
  2392. {
  2393. name: "Megamacro",
  2394. height: math.unit(2.98, "km"),
  2395. default: true
  2396. },
  2397. {
  2398. name: "Gigamacro",
  2399. height: math.unit(15963, "km")
  2400. },
  2401. {
  2402. name: "Teramacro",
  2403. height: math.unit(2980000000, "km")
  2404. },
  2405. {
  2406. name: "Examacro",
  2407. height: math.unit(250, "parsecs")
  2408. },
  2409. ]
  2410. ))
  2411. characterMakers.push(() => makeCharacter(
  2412. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2413. {
  2414. front: {
  2415. height: math.unit(6, "feet"),
  2416. weight: math.unit(60, "kg"),
  2417. name: "Front",
  2418. image: {
  2419. source: "./media/characters/noir/front.svg",
  2420. extra: 1,
  2421. bottom: 0.032
  2422. }
  2423. },
  2424. },
  2425. [
  2426. {
  2427. name: "Normal",
  2428. height: math.unit(6.6, "feet")
  2429. },
  2430. {
  2431. name: "Macro",
  2432. height: math.unit(500, "feet")
  2433. },
  2434. {
  2435. name: "Megamacro",
  2436. height: math.unit(2.5, "km"),
  2437. default: true
  2438. },
  2439. {
  2440. name: "Gigamacro",
  2441. height: math.unit(22500, "km")
  2442. },
  2443. {
  2444. name: "Teramacro",
  2445. height: math.unit(2500000000, "km")
  2446. },
  2447. {
  2448. name: "Examacro",
  2449. height: math.unit(200, "parsecs")
  2450. },
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2455. {
  2456. front: {
  2457. height: math.unit(7, "feet"),
  2458. weight: math.unit(100, "kg"),
  2459. name: "Front",
  2460. image: {
  2461. source: "./media/characters/okuri/front.svg",
  2462. extra: 739/665,
  2463. bottom: 39/778
  2464. }
  2465. },
  2466. back: {
  2467. height: math.unit(7, "feet"),
  2468. weight: math.unit(100, "kg"),
  2469. name: "Back",
  2470. image: {
  2471. source: "./media/characters/okuri/back.svg",
  2472. extra: 734/653,
  2473. bottom: 13/747
  2474. }
  2475. },
  2476. sitting: {
  2477. height: math.unit(2.95, "feet"),
  2478. weight: math.unit(100, "kg"),
  2479. name: "Sitting",
  2480. image: {
  2481. source: "./media/characters/okuri/sitting.svg",
  2482. extra: 370/318,
  2483. bottom: 99/469
  2484. }
  2485. },
  2486. },
  2487. [
  2488. {
  2489. name: "Smallest",
  2490. height: math.unit(5 + 2/12, "feet")
  2491. },
  2492. {
  2493. name: "Smaller",
  2494. height: math.unit(300, "feet")
  2495. },
  2496. {
  2497. name: "Small",
  2498. height: math.unit(1000, "feet")
  2499. },
  2500. {
  2501. name: "Macro",
  2502. height: math.unit(1, "mile")
  2503. },
  2504. {
  2505. name: "Mega Macro (Small)",
  2506. height: math.unit(20, "km")
  2507. },
  2508. {
  2509. name: "Mega Macro (Large)",
  2510. height: math.unit(600, "km")
  2511. },
  2512. {
  2513. name: "Giga Macro",
  2514. height: math.unit(10000, "km")
  2515. },
  2516. {
  2517. name: "Normal",
  2518. height: math.unit(577560, "km"),
  2519. default: true
  2520. },
  2521. {
  2522. name: "Large",
  2523. height: math.unit(4, "galaxies")
  2524. },
  2525. {
  2526. name: "Largest",
  2527. height: math.unit(15, "multiverses")
  2528. },
  2529. ]
  2530. ))
  2531. characterMakers.push(() => makeCharacter(
  2532. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2533. {
  2534. front: {
  2535. height: math.unit(7, "feet"),
  2536. weight: math.unit(100, "kg"),
  2537. name: "Front",
  2538. image: {
  2539. source: "./media/characters/manny/front.svg",
  2540. extra: 1,
  2541. bottom: 0.06
  2542. }
  2543. },
  2544. back: {
  2545. height: math.unit(7, "feet"),
  2546. weight: math.unit(100, "kg"),
  2547. name: "Back",
  2548. image: {
  2549. source: "./media/characters/manny/back.svg",
  2550. extra: 1,
  2551. bottom: 0.014
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Normal",
  2558. height: math.unit(7, "feet"),
  2559. },
  2560. {
  2561. name: "Macro",
  2562. height: math.unit(78, "feet"),
  2563. default: true
  2564. },
  2565. {
  2566. name: "Macro+",
  2567. height: math.unit(300, "meters")
  2568. },
  2569. {
  2570. name: "Macro++",
  2571. height: math.unit(2400, "meters")
  2572. },
  2573. {
  2574. name: "Megamacro",
  2575. height: math.unit(5167, "meters")
  2576. },
  2577. {
  2578. name: "Gigamacro",
  2579. height: math.unit(41769, "miles")
  2580. },
  2581. ]
  2582. ))
  2583. characterMakers.push(() => makeCharacter(
  2584. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2585. {
  2586. front: {
  2587. height: math.unit(7, "feet"),
  2588. weight: math.unit(100, "kg"),
  2589. name: "Front",
  2590. image: {
  2591. source: "./media/characters/adake/front-1.svg"
  2592. }
  2593. },
  2594. frontAlt: {
  2595. height: math.unit(7, "feet"),
  2596. weight: math.unit(100, "kg"),
  2597. name: "Front (Alt)",
  2598. image: {
  2599. source: "./media/characters/adake/front-2.svg",
  2600. extra: 1,
  2601. bottom: 0.01
  2602. }
  2603. },
  2604. back: {
  2605. height: math.unit(7, "feet"),
  2606. weight: math.unit(100, "kg"),
  2607. name: "Back",
  2608. image: {
  2609. source: "./media/characters/adake/back.svg",
  2610. }
  2611. },
  2612. kneel: {
  2613. height: math.unit(5.385, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Kneeling",
  2616. image: {
  2617. source: "./media/characters/adake/kneel.svg",
  2618. bottom: 0.052
  2619. }
  2620. },
  2621. },
  2622. [
  2623. {
  2624. name: "Normal",
  2625. height: math.unit(7, "feet"),
  2626. },
  2627. {
  2628. name: "Macro",
  2629. height: math.unit(78, "feet"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Macro+",
  2634. height: math.unit(300, "meters")
  2635. },
  2636. {
  2637. name: "Macro++",
  2638. height: math.unit(2400, "meters")
  2639. },
  2640. {
  2641. name: "Megamacro",
  2642. height: math.unit(5167, "meters")
  2643. },
  2644. {
  2645. name: "Gigamacro",
  2646. height: math.unit(41769, "miles")
  2647. },
  2648. ]
  2649. ))
  2650. characterMakers.push(() => makeCharacter(
  2651. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2652. {
  2653. front: {
  2654. height: math.unit(1.65, "meters"),
  2655. weight: math.unit(50, "kg"),
  2656. name: "Front",
  2657. image: {
  2658. source: "./media/characters/elijah/front.svg",
  2659. extra: 858 / 830,
  2660. bottom: 95.5 / 953.8559
  2661. }
  2662. },
  2663. back: {
  2664. height: math.unit(1.65, "meters"),
  2665. weight: math.unit(50, "kg"),
  2666. name: "Back",
  2667. image: {
  2668. source: "./media/characters/elijah/back.svg",
  2669. extra: 895 / 850,
  2670. bottom: 5.3 / 897.956
  2671. }
  2672. },
  2673. frontNsfw: {
  2674. height: math.unit(1.65, "meters"),
  2675. weight: math.unit(50, "kg"),
  2676. name: "Front (NSFW)",
  2677. image: {
  2678. source: "./media/characters/elijah/front-nsfw.svg",
  2679. extra: 858 / 830,
  2680. bottom: 95.5 / 953.8559
  2681. }
  2682. },
  2683. backNsfw: {
  2684. height: math.unit(1.65, "meters"),
  2685. weight: math.unit(50, "kg"),
  2686. name: "Back (NSFW)",
  2687. image: {
  2688. source: "./media/characters/elijah/back-nsfw.svg",
  2689. extra: 895 / 850,
  2690. bottom: 5.3 / 897.956
  2691. }
  2692. },
  2693. dick: {
  2694. height: math.unit(1, "feet"),
  2695. name: "Dick",
  2696. image: {
  2697. source: "./media/characters/elijah/dick.svg"
  2698. }
  2699. },
  2700. beakOpen: {
  2701. height: math.unit(1.25, "feet"),
  2702. name: "Beak (Open)",
  2703. image: {
  2704. source: "./media/characters/elijah/beak-open.svg"
  2705. }
  2706. },
  2707. beakShut: {
  2708. height: math.unit(1.25, "feet"),
  2709. name: "Beak (Shut)",
  2710. image: {
  2711. source: "./media/characters/elijah/beak-shut.svg"
  2712. }
  2713. },
  2714. footFlexing: {
  2715. height: math.unit(1.61, "feet"),
  2716. name: "Foot (Flexing)",
  2717. image: {
  2718. source: "./media/characters/elijah/foot-flexing.svg"
  2719. }
  2720. },
  2721. footStepping: {
  2722. height: math.unit(1.44, "feet"),
  2723. name: "Foot (Stepping)",
  2724. image: {
  2725. source: "./media/characters/elijah/foot-stepping.svg"
  2726. }
  2727. },
  2728. plantigradeLeg: {
  2729. height: math.unit(2.34, "feet"),
  2730. name: "Plantigrade Leg",
  2731. image: {
  2732. source: "./media/characters/elijah/plantigrade-leg.svg"
  2733. }
  2734. },
  2735. plantigradeFootLeft: {
  2736. height: math.unit(0.9, "feet"),
  2737. name: "Plantigrade Foot (Left)",
  2738. image: {
  2739. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2740. }
  2741. },
  2742. plantigradeFootRight: {
  2743. height: math.unit(0.9, "feet"),
  2744. name: "Plantigrade Foot (Right)",
  2745. image: {
  2746. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(1.65, "meters")
  2754. },
  2755. {
  2756. name: "Macro",
  2757. height: math.unit(55, "meters"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Macro+",
  2762. height: math.unit(105, "meters")
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2768. {
  2769. front: {
  2770. height: math.unit(7 + 2/12, "feet"),
  2771. weight: math.unit(320, "kg"),
  2772. name: "Front",
  2773. image: {
  2774. source: "./media/characters/rai/front.svg",
  2775. extra: 1802/1696,
  2776. bottom: 68/1870
  2777. }
  2778. },
  2779. frontDressed: {
  2780. height: math.unit(7 + 2/12, "feet"),
  2781. weight: math.unit(320, "kg"),
  2782. name: "Front (Dressed)",
  2783. image: {
  2784. source: "./media/characters/rai/front-dressed.svg",
  2785. extra: 1802/1696,
  2786. bottom: 68/1870
  2787. }
  2788. },
  2789. side: {
  2790. height: math.unit(7 + 2/12, "feet"),
  2791. weight: math.unit(320, "kg"),
  2792. name: "Side",
  2793. image: {
  2794. source: "./media/characters/rai/side.svg",
  2795. extra: 1789/1710,
  2796. bottom: 115/1904
  2797. }
  2798. },
  2799. back: {
  2800. height: math.unit(7 + 2/12, "feet"),
  2801. weight: math.unit(320, "kg"),
  2802. name: "Back",
  2803. image: {
  2804. source: "./media/characters/rai/back.svg",
  2805. extra: 1770/1707,
  2806. bottom: 28/1798
  2807. }
  2808. },
  2809. feral: {
  2810. height: math.unit(9.5, "feet"),
  2811. weight: math.unit(640, "kg"),
  2812. name: "Feral",
  2813. image: {
  2814. source: "./media/characters/rai/feral.svg",
  2815. extra: 945/553,
  2816. bottom: 176/1121
  2817. }
  2818. },
  2819. dragon: {
  2820. height: math.unit(23, "feet"),
  2821. weight: math.unit(50000, "lb"),
  2822. name: "Dragon",
  2823. image: {
  2824. source: "./media/characters/rai/dragon.svg",
  2825. extra: 2498 / 2030,
  2826. bottom: 85.2 / 2584
  2827. }
  2828. },
  2829. maw: {
  2830. height: math.unit(1.69, "feet"),
  2831. name: "Maw",
  2832. image: {
  2833. source: "./media/characters/rai/maw.svg"
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(7 + 2/12, "feet")
  2841. },
  2842. {
  2843. name: "Big",
  2844. height: math.unit(11, "feet")
  2845. },
  2846. {
  2847. name: "Macro",
  2848. height: math.unit(302, "feet"),
  2849. default: true
  2850. },
  2851. ]
  2852. ))
  2853. characterMakers.push(() => makeCharacter(
  2854. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2855. {
  2856. frontDressed: {
  2857. height: math.unit(216, "feet"),
  2858. weight: math.unit(7000000, "lb"),
  2859. name: "Front (Dressed)",
  2860. image: {
  2861. source: "./media/characters/jazzy/front-dressed.svg",
  2862. extra: 2738 / 2651,
  2863. bottom: 41.8 / 2786
  2864. }
  2865. },
  2866. backDressed: {
  2867. height: math.unit(216, "feet"),
  2868. weight: math.unit(7000000, "lb"),
  2869. name: "Back (Dressed)",
  2870. image: {
  2871. source: "./media/characters/jazzy/back-dressed.svg",
  2872. extra: 2775 / 2673,
  2873. bottom: 36.8 / 2817
  2874. }
  2875. },
  2876. front: {
  2877. height: math.unit(216, "feet"),
  2878. weight: math.unit(7000000, "lb"),
  2879. name: "Front",
  2880. image: {
  2881. source: "./media/characters/jazzy/front.svg",
  2882. extra: 2738 / 2651,
  2883. bottom: 41.8 / 2786
  2884. }
  2885. },
  2886. back: {
  2887. height: math.unit(216, "feet"),
  2888. weight: math.unit(7000000, "lb"),
  2889. name: "Back",
  2890. image: {
  2891. source: "./media/characters/jazzy/back.svg",
  2892. extra: 2775 / 2673,
  2893. bottom: 36.8 / 2817
  2894. }
  2895. },
  2896. maw: {
  2897. height: math.unit(20, "feet"),
  2898. name: "Maw",
  2899. image: {
  2900. source: "./media/characters/jazzy/maw.svg"
  2901. }
  2902. },
  2903. paws: {
  2904. height: math.unit(27.5, "feet"),
  2905. name: "Paws",
  2906. image: {
  2907. source: "./media/characters/jazzy/paws.svg"
  2908. }
  2909. },
  2910. eye: {
  2911. height: math.unit(4.4, "feet"),
  2912. name: "Eye",
  2913. image: {
  2914. source: "./media/characters/jazzy/eye.svg"
  2915. }
  2916. },
  2917. droneOffense: {
  2918. height: math.unit(9.5, "inches"),
  2919. name: "Drone (Offense)",
  2920. image: {
  2921. source: "./media/characters/jazzy/drone-offense.svg"
  2922. }
  2923. },
  2924. droneRecon: {
  2925. height: math.unit(9.5, "inches"),
  2926. name: "Drone (Recon)",
  2927. image: {
  2928. source: "./media/characters/jazzy/drone-recon.svg"
  2929. }
  2930. },
  2931. droneDefense: {
  2932. height: math.unit(9.5, "inches"),
  2933. name: "Drone (Defense)",
  2934. image: {
  2935. source: "./media/characters/jazzy/drone-defense.svg"
  2936. }
  2937. },
  2938. },
  2939. [
  2940. {
  2941. name: "Macro",
  2942. height: math.unit(216, "feet"),
  2943. default: true
  2944. },
  2945. ]
  2946. ))
  2947. characterMakers.push(() => makeCharacter(
  2948. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2949. {
  2950. front: {
  2951. height: math.unit(9 + 6/12, "feet"),
  2952. weight: math.unit(700, "lb"),
  2953. name: "Front",
  2954. image: {
  2955. source: "./media/characters/flamm/front.svg",
  2956. extra: 1751/1632,
  2957. bottom: 46/1797
  2958. }
  2959. },
  2960. buff: {
  2961. height: math.unit(9 + 6/12, "feet"),
  2962. weight: math.unit(950, "lb"),
  2963. name: "Buff",
  2964. image: {
  2965. source: "./media/characters/flamm/buff.svg",
  2966. extra: 3018/2874,
  2967. bottom: 221/3239
  2968. }
  2969. },
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(9.5, "feet")
  2975. },
  2976. {
  2977. name: "Macro",
  2978. height: math.unit(200, "feet"),
  2979. default: true
  2980. },
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(5 + 3/12, "feet"),
  2988. weight: math.unit(60, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/zephiro/front.svg",
  2992. extra: 2309 / 2162,
  2993. bottom: 0.069
  2994. }
  2995. },
  2996. side: {
  2997. height: math.unit(5 + 3/12, "feet"),
  2998. weight: math.unit(60, "kg"),
  2999. name: "Side",
  3000. image: {
  3001. source: "./media/characters/zephiro/side.svg",
  3002. extra: 2403 / 2279,
  3003. bottom: 0.015
  3004. }
  3005. },
  3006. back: {
  3007. height: math.unit(5 + 3/12, "feet"),
  3008. weight: math.unit(60, "kg"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/zephiro/back.svg",
  3012. extra: 2373 / 2244,
  3013. bottom: 0.013
  3014. }
  3015. },
  3016. hand: {
  3017. height: math.unit(0.68, "feet"),
  3018. name: "Hand",
  3019. image: {
  3020. source: "./media/characters/zephiro/hand.svg"
  3021. }
  3022. },
  3023. paw: {
  3024. height: math.unit(1, "feet"),
  3025. name: "Paw",
  3026. image: {
  3027. source: "./media/characters/zephiro/paw.svg"
  3028. }
  3029. },
  3030. beans: {
  3031. height: math.unit(0.93, "feet"),
  3032. name: "Beans",
  3033. image: {
  3034. source: "./media/characters/zephiro/beans.svg"
  3035. }
  3036. },
  3037. },
  3038. [
  3039. {
  3040. name: "Micro",
  3041. height: math.unit(3, "inches")
  3042. },
  3043. {
  3044. name: "Normal",
  3045. height: math.unit(5 + 3 / 12, "feet"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(118, "feet")
  3051. },
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3056. {
  3057. front: {
  3058. height: math.unit(5, "feet"),
  3059. weight: math.unit(90, "kg"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/fory/front.svg",
  3063. extra: 2862 / 2674,
  3064. bottom: 180 / 3043.8
  3065. }
  3066. },
  3067. back: {
  3068. height: math.unit(5, "feet"),
  3069. weight: math.unit(90, "kg"),
  3070. name: "Back",
  3071. image: {
  3072. source: "./media/characters/fory/back.svg",
  3073. extra: 2962 / 2791,
  3074. bottom: 106 / 3071.8
  3075. }
  3076. },
  3077. foot: {
  3078. height: math.unit(2.14, "feet"),
  3079. name: "Foot",
  3080. image: {
  3081. source: "./media/characters/fory/foot.svg"
  3082. }
  3083. },
  3084. },
  3085. [
  3086. {
  3087. name: "Normal",
  3088. height: math.unit(5, "feet")
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(50, "feet"),
  3093. default: true
  3094. },
  3095. {
  3096. name: "Megamacro",
  3097. height: math.unit(10, "miles")
  3098. },
  3099. {
  3100. name: "Gigamacro",
  3101. height: math.unit(5, "earths")
  3102. },
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3107. {
  3108. front: {
  3109. height: math.unit(7, "feet"),
  3110. weight: math.unit(90, "kg"),
  3111. name: "Front",
  3112. image: {
  3113. source: "./media/characters/kurrikage/front.svg",
  3114. extra: 1845/1733,
  3115. bottom: 119/1964
  3116. }
  3117. },
  3118. back: {
  3119. height: math.unit(7, "feet"),
  3120. weight: math.unit(90, "kg"),
  3121. name: "Back",
  3122. image: {
  3123. source: "./media/characters/kurrikage/back.svg",
  3124. extra: 1790/1677,
  3125. bottom: 61/1851
  3126. }
  3127. },
  3128. dressed: {
  3129. height: math.unit(7, "feet"),
  3130. weight: math.unit(90, "kg"),
  3131. name: "Dressed",
  3132. image: {
  3133. source: "./media/characters/kurrikage/dressed.svg",
  3134. extra: 1845/1733,
  3135. bottom: 119/1964
  3136. }
  3137. },
  3138. foot: {
  3139. height: math.unit(1.5, "feet"),
  3140. name: "Foot",
  3141. image: {
  3142. source: "./media/characters/kurrikage/foot.svg"
  3143. }
  3144. },
  3145. staff: {
  3146. height: math.unit(6.7, "feet"),
  3147. name: "Staff",
  3148. image: {
  3149. source: "./media/characters/kurrikage/staff.svg"
  3150. }
  3151. },
  3152. peek: {
  3153. height: math.unit(1.05, "feet"),
  3154. name: "Peeking",
  3155. image: {
  3156. source: "./media/characters/kurrikage/peek.svg",
  3157. bottom: 0.08
  3158. }
  3159. },
  3160. },
  3161. [
  3162. {
  3163. name: "Normal",
  3164. height: math.unit(12, "feet"),
  3165. default: true
  3166. },
  3167. {
  3168. name: "Big",
  3169. height: math.unit(20, "feet")
  3170. },
  3171. {
  3172. name: "Macro",
  3173. height: math.unit(500, "feet")
  3174. },
  3175. {
  3176. name: "Megamacro",
  3177. height: math.unit(20, "miles")
  3178. },
  3179. ]
  3180. ))
  3181. characterMakers.push(() => makeCharacter(
  3182. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3183. {
  3184. front: {
  3185. height: math.unit(6, "feet"),
  3186. weight: math.unit(75, "kg"),
  3187. name: "Front",
  3188. image: {
  3189. source: "./media/characters/shingo/front.svg",
  3190. extra: 1900/1825,
  3191. bottom: 82/1982
  3192. }
  3193. },
  3194. side: {
  3195. height: math.unit(6, "feet"),
  3196. weight: math.unit(75, "kg"),
  3197. name: "Side",
  3198. image: {
  3199. source: "./media/characters/shingo/side.svg",
  3200. extra: 1930/1865,
  3201. bottom: 16/1946
  3202. }
  3203. },
  3204. back: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(75, "kg"),
  3207. name: "Back",
  3208. image: {
  3209. source: "./media/characters/shingo/back.svg",
  3210. extra: 1922/1852,
  3211. bottom: 16/1938
  3212. }
  3213. },
  3214. frontDressed: {
  3215. height: math.unit(6, "feet"),
  3216. weight: math.unit(150, "lb"),
  3217. name: "Front-dressed",
  3218. image: {
  3219. source: "./media/characters/shingo/front-dressed.svg",
  3220. extra: 1900/1825,
  3221. bottom: 82/1982
  3222. }
  3223. },
  3224. paw: {
  3225. height: math.unit(1.29, "feet"),
  3226. name: "Paw",
  3227. image: {
  3228. source: "./media/characters/shingo/paw.svg"
  3229. }
  3230. },
  3231. hand: {
  3232. height: math.unit(1.07, "feet"),
  3233. name: "Hand",
  3234. image: {
  3235. source: "./media/characters/shingo/hand.svg"
  3236. }
  3237. },
  3238. frontAlt: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(75, "kg"),
  3241. name: "Front (Alt)",
  3242. image: {
  3243. source: "./media/characters/shingo/front-alt.svg",
  3244. extra: 3511 / 3338,
  3245. bottom: 0.005
  3246. }
  3247. },
  3248. frontAlt2: {
  3249. height: math.unit(6, "feet"),
  3250. weight: math.unit(75, "kg"),
  3251. name: "Front (Alt 2)",
  3252. image: {
  3253. source: "./media/characters/shingo/front-alt-2.svg",
  3254. extra: 706/681,
  3255. bottom: 11/717
  3256. }
  3257. },
  3258. pawAlt: {
  3259. height: math.unit(1, "feet"),
  3260. name: "Paw (Alt)",
  3261. image: {
  3262. source: "./media/characters/shingo/paw-alt.svg"
  3263. }
  3264. },
  3265. },
  3266. [
  3267. {
  3268. name: "Micro",
  3269. height: math.unit(4, "inches")
  3270. },
  3271. {
  3272. name: "Normal",
  3273. height: math.unit(6, "feet"),
  3274. default: true
  3275. },
  3276. {
  3277. name: "Macro",
  3278. height: math.unit(108, "feet")
  3279. },
  3280. {
  3281. name: "Macro+",
  3282. height: math.unit(1500, "feet")
  3283. },
  3284. ]
  3285. ))
  3286. characterMakers.push(() => makeCharacter(
  3287. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3288. {
  3289. side: {
  3290. height: math.unit(6, "feet"),
  3291. weight: math.unit(75, "kg"),
  3292. name: "Side",
  3293. image: {
  3294. source: "./media/characters/aigey/side.svg"
  3295. }
  3296. },
  3297. },
  3298. [
  3299. {
  3300. name: "Macro",
  3301. height: math.unit(200, "feet"),
  3302. default: true
  3303. },
  3304. {
  3305. name: "Megamacro",
  3306. height: math.unit(100, "miles")
  3307. },
  3308. ]
  3309. )
  3310. )
  3311. characterMakers.push(() => makeCharacter(
  3312. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3313. {
  3314. front: {
  3315. height: math.unit(5 + 5 / 12, "feet"),
  3316. weight: math.unit(75, "kg"),
  3317. name: "Front",
  3318. image: {
  3319. source: "./media/characters/natasha/front.svg",
  3320. extra: 859 / 824,
  3321. bottom: 23 / 879.6
  3322. }
  3323. },
  3324. frontNsfw: {
  3325. height: math.unit(5 + 5 / 12, "feet"),
  3326. weight: math.unit(75, "kg"),
  3327. name: "Front (NSFW)",
  3328. image: {
  3329. source: "./media/characters/natasha/front-nsfw.svg",
  3330. extra: 859 / 824,
  3331. bottom: 23 / 879.6
  3332. }
  3333. },
  3334. frontErect: {
  3335. height: math.unit(5 + 5 / 12, "feet"),
  3336. weight: math.unit(75, "kg"),
  3337. name: "Front (Erect)",
  3338. image: {
  3339. source: "./media/characters/natasha/front-erect.svg",
  3340. extra: 859 / 824,
  3341. bottom: 23 / 879.6
  3342. }
  3343. },
  3344. back: {
  3345. height: math.unit(5 + 5 / 12, "feet"),
  3346. weight: math.unit(75, "kg"),
  3347. name: "Back",
  3348. image: {
  3349. source: "./media/characters/natasha/back.svg",
  3350. extra: 887.9 / 852.6,
  3351. bottom: 9.7 / 896.4
  3352. }
  3353. },
  3354. backAlt: {
  3355. height: math.unit(5 + 5 / 12, "feet"),
  3356. weight: math.unit(75, "kg"),
  3357. name: "Back (Alt)",
  3358. image: {
  3359. source: "./media/characters/natasha/back-alt.svg",
  3360. extra: 1236.7 / 1192,
  3361. bottom: 22.3 / 1258.2
  3362. }
  3363. },
  3364. dick: {
  3365. height: math.unit(1.772, "feet"),
  3366. name: "Dick",
  3367. image: {
  3368. source: "./media/characters/natasha/dick.svg"
  3369. }
  3370. },
  3371. paw: {
  3372. height: math.unit(0.250, "meters"),
  3373. name: "Paw",
  3374. image: {
  3375. source: "./media/characters/natasha/paw.svg"
  3376. },
  3377. extraAttributes: {
  3378. "toeSize": {
  3379. name: "Toe Size",
  3380. power: 2,
  3381. type: "area",
  3382. base: math.unit(0.0024, "m^2")
  3383. },
  3384. "padSize": {
  3385. name: "Pad Size",
  3386. power: 2,
  3387. type: "area",
  3388. base: math.unit(0.00889, "m^2")
  3389. },
  3390. "pawSize": {
  3391. name: "Paw Size",
  3392. power: 2,
  3393. type: "area",
  3394. base: math.unit(0.023667, "m^2")
  3395. },
  3396. }
  3397. },
  3398. },
  3399. [
  3400. {
  3401. name: "Shortstack",
  3402. height: math.unit(3, "feet"),
  3403. default: true
  3404. },
  3405. {
  3406. name: "Normal",
  3407. height: math.unit(5 + 5 / 12, "feet")
  3408. },
  3409. {
  3410. name: "Large",
  3411. height: math.unit(12, "feet")
  3412. },
  3413. {
  3414. name: "Macro",
  3415. height: math.unit(100, "feet")
  3416. },
  3417. {
  3418. name: "Macro+",
  3419. height: math.unit(260, "feet")
  3420. },
  3421. {
  3422. name: "Macro++",
  3423. height: math.unit(1, "mile")
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(6, "feet"),
  3432. weight: math.unit(75, "kg"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/malik/front.svg",
  3436. extra: 1750/1561,
  3437. bottom: 80/1830
  3438. },
  3439. extraAttributes: {
  3440. "toeSize": {
  3441. name: "Toe Size",
  3442. power: 2,
  3443. type: "area",
  3444. base: math.unit(0.0159, "m^2")
  3445. },
  3446. "pawSize": {
  3447. name: "Paw Size",
  3448. power: 2,
  3449. type: "area",
  3450. base: math.unit(0.09834, "m^2")
  3451. },
  3452. }
  3453. },
  3454. side: {
  3455. height: math.unit(6, "feet"),
  3456. weight: math.unit(75, "kg"),
  3457. name: "Side",
  3458. image: {
  3459. source: "./media/characters/malik/side.svg",
  3460. extra: 1802/1685,
  3461. bottom: 42/1844
  3462. },
  3463. extraAttributes: {
  3464. "toeSize": {
  3465. name: "Toe Size",
  3466. power: 2,
  3467. type: "area",
  3468. base: math.unit(0.0159, "m^2")
  3469. },
  3470. "pawSize": {
  3471. name: "Paw Size",
  3472. power: 2,
  3473. type: "area",
  3474. base: math.unit(0.09834, "m^2")
  3475. },
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(75, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/malik/back.svg",
  3484. extra: 1803/1607,
  3485. bottom: 33/1836
  3486. },
  3487. extraAttributes: {
  3488. "toeSize": {
  3489. name: "Toe Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.0159, "m^2")
  3493. },
  3494. "pawSize": {
  3495. name: "Paw Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.09834, "m^2")
  3499. },
  3500. }
  3501. },
  3502. },
  3503. [
  3504. {
  3505. name: "Macro",
  3506. height: math.unit(156, "feet"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Macro+",
  3511. height: math.unit(1188, "feet")
  3512. },
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(6, "feet"),
  3520. weight: math.unit(75, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/sefer/front.svg",
  3524. extra: 848 / 659,
  3525. bottom: 28.3 / 876.442
  3526. }
  3527. },
  3528. back: {
  3529. height: math.unit(6, "feet"),
  3530. weight: math.unit(75, "kg"),
  3531. name: "Back",
  3532. image: {
  3533. source: "./media/characters/sefer/back.svg",
  3534. extra: 864 / 695,
  3535. bottom: 10 / 871
  3536. }
  3537. },
  3538. frontDressed: {
  3539. height: math.unit(6, "feet"),
  3540. weight: math.unit(75, "kg"),
  3541. name: "Front (Dressed)",
  3542. image: {
  3543. source: "./media/characters/sefer/front-dressed.svg",
  3544. extra: 839 / 653,
  3545. bottom: 37.6 / 878
  3546. }
  3547. },
  3548. },
  3549. [
  3550. {
  3551. name: "Normal",
  3552. height: math.unit(6, "feet"),
  3553. default: true
  3554. },
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3559. {
  3560. body: {
  3561. height: math.unit(2.2428, "meter"),
  3562. weight: math.unit(124.738, "kg"),
  3563. name: "Body",
  3564. image: {
  3565. extra: 1225 / 1050,
  3566. source: "./media/characters/north/front.svg"
  3567. }
  3568. }
  3569. },
  3570. [
  3571. {
  3572. name: "Micro",
  3573. height: math.unit(4, "inches")
  3574. },
  3575. {
  3576. name: "Macro",
  3577. height: math.unit(63, "meters")
  3578. },
  3579. {
  3580. name: "Megamacro",
  3581. height: math.unit(101, "miles"),
  3582. default: true
  3583. }
  3584. ]
  3585. ))
  3586. characterMakers.push(() => makeCharacter(
  3587. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3588. {
  3589. angled: {
  3590. height: math.unit(4, "meter"),
  3591. weight: math.unit(150, "kg"),
  3592. name: "Angled",
  3593. image: {
  3594. source: "./media/characters/talan/angled-sfw.svg",
  3595. bottom: 29 / 3734
  3596. }
  3597. },
  3598. angledNsfw: {
  3599. height: math.unit(4, "meter"),
  3600. weight: math.unit(150, "kg"),
  3601. name: "Angled (NSFW)",
  3602. image: {
  3603. source: "./media/characters/talan/angled-nsfw.svg",
  3604. bottom: 29 / 3734
  3605. }
  3606. },
  3607. frontNsfw: {
  3608. height: math.unit(4, "meter"),
  3609. weight: math.unit(150, "kg"),
  3610. name: "Front (NSFW)",
  3611. image: {
  3612. source: "./media/characters/talan/front-nsfw.svg",
  3613. bottom: 29 / 3734
  3614. }
  3615. },
  3616. sideNsfw: {
  3617. height: math.unit(4, "meter"),
  3618. weight: math.unit(150, "kg"),
  3619. name: "Side (NSFW)",
  3620. image: {
  3621. source: "./media/characters/talan/side-nsfw.svg",
  3622. bottom: 29 / 3734
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(4, "meter"),
  3627. weight: math.unit(150, "kg"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/talan/back.svg"
  3631. }
  3632. },
  3633. dickBottom: {
  3634. height: math.unit(0.621, "meter"),
  3635. name: "Dick (Bottom)",
  3636. image: {
  3637. source: "./media/characters/talan/dick-bottom.svg"
  3638. }
  3639. },
  3640. dickTop: {
  3641. height: math.unit(0.621, "meter"),
  3642. name: "Dick (Top)",
  3643. image: {
  3644. source: "./media/characters/talan/dick-top.svg"
  3645. }
  3646. },
  3647. dickSide: {
  3648. height: math.unit(0.305, "meter"),
  3649. name: "Dick (Side)",
  3650. image: {
  3651. source: "./media/characters/talan/dick-side.svg"
  3652. }
  3653. },
  3654. dickFront: {
  3655. height: math.unit(0.305, "meter"),
  3656. name: "Dick (Front)",
  3657. image: {
  3658. source: "./media/characters/talan/dick-front.svg"
  3659. }
  3660. },
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(4, "meters")
  3666. },
  3667. {
  3668. name: "Macro",
  3669. height: math.unit(100, "meters")
  3670. },
  3671. {
  3672. name: "Megamacro",
  3673. height: math.unit(2, "miles"),
  3674. default: true
  3675. },
  3676. {
  3677. name: "Gigamacro",
  3678. height: math.unit(5000, "miles")
  3679. },
  3680. {
  3681. name: "Teramacro",
  3682. height: math.unit(100, "parsecs")
  3683. }
  3684. ]
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(2, "meter"),
  3691. weight: math.unit(90, "kg"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/gael'rathus/front.svg"
  3695. }
  3696. },
  3697. frontAlt: {
  3698. height: math.unit(2, "meter"),
  3699. weight: math.unit(90, "kg"),
  3700. name: "Front (alt)",
  3701. image: {
  3702. source: "./media/characters/gael'rathus/front-alt.svg"
  3703. }
  3704. },
  3705. frontAlt2: {
  3706. height: math.unit(2, "meter"),
  3707. weight: math.unit(90, "kg"),
  3708. name: "Front (alt 2)",
  3709. image: {
  3710. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3711. }
  3712. }
  3713. },
  3714. [
  3715. {
  3716. name: "Normal",
  3717. height: math.unit(9, "feet"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "Large",
  3722. height: math.unit(25, "feet")
  3723. },
  3724. {
  3725. name: "Macro",
  3726. height: math.unit(0.25, "miles")
  3727. },
  3728. {
  3729. name: "Megamacro",
  3730. height: math.unit(10, "miles")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3736. {
  3737. side: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(140, "kg"),
  3740. name: "Side",
  3741. image: {
  3742. source: "./media/characters/sosha/side.svg",
  3743. extra: 1170/1006,
  3744. bottom: 94/1264
  3745. }
  3746. },
  3747. maw: {
  3748. height: math.unit(2.87, "feet"),
  3749. name: "Maw",
  3750. image: {
  3751. source: "./media/characters/sosha/maw.svg",
  3752. extra: 966/865,
  3753. bottom: 0/966
  3754. }
  3755. },
  3756. cooch: {
  3757. height: math.unit(5.6, "feet"),
  3758. name: "Cooch",
  3759. image: {
  3760. source: "./media/characters/sosha/cooch.svg"
  3761. }
  3762. },
  3763. },
  3764. [
  3765. {
  3766. name: "Normal",
  3767. height: math.unit(12, "feet"),
  3768. default: true
  3769. }
  3770. ]
  3771. ))
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3774. {
  3775. side: {
  3776. height: math.unit(5 + 5 / 12, "feet"),
  3777. weight: math.unit(170, "kg"),
  3778. name: "Side",
  3779. image: {
  3780. source: "./media/characters/runnola/side.svg",
  3781. extra: 741 / 448,
  3782. bottom: 0.05
  3783. }
  3784. },
  3785. },
  3786. [
  3787. {
  3788. name: "Small",
  3789. height: math.unit(3, "feet")
  3790. },
  3791. {
  3792. name: "Normal",
  3793. height: math.unit(5 + 5 / 12, "feet"),
  3794. default: true
  3795. },
  3796. {
  3797. name: "Big",
  3798. height: math.unit(10, "feet")
  3799. },
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(2, "meter"),
  3807. weight: math.unit(50, "kg"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/kurribird/front.svg",
  3811. bottom: 0.015
  3812. }
  3813. },
  3814. frontAlt: {
  3815. height: math.unit(1.5, "meter"),
  3816. weight: math.unit(50, "kg"),
  3817. name: "Front (Alt)",
  3818. image: {
  3819. source: "./media/characters/kurribird/front-alt.svg",
  3820. extra: 1.45
  3821. }
  3822. },
  3823. },
  3824. [
  3825. {
  3826. name: "Normal",
  3827. height: math.unit(7, "feet")
  3828. },
  3829. {
  3830. name: "Big",
  3831. height: math.unit(12, "feet"),
  3832. default: true
  3833. },
  3834. {
  3835. name: "Macro",
  3836. height: math.unit(1500, "feet")
  3837. },
  3838. {
  3839. name: "Megamacro",
  3840. height: math.unit(2, "miles")
  3841. }
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3846. {
  3847. front: {
  3848. height: math.unit(2, "meter"),
  3849. weight: math.unit(80, "kg"),
  3850. name: "Front",
  3851. image: {
  3852. source: "./media/characters/elbial/front.svg",
  3853. extra: 1643 / 1556,
  3854. bottom: 60.2 / 1696
  3855. }
  3856. },
  3857. side: {
  3858. height: math.unit(2, "meter"),
  3859. weight: math.unit(80, "kg"),
  3860. name: "Side",
  3861. image: {
  3862. source: "./media/characters/elbial/side.svg",
  3863. extra: 1601/1528,
  3864. bottom: 97/1698
  3865. }
  3866. },
  3867. back: {
  3868. height: math.unit(2, "meter"),
  3869. weight: math.unit(80, "kg"),
  3870. name: "Back",
  3871. image: {
  3872. source: "./media/characters/elbial/back.svg",
  3873. extra: 1653/1569,
  3874. bottom: 20/1673
  3875. }
  3876. },
  3877. frontDressed: {
  3878. height: math.unit(2, "meter"),
  3879. weight: math.unit(80, "kg"),
  3880. name: "Front (Dressed)",
  3881. image: {
  3882. source: "./media/characters/elbial/front-dressed.svg",
  3883. extra: 1638/1569,
  3884. bottom: 70/1708
  3885. }
  3886. },
  3887. genitals: {
  3888. height: math.unit(2 / 3.367, "meter"),
  3889. name: "Genitals",
  3890. image: {
  3891. source: "./media/characters/elbial/genitals.svg"
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Large",
  3898. height: math.unit(100, "feet")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(500, "feet"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(10, "miles")
  3908. },
  3909. {
  3910. name: "Gigamacro",
  3911. height: math.unit(25000, "miles")
  3912. },
  3913. {
  3914. name: "Full-Size",
  3915. height: math.unit(8000000, "gigaparsecs")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(60, "kg"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/noah/front.svg"
  3928. }
  3929. },
  3930. talons: {
  3931. height: math.unit(0.315, "meter"),
  3932. name: "Talons",
  3933. image: {
  3934. source: "./media/characters/noah/talons.svg"
  3935. }
  3936. }
  3937. },
  3938. [
  3939. {
  3940. name: "Large",
  3941. height: math.unit(50, "feet")
  3942. },
  3943. {
  3944. name: "Macro",
  3945. height: math.unit(750, "feet"),
  3946. default: true
  3947. },
  3948. {
  3949. name: "Megamacro",
  3950. height: math.unit(50, "miles")
  3951. },
  3952. {
  3953. name: "Gigamacro",
  3954. height: math.unit(100000, "miles")
  3955. },
  3956. {
  3957. name: "Full-Size",
  3958. height: math.unit(3000000000, "miles")
  3959. }
  3960. ]
  3961. ))
  3962. characterMakers.push(() => makeCharacter(
  3963. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3964. {
  3965. front: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(80, "kg"),
  3968. name: "Front",
  3969. image: {
  3970. source: "./media/characters/natalya/front.svg"
  3971. }
  3972. },
  3973. back: {
  3974. height: math.unit(2, "meter"),
  3975. weight: math.unit(80, "kg"),
  3976. name: "Back",
  3977. image: {
  3978. source: "./media/characters/natalya/back.svg"
  3979. }
  3980. }
  3981. },
  3982. [
  3983. {
  3984. name: "Normal",
  3985. height: math.unit(150, "feet"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Megamacro",
  3990. height: math.unit(5, "miles")
  3991. },
  3992. {
  3993. name: "Full-Size",
  3994. height: math.unit(600, "kiloparsecs")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(50, "kg"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/erestrebah/front.svg",
  4007. extra: 1262/1162,
  4008. bottom: 96/1358
  4009. }
  4010. },
  4011. back: {
  4012. height: math.unit(2, "meter"),
  4013. weight: math.unit(50, "kg"),
  4014. name: "Back",
  4015. image: {
  4016. source: "./media/characters/erestrebah/back.svg",
  4017. extra: 1257/1139,
  4018. bottom: 13/1270
  4019. }
  4020. },
  4021. wing: {
  4022. height: math.unit(2, "meter"),
  4023. weight: math.unit(50, "kg"),
  4024. name: "Wing",
  4025. image: {
  4026. source: "./media/characters/erestrebah/wing.svg",
  4027. extra: 1262/1162,
  4028. bottom: 96/1358
  4029. }
  4030. },
  4031. mouth: {
  4032. height: math.unit(0.39, "feet"),
  4033. name: "Mouth",
  4034. image: {
  4035. source: "./media/characters/erestrebah/mouth.svg"
  4036. }
  4037. }
  4038. },
  4039. [
  4040. {
  4041. name: "Normal",
  4042. height: math.unit(10, "feet")
  4043. },
  4044. {
  4045. name: "Large",
  4046. height: math.unit(50, "feet"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(300, "feet")
  4052. },
  4053. {
  4054. name: "Macro+",
  4055. height: math.unit(750, "feet")
  4056. },
  4057. {
  4058. name: "Megamacro",
  4059. height: math.unit(3, "miles")
  4060. }
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4065. {
  4066. front: {
  4067. height: math.unit(2, "meter"),
  4068. weight: math.unit(80, "kg"),
  4069. name: "Front",
  4070. image: {
  4071. source: "./media/characters/jennifer/front.svg",
  4072. bottom: 0.11,
  4073. extra: 1.16
  4074. }
  4075. },
  4076. frontAlt: {
  4077. height: math.unit(2, "meter"),
  4078. weight: math.unit(80, "kg"),
  4079. name: "Front (Alt)",
  4080. image: {
  4081. source: "./media/characters/jennifer/front-alt.svg"
  4082. }
  4083. }
  4084. },
  4085. [
  4086. {
  4087. name: "Canon Height",
  4088. height: math.unit(120, "feet"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Macro+",
  4093. height: math.unit(300, "feet")
  4094. },
  4095. {
  4096. name: "Megamacro",
  4097. height: math.unit(20000, "feet")
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4103. {
  4104. front: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(50, "kg"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/kalista/front.svg",
  4110. extra: 1314/1145,
  4111. bottom: 101/1415
  4112. }
  4113. },
  4114. back: {
  4115. height: math.unit(2, "meter"),
  4116. weight: math.unit(50, "kg"),
  4117. name: "Back",
  4118. image: {
  4119. source: "./media/characters/kalista/back.svg",
  4120. extra: 1366 / 1156,
  4121. bottom: 33.9 / 1362.78
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Uncomfortably Small",
  4128. height: math.unit(10, "feet")
  4129. },
  4130. {
  4131. name: "Small",
  4132. height: math.unit(30, "feet")
  4133. },
  4134. {
  4135. name: "Macro",
  4136. height: math.unit(100, "feet"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Macro+",
  4141. height: math.unit(2000, "feet")
  4142. },
  4143. {
  4144. name: "True Form",
  4145. height: math.unit(8924, "miles")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(120, "kg"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/ggv/front.svg"
  4158. }
  4159. },
  4160. side: {
  4161. height: math.unit(2, "meter"),
  4162. weight: math.unit(120, "kg"),
  4163. name: "Side",
  4164. image: {
  4165. source: "./media/characters/ggv/side.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Extremely Puny",
  4172. height: math.unit(9 + 5 / 12, "feet")
  4173. },
  4174. {
  4175. name: "Horribly Small",
  4176. height: math.unit(47.7, "miles"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Reasonably Sized",
  4181. height: math.unit(25000, "parsecs")
  4182. },
  4183. {
  4184. name: "Slightly Uncompressed",
  4185. height: math.unit(7.77e31, "parsecs")
  4186. },
  4187. {
  4188. name: "Omniversal",
  4189. height: math.unit(1e300, "meters")
  4190. },
  4191. ]
  4192. ))
  4193. characterMakers.push(() => makeCharacter(
  4194. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4195. {
  4196. front: {
  4197. height: math.unit(2, "meter"),
  4198. weight: math.unit(75, "lb"),
  4199. name: "Front",
  4200. image: {
  4201. source: "./media/characters/napalm/front.svg"
  4202. }
  4203. },
  4204. back: {
  4205. height: math.unit(2, "meter"),
  4206. weight: math.unit(75, "lb"),
  4207. name: "Back",
  4208. image: {
  4209. source: "./media/characters/napalm/back.svg"
  4210. }
  4211. }
  4212. },
  4213. [
  4214. {
  4215. name: "Standard",
  4216. height: math.unit(55, "feet"),
  4217. default: true
  4218. }
  4219. ]
  4220. ))
  4221. characterMakers.push(() => makeCharacter(
  4222. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4223. {
  4224. front: {
  4225. height: math.unit(7 + 5 / 6, "feet"),
  4226. weight: math.unit(325, "lb"),
  4227. name: "Front",
  4228. image: {
  4229. source: "./media/characters/asana/front.svg",
  4230. extra: 1133 / 1060,
  4231. bottom: 15.2 / 1148.6
  4232. }
  4233. },
  4234. back: {
  4235. height: math.unit(7 + 5 / 6, "feet"),
  4236. weight: math.unit(325, "lb"),
  4237. name: "Back",
  4238. image: {
  4239. source: "./media/characters/asana/back.svg",
  4240. extra: 1114 / 1043,
  4241. bottom: 5 / 1120
  4242. }
  4243. },
  4244. dressedDark: {
  4245. height: math.unit(7 + 5 / 6, "feet"),
  4246. weight: math.unit(325, "lb"),
  4247. name: "Dressed (Dark)",
  4248. image: {
  4249. source: "./media/characters/asana/dressed-dark.svg",
  4250. extra: 1133 / 1060,
  4251. bottom: 15.2 / 1148.6
  4252. }
  4253. },
  4254. dressedLight: {
  4255. height: math.unit(7 + 5 / 6, "feet"),
  4256. weight: math.unit(325, "lb"),
  4257. name: "Dressed (Light)",
  4258. image: {
  4259. source: "./media/characters/asana/dressed-light.svg",
  4260. extra: 1133 / 1060,
  4261. bottom: 15.2 / 1148.6
  4262. }
  4263. },
  4264. },
  4265. [
  4266. {
  4267. name: "Standard",
  4268. height: math.unit(7 + 5 / 6, "feet"),
  4269. default: true
  4270. },
  4271. {
  4272. name: "Large",
  4273. height: math.unit(10, "meters")
  4274. },
  4275. {
  4276. name: "Macro",
  4277. height: math.unit(2500, "meters")
  4278. },
  4279. {
  4280. name: "Megamacro",
  4281. height: math.unit(5e6, "meters")
  4282. },
  4283. {
  4284. name: "Examacro",
  4285. height: math.unit(5e12, "lightyears")
  4286. },
  4287. {
  4288. name: "Max Size",
  4289. height: math.unit(1e31, "lightyears")
  4290. }
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4295. {
  4296. front: {
  4297. height: math.unit(2, "meter"),
  4298. weight: math.unit(60, "kg"),
  4299. name: "Front",
  4300. image: {
  4301. source: "./media/characters/ebony/front.svg",
  4302. bottom: 0.03,
  4303. extra: 1045 / 810 + 0.03
  4304. }
  4305. },
  4306. side: {
  4307. height: math.unit(2, "meter"),
  4308. weight: math.unit(60, "kg"),
  4309. name: "Side",
  4310. image: {
  4311. source: "./media/characters/ebony/side.svg",
  4312. bottom: 0.03,
  4313. extra: 1045 / 810 + 0.03
  4314. }
  4315. },
  4316. back: {
  4317. height: math.unit(2, "meter"),
  4318. weight: math.unit(60, "kg"),
  4319. name: "Back",
  4320. image: {
  4321. source: "./media/characters/ebony/back.svg",
  4322. bottom: 0.01,
  4323. extra: 1045 / 810 + 0.01
  4324. }
  4325. },
  4326. },
  4327. [
  4328. // TODO check why I did this lol
  4329. {
  4330. name: "Standard",
  4331. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Macro",
  4336. height: math.unit(200, "feet")
  4337. },
  4338. {
  4339. name: "Gigamacro",
  4340. height: math.unit(13000, "km")
  4341. }
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(6, "feet"),
  4349. weight: math.unit(175, "lb"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/mountain/front.svg",
  4353. extra: 972 / 955,
  4354. bottom: 64 / 1036.6
  4355. }
  4356. },
  4357. back: {
  4358. height: math.unit(6, "feet"),
  4359. weight: math.unit(175, "lb"),
  4360. name: "Back",
  4361. image: {
  4362. source: "./media/characters/mountain/back.svg",
  4363. extra: 970 / 950,
  4364. bottom: 28.25 / 999
  4365. }
  4366. },
  4367. },
  4368. [
  4369. {
  4370. name: "Large",
  4371. height: math.unit(20, "meters")
  4372. },
  4373. {
  4374. name: "Macro",
  4375. height: math.unit(300, "meters")
  4376. },
  4377. {
  4378. name: "Gigamacro",
  4379. height: math.unit(10000, "km"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Examacro",
  4384. height: math.unit(10e9, "lightyears")
  4385. }
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4390. {
  4391. front: {
  4392. height: math.unit(8, "feet"),
  4393. weight: math.unit(500, "lb"),
  4394. name: "Front",
  4395. image: {
  4396. source: "./media/characters/rick/front.svg"
  4397. }
  4398. }
  4399. },
  4400. [
  4401. {
  4402. name: "Normal",
  4403. height: math.unit(8, "feet"),
  4404. default: true
  4405. },
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(5, "km")
  4409. }
  4410. ]
  4411. ))
  4412. characterMakers.push(() => makeCharacter(
  4413. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4414. {
  4415. front: {
  4416. height: math.unit(8, "feet"),
  4417. weight: math.unit(120, "lb"),
  4418. name: "Front",
  4419. image: {
  4420. source: "./media/characters/ona/front.svg"
  4421. }
  4422. },
  4423. frontAlt: {
  4424. height: math.unit(8, "feet"),
  4425. weight: math.unit(120, "lb"),
  4426. name: "Front (Alt)",
  4427. image: {
  4428. source: "./media/characters/ona/front-alt.svg"
  4429. }
  4430. },
  4431. back: {
  4432. height: math.unit(8, "feet"),
  4433. weight: math.unit(120, "lb"),
  4434. name: "Back",
  4435. image: {
  4436. source: "./media/characters/ona/back.svg"
  4437. }
  4438. },
  4439. foot: {
  4440. height: math.unit(1.1, "feet"),
  4441. name: "Foot",
  4442. image: {
  4443. source: "./media/characters/ona/foot.svg"
  4444. }
  4445. }
  4446. },
  4447. [
  4448. {
  4449. name: "Megamacro",
  4450. height: math.unit(70, "km"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Gigamacro",
  4455. height: math.unit(681818, "miles")
  4456. },
  4457. {
  4458. name: "Examacro",
  4459. height: math.unit(3800000, "lightyears")
  4460. },
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(12, "feet"),
  4468. weight: math.unit(3000, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/mech/front.svg",
  4472. extra: 2900 / 2770,
  4473. bottom: 110 / 3010
  4474. }
  4475. },
  4476. back: {
  4477. height: math.unit(12, "feet"),
  4478. weight: math.unit(3000, "lb"),
  4479. name: "Back",
  4480. image: {
  4481. source: "./media/characters/mech/back.svg",
  4482. extra: 3011 / 2890,
  4483. bottom: 94 / 3105
  4484. }
  4485. },
  4486. maw: {
  4487. height: math.unit(3.07, "feet"),
  4488. name: "Maw",
  4489. image: {
  4490. source: "./media/characters/mech/maw.svg"
  4491. }
  4492. },
  4493. head: {
  4494. height: math.unit(3.07, "feet"),
  4495. name: "Head",
  4496. image: {
  4497. source: "./media/characters/mech/head.svg"
  4498. }
  4499. },
  4500. dick: {
  4501. height: math.unit(1.43, "feet"),
  4502. name: "Dick",
  4503. image: {
  4504. source: "./media/characters/mech/dick.svg"
  4505. }
  4506. },
  4507. },
  4508. [
  4509. {
  4510. name: "Normal",
  4511. height: math.unit(12, "feet")
  4512. },
  4513. {
  4514. name: "Macro",
  4515. height: math.unit(300, "feet"),
  4516. default: true
  4517. },
  4518. {
  4519. name: "Macro+",
  4520. height: math.unit(1500, "feet")
  4521. },
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4526. {
  4527. front: {
  4528. height: math.unit(1.3, "meter"),
  4529. weight: math.unit(30, "kg"),
  4530. name: "Front",
  4531. image: {
  4532. source: "./media/characters/gregory/front.svg",
  4533. }
  4534. }
  4535. },
  4536. [
  4537. {
  4538. name: "Normal",
  4539. height: math.unit(1.3, "meter"),
  4540. default: true
  4541. },
  4542. {
  4543. name: "Macro",
  4544. height: math.unit(20, "meter")
  4545. }
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4550. {
  4551. front: {
  4552. height: math.unit(2.8, "meter"),
  4553. weight: math.unit(200, "kg"),
  4554. name: "Front",
  4555. image: {
  4556. source: "./media/characters/elory/front.svg",
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(2.8, "meter"),
  4564. default: true
  4565. },
  4566. {
  4567. name: "Macro",
  4568. height: math.unit(38, "meter")
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(470, "feet"),
  4577. weight: math.unit(924, "tons"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/angelpatamon/front.svg",
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(470, "feet"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Deity Size I",
  4592. height: math.unit(28651.2, "km")
  4593. },
  4594. {
  4595. name: "Deity Size II",
  4596. height: math.unit(171907.2, "km")
  4597. }
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4602. {
  4603. side: {
  4604. height: math.unit(7.2, "meter"),
  4605. weight: math.unit(8.2, "tons"),
  4606. name: "Side",
  4607. image: {
  4608. source: "./media/characters/cryae/side.svg",
  4609. extra: 3500 / 1500
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Normal",
  4616. height: math.unit(7.2, "meter"),
  4617. default: true
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(6, "feet"),
  4626. weight: math.unit(175, "lb"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/xera/front.svg",
  4630. extra: 2377 / 1972,
  4631. bottom: 75.5 / 2452
  4632. }
  4633. },
  4634. side: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(175, "lb"),
  4637. name: "Side",
  4638. image: {
  4639. source: "./media/characters/xera/side.svg",
  4640. extra: 2345 / 2019,
  4641. bottom: 39.7 / 2384
  4642. }
  4643. },
  4644. back: {
  4645. height: math.unit(6, "feet"),
  4646. weight: math.unit(175, "lb"),
  4647. name: "Back",
  4648. image: {
  4649. source: "./media/characters/xera/back.svg",
  4650. extra: 2095 / 1984,
  4651. bottom: 67 / 2166
  4652. }
  4653. },
  4654. },
  4655. [
  4656. {
  4657. name: "Small",
  4658. height: math.unit(10, "feet")
  4659. },
  4660. {
  4661. name: "Macro",
  4662. height: math.unit(500, "meters"),
  4663. default: true
  4664. },
  4665. {
  4666. name: "Macro+",
  4667. height: math.unit(10, "km")
  4668. },
  4669. {
  4670. name: "Gigamacro",
  4671. height: math.unit(25000, "km")
  4672. },
  4673. {
  4674. name: "Teramacro",
  4675. height: math.unit(3e6, "km")
  4676. }
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4681. {
  4682. front: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(175, "lb"),
  4685. name: "Front",
  4686. image: {
  4687. source: "./media/characters/nebula/front.svg",
  4688. extra: 2566 / 2362,
  4689. bottom: 81 / 2644
  4690. }
  4691. }
  4692. },
  4693. [
  4694. {
  4695. name: "Small",
  4696. height: math.unit(4.5, "meters")
  4697. },
  4698. {
  4699. name: "Macro",
  4700. height: math.unit(1500, "meters"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Megamacro",
  4705. height: math.unit(150, "km")
  4706. },
  4707. {
  4708. name: "Gigamacro",
  4709. height: math.unit(27000, "km")
  4710. }
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4715. {
  4716. front: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(225, "lb"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/abysgar/front.svg",
  4722. extra: 1739/1614,
  4723. bottom: 71/1810
  4724. }
  4725. },
  4726. frontNsfw: {
  4727. height: math.unit(6, "feet"),
  4728. weight: math.unit(225, "lb"),
  4729. name: "Front (NSFW)",
  4730. image: {
  4731. source: "./media/characters/abysgar/front-nsfw.svg",
  4732. extra: 1739/1614,
  4733. bottom: 71/1810
  4734. }
  4735. },
  4736. back: {
  4737. height: math.unit(4.6, "feet"),
  4738. weight: math.unit(225, "lb"),
  4739. name: "Back",
  4740. image: {
  4741. source: "./media/characters/abysgar/back.svg",
  4742. extra: 1384/1327,
  4743. bottom: 0/1384
  4744. }
  4745. },
  4746. head: {
  4747. height: math.unit(1.25, "feet"),
  4748. name: "Head",
  4749. image: {
  4750. source: "./media/characters/abysgar/head.svg",
  4751. extra: 669/569,
  4752. bottom: 0/669
  4753. }
  4754. },
  4755. },
  4756. [
  4757. {
  4758. name: "Small",
  4759. height: math.unit(4.5, "meters")
  4760. },
  4761. {
  4762. name: "Macro",
  4763. height: math.unit(1250, "meters"),
  4764. default: true
  4765. },
  4766. {
  4767. name: "Megamacro",
  4768. height: math.unit(125, "km")
  4769. },
  4770. {
  4771. name: "Gigamacro",
  4772. height: math.unit(26000, "km")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(180, "lb"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/yakuz/front.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Small",
  4791. height: math.unit(5, "meters")
  4792. },
  4793. {
  4794. name: "Macro",
  4795. height: math.unit(1500, "meters"),
  4796. default: true
  4797. },
  4798. {
  4799. name: "Megamacro",
  4800. height: math.unit(200, "km")
  4801. },
  4802. {
  4803. name: "Gigamacro",
  4804. height: math.unit(100000, "km")
  4805. }
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(175, "lb"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/mirova/front.svg",
  4817. extra: 3334 / 3071,
  4818. bottom: 42 / 3375.6
  4819. }
  4820. }
  4821. },
  4822. [
  4823. {
  4824. name: "Small",
  4825. height: math.unit(5, "meters")
  4826. },
  4827. {
  4828. name: "Macro",
  4829. height: math.unit(900, "meters"),
  4830. default: true
  4831. },
  4832. {
  4833. name: "Megamacro",
  4834. height: math.unit(135, "km")
  4835. },
  4836. {
  4837. name: "Gigamacro",
  4838. height: math.unit(20000, "km")
  4839. }
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4844. {
  4845. side: {
  4846. height: math.unit(28.35, "feet"),
  4847. weight: math.unit(99.75, "tons"),
  4848. name: "Side",
  4849. image: {
  4850. source: "./media/characters/asana-mech/side.svg",
  4851. extra: 923 / 699,
  4852. bottom: 50 / 975
  4853. }
  4854. },
  4855. chaingun: {
  4856. height: math.unit(7, "feet"),
  4857. weight: math.unit(2400, "lb"),
  4858. name: "Chaingun",
  4859. image: {
  4860. source: "./media/characters/asana-mech/chaingun.svg"
  4861. }
  4862. },
  4863. laser: {
  4864. height: math.unit(7.12, "feet"),
  4865. weight: math.unit(2000, "lb"),
  4866. name: "Laser",
  4867. image: {
  4868. source: "./media/characters/asana-mech/laser.svg"
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(28.35, "feet"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(2500, "feet")
  4881. },
  4882. {
  4883. name: "Megamacro",
  4884. height: math.unit(25, "miles")
  4885. },
  4886. {
  4887. name: "Examacro",
  4888. height: math.unit(6e8, "lightyears")
  4889. },
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4894. {
  4895. front: {
  4896. height: math.unit(5, "meters"),
  4897. weight: math.unit(1000, "kg"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/asche/front.svg",
  4901. extra: 1258 / 1190,
  4902. bottom: 47 / 1305
  4903. }
  4904. },
  4905. frontUnderwear: {
  4906. height: math.unit(5, "meters"),
  4907. weight: math.unit(1000, "kg"),
  4908. name: "Front (Underwear)",
  4909. image: {
  4910. source: "./media/characters/asche/front-underwear.svg",
  4911. extra: 1258 / 1190,
  4912. bottom: 47 / 1305
  4913. }
  4914. },
  4915. frontDressed: {
  4916. height: math.unit(5, "meters"),
  4917. weight: math.unit(1000, "kg"),
  4918. name: "Front (Dressed)",
  4919. image: {
  4920. source: "./media/characters/asche/front-dressed.svg",
  4921. extra: 1258 / 1190,
  4922. bottom: 47 / 1305
  4923. }
  4924. },
  4925. frontArmor: {
  4926. height: math.unit(5, "meters"),
  4927. weight: math.unit(1000, "kg"),
  4928. name: "Front (Armored)",
  4929. image: {
  4930. source: "./media/characters/asche/front-armored.svg",
  4931. extra: 1374 / 1308,
  4932. bottom: 23 / 1397
  4933. }
  4934. },
  4935. mp724: {
  4936. height: math.unit(0.96, "meters"),
  4937. weight: math.unit(38, "kg"),
  4938. name: "H&K MP724",
  4939. image: {
  4940. source: "./media/characters/asche/h&k-mp724.svg"
  4941. }
  4942. },
  4943. side: {
  4944. height: math.unit(5, "meters"),
  4945. weight: math.unit(1000, "kg"),
  4946. name: "Side",
  4947. image: {
  4948. source: "./media/characters/asche/side.svg",
  4949. extra: 1717 / 1609,
  4950. bottom: 0.005
  4951. }
  4952. },
  4953. back: {
  4954. height: math.unit(5, "meters"),
  4955. weight: math.unit(1000, "kg"),
  4956. name: "Back",
  4957. image: {
  4958. source: "./media/characters/asche/back.svg",
  4959. extra: 1570 / 1501
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "DEFCON 5",
  4966. height: math.unit(5, "meters")
  4967. },
  4968. {
  4969. name: "DEFCON 4",
  4970. height: math.unit(500, "meters"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "DEFCON 3",
  4975. height: math.unit(5, "km")
  4976. },
  4977. {
  4978. name: "DEFCON 2",
  4979. height: math.unit(500, "km")
  4980. },
  4981. {
  4982. name: "DEFCON 1",
  4983. height: math.unit(500000, "km")
  4984. },
  4985. {
  4986. name: "DEFCON 0",
  4987. height: math.unit(3, "gigaparsecs")
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(2, "meters"),
  4996. weight: math.unit(76, "kg"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/gale/front.svg"
  5000. }
  5001. },
  5002. frontAlt1: {
  5003. height: math.unit(2, "meters"),
  5004. weight: math.unit(76, "kg"),
  5005. name: "Front (Alt 1)",
  5006. image: {
  5007. source: "./media/characters/gale/front-alt-1.svg"
  5008. }
  5009. },
  5010. frontAlt2: {
  5011. height: math.unit(2, "meters"),
  5012. weight: math.unit(76, "kg"),
  5013. name: "Front (Alt 2)",
  5014. image: {
  5015. source: "./media/characters/gale/front-alt-2.svg"
  5016. }
  5017. },
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(7, "feet")
  5023. },
  5024. {
  5025. name: "Macro",
  5026. height: math.unit(150, "feet"),
  5027. default: true
  5028. },
  5029. {
  5030. name: "Macro+",
  5031. height: math.unit(300, "feet")
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(5 + 10/12, "feet"),
  5040. weight: math.unit(67, "kg"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/draylen/front.svg",
  5044. extra: 832/777,
  5045. bottom: 85/917
  5046. }
  5047. }
  5048. },
  5049. [
  5050. {
  5051. name: "Normal",
  5052. height: math.unit(5 + 10/12, "feet")
  5053. },
  5054. {
  5055. name: "Macro",
  5056. height: math.unit(150, "feet"),
  5057. default: true
  5058. }
  5059. ]
  5060. ))
  5061. characterMakers.push(() => makeCharacter(
  5062. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5063. {
  5064. front: {
  5065. height: math.unit(7 + 9 / 12, "feet"),
  5066. weight: math.unit(379, "lbs"),
  5067. name: "Front",
  5068. image: {
  5069. source: "./media/characters/chez/front.svg"
  5070. }
  5071. },
  5072. side: {
  5073. height: math.unit(7 + 9 / 12, "feet"),
  5074. weight: math.unit(379, "lbs"),
  5075. name: "Side",
  5076. image: {
  5077. source: "./media/characters/chez/side.svg"
  5078. }
  5079. }
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(7 + 9 / 12, "feet"),
  5085. default: true
  5086. },
  5087. {
  5088. name: "God King",
  5089. height: math.unit(9750000, "meters")
  5090. }
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5095. {
  5096. front: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(275, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/kaylum/front.svg",
  5102. bottom: 0.01,
  5103. extra: 1166 / 1031
  5104. }
  5105. },
  5106. frontWingless: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(275, "lbs"),
  5109. name: "Front (Wingless)",
  5110. image: {
  5111. source: "./media/characters/kaylum/front-wingless.svg",
  5112. bottom: 0.01,
  5113. extra: 1117 / 1031
  5114. }
  5115. }
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(3.05, "meters")
  5121. },
  5122. {
  5123. name: "Master",
  5124. height: math.unit(5.5, "meters")
  5125. },
  5126. {
  5127. name: "Rampage",
  5128. height: math.unit(19, "meters")
  5129. },
  5130. {
  5131. name: "Macro Lite",
  5132. height: math.unit(37, "meters")
  5133. },
  5134. {
  5135. name: "Hyper Predator",
  5136. height: math.unit(61, "meters")
  5137. },
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(138, "meters"),
  5141. default: true
  5142. }
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5147. {
  5148. front: {
  5149. height: math.unit(5 + 5 / 12, "feet"),
  5150. weight: math.unit(120, "lbs"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/geta/front.svg",
  5154. extra: 1003/933,
  5155. bottom: 21/1024
  5156. }
  5157. },
  5158. paw: {
  5159. height: math.unit(0.35, "feet"),
  5160. name: "Paw",
  5161. image: {
  5162. source: "./media/characters/geta/paw.svg"
  5163. }
  5164. },
  5165. },
  5166. [
  5167. {
  5168. name: "Micro",
  5169. height: math.unit(3, "inches"),
  5170. default: true
  5171. },
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(5 + 5 / 12, "feet")
  5175. }
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5180. {
  5181. front: {
  5182. height: math.unit(6, "feet"),
  5183. weight: math.unit(300, "lbs"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/tyrnn/front.svg"
  5187. }
  5188. }
  5189. },
  5190. [
  5191. {
  5192. name: "Main Height",
  5193. height: math.unit(355, "feet"),
  5194. default: true
  5195. },
  5196. {
  5197. name: "Fave. Height",
  5198. height: math.unit(2400, "feet")
  5199. }
  5200. ]
  5201. ))
  5202. characterMakers.push(() => makeCharacter(
  5203. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5204. {
  5205. front: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(300, "lbs"),
  5208. name: "Front",
  5209. image: {
  5210. source: "./media/characters/appledectomy/front.svg"
  5211. }
  5212. }
  5213. },
  5214. [
  5215. {
  5216. name: "Macro",
  5217. height: math.unit(2500, "feet")
  5218. },
  5219. {
  5220. name: "Megamacro",
  5221. height: math.unit(50, "miles"),
  5222. default: true
  5223. },
  5224. {
  5225. name: "Gigamacro",
  5226. height: math.unit(5000, "miles")
  5227. },
  5228. {
  5229. name: "Teramacro",
  5230. height: math.unit(250000, "miles")
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(200, "lbs"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/vulpes/front.svg",
  5243. extra: 573 / 543,
  5244. bottom: 0.033
  5245. }
  5246. },
  5247. side: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(200, "lbs"),
  5250. name: "Side",
  5251. image: {
  5252. source: "./media/characters/vulpes/side.svg",
  5253. extra: 577 / 549,
  5254. bottom: 11 / 588
  5255. }
  5256. },
  5257. back: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(200, "lbs"),
  5260. name: "Back",
  5261. image: {
  5262. source: "./media/characters/vulpes/back.svg",
  5263. extra: 573 / 549,
  5264. bottom: 20 / 593
  5265. }
  5266. },
  5267. feet: {
  5268. height: math.unit(1.276, "feet"),
  5269. name: "Feet",
  5270. image: {
  5271. source: "./media/characters/vulpes/feet.svg"
  5272. }
  5273. },
  5274. maw: {
  5275. height: math.unit(1.18, "feet"),
  5276. name: "Maw",
  5277. image: {
  5278. source: "./media/characters/vulpes/maw.svg"
  5279. }
  5280. },
  5281. },
  5282. [
  5283. {
  5284. name: "Micro",
  5285. height: math.unit(2, "inches")
  5286. },
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(6.3, "feet")
  5290. },
  5291. {
  5292. name: "Macro",
  5293. height: math.unit(850, "feet")
  5294. },
  5295. {
  5296. name: "Megamacro",
  5297. height: math.unit(7500, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Gigamacro",
  5302. height: math.unit(570000, "miles")
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5308. {
  5309. front: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(210, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/rain-fallen/front.svg"
  5315. }
  5316. },
  5317. side: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(210, "lbs"),
  5320. name: "Side",
  5321. image: {
  5322. source: "./media/characters/rain-fallen/side.svg"
  5323. }
  5324. },
  5325. back: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(210, "lbs"),
  5328. name: "Back",
  5329. image: {
  5330. source: "./media/characters/rain-fallen/back.svg"
  5331. }
  5332. },
  5333. feral: {
  5334. height: math.unit(9, "feet"),
  5335. weight: math.unit(700, "lbs"),
  5336. name: "Feral",
  5337. image: {
  5338. source: "./media/characters/rain-fallen/feral.svg"
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "Meddling with Mortals",
  5345. height: math.unit(8 + 8/12, "feet")
  5346. },
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(5, "meter")
  5350. },
  5351. {
  5352. name: "Macro",
  5353. height: math.unit(150, "meter"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Megamacro",
  5358. height: math.unit(278e6, "meter")
  5359. },
  5360. {
  5361. name: "Gigamacro",
  5362. height: math.unit(2e9, "meter")
  5363. },
  5364. {
  5365. name: "Teramacro",
  5366. height: math.unit(8e12, "meter")
  5367. },
  5368. {
  5369. name: "Devourer",
  5370. height: math.unit(14, "zettameters")
  5371. },
  5372. {
  5373. name: "Scarlet King",
  5374. height: math.unit(18, "yottameters")
  5375. },
  5376. {
  5377. name: "Void",
  5378. height: math.unit(1e88, "yottameters")
  5379. }
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5384. {
  5385. standing: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(180, "lbs"),
  5388. name: "Standing",
  5389. image: {
  5390. source: "./media/characters/zaakira/standing.svg",
  5391. extra: 1599/1504,
  5392. bottom: 39/1638
  5393. }
  5394. },
  5395. laying: {
  5396. height: math.unit(3.3, "feet"),
  5397. weight: math.unit(180, "lbs"),
  5398. name: "Laying",
  5399. image: {
  5400. source: "./media/characters/zaakira/laying.svg"
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(12, "feet")
  5408. },
  5409. {
  5410. name: "Macro",
  5411. height: math.unit(279, "feet"),
  5412. default: true
  5413. }
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5418. {
  5419. femSfw: {
  5420. height: math.unit(8, "feet"),
  5421. weight: math.unit(350, "lb"),
  5422. name: "Fem",
  5423. image: {
  5424. source: "./media/characters/sigvald/fem-sfw.svg",
  5425. extra: 182 / 164,
  5426. bottom: 8.7 / 190.5
  5427. }
  5428. },
  5429. femNsfw: {
  5430. height: math.unit(8, "feet"),
  5431. weight: math.unit(350, "lb"),
  5432. name: "Fem (NSFW)",
  5433. image: {
  5434. source: "./media/characters/sigvald/fem-nsfw.svg",
  5435. extra: 182 / 164,
  5436. bottom: 8.7 / 190.5
  5437. }
  5438. },
  5439. maleNsfw: {
  5440. height: math.unit(8, "feet"),
  5441. weight: math.unit(350, "lb"),
  5442. name: "Male (NSFW)",
  5443. image: {
  5444. source: "./media/characters/sigvald/male-nsfw.svg",
  5445. extra: 182 / 164,
  5446. bottom: 8.7 / 190.5
  5447. }
  5448. },
  5449. hermNsfw: {
  5450. height: math.unit(8, "feet"),
  5451. weight: math.unit(350, "lb"),
  5452. name: "Herm (NSFW)",
  5453. image: {
  5454. source: "./media/characters/sigvald/herm-nsfw.svg",
  5455. extra: 182 / 164,
  5456. bottom: 8.7 / 190.5
  5457. }
  5458. },
  5459. dick: {
  5460. height: math.unit(2.36, "feet"),
  5461. name: "Dick",
  5462. image: {
  5463. source: "./media/characters/sigvald/dick.svg"
  5464. }
  5465. },
  5466. eye: {
  5467. height: math.unit(0.31, "feet"),
  5468. name: "Eye",
  5469. image: {
  5470. source: "./media/characters/sigvald/eye.svg"
  5471. }
  5472. },
  5473. mouth: {
  5474. height: math.unit(0.92, "feet"),
  5475. name: "Mouth",
  5476. image: {
  5477. source: "./media/characters/sigvald/mouth.svg"
  5478. }
  5479. },
  5480. paws: {
  5481. height: math.unit(2.2, "feet"),
  5482. name: "Paws",
  5483. image: {
  5484. source: "./media/characters/sigvald/paws.svg"
  5485. }
  5486. }
  5487. },
  5488. [
  5489. {
  5490. name: "Normal",
  5491. height: math.unit(8, "feet")
  5492. },
  5493. {
  5494. name: "Large",
  5495. height: math.unit(12, "feet")
  5496. },
  5497. {
  5498. name: "Larger",
  5499. height: math.unit(20, "feet")
  5500. },
  5501. {
  5502. name: "Macro",
  5503. height: math.unit(150, "feet")
  5504. },
  5505. {
  5506. name: "Macro+",
  5507. height: math.unit(200, "feet"),
  5508. default: true
  5509. },
  5510. ]
  5511. ))
  5512. characterMakers.push(() => makeCharacter(
  5513. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5514. {
  5515. side: {
  5516. height: math.unit(12, "feet"),
  5517. weight: math.unit(2000, "kg"),
  5518. name: "Side",
  5519. image: {
  5520. source: "./media/characters/scott/side.svg",
  5521. extra: 754 / 724,
  5522. bottom: 0.069
  5523. }
  5524. },
  5525. upright: {
  5526. height: math.unit(12, "feet"),
  5527. weight: math.unit(2000, "kg"),
  5528. name: "Upright",
  5529. image: {
  5530. source: "./media/characters/scott/upright.svg",
  5531. extra: 3881 / 3722,
  5532. bottom: 0.05
  5533. }
  5534. },
  5535. },
  5536. [
  5537. {
  5538. name: "Normal",
  5539. height: math.unit(12, "feet"),
  5540. default: true
  5541. },
  5542. ]
  5543. ))
  5544. characterMakers.push(() => makeCharacter(
  5545. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5546. {
  5547. side: {
  5548. height: math.unit(8, "meters"),
  5549. weight: math.unit(84755, "lbs"),
  5550. name: "Side",
  5551. image: {
  5552. source: "./media/characters/tobias/side.svg",
  5553. extra: 1474 / 1096,
  5554. bottom: 38.9 / 1513.1235
  5555. }
  5556. },
  5557. },
  5558. [
  5559. {
  5560. name: "Normal",
  5561. height: math.unit(8, "meters"),
  5562. default: true
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5568. {
  5569. front: {
  5570. height: math.unit(5.5, "feet"),
  5571. weight: math.unit(400, "lbs"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/kieran/front.svg",
  5575. extra: 2694 / 2364,
  5576. bottom: 217 / 2908
  5577. }
  5578. },
  5579. side: {
  5580. height: math.unit(5.5, "feet"),
  5581. weight: math.unit(400, "lbs"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/kieran/side.svg",
  5585. extra: 875 / 777,
  5586. bottom: 84.6 / 959
  5587. }
  5588. },
  5589. },
  5590. [
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(5.5, "feet"),
  5594. default: true
  5595. },
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5600. {
  5601. side: {
  5602. height: math.unit(2, "meters"),
  5603. weight: math.unit(70, "kg"),
  5604. name: "Side",
  5605. image: {
  5606. source: "./media/characters/sanya/side.svg",
  5607. bottom: 0.02,
  5608. extra: 1.02
  5609. }
  5610. },
  5611. },
  5612. [
  5613. {
  5614. name: "Small",
  5615. height: math.unit(2, "meters")
  5616. },
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(3, "meters")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(16, "meters"),
  5624. default: true
  5625. },
  5626. ]
  5627. ))
  5628. characterMakers.push(() => makeCharacter(
  5629. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5630. {
  5631. front: {
  5632. height: math.unit(2, "meters"),
  5633. weight: math.unit(120, "kg"),
  5634. name: "Front",
  5635. image: {
  5636. source: "./media/characters/miranda/front.svg",
  5637. extra: 195 / 185,
  5638. bottom: 10.9 / 206.5
  5639. }
  5640. },
  5641. back: {
  5642. height: math.unit(2, "meters"),
  5643. weight: math.unit(120, "kg"),
  5644. name: "Back",
  5645. image: {
  5646. source: "./media/characters/miranda/back.svg",
  5647. extra: 201 / 193,
  5648. bottom: 2.3 / 203.7
  5649. }
  5650. },
  5651. },
  5652. [
  5653. {
  5654. name: "Normal",
  5655. height: math.unit(10, "feet"),
  5656. default: true
  5657. }
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "James", species: ["deer"], tags: ["anthro"] },
  5662. {
  5663. side: {
  5664. height: math.unit(2, "meters"),
  5665. weight: math.unit(100, "kg"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/james/front.svg",
  5669. extra: 10 / 8.5
  5670. }
  5671. },
  5672. },
  5673. [
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(8.5, "feet"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5683. {
  5684. side: {
  5685. height: math.unit(9.5, "feet"),
  5686. weight: math.unit(2500, "lbs"),
  5687. name: "Side",
  5688. image: {
  5689. source: "./media/characters/heather/side.svg"
  5690. }
  5691. },
  5692. },
  5693. [
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(9.5, "feet"),
  5697. default: true
  5698. }
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5703. {
  5704. side: {
  5705. height: math.unit(6.5, "feet"),
  5706. weight: math.unit(400, "lbs"),
  5707. name: "Side",
  5708. image: {
  5709. source: "./media/characters/lukas/side.svg",
  5710. extra: 7.25 / 6.5
  5711. }
  5712. },
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(6.5, "feet"),
  5718. default: true
  5719. }
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5724. {
  5725. side: {
  5726. height: math.unit(5, "feet"),
  5727. weight: math.unit(3000, "lbs"),
  5728. name: "Side",
  5729. image: {
  5730. source: "./media/characters/louise/side.svg"
  5731. }
  5732. },
  5733. },
  5734. [
  5735. {
  5736. name: "Normal",
  5737. height: math.unit(5, "feet"),
  5738. default: true
  5739. }
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5744. {
  5745. side: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(150, "lbs"),
  5748. name: "Side",
  5749. image: {
  5750. source: "./media/characters/ramona/side.svg",
  5751. extra: 871/854,
  5752. bottom: 41/912
  5753. }
  5754. },
  5755. },
  5756. [
  5757. {
  5758. name: "Normal",
  5759. height: math.unit(6 + 4/12, "feet")
  5760. },
  5761. {
  5762. name: "Minimacro",
  5763. height: math.unit(5.3, "meters"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Macro",
  5768. height: math.unit(20, "stories")
  5769. },
  5770. {
  5771. name: "Macro+",
  5772. height: math.unit(50, "stories")
  5773. },
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5778. {
  5779. standing: {
  5780. height: math.unit(5.75, "feet"),
  5781. weight: math.unit(160, "lbs"),
  5782. name: "Standing",
  5783. image: {
  5784. source: "./media/characters/deerpuff/standing.svg",
  5785. extra: 682 / 624
  5786. }
  5787. },
  5788. sitting: {
  5789. height: math.unit(5.75 / 1.79, "feet"),
  5790. weight: math.unit(160, "lbs"),
  5791. name: "Sitting",
  5792. image: {
  5793. source: "./media/characters/deerpuff/sitting.svg",
  5794. bottom: 44 / 400,
  5795. extra: 1
  5796. }
  5797. },
  5798. taurLaying: {
  5799. height: math.unit(6, "feet"),
  5800. weight: math.unit(400, "lbs"),
  5801. name: "Taur (Laying)",
  5802. image: {
  5803. source: "./media/characters/deerpuff/taur-laying.svg"
  5804. }
  5805. },
  5806. },
  5807. [
  5808. {
  5809. name: "Puffball",
  5810. height: math.unit(6, "inches")
  5811. },
  5812. {
  5813. name: "Normalpuff",
  5814. height: math.unit(5.75, "feet")
  5815. },
  5816. {
  5817. name: "Macropuff",
  5818. height: math.unit(1500, "feet"),
  5819. default: true
  5820. },
  5821. {
  5822. name: "Megapuff",
  5823. height: math.unit(500, "miles")
  5824. },
  5825. {
  5826. name: "Gigapuff",
  5827. height: math.unit(250000, "miles")
  5828. },
  5829. {
  5830. name: "Omegapuff",
  5831. height: math.unit(1000, "lightyears")
  5832. },
  5833. ]
  5834. ))
  5835. characterMakers.push(() => makeCharacter(
  5836. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5837. {
  5838. stomping: {
  5839. height: math.unit(6, "feet"),
  5840. weight: math.unit(170, "lbs"),
  5841. name: "Stomping",
  5842. image: {
  5843. source: "./media/characters/vivian/stomping.svg"
  5844. }
  5845. },
  5846. sitting: {
  5847. height: math.unit(6 / 1.75, "feet"),
  5848. weight: math.unit(170, "lbs"),
  5849. name: "Sitting",
  5850. image: {
  5851. source: "./media/characters/vivian/sitting.svg",
  5852. bottom: 1 / 6.4,
  5853. extra: 1,
  5854. }
  5855. },
  5856. },
  5857. [
  5858. {
  5859. name: "Normal",
  5860. height: math.unit(7, "feet"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Macro",
  5865. height: math.unit(10, "stories")
  5866. },
  5867. {
  5868. name: "Macro+",
  5869. height: math.unit(30, "stories")
  5870. },
  5871. {
  5872. name: "Megamacro",
  5873. height: math.unit(10, "miles")
  5874. },
  5875. {
  5876. name: "Megamacro+",
  5877. height: math.unit(2750000, "meters")
  5878. },
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(160, "lbs"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/prince/front.svg",
  5890. extra: 3400 / 3000
  5891. }
  5892. },
  5893. jumping: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(160, "lbs"),
  5896. name: "Jumping",
  5897. image: {
  5898. source: "./media/characters/prince/jump.svg",
  5899. extra: 2555 / 2134
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(7.75, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Not cute",
  5911. height: math.unit(17, "feet")
  5912. },
  5913. {
  5914. name: "I said NOT",
  5915. height: math.unit(91, "feet")
  5916. },
  5917. {
  5918. name: "Please stop",
  5919. height: math.unit(560, "feet")
  5920. },
  5921. {
  5922. name: "What have you done",
  5923. height: math.unit(2200, "feet")
  5924. },
  5925. {
  5926. name: "Deer God",
  5927. height: math.unit(3.6, "miles")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5933. {
  5934. standing: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(300, "lbs"),
  5937. name: "Standing",
  5938. image: {
  5939. source: "./media/characters/psymon/standing.svg",
  5940. extra: 1888 / 1810,
  5941. bottom: 0.05
  5942. }
  5943. },
  5944. slithering: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(300, "lbs"),
  5947. name: "Slithering",
  5948. image: {
  5949. source: "./media/characters/psymon/slithering.svg",
  5950. extra: 1330 / 1224
  5951. }
  5952. },
  5953. slitheringAlt: {
  5954. height: math.unit(6, "feet"),
  5955. weight: math.unit(300, "lbs"),
  5956. name: "Slithering (Alt)",
  5957. image: {
  5958. source: "./media/characters/psymon/slithering-alt.svg",
  5959. extra: 1330 / 1224
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(11.25, "feet"),
  5967. default: true
  5968. },
  5969. {
  5970. name: "Large",
  5971. height: math.unit(27, "feet")
  5972. },
  5973. {
  5974. name: "Giant",
  5975. height: math.unit(87, "feet")
  5976. },
  5977. {
  5978. name: "Macro",
  5979. height: math.unit(365, "feet")
  5980. },
  5981. {
  5982. name: "Megamacro",
  5983. height: math.unit(3, "miles")
  5984. },
  5985. {
  5986. name: "World Serpent",
  5987. height: math.unit(8000, "miles")
  5988. },
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(6, "feet"),
  5996. weight: math.unit(180, "lbs"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/daimos/front.svg",
  6000. extra: 4160 / 3897,
  6001. bottom: 0.021
  6002. }
  6003. }
  6004. },
  6005. [
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(8, "feet"),
  6009. default: true
  6010. },
  6011. {
  6012. name: "Big Dog",
  6013. height: math.unit(22, "feet")
  6014. },
  6015. {
  6016. name: "Macro",
  6017. height: math.unit(127, "feet")
  6018. },
  6019. {
  6020. name: "Megamacro",
  6021. height: math.unit(3600, "feet")
  6022. },
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6027. {
  6028. side: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(180, "lbs"),
  6031. name: "Side",
  6032. image: {
  6033. source: "./media/characters/blake/side.svg",
  6034. extra: 1212 / 1120,
  6035. bottom: 0.05
  6036. }
  6037. },
  6038. crouched: {
  6039. height: math.unit(6 * 0.57, "feet"),
  6040. weight: math.unit(180, "lbs"),
  6041. name: "Crouched",
  6042. image: {
  6043. source: "./media/characters/blake/crouched.svg",
  6044. extra: 840 / 587,
  6045. bottom: 0.04
  6046. }
  6047. },
  6048. bent: {
  6049. height: math.unit(6 * 0.75, "feet"),
  6050. weight: math.unit(180, "lbs"),
  6051. name: "Bent",
  6052. image: {
  6053. source: "./media/characters/blake/bent.svg",
  6054. extra: 592 / 544,
  6055. bottom: 0.035
  6056. }
  6057. },
  6058. },
  6059. [
  6060. {
  6061. name: "Normal",
  6062. height: math.unit(8 + 1 / 6, "feet"),
  6063. default: true
  6064. },
  6065. {
  6066. name: "Big Backside",
  6067. height: math.unit(37, "feet")
  6068. },
  6069. {
  6070. name: "Subway Shredder",
  6071. height: math.unit(72, "feet")
  6072. },
  6073. {
  6074. name: "City Carver",
  6075. height: math.unit(1675, "feet")
  6076. },
  6077. {
  6078. name: "Tectonic Tweaker",
  6079. height: math.unit(2300, "miles")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(6, "feet"),
  6088. weight: math.unit(180, "lbs"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/guisetto/front.svg",
  6092. extra: 856 / 817,
  6093. bottom: 0.06
  6094. }
  6095. },
  6096. airborne: {
  6097. height: math.unit(6, "feet"),
  6098. weight: math.unit(180, "lbs"),
  6099. name: "Airborne",
  6100. image: {
  6101. source: "./media/characters/guisetto/airborne.svg",
  6102. extra: 584 / 525
  6103. }
  6104. },
  6105. },
  6106. [
  6107. {
  6108. name: "Normal",
  6109. height: math.unit(10 + 11 / 12, "feet"),
  6110. default: true
  6111. },
  6112. {
  6113. name: "Large",
  6114. height: math.unit(35, "feet")
  6115. },
  6116. {
  6117. name: "Macro",
  6118. height: math.unit(475, "feet")
  6119. },
  6120. ]
  6121. ))
  6122. characterMakers.push(() => makeCharacter(
  6123. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6124. {
  6125. front: {
  6126. height: math.unit(6, "feet"),
  6127. weight: math.unit(180, "lbs"),
  6128. name: "Front",
  6129. image: {
  6130. source: "./media/characters/luxor/front.svg",
  6131. extra: 2940 / 2152
  6132. }
  6133. },
  6134. back: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(180, "lbs"),
  6137. name: "Back",
  6138. image: {
  6139. source: "./media/characters/luxor/back.svg",
  6140. extra: 1083 / 960
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(5 + 5 / 6, "feet"),
  6148. default: true
  6149. },
  6150. {
  6151. name: "Lamp",
  6152. height: math.unit(50, "feet")
  6153. },
  6154. {
  6155. name: "Lämp",
  6156. height: math.unit(300, "feet")
  6157. },
  6158. {
  6159. name: "The sun is a lamp",
  6160. height: math.unit(250000, "miles")
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6166. {
  6167. front: {
  6168. height: math.unit(6, "feet"),
  6169. weight: math.unit(50, "lbs"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/huoyan/front.svg"
  6173. }
  6174. },
  6175. side: {
  6176. height: math.unit(6, "feet"),
  6177. weight: math.unit(180, "lbs"),
  6178. name: "Side",
  6179. image: {
  6180. source: "./media/characters/huoyan/side.svg"
  6181. }
  6182. },
  6183. },
  6184. [
  6185. {
  6186. name: "Chef",
  6187. height: math.unit(9, "feet")
  6188. },
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(65, "feet"),
  6192. default: true
  6193. },
  6194. {
  6195. name: "Macro",
  6196. height: math.unit(780, "feet")
  6197. },
  6198. {
  6199. name: "Flaming Mountain",
  6200. height: math.unit(4.8, "miles")
  6201. },
  6202. {
  6203. name: "Celestial",
  6204. height: math.unit(765000, "miles")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(5 + 3 / 4, "feet"),
  6213. weight: math.unit(120, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/tails/front.svg"
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(5 + 3 / 4, "feet"),
  6224. default: true
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(4, "feet"),
  6233. weight: math.unit(50, "lbs"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/rainy/front.svg"
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(800, "feet"),
  6244. default: true
  6245. }
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(6, "feet"),
  6253. weight: math.unit(150, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/rainier/front.svg"
  6257. }
  6258. }
  6259. },
  6260. [
  6261. {
  6262. name: "Micro",
  6263. height: math.unit(2, "mm"),
  6264. default: true
  6265. }
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(8 + 4/12, "feet"),
  6273. weight: math.unit(450, "kilograms"),
  6274. volume: math.unit(5, "cups"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/andy-renard/front.svg",
  6278. extra: 1839/1726,
  6279. bottom: 134/1973
  6280. }
  6281. },
  6282. back: {
  6283. height: math.unit(8 + 4/12, "feet"),
  6284. weight: math.unit(450, "kilograms"),
  6285. volume: math.unit(5, "cups"),
  6286. name: "Back",
  6287. image: {
  6288. source: "./media/characters/andy-renard/back.svg",
  6289. extra: 1838/1710,
  6290. bottom: 105/1943
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Tall",
  6297. height: math.unit(8 + 4/12, "feet")
  6298. },
  6299. {
  6300. name: "Mini Macro",
  6301. height: math.unit(15, "feet"),
  6302. default: true
  6303. },
  6304. {
  6305. name: "Macro",
  6306. height: math.unit(100, "feet")
  6307. },
  6308. {
  6309. name: "Mega Macro",
  6310. height: math.unit(1000, "feet")
  6311. },
  6312. {
  6313. name: "Giga Macro",
  6314. height: math.unit(10, "miles")
  6315. },
  6316. {
  6317. name: "God Macro",
  6318. height: math.unit(1, "multiverse")
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(210, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/cimmaron/front-sfw.svg",
  6331. extra: 701 / 676,
  6332. bottom: 0.046
  6333. }
  6334. },
  6335. back: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(210, "lbs"),
  6338. name: "Back",
  6339. image: {
  6340. source: "./media/characters/cimmaron/back-sfw.svg",
  6341. extra: 701 / 676,
  6342. bottom: 0.046
  6343. }
  6344. },
  6345. frontNsfw: {
  6346. height: math.unit(6, "feet"),
  6347. weight: math.unit(210, "lbs"),
  6348. name: "Front (NSFW)",
  6349. image: {
  6350. source: "./media/characters/cimmaron/front-nsfw.svg",
  6351. extra: 701 / 676,
  6352. bottom: 0.046
  6353. }
  6354. },
  6355. backNsfw: {
  6356. height: math.unit(6, "feet"),
  6357. weight: math.unit(210, "lbs"),
  6358. name: "Back (NSFW)",
  6359. image: {
  6360. source: "./media/characters/cimmaron/back-nsfw.svg",
  6361. extra: 701 / 676,
  6362. bottom: 0.046
  6363. }
  6364. },
  6365. dick: {
  6366. height: math.unit(1.714, "feet"),
  6367. name: "Dick",
  6368. image: {
  6369. source: "./media/characters/cimmaron/dick.svg"
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(6, "feet"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Macro Mayor",
  6381. height: math.unit(350, "meters")
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6387. {
  6388. front: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(200, "lbs"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/akari/front.svg",
  6394. extra: 962 / 901,
  6395. bottom: 0.04
  6396. }
  6397. }
  6398. },
  6399. [
  6400. {
  6401. name: "Micro",
  6402. height: math.unit(5, "inches"),
  6403. default: true
  6404. },
  6405. {
  6406. name: "Normal",
  6407. height: math.unit(7, "feet")
  6408. },
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6413. {
  6414. front: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(140, "lbs"),
  6417. name: "Front",
  6418. image: {
  6419. source: "./media/characters/cynosura/front.svg",
  6420. extra: 896 / 847
  6421. }
  6422. },
  6423. back: {
  6424. height: math.unit(6, "feet"),
  6425. weight: math.unit(140, "lbs"),
  6426. name: "Back",
  6427. image: {
  6428. source: "./media/characters/cynosura/back.svg",
  6429. extra: 1365 / 1250
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Micro",
  6436. height: math.unit(4, "inches")
  6437. },
  6438. {
  6439. name: "Normal",
  6440. height: math.unit(5.75, "feet"),
  6441. default: true
  6442. },
  6443. {
  6444. name: "Tall",
  6445. height: math.unit(10, "feet")
  6446. },
  6447. {
  6448. name: "Big",
  6449. height: math.unit(20, "feet")
  6450. },
  6451. {
  6452. name: "Macro",
  6453. height: math.unit(50, "feet")
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6459. {
  6460. front: {
  6461. height: math.unit(13 + 2/12, "feet"),
  6462. weight: math.unit(800, "kg"),
  6463. name: "Front",
  6464. image: {
  6465. source: "./media/characters/gin/front.svg",
  6466. extra: 1312/1191,
  6467. bottom: 45/1357
  6468. }
  6469. },
  6470. mouth: {
  6471. height: math.unit(2.39 * 1.8, "feet"),
  6472. name: "Mouth",
  6473. image: {
  6474. source: "./media/characters/gin/mouth.svg"
  6475. }
  6476. },
  6477. hand: {
  6478. height: math.unit(1.57 * 2.19, "feet"),
  6479. name: "Hand",
  6480. image: {
  6481. source: "./media/characters/gin/hand.svg"
  6482. }
  6483. },
  6484. foot: {
  6485. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6486. name: "Foot",
  6487. image: {
  6488. source: "./media/characters/gin/foot.svg"
  6489. }
  6490. },
  6491. sole: {
  6492. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6493. name: "Sole",
  6494. image: {
  6495. source: "./media/characters/gin/sole.svg"
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Very Small",
  6502. height: math.unit(13 + 2 / 12, "feet")
  6503. },
  6504. {
  6505. name: "Micro",
  6506. height: math.unit(600, "miles")
  6507. },
  6508. {
  6509. name: "Regular",
  6510. height: math.unit(20, "earths"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Macro",
  6515. height: math.unit(2.2, "solarradii")
  6516. },
  6517. {
  6518. name: "Teramacro",
  6519. height: math.unit(1.2, "galaxies")
  6520. },
  6521. {
  6522. name: "Omegamacro",
  6523. height: math.unit(200, "universes")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(6 + 1 / 6, "feet"),
  6532. weight: math.unit(178, "lbs"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/guy/front.svg"
  6536. }
  6537. }
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(6 + 1 / 6, "feet"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Large",
  6547. height: math.unit(25 + 7 / 12, "feet")
  6548. },
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(60 + 9 / 12, "feet")
  6552. },
  6553. {
  6554. name: "Macro+",
  6555. height: math.unit(246, "feet")
  6556. },
  6557. {
  6558. name: "Macro++",
  6559. height: math.unit(878, "feet")
  6560. }
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6565. {
  6566. front: {
  6567. height: math.unit(9, "feet"),
  6568. weight: math.unit(800, "lbs"),
  6569. name: "Front",
  6570. image: {
  6571. source: "./media/characters/tiberius/front.svg",
  6572. extra: 2295 / 2071
  6573. }
  6574. },
  6575. back: {
  6576. height: math.unit(9, "feet"),
  6577. weight: math.unit(800, "lbs"),
  6578. name: "Back",
  6579. image: {
  6580. source: "./media/characters/tiberius/back.svg",
  6581. extra: 2373 / 2160
  6582. }
  6583. },
  6584. },
  6585. [
  6586. {
  6587. name: "Normal",
  6588. height: math.unit(9, "feet"),
  6589. default: true
  6590. }
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6595. {
  6596. front: {
  6597. height: math.unit(6, "feet"),
  6598. weight: math.unit(600, "lbs"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/surgo/front.svg",
  6602. extra: 3591 / 2227
  6603. }
  6604. },
  6605. back: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(600, "lbs"),
  6608. name: "Back",
  6609. image: {
  6610. source: "./media/characters/surgo/back.svg",
  6611. extra: 3557 / 2228
  6612. }
  6613. },
  6614. laying: {
  6615. height: math.unit(6 * 0.85, "feet"),
  6616. weight: math.unit(600, "lbs"),
  6617. name: "Laying",
  6618. image: {
  6619. source: "./media/characters/surgo/laying.svg"
  6620. }
  6621. },
  6622. },
  6623. [
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(6, "feet"),
  6627. default: true
  6628. }
  6629. ]
  6630. ))
  6631. characterMakers.push(() => makeCharacter(
  6632. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6633. {
  6634. side: {
  6635. height: math.unit(6, "feet"),
  6636. weight: math.unit(150, "lbs"),
  6637. name: "Side",
  6638. image: {
  6639. source: "./media/characters/cibus/side.svg",
  6640. extra: 800 / 400
  6641. }
  6642. },
  6643. },
  6644. [
  6645. {
  6646. name: "Normal",
  6647. height: math.unit(6, "feet"),
  6648. default: true
  6649. }
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(240, "lbs"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/nibbles/front.svg"
  6661. }
  6662. },
  6663. side: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(240, "lbs"),
  6666. name: "Side",
  6667. image: {
  6668. source: "./media/characters/nibbles/side.svg"
  6669. }
  6670. },
  6671. },
  6672. [
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(9, "feet"),
  6676. default: true
  6677. }
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6682. {
  6683. side: {
  6684. height: math.unit(5 + 1 / 6, "feet"),
  6685. weight: math.unit(130, "lbs"),
  6686. name: "Side",
  6687. image: {
  6688. source: "./media/characters/rikky/side.svg",
  6689. extra: 851 / 801
  6690. }
  6691. },
  6692. },
  6693. [
  6694. {
  6695. name: "Normal",
  6696. height: math.unit(5 + 1 / 6, "feet")
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(152, "feet"),
  6701. default: true
  6702. },
  6703. {
  6704. name: "Megamacro",
  6705. height: math.unit(7, "miles")
  6706. }
  6707. ]
  6708. ))
  6709. characterMakers.push(() => makeCharacter(
  6710. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6711. {
  6712. side: {
  6713. height: math.unit(370, "cm"),
  6714. weight: math.unit(350, "lbs"),
  6715. name: "Side",
  6716. image: {
  6717. source: "./media/characters/malfressa/side.svg"
  6718. }
  6719. },
  6720. walking: {
  6721. height: math.unit(370, "cm"),
  6722. weight: math.unit(350, "lbs"),
  6723. name: "Walking",
  6724. image: {
  6725. source: "./media/characters/malfressa/walking.svg"
  6726. }
  6727. },
  6728. feral: {
  6729. height: math.unit(2500, "cm"),
  6730. weight: math.unit(100000, "lbs"),
  6731. name: "Feral",
  6732. image: {
  6733. source: "./media/characters/malfressa/feral.svg",
  6734. extra: 2108 / 837,
  6735. bottom: 0.02
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(370, "cm")
  6743. },
  6744. {
  6745. name: "Macro",
  6746. height: math.unit(300, "meters"),
  6747. default: true
  6748. }
  6749. ]
  6750. ))
  6751. characterMakers.push(() => makeCharacter(
  6752. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6753. {
  6754. front: {
  6755. height: math.unit(6, "feet"),
  6756. weight: math.unit(60, "kg"),
  6757. name: "Front",
  6758. image: {
  6759. source: "./media/characters/jaro/front.svg",
  6760. extra: 845/817,
  6761. bottom: 45/890
  6762. }
  6763. },
  6764. back: {
  6765. height: math.unit(6, "feet"),
  6766. weight: math.unit(60, "kg"),
  6767. name: "Back",
  6768. image: {
  6769. source: "./media/characters/jaro/back.svg",
  6770. extra: 847/817,
  6771. bottom: 34/881
  6772. }
  6773. },
  6774. },
  6775. [
  6776. {
  6777. name: "Micro",
  6778. height: math.unit(7, "inches")
  6779. },
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(5.5, "feet"),
  6783. default: true
  6784. },
  6785. {
  6786. name: "Minimacro",
  6787. height: math.unit(20, "feet")
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(200, "meters")
  6792. }
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6797. {
  6798. front: {
  6799. height: math.unit(6, "feet"),
  6800. weight: math.unit(195, "lb"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/rogue/front.svg"
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(90, "feet"),
  6811. default: true
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6817. {
  6818. standing: {
  6819. height: math.unit(5 + 8 / 12, "feet"),
  6820. weight: math.unit(140, "lb"),
  6821. name: "Standing",
  6822. image: {
  6823. source: "./media/characters/piper/standing.svg",
  6824. extra: 1440/1284,
  6825. bottom: 66/1506
  6826. }
  6827. },
  6828. running: {
  6829. height: math.unit(5 + 8 / 12, "feet"),
  6830. weight: math.unit(140, "lb"),
  6831. name: "Running",
  6832. image: {
  6833. source: "./media/characters/piper/running.svg",
  6834. extra: 3948/3655,
  6835. bottom: 0/3948
  6836. }
  6837. },
  6838. sole: {
  6839. height: math.unit(0.81, "feet"),
  6840. weight: math.unit(2, "kg"),
  6841. name: "Sole",
  6842. image: {
  6843. source: "./media/characters/piper/sole.svg"
  6844. }
  6845. },
  6846. nipple: {
  6847. height: math.unit(0.25, "feet"),
  6848. weight: math.unit(1.5, "lb"),
  6849. name: "Nipple",
  6850. image: {
  6851. source: "./media/characters/piper/nipple.svg"
  6852. }
  6853. },
  6854. head: {
  6855. height: math.unit(1.1, "feet"),
  6856. name: "Head",
  6857. image: {
  6858. source: "./media/characters/piper/head.svg"
  6859. }
  6860. },
  6861. },
  6862. [
  6863. {
  6864. name: "Micro",
  6865. height: math.unit(2, "inches")
  6866. },
  6867. {
  6868. name: "Normal",
  6869. height: math.unit(5 + 8 / 12, "feet")
  6870. },
  6871. {
  6872. name: "Macro",
  6873. height: math.unit(250, "feet"),
  6874. default: true
  6875. },
  6876. {
  6877. name: "Megamacro",
  6878. height: math.unit(7, "miles")
  6879. },
  6880. ]
  6881. ))
  6882. characterMakers.push(() => makeCharacter(
  6883. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6884. {
  6885. front: {
  6886. height: math.unit(6, "feet"),
  6887. weight: math.unit(220, "lb"),
  6888. name: "Front",
  6889. image: {
  6890. source: "./media/characters/gemini/front.svg"
  6891. }
  6892. },
  6893. back: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(220, "lb"),
  6896. name: "Back",
  6897. image: {
  6898. source: "./media/characters/gemini/back.svg"
  6899. }
  6900. },
  6901. kneeling: {
  6902. height: math.unit(6 / 1.5, "feet"),
  6903. weight: math.unit(220, "lb"),
  6904. name: "Kneeling",
  6905. image: {
  6906. source: "./media/characters/gemini/kneeling.svg",
  6907. bottom: 0.02
  6908. }
  6909. },
  6910. },
  6911. [
  6912. {
  6913. name: "Macro",
  6914. height: math.unit(300, "meters"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Megamacro",
  6919. height: math.unit(6900, "meters")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6925. {
  6926. anthro: {
  6927. height: math.unit(2.35, "meters"),
  6928. weight: math.unit(73, "kg"),
  6929. name: "Anthro",
  6930. image: {
  6931. source: "./media/characters/alicia/anthro.svg",
  6932. extra: 2571 / 2385,
  6933. bottom: 75 / 2648
  6934. }
  6935. },
  6936. paw: {
  6937. height: math.unit(1.32, "feet"),
  6938. name: "Paw",
  6939. image: {
  6940. source: "./media/characters/alicia/paw.svg"
  6941. }
  6942. },
  6943. feral: {
  6944. height: math.unit(1.69, "meters"),
  6945. weight: math.unit(73, "kg"),
  6946. name: "Feral",
  6947. image: {
  6948. source: "./media/characters/alicia/feral.svg",
  6949. extra: 2123 / 1715,
  6950. bottom: 222 / 2349
  6951. }
  6952. },
  6953. },
  6954. [
  6955. {
  6956. name: "Normal",
  6957. height: math.unit(2.35, "meters")
  6958. },
  6959. {
  6960. name: "Macro",
  6961. height: math.unit(60, "meters"),
  6962. default: true
  6963. },
  6964. {
  6965. name: "Megamacro",
  6966. height: math.unit(10000, "kilometers")
  6967. },
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(7, "feet"),
  6975. weight: math.unit(250, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/archy/front.svg"
  6979. }
  6980. }
  6981. },
  6982. [
  6983. {
  6984. name: "Micro",
  6985. height: math.unit(1, "inch")
  6986. },
  6987. {
  6988. name: "Shorty",
  6989. height: math.unit(5, "feet")
  6990. },
  6991. {
  6992. name: "Normal",
  6993. height: math.unit(7, "feet")
  6994. },
  6995. {
  6996. name: "Macro",
  6997. height: math.unit(600, "meters"),
  6998. default: true
  6999. },
  7000. {
  7001. name: "Megamacro",
  7002. height: math.unit(1, "mile")
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7008. {
  7009. front: {
  7010. height: math.unit(1.65, "meters"),
  7011. weight: math.unit(74, "kg"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/berri/front.svg",
  7015. extra: 857 / 837,
  7016. bottom: 18 / 877
  7017. }
  7018. },
  7019. bum: {
  7020. height: math.unit(1.46, "feet"),
  7021. name: "Bum",
  7022. image: {
  7023. source: "./media/characters/berri/bum.svg"
  7024. }
  7025. },
  7026. mouth: {
  7027. height: math.unit(0.44, "feet"),
  7028. name: "Mouth",
  7029. image: {
  7030. source: "./media/characters/berri/mouth.svg"
  7031. }
  7032. },
  7033. paw: {
  7034. height: math.unit(0.826, "feet"),
  7035. name: "Paw",
  7036. image: {
  7037. source: "./media/characters/berri/paw.svg"
  7038. }
  7039. },
  7040. },
  7041. [
  7042. {
  7043. name: "Normal",
  7044. height: math.unit(1.65, "meters")
  7045. },
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(60, "m"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Megamacro",
  7053. height: math.unit(9.213, "km")
  7054. },
  7055. {
  7056. name: "Planet Eater",
  7057. height: math.unit(489, "megameters")
  7058. },
  7059. {
  7060. name: "Teramacro",
  7061. height: math.unit(2471635000000, "meters")
  7062. },
  7063. {
  7064. name: "Examacro",
  7065. height: math.unit(8.0624e+26, "meters")
  7066. }
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(1.72, "meters"),
  7074. weight: math.unit(68, "kg"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/lexi/front.svg"
  7078. }
  7079. }
  7080. },
  7081. [
  7082. {
  7083. name: "Very Smol",
  7084. height: math.unit(10, "mm")
  7085. },
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(6.8, "cm"),
  7089. default: true
  7090. },
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(1.72, "m")
  7094. }
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(1.69, "meters"),
  7102. weight: math.unit(68, "kg"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/martin/front.svg",
  7106. extra: 596 / 581
  7107. }
  7108. }
  7109. },
  7110. [
  7111. {
  7112. name: "Micro",
  7113. height: math.unit(6.85, "cm"),
  7114. default: true
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(1.69, "m")
  7119. }
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7124. {
  7125. front: {
  7126. height: math.unit(1.69, "meters"),
  7127. weight: math.unit(68, "kg"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/juno/front.svg"
  7131. }
  7132. }
  7133. },
  7134. [
  7135. {
  7136. name: "Micro",
  7137. height: math.unit(7, "cm")
  7138. },
  7139. {
  7140. name: "Normal",
  7141. height: math.unit(1.89, "m")
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(353, "meters"),
  7146. default: true
  7147. }
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(1.93, "meters"),
  7155. weight: math.unit(83, "kg"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/samantha/front.svg"
  7159. }
  7160. },
  7161. frontClothed: {
  7162. height: math.unit(1.93, "meters"),
  7163. weight: math.unit(83, "kg"),
  7164. name: "Front (Clothed)",
  7165. image: {
  7166. source: "./media/characters/samantha/front-clothed.svg"
  7167. }
  7168. },
  7169. back: {
  7170. height: math.unit(1.93, "meters"),
  7171. weight: math.unit(83, "kg"),
  7172. name: "Back",
  7173. image: {
  7174. source: "./media/characters/samantha/back.svg"
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(1.93, "m")
  7182. },
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(74, "meters"),
  7186. default: true
  7187. },
  7188. {
  7189. name: "Macro+",
  7190. height: math.unit(223, "meters"),
  7191. },
  7192. {
  7193. name: "Megamacro",
  7194. height: math.unit(8381, "meters"),
  7195. },
  7196. {
  7197. name: "Megamacro+",
  7198. height: math.unit(12000, "kilometers")
  7199. },
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(1.92, "meters"),
  7207. weight: math.unit(80, "kg"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/dr-clay/front.svg"
  7211. }
  7212. },
  7213. frontClothed: {
  7214. height: math.unit(1.92, "meters"),
  7215. weight: math.unit(80, "kg"),
  7216. name: "Front (Clothed)",
  7217. image: {
  7218. source: "./media/characters/dr-clay/front-clothed.svg"
  7219. }
  7220. }
  7221. },
  7222. [
  7223. {
  7224. name: "Normal",
  7225. height: math.unit(1.92, "m")
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(214, "meters"),
  7230. default: true
  7231. },
  7232. {
  7233. name: "Macro+",
  7234. height: math.unit(12.237, "meters"),
  7235. },
  7236. {
  7237. name: "Megamacro",
  7238. height: math.unit(557, "megameters"),
  7239. },
  7240. {
  7241. name: "Unimaginable",
  7242. height: math.unit(120e9, "lightyears")
  7243. },
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(2, "meters"),
  7251. weight: math.unit(80, "kg"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7255. }
  7256. }
  7257. },
  7258. [
  7259. {
  7260. name: "Teramacro",
  7261. height: math.unit(500000, "lightyears"),
  7262. default: true
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7268. {
  7269. crux: {
  7270. height: math.unit(2, "meters"),
  7271. weight: math.unit(150, "kg"),
  7272. name: "Crux",
  7273. image: {
  7274. source: "./media/characters/vemus/crux.svg",
  7275. extra: 1074/936,
  7276. bottom: 23/1097
  7277. }
  7278. },
  7279. skunkTanuki: {
  7280. height: math.unit(2, "meters"),
  7281. weight: math.unit(150, "kg"),
  7282. name: "Skunk-Tanuki",
  7283. image: {
  7284. source: "./media/characters/vemus/skunk-tanuki.svg",
  7285. extra: 926/893,
  7286. bottom: 20/946
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(4, "meters"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Big",
  7298. height: math.unit(8, "meters")
  7299. },
  7300. {
  7301. name: "Macro",
  7302. height: math.unit(100, "meters")
  7303. },
  7304. {
  7305. name: "Macro+",
  7306. height: math.unit(1500, "meters")
  7307. },
  7308. {
  7309. name: "Stellar",
  7310. height: math.unit(14e8, "meters")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(2, "meters"),
  7319. weight: math.unit(70, "kg"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/beherit/front.svg",
  7323. extra: 1234/1109,
  7324. bottom: 55/1289
  7325. }
  7326. }
  7327. },
  7328. [
  7329. {
  7330. name: "Normal",
  7331. height: math.unit(6, "feet")
  7332. },
  7333. {
  7334. name: "Lorg",
  7335. height: math.unit(25, "feet"),
  7336. default: true
  7337. },
  7338. {
  7339. name: "Lorger",
  7340. height: math.unit(75, "feet")
  7341. },
  7342. {
  7343. name: "Macro",
  7344. height: math.unit(200, "meters")
  7345. },
  7346. ]
  7347. ))
  7348. characterMakers.push(() => makeCharacter(
  7349. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7350. {
  7351. front: {
  7352. height: math.unit(2, "meters"),
  7353. weight: math.unit(150, "kg"),
  7354. name: "Front",
  7355. image: {
  7356. source: "./media/characters/everett/front.svg",
  7357. extra: 1017/866,
  7358. bottom: 86/1103
  7359. }
  7360. },
  7361. paw: {
  7362. height: math.unit(2 / 3.6, "meters"),
  7363. name: "Paw",
  7364. image: {
  7365. source: "./media/characters/everett/paw.svg"
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Normal",
  7372. height: math.unit(15, "feet"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Lorg",
  7377. height: math.unit(70, "feet"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Lorger",
  7382. height: math.unit(250, "feet")
  7383. },
  7384. {
  7385. name: "Macro",
  7386. height: math.unit(500, "meters")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7392. {
  7393. front: {
  7394. height: math.unit(2, "meters"),
  7395. weight: math.unit(86, "kg"),
  7396. name: "Front",
  7397. image: {
  7398. source: "./media/characters/rose/front.svg",
  7399. extra: 1785/1636,
  7400. bottom: 30/1815
  7401. },
  7402. form: "liom",
  7403. default: true
  7404. },
  7405. frontSporty: {
  7406. height: math.unit(2, "meters"),
  7407. weight: math.unit(86, "kg"),
  7408. name: "Front (Sporty)",
  7409. image: {
  7410. source: "./media/characters/rose/front-sporty.svg",
  7411. extra: 350/335,
  7412. bottom: 10/360
  7413. },
  7414. form: "liom"
  7415. },
  7416. frontAlt: {
  7417. height: math.unit(1.6, "meters"),
  7418. weight: math.unit(86, "kg"),
  7419. name: "Front (Alt)",
  7420. image: {
  7421. source: "./media/characters/rose/front-alt.svg",
  7422. extra: 299/283,
  7423. bottom: 3/302
  7424. },
  7425. form: "liom"
  7426. },
  7427. plush: {
  7428. height: math.unit(2, "meters"),
  7429. weight: math.unit(86/3, "kg"),
  7430. name: "Plush",
  7431. image: {
  7432. source: "./media/characters/rose/plush.svg",
  7433. extra: 361/337,
  7434. bottom: 11/372
  7435. },
  7436. form: "plush",
  7437. default: true
  7438. },
  7439. faeStanding: {
  7440. height: math.unit(10, "cm"),
  7441. weight: math.unit(10, "grams"),
  7442. name: "Standing",
  7443. image: {
  7444. source: "./media/characters/rose/fae-standing.svg",
  7445. extra: 1189/1060,
  7446. bottom: 27/1216
  7447. },
  7448. form: "fae",
  7449. default: true
  7450. },
  7451. faeSitting: {
  7452. height: math.unit(5, "cm"),
  7453. weight: math.unit(10, "grams"),
  7454. name: "Sitting",
  7455. image: {
  7456. source: "./media/characters/rose/fae-sitting.svg",
  7457. extra: 737/577,
  7458. bottom: 356/1093
  7459. },
  7460. form: "fae"
  7461. },
  7462. faePaw: {
  7463. height: math.unit(1.35, "cm"),
  7464. name: "Paw",
  7465. image: {
  7466. source: "./media/characters/rose/fae-paw.svg"
  7467. },
  7468. form: "fae"
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "True Micro",
  7474. height: math.unit(9, "cm"),
  7475. form: "liom"
  7476. },
  7477. {
  7478. name: "Micro",
  7479. height: math.unit(16, "cm"),
  7480. form: "liom"
  7481. },
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(1.85, "meters"),
  7485. default: true,
  7486. form: "liom"
  7487. },
  7488. {
  7489. name: "Mini-Macro",
  7490. height: math.unit(5, "meters"),
  7491. form: "liom"
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(15, "meters"),
  7496. form: "liom"
  7497. },
  7498. {
  7499. name: "True Macro",
  7500. height: math.unit(40, "meters"),
  7501. form: "liom"
  7502. },
  7503. {
  7504. name: "City Scale",
  7505. height: math.unit(1, "km"),
  7506. form: "liom"
  7507. },
  7508. {
  7509. name: "Plushie",
  7510. height: math.unit(9, "cm"),
  7511. form: "plush",
  7512. default: true
  7513. },
  7514. {
  7515. name: "Fae",
  7516. height: math.unit(10, "cm"),
  7517. form: "fae",
  7518. default: true
  7519. },
  7520. ],
  7521. {
  7522. "liom": {
  7523. name: "Liom"
  7524. },
  7525. "plush": {
  7526. name: "Plush"
  7527. },
  7528. "fae": {
  7529. name: "Fae Fox",
  7530. default: true
  7531. }
  7532. }
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(2, "meters"),
  7539. weight: math.unit(350, "lbs"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/regal/front.svg"
  7543. }
  7544. },
  7545. back: {
  7546. height: math.unit(2, "meters"),
  7547. weight: math.unit(350, "lbs"),
  7548. name: "Back",
  7549. image: {
  7550. source: "./media/characters/regal/back.svg"
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Macro",
  7557. height: math.unit(350, "feet"),
  7558. default: true
  7559. }
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(4 + 11 / 12, "feet"),
  7567. weight: math.unit(100, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/opal/front.svg"
  7571. }
  7572. },
  7573. frontAlt: {
  7574. height: math.unit(4 + 11 / 12, "feet"),
  7575. weight: math.unit(100, "lbs"),
  7576. name: "Front (Alt)",
  7577. image: {
  7578. source: "./media/characters/opal/front-alt.svg"
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Small",
  7585. height: math.unit(4 + 11 / 12, "feet")
  7586. },
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(20, "feet"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(120, "feet")
  7595. },
  7596. {
  7597. name: "Megamacro",
  7598. height: math.unit(80, "miles")
  7599. },
  7600. {
  7601. name: "True Size",
  7602. height: math.unit(100000, "lightyears")
  7603. },
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(200, "lbs"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/vector-wuff/front.svg"
  7615. }
  7616. }
  7617. },
  7618. [
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(2.8, "meters")
  7622. },
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(450, "meters"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Megamacro",
  7630. height: math.unit(15, "kilometers")
  7631. }
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(256, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/dannik/front.svg"
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(69.57, "meters"),
  7650. default: true
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(120, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/azura-saharah/front.svg"
  7663. }
  7664. },
  7665. back: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(120, "lbs"),
  7668. name: "Back",
  7669. image: {
  7670. source: "./media/characters/azura-saharah/back.svg"
  7671. }
  7672. },
  7673. },
  7674. [
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(100, "feet"),
  7678. default: true
  7679. },
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7684. {
  7685. side: {
  7686. height: math.unit(5 + 4 / 12, "feet"),
  7687. weight: math.unit(163, "lbs"),
  7688. name: "Side",
  7689. image: {
  7690. source: "./media/characters/kennedy/side.svg"
  7691. }
  7692. }
  7693. },
  7694. [
  7695. {
  7696. name: "Standard Doggo",
  7697. height: math.unit(5 + 4 / 12, "feet")
  7698. },
  7699. {
  7700. name: "Big Doggo",
  7701. height: math.unit(25 + 3 / 12, "feet"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(5 + 5/12, "feet"),
  7711. weight: math.unit(100, "lbs"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/odios-de-lunar/front.svg",
  7715. extra: 1468/1323,
  7716. bottom: 22/1490
  7717. }
  7718. }
  7719. },
  7720. [
  7721. {
  7722. name: "Micro",
  7723. height: math.unit(3, "inches")
  7724. },
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(5.5, "feet"),
  7728. default: true
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(100, "feet")
  7733. },
  7734. ]
  7735. ))
  7736. characterMakers.push(() => makeCharacter(
  7737. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7738. {
  7739. back: {
  7740. height: math.unit(6, "feet"),
  7741. weight: math.unit(220, "lbs"),
  7742. name: "Back",
  7743. image: {
  7744. source: "./media/characters/mandake/back.svg"
  7745. }
  7746. }
  7747. },
  7748. [
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(7, "feet"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(78, "feet")
  7757. },
  7758. {
  7759. name: "Macro+",
  7760. height: math.unit(300, "meters")
  7761. },
  7762. {
  7763. name: "Macro++",
  7764. height: math.unit(2400, "feet")
  7765. },
  7766. {
  7767. name: "Megamacro",
  7768. height: math.unit(5167, "meters")
  7769. },
  7770. {
  7771. name: "Gigamacro",
  7772. height: math.unit(41769, "miles")
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(120, "lbs"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/yozey/front.svg"
  7785. }
  7786. },
  7787. frontAlt: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(120, "lbs"),
  7790. name: "Front (Alt)",
  7791. image: {
  7792. source: "./media/characters/yozey/front-alt.svg"
  7793. }
  7794. },
  7795. side: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(120, "lbs"),
  7798. name: "Side",
  7799. image: {
  7800. source: "./media/characters/yozey/side.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Micro",
  7807. height: math.unit(3, "inches"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(6, "feet")
  7813. }
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(103, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/valeska-voss/front.svg"
  7825. }
  7826. }
  7827. },
  7828. [
  7829. {
  7830. name: "Mini-Sized Sub",
  7831. height: math.unit(3.1, "inches")
  7832. },
  7833. {
  7834. name: "Mid-Sized Sub",
  7835. height: math.unit(6.2, "inches")
  7836. },
  7837. {
  7838. name: "Full-Sized Sub",
  7839. height: math.unit(9.3, "inches")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(5 + 2 / 12, "foot"),
  7844. default: true
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(160, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/gene-zeta/front.svg",
  7857. extra: 3006 / 2826,
  7858. bottom: 182 / 3188
  7859. }
  7860. }
  7861. },
  7862. [
  7863. {
  7864. name: "Micro",
  7865. height: math.unit(6, "inches")
  7866. },
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(5 + 11 / 12, "foot"),
  7870. default: true
  7871. },
  7872. {
  7873. name: "Macro",
  7874. height: math.unit(140, "feet")
  7875. },
  7876. {
  7877. name: "Supercharged",
  7878. height: math.unit(2500, "feet")
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(350, "lbs"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/razinox/front.svg",
  7891. extra: 1686 / 1548,
  7892. bottom: 28.2 / 1868
  7893. }
  7894. },
  7895. back: {
  7896. height: math.unit(6, "feet"),
  7897. weight: math.unit(350, "lbs"),
  7898. name: "Back",
  7899. image: {
  7900. source: "./media/characters/razinox/back.svg",
  7901. extra: 1660 / 1590,
  7902. bottom: 15 / 1665
  7903. }
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "Normal",
  7909. height: math.unit(10 + 8 / 12, "foot")
  7910. },
  7911. {
  7912. name: "Minimacro",
  7913. height: math.unit(15, "foot")
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(60, "foot"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Megamacro",
  7922. height: math.unit(5, "miles")
  7923. },
  7924. {
  7925. name: "Gigamacro",
  7926. height: math.unit(6000, "miles")
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(6, "feet"),
  7935. weight: math.unit(150, "lbs"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/cobalt/front.svg"
  7939. }
  7940. }
  7941. },
  7942. [
  7943. {
  7944. name: "Normal",
  7945. height: math.unit(8 + 1 / 12, "foot")
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(111, "foot"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Supracosmic",
  7954. height: math.unit(1e42, "feet")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(5, "inches"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/amanda/front.svg",
  7966. extra: 926/791,
  7967. bottom: 38/964
  7968. }
  7969. },
  7970. back: {
  7971. height: math.unit(5, "inches"),
  7972. name: "Back",
  7973. image: {
  7974. source: "./media/characters/amanda/back.svg",
  7975. extra: 909/805,
  7976. bottom: 43/952
  7977. }
  7978. },
  7979. },
  7980. [
  7981. {
  7982. name: "Micro",
  7983. height: math.unit(5, "inches"),
  7984. default: true
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(2.75, "meters"),
  7993. weight: math.unit(1200, "lb"),
  7994. name: "Front",
  7995. image: {
  7996. source: "./media/characters/teal/front.svg",
  7997. extra: 2463 / 2320,
  7998. bottom: 166 / 2629
  7999. }
  8000. },
  8001. back: {
  8002. height: math.unit(2.75, "meters"),
  8003. weight: math.unit(1200, "lb"),
  8004. name: "Back",
  8005. image: {
  8006. source: "./media/characters/teal/back.svg",
  8007. extra: 2580 / 2489,
  8008. bottom: 151 / 2731
  8009. }
  8010. },
  8011. sitting: {
  8012. height: math.unit(1.9, "meters"),
  8013. weight: math.unit(1200, "lb"),
  8014. name: "Sitting",
  8015. image: {
  8016. source: "./media/characters/teal/sitting.svg",
  8017. extra: 623 / 590,
  8018. bottom: 121 / 744
  8019. }
  8020. },
  8021. standing: {
  8022. height: math.unit(2.75, "meters"),
  8023. weight: math.unit(1200, "lb"),
  8024. name: "Standing",
  8025. image: {
  8026. source: "./media/characters/teal/standing.svg",
  8027. extra: 923 / 893,
  8028. bottom: 60 / 983
  8029. }
  8030. },
  8031. stretching: {
  8032. height: math.unit(3.65, "meters"),
  8033. weight: math.unit(1200, "lb"),
  8034. name: "Stretching",
  8035. image: {
  8036. source: "./media/characters/teal/stretching.svg",
  8037. extra: 1276 / 1244,
  8038. bottom: 0 / 1276
  8039. }
  8040. },
  8041. legged: {
  8042. height: math.unit(1.3, "meters"),
  8043. weight: math.unit(100, "lb"),
  8044. name: "Legged",
  8045. image: {
  8046. source: "./media/characters/teal/legged.svg",
  8047. extra: 462 / 437,
  8048. bottom: 24 / 486
  8049. }
  8050. },
  8051. naga: {
  8052. height: math.unit(5.4, "meters"),
  8053. weight: math.unit(4000, "lb"),
  8054. name: "Naga",
  8055. image: {
  8056. source: "./media/characters/teal/naga.svg",
  8057. extra: 1902 / 1858,
  8058. bottom: 0 / 1902
  8059. }
  8060. },
  8061. hand: {
  8062. height: math.unit(0.52, "meters"),
  8063. name: "Hand",
  8064. image: {
  8065. source: "./media/characters/teal/hand.svg"
  8066. }
  8067. },
  8068. maw: {
  8069. height: math.unit(0.43, "meters"),
  8070. name: "Maw",
  8071. image: {
  8072. source: "./media/characters/teal/maw.svg"
  8073. }
  8074. },
  8075. slit: {
  8076. height: math.unit(0.25, "meters"),
  8077. name: "Slit",
  8078. image: {
  8079. source: "./media/characters/teal/slit.svg"
  8080. }
  8081. },
  8082. },
  8083. [
  8084. {
  8085. name: "Normal",
  8086. height: math.unit(2.75, "meters"),
  8087. default: true
  8088. },
  8089. {
  8090. name: "Macro",
  8091. height: math.unit(300, "feet")
  8092. },
  8093. {
  8094. name: "Macro+",
  8095. height: math.unit(2000, "feet")
  8096. },
  8097. ]
  8098. ))
  8099. characterMakers.push(() => makeCharacter(
  8100. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8101. {
  8102. frontCat: {
  8103. height: math.unit(6, "feet"),
  8104. weight: math.unit(180, "lbs"),
  8105. name: "Front (Cat)",
  8106. image: {
  8107. source: "./media/characters/ravin-amulet/front-cat.svg"
  8108. }
  8109. },
  8110. frontCatAlt: {
  8111. height: math.unit(6, "feet"),
  8112. weight: math.unit(180, "lbs"),
  8113. name: "Front (Alt, Cat)",
  8114. image: {
  8115. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8116. }
  8117. },
  8118. frontWerewolf: {
  8119. height: math.unit(6 * 1.2, "feet"),
  8120. weight: math.unit(225, "lbs"),
  8121. name: "Front (Werewolf)",
  8122. image: {
  8123. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8124. }
  8125. },
  8126. backWerewolf: {
  8127. height: math.unit(6 * 1.2, "feet"),
  8128. weight: math.unit(225, "lbs"),
  8129. name: "Back (Werewolf)",
  8130. image: {
  8131. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Nano",
  8138. height: math.unit(1, "micrometer")
  8139. },
  8140. {
  8141. name: "Micro",
  8142. height: math.unit(1, "inch")
  8143. },
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(6, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Macro",
  8151. height: math.unit(60, "feet")
  8152. }
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(165, "lbs"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/fluoresce/front.svg"
  8164. }
  8165. }
  8166. },
  8167. [
  8168. {
  8169. name: "Micro",
  8170. height: math.unit(6, "cm")
  8171. },
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(5 + 7 / 12, "feet"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(56, "feet")
  8180. },
  8181. {
  8182. name: "Megamacro",
  8183. height: math.unit(1.9, "miles")
  8184. },
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(9 + 6 / 12, "feet"),
  8192. weight: math.unit(523, "lbs"),
  8193. name: "Side",
  8194. image: {
  8195. source: "./media/characters/aurora/side.svg"
  8196. }
  8197. }
  8198. },
  8199. [
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(9 + 6 / 12, "feet")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(96, "feet"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "Macro+",
  8211. height: math.unit(243, "feet")
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(194, "cm"),
  8220. weight: math.unit(90, "kg"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/ranek/front.svg",
  8224. extra: 1862/1791,
  8225. bottom: 80/1942
  8226. }
  8227. },
  8228. back: {
  8229. height: math.unit(194, "cm"),
  8230. weight: math.unit(90, "kg"),
  8231. name: "Back",
  8232. image: {
  8233. source: "./media/characters/ranek/back.svg",
  8234. extra: 1853/1787,
  8235. bottom: 74/1927
  8236. }
  8237. },
  8238. feral: {
  8239. height: math.unit(30, "cm"),
  8240. weight: math.unit(1.6, "lbs"),
  8241. name: "Feral",
  8242. image: {
  8243. source: "./media/characters/ranek/feral.svg",
  8244. extra: 990/631,
  8245. bottom: 29/1019
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Normal",
  8252. height: math.unit(194, "cm"),
  8253. default: true
  8254. },
  8255. {
  8256. name: "Macro",
  8257. height: math.unit(100, "meters")
  8258. },
  8259. ]
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8263. {
  8264. front: {
  8265. height: math.unit(5 + 6 / 12, "feet"),
  8266. weight: math.unit(153, "lbs"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/andrew-cooper/front.svg"
  8270. }
  8271. },
  8272. },
  8273. [
  8274. {
  8275. name: "Nano",
  8276. height: math.unit(1, "mm")
  8277. },
  8278. {
  8279. name: "Micro",
  8280. height: math.unit(2, "inches")
  8281. },
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(5 + 6 / 12, "feet"),
  8285. default: true
  8286. }
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8291. {
  8292. front: {
  8293. height: math.unit(6, "feet"),
  8294. weight: math.unit(180, "lbs"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/akane-sato/front.svg",
  8298. extra: 1219 / 1140
  8299. }
  8300. },
  8301. back: {
  8302. height: math.unit(6, "feet"),
  8303. weight: math.unit(180, "lbs"),
  8304. name: "Back",
  8305. image: {
  8306. source: "./media/characters/akane-sato/back.svg",
  8307. extra: 1219 / 1170
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(2.5, "meters")
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(250, "meters"),
  8319. default: true
  8320. },
  8321. {
  8322. name: "Megamacro",
  8323. height: math.unit(25, "km")
  8324. },
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8329. {
  8330. front: {
  8331. height: math.unit(6, "feet"),
  8332. weight: math.unit(65, "kg"),
  8333. name: "Front",
  8334. image: {
  8335. source: "./media/characters/rook/front.svg",
  8336. extra: 960 / 950
  8337. }
  8338. }
  8339. },
  8340. [
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(8.8, "feet")
  8344. },
  8345. {
  8346. name: "Macro",
  8347. height: math.unit(88, "feet"),
  8348. default: true
  8349. },
  8350. {
  8351. name: "Megamacro",
  8352. height: math.unit(8, "miles")
  8353. },
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(12 + 2 / 12, "feet"),
  8361. weight: math.unit(808, "lbs"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/prodigy/front.svg"
  8365. }
  8366. }
  8367. },
  8368. [
  8369. {
  8370. name: "Normal",
  8371. height: math.unit(12 + 2 / 12, "feet"),
  8372. default: true
  8373. },
  8374. {
  8375. name: "Macro",
  8376. height: math.unit(143, "feet")
  8377. },
  8378. {
  8379. name: "Macro+",
  8380. height: math.unit(400, "feet")
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(225, "lbs"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/daniel/front.svg"
  8393. }
  8394. },
  8395. leaning: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(225, "lbs"),
  8398. name: "Leaning",
  8399. image: {
  8400. source: "./media/characters/daniel/leaning.svg"
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(1000, "feet"),
  8408. default: true
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(88, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/chiros/front.svg",
  8421. extra: 306 / 226
  8422. }
  8423. },
  8424. side: {
  8425. height: math.unit(6, "feet"),
  8426. weight: math.unit(88, "lbs"),
  8427. name: "Side",
  8428. image: {
  8429. source: "./media/characters/chiros/side.svg",
  8430. extra: 306 / 226
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Normal",
  8437. height: math.unit(6, "cm"),
  8438. default: true
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8444. {
  8445. front: {
  8446. height: math.unit(6, "feet"),
  8447. weight: math.unit(100, "lbs"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/selka/front.svg",
  8451. extra: 947 / 887
  8452. }
  8453. }
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(5, "cm"),
  8459. default: true
  8460. },
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(8 + 3 / 12, "feet"),
  8468. weight: math.unit(424, "lbs"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/verin/front.svg",
  8472. extra: 1845 / 1550
  8473. }
  8474. },
  8475. frontArmored: {
  8476. height: math.unit(8 + 3 / 12, "feet"),
  8477. weight: math.unit(424, "lbs"),
  8478. name: "Front (Armored)",
  8479. image: {
  8480. source: "./media/characters/verin/front-armor.svg",
  8481. extra: 1845 / 1550,
  8482. bottom: 0.01
  8483. }
  8484. },
  8485. back: {
  8486. height: math.unit(8 + 3 / 12, "feet"),
  8487. weight: math.unit(424, "lbs"),
  8488. name: "Back",
  8489. image: {
  8490. source: "./media/characters/verin/back.svg",
  8491. bottom: 0.1,
  8492. extra: 1
  8493. }
  8494. },
  8495. foot: {
  8496. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8497. name: "Foot",
  8498. image: {
  8499. source: "./media/characters/verin/foot.svg"
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(8 + 3 / 12, "feet")
  8507. },
  8508. {
  8509. name: "Minimacro",
  8510. height: math.unit(21, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(626, "feet")
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(2.718, "meters"),
  8524. weight: math.unit(150, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/sovrim-terraquian/front.svg",
  8528. extra: 1752/1689,
  8529. bottom: 36/1788
  8530. }
  8531. },
  8532. back: {
  8533. height: math.unit(2.718, "meters"),
  8534. weight: math.unit(150, "lbs"),
  8535. name: "Back",
  8536. image: {
  8537. source: "./media/characters/sovrim-terraquian/back.svg",
  8538. extra: 1698/1657,
  8539. bottom: 58/1756
  8540. }
  8541. },
  8542. tongue: {
  8543. height: math.unit(2.865, "feet"),
  8544. name: "Tongue",
  8545. image: {
  8546. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8547. }
  8548. },
  8549. hand: {
  8550. height: math.unit(1.61, "feet"),
  8551. name: "Hand",
  8552. image: {
  8553. source: "./media/characters/sovrim-terraquian/hand.svg"
  8554. }
  8555. },
  8556. foot: {
  8557. height: math.unit(1.05, "feet"),
  8558. name: "Foot",
  8559. image: {
  8560. source: "./media/characters/sovrim-terraquian/foot.svg"
  8561. }
  8562. },
  8563. footAlt: {
  8564. height: math.unit(0.88, "feet"),
  8565. name: "Foot (Alt)",
  8566. image: {
  8567. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Micro",
  8574. height: math.unit(2, "inches")
  8575. },
  8576. {
  8577. name: "Small",
  8578. height: math.unit(1, "meter")
  8579. },
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(Math.E, "meters"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(20, "meters")
  8588. },
  8589. {
  8590. name: "Macro+",
  8591. height: math.unit(400, "meters")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(7, "feet"),
  8600. weight: math.unit(489, "lbs"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/reece-silvermane/front.svg",
  8604. bottom: 0.02,
  8605. extra: 1
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(1.5, "miles"),
  8613. default: true
  8614. },
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(78, "kg"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/kane/front.svg",
  8626. extra: 978 / 899
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(2.1, "m"),
  8634. },
  8635. {
  8636. name: "Macro",
  8637. height: math.unit(1, "km"),
  8638. default: true
  8639. },
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8644. {
  8645. front: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(200, "kg"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/tegon/front.svg",
  8651. bottom: 0.01,
  8652. extra: 1
  8653. }
  8654. },
  8655. },
  8656. [
  8657. {
  8658. name: "Micro",
  8659. height: math.unit(1, "inch")
  8660. },
  8661. {
  8662. name: "Normal",
  8663. height: math.unit(6 + 3 / 12, "feet"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Macro",
  8668. height: math.unit(300, "feet")
  8669. },
  8670. {
  8671. name: "Megamacro",
  8672. height: math.unit(69, "miles")
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8678. {
  8679. side: {
  8680. height: math.unit(6, "feet"),
  8681. weight: math.unit(2304, "lbs"),
  8682. name: "Side",
  8683. image: {
  8684. source: "./media/characters/arcturax/side.svg",
  8685. extra: 790 / 376,
  8686. bottom: 0.01
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Micro",
  8693. height: math.unit(2, "inch")
  8694. },
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(6, "feet")
  8698. },
  8699. {
  8700. name: "Macro",
  8701. height: math.unit(39, "feet"),
  8702. default: true
  8703. },
  8704. {
  8705. name: "Megamacro",
  8706. height: math.unit(7, "miles")
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(6, "feet"),
  8715. weight: math.unit(50, "lbs"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/sentri/front.svg",
  8719. extra: 1750 / 1570,
  8720. bottom: 0.025
  8721. }
  8722. },
  8723. frontAlt: {
  8724. height: math.unit(6, "feet"),
  8725. weight: math.unit(50, "lbs"),
  8726. name: "Front (Alt)",
  8727. image: {
  8728. source: "./media/characters/sentri/front-alt.svg",
  8729. extra: 1750 / 1570,
  8730. bottom: 0.025
  8731. }
  8732. },
  8733. },
  8734. [
  8735. {
  8736. name: "Normal",
  8737. height: math.unit(15, "feet"),
  8738. default: true
  8739. },
  8740. {
  8741. name: "Macro",
  8742. height: math.unit(2500, "feet")
  8743. }
  8744. ]
  8745. ))
  8746. characterMakers.push(() => makeCharacter(
  8747. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8748. {
  8749. front: {
  8750. height: math.unit(5 + 8 / 12, "feet"),
  8751. weight: math.unit(130, "lbs"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/corvin/front.svg",
  8755. extra: 1803 / 1629
  8756. }
  8757. },
  8758. frontShirt: {
  8759. height: math.unit(5 + 8 / 12, "feet"),
  8760. weight: math.unit(130, "lbs"),
  8761. name: "Front (Shirt)",
  8762. image: {
  8763. source: "./media/characters/corvin/front-shirt.svg",
  8764. extra: 1803 / 1629
  8765. }
  8766. },
  8767. frontPoncho: {
  8768. height: math.unit(5 + 8 / 12, "feet"),
  8769. weight: math.unit(130, "lbs"),
  8770. name: "Front (Poncho)",
  8771. image: {
  8772. source: "./media/characters/corvin/front-poncho.svg",
  8773. extra: 1803 / 1629
  8774. }
  8775. },
  8776. side: {
  8777. height: math.unit(5 + 8 / 12, "feet"),
  8778. weight: math.unit(130, "lbs"),
  8779. name: "Side",
  8780. image: {
  8781. source: "./media/characters/corvin/side.svg",
  8782. extra: 1012 / 945
  8783. }
  8784. },
  8785. back: {
  8786. height: math.unit(5 + 8 / 12, "feet"),
  8787. weight: math.unit(130, "lbs"),
  8788. name: "Back",
  8789. image: {
  8790. source: "./media/characters/corvin/back.svg",
  8791. extra: 1803 / 1629
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(3, "inches")
  8799. },
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(5 + 8 / 12, "feet")
  8803. },
  8804. {
  8805. name: "Macro",
  8806. height: math.unit(300, "feet"),
  8807. default: true
  8808. },
  8809. {
  8810. name: "Megamacro",
  8811. height: math.unit(500, "miles")
  8812. }
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(135, "lbs"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/q/front.svg",
  8824. extra: 854 / 752,
  8825. bottom: 0.005
  8826. }
  8827. },
  8828. back: {
  8829. height: math.unit(6, "feet"),
  8830. weight: math.unit(130, "lbs"),
  8831. name: "Back",
  8832. image: {
  8833. source: "./media/characters/q/back.svg",
  8834. extra: 854 / 752
  8835. }
  8836. },
  8837. },
  8838. [
  8839. {
  8840. name: "Macro",
  8841. height: math.unit(90, "feet"),
  8842. default: true
  8843. },
  8844. {
  8845. name: "Extra Macro",
  8846. height: math.unit(300, "feet"),
  8847. },
  8848. {
  8849. name: "BIG WALF",
  8850. height: math.unit(750, "feet"),
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8856. {
  8857. front: {
  8858. height: math.unit(3, "feet"),
  8859. weight: math.unit(28, "lbs"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/citrine/front.svg"
  8863. }
  8864. }
  8865. },
  8866. [
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(3, "feet"),
  8870. default: true
  8871. }
  8872. ]
  8873. ))
  8874. characterMakers.push(() => makeCharacter(
  8875. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8876. {
  8877. front: {
  8878. height: math.unit(14, "feet"),
  8879. weight: math.unit(1450, "kg"),
  8880. preyCapacity: math.unit(15, "people"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/aura-starwind/front.svg",
  8884. extra: 1440/1327,
  8885. bottom: 11/1451
  8886. }
  8887. },
  8888. side: {
  8889. height: math.unit(14, "feet"),
  8890. weight: math.unit(1450, "kg"),
  8891. preyCapacity: math.unit(15, "people"),
  8892. name: "Side",
  8893. image: {
  8894. source: "./media/characters/aura-starwind/side.svg",
  8895. extra: 1654 / 1497
  8896. }
  8897. },
  8898. taur: {
  8899. height: math.unit(18, "feet"),
  8900. weight: math.unit(5500, "kg"),
  8901. preyCapacity: math.unit(50, "people"),
  8902. name: "Taur",
  8903. image: {
  8904. source: "./media/characters/aura-starwind/taur.svg",
  8905. extra: 1760 / 1650
  8906. }
  8907. },
  8908. feral: {
  8909. height: math.unit(46, "feet"),
  8910. weight: math.unit(25000, "kg"),
  8911. preyCapacity: math.unit(120, "people"),
  8912. name: "Feral",
  8913. image: {
  8914. source: "./media/characters/aura-starwind/feral.svg"
  8915. }
  8916. },
  8917. },
  8918. [
  8919. {
  8920. name: "Normal",
  8921. height: math.unit(14, "feet"),
  8922. default: true
  8923. },
  8924. {
  8925. name: "Macro",
  8926. height: math.unit(50, "meters")
  8927. },
  8928. {
  8929. name: "Megamacro",
  8930. height: math.unit(5000, "meters")
  8931. },
  8932. {
  8933. name: "Gigamacro",
  8934. height: math.unit(100000, "kilometers")
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(2 + 7 / 12, "feet"),
  8943. weight: math.unit(32, "lbs"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/rivet/front.svg",
  8947. extra: 1716 / 1658,
  8948. bottom: 0.03
  8949. }
  8950. },
  8951. foot: {
  8952. height: math.unit(0.551, "feet"),
  8953. name: "Rivet's Foot",
  8954. image: {
  8955. source: "./media/characters/rivet/foot.svg"
  8956. },
  8957. rename: true
  8958. }
  8959. },
  8960. [
  8961. {
  8962. name: "Micro",
  8963. height: math.unit(1.5, "inches"),
  8964. },
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(2 + 7 / 12, "feet"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(85, "feet")
  8973. },
  8974. {
  8975. name: "Megamacro",
  8976. height: math.unit(2.2, "km")
  8977. }
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(5 + 9 / 12, "feet"),
  8985. weight: math.unit(150, "lbs"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/coffee/front.svg",
  8989. extra: 3666 / 3032,
  8990. bottom: 0.04
  8991. }
  8992. },
  8993. foot: {
  8994. height: math.unit(1.29, "feet"),
  8995. name: "Foot",
  8996. image: {
  8997. source: "./media/characters/coffee/foot.svg"
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Micro",
  9004. height: math.unit(2, "inches"),
  9005. },
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(5 + 9 / 12, "feet"),
  9009. default: true
  9010. },
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(800, "feet")
  9014. },
  9015. {
  9016. name: "Megamacro",
  9017. height: math.unit(25, "miles")
  9018. }
  9019. ]
  9020. ))
  9021. characterMakers.push(() => makeCharacter(
  9022. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9023. {
  9024. front: {
  9025. height: math.unit(6, "feet"),
  9026. weight: math.unit(200, "lbs"),
  9027. name: "Front",
  9028. image: {
  9029. source: "./media/characters/chari-gal/front.svg",
  9030. extra: 1568 / 1385,
  9031. bottom: 0.047
  9032. }
  9033. },
  9034. gigantamax: {
  9035. height: math.unit(6 * 16, "feet"),
  9036. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9037. name: "Gigantamax",
  9038. image: {
  9039. source: "./media/characters/chari-gal/gigantamax.svg",
  9040. extra: 1124 / 888,
  9041. bottom: 0.03
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(5 + 7 / 12, "feet")
  9049. },
  9050. {
  9051. name: "Macro",
  9052. height: math.unit(200, "feet"),
  9053. default: true
  9054. }
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9059. {
  9060. front: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(150, "lbs"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/nova/front.svg",
  9066. extra: 5000 / 4722,
  9067. bottom: 0.02
  9068. }
  9069. }
  9070. },
  9071. [
  9072. {
  9073. name: "Micro-",
  9074. height: math.unit(0.8, "inches")
  9075. },
  9076. {
  9077. name: "Micro",
  9078. height: math.unit(2, "inches"),
  9079. default: true
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(3 + 1 / 12, "feet"),
  9088. weight: math.unit(21.7, "lbs"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/argent/front.svg",
  9092. extra: 1471 / 1331,
  9093. bottom: 100.8 / 1575.5
  9094. }
  9095. }
  9096. },
  9097. [
  9098. {
  9099. name: "Micro",
  9100. height: math.unit(2, "inches")
  9101. },
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(3 + 1 / 12, "feet"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Macro",
  9109. height: math.unit(120, "feet")
  9110. },
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9115. {
  9116. lamp: {
  9117. height: math.unit(7 * 1559 / 989, "feet"),
  9118. name: "Magic Lamp",
  9119. image: {
  9120. source: "./media/characters/mira-al-cul/lamp.svg",
  9121. extra: 1617 / 1559
  9122. }
  9123. },
  9124. front: {
  9125. height: math.unit(7, "feet"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/mira-al-cul/front.svg",
  9129. extra: 1044 / 990
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Heavily Restricted",
  9136. height: math.unit(7 * 1559 / 989, "feet")
  9137. },
  9138. {
  9139. name: "Freshly Freed",
  9140. height: math.unit(50 * 1559 / 989, "feet")
  9141. },
  9142. {
  9143. name: "World Encompassing",
  9144. height: math.unit(10000 * 1559 / 989, "miles")
  9145. },
  9146. {
  9147. name: "Galactic",
  9148. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9149. },
  9150. {
  9151. name: "Palmed Universe",
  9152. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9153. default: true
  9154. },
  9155. {
  9156. name: "Multiversal Matriarch",
  9157. height: math.unit(8.87e10, "yottameters")
  9158. },
  9159. {
  9160. name: "Void Mother",
  9161. height: math.unit(3.14e110, "yottaparsecs")
  9162. },
  9163. {
  9164. name: "Toying with Transcendence",
  9165. height: math.unit(1e307, "meters")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9171. {
  9172. front: {
  9173. height: math.unit(17 + 1 / 12, "feet"),
  9174. weight: math.unit(476.2 * 5, "lbs"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/kuro-shi-uchū/front.svg",
  9178. extra: 2329 / 1835,
  9179. bottom: 0.02
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Micro",
  9186. height: math.unit(2, "inches")
  9187. },
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(12, "meters")
  9191. },
  9192. {
  9193. name: "Planetary",
  9194. height: math.unit(0.00929, "AU"),
  9195. default: true
  9196. },
  9197. {
  9198. name: "Universal",
  9199. height: math.unit(20, "gigaparsecs")
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(5 + 2 / 12, "feet"),
  9208. weight: math.unit(120, "lbs"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/katherine/front.svg",
  9212. extra: 2075 / 1969
  9213. }
  9214. },
  9215. dress: {
  9216. height: math.unit(5 + 2 / 12, "feet"),
  9217. weight: math.unit(120, "lbs"),
  9218. name: "Dress",
  9219. image: {
  9220. source: "./media/characters/katherine/dress.svg",
  9221. extra: 2258 / 2064
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Micro",
  9228. height: math.unit(1, "inches"),
  9229. default: true
  9230. },
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(5 + 2 / 12, "feet")
  9234. },
  9235. {
  9236. name: "Macro",
  9237. height: math.unit(100, "meters")
  9238. },
  9239. {
  9240. name: "Megamacro",
  9241. height: math.unit(80, "miles")
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9247. {
  9248. front: {
  9249. height: math.unit(7 + 8 / 12, "feet"),
  9250. weight: math.unit(250, "lbs"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/yevis/front.svg",
  9254. extra: 1938 / 1755
  9255. }
  9256. }
  9257. },
  9258. [
  9259. {
  9260. name: "Mortal",
  9261. height: math.unit(7 + 8 / 12, "feet")
  9262. },
  9263. {
  9264. name: "Battle",
  9265. height: math.unit(25 + 11 / 12, "feet")
  9266. },
  9267. {
  9268. name: "Wrath",
  9269. height: math.unit(1654 + 11 / 12, "feet")
  9270. },
  9271. {
  9272. name: "Planet Destroyer",
  9273. height: math.unit(12000, "miles")
  9274. },
  9275. {
  9276. name: "Galaxy Conqueror",
  9277. height: math.unit(1.45, "zettameters"),
  9278. default: true
  9279. },
  9280. {
  9281. name: "Universal War",
  9282. height: math.unit(184, "gigaparsecs")
  9283. },
  9284. {
  9285. name: "Eternity War",
  9286. height: math.unit(1.98e55, "yottaparsecs")
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(5 + 8 / 12, "feet"),
  9295. weight: math.unit(63, "kg"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/xavier/front.svg",
  9299. extra: 944 / 883
  9300. }
  9301. },
  9302. frontStretch: {
  9303. height: math.unit(5 + 8 / 12, "feet"),
  9304. weight: math.unit(63, "kg"),
  9305. name: "Stretching",
  9306. image: {
  9307. source: "./media/characters/xavier/front-stretch.svg",
  9308. extra: 962 / 820
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(5 + 8 / 12, "feet")
  9316. },
  9317. {
  9318. name: "Macro",
  9319. height: math.unit(100, "meters"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "McLargeHuge",
  9324. height: math.unit(10, "miles")
  9325. },
  9326. ]
  9327. ))
  9328. characterMakers.push(() => makeCharacter(
  9329. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9330. {
  9331. front: {
  9332. height: math.unit(5 + 5 / 12, "feet"),
  9333. weight: math.unit(150, "lb"),
  9334. name: "Front",
  9335. image: {
  9336. source: "./media/characters/joshii/front.svg",
  9337. extra: 765 / 653,
  9338. bottom: 51 / 816
  9339. }
  9340. },
  9341. foot: {
  9342. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9343. name: "Foot",
  9344. image: {
  9345. source: "./media/characters/joshii/foot.svg"
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Micro",
  9352. height: math.unit(2, "inches"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(5 + 5 / 12, "feet")
  9358. },
  9359. {
  9360. name: "Macro",
  9361. height: math.unit(785, "feet")
  9362. },
  9363. {
  9364. name: "Megamacro",
  9365. height: math.unit(24.5, "miles")
  9366. },
  9367. ]
  9368. ))
  9369. characterMakers.push(() => makeCharacter(
  9370. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9371. {
  9372. front: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(150, "lb"),
  9375. name: "Front",
  9376. image: {
  9377. source: "./media/characters/goddess-elizabeth/front.svg",
  9378. extra: 1800 / 1525,
  9379. bottom: 0.005
  9380. }
  9381. },
  9382. foot: {
  9383. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9384. name: "Foot",
  9385. image: {
  9386. source: "./media/characters/goddess-elizabeth/foot.svg"
  9387. }
  9388. },
  9389. mouth: {
  9390. height: math.unit(6, "feet"),
  9391. name: "Mouth",
  9392. image: {
  9393. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Micro",
  9400. height: math.unit(12, "feet")
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(80, "miles"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "Macro",
  9409. height: math.unit(15000, "parsecs")
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(5 + 9 / 12, "feet"),
  9418. weight: math.unit(144, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/kara/front.svg"
  9422. }
  9423. },
  9424. feet: {
  9425. height: math.unit(6 / 6.765, "feet"),
  9426. name: "Kara's Feet",
  9427. rename: true,
  9428. image: {
  9429. source: "./media/characters/kara/feet.svg"
  9430. }
  9431. },
  9432. },
  9433. [
  9434. {
  9435. name: "Normal",
  9436. height: math.unit(5 + 9 / 12, "feet")
  9437. },
  9438. {
  9439. name: "Macro",
  9440. height: math.unit(174, "feet"),
  9441. default: true
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(18, "feet"),
  9450. weight: math.unit(4050, "lb"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/tyrone/front.svg",
  9454. extra: 2405 / 2270,
  9455. bottom: 182 / 2587
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(18, "feet"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Macro",
  9467. height: math.unit(300, "feet")
  9468. },
  9469. {
  9470. name: "Megamacro",
  9471. height: math.unit(15, "km")
  9472. },
  9473. {
  9474. name: "Gigamacro",
  9475. height: math.unit(500, "km")
  9476. },
  9477. {
  9478. name: "Teramacro",
  9479. height: math.unit(0.5, "gigameters")
  9480. },
  9481. {
  9482. name: "Omnimacro",
  9483. height: math.unit(1e252, "yottauniverse")
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(7 + 8 / 12, "feet"),
  9492. weight: math.unit(120, "lb"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/danny/front.svg",
  9496. extra: 1490 / 1350
  9497. }
  9498. },
  9499. back: {
  9500. height: math.unit(7 + 8 / 12, "feet"),
  9501. weight: math.unit(120, "lb"),
  9502. name: "Back",
  9503. image: {
  9504. source: "./media/characters/danny/back.svg",
  9505. extra: 1490 / 1350
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(7 + 8 / 12, "feet"),
  9513. default: true
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(3.5, "inches"),
  9522. weight: math.unit(19, "grams"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/mallow/front.svg",
  9526. extra: 471 / 431
  9527. }
  9528. },
  9529. back: {
  9530. height: math.unit(3.5, "inches"),
  9531. weight: math.unit(19, "grams"),
  9532. name: "Back",
  9533. image: {
  9534. source: "./media/characters/mallow/back.svg",
  9535. extra: 471 / 431
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(3.5, "inches"),
  9543. default: true
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(9, "feet"),
  9552. weight: math.unit(230, "kg"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/starry-aqua/front.svg"
  9556. }
  9557. },
  9558. back: {
  9559. height: math.unit(9, "feet"),
  9560. weight: math.unit(230, "kg"),
  9561. name: "Back",
  9562. image: {
  9563. source: "./media/characters/starry-aqua/back.svg"
  9564. }
  9565. },
  9566. hand: {
  9567. height: math.unit(9 * 0.1168, "feet"),
  9568. name: "Hand",
  9569. image: {
  9570. source: "./media/characters/starry-aqua/hand.svg"
  9571. }
  9572. },
  9573. foot: {
  9574. height: math.unit(9 * 0.18, "feet"),
  9575. name: "Foot",
  9576. image: {
  9577. source: "./media/characters/starry-aqua/foot.svg"
  9578. }
  9579. }
  9580. },
  9581. [
  9582. {
  9583. name: "Micro",
  9584. height: math.unit(3, "inches")
  9585. },
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(9, "feet")
  9589. },
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(300, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Megamacro",
  9597. height: math.unit(3200, "feet")
  9598. }
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(15, "feet"),
  9606. weight: math.unit(5026, "lb"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/luka-towers/front.svg",
  9610. extra: 1269/1133,
  9611. bottom: 51/1320
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(15, "feet"),
  9619. default: true
  9620. },
  9621. {
  9622. name: "Minimacro",
  9623. height: math.unit(25, "feet")
  9624. },
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(320, "feet")
  9628. },
  9629. {
  9630. name: "Megamacro",
  9631. height: math.unit(35000, "feet")
  9632. },
  9633. {
  9634. name: "Gigamacro",
  9635. height: math.unit(4000, "miles")
  9636. },
  9637. {
  9638. name: "Teramacro",
  9639. height: math.unit(15000, "miles")
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(6, "feet"),
  9648. weight: math.unit(150, "lb"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/natalie-nightring/front.svg",
  9652. extra: 1,
  9653. bottom: 0.06
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Uh Oh",
  9660. height: math.unit(0.1, "mm")
  9661. },
  9662. {
  9663. name: "Small",
  9664. height: math.unit(3, "inches")
  9665. },
  9666. {
  9667. name: "Human Scale",
  9668. height: math.unit(6, "feet")
  9669. },
  9670. {
  9671. name: "Librarian",
  9672. height: math.unit(50, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Immense",
  9677. height: math.unit(200, "miles")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(180, "lbs"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/danni-rosie/front.svg",
  9690. extra: 1260 / 1128,
  9691. bottom: 0.022
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Micro",
  9698. height: math.unit(2, "inches"),
  9699. default: true
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(5 + 9 / 12, "feet"),
  9708. weight: math.unit(220, "lb"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/samantha-kruse/front.svg",
  9712. extra: (985 / 935),
  9713. bottom: 0.03
  9714. }
  9715. },
  9716. frontUndressed: {
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. weight: math.unit(220, "lb"),
  9719. name: "Front (Undressed)",
  9720. image: {
  9721. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9722. extra: (973 / 923),
  9723. bottom: 0.025
  9724. }
  9725. },
  9726. fat: {
  9727. height: math.unit(5 + 9 / 12, "feet"),
  9728. weight: math.unit(900, "lb"),
  9729. name: "Front (Fat)",
  9730. image: {
  9731. source: "./media/characters/samantha-kruse/fat.svg",
  9732. extra: 2688 / 2561
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(5 + 9 / 12, "feet"),
  9740. default: true
  9741. }
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9746. {
  9747. back: {
  9748. height: math.unit(5 + 4 / 12, "feet"),
  9749. weight: math.unit(4963, "lb"),
  9750. name: "Back",
  9751. image: {
  9752. source: "./media/characters/amelia-rosie/back.svg",
  9753. extra: 1113 / 963,
  9754. bottom: 0.01
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Level 0",
  9761. height: math.unit(5 + 4 / 12, "feet")
  9762. },
  9763. {
  9764. name: "Level 1",
  9765. height: math.unit(164597, "feet"),
  9766. default: true
  9767. },
  9768. {
  9769. name: "Level 2",
  9770. height: math.unit(956243, "miles")
  9771. },
  9772. {
  9773. name: "Level 3",
  9774. height: math.unit(29421709423, "miles")
  9775. },
  9776. {
  9777. name: "Level 4",
  9778. height: math.unit(154, "lightyears")
  9779. },
  9780. {
  9781. name: "Level 5",
  9782. height: math.unit(4738272, "lightyears")
  9783. },
  9784. {
  9785. name: "Level 6",
  9786. height: math.unit(145787152896, "lightyears")
  9787. },
  9788. ]
  9789. ))
  9790. characterMakers.push(() => makeCharacter(
  9791. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9792. {
  9793. front: {
  9794. height: math.unit(5 + 11 / 12, "feet"),
  9795. weight: math.unit(65, "kg"),
  9796. name: "Front",
  9797. image: {
  9798. source: "./media/characters/rook-kitara/front.svg",
  9799. extra: 1347 / 1274,
  9800. bottom: 0.005
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Totally Unfair",
  9807. height: math.unit(1.8, "mm")
  9808. },
  9809. {
  9810. name: "Lap Rookie",
  9811. height: math.unit(1.4, "feet")
  9812. },
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(5 + 11 / 12, "feet"),
  9816. default: true
  9817. },
  9818. {
  9819. name: "How Did This Happen",
  9820. height: math.unit(80, "miles")
  9821. }
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(7, "feet"),
  9829. weight: math.unit(300, "lb"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/pisces/front.svg",
  9833. extra: 2255 / 2115,
  9834. bottom: 0.03
  9835. }
  9836. },
  9837. back: {
  9838. height: math.unit(7, "feet"),
  9839. weight: math.unit(300, "lb"),
  9840. name: "Back",
  9841. image: {
  9842. source: "./media/characters/pisces/back.svg",
  9843. extra: 2146 / 2055,
  9844. bottom: 0.04
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Normal",
  9851. height: math.unit(7, "feet"),
  9852. default: true
  9853. },
  9854. {
  9855. name: "Swimming Pool",
  9856. height: math.unit(12.2, "meters")
  9857. },
  9858. {
  9859. name: "Olympic Swimming Pool",
  9860. height: math.unit(56.3, "meters")
  9861. },
  9862. {
  9863. name: "Lake Superior",
  9864. height: math.unit(93900, "meters")
  9865. },
  9866. {
  9867. name: "Mediterranean Sea",
  9868. height: math.unit(644457, "meters")
  9869. },
  9870. {
  9871. name: "World's Oceans",
  9872. height: math.unit(4567491, "meters")
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(2.3, "meters"),
  9881. weight: math.unit(120, "kg"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/zelas/front.svg"
  9885. }
  9886. },
  9887. side: {
  9888. height: math.unit(2.3, "meters"),
  9889. weight: math.unit(120, "kg"),
  9890. name: "Side",
  9891. image: {
  9892. source: "./media/characters/zelas/side.svg"
  9893. }
  9894. },
  9895. back: {
  9896. height: math.unit(2.3, "meters"),
  9897. weight: math.unit(120, "kg"),
  9898. name: "Back",
  9899. image: {
  9900. source: "./media/characters/zelas/back.svg"
  9901. }
  9902. },
  9903. foot: {
  9904. height: math.unit(1.116, "feet"),
  9905. name: "Foot",
  9906. image: {
  9907. source: "./media/characters/zelas/foot.svg"
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(2.3, "meters")
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(30, "meters"),
  9919. default: true
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9925. {
  9926. front: {
  9927. height: math.unit(1, "inch"),
  9928. weight: math.unit(0.21, "grams"),
  9929. name: "Front",
  9930. image: {
  9931. source: "./media/characters/talbot/front.svg",
  9932. extra: 594 / 544
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Micro",
  9939. height: math.unit(1, "inch"),
  9940. default: true
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9946. {
  9947. front: {
  9948. height: math.unit(3 + 3 / 12, "feet"),
  9949. weight: math.unit(51.8, "lb"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/fliss/front.svg",
  9953. extra: 840 / 640
  9954. }
  9955. },
  9956. },
  9957. [
  9958. {
  9959. name: "Teeny Tiny",
  9960. height: math.unit(1, "mm")
  9961. },
  9962. {
  9963. name: "Small",
  9964. height: math.unit(1, "inch"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Standard Sylveon",
  9969. height: math.unit(3 + 3 / 12, "feet")
  9970. },
  9971. {
  9972. name: "Large Nuisance",
  9973. height: math.unit(33, "feet")
  9974. },
  9975. {
  9976. name: "City Filler",
  9977. height: math.unit(3000, "feet")
  9978. },
  9979. {
  9980. name: "New Horizon",
  9981. height: math.unit(6000, "miles")
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(5, "cm"),
  9990. weight: math.unit(1.94, "g"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/fleta/front.svg",
  9994. extra: 835 / 803
  9995. }
  9996. },
  9997. back: {
  9998. height: math.unit(5, "cm"),
  9999. weight: math.unit(1.94, "g"),
  10000. name: "Back",
  10001. image: {
  10002. source: "./media/characters/fleta/back.svg",
  10003. extra: 835 / 803
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Micro",
  10010. height: math.unit(5, "cm"),
  10011. default: true
  10012. },
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10017. {
  10018. front: {
  10019. height: math.unit(6, "feet"),
  10020. weight: math.unit(225, "lb"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/dominic/front.svg",
  10024. extra: 1770 / 1620,
  10025. bottom: 0.025
  10026. }
  10027. },
  10028. back: {
  10029. height: math.unit(6, "feet"),
  10030. weight: math.unit(225, "lb"),
  10031. name: "Back",
  10032. image: {
  10033. source: "./media/characters/dominic/back.svg",
  10034. extra: 1745 / 1620,
  10035. bottom: 0.065
  10036. }
  10037. },
  10038. },
  10039. [
  10040. {
  10041. name: "Nano",
  10042. height: math.unit(0.1, "mm")
  10043. },
  10044. {
  10045. name: "Micro-",
  10046. height: math.unit(1, "mm")
  10047. },
  10048. {
  10049. name: "Micro",
  10050. height: math.unit(4, "inches")
  10051. },
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(6 + 4 / 12, "feet"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Macro",
  10059. height: math.unit(115, "feet")
  10060. },
  10061. {
  10062. name: "Macro+",
  10063. height: math.unit(955, "feet")
  10064. },
  10065. {
  10066. name: "Megamacro",
  10067. height: math.unit(8990, "feet")
  10068. },
  10069. {
  10070. name: "Gigmacro",
  10071. height: math.unit(9310, "miles")
  10072. },
  10073. {
  10074. name: "Teramacro",
  10075. height: math.unit(1567005010, "miles")
  10076. },
  10077. {
  10078. name: "Examacro",
  10079. height: math.unit(1425, "parsecs")
  10080. },
  10081. ]
  10082. ))
  10083. characterMakers.push(() => makeCharacter(
  10084. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10085. {
  10086. front: {
  10087. height: math.unit(400, "feet"),
  10088. weight: math.unit(44444444, "lb"),
  10089. name: "Front",
  10090. image: {
  10091. source: "./media/characters/major-colonel/front.svg"
  10092. }
  10093. },
  10094. back: {
  10095. height: math.unit(400, "feet"),
  10096. weight: math.unit(44444444, "lb"),
  10097. name: "Back",
  10098. image: {
  10099. source: "./media/characters/major-colonel/back.svg"
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(400, "feet"),
  10107. default: true
  10108. },
  10109. ]
  10110. ))
  10111. characterMakers.push(() => makeCharacter(
  10112. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10113. {
  10114. catFront: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(120, "lb"),
  10117. name: "Front (Cat Side)",
  10118. image: {
  10119. source: "./media/characters/axel-lycan/cat-front.svg",
  10120. extra: 430 / 402,
  10121. bottom: 43 / 472.35
  10122. }
  10123. },
  10124. catBack: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(120, "lb"),
  10127. name: "Back (Cat Side)",
  10128. image: {
  10129. source: "./media/characters/axel-lycan/cat-back.svg",
  10130. extra: 447 / 419,
  10131. bottom: 23.3 / 469
  10132. }
  10133. },
  10134. wolfFront: {
  10135. height: math.unit(6, "feet"),
  10136. weight: math.unit(120, "lb"),
  10137. name: "Front (Wolf Side)",
  10138. image: {
  10139. source: "./media/characters/axel-lycan/wolf-front.svg",
  10140. extra: 485 / 456,
  10141. bottom: 19 / 504
  10142. }
  10143. },
  10144. wolfBack: {
  10145. height: math.unit(6, "feet"),
  10146. weight: math.unit(120, "lb"),
  10147. name: "Back (Wolf Side)",
  10148. image: {
  10149. source: "./media/characters/axel-lycan/wolf-back.svg",
  10150. extra: 475 / 438,
  10151. bottom: 39.2 / 514
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Macro",
  10158. height: math.unit(1, "km"),
  10159. default: true
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10165. {
  10166. front: {
  10167. height: math.unit(5 + 9 / 12, "feet"),
  10168. weight: math.unit(175, "lb"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/vanrel-hyena/front.svg",
  10172. extra: 1086 / 1010,
  10173. bottom: 0.04
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(5 + 9 / 12, "feet"),
  10181. default: true
  10182. },
  10183. ]
  10184. ))
  10185. characterMakers.push(() => makeCharacter(
  10186. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10187. {
  10188. front: {
  10189. height: math.unit(6, "feet"),
  10190. weight: math.unit(103, "lb"),
  10191. name: "Front",
  10192. image: {
  10193. source: "./media/characters/abbott-absol/front.svg",
  10194. extra: 2010 / 1842
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Megamicro",
  10201. height: math.unit(0.1, "mm")
  10202. },
  10203. {
  10204. name: "Micro",
  10205. height: math.unit(1, "inch")
  10206. },
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(6, "feet"),
  10210. default: true
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(6, "feet"),
  10219. weight: math.unit(264, "lb"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/hector/front.svg",
  10223. extra: 2280 / 2130,
  10224. bottom: 0.07
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Normal",
  10231. height: math.unit(12.25, "foot"),
  10232. default: true
  10233. },
  10234. {
  10235. name: "Macro",
  10236. height: math.unit(160, "feet")
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10242. {
  10243. front: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(150, "lb"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/sal/front.svg",
  10249. extra: 1846 / 1699,
  10250. bottom: 0.04
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Megamacro",
  10257. height: math.unit(10, "miles"),
  10258. default: true
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10264. {
  10265. front: {
  10266. height: math.unit(3, "meters"),
  10267. weight: math.unit(450, "kg"),
  10268. name: "front",
  10269. image: {
  10270. source: "./media/characters/ranger/front.svg",
  10271. extra: 2401 / 2243,
  10272. bottom: 0.05
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(3, "meters"),
  10280. default: true
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(14, "feet"),
  10289. weight: math.unit(800, "kg"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/theresa/front.svg",
  10293. extra: 3575 / 3346,
  10294. bottom: 0.03
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(14, "feet"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10308. {
  10309. front: {
  10310. height: math.unit(6, "feet"),
  10311. weight: math.unit(3, "kg"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/ine/front.svg",
  10315. extra: 678 / 539,
  10316. bottom: 0.023
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(2.265, "feet"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(5, "feet"),
  10333. weight: math.unit(30, "kg"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/vial/front.svg",
  10337. extra: 1365 / 1277,
  10338. bottom: 0.04
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(5, "feet"),
  10346. default: true
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10352. {
  10353. side: {
  10354. height: math.unit(3.4, "meters"),
  10355. weight: math.unit(1000, "lb"),
  10356. name: "Side",
  10357. image: {
  10358. source: "./media/characters/rovoska/side.svg",
  10359. extra: 4403 / 1515
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Normal",
  10366. height: math.unit(3.4, "meters"),
  10367. default: true
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10373. {
  10374. front: {
  10375. height: math.unit(8, "feet"),
  10376. weight: math.unit(315, "lb"),
  10377. name: "Front",
  10378. image: {
  10379. source: "./media/characters/gunner-rotthbauer/front.svg"
  10380. }
  10381. },
  10382. back: {
  10383. height: math.unit(8, "feet"),
  10384. weight: math.unit(315, "lb"),
  10385. name: "Back",
  10386. image: {
  10387. source: "./media/characters/gunner-rotthbauer/back.svg"
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Micro",
  10394. height: math.unit(3.5, "inches")
  10395. },
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(8, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Macro",
  10403. height: math.unit(250, "feet")
  10404. },
  10405. {
  10406. name: "Megamacro",
  10407. height: math.unit(1, "AU")
  10408. },
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10413. {
  10414. front: {
  10415. height: math.unit(5 + 5 / 12, "feet"),
  10416. weight: math.unit(140, "lb"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/allatia/front.svg",
  10420. extra: 1227 / 1180,
  10421. bottom: 0.027
  10422. }
  10423. },
  10424. },
  10425. [
  10426. {
  10427. name: "Normal",
  10428. height: math.unit(5 + 5 / 12, "feet")
  10429. },
  10430. {
  10431. name: "Macro",
  10432. height: math.unit(250, "feet"),
  10433. default: true
  10434. },
  10435. {
  10436. name: "Megamacro",
  10437. height: math.unit(8, "miles")
  10438. }
  10439. ]
  10440. ))
  10441. characterMakers.push(() => makeCharacter(
  10442. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10443. {
  10444. front: {
  10445. height: math.unit(6, "feet"),
  10446. weight: math.unit(120, "lb"),
  10447. name: "Front",
  10448. image: {
  10449. source: "./media/characters/tene/front.svg",
  10450. extra: 814/750,
  10451. bottom: 36/850
  10452. }
  10453. },
  10454. stomping: {
  10455. height: math.unit(2.025, "meters"),
  10456. weight: math.unit(120, "lb"),
  10457. name: "Stomping",
  10458. image: {
  10459. source: "./media/characters/tene/stomping.svg",
  10460. extra: 885/821,
  10461. bottom: 15/900
  10462. }
  10463. },
  10464. sitting: {
  10465. height: math.unit(1, "meter"),
  10466. weight: math.unit(120, "lb"),
  10467. name: "Sitting",
  10468. image: {
  10469. source: "./media/characters/tene/sitting.svg",
  10470. extra: 396/366,
  10471. bottom: 79/475
  10472. }
  10473. },
  10474. smiling: {
  10475. height: math.unit(1.2, "feet"),
  10476. name: "Smiling",
  10477. image: {
  10478. source: "./media/characters/tene/smiling.svg",
  10479. extra: 1364/1071,
  10480. bottom: 0/1364
  10481. }
  10482. },
  10483. smug: {
  10484. height: math.unit(1.3, "feet"),
  10485. name: "Smug",
  10486. image: {
  10487. source: "./media/characters/tene/smug.svg",
  10488. extra: 1323/1082,
  10489. bottom: 0/1323
  10490. }
  10491. },
  10492. feral: {
  10493. height: math.unit(3.9, "feet"),
  10494. weight: math.unit(250, "lb"),
  10495. name: "Feral",
  10496. image: {
  10497. source: "./media/characters/tene/feral.svg",
  10498. extra: 717 / 458,
  10499. bottom: 0.179
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Normal",
  10506. height: math.unit(6, "feet")
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(300, "feet"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Megamacro",
  10515. height: math.unit(5, "miles")
  10516. },
  10517. ]
  10518. ))
  10519. characterMakers.push(() => makeCharacter(
  10520. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10521. {
  10522. side: {
  10523. height: math.unit(6, "feet"),
  10524. name: "Side",
  10525. image: {
  10526. source: "./media/characters/evander/side.svg",
  10527. extra: 877 / 477
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Normal",
  10534. height: math.unit(0.83, "meters"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(12, "feet"),
  10544. weight: math.unit(1000, "lb"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10548. extra: 1762 / 1611
  10549. }
  10550. },
  10551. back: {
  10552. height: math.unit(12, "feet"),
  10553. weight: math.unit(1000, "lb"),
  10554. name: "Back",
  10555. image: {
  10556. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10557. extra: 1762 / 1611
  10558. }
  10559. },
  10560. },
  10561. [
  10562. {
  10563. name: "Normal",
  10564. height: math.unit(12, "feet"),
  10565. default: true
  10566. },
  10567. {
  10568. name: "Kaiju",
  10569. height: math.unit(150, "feet")
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10575. {
  10576. front: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(150, "lb"),
  10579. name: "Front",
  10580. image: {
  10581. source: "./media/characters/zero-alurus/front.svg"
  10582. }
  10583. },
  10584. back: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(150, "lb"),
  10587. name: "Back",
  10588. image: {
  10589. source: "./media/characters/zero-alurus/back.svg"
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Normal",
  10596. height: math.unit(5 + 10 / 12, "feet")
  10597. },
  10598. {
  10599. name: "Macro",
  10600. height: math.unit(60, "feet"),
  10601. default: true
  10602. },
  10603. {
  10604. name: "Macro+",
  10605. height: math.unit(450, "feet")
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10611. {
  10612. front: {
  10613. height: math.unit(6, "feet"),
  10614. weight: math.unit(200, "lb"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/mega-shi/front.svg",
  10618. extra: 1279 / 1250,
  10619. bottom: 0.02
  10620. }
  10621. },
  10622. back: {
  10623. height: math.unit(6, "feet"),
  10624. weight: math.unit(200, "lb"),
  10625. name: "Back",
  10626. image: {
  10627. source: "./media/characters/mega-shi/back.svg",
  10628. extra: 1279 / 1250,
  10629. bottom: 0.02
  10630. }
  10631. },
  10632. },
  10633. [
  10634. {
  10635. name: "Micro",
  10636. height: math.unit(16 + 6 / 12, "feet")
  10637. },
  10638. {
  10639. name: "Third Dimension",
  10640. height: math.unit(40, "meters")
  10641. },
  10642. {
  10643. name: "Normal",
  10644. height: math.unit(660, "feet"),
  10645. default: true
  10646. },
  10647. {
  10648. name: "Megamacro",
  10649. height: math.unit(10, "miles")
  10650. },
  10651. {
  10652. name: "Planetary Launch",
  10653. height: math.unit(500, "miles")
  10654. },
  10655. {
  10656. name: "Interstellar",
  10657. height: math.unit(1e9, "miles")
  10658. },
  10659. {
  10660. name: "Leaving the Universe",
  10661. height: math.unit(1, "gigaparsec")
  10662. },
  10663. {
  10664. name: "Travelling Universes",
  10665. height: math.unit(30e15, "parsecs")
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(5 + 4/12, "feet"),
  10674. weight: math.unit(120, "lb"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/odyssey/front.svg",
  10678. extra: 1747/1571,
  10679. bottom: 47/1794
  10680. }
  10681. },
  10682. side: {
  10683. height: math.unit(5.1, "feet"),
  10684. weight: math.unit(120, "lb"),
  10685. name: "Side",
  10686. image: {
  10687. source: "./media/characters/odyssey/side.svg",
  10688. extra: 1847/1619,
  10689. bottom: 47/1894
  10690. }
  10691. },
  10692. lounging: {
  10693. height: math.unit(1.464, "feet"),
  10694. weight: math.unit(120, "lb"),
  10695. name: "Lounging",
  10696. image: {
  10697. source: "./media/characters/odyssey/lounging.svg",
  10698. extra: 1235/837,
  10699. bottom: 551/1786
  10700. }
  10701. },
  10702. },
  10703. [
  10704. {
  10705. name: "Normal",
  10706. height: math.unit(5 + 4 / 12, "feet")
  10707. },
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(1, "km")
  10711. },
  10712. {
  10713. name: "Megamacro",
  10714. height: math.unit(3000, "km")
  10715. },
  10716. {
  10717. name: "Gigamacro",
  10718. height: math.unit(1, "AU"),
  10719. default: true
  10720. },
  10721. {
  10722. name: "Omniversal",
  10723. height: math.unit(100e14, "lightyears")
  10724. },
  10725. ]
  10726. ))
  10727. characterMakers.push(() => makeCharacter(
  10728. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10729. {
  10730. front: {
  10731. height: math.unit(6, "feet"),
  10732. weight: math.unit(300, "lb"),
  10733. name: "Front",
  10734. image: {
  10735. source: "./media/characters/mekuto/front.svg",
  10736. extra: 921 / 832,
  10737. bottom: 0.03
  10738. }
  10739. },
  10740. hand: {
  10741. height: math.unit(6 / 10.24, "feet"),
  10742. name: "Hand",
  10743. image: {
  10744. source: "./media/characters/mekuto/hand.svg"
  10745. }
  10746. },
  10747. foot: {
  10748. height: math.unit(6 / 5.05, "feet"),
  10749. name: "Foot",
  10750. image: {
  10751. source: "./media/characters/mekuto/foot.svg"
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Minimicro",
  10758. height: math.unit(0.2, "inches")
  10759. },
  10760. {
  10761. name: "Micro",
  10762. height: math.unit(1.5, "inches")
  10763. },
  10764. {
  10765. name: "Normal",
  10766. height: math.unit(5 + 11 / 12, "feet"),
  10767. default: true
  10768. },
  10769. {
  10770. name: "Minimacro",
  10771. height: math.unit(17 + 9 / 12, "feet")
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(177.5, "feet")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(152, "miles")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(6.5, "inches"),
  10788. weight: math.unit(13, "oz"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/dafydd-tomos/front.svg",
  10792. extra: 2990 / 2603,
  10793. bottom: 0.03
  10794. }
  10795. },
  10796. },
  10797. [
  10798. {
  10799. name: "Micro",
  10800. height: math.unit(6.5, "inches"),
  10801. default: true
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10807. {
  10808. front: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(150, "lb"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/splinter/front.svg",
  10814. extra: 2990 / 2882,
  10815. bottom: 0.04
  10816. }
  10817. },
  10818. back: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Back",
  10822. image: {
  10823. source: "./media/characters/splinter/back.svg",
  10824. extra: 2990 / 2882,
  10825. bottom: 0.04
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(6, "feet")
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(230, "meters"),
  10837. default: true
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(4 + 10 / 12, "feet"),
  10846. weight: math.unit(480, "lb"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/snow-gabumon/front.svg",
  10850. extra: 1140 / 963,
  10851. bottom: 0.058
  10852. }
  10853. },
  10854. back: {
  10855. height: math.unit(4 + 10 / 12, "feet"),
  10856. weight: math.unit(480, "lb"),
  10857. name: "Back",
  10858. image: {
  10859. source: "./media/characters/snow-gabumon/back.svg",
  10860. extra: 1115 / 962,
  10861. bottom: 0.041
  10862. }
  10863. },
  10864. frontUndresed: {
  10865. height: math.unit(4 + 10 / 12, "feet"),
  10866. weight: math.unit(480, "lb"),
  10867. name: "Front (Undressed)",
  10868. image: {
  10869. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10870. extra: 1061 / 960,
  10871. bottom: 0.045
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Micro",
  10878. height: math.unit(1, "inch")
  10879. },
  10880. {
  10881. name: "Normal",
  10882. height: math.unit(4 + 10 / 12, "feet"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Macro",
  10887. height: math.unit(200, "feet")
  10888. },
  10889. {
  10890. name: "Megamacro",
  10891. height: math.unit(120, "miles")
  10892. },
  10893. {
  10894. name: "Gigamacro",
  10895. height: math.unit(9800, "miles")
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10901. {
  10902. front: {
  10903. height: math.unit(1.7, "meters"),
  10904. weight: math.unit(140, "lb"),
  10905. name: "Front",
  10906. image: {
  10907. source: "./media/characters/moody/front.svg",
  10908. extra: 3226 / 3007,
  10909. bottom: 0.087
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Micro",
  10916. height: math.unit(1, "mm")
  10917. },
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(1.7, "meters"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(80, "meters")
  10926. },
  10927. {
  10928. name: "Macro+",
  10929. height: math.unit(500, "meters")
  10930. },
  10931. ]
  10932. ))
  10933. characterMakers.push(() => makeCharacter(
  10934. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10935. {
  10936. front: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Front",
  10940. image: {
  10941. source: "./media/characters/zyas/front.svg",
  10942. extra: 1180 / 1120,
  10943. bottom: 0.045
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Normal",
  10950. height: math.unit(10, "feet"),
  10951. default: true
  10952. },
  10953. {
  10954. name: "Macro",
  10955. height: math.unit(500, "feet")
  10956. },
  10957. {
  10958. name: "Megamacro",
  10959. height: math.unit(5, "miles")
  10960. },
  10961. {
  10962. name: "Teramacro",
  10963. height: math.unit(150000, "miles")
  10964. },
  10965. ]
  10966. ))
  10967. characterMakers.push(() => makeCharacter(
  10968. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10969. {
  10970. front: {
  10971. height: math.unit(6, "feet"),
  10972. weight: math.unit(150, "lb"),
  10973. name: "Front",
  10974. image: {
  10975. source: "./media/characters/cuon/front.svg",
  10976. extra: 1390 / 1320,
  10977. bottom: 0.008
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Micro",
  10984. height: math.unit(3, "inches")
  10985. },
  10986. {
  10987. name: "Normal",
  10988. height: math.unit(18 + 9 / 12, "feet"),
  10989. default: true
  10990. },
  10991. {
  10992. name: "Macro",
  10993. height: math.unit(360, "feet")
  10994. },
  10995. {
  10996. name: "Megamacro",
  10997. height: math.unit(360, "miles")
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11003. {
  11004. front: {
  11005. height: math.unit(2.4, "meters"),
  11006. weight: math.unit(70, "kg"),
  11007. name: "Front",
  11008. image: {
  11009. source: "./media/characters/nyanuxk/front.svg",
  11010. extra: 1172 / 1084,
  11011. bottom: 0.065
  11012. }
  11013. },
  11014. side: {
  11015. height: math.unit(2.4, "meters"),
  11016. weight: math.unit(70, "kg"),
  11017. name: "Side",
  11018. image: {
  11019. source: "./media/characters/nyanuxk/side.svg",
  11020. extra: 1190 / 1132,
  11021. bottom: 0.007
  11022. }
  11023. },
  11024. back: {
  11025. height: math.unit(2.4, "meters"),
  11026. weight: math.unit(70, "kg"),
  11027. name: "Back",
  11028. image: {
  11029. source: "./media/characters/nyanuxk/back.svg",
  11030. extra: 1200 / 1141,
  11031. bottom: 0.015
  11032. }
  11033. },
  11034. foot: {
  11035. height: math.unit(0.52, "meters"),
  11036. name: "Foot",
  11037. image: {
  11038. source: "./media/characters/nyanuxk/foot.svg"
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Micro",
  11045. height: math.unit(2, "cm")
  11046. },
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(2.4, "meters"),
  11050. default: true
  11051. },
  11052. {
  11053. name: "Smaller Macro",
  11054. height: math.unit(120, "meters")
  11055. },
  11056. {
  11057. name: "Bigger Macro",
  11058. height: math.unit(1.2, "km")
  11059. },
  11060. {
  11061. name: "Megamacro",
  11062. height: math.unit(15, "kilometers")
  11063. },
  11064. {
  11065. name: "Gigamacro",
  11066. height: math.unit(2000, "km")
  11067. },
  11068. {
  11069. name: "Teramacro",
  11070. height: math.unit(500000, "km")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11076. {
  11077. side: {
  11078. height: math.unit(6, "feet"),
  11079. name: "Side",
  11080. image: {
  11081. source: "./media/characters/ailbhe/side.svg",
  11082. extra: 757 / 464,
  11083. bottom: 0.041
  11084. }
  11085. },
  11086. },
  11087. [
  11088. {
  11089. name: "Normal",
  11090. height: math.unit(1.07, "meters"),
  11091. default: true
  11092. },
  11093. ]
  11094. ))
  11095. characterMakers.push(() => makeCharacter(
  11096. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11097. {
  11098. front: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(120, "kg"),
  11101. name: "Front",
  11102. image: {
  11103. source: "./media/characters/zevulfius/front.svg",
  11104. extra: 965 / 903
  11105. }
  11106. },
  11107. side: {
  11108. height: math.unit(6, "feet"),
  11109. weight: math.unit(120, "kg"),
  11110. name: "Side",
  11111. image: {
  11112. source: "./media/characters/zevulfius/side.svg",
  11113. extra: 939 / 900
  11114. }
  11115. },
  11116. back: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(120, "kg"),
  11119. name: "Back",
  11120. image: {
  11121. source: "./media/characters/zevulfius/back.svg",
  11122. extra: 918 / 854,
  11123. bottom: 0.005
  11124. }
  11125. },
  11126. foot: {
  11127. height: math.unit(6 / 3.72, "feet"),
  11128. name: "Foot",
  11129. image: {
  11130. source: "./media/characters/zevulfius/foot.svg"
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Macro",
  11137. height: math.unit(750, "meters")
  11138. },
  11139. {
  11140. name: "Megamacro",
  11141. height: math.unit(20, "km"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Gigamacro",
  11146. height: math.unit(2000, "km")
  11147. },
  11148. {
  11149. name: "Teramacro",
  11150. height: math.unit(250000, "km")
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(100, "feet"),
  11159. weight: math.unit(350, "kg"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/rikes/front.svg",
  11163. extra: 1565 / 1483,
  11164. bottom: 0.017
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Macro",
  11171. height: math.unit(100, "feet"),
  11172. default: true
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(8, "feet"),
  11181. weight: math.unit(356, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/adam-silver-mane/front.svg",
  11185. extra: 1036/937,
  11186. bottom: 63/1099
  11187. }
  11188. },
  11189. side: {
  11190. height: math.unit(8, "feet"),
  11191. weight: math.unit(356, "lb"),
  11192. name: "Side",
  11193. image: {
  11194. source: "./media/characters/adam-silver-mane/side.svg",
  11195. extra: 997/901,
  11196. bottom: 59/1056
  11197. }
  11198. },
  11199. frontNsfw: {
  11200. height: math.unit(8, "feet"),
  11201. weight: math.unit(356, "lb"),
  11202. name: "Front (NSFW)",
  11203. image: {
  11204. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11205. extra: 1036/937,
  11206. bottom: 63/1099
  11207. }
  11208. },
  11209. sideNsfw: {
  11210. height: math.unit(8, "feet"),
  11211. weight: math.unit(356, "lb"),
  11212. name: "Side (NSFW)",
  11213. image: {
  11214. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11215. extra: 997/901,
  11216. bottom: 59/1056
  11217. }
  11218. },
  11219. dick: {
  11220. height: math.unit(2.1, "feet"),
  11221. name: "Dick",
  11222. image: {
  11223. source: "./media/characters/adam-silver-mane/dick.svg"
  11224. }
  11225. },
  11226. taur: {
  11227. height: math.unit(16, "feet"),
  11228. weight: math.unit(1500, "kg"),
  11229. name: "Taur",
  11230. image: {
  11231. source: "./media/characters/adam-silver-mane/taur.svg",
  11232. extra: 1713 / 1571,
  11233. bottom: 0.01
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(8, "feet")
  11241. },
  11242. {
  11243. name: "Minimacro",
  11244. height: math.unit(80, "feet")
  11245. },
  11246. {
  11247. name: "MDA",
  11248. height: math.unit(80, "meters")
  11249. },
  11250. {
  11251. name: "Macro",
  11252. height: math.unit(800, "feet"),
  11253. default: true
  11254. },
  11255. {
  11256. name: "Megamacro",
  11257. height: math.unit(8000, "feet")
  11258. },
  11259. {
  11260. name: "Gigamacro",
  11261. height: math.unit(800, "miles")
  11262. },
  11263. {
  11264. name: "Teramacro",
  11265. height: math.unit(80000, "miles")
  11266. },
  11267. {
  11268. name: "Celestial",
  11269. height: math.unit(8e6, "miles")
  11270. },
  11271. {
  11272. name: "Star Dragon",
  11273. height: math.unit(800000, "parsecs")
  11274. },
  11275. {
  11276. name: "Godly",
  11277. height: math.unit(800, "teraparsecs")
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11283. {
  11284. front: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(150, "lb"),
  11287. name: "Front",
  11288. image: {
  11289. source: "./media/characters/ky'owin/front.svg",
  11290. extra: 3888 / 3068,
  11291. bottom: 0.015
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Normal",
  11298. height: math.unit(6 + 8 / 12, "feet")
  11299. },
  11300. {
  11301. name: "Large",
  11302. height: math.unit(68, "feet")
  11303. },
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(132, "feet")
  11307. },
  11308. {
  11309. name: "Macro+",
  11310. height: math.unit(340, "feet")
  11311. },
  11312. {
  11313. name: "Macro++",
  11314. height: math.unit(680, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Megamacro",
  11319. height: math.unit(1, "mile")
  11320. },
  11321. {
  11322. name: "Megamacro+",
  11323. height: math.unit(10, "miles")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(4, "feet"),
  11332. weight: math.unit(50, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/mal/front.svg",
  11336. extra: 785 / 724,
  11337. bottom: 0.07
  11338. }
  11339. },
  11340. },
  11341. [
  11342. {
  11343. name: "Micro",
  11344. height: math.unit(4, "inches")
  11345. },
  11346. {
  11347. name: "Normal",
  11348. height: math.unit(4, "feet"),
  11349. default: true
  11350. },
  11351. {
  11352. name: "Macro",
  11353. height: math.unit(200, "feet")
  11354. },
  11355. ]
  11356. ))
  11357. characterMakers.push(() => makeCharacter(
  11358. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11359. {
  11360. front: {
  11361. height: math.unit(6, "feet"),
  11362. weight: math.unit(150, "lb"),
  11363. name: "Front",
  11364. image: {
  11365. source: "./media/characters/jordan-deware/front.svg",
  11366. extra: 1191 / 1012
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Nano",
  11373. height: math.unit(0.01, "mm")
  11374. },
  11375. {
  11376. name: "Minimicro",
  11377. height: math.unit(1, "mm")
  11378. },
  11379. {
  11380. name: "Micro",
  11381. height: math.unit(0.5, "inches")
  11382. },
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(4, "feet"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Minimacro",
  11390. height: math.unit(40, "meters")
  11391. },
  11392. {
  11393. name: "Small Macro",
  11394. height: math.unit(400, "meters")
  11395. },
  11396. {
  11397. name: "Macro",
  11398. height: math.unit(4, "miles")
  11399. },
  11400. {
  11401. name: "Megamacro",
  11402. height: math.unit(40, "miles")
  11403. },
  11404. {
  11405. name: "Megamacro+",
  11406. height: math.unit(400, "miles")
  11407. },
  11408. {
  11409. name: "Gigamacro",
  11410. height: math.unit(400000, "miles")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11416. {
  11417. side: {
  11418. height: math.unit(6, "feet"),
  11419. weight: math.unit(150, "lb"),
  11420. name: "Side",
  11421. image: {
  11422. source: "./media/characters/kimiko/side.svg",
  11423. extra: 600 / 358
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(15, "feet"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Macro",
  11435. height: math.unit(220, "feet")
  11436. },
  11437. {
  11438. name: "Macro+",
  11439. height: math.unit(1450, "feet")
  11440. },
  11441. {
  11442. name: "Megamacro",
  11443. height: math.unit(11500, "feet")
  11444. },
  11445. {
  11446. name: "Gigamacro",
  11447. height: math.unit(9500, "miles")
  11448. },
  11449. {
  11450. name: "Teramacro",
  11451. height: math.unit(2208005005, "miles")
  11452. },
  11453. {
  11454. name: "Examacro",
  11455. height: math.unit(2750, "parsecs")
  11456. },
  11457. {
  11458. name: "Zettamacro",
  11459. height: math.unit(101500, "parsecs")
  11460. },
  11461. ]
  11462. ))
  11463. characterMakers.push(() => makeCharacter(
  11464. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11465. {
  11466. front: {
  11467. height: math.unit(6, "feet"),
  11468. weight: math.unit(70, "kg"),
  11469. name: "Front",
  11470. image: {
  11471. source: "./media/characters/andrew-sleepy/front.svg"
  11472. }
  11473. },
  11474. side: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(70, "kg"),
  11477. name: "Side",
  11478. image: {
  11479. source: "./media/characters/andrew-sleepy/side.svg"
  11480. }
  11481. },
  11482. },
  11483. [
  11484. {
  11485. name: "Micro",
  11486. height: math.unit(1, "mm"),
  11487. default: true
  11488. },
  11489. ]
  11490. ))
  11491. characterMakers.push(() => makeCharacter(
  11492. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11493. {
  11494. front: {
  11495. height: math.unit(6, "feet"),
  11496. weight: math.unit(150, "lb"),
  11497. name: "Front",
  11498. image: {
  11499. source: "./media/characters/judio/front.svg",
  11500. extra: 1258 / 1110
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Normal",
  11507. height: math.unit(5 + 6 / 12, "feet")
  11508. },
  11509. {
  11510. name: "Macro",
  11511. height: math.unit(1000, "feet"),
  11512. default: true
  11513. },
  11514. {
  11515. name: "Megamacro",
  11516. height: math.unit(10, "miles")
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11522. {
  11523. frontDressed: {
  11524. height: math.unit(6, "feet"),
  11525. weight: math.unit(68, "kg"),
  11526. name: "Front (Dressed)",
  11527. image: {
  11528. source: "./media/characters/nomaxice/front-dressed.svg",
  11529. extra: 1137/824,
  11530. bottom: 74/1211
  11531. }
  11532. },
  11533. frontShorts: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(68, "kg"),
  11536. name: "Front (Shorts)",
  11537. image: {
  11538. source: "./media/characters/nomaxice/front-shorts.svg",
  11539. extra: 1137/824,
  11540. bottom: 74/1211
  11541. }
  11542. },
  11543. back: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(68, "kg"),
  11546. name: "Back",
  11547. image: {
  11548. source: "./media/characters/nomaxice/back.svg",
  11549. extra: 822/786,
  11550. bottom: 39/861
  11551. }
  11552. },
  11553. hand: {
  11554. height: math.unit(0.565, "feet"),
  11555. name: "Hand",
  11556. image: {
  11557. source: "./media/characters/nomaxice/hand.svg"
  11558. }
  11559. },
  11560. foot: {
  11561. height: math.unit(1, "feet"),
  11562. name: "Foot",
  11563. image: {
  11564. source: "./media/characters/nomaxice/foot.svg"
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Micro",
  11571. height: math.unit(8, "cm")
  11572. },
  11573. {
  11574. name: "Norm",
  11575. height: math.unit(1.82, "m")
  11576. },
  11577. {
  11578. name: "Norm+",
  11579. height: math.unit(8.8, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Big",
  11584. height: math.unit(8, "meters")
  11585. },
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(18, "meters")
  11589. },
  11590. {
  11591. name: "Macro+",
  11592. height: math.unit(88, "meters")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(12, "feet"),
  11601. weight: math.unit(1.5, "tons"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/dydros/front.svg",
  11605. extra: 863 / 800,
  11606. bottom: 0.015
  11607. }
  11608. },
  11609. back: {
  11610. height: math.unit(12, "feet"),
  11611. weight: math.unit(1.5, "tons"),
  11612. name: "Back",
  11613. image: {
  11614. source: "./media/characters/dydros/back.svg",
  11615. extra: 900 / 843,
  11616. bottom: 0.005
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(12, "feet"),
  11624. default: true
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(6, "feet"),
  11633. weight: math.unit(100, "kg"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/riggi/front.svg",
  11637. extra: 5787 / 5303
  11638. }
  11639. },
  11640. hyper: {
  11641. height: math.unit(6 * 5 / 3, "feet"),
  11642. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11643. name: "Hyper",
  11644. image: {
  11645. source: "./media/characters/riggi/hyper.svg",
  11646. extra: 3595 / 3485
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Small Macro",
  11653. height: math.unit(50, "feet")
  11654. },
  11655. {
  11656. name: "Default",
  11657. height: math.unit(200, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Loom",
  11662. height: math.unit(10000, "feet")
  11663. },
  11664. {
  11665. name: "Cruising Altitude",
  11666. height: math.unit(30000, "feet")
  11667. },
  11668. {
  11669. name: "Megamacro",
  11670. height: math.unit(100, "miles")
  11671. },
  11672. {
  11673. name: "Continent Sized",
  11674. height: math.unit(2800, "miles")
  11675. },
  11676. {
  11677. name: "Earth Sized",
  11678. height: math.unit(8000, "miles")
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(250, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/alexi/front.svg",
  11691. extra: 3483 / 3291,
  11692. bottom: 0.04
  11693. }
  11694. },
  11695. back: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(250, "lb"),
  11698. name: "Back",
  11699. image: {
  11700. source: "./media/characters/alexi/back.svg",
  11701. extra: 3533 / 3356,
  11702. bottom: 0.021
  11703. }
  11704. },
  11705. frontTransforming: {
  11706. height: math.unit(8.58, "feet"),
  11707. weight: math.unit(1300, "lb"),
  11708. name: "Transforming",
  11709. image: {
  11710. source: "./media/characters/alexi/front-transforming.svg",
  11711. extra: 437 / 409,
  11712. bottom: 19 / 458.66
  11713. }
  11714. },
  11715. frontTransformed: {
  11716. height: math.unit(12.5, "feet"),
  11717. weight: math.unit(4000, "lb"),
  11718. name: "Transformed",
  11719. image: {
  11720. source: "./media/characters/alexi/front-transformed.svg",
  11721. extra: 639 / 614,
  11722. bottom: 30.55 / 671
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Normal",
  11729. height: math.unit(14, "feet"),
  11730. default: true
  11731. },
  11732. {
  11733. name: "Minimacro",
  11734. height: math.unit(30, "meters")
  11735. },
  11736. {
  11737. name: "Macro",
  11738. height: math.unit(500, "meters")
  11739. },
  11740. {
  11741. name: "Megamacro",
  11742. height: math.unit(9000, "km")
  11743. },
  11744. {
  11745. name: "Teramacro",
  11746. height: math.unit(384000, "km")
  11747. },
  11748. ]
  11749. ))
  11750. characterMakers.push(() => makeCharacter(
  11751. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11752. {
  11753. front: {
  11754. height: math.unit(6, "feet"),
  11755. weight: math.unit(150, "lb"),
  11756. name: "Front",
  11757. image: {
  11758. source: "./media/characters/kayroo/front.svg",
  11759. extra: 1153 / 1038,
  11760. bottom: 0.06
  11761. }
  11762. },
  11763. foot: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Foot",
  11767. image: {
  11768. source: "./media/characters/kayroo/foot.svg"
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Normal",
  11775. height: math.unit(8, "feet"),
  11776. default: true
  11777. },
  11778. {
  11779. name: "Minimacro",
  11780. height: math.unit(250, "feet")
  11781. },
  11782. {
  11783. name: "Macro",
  11784. height: math.unit(2800, "feet")
  11785. },
  11786. {
  11787. name: "Megamacro",
  11788. height: math.unit(5200, "feet")
  11789. },
  11790. {
  11791. name: "Gigamacro",
  11792. height: math.unit(27000, "feet")
  11793. },
  11794. {
  11795. name: "Omega",
  11796. height: math.unit(45000, "feet")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(18, "feet"),
  11805. weight: math.unit(5800, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/rhys/front.svg",
  11809. extra: 3386 / 3090,
  11810. bottom: 0.07
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Normal",
  11817. height: math.unit(18, "feet"),
  11818. default: true
  11819. },
  11820. {
  11821. name: "Working Size",
  11822. height: math.unit(200, "feet")
  11823. },
  11824. {
  11825. name: "Demolition Size",
  11826. height: math.unit(2000, "feet")
  11827. },
  11828. {
  11829. name: "Maximum Licensed Size",
  11830. height: math.unit(5, "miles")
  11831. },
  11832. {
  11833. name: "Maximum Observed Size",
  11834. height: math.unit(10, "yottameters")
  11835. },
  11836. ]
  11837. ))
  11838. characterMakers.push(() => makeCharacter(
  11839. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11840. {
  11841. front: {
  11842. height: math.unit(6, "feet"),
  11843. weight: math.unit(250, "lb"),
  11844. name: "Front",
  11845. image: {
  11846. source: "./media/characters/toto/front.svg",
  11847. extra: 527 / 479,
  11848. bottom: 0.05
  11849. }
  11850. },
  11851. },
  11852. [
  11853. {
  11854. name: "Micro",
  11855. height: math.unit(3, "feet")
  11856. },
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(10, "feet")
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(150, "feet"),
  11864. default: true
  11865. },
  11866. {
  11867. name: "Megamacro",
  11868. height: math.unit(1200, "feet")
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "King", species: ["lion"], tags: ["anthro"] },
  11874. {
  11875. back: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(150, "lb"),
  11878. name: "Back",
  11879. image: {
  11880. source: "./media/characters/king/back.svg"
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Micro",
  11887. height: math.unit(2, "inches")
  11888. },
  11889. {
  11890. name: "Normal",
  11891. height: math.unit(8, "feet")
  11892. },
  11893. {
  11894. name: "Macro",
  11895. height: math.unit(200, "feet"),
  11896. default: true
  11897. },
  11898. {
  11899. name: "Megamacro",
  11900. height: math.unit(50, "miles")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(11, "feet"),
  11909. weight: math.unit(1400, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/cordite/front.svg",
  11913. extra: 1919/1827,
  11914. bottom: 40/1959
  11915. }
  11916. },
  11917. side: {
  11918. height: math.unit(11, "feet"),
  11919. weight: math.unit(1400, "lb"),
  11920. name: "Side",
  11921. image: {
  11922. source: "./media/characters/cordite/side.svg",
  11923. extra: 1908/1793,
  11924. bottom: 38/1946
  11925. }
  11926. },
  11927. back: {
  11928. height: math.unit(11, "feet"),
  11929. weight: math.unit(1400, "lb"),
  11930. name: "Back",
  11931. image: {
  11932. source: "./media/characters/cordite/back.svg",
  11933. extra: 1938/1837,
  11934. bottom: 10/1948
  11935. }
  11936. },
  11937. feral: {
  11938. height: math.unit(2, "feet"),
  11939. weight: math.unit(90, "lb"),
  11940. name: "Feral",
  11941. image: {
  11942. source: "./media/characters/cordite/feral.svg",
  11943. extra: 1260 / 755,
  11944. bottom: 0.05
  11945. }
  11946. },
  11947. },
  11948. [
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(11, "feet"),
  11952. default: true
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11958. {
  11959. front: {
  11960. height: math.unit(6, "feet"),
  11961. weight: math.unit(150, "lb"),
  11962. name: "Front",
  11963. image: {
  11964. source: "./media/characters/pianostrong/front.svg",
  11965. extra: 6577 / 6254,
  11966. bottom: 0.02
  11967. }
  11968. },
  11969. side: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(150, "lb"),
  11972. name: "Side",
  11973. image: {
  11974. source: "./media/characters/pianostrong/side.svg",
  11975. extra: 6106 / 5730
  11976. }
  11977. },
  11978. back: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(150, "lb"),
  11981. name: "Back",
  11982. image: {
  11983. source: "./media/characters/pianostrong/back.svg",
  11984. extra: 6085 / 5733,
  11985. bottom: 0.01
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Macro",
  11992. height: math.unit(100, "feet")
  11993. },
  11994. {
  11995. name: "Macro+",
  11996. height: math.unit(300, "feet"),
  11997. default: true
  11998. },
  11999. {
  12000. name: "Macro++",
  12001. height: math.unit(1000, "feet")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/kona/front.svg",
  12014. extra: 2960 / 2629,
  12015. bottom: 0.005
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(11 + 8 / 12, "feet")
  12023. },
  12024. {
  12025. name: "Macro",
  12026. height: math.unit(850, "feet"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Macro+",
  12031. height: math.unit(1.5, "km"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(80, "miles")
  12037. },
  12038. {
  12039. name: "Gigamacro",
  12040. height: math.unit(3500, "miles")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12046. {
  12047. side: {
  12048. height: math.unit(1.9, "meters"),
  12049. weight: math.unit(326, "kg"),
  12050. name: "Side",
  12051. image: {
  12052. source: "./media/characters/levi/side.svg",
  12053. extra: 1704 / 1334,
  12054. bottom: 0.02
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Normal",
  12061. height: math.unit(1.9, "meters"),
  12062. default: true
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(20, "meters")
  12067. },
  12068. {
  12069. name: "Macro+",
  12070. height: math.unit(200, "meters")
  12071. },
  12072. {
  12073. name: "Megamacro",
  12074. height: math.unit(2, "km")
  12075. },
  12076. {
  12077. name: "Megamacro+",
  12078. height: math.unit(20, "km")
  12079. },
  12080. {
  12081. name: "Gigamacro",
  12082. height: math.unit(2500, "km")
  12083. },
  12084. {
  12085. name: "Gigamacro+",
  12086. height: math.unit(120000, "km")
  12087. },
  12088. {
  12089. name: "Teramacro",
  12090. height: math.unit(7.77e6, "km")
  12091. },
  12092. ]
  12093. ))
  12094. characterMakers.push(() => makeCharacter(
  12095. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12096. {
  12097. front: {
  12098. height: math.unit(6 + 4/12, "feet"),
  12099. weight: math.unit(190, "lb"),
  12100. name: "Front",
  12101. image: {
  12102. source: "./media/characters/bmc/front.svg",
  12103. extra: 1626/1472,
  12104. bottom: 79/1705
  12105. }
  12106. },
  12107. back: {
  12108. height: math.unit(6 + 4/12, "feet"),
  12109. weight: math.unit(190, "lb"),
  12110. name: "Back",
  12111. image: {
  12112. source: "./media/characters/bmc/back.svg",
  12113. extra: 1640/1479,
  12114. bottom: 45/1685
  12115. }
  12116. },
  12117. frontArmor: {
  12118. height: math.unit(6 + 4/12, "feet"),
  12119. weight: math.unit(190, "lb"),
  12120. name: "Front-armor",
  12121. image: {
  12122. source: "./media/characters/bmc/front-armor.svg",
  12123. extra: 1538/1468,
  12124. bottom: 79/1617
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Human-sized",
  12131. height: math.unit(6 + 4 / 12, "feet")
  12132. },
  12133. {
  12134. name: "Interactive Size",
  12135. height: math.unit(25, "feet")
  12136. },
  12137. {
  12138. name: "Small",
  12139. height: math.unit(250, "feet")
  12140. },
  12141. {
  12142. name: "Normal",
  12143. height: math.unit(1250, "feet"),
  12144. default: true
  12145. },
  12146. {
  12147. name: "Good Day",
  12148. height: math.unit(88, "miles")
  12149. },
  12150. {
  12151. name: "Largest Measured Size",
  12152. height: math.unit(105.960, "galaxies")
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12158. {
  12159. front: {
  12160. height: math.unit(20, "feet"),
  12161. weight: math.unit(2016, "kg"),
  12162. name: "Front",
  12163. image: {
  12164. source: "./media/characters/sven-the-kaiju/front.svg",
  12165. extra: 1277/1250,
  12166. bottom: 35/1312
  12167. }
  12168. },
  12169. mouth: {
  12170. height: math.unit(1.85, "feet"),
  12171. name: "Mouth",
  12172. image: {
  12173. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12174. }
  12175. },
  12176. },
  12177. [
  12178. {
  12179. name: "Fairy",
  12180. height: math.unit(6, "inches")
  12181. },
  12182. {
  12183. name: "Normal",
  12184. height: math.unit(20, "feet"),
  12185. default: true
  12186. },
  12187. {
  12188. name: "Rampage",
  12189. height: math.unit(200, "feet")
  12190. },
  12191. {
  12192. name: "Archfey Forest Guardian",
  12193. height: math.unit(1, "mile")
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12199. {
  12200. front: {
  12201. height: math.unit(4, "meters"),
  12202. weight: math.unit(2, "tons"),
  12203. name: "Front",
  12204. image: {
  12205. source: "./media/characters/marik/front.svg",
  12206. extra: 1057 / 1003,
  12207. bottom: 0.08
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "Normal",
  12214. height: math.unit(4, "meters"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Macro",
  12219. height: math.unit(20, "meters")
  12220. },
  12221. {
  12222. name: "Megamacro",
  12223. height: math.unit(50, "km")
  12224. },
  12225. {
  12226. name: "Gigamacro",
  12227. height: math.unit(100, "km")
  12228. },
  12229. {
  12230. name: "Alpha Macro",
  12231. height: math.unit(7.88e7, "yottameters")
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(6, "feet"),
  12240. weight: math.unit(110, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/mel/front.svg",
  12244. extra: 736 / 617,
  12245. bottom: 0.017
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Pico",
  12252. height: math.unit(3, "pm")
  12253. },
  12254. {
  12255. name: "Nano",
  12256. height: math.unit(3, "nm")
  12257. },
  12258. {
  12259. name: "Micro",
  12260. height: math.unit(0.3, "mm"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Micro+",
  12265. height: math.unit(3, "mm")
  12266. },
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(5 + 10.5 / 12, "feet")
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12275. {
  12276. kaiju: {
  12277. height: math.unit(1.75, "meters"),
  12278. weight: math.unit(55, "kg"),
  12279. name: "Kaiju",
  12280. image: {
  12281. source: "./media/characters/lykonous/kaiju.svg",
  12282. extra: 1055 / 946,
  12283. bottom: 0.135
  12284. }
  12285. },
  12286. },
  12287. [
  12288. {
  12289. name: "Normal",
  12290. height: math.unit(2.5, "meters"),
  12291. default: true
  12292. },
  12293. {
  12294. name: "Kaiju Dragon",
  12295. height: math.unit(60, "meters")
  12296. },
  12297. {
  12298. name: "Mega Kaiju",
  12299. height: math.unit(120, "km")
  12300. },
  12301. {
  12302. name: "Giga Kaiju",
  12303. height: math.unit(200, "megameters")
  12304. },
  12305. {
  12306. name: "Terra Kaiju",
  12307. height: math.unit(400, "gigameters")
  12308. },
  12309. {
  12310. name: "Kaiju Dragon God",
  12311. height: math.unit(13000, "exaparsecs")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(6, "feet"),
  12320. weight: math.unit(150, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/blü/front.svg",
  12324. extra: 1883 / 1564,
  12325. bottom: 0.031
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(13, "feet"),
  12333. default: true
  12334. },
  12335. {
  12336. name: "Big Boi",
  12337. height: math.unit(150, "meters")
  12338. },
  12339. {
  12340. name: "Mini Stomper",
  12341. height: math.unit(300, "meters")
  12342. },
  12343. {
  12344. name: "Macro",
  12345. height: math.unit(1000, "meters")
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(11000, "meters")
  12350. },
  12351. {
  12352. name: "Gigamacro",
  12353. height: math.unit(11000, "km")
  12354. },
  12355. {
  12356. name: "Teramacro",
  12357. height: math.unit(420000, "km")
  12358. },
  12359. {
  12360. name: "Examacro",
  12361. height: math.unit(120, "parsecs")
  12362. },
  12363. {
  12364. name: "God Tho",
  12365. height: math.unit(98000000000, "parsecs")
  12366. },
  12367. ]
  12368. ))
  12369. characterMakers.push(() => makeCharacter(
  12370. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12371. {
  12372. taurFront: {
  12373. height: math.unit(6, "feet"),
  12374. weight: math.unit(200, "lb"),
  12375. name: "Taur (Front)",
  12376. image: {
  12377. source: "./media/characters/scales/taur-front.svg",
  12378. extra: 1,
  12379. bottom: 0.05
  12380. }
  12381. },
  12382. taurBack: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(200, "lb"),
  12385. name: "Taur (Back)",
  12386. image: {
  12387. source: "./media/characters/scales/taur-back.svg",
  12388. extra: 1,
  12389. bottom: 0.08
  12390. }
  12391. },
  12392. anthro: {
  12393. height: math.unit(6 * 7 / 12, "feet"),
  12394. weight: math.unit(100, "lb"),
  12395. name: "Anthro",
  12396. image: {
  12397. source: "./media/characters/scales/anthro.svg",
  12398. extra: 1,
  12399. bottom: 0.06
  12400. }
  12401. },
  12402. },
  12403. [
  12404. {
  12405. name: "Normal",
  12406. height: math.unit(12, "feet"),
  12407. default: true
  12408. },
  12409. ]
  12410. ))
  12411. characterMakers.push(() => makeCharacter(
  12412. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12413. {
  12414. front: {
  12415. height: math.unit(6, "feet"),
  12416. weight: math.unit(150, "lb"),
  12417. name: "Front",
  12418. image: {
  12419. source: "./media/characters/koragos/front.svg",
  12420. extra: 841 / 794,
  12421. bottom: 0.035
  12422. }
  12423. },
  12424. back: {
  12425. height: math.unit(6, "feet"),
  12426. weight: math.unit(150, "lb"),
  12427. name: "Back",
  12428. image: {
  12429. source: "./media/characters/koragos/back.svg",
  12430. extra: 841 / 810,
  12431. bottom: 0.022
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(6 + 11 / 12, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(490, "feet")
  12444. },
  12445. {
  12446. name: "Megamacro",
  12447. height: math.unit(10, "miles")
  12448. },
  12449. {
  12450. name: "Gigamacro",
  12451. height: math.unit(50, "miles")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12457. {
  12458. front: {
  12459. height: math.unit(6, "feet"),
  12460. weight: math.unit(250, "lb"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/xylrem/front.svg",
  12464. extra: 3323 / 3050,
  12465. bottom: 0.065
  12466. }
  12467. },
  12468. },
  12469. [
  12470. {
  12471. name: "Micro",
  12472. height: math.unit(4, "feet")
  12473. },
  12474. {
  12475. name: "Normal",
  12476. height: math.unit(16, "feet"),
  12477. default: true
  12478. },
  12479. {
  12480. name: "Macro",
  12481. height: math.unit(2720, "feet")
  12482. },
  12483. {
  12484. name: "Megamacro",
  12485. height: math.unit(25000, "miles")
  12486. },
  12487. ]
  12488. ))
  12489. characterMakers.push(() => makeCharacter(
  12490. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12491. {
  12492. front: {
  12493. height: math.unit(8, "feet"),
  12494. weight: math.unit(250, "kg"),
  12495. name: "Front",
  12496. image: {
  12497. source: "./media/characters/ikideru/front.svg",
  12498. extra: 930 / 870,
  12499. bottom: 0.087
  12500. }
  12501. },
  12502. back: {
  12503. height: math.unit(8, "feet"),
  12504. weight: math.unit(250, "kg"),
  12505. name: "Back",
  12506. image: {
  12507. source: "./media/characters/ikideru/back.svg",
  12508. extra: 919 / 852,
  12509. bottom: 0.055
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Rare",
  12516. height: math.unit(8, "feet"),
  12517. default: true
  12518. },
  12519. {
  12520. name: "Playful Loom",
  12521. height: math.unit(80, "feet")
  12522. },
  12523. {
  12524. name: "City Leaner",
  12525. height: math.unit(230, "feet")
  12526. },
  12527. {
  12528. name: "Megamacro",
  12529. height: math.unit(2500, "feet")
  12530. },
  12531. {
  12532. name: "Gigamacro",
  12533. height: math.unit(26400, "feet")
  12534. },
  12535. {
  12536. name: "Tectonic Shifter",
  12537. height: math.unit(1.7, "megameters")
  12538. },
  12539. {
  12540. name: "Planet Carer",
  12541. height: math.unit(21, "megameters")
  12542. },
  12543. {
  12544. name: "God",
  12545. height: math.unit(11157.22, "parsecs")
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(6, "feet"),
  12554. weight: math.unit(120, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/neo/front.svg"
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Micro",
  12564. height: math.unit(2, "inches"),
  12565. default: true
  12566. },
  12567. {
  12568. name: "Human Size",
  12569. height: math.unit(5 + 8 / 12, "feet")
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(13 + 10 / 12, "feet"),
  12578. weight: math.unit(5320, "lb"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/chauncey-chantz/front.svg",
  12582. extra: 1587 / 1435,
  12583. bottom: 0.02
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(13 + 10 / 12, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Macro",
  12595. height: math.unit(45, "feet")
  12596. },
  12597. {
  12598. name: "Megamacro",
  12599. height: math.unit(250, "miles")
  12600. },
  12601. {
  12602. name: "Planetary",
  12603. height: math.unit(10000, "miles")
  12604. },
  12605. {
  12606. name: "Galactic",
  12607. height: math.unit(40000, "parsecs")
  12608. },
  12609. {
  12610. name: "Universal",
  12611. height: math.unit(1, "yottameter")
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12617. {
  12618. front: {
  12619. height: math.unit(6, "feet"),
  12620. weight: math.unit(150, "lb"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/epifox/front.svg",
  12624. extra: 1,
  12625. bottom: 0.075
  12626. }
  12627. },
  12628. },
  12629. [
  12630. {
  12631. name: "Micro",
  12632. height: math.unit(6, "inches")
  12633. },
  12634. {
  12635. name: "Normal",
  12636. height: math.unit(12, "feet"),
  12637. default: true
  12638. },
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(3810, "feet")
  12642. },
  12643. {
  12644. name: "Megamacro",
  12645. height: math.unit(500, "miles")
  12646. },
  12647. ]
  12648. ))
  12649. characterMakers.push(() => makeCharacter(
  12650. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12651. {
  12652. front: {
  12653. height: math.unit(1.8796, "m"),
  12654. weight: math.unit(230, "lb"),
  12655. name: "Front",
  12656. image: {
  12657. source: "./media/characters/colin-t/front.svg",
  12658. extra: 1272 / 1193,
  12659. bottom: 0.07
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Micro",
  12666. height: math.unit(0.571, "meters")
  12667. },
  12668. {
  12669. name: "Normal",
  12670. height: math.unit(1.8796, "meters"),
  12671. default: true
  12672. },
  12673. {
  12674. name: "Tall",
  12675. height: math.unit(4, "meters")
  12676. },
  12677. {
  12678. name: "Macro",
  12679. height: math.unit(67.241, "meters")
  12680. },
  12681. {
  12682. name: "Megamacro",
  12683. height: math.unit(371.856, "meters")
  12684. },
  12685. {
  12686. name: "Planetary",
  12687. height: math.unit(12631.5689, "km")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(1.85, "meters"),
  12696. weight: math.unit(80, "kg"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/matvei/front.svg",
  12700. extra: 614 / 594,
  12701. bottom: 0.01
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Normal",
  12708. height: math.unit(1.85, "meters"),
  12709. default: true
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12715. {
  12716. front: {
  12717. height: math.unit(5 + 9 / 12, "feet"),
  12718. weight: math.unit(70, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/quincy/front.svg",
  12722. extra: 3041 / 2751
  12723. }
  12724. },
  12725. back: {
  12726. height: math.unit(5 + 9 / 12, "feet"),
  12727. weight: math.unit(70, "lb"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/quincy/back.svg",
  12731. extra: 3041 / 2751
  12732. }
  12733. },
  12734. flying: {
  12735. height: math.unit(5 + 4 / 12, "feet"),
  12736. weight: math.unit(70, "lb"),
  12737. name: "Flying",
  12738. image: {
  12739. source: "./media/characters/quincy/flying.svg",
  12740. extra: 1044 / 930
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Micro",
  12747. height: math.unit(3, "cm")
  12748. },
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(5 + 9 / 12, "feet")
  12752. },
  12753. {
  12754. name: "Macro",
  12755. height: math.unit(200, "meters"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(1000, "meters")
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12766. {
  12767. front: {
  12768. height: math.unit(3 + 11/12, "feet"),
  12769. weight: math.unit(50, "lb"),
  12770. name: "Front",
  12771. image: {
  12772. source: "./media/characters/vanrel/front.svg",
  12773. extra: 1104/949,
  12774. bottom: 52/1156
  12775. }
  12776. },
  12777. back: {
  12778. height: math.unit(3 + 11/12, "feet"),
  12779. weight: math.unit(50, "lb"),
  12780. name: "Back",
  12781. image: {
  12782. source: "./media/characters/vanrel/back.svg",
  12783. extra: 1119/976,
  12784. bottom: 37/1156
  12785. }
  12786. },
  12787. tome: {
  12788. height: math.unit(1.35, "feet"),
  12789. weight: math.unit(10, "lb"),
  12790. name: "Vanrel's Tome",
  12791. rename: true,
  12792. image: {
  12793. source: "./media/characters/vanrel/tome.svg"
  12794. }
  12795. },
  12796. beans: {
  12797. height: math.unit(0.89, "feet"),
  12798. name: "Beans",
  12799. image: {
  12800. source: "./media/characters/vanrel/beans.svg"
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Normal",
  12807. height: math.unit(3 + 11/12, "feet"),
  12808. default: true
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12814. {
  12815. front: {
  12816. height: math.unit(7 + 5 / 12, "feet"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/kuiper-vanrel/front.svg",
  12820. extra: 1219/1169,
  12821. bottom: 69/1288
  12822. }
  12823. },
  12824. back: {
  12825. height: math.unit(7 + 5 / 12, "feet"),
  12826. name: "Back",
  12827. image: {
  12828. source: "./media/characters/kuiper-vanrel/back.svg",
  12829. extra: 1236/1193,
  12830. bottom: 27/1263
  12831. }
  12832. },
  12833. foot: {
  12834. height: math.unit(0.55, "meters"),
  12835. name: "Foot",
  12836. image: {
  12837. source: "./media/characters/kuiper-vanrel/foot.svg",
  12838. }
  12839. },
  12840. battle: {
  12841. height: math.unit(6.824, "feet"),
  12842. name: "Battle",
  12843. image: {
  12844. source: "./media/characters/kuiper-vanrel/battle.svg",
  12845. extra: 1466 / 1327,
  12846. bottom: 29 / 1492.5
  12847. }
  12848. },
  12849. meerkui: {
  12850. height: math.unit(18, "inches"),
  12851. name: "Meerkui",
  12852. image: {
  12853. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12854. extra: 1354/1289,
  12855. bottom: 69/1423
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(7 + 5 / 12, "feet"),
  12863. default: true
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12869. {
  12870. front: {
  12871. height: math.unit(8 + 5 / 12, "feet"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/keset-vanrel/front.svg",
  12875. extra: 1231/1148,
  12876. bottom: 82/1313
  12877. }
  12878. },
  12879. back: {
  12880. height: math.unit(8 + 5 / 12, "feet"),
  12881. name: "Back",
  12882. image: {
  12883. source: "./media/characters/keset-vanrel/back.svg",
  12884. extra: 1240/1174,
  12885. bottom: 33/1273
  12886. }
  12887. },
  12888. hand: {
  12889. height: math.unit(0.6, "meters"),
  12890. name: "Hand",
  12891. image: {
  12892. source: "./media/characters/keset-vanrel/hand.svg"
  12893. }
  12894. },
  12895. foot: {
  12896. height: math.unit(0.94978, "meters"),
  12897. name: "Foot",
  12898. image: {
  12899. source: "./media/characters/keset-vanrel/foot.svg"
  12900. }
  12901. },
  12902. battle: {
  12903. height: math.unit(7.408, "feet"),
  12904. name: "Battle",
  12905. image: {
  12906. source: "./media/characters/keset-vanrel/battle.svg",
  12907. extra: 1890 / 1386,
  12908. bottom: 73.28 / 1970
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(8 + 5 / 12, "feet"),
  12916. default: true
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12922. {
  12923. front: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(150, "lb"),
  12926. name: "Front",
  12927. image: {
  12928. source: "./media/characters/neos/front.svg",
  12929. extra: 1696 / 992,
  12930. bottom: 0.14
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(54, "cm"),
  12938. default: true
  12939. },
  12940. {
  12941. name: "Macro",
  12942. height: math.unit(100, "m")
  12943. },
  12944. {
  12945. name: "Megamacro",
  12946. height: math.unit(10, "km")
  12947. },
  12948. {
  12949. name: "Megamacro+",
  12950. height: math.unit(100, "km")
  12951. },
  12952. {
  12953. name: "Gigamacro",
  12954. height: math.unit(100, "Mm")
  12955. },
  12956. {
  12957. name: "Teramacro",
  12958. height: math.unit(100, "Gm")
  12959. },
  12960. {
  12961. name: "Examacro",
  12962. height: math.unit(100, "Em")
  12963. },
  12964. {
  12965. name: "Godly",
  12966. height: math.unit(10000, "Ym")
  12967. },
  12968. {
  12969. name: "Beyond Godly",
  12970. height: math.unit(25, "multiverses")
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12976. {
  12977. feminine: {
  12978. height: math.unit(5, "feet"),
  12979. weight: math.unit(100, "lb"),
  12980. name: "Feminine",
  12981. image: {
  12982. source: "./media/characters/sammy-mouse/feminine.svg",
  12983. extra: 2526 / 2425,
  12984. bottom: 0.123
  12985. }
  12986. },
  12987. masculine: {
  12988. height: math.unit(5, "feet"),
  12989. weight: math.unit(100, "lb"),
  12990. name: "Masculine",
  12991. image: {
  12992. source: "./media/characters/sammy-mouse/masculine.svg",
  12993. extra: 2526 / 2425,
  12994. bottom: 0.123
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Micro",
  13001. height: math.unit(5, "inches")
  13002. },
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(5, "feet"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Macro",
  13010. height: math.unit(60, "feet")
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(4, "feet"),
  13019. weight: math.unit(50, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/kole/front.svg",
  13023. extra: 1423 / 1303,
  13024. bottom: 0.025
  13025. }
  13026. },
  13027. back: {
  13028. height: math.unit(4, "feet"),
  13029. weight: math.unit(50, "lb"),
  13030. name: "Back",
  13031. image: {
  13032. source: "./media/characters/kole/back.svg",
  13033. extra: 1426 / 1280,
  13034. bottom: 0.02
  13035. }
  13036. },
  13037. },
  13038. [
  13039. {
  13040. name: "Normal",
  13041. height: math.unit(4, "feet"),
  13042. default: true
  13043. },
  13044. ]
  13045. ))
  13046. characterMakers.push(() => makeCharacter(
  13047. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13048. {
  13049. front: {
  13050. height: math.unit(2.5, "feet"),
  13051. weight: math.unit(32, "lb"),
  13052. name: "Front",
  13053. image: {
  13054. source: "./media/characters/rufran/front.svg",
  13055. extra: 1313/885,
  13056. bottom: 94/1407
  13057. }
  13058. },
  13059. side: {
  13060. height: math.unit(2.5, "feet"),
  13061. weight: math.unit(32, "lb"),
  13062. name: "Side",
  13063. image: {
  13064. source: "./media/characters/rufran/side.svg",
  13065. extra: 1109/852,
  13066. bottom: 118/1227
  13067. }
  13068. },
  13069. back: {
  13070. height: math.unit(2.5, "feet"),
  13071. weight: math.unit(32, "lb"),
  13072. name: "Back",
  13073. image: {
  13074. source: "./media/characters/rufran/back.svg",
  13075. extra: 1280/878,
  13076. bottom: 131/1411
  13077. }
  13078. },
  13079. mouth: {
  13080. height: math.unit(1.13, "feet"),
  13081. name: "Mouth",
  13082. image: {
  13083. source: "./media/characters/rufran/mouth.svg"
  13084. }
  13085. },
  13086. foot: {
  13087. height: math.unit(1.33, "feet"),
  13088. name: "Foot",
  13089. image: {
  13090. source: "./media/characters/rufran/foot.svg"
  13091. }
  13092. },
  13093. koboldFront: {
  13094. height: math.unit(2 + 6 / 12, "feet"),
  13095. weight: math.unit(20, "lb"),
  13096. name: "Front (Kobold)",
  13097. image: {
  13098. source: "./media/characters/rufran/kobold-front.svg",
  13099. extra: 2041 / 1839,
  13100. bottom: 0.055
  13101. }
  13102. },
  13103. koboldBack: {
  13104. height: math.unit(2 + 6 / 12, "feet"),
  13105. weight: math.unit(20, "lb"),
  13106. name: "Back (Kobold)",
  13107. image: {
  13108. source: "./media/characters/rufran/kobold-back.svg",
  13109. extra: 2054 / 1839,
  13110. bottom: 0.01
  13111. }
  13112. },
  13113. koboldHand: {
  13114. height: math.unit(0.2166, "meters"),
  13115. name: "Hand (Kobold)",
  13116. image: {
  13117. source: "./media/characters/rufran/kobold-hand.svg"
  13118. }
  13119. },
  13120. koboldFoot: {
  13121. height: math.unit(0.185, "meters"),
  13122. name: "Foot (Kobold)",
  13123. image: {
  13124. source: "./media/characters/rufran/kobold-foot.svg"
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Micro",
  13131. height: math.unit(1, "inch")
  13132. },
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(2 + 6 / 12, "feet"),
  13136. default: true
  13137. },
  13138. {
  13139. name: "Big",
  13140. height: math.unit(60, "feet")
  13141. },
  13142. {
  13143. name: "Macro",
  13144. height: math.unit(325, "feet")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(0.3, "meters"),
  13153. weight: math.unit(3.5, "kg"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/chip/front.svg",
  13157. extra: 748 / 674
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Micro",
  13164. height: math.unit(1, "inch"),
  13165. default: true
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13171. {
  13172. side: {
  13173. height: math.unit(2.3, "meters"),
  13174. weight: math.unit(3500, "lb"),
  13175. name: "Side",
  13176. image: {
  13177. source: "./media/characters/torvid/side.svg",
  13178. extra: 1972 / 722,
  13179. bottom: 0.035
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(2.3, "meters"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(2, "meters"),
  13196. weight: math.unit(150.5, "kg"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/susan/front.svg",
  13200. extra: 693 / 635,
  13201. bottom: 0.05
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Megamacro",
  13208. height: math.unit(505, "miles"),
  13209. default: true
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(150, "lb"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/raindrops/front.svg",
  13222. extra: 2655 / 2461,
  13223. bottom: 49 / 2705
  13224. }
  13225. },
  13226. back: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(150, "lb"),
  13229. name: "Back",
  13230. image: {
  13231. source: "./media/characters/raindrops/back.svg",
  13232. extra: 2574 / 2400,
  13233. bottom: 65 / 2634
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Micro",
  13240. height: math.unit(6, "inches")
  13241. },
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(6 + 2 / 12, "feet")
  13245. },
  13246. {
  13247. name: "Macro",
  13248. height: math.unit(131, "feet"),
  13249. default: true
  13250. },
  13251. {
  13252. name: "Megamacro",
  13253. height: math.unit(15, "miles")
  13254. },
  13255. {
  13256. name: "Gigamacro",
  13257. height: math.unit(4000, "miles")
  13258. },
  13259. {
  13260. name: "Teramacro",
  13261. height: math.unit(315000, "miles")
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13267. {
  13268. front: {
  13269. height: math.unit(2.794, "meters"),
  13270. weight: math.unit(325, "kg"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/tezwa/front.svg",
  13274. extra: 2083 / 1906,
  13275. bottom: 0.031
  13276. }
  13277. },
  13278. foot: {
  13279. height: math.unit(0.687, "meters"),
  13280. name: "Foot",
  13281. image: {
  13282. source: "./media/characters/tezwa/foot.svg"
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(9 + 2 / 12, "feet"),
  13290. default: true
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(58, "feet"),
  13299. weight: math.unit(89000, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/typhus/front.svg",
  13303. extra: 816 / 800,
  13304. bottom: 0.065
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(58, "feet"),
  13312. default: true
  13313. },
  13314. ]
  13315. ))
  13316. characterMakers.push(() => makeCharacter(
  13317. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13318. {
  13319. front: {
  13320. height: math.unit(12, "feet"),
  13321. weight: math.unit(6, "tonnes"),
  13322. name: "Front",
  13323. image: {
  13324. source: "./media/characters/lyra-von-wulf/front.svg",
  13325. extra: 1,
  13326. bottom: 0.10
  13327. }
  13328. },
  13329. frontMecha: {
  13330. height: math.unit(12, "feet"),
  13331. weight: math.unit(12, "tonnes"),
  13332. name: "Front (Mecha)",
  13333. image: {
  13334. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13335. extra: 1,
  13336. bottom: 0.042
  13337. }
  13338. },
  13339. maw: {
  13340. height: math.unit(2.2, "feet"),
  13341. name: "Maw",
  13342. image: {
  13343. source: "./media/characters/lyra-von-wulf/maw.svg"
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Normal",
  13350. height: math.unit(12, "feet"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Classic",
  13355. height: math.unit(50, "feet")
  13356. },
  13357. {
  13358. name: "Macro",
  13359. height: math.unit(500, "feet")
  13360. },
  13361. {
  13362. name: "Megamacro",
  13363. height: math.unit(1, "mile")
  13364. },
  13365. {
  13366. name: "Gigamacro",
  13367. height: math.unit(400, "miles")
  13368. },
  13369. {
  13370. name: "Teramacro",
  13371. height: math.unit(22000, "miles")
  13372. },
  13373. {
  13374. name: "Solarmacro",
  13375. height: math.unit(8600000, "miles")
  13376. },
  13377. {
  13378. name: "Galactic",
  13379. height: math.unit(1057000, "lightyears")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6 + 10 / 12, "feet"),
  13388. weight: math.unit(150, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/dixon/front.svg",
  13392. extra: 3361 / 3209,
  13393. bottom: 0.01
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(6 + 10 / 12, "feet"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Big",
  13405. height: math.unit(12, "meters")
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(500, "meters")
  13410. },
  13411. {
  13412. name: "Megamacro",
  13413. height: math.unit(2, "km")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(185, "cm"),
  13422. weight: math.unit(68, "kg"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/kauko/front.svg",
  13426. extra: 1455 / 1421,
  13427. bottom: 0.03
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(185, "cm"),
  13432. weight: math.unit(68, "kg"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/kauko/back.svg",
  13436. extra: 1455 / 1421,
  13437. bottom: 0.004
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Normal",
  13444. height: math.unit(185, "cm"),
  13445. default: true
  13446. },
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13451. {
  13452. front: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(150, "kg"),
  13455. name: "Front",
  13456. image: {
  13457. source: "./media/characters/varg/front.svg",
  13458. extra: 1108 / 1018,
  13459. bottom: 0.0375
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Normal",
  13466. height: math.unit(5, "meters")
  13467. },
  13468. {
  13469. name: "Macro",
  13470. height: math.unit(200, "meters")
  13471. },
  13472. {
  13473. name: "Megamacro",
  13474. height: math.unit(20, "kilometers")
  13475. },
  13476. {
  13477. name: "True Size",
  13478. height: math.unit(211, "km"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Gigamacro",
  13483. height: math.unit(1000, "km")
  13484. },
  13485. {
  13486. name: "Gigamacro+",
  13487. height: math.unit(8000, "km")
  13488. },
  13489. {
  13490. name: "Teramacro",
  13491. height: math.unit(1000000, "km")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(7 + 7 / 12, "feet"),
  13500. weight: math.unit(267, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/dayza/front.svg",
  13504. extra: 1262 / 1200,
  13505. bottom: 0.035
  13506. }
  13507. },
  13508. side: {
  13509. height: math.unit(7 + 7 / 12, "feet"),
  13510. weight: math.unit(267, "lb"),
  13511. name: "Side",
  13512. image: {
  13513. source: "./media/characters/dayza/side.svg",
  13514. extra: 1295 / 1245,
  13515. bottom: 0.05
  13516. }
  13517. },
  13518. back: {
  13519. height: math.unit(7 + 7 / 12, "feet"),
  13520. weight: math.unit(267, "lb"),
  13521. name: "Back",
  13522. image: {
  13523. source: "./media/characters/dayza/back.svg",
  13524. extra: 1241 / 1170
  13525. }
  13526. },
  13527. },
  13528. [
  13529. {
  13530. name: "Normal",
  13531. height: math.unit(7 + 7 / 12, "feet"),
  13532. default: true
  13533. },
  13534. {
  13535. name: "Macro",
  13536. height: math.unit(155, "feet")
  13537. },
  13538. ]
  13539. ))
  13540. characterMakers.push(() => makeCharacter(
  13541. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13542. {
  13543. front: {
  13544. height: math.unit(6 + 5 / 12, "feet"),
  13545. weight: math.unit(160, "lb"),
  13546. name: "Front",
  13547. image: {
  13548. source: "./media/characters/xanthos/front.svg",
  13549. extra: 1,
  13550. bottom: 0.04
  13551. }
  13552. },
  13553. back: {
  13554. height: math.unit(6 + 5 / 12, "feet"),
  13555. weight: math.unit(160, "lb"),
  13556. name: "Back",
  13557. image: {
  13558. source: "./media/characters/xanthos/back.svg",
  13559. extra: 1,
  13560. bottom: 0.03
  13561. }
  13562. },
  13563. hand: {
  13564. height: math.unit(0.928, "feet"),
  13565. name: "Hand",
  13566. image: {
  13567. source: "./media/characters/xanthos/hand.svg"
  13568. }
  13569. },
  13570. foot: {
  13571. height: math.unit(1.286, "feet"),
  13572. name: "Foot",
  13573. image: {
  13574. source: "./media/characters/xanthos/foot.svg"
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(6 + 5 / 12, "feet"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Normal+",
  13586. height: math.unit(6, "meters")
  13587. },
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(40, "feet")
  13591. },
  13592. {
  13593. name: "Macro+",
  13594. height: math.unit(200, "meters")
  13595. },
  13596. {
  13597. name: "Megamacro",
  13598. height: math.unit(20, "km")
  13599. },
  13600. {
  13601. name: "Megamacro+",
  13602. height: math.unit(100, "km")
  13603. },
  13604. {
  13605. name: "Gigamacro",
  13606. height: math.unit(200, "megameters")
  13607. },
  13608. {
  13609. name: "Gigamacro+",
  13610. height: math.unit(1.5, "gigameters")
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13616. {
  13617. front: {
  13618. height: math.unit(6 + 3 / 12, "feet"),
  13619. weight: math.unit(215, "lb"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/grynn/front.svg",
  13623. extra: 4627 / 4209,
  13624. bottom: 0.047
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Micro",
  13631. height: math.unit(6, "inches")
  13632. },
  13633. {
  13634. name: "Normal",
  13635. height: math.unit(6 + 3 / 12, "feet"),
  13636. default: true
  13637. },
  13638. {
  13639. name: "Big",
  13640. height: math.unit(104, "feet")
  13641. },
  13642. {
  13643. name: "Macro",
  13644. height: math.unit(944, "feet")
  13645. },
  13646. {
  13647. name: "Macro+",
  13648. height: math.unit(9480, "feet")
  13649. },
  13650. {
  13651. name: "Megamacro",
  13652. height: math.unit(78752, "feet")
  13653. },
  13654. {
  13655. name: "Megamacro+",
  13656. height: math.unit(630128, "feet")
  13657. },
  13658. {
  13659. name: "Megamacro++",
  13660. height: math.unit(3150695, "feet")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13666. {
  13667. front: {
  13668. height: math.unit(7 + 5 / 12, "feet"),
  13669. weight: math.unit(450, "lb"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/mocha-aura/front.svg",
  13673. extra: 1907 / 1817,
  13674. bottom: 0.04
  13675. }
  13676. },
  13677. back: {
  13678. height: math.unit(7 + 5 / 12, "feet"),
  13679. weight: math.unit(450, "lb"),
  13680. name: "Back",
  13681. image: {
  13682. source: "./media/characters/mocha-aura/back.svg",
  13683. extra: 1900 / 1825,
  13684. bottom: 0.045
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Nano",
  13691. height: math.unit(1, "nm")
  13692. },
  13693. {
  13694. name: "Megamicro",
  13695. height: math.unit(1, "mm")
  13696. },
  13697. {
  13698. name: "Micro",
  13699. height: math.unit(3, "inches")
  13700. },
  13701. {
  13702. name: "Normal",
  13703. height: math.unit(7 + 5 / 12, "feet"),
  13704. default: true
  13705. },
  13706. {
  13707. name: "Macro",
  13708. height: math.unit(30, "feet")
  13709. },
  13710. {
  13711. name: "Megamacro",
  13712. height: math.unit(3500, "feet")
  13713. },
  13714. {
  13715. name: "Teramacro",
  13716. height: math.unit(500000, "miles")
  13717. },
  13718. {
  13719. name: "Petamacro",
  13720. height: math.unit(50000000000000000, "parsecs")
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13726. {
  13727. front: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Front",
  13731. image: {
  13732. source: "./media/characters/ilisha-devya/front.svg",
  13733. extra: 1053/1049,
  13734. bottom: 270/1323
  13735. }
  13736. },
  13737. back: {
  13738. height: math.unit(6, "feet"),
  13739. weight: math.unit(150, "lb"),
  13740. name: "Back",
  13741. image: {
  13742. source: "./media/characters/ilisha-devya/back.svg",
  13743. extra: 1131/1128,
  13744. bottom: 39/1170
  13745. }
  13746. },
  13747. },
  13748. [
  13749. {
  13750. name: "Macro",
  13751. height: math.unit(500, "feet"),
  13752. default: true
  13753. },
  13754. {
  13755. name: "Megamacro",
  13756. height: math.unit(10, "miles")
  13757. },
  13758. {
  13759. name: "Gigamacro",
  13760. height: math.unit(100000, "miles")
  13761. },
  13762. {
  13763. name: "Examacro",
  13764. height: math.unit(1e9, "lightyears")
  13765. },
  13766. {
  13767. name: "Omniversal",
  13768. height: math.unit(1e33, "lightyears")
  13769. },
  13770. {
  13771. name: "Beyond Infinite",
  13772. height: math.unit(1e100, "lightyears")
  13773. },
  13774. ]
  13775. ))
  13776. characterMakers.push(() => makeCharacter(
  13777. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13778. {
  13779. Side: {
  13780. height: math.unit(6, "feet"),
  13781. weight: math.unit(150, "lb"),
  13782. name: "Side",
  13783. image: {
  13784. source: "./media/characters/mira/side.svg",
  13785. extra: 900 / 799,
  13786. bottom: 0.02
  13787. }
  13788. },
  13789. },
  13790. [
  13791. {
  13792. name: "Human Size",
  13793. height: math.unit(6, "feet")
  13794. },
  13795. {
  13796. name: "Macro",
  13797. height: math.unit(100, "feet"),
  13798. default: true
  13799. },
  13800. {
  13801. name: "Megamacro",
  13802. height: math.unit(10, "miles")
  13803. },
  13804. {
  13805. name: "Gigamacro",
  13806. height: math.unit(25000, "miles")
  13807. },
  13808. {
  13809. name: "Teramacro",
  13810. height: math.unit(300, "AU")
  13811. },
  13812. {
  13813. name: "Full Size",
  13814. height: math.unit(4.5e10, "lightyears")
  13815. },
  13816. ]
  13817. ))
  13818. characterMakers.push(() => makeCharacter(
  13819. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13820. {
  13821. front: {
  13822. height: math.unit(6, "feet"),
  13823. weight: math.unit(150, "lb"),
  13824. name: "Front",
  13825. image: {
  13826. source: "./media/characters/holly/front.svg",
  13827. extra: 639 / 606
  13828. }
  13829. },
  13830. back: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Back",
  13834. image: {
  13835. source: "./media/characters/holly/back.svg",
  13836. extra: 623 / 598
  13837. }
  13838. },
  13839. frontWorking: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(150, "lb"),
  13842. name: "Front (Working)",
  13843. image: {
  13844. source: "./media/characters/holly/front-working.svg",
  13845. extra: 607 / 577,
  13846. bottom: 0.048
  13847. }
  13848. },
  13849. },
  13850. [
  13851. {
  13852. name: "Normal",
  13853. height: math.unit(12 + 3 / 12, "feet"),
  13854. default: true
  13855. },
  13856. ]
  13857. ))
  13858. characterMakers.push(() => makeCharacter(
  13859. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13860. {
  13861. front: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Front",
  13865. image: {
  13866. source: "./media/characters/porter/front.svg",
  13867. extra: 1,
  13868. bottom: 0.01
  13869. }
  13870. },
  13871. frontRobes: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front (Robes)",
  13875. image: {
  13876. source: "./media/characters/porter/front-robes.svg",
  13877. extra: 1.01,
  13878. bottom: 0.01
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Normal",
  13885. height: math.unit(11 + 9 / 12, "feet"),
  13886. default: true
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13892. {
  13893. legendary: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Legendary",
  13897. image: {
  13898. source: "./media/characters/lucy/legendary.svg",
  13899. extra: 1355 / 1100,
  13900. bottom: 0.045
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Legendary",
  13907. height: math.unit(86882 * 2, "miles"),
  13908. default: true
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(6, "feet"),
  13917. weight: math.unit(150, "lb"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/drusilla/front.svg",
  13921. extra: 678 / 635,
  13922. bottom: 0.03
  13923. }
  13924. },
  13925. back: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(150, "lb"),
  13928. name: "Back",
  13929. image: {
  13930. source: "./media/characters/drusilla/back.svg",
  13931. extra: 678 / 635,
  13932. bottom: 0.005
  13933. }
  13934. },
  13935. },
  13936. [
  13937. {
  13938. name: "Macro",
  13939. height: math.unit(100, "feet")
  13940. },
  13941. {
  13942. name: "Canon Height",
  13943. height: math.unit(2000, "feet"),
  13944. default: true
  13945. },
  13946. ]
  13947. ))
  13948. characterMakers.push(() => makeCharacter(
  13949. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13950. {
  13951. front: {
  13952. height: math.unit(6, "feet"),
  13953. weight: math.unit(180, "lb"),
  13954. name: "Front",
  13955. image: {
  13956. source: "./media/characters/renard-thatch/front.svg",
  13957. extra: 2411 / 2275,
  13958. bottom: 0.01
  13959. }
  13960. },
  13961. frontPosing: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(180, "lb"),
  13964. name: "Front (Posing)",
  13965. image: {
  13966. source: "./media/characters/renard-thatch/front-posing.svg",
  13967. extra: 2381 / 2261,
  13968. bottom: 0.01
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(6, "feet"),
  13973. weight: math.unit(180, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/renard-thatch/back.svg",
  13977. extra: 2428 / 2288
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Micro",
  13984. height: math.unit(3, "inches")
  13985. },
  13986. {
  13987. name: "Default",
  13988. height: math.unit(6, "feet"),
  13989. default: true
  13990. },
  13991. {
  13992. name: "Macro",
  13993. height: math.unit(75, "feet")
  13994. },
  13995. ]
  13996. ))
  13997. characterMakers.push(() => makeCharacter(
  13998. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13999. {
  14000. front: {
  14001. height: math.unit(1450, "feet"),
  14002. weight: math.unit(1.21e6, "tons"),
  14003. name: "Front",
  14004. image: {
  14005. source: "./media/characters/sekvra/front.svg",
  14006. extra: 1193/1190,
  14007. bottom: 78/1271
  14008. }
  14009. },
  14010. side: {
  14011. height: math.unit(1450, "feet"),
  14012. weight: math.unit(1.21e6, "tons"),
  14013. name: "Side",
  14014. image: {
  14015. source: "./media/characters/sekvra/side.svg",
  14016. extra: 1193/1190,
  14017. bottom: 52/1245
  14018. }
  14019. },
  14020. back: {
  14021. height: math.unit(1450, "feet"),
  14022. weight: math.unit(1.21e6, "tons"),
  14023. name: "Back",
  14024. image: {
  14025. source: "./media/characters/sekvra/back.svg",
  14026. extra: 1219/1216,
  14027. bottom: 21/1240
  14028. }
  14029. },
  14030. frontClothed: {
  14031. height: math.unit(1450, "feet"),
  14032. weight: math.unit(1.21e6, "tons"),
  14033. name: "Front (Clothed)",
  14034. image: {
  14035. source: "./media/characters/sekvra/front-clothed.svg",
  14036. extra: 1192/1189,
  14037. bottom: 79/1271
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Macro",
  14044. height: math.unit(1450, "feet"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Megamacro",
  14049. height: math.unit(15000, "feet")
  14050. },
  14051. ]
  14052. ))
  14053. characterMakers.push(() => makeCharacter(
  14054. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14055. {
  14056. front: {
  14057. height: math.unit(6, "feet"),
  14058. weight: math.unit(150, "lb"),
  14059. name: "Front",
  14060. image: {
  14061. source: "./media/characters/carmine/front.svg",
  14062. extra: 1,
  14063. bottom: 0.035
  14064. }
  14065. },
  14066. frontArmor: {
  14067. height: math.unit(6, "feet"),
  14068. weight: math.unit(150, "lb"),
  14069. name: "Front (Armor)",
  14070. image: {
  14071. source: "./media/characters/carmine/front-armor.svg",
  14072. extra: 1,
  14073. bottom: 0.035
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Large",
  14080. height: math.unit(1, "mile")
  14081. },
  14082. {
  14083. name: "Huge",
  14084. height: math.unit(40, "miles"),
  14085. default: true
  14086. },
  14087. {
  14088. name: "Colossal",
  14089. height: math.unit(2500, "miles")
  14090. },
  14091. ]
  14092. ))
  14093. characterMakers.push(() => makeCharacter(
  14094. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14095. {
  14096. front: {
  14097. height: math.unit(6, "feet"),
  14098. weight: math.unit(150, "lb"),
  14099. name: "Front",
  14100. image: {
  14101. source: "./media/characters/elyssia/front.svg",
  14102. extra: 2201 / 2035,
  14103. bottom: 0.05
  14104. }
  14105. },
  14106. frontClothed: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(150, "lb"),
  14109. name: "Front (Clothed)",
  14110. image: {
  14111. source: "./media/characters/elyssia/front-clothed.svg",
  14112. extra: 2201 / 2035,
  14113. bottom: 0.05
  14114. }
  14115. },
  14116. back: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(150, "lb"),
  14119. name: "Back",
  14120. image: {
  14121. source: "./media/characters/elyssia/back.svg",
  14122. extra: 2201 / 2035,
  14123. bottom: 0.013
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Smaller",
  14130. height: math.unit(150, "feet")
  14131. },
  14132. {
  14133. name: "Standard",
  14134. height: math.unit(1400, "feet"),
  14135. default: true
  14136. },
  14137. {
  14138. name: "Distracted",
  14139. height: math.unit(15000, "feet")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(7 + 4/12, "feet"),
  14148. weight: math.unit(690, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/geno-maxwell/front.svg",
  14152. extra: 984/856,
  14153. bottom: 87/1071
  14154. }
  14155. },
  14156. back: {
  14157. height: math.unit(7 + 4/12, "feet"),
  14158. weight: math.unit(690, "lb"),
  14159. name: "Back",
  14160. image: {
  14161. source: "./media/characters/geno-maxwell/back.svg",
  14162. extra: 981/854,
  14163. bottom: 57/1038
  14164. }
  14165. },
  14166. frontCostume: {
  14167. height: math.unit(7 + 4/12, "feet"),
  14168. weight: math.unit(690, "lb"),
  14169. name: "Front (Costume)",
  14170. image: {
  14171. source: "./media/characters/geno-maxwell/front-costume.svg",
  14172. extra: 984/856,
  14173. bottom: 87/1071
  14174. }
  14175. },
  14176. backcostume: {
  14177. height: math.unit(7 + 4/12, "feet"),
  14178. weight: math.unit(690, "lb"),
  14179. name: "Back (Costume)",
  14180. image: {
  14181. source: "./media/characters/geno-maxwell/back-costume.svg",
  14182. extra: 981/854,
  14183. bottom: 57/1038
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Micro",
  14190. height: math.unit(3, "inches")
  14191. },
  14192. {
  14193. name: "Normal",
  14194. height: math.unit(7 + 4 / 12, "feet"),
  14195. default: true
  14196. },
  14197. {
  14198. name: "Macro",
  14199. height: math.unit(220, "feet")
  14200. },
  14201. {
  14202. name: "Megamacro",
  14203. height: math.unit(11, "miles")
  14204. },
  14205. ]
  14206. ))
  14207. characterMakers.push(() => makeCharacter(
  14208. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14209. {
  14210. front: {
  14211. height: math.unit(7 + 4/12, "feet"),
  14212. weight: math.unit(750, "lb"),
  14213. name: "Front",
  14214. image: {
  14215. source: "./media/characters/regena-maxwell/front.svg",
  14216. extra: 984/856,
  14217. bottom: 87/1071
  14218. }
  14219. },
  14220. back: {
  14221. height: math.unit(7 + 4/12, "feet"),
  14222. weight: math.unit(750, "lb"),
  14223. name: "Back",
  14224. image: {
  14225. source: "./media/characters/regena-maxwell/back.svg",
  14226. extra: 981/854,
  14227. bottom: 57/1038
  14228. }
  14229. },
  14230. frontCostume: {
  14231. height: math.unit(7 + 4/12, "feet"),
  14232. weight: math.unit(750, "lb"),
  14233. name: "Front (Costume)",
  14234. image: {
  14235. source: "./media/characters/regena-maxwell/front-costume.svg",
  14236. extra: 984/856,
  14237. bottom: 87/1071
  14238. }
  14239. },
  14240. backcostume: {
  14241. height: math.unit(7 + 4/12, "feet"),
  14242. weight: math.unit(750, "lb"),
  14243. name: "Back (Costume)",
  14244. image: {
  14245. source: "./media/characters/regena-maxwell/back-costume.svg",
  14246. extra: 981/854,
  14247. bottom: 57/1038
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(7 + 4 / 12, "feet"),
  14255. default: true
  14256. },
  14257. {
  14258. name: "Macro",
  14259. height: math.unit(220, "feet")
  14260. },
  14261. {
  14262. name: "Megamacro",
  14263. height: math.unit(11, "miles")
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(6, "feet"),
  14272. weight: math.unit(150, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14276. extra: 860 / 690,
  14277. bottom: 0.03
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(1.7, "meters"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(6, "feet"),
  14294. weight: math.unit(150, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/quilly/front.svg",
  14298. extra: 890 / 776
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Gigamacro",
  14305. height: math.unit(404090, "miles"),
  14306. default: true
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(7 + 8 / 12, "feet"),
  14315. weight: math.unit(350, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/tempest/front.svg",
  14319. extra: 1175 / 1086,
  14320. bottom: 0.02
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(7 + 8 / 12, "feet"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14334. {
  14335. side: {
  14336. height: math.unit(4 + 5 / 12, "feet"),
  14337. weight: math.unit(80, "lb"),
  14338. name: "Side",
  14339. image: {
  14340. source: "./media/characters/rodger/side.svg",
  14341. extra: 1235 / 1118
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Micro",
  14348. height: math.unit(1, "inch")
  14349. },
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(4 + 5 / 12, "feet"),
  14353. default: true
  14354. },
  14355. {
  14356. name: "Macro",
  14357. height: math.unit(120, "feet")
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(6, "feet"),
  14366. weight: math.unit(150, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/danyel/front.svg",
  14370. extra: 1185 / 1123,
  14371. bottom: 0.05
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Shrunken",
  14378. height: math.unit(0.5, "mm")
  14379. },
  14380. {
  14381. name: "Micro",
  14382. height: math.unit(1, "mm"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Upsized",
  14387. height: math.unit(5 + 5 / 12, "feet")
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14393. {
  14394. front: {
  14395. height: math.unit(5 + 6 / 12, "feet"),
  14396. weight: math.unit(200, "lb"),
  14397. name: "Front",
  14398. image: {
  14399. source: "./media/characters/vivian-bijoux/front.svg",
  14400. extra: 1217/1209,
  14401. bottom: 76/1293
  14402. }
  14403. },
  14404. back: {
  14405. height: math.unit(5 + 6 / 12, "feet"),
  14406. weight: math.unit(200, "lb"),
  14407. name: "Back",
  14408. image: {
  14409. source: "./media/characters/vivian-bijoux/back.svg",
  14410. extra: 1214/1208,
  14411. bottom: 51/1265
  14412. }
  14413. },
  14414. dressed: {
  14415. height: math.unit(5 + 6 / 12, "feet"),
  14416. weight: math.unit(200, "lb"),
  14417. name: "Dressed",
  14418. image: {
  14419. source: "./media/characters/vivian-bijoux/dressed.svg",
  14420. extra: 1217/1209,
  14421. bottom: 76/1293
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(5 + 6 / 12, "feet"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Bad Dream",
  14433. height: math.unit(500, "feet")
  14434. },
  14435. {
  14436. name: "Nightmare",
  14437. height: math.unit(500, "miles")
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(6 + 1 / 12, "feet"),
  14446. weight: math.unit(260, "lb"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/zeta/front.svg",
  14450. extra: 1968 / 1889,
  14451. bottom: 0.06
  14452. }
  14453. },
  14454. back: {
  14455. height: math.unit(6 + 1 / 12, "feet"),
  14456. weight: math.unit(260, "lb"),
  14457. name: "Back",
  14458. image: {
  14459. source: "./media/characters/zeta/back.svg",
  14460. extra: 1944 / 1858,
  14461. bottom: 0.03
  14462. }
  14463. },
  14464. hand: {
  14465. height: math.unit(1.112, "feet"),
  14466. name: "Hand",
  14467. image: {
  14468. source: "./media/characters/zeta/hand.svg"
  14469. }
  14470. },
  14471. foot: {
  14472. height: math.unit(1.48, "feet"),
  14473. name: "Foot",
  14474. image: {
  14475. source: "./media/characters/zeta/foot.svg"
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Micro",
  14482. height: math.unit(6, "inches")
  14483. },
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(6 + 1 / 12, "feet"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(20, "feet")
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(6, "feet"),
  14500. weight: math.unit(150, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/jamie-larsen/front.svg",
  14504. extra: 962 / 933,
  14505. bottom: 0.02
  14506. }
  14507. },
  14508. back: {
  14509. height: math.unit(6, "feet"),
  14510. weight: math.unit(150, "lb"),
  14511. name: "Back",
  14512. image: {
  14513. source: "./media/characters/jamie-larsen/back.svg",
  14514. extra: 997 / 946
  14515. }
  14516. },
  14517. },
  14518. [
  14519. {
  14520. name: "Macro",
  14521. height: math.unit(28 + 7 / 12, "feet"),
  14522. default: true
  14523. },
  14524. {
  14525. name: "Macro+",
  14526. height: math.unit(180, "feet")
  14527. },
  14528. {
  14529. name: "Megamacro",
  14530. height: math.unit(10, "miles")
  14531. },
  14532. {
  14533. name: "Gigamacro",
  14534. height: math.unit(200000, "miles")
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14540. {
  14541. front: {
  14542. height: math.unit(6, "feet"),
  14543. weight: math.unit(120, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/vance/front.svg",
  14547. extra: 1980 / 1890,
  14548. bottom: 0.09
  14549. }
  14550. },
  14551. back: {
  14552. height: math.unit(6, "feet"),
  14553. weight: math.unit(120, "lb"),
  14554. name: "Back",
  14555. image: {
  14556. source: "./media/characters/vance/back.svg",
  14557. extra: 2081 / 1994,
  14558. bottom: 0.014
  14559. }
  14560. },
  14561. hand: {
  14562. height: math.unit(0.88, "feet"),
  14563. name: "Hand",
  14564. image: {
  14565. source: "./media/characters/vance/hand.svg"
  14566. }
  14567. },
  14568. foot: {
  14569. height: math.unit(0.64, "feet"),
  14570. name: "Foot",
  14571. image: {
  14572. source: "./media/characters/vance/foot.svg"
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Small",
  14579. height: math.unit(90, "feet"),
  14580. default: true
  14581. },
  14582. {
  14583. name: "Macro",
  14584. height: math.unit(100, "meters")
  14585. },
  14586. {
  14587. name: "Megamacro",
  14588. height: math.unit(15, "miles")
  14589. },
  14590. ]
  14591. ))
  14592. characterMakers.push(() => makeCharacter(
  14593. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14594. {
  14595. front: {
  14596. height: math.unit(6, "feet"),
  14597. weight: math.unit(180, "lb"),
  14598. name: "Front",
  14599. image: {
  14600. source: "./media/characters/xochitl/front.svg",
  14601. extra: 2297 / 2261,
  14602. bottom: 0.065
  14603. }
  14604. },
  14605. back: {
  14606. height: math.unit(6, "feet"),
  14607. weight: math.unit(180, "lb"),
  14608. name: "Back",
  14609. image: {
  14610. source: "./media/characters/xochitl/back.svg",
  14611. extra: 2386 / 2354,
  14612. bottom: 0.01
  14613. }
  14614. },
  14615. foot: {
  14616. height: math.unit(6 / 5 * 1.15, "feet"),
  14617. weight: math.unit(150, "lb"),
  14618. name: "Foot",
  14619. image: {
  14620. source: "./media/characters/xochitl/foot.svg"
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Macro",
  14627. height: math.unit(80, "feet")
  14628. },
  14629. {
  14630. name: "Macro+",
  14631. height: math.unit(400, "feet"),
  14632. default: true
  14633. },
  14634. {
  14635. name: "Gigamacro",
  14636. height: math.unit(80000, "miles")
  14637. },
  14638. {
  14639. name: "Gigamacro+",
  14640. height: math.unit(400000, "miles")
  14641. },
  14642. {
  14643. name: "Teramacro",
  14644. height: math.unit(300, "AU")
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14650. {
  14651. front: {
  14652. height: math.unit(6, "feet"),
  14653. weight: math.unit(150, "lb"),
  14654. name: "Front",
  14655. image: {
  14656. source: "./media/characters/vincent/front.svg",
  14657. extra: 1130 / 1080,
  14658. bottom: 0.055
  14659. }
  14660. },
  14661. beak: {
  14662. height: math.unit(6 * 0.1, "feet"),
  14663. name: "Beak",
  14664. image: {
  14665. source: "./media/characters/vincent/beak.svg"
  14666. }
  14667. },
  14668. hand: {
  14669. height: math.unit(6 * 0.85, "feet"),
  14670. weight: math.unit(150, "lb"),
  14671. name: "Hand",
  14672. image: {
  14673. source: "./media/characters/vincent/hand.svg"
  14674. }
  14675. },
  14676. foot: {
  14677. height: math.unit(6 * 0.19, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Foot",
  14680. image: {
  14681. source: "./media/characters/vincent/foot.svg"
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Base",
  14688. height: math.unit(6 + 5 / 12, "feet"),
  14689. default: true
  14690. },
  14691. {
  14692. name: "Macro",
  14693. height: math.unit(300, "feet")
  14694. },
  14695. {
  14696. name: "Megamacro",
  14697. height: math.unit(2, "miles")
  14698. },
  14699. {
  14700. name: "Gigamacro",
  14701. height: math.unit(1000, "miles")
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(2, "meters"),
  14710. weight: math.unit(500, "kg"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/coatl/front.svg",
  14714. extra: 3948 / 3500,
  14715. bottom: 0.082
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(4, "meters")
  14723. },
  14724. {
  14725. name: "Macro",
  14726. height: math.unit(100, "meters"),
  14727. default: true
  14728. },
  14729. {
  14730. name: "Macro+",
  14731. height: math.unit(300, "meters")
  14732. },
  14733. {
  14734. name: "Megamacro",
  14735. height: math.unit(3, "gigameters")
  14736. },
  14737. {
  14738. name: "Megamacro+",
  14739. height: math.unit(300, "terameters")
  14740. },
  14741. {
  14742. name: "Megamacro++",
  14743. height: math.unit(3, "lightyears")
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14749. {
  14750. front: {
  14751. height: math.unit(6, "feet"),
  14752. weight: math.unit(50, "kg"),
  14753. name: "front",
  14754. image: {
  14755. source: "./media/characters/shiroryu/front.svg",
  14756. extra: 1990 / 1935
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Mortal Mingling",
  14763. height: math.unit(3, "meters")
  14764. },
  14765. {
  14766. name: "Kaiju-ish",
  14767. height: math.unit(250, "meters")
  14768. },
  14769. {
  14770. name: "Somewhat Godly",
  14771. height: math.unit(400, "km"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Planetary",
  14776. height: math.unit(300, "megameters")
  14777. },
  14778. {
  14779. name: "Galaxy-dwarfing",
  14780. height: math.unit(450, "kiloparsecs")
  14781. },
  14782. {
  14783. name: "Universe Eater",
  14784. height: math.unit(150, "gigaparsecs")
  14785. },
  14786. {
  14787. name: "Almost Immeasurable",
  14788. height: math.unit(1.3e266, "yottaparsecs")
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14794. {
  14795. front: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(150, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/umeko/front.svg",
  14801. extra: 1,
  14802. bottom: 0.019
  14803. }
  14804. },
  14805. frontArmored: {
  14806. height: math.unit(6, "feet"),
  14807. weight: math.unit(150, "lb"),
  14808. name: "Front (Armored)",
  14809. image: {
  14810. source: "./media/characters/umeko/front-armored.svg",
  14811. extra: 1,
  14812. bottom: 0.021
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(220, "feet"),
  14820. default: true
  14821. },
  14822. {
  14823. name: "Guardian Dragon",
  14824. height: math.unit(50, "miles")
  14825. },
  14826. {
  14827. name: "Cosmic",
  14828. height: math.unit(800000, "miles")
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/cassidy/front.svg",
  14841. extra: 810/808,
  14842. bottom: 41/851
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Canon Height",
  14849. height: math.unit(120, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Macro+",
  14854. height: math.unit(400, "feet")
  14855. },
  14856. {
  14857. name: "Macro++",
  14858. height: math.unit(4000, "feet")
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(3, "miles")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(150, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/isaac/front.svg",
  14875. extra: 896 / 815,
  14876. bottom: 0.11
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Human Size",
  14883. height: math.unit(8, "feet"),
  14884. default: true
  14885. },
  14886. {
  14887. name: "Macro",
  14888. height: math.unit(400, "feet")
  14889. },
  14890. {
  14891. name: "Megamacro",
  14892. height: math.unit(50, "miles")
  14893. },
  14894. {
  14895. name: "Canon Height",
  14896. height: math.unit(200, "AU")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(6, "feet"),
  14905. weight: math.unit(72, "kg"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/sleekit/front.svg",
  14909. extra: 4693 / 4487,
  14910. bottom: 0.012
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Minimum Height",
  14917. height: math.unit(10, "meters")
  14918. },
  14919. {
  14920. name: "Smaller",
  14921. height: math.unit(25, "meters")
  14922. },
  14923. {
  14924. name: "Larger",
  14925. height: math.unit(38, "meters"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Maximum height",
  14930. height: math.unit(100, "meters")
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(6, "feet"),
  14939. weight: math.unit(150, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/nillia/front.svg",
  14943. extra: 2195 / 2037,
  14944. bottom: 0.005
  14945. }
  14946. },
  14947. back: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Back",
  14951. image: {
  14952. source: "./media/characters/nillia/back.svg",
  14953. extra: 2195 / 2037,
  14954. bottom: 0.005
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Canon Height",
  14961. height: math.unit(489, "feet"),
  14962. default: true
  14963. }
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(6, "feet"),
  14971. weight: math.unit(150, "lb"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/mesmyriza/front.svg",
  14975. extra: 2067 / 1784,
  14976. bottom: 0.035
  14977. }
  14978. },
  14979. foot: {
  14980. height: math.unit(6 / (250 / 35), "feet"),
  14981. name: "Foot",
  14982. image: {
  14983. source: "./media/characters/mesmyriza/foot.svg"
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Macro",
  14990. height: math.unit(457, "meters"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Megamacro",
  14995. height: math.unit(8, "megameters")
  14996. },
  14997. ]
  14998. ))
  14999. characterMakers.push(() => makeCharacter(
  15000. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15001. {
  15002. front: {
  15003. height: math.unit(6, "feet"),
  15004. weight: math.unit(250, "lb"),
  15005. name: "Front",
  15006. image: {
  15007. source: "./media/characters/saudade/front.svg",
  15008. extra: 1172 / 1139,
  15009. bottom: 0.035
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Micro",
  15016. height: math.unit(3, "inches")
  15017. },
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(6, "feet"),
  15021. default: true
  15022. },
  15023. {
  15024. name: "Macro",
  15025. height: math.unit(50, "feet")
  15026. },
  15027. {
  15028. name: "Megamacro",
  15029. height: math.unit(2800, "feet")
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(5 + 4 / 12, "feet"),
  15038. weight: math.unit(100, "lb"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/keireer/front.svg",
  15042. extra: 716 / 666,
  15043. bottom: 0.05
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Normal",
  15050. height: math.unit(5 + 4 / 12, "feet"),
  15051. default: true
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(90, "kg"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/mirja/front.svg",
  15064. extra: 1789 / 1683,
  15065. bottom: 0.05
  15066. }
  15067. },
  15068. frontDressed: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(90, "lb"),
  15071. name: "Front (Dressed)",
  15072. image: {
  15073. source: "./media/characters/mirja/front-dressed.svg",
  15074. extra: 1789 / 1683,
  15075. bottom: 0.05
  15076. }
  15077. },
  15078. back: {
  15079. height: math.unit(6, "feet"),
  15080. weight: math.unit(90, "lb"),
  15081. name: "Back",
  15082. image: {
  15083. source: "./media/characters/mirja/back.svg",
  15084. extra: 953 / 917,
  15085. bottom: 0.017
  15086. }
  15087. },
  15088. },
  15089. [
  15090. {
  15091. name: "\"Incognito\"",
  15092. height: math.unit(3, "meters")
  15093. },
  15094. {
  15095. name: "Strolling Size",
  15096. height: math.unit(15, "km")
  15097. },
  15098. {
  15099. name: "Larger Strolling Size",
  15100. height: math.unit(400, "km")
  15101. },
  15102. {
  15103. name: "Preferred Size",
  15104. height: math.unit(5000, "km")
  15105. },
  15106. {
  15107. name: "True Size",
  15108. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15109. default: true
  15110. },
  15111. ]
  15112. ))
  15113. characterMakers.push(() => makeCharacter(
  15114. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15115. {
  15116. front: {
  15117. height: math.unit(15, "feet"),
  15118. weight: math.unit(880, "kg"),
  15119. name: "Front",
  15120. image: {
  15121. source: "./media/characters/nightraver/front.svg",
  15122. extra: 2444 / 2160,
  15123. bottom: 0.027
  15124. }
  15125. },
  15126. back: {
  15127. height: math.unit(15, "feet"),
  15128. weight: math.unit(880, "kg"),
  15129. name: "Back",
  15130. image: {
  15131. source: "./media/characters/nightraver/back.svg",
  15132. extra: 2309 / 2180,
  15133. bottom: 0.005
  15134. }
  15135. },
  15136. sole: {
  15137. height: math.unit(2.878, "feet"),
  15138. name: "Sole",
  15139. image: {
  15140. source: "./media/characters/nightraver/sole.svg"
  15141. }
  15142. },
  15143. foot: {
  15144. height: math.unit(2.285, "feet"),
  15145. name: "Foot",
  15146. image: {
  15147. source: "./media/characters/nightraver/foot.svg"
  15148. }
  15149. },
  15150. maw: {
  15151. height: math.unit(2.67, "feet"),
  15152. name: "Maw",
  15153. image: {
  15154. source: "./media/characters/nightraver/maw.svg"
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Micro",
  15161. height: math.unit(1, "cm")
  15162. },
  15163. {
  15164. name: "Normal",
  15165. height: math.unit(15, "feet"),
  15166. default: true
  15167. },
  15168. {
  15169. name: "Macro",
  15170. height: math.unit(300, "feet")
  15171. },
  15172. {
  15173. name: "Megamacro",
  15174. height: math.unit(300, "miles")
  15175. },
  15176. {
  15177. name: "Gigamacro",
  15178. height: math.unit(10000, "miles")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15184. {
  15185. side: {
  15186. height: math.unit(2, "inches"),
  15187. weight: math.unit(5, "grams"),
  15188. name: "Side",
  15189. image: {
  15190. source: "./media/characters/arc/side.svg"
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Micro",
  15197. height: math.unit(2, "inches"),
  15198. default: true
  15199. },
  15200. ]
  15201. ))
  15202. characterMakers.push(() => makeCharacter(
  15203. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15204. {
  15205. front: {
  15206. height: math.unit(1.1938, "meters"),
  15207. weight: math.unit(54, "kg"),
  15208. name: "Front",
  15209. image: {
  15210. source: "./media/characters/nebula-shahar/front.svg",
  15211. extra: 1642 / 1436,
  15212. bottom: 0.06
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Megamicro",
  15219. height: math.unit(0.3, "mm")
  15220. },
  15221. {
  15222. name: "Micro",
  15223. height: math.unit(3, "cm")
  15224. },
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(138, "cm"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Macro",
  15232. height: math.unit(30, "m")
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(5.24, "feet"),
  15241. weight: math.unit(150, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/shayla/front.svg",
  15245. extra: 1512 / 1414,
  15246. bottom: 0.01
  15247. }
  15248. },
  15249. back: {
  15250. height: math.unit(5.24, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Back",
  15253. image: {
  15254. source: "./media/characters/shayla/back.svg",
  15255. extra: 1512 / 1414
  15256. }
  15257. },
  15258. hand: {
  15259. height: math.unit(0.7781496062992126, "feet"),
  15260. name: "Hand",
  15261. image: {
  15262. source: "./media/characters/shayla/hand.svg"
  15263. }
  15264. },
  15265. foot: {
  15266. height: math.unit(1.4206036745406823, "feet"),
  15267. name: "Foot",
  15268. image: {
  15269. source: "./media/characters/shayla/foot.svg"
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Micro",
  15276. height: math.unit(0.32, "feet")
  15277. },
  15278. {
  15279. name: "Normal",
  15280. height: math.unit(5.24, "feet"),
  15281. default: true
  15282. },
  15283. {
  15284. name: "Macro",
  15285. height: math.unit(492.12, "feet")
  15286. },
  15287. {
  15288. name: "Megamacro",
  15289. height: math.unit(186.41, "miles")
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(2.2, "m"),
  15298. weight: math.unit(120, "kg"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/pia-jr/front.svg",
  15302. extra: 1000 / 970,
  15303. bottom: 0.035
  15304. }
  15305. },
  15306. hand: {
  15307. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15308. name: "Hand",
  15309. image: {
  15310. source: "./media/characters/pia-jr/hand.svg"
  15311. }
  15312. },
  15313. paw: {
  15314. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15315. name: "Paw",
  15316. image: {
  15317. source: "./media/characters/pia-jr/paw.svg"
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Micro",
  15324. height: math.unit(1.2, "cm")
  15325. },
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(2.2, "m"),
  15329. default: true
  15330. },
  15331. {
  15332. name: "Macro",
  15333. height: math.unit(180, "m")
  15334. },
  15335. {
  15336. name: "Megamacro",
  15337. height: math.unit(420, "km")
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(2, "m"),
  15346. weight: math.unit(115, "kg"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/pia-sr/front.svg",
  15350. extra: 760 / 730,
  15351. bottom: 0.015
  15352. }
  15353. },
  15354. back: {
  15355. height: math.unit(2, "m"),
  15356. weight: math.unit(115, "kg"),
  15357. name: "Back",
  15358. image: {
  15359. source: "./media/characters/pia-sr/back.svg",
  15360. extra: 760 / 730,
  15361. bottom: 0.01
  15362. }
  15363. },
  15364. hand: {
  15365. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15366. name: "Hand",
  15367. image: {
  15368. source: "./media/characters/pia-sr/hand.svg"
  15369. }
  15370. },
  15371. foot: {
  15372. height: math.unit(1.83, "feet"),
  15373. name: "Foot",
  15374. image: {
  15375. source: "./media/characters/pia-sr/foot.svg"
  15376. }
  15377. },
  15378. },
  15379. [
  15380. {
  15381. name: "Micro",
  15382. height: math.unit(88, "mm")
  15383. },
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(2, "m"),
  15387. default: true
  15388. },
  15389. {
  15390. name: "Macro",
  15391. height: math.unit(200, "m")
  15392. },
  15393. {
  15394. name: "Megamacro",
  15395. height: math.unit(420, "km")
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15401. {
  15402. front: {
  15403. height: math.unit(8 + 2 / 12, "feet"),
  15404. weight: math.unit(300, "lb"),
  15405. name: "Front",
  15406. image: {
  15407. source: "./media/characters/kibibyte/front.svg",
  15408. extra: 2221 / 2098,
  15409. bottom: 0.04
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Normal",
  15416. height: math.unit(8 + 2 / 12, "feet"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Socialable Macro",
  15421. height: math.unit(50, "feet")
  15422. },
  15423. {
  15424. name: "Macro",
  15425. height: math.unit(300, "feet")
  15426. },
  15427. {
  15428. name: "Megamacro",
  15429. height: math.unit(500, "miles")
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(6, "feet"),
  15438. weight: math.unit(150, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/felix/front.svg",
  15442. extra: 762 / 722,
  15443. bottom: 0.02
  15444. }
  15445. },
  15446. frontClothed: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(150, "lb"),
  15449. name: "Front (Clothed)",
  15450. image: {
  15451. source: "./media/characters/felix/front-clothed.svg",
  15452. extra: 762 / 722,
  15453. bottom: 0.02
  15454. }
  15455. },
  15456. },
  15457. [
  15458. {
  15459. name: "Normal",
  15460. height: math.unit(6 + 8 / 12, "feet"),
  15461. default: true
  15462. },
  15463. {
  15464. name: "Macro",
  15465. height: math.unit(2600, "feet")
  15466. },
  15467. {
  15468. name: "Megamacro",
  15469. height: math.unit(450, "miles")
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15475. {
  15476. front: {
  15477. height: math.unit(6 + 1 / 12, "feet"),
  15478. weight: math.unit(250, "lb"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/tobo/front.svg",
  15482. extra: 608 / 586,
  15483. bottom: 0.023
  15484. }
  15485. },
  15486. back: {
  15487. height: math.unit(6 + 1 / 12, "feet"),
  15488. weight: math.unit(250, "lb"),
  15489. name: "Back",
  15490. image: {
  15491. source: "./media/characters/tobo/back.svg",
  15492. extra: 608 / 586
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Nano",
  15499. height: math.unit(2, "nm")
  15500. },
  15501. {
  15502. name: "Megamicro",
  15503. height: math.unit(0.1, "mm")
  15504. },
  15505. {
  15506. name: "Micro",
  15507. height: math.unit(1, "inch"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Human-sized",
  15512. height: math.unit(6 + 1 / 12, "feet")
  15513. },
  15514. {
  15515. name: "Macro",
  15516. height: math.unit(250, "feet")
  15517. },
  15518. {
  15519. name: "Megamacro",
  15520. height: math.unit(75, "miles")
  15521. },
  15522. {
  15523. name: "Texas-sized",
  15524. height: math.unit(750, "miles")
  15525. },
  15526. {
  15527. name: "Teramacro",
  15528. height: math.unit(50000, "miles")
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15534. {
  15535. front: {
  15536. height: math.unit(6, "feet"),
  15537. weight: math.unit(269, "lb"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/danny-kapowsky/front.svg",
  15541. extra: 766 / 736,
  15542. bottom: 0.044
  15543. }
  15544. },
  15545. back: {
  15546. height: math.unit(6, "feet"),
  15547. weight: math.unit(269, "lb"),
  15548. name: "Back",
  15549. image: {
  15550. source: "./media/characters/danny-kapowsky/back.svg",
  15551. extra: 797 / 760,
  15552. bottom: 0.025
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Macro",
  15559. height: math.unit(150, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Macro+",
  15564. height: math.unit(200, "feet")
  15565. },
  15566. {
  15567. name: "Macro++",
  15568. height: math.unit(300, "feet")
  15569. },
  15570. {
  15571. name: "Macro+++",
  15572. height: math.unit(400, "feet")
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15578. {
  15579. side: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(170, "lb"),
  15582. name: "Side",
  15583. image: {
  15584. source: "./media/characters/finn/side.svg",
  15585. extra: 1953 / 1807,
  15586. bottom: 0.057
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Megamacro",
  15593. height: math.unit(14445, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(5 + 6 / 12, "feet"),
  15603. weight: math.unit(125, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/roy/front.svg",
  15607. extra: 1,
  15608. bottom: 0.11
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Micro",
  15615. height: math.unit(3, "inches"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "Normal",
  15620. height: math.unit(5 + 6 / 12, "feet")
  15621. },
  15622. {
  15623. name: "Lesser Macro",
  15624. height: math.unit(60, "feet")
  15625. },
  15626. {
  15627. name: "Greater Macro",
  15628. height: math.unit(120, "feet")
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(6, "feet"),
  15637. weight: math.unit(100, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/aevsivs/front.svg",
  15641. extra: 1,
  15642. bottom: 0.03
  15643. }
  15644. },
  15645. back: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(100, "lb"),
  15648. name: "Back",
  15649. image: {
  15650. source: "./media/characters/aevsivs/back.svg"
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Micro",
  15657. height: math.unit(2, "inches"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Normal",
  15662. height: math.unit(5, "feet")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(5 + 7 / 12, "feet"),
  15671. weight: math.unit(159, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/hildegard/front.svg",
  15675. extra: 289 / 269,
  15676. bottom: 7.63 / 297.8
  15677. }
  15678. },
  15679. back: {
  15680. height: math.unit(5 + 7 / 12, "feet"),
  15681. weight: math.unit(159, "lb"),
  15682. name: "Back",
  15683. image: {
  15684. source: "./media/characters/hildegard/back.svg",
  15685. extra: 280 / 260,
  15686. bottom: 2.3 / 282
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(5 + 7 / 12, "feet"),
  15694. default: true
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15700. {
  15701. bernard: {
  15702. height: math.unit(2 + 7 / 12, "feet"),
  15703. weight: math.unit(66, "lb"),
  15704. name: "Bernard",
  15705. rename: true,
  15706. image: {
  15707. source: "./media/characters/bernard-wilder/bernard.svg",
  15708. extra: 192 / 128,
  15709. bottom: 0.05
  15710. }
  15711. },
  15712. wilder: {
  15713. height: math.unit(5 + 8 / 12, "feet"),
  15714. weight: math.unit(143, "lb"),
  15715. name: "Wilder",
  15716. rename: true,
  15717. image: {
  15718. source: "./media/characters/bernard-wilder/wilder.svg",
  15719. extra: 361 / 312,
  15720. bottom: 0.02
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(2 + 7 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15734. {
  15735. anthro: {
  15736. height: math.unit(6 + 1 / 12, "feet"),
  15737. weight: math.unit(155, "lb"),
  15738. name: "Anthro",
  15739. image: {
  15740. source: "./media/characters/hearth/anthro.svg",
  15741. extra: 1178/1136,
  15742. bottom: 28/1206
  15743. }
  15744. },
  15745. feral: {
  15746. height: math.unit(3.78, "feet"),
  15747. weight: math.unit(35, "kg"),
  15748. name: "Feral",
  15749. image: {
  15750. source: "./media/characters/hearth/feral.svg",
  15751. extra: 153 / 135,
  15752. bottom: 0.03
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(6 + 1 / 12, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(6, "feet"),
  15769. weight: math.unit(182, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/ingrid/front.svg",
  15773. extra: 294 / 268,
  15774. bottom: 0.027
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(6, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15788. {
  15789. eevee: {
  15790. height: math.unit(2 + 10 / 12, "feet"),
  15791. weight: math.unit(86, "lb"),
  15792. name: "Malgam",
  15793. image: {
  15794. source: "./media/characters/malgam/eevee.svg",
  15795. extra: 952/784,
  15796. bottom: 38/990
  15797. }
  15798. },
  15799. sylveon: {
  15800. height: math.unit(4, "feet"),
  15801. weight: math.unit(101, "lb"),
  15802. name: "Future Malgam",
  15803. rename: true,
  15804. image: {
  15805. source: "./media/characters/malgam/sylveon.svg",
  15806. extra: 371 / 325,
  15807. bottom: 0.015
  15808. }
  15809. },
  15810. gigantamax: {
  15811. height: math.unit(50, "feet"),
  15812. name: "Gigantamax Malgam",
  15813. rename: true,
  15814. image: {
  15815. source: "./media/characters/malgam/gigantamax.svg"
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(2 + 10 / 12, "feet"),
  15823. default: true
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(5 + 11 / 12, "feet"),
  15832. weight: math.unit(188, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/fleur/front.svg",
  15836. extra: 309 / 283,
  15837. bottom: 0.007
  15838. }
  15839. },
  15840. },
  15841. [
  15842. {
  15843. name: "Normal",
  15844. height: math.unit(5 + 11 / 12, "feet"),
  15845. default: true
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(5 + 4 / 12, "feet"),
  15854. weight: math.unit(122, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/jude/front.svg",
  15858. extra: 288 / 273,
  15859. bottom: 0.03
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(5 + 4 / 12, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(5 + 11 / 12, "feet"),
  15876. weight: math.unit(190, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/seara/front.svg",
  15880. extra: 1,
  15881. bottom: 0.05
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(5 + 11 / 12, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(16 + 5 / 12, "feet"),
  15898. weight: math.unit(524, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/caspian-lugia/front.svg",
  15902. extra: 1,
  15903. bottom: 0.04
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(16 + 5 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(5 + 7 / 12, "feet"),
  15920. weight: math.unit(170, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/mika/front.svg",
  15924. extra: 1,
  15925. bottom: 0.016
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(5 + 7 / 12, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(6 + 2 / 12, "feet"),
  15942. weight: math.unit(268, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/sol/front.svg",
  15946. extra: 247 / 231,
  15947. bottom: 0.05
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Normal",
  15954. height: math.unit(6 + 2 / 12, "feet"),
  15955. default: true
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15961. {
  15962. buizel: {
  15963. height: math.unit(2 + 5 / 12, "feet"),
  15964. weight: math.unit(87, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/umiko/buizel.svg",
  15968. extra: 172 / 157,
  15969. bottom: 0.01
  15970. },
  15971. form: "buizel",
  15972. default: true
  15973. },
  15974. floatzel: {
  15975. height: math.unit(5 + 9 / 12, "feet"),
  15976. weight: math.unit(250, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/umiko/floatzel.svg",
  15980. extra: 1076/1006,
  15981. bottom: 15/1091
  15982. },
  15983. form: "floatzel",
  15984. default: true
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(2 + 5 / 12, "feet"),
  15991. form: "buizel",
  15992. default: true
  15993. },
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(5 + 9 / 12, "feet"),
  15997. form: "floatzel",
  15998. default: true
  15999. },
  16000. ],
  16001. {
  16002. "buizel": {
  16003. name: "Buizel"
  16004. },
  16005. "floatzel": {
  16006. name: "Floatzel",
  16007. default: true
  16008. }
  16009. }
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16013. {
  16014. front: {
  16015. height: math.unit(6 + 2 / 12, "feet"),
  16016. weight: math.unit(146, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/iliac/front.svg",
  16020. extra: 389 / 365,
  16021. bottom: 0.035
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(6 + 2 / 12, "feet"),
  16029. default: true
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(6, "feet"),
  16038. weight: math.unit(170, "lb"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/topaz/front.svg",
  16042. extra: 317 / 303,
  16043. bottom: 0.055
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(6, "feet"),
  16051. default: true
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16057. {
  16058. front: {
  16059. height: math.unit(5 + 11 / 12, "feet"),
  16060. weight: math.unit(144, "lb"),
  16061. name: "Front",
  16062. image: {
  16063. source: "./media/characters/gabriel/front.svg",
  16064. extra: 285 / 262,
  16065. bottom: 0.004
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(5 + 11 / 12, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16079. {
  16080. side: {
  16081. height: math.unit(6 + 5 / 12, "feet"),
  16082. weight: math.unit(300, "lb"),
  16083. name: "Side",
  16084. image: {
  16085. source: "./media/characters/tempest-suicune/side.svg",
  16086. extra: 195 / 154,
  16087. bottom: 0.04
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(6 + 5 / 12, "feet"),
  16095. default: true
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(7 + 2 / 12, "feet"),
  16104. weight: math.unit(322, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/vulcan/front.svg",
  16108. extra: 154 / 147,
  16109. bottom: 0.04
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(7 + 2 / 12, "feet"),
  16117. default: true
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16123. {
  16124. front: {
  16125. height: math.unit(5 + 10 / 12, "feet"),
  16126. weight: math.unit(264, "lb"),
  16127. name: "Front",
  16128. image: {
  16129. source: "./media/characters/gault/front.svg",
  16130. extra: 161 / 140,
  16131. bottom: 0.028
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(5 + 10 / 12, "feet"),
  16139. default: true
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(6, "feet"),
  16148. weight: math.unit(150, "lb"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/shard/front.svg",
  16152. extra: 273 / 238,
  16153. bottom: 0.02
  16154. }
  16155. },
  16156. },
  16157. [
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(3 + 6 / 12, "feet"),
  16161. default: true
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16167. {
  16168. front: {
  16169. height: math.unit(5 + 11 / 12, "feet"),
  16170. weight: math.unit(146, "lb"),
  16171. name: "Front",
  16172. image: {
  16173. source: "./media/characters/ashe/front.svg",
  16174. extra: 400 / 373,
  16175. bottom: 0.01
  16176. }
  16177. },
  16178. },
  16179. [
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(5 + 11 / 12, "feet"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(5 + 5 / 12, "feet"),
  16192. weight: math.unit(135, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/beatrix/front.svg",
  16196. extra: 392 / 379,
  16197. bottom: 0.01
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(6, "feet"),
  16205. default: true
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16211. {
  16212. front: {
  16213. height: math.unit(6 + 2/12, "feet"),
  16214. weight: math.unit(135, "lb"),
  16215. name: "Front",
  16216. image: {
  16217. source: "./media/characters/ignatius/front.svg",
  16218. extra: 1380/1259,
  16219. bottom: 27/1407
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(6 + 2/12, "feet"),
  16227. default: true
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(6 + 2 / 12, "feet"),
  16236. weight: math.unit(138, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/mei-li/front.svg",
  16240. extra: 237 / 229,
  16241. bottom: 0.03
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(6 + 2 / 12, "feet"),
  16249. default: true
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16255. {
  16256. front: {
  16257. height: math.unit(2 + 4 / 12, "feet"),
  16258. weight: math.unit(62, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/puru/front.svg",
  16262. extra: 206 / 149,
  16263. bottom: 0.06
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Normal",
  16270. height: math.unit(2 + 4 / 12, "feet"),
  16271. default: true
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16277. {
  16278. anthro: {
  16279. height: math.unit(5 + 8/12, "feet"),
  16280. weight: math.unit(200, "lb"),
  16281. energyNeed: math.unit(2000, "kcal"),
  16282. name: "Anthro",
  16283. image: {
  16284. source: "./media/characters/kee/anthro.svg",
  16285. extra: 3251/3184,
  16286. bottom: 250/3501
  16287. }
  16288. },
  16289. taur: {
  16290. height: math.unit(11, "feet"),
  16291. weight: math.unit(500, "lb"),
  16292. energyNeed: math.unit(5000, "kcal"),
  16293. name: "Taur",
  16294. image: {
  16295. source: "./media/characters/kee/taur.svg",
  16296. extra: 1362/1320,
  16297. bottom: 83/1445
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(5 + 8/12, "feet"),
  16305. default: true
  16306. },
  16307. {
  16308. name: "Macro",
  16309. height: math.unit(35, "feet")
  16310. },
  16311. ]
  16312. ))
  16313. characterMakers.push(() => makeCharacter(
  16314. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16315. {
  16316. anthro: {
  16317. height: math.unit(7, "feet"),
  16318. weight: math.unit(190, "lb"),
  16319. name: "Anthro",
  16320. image: {
  16321. source: "./media/characters/cobalt-dracha/anthro.svg",
  16322. extra: 231 / 225,
  16323. bottom: 0.04
  16324. }
  16325. },
  16326. feral: {
  16327. height: math.unit(9 + 7 / 12, "feet"),
  16328. weight: math.unit(294, "lb"),
  16329. name: "Feral",
  16330. image: {
  16331. source: "./media/characters/cobalt-dracha/feral.svg",
  16332. extra: 692 / 633,
  16333. bottom: 0.05
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Normal",
  16340. height: math.unit(7, "feet"),
  16341. default: true
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16347. {
  16348. fallen: {
  16349. height: math.unit(11 + 8 / 12, "feet"),
  16350. weight: math.unit(485, "lb"),
  16351. name: "Java (Fallen)",
  16352. rename: true,
  16353. image: {
  16354. source: "./media/characters/java/fallen.svg",
  16355. extra: 226 / 208,
  16356. bottom: 0.005
  16357. }
  16358. },
  16359. godkin: {
  16360. height: math.unit(10 + 6 / 12, "feet"),
  16361. weight: math.unit(328, "lb"),
  16362. name: "Java (Godkin)",
  16363. rename: true,
  16364. image: {
  16365. source: "./media/characters/java/godkin.svg",
  16366. extra: 1104/1068,
  16367. bottom: 36/1140
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(11 + 8 / 12, "feet"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(5 + 9 / 12, "feet"),
  16384. weight: math.unit(170, "lb"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/purna/front.svg",
  16388. extra: 239 / 229,
  16389. bottom: 0.01
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(5 + 9 / 12, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(5 + 9 / 12, "feet"),
  16406. weight: math.unit(142, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/kuva/front.svg",
  16410. extra: 281 / 271,
  16411. bottom: 0.006
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(5 + 9 / 12, "feet"),
  16419. default: true
  16420. },
  16421. ]
  16422. ))
  16423. characterMakers.push(() => makeCharacter(
  16424. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16425. {
  16426. anthro: {
  16427. height: math.unit(9 + 2 / 12, "feet"),
  16428. weight: math.unit(270, "lb"),
  16429. name: "Anthro",
  16430. image: {
  16431. source: "./media/characters/embra/anthro.svg",
  16432. extra: 200 / 187,
  16433. bottom: 0.02
  16434. }
  16435. },
  16436. feral: {
  16437. height: math.unit(18 + 8 / 12, "feet"),
  16438. weight: math.unit(576, "lb"),
  16439. name: "Feral",
  16440. image: {
  16441. source: "./media/characters/embra/feral.svg",
  16442. extra: 152 / 137,
  16443. bottom: 0.037
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(9 + 2 / 12, "feet"),
  16451. default: true
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16457. {
  16458. anthro: {
  16459. height: math.unit(10 + 9 / 12, "feet"),
  16460. weight: math.unit(224, "lb"),
  16461. name: "Anthro",
  16462. image: {
  16463. source: "./media/characters/grottos/anthro.svg",
  16464. extra: 350 / 332,
  16465. bottom: 0.045
  16466. }
  16467. },
  16468. feral: {
  16469. height: math.unit(20 + 7 / 12, "feet"),
  16470. weight: math.unit(629, "lb"),
  16471. name: "Feral",
  16472. image: {
  16473. source: "./media/characters/grottos/feral.svg",
  16474. extra: 207 / 190,
  16475. bottom: 0.05
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(10 + 9 / 12, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16489. {
  16490. anthro: {
  16491. height: math.unit(9 + 6 / 12, "feet"),
  16492. weight: math.unit(298, "lb"),
  16493. name: "Anthro",
  16494. image: {
  16495. source: "./media/characters/frifna/anthro.svg",
  16496. extra: 282 / 269,
  16497. bottom: 0.015
  16498. }
  16499. },
  16500. feral: {
  16501. height: math.unit(16 + 2 / 12, "feet"),
  16502. weight: math.unit(624, "lb"),
  16503. name: "Feral",
  16504. image: {
  16505. source: "./media/characters/frifna/feral.svg"
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Normal",
  16512. height: math.unit(9 + 6 / 12, "feet"),
  16513. default: true
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(6 + 2 / 12, "feet"),
  16522. weight: math.unit(168, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/elise/front.svg",
  16526. extra: 276 / 271
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(6 + 2 / 12, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(5 + 10 / 12, "feet"),
  16543. weight: math.unit(210, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/glade/front.svg",
  16547. extra: 258 / 247,
  16548. bottom: 0.008
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(5 + 10 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(5 + 10 / 12, "feet"),
  16565. weight: math.unit(129, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/rina/front.svg",
  16569. extra: 266 / 255,
  16570. bottom: 0.005
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(5 + 10 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(6 + 1 / 12, "feet"),
  16587. weight: math.unit(192, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/veronica/front.svg",
  16591. extra: 319 / 309,
  16592. bottom: 0.005
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(6 + 1 / 12, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(9 + 3 / 12, "feet"),
  16609. weight: math.unit(1100, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/braxton/front.svg",
  16613. extra: 1057 / 984,
  16614. bottom: 0.05
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(9 + 3 / 12, "feet")
  16622. },
  16623. {
  16624. name: "Giant",
  16625. height: math.unit(300, "feet"),
  16626. default: true
  16627. },
  16628. {
  16629. name: "Macro",
  16630. height: math.unit(700, "feet")
  16631. },
  16632. {
  16633. name: "Megamacro",
  16634. height: math.unit(6000, "feet")
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(6 + 7 / 12, "feet"),
  16643. weight: math.unit(150, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/blue-feyonics/front.svg",
  16647. extra: 1403 / 1306,
  16648. bottom: 0.047
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(6 + 7 / 12, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(1.8, "meters"),
  16665. weight: math.unit(60, "kg"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/maxwell/front.svg",
  16669. extra: 2060 / 1873
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Micro",
  16676. height: math.unit(1, "mm")
  16677. },
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(1.8, "meter"),
  16681. default: true
  16682. },
  16683. {
  16684. name: "Macro",
  16685. height: math.unit(30, "meters")
  16686. },
  16687. {
  16688. name: "Megamacro",
  16689. height: math.unit(10, "km")
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(6, "feet"),
  16698. weight: math.unit(150, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/jack/front.svg",
  16702. extra: 1754 / 1640,
  16703. bottom: 0.01
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(80000, "feet"),
  16711. default: true
  16712. },
  16713. {
  16714. name: "Max size",
  16715. height: math.unit(10, "lightyears")
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16721. {
  16722. urban: {
  16723. height: math.unit(5, "feet"),
  16724. weight: math.unit(240, "lb"),
  16725. name: "Urban",
  16726. image: {
  16727. source: "./media/characters/cafat/urban.svg",
  16728. extra: 1223/1126,
  16729. bottom: 205/1428
  16730. }
  16731. },
  16732. summer: {
  16733. height: math.unit(5, "feet"),
  16734. weight: math.unit(240, "lb"),
  16735. name: "Summer",
  16736. image: {
  16737. source: "./media/characters/cafat/summer.svg",
  16738. extra: 1223/1126,
  16739. bottom: 205/1428
  16740. }
  16741. },
  16742. winter: {
  16743. height: math.unit(5, "feet"),
  16744. weight: math.unit(240, "lb"),
  16745. name: "Winter",
  16746. image: {
  16747. source: "./media/characters/cafat/winter.svg",
  16748. extra: 1223/1126,
  16749. bottom: 205/1428
  16750. }
  16751. },
  16752. lingerie: {
  16753. height: math.unit(5, "feet"),
  16754. weight: math.unit(240, "lb"),
  16755. name: "Lingerie",
  16756. image: {
  16757. source: "./media/characters/cafat/lingerie.svg",
  16758. extra: 1223/1126,
  16759. bottom: 205/1428
  16760. }
  16761. },
  16762. upright: {
  16763. height: math.unit(6.3, "feet"),
  16764. weight: math.unit(240, "lb"),
  16765. name: "Upright",
  16766. image: {
  16767. source: "./media/characters/cafat/upright.svg",
  16768. bottom: 0.01
  16769. }
  16770. },
  16771. uprightFull: {
  16772. height: math.unit(6.3, "feet"),
  16773. weight: math.unit(240, "lb"),
  16774. name: "Upright (Full)",
  16775. image: {
  16776. source: "./media/characters/cafat/upright-full.svg",
  16777. bottom: 0.01
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Small",
  16784. height: math.unit(5, "feet"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Large",
  16789. height: math.unit(13, "feet")
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6, "feet"),
  16798. weight: math.unit(150, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/verin-raharra/front.svg",
  16802. extra: 5019 / 4835,
  16803. bottom: 0.023
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(7 + 5 / 12, "feet"),
  16811. default: true
  16812. },
  16813. {
  16814. name: "Upsized",
  16815. height: math.unit(20, "feet")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(7, "feet"),
  16824. weight: math.unit(230, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/nakata/front.svg",
  16828. extra: 1.005,
  16829. bottom: 0.01
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(7, "feet"),
  16837. default: true
  16838. },
  16839. {
  16840. name: "Big",
  16841. height: math.unit(14, "feet")
  16842. },
  16843. {
  16844. name: "Macro",
  16845. height: math.unit(400, "feet")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(4.91, "feet"),
  16854. weight: math.unit(100, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/lily/front.svg",
  16858. extra: 1585 / 1415,
  16859. bottom: 0.02
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(4.91, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16873. {
  16874. laying: {
  16875. height: math.unit(4 + 4 / 12, "feet"),
  16876. weight: math.unit(600, "lb"),
  16877. name: "Laying",
  16878. image: {
  16879. source: "./media/characters/sheila/laying.svg",
  16880. extra: 1333 / 1265,
  16881. bottom: 0.16
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(4 + 4 / 12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(6, "feet"),
  16898. weight: math.unit(190, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/sax/front.svg",
  16902. extra: 1187 / 973,
  16903. bottom: 0.042
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Micro",
  16910. height: math.unit(4, "inches"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(6, "feet"),
  16920. weight: math.unit(150, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/pandora/front.svg",
  16924. extra: 2720 / 2556,
  16925. bottom: 0.015
  16926. }
  16927. },
  16928. back: {
  16929. height: math.unit(6, "feet"),
  16930. weight: math.unit(150, "lb"),
  16931. name: "Back",
  16932. image: {
  16933. source: "./media/characters/pandora/back.svg",
  16934. extra: 2720 / 2556,
  16935. bottom: 0.01
  16936. }
  16937. },
  16938. beans: {
  16939. height: math.unit(6 / 8, "feet"),
  16940. name: "Beans",
  16941. image: {
  16942. source: "./media/characters/pandora/beans.svg"
  16943. }
  16944. },
  16945. collar: {
  16946. height: math.unit(0.31, "feet"),
  16947. name: "Collar",
  16948. image: {
  16949. source: "./media/characters/pandora/collar.svg"
  16950. }
  16951. },
  16952. skirt: {
  16953. height: math.unit(6, "feet"),
  16954. weight: math.unit(150, "lb"),
  16955. name: "Skirt",
  16956. image: {
  16957. source: "./media/characters/pandora/skirt.svg",
  16958. extra: 1622 / 1525,
  16959. bottom: 0.015
  16960. }
  16961. },
  16962. hoodie: {
  16963. height: math.unit(6, "feet"),
  16964. weight: math.unit(150, "lb"),
  16965. name: "Hoodie",
  16966. image: {
  16967. source: "./media/characters/pandora/hoodie.svg",
  16968. extra: 1622 / 1525,
  16969. bottom: 0.015
  16970. }
  16971. },
  16972. casual: {
  16973. height: math.unit(6, "feet"),
  16974. weight: math.unit(150, "lb"),
  16975. name: "Casual",
  16976. image: {
  16977. source: "./media/characters/pandora/casual.svg",
  16978. extra: 1622 / 1525,
  16979. bottom: 0.015
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(6, "feet")
  16987. },
  16988. {
  16989. name: "Big Steppy",
  16990. height: math.unit(1, "km"),
  16991. default: true
  16992. },
  16993. {
  16994. name: "Galactic Steppy",
  16995. height: math.unit(2, "gigameters")
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17001. {
  17002. side: {
  17003. height: math.unit(10, "feet"),
  17004. weight: math.unit(800, "kg"),
  17005. name: "Side",
  17006. image: {
  17007. source: "./media/characters/venio-darcony/side.svg",
  17008. extra: 1373 / 1003,
  17009. bottom: 0.037
  17010. }
  17011. },
  17012. front: {
  17013. height: math.unit(19, "feet"),
  17014. weight: math.unit(800, "kg"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/venio-darcony/front.svg"
  17018. }
  17019. },
  17020. back: {
  17021. height: math.unit(19, "feet"),
  17022. weight: math.unit(800, "kg"),
  17023. name: "Back",
  17024. image: {
  17025. source: "./media/characters/venio-darcony/back.svg"
  17026. }
  17027. },
  17028. sideNsfw: {
  17029. height: math.unit(10, "feet"),
  17030. weight: math.unit(800, "kg"),
  17031. name: "Side (NSFW)",
  17032. image: {
  17033. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17034. extra: 1373 / 1003,
  17035. bottom: 0.037
  17036. }
  17037. },
  17038. frontNsfw: {
  17039. height: math.unit(19, "feet"),
  17040. weight: math.unit(800, "kg"),
  17041. name: "Front (NSFW)",
  17042. image: {
  17043. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17044. }
  17045. },
  17046. backNsfw: {
  17047. height: math.unit(19, "feet"),
  17048. weight: math.unit(800, "kg"),
  17049. name: "Back (NSFW)",
  17050. image: {
  17051. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17052. }
  17053. },
  17054. sideArmored: {
  17055. height: math.unit(10, "feet"),
  17056. weight: math.unit(800, "kg"),
  17057. name: "Side (Armored)",
  17058. image: {
  17059. source: "./media/characters/venio-darcony/side-armored.svg",
  17060. extra: 1373 / 1003,
  17061. bottom: 0.037
  17062. }
  17063. },
  17064. frontArmored: {
  17065. height: math.unit(19, "feet"),
  17066. weight: math.unit(900, "kg"),
  17067. name: "Front (Armored)",
  17068. image: {
  17069. source: "./media/characters/venio-darcony/front-armored.svg"
  17070. }
  17071. },
  17072. backArmored: {
  17073. height: math.unit(19, "feet"),
  17074. weight: math.unit(900, "kg"),
  17075. name: "Back (Armored)",
  17076. image: {
  17077. source: "./media/characters/venio-darcony/back-armored.svg"
  17078. }
  17079. },
  17080. sword: {
  17081. height: math.unit(10, "feet"),
  17082. weight: math.unit(50, "lb"),
  17083. name: "Sword",
  17084. image: {
  17085. source: "./media/characters/venio-darcony/sword.svg"
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(10, "feet")
  17093. },
  17094. {
  17095. name: "Macro",
  17096. height: math.unit(130, "feet"),
  17097. default: true
  17098. },
  17099. {
  17100. name: "Macro+",
  17101. height: math.unit(240, "feet")
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17107. {
  17108. front: {
  17109. height: math.unit(6, "feet"),
  17110. weight: math.unit(150, "lb"),
  17111. name: "Front",
  17112. image: {
  17113. source: "./media/characters/veski/front.svg",
  17114. extra: 1299 / 1225,
  17115. bottom: 0.04
  17116. }
  17117. },
  17118. back: {
  17119. height: math.unit(6, "feet"),
  17120. weight: math.unit(150, "lb"),
  17121. name: "Back",
  17122. image: {
  17123. source: "./media/characters/veski/back.svg",
  17124. extra: 1299 / 1225,
  17125. bottom: 0.008
  17126. }
  17127. },
  17128. maw: {
  17129. height: math.unit(1.5 * 1.21, "feet"),
  17130. name: "Maw",
  17131. image: {
  17132. source: "./media/characters/veski/maw.svg"
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Macro",
  17139. height: math.unit(2, "km"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(5 + 7 / 12, "feet"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/isabelle/front.svg",
  17152. extra: 2130 / 1976,
  17153. bottom: 0.05
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Supermicro",
  17160. height: math.unit(10, "micrometers")
  17161. },
  17162. {
  17163. name: "Micro",
  17164. height: math.unit(1, "inch")
  17165. },
  17166. {
  17167. name: "Tiny",
  17168. height: math.unit(5, "inches")
  17169. },
  17170. {
  17171. name: "Standard",
  17172. height: math.unit(5 + 7 / 12, "inches")
  17173. },
  17174. {
  17175. name: "Macro",
  17176. height: math.unit(80, "meters"),
  17177. default: true
  17178. },
  17179. {
  17180. name: "Megamacro",
  17181. height: math.unit(250, "meters")
  17182. },
  17183. {
  17184. name: "Gigamacro",
  17185. height: math.unit(5, "km")
  17186. },
  17187. {
  17188. name: "Cosmic",
  17189. height: math.unit(2.5e6, "miles")
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(6, "feet"),
  17198. weight: math.unit(150, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/hanzo/front.svg",
  17202. extra: 374 / 344,
  17203. bottom: 0.02
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(8, "feet"),
  17211. default: true
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17217. {
  17218. front: {
  17219. height: math.unit(7, "feet"),
  17220. weight: math.unit(130, "lb"),
  17221. name: "Front",
  17222. image: {
  17223. source: "./media/characters/anna/front.svg",
  17224. extra: 169 / 145,
  17225. bottom: 0.06
  17226. }
  17227. },
  17228. full: {
  17229. height: math.unit(4.96, "feet"),
  17230. weight: math.unit(220, "lb"),
  17231. name: "Full",
  17232. image: {
  17233. source: "./media/characters/anna/full.svg",
  17234. extra: 138 / 114,
  17235. bottom: 0.15
  17236. }
  17237. },
  17238. tongue: {
  17239. height: math.unit(2.53, "feet"),
  17240. name: "Tongue",
  17241. image: {
  17242. source: "./media/characters/anna/tongue.svg"
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Normal",
  17249. height: math.unit(7, "feet"),
  17250. default: true
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17256. {
  17257. front: {
  17258. height: math.unit(7, "feet"),
  17259. weight: math.unit(150, "lb"),
  17260. name: "Front",
  17261. image: {
  17262. source: "./media/characters/ian-corvid/front.svg",
  17263. extra: 150 / 142,
  17264. bottom: 0.02
  17265. }
  17266. },
  17267. back: {
  17268. height: math.unit(7, "feet"),
  17269. weight: math.unit(150, "lb"),
  17270. name: "Back",
  17271. image: {
  17272. source: "./media/characters/ian-corvid/back.svg",
  17273. extra: 150 / 143,
  17274. bottom: 0.01
  17275. }
  17276. },
  17277. stomping: {
  17278. height: math.unit(7, "feet"),
  17279. weight: math.unit(150, "lb"),
  17280. name: "Stomping",
  17281. image: {
  17282. source: "./media/characters/ian-corvid/stomping.svg",
  17283. extra: 76 / 72
  17284. }
  17285. },
  17286. sitting: {
  17287. height: math.unit(7 / 1.8, "feet"),
  17288. weight: math.unit(150, "lb"),
  17289. name: "Sitting",
  17290. image: {
  17291. source: "./media/characters/ian-corvid/sitting.svg",
  17292. extra: 1400 / 1269,
  17293. bottom: 0.15
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Tiny Microw",
  17300. height: math.unit(1, "inch")
  17301. },
  17302. {
  17303. name: "Microw",
  17304. height: math.unit(6, "inches")
  17305. },
  17306. {
  17307. name: "Crow",
  17308. height: math.unit(7 + 1 / 12, "feet"),
  17309. default: true
  17310. },
  17311. {
  17312. name: "Macrow",
  17313. height: math.unit(176, "feet")
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17319. {
  17320. front: {
  17321. height: math.unit(5 + 7 / 12, "feet"),
  17322. weight: math.unit(147, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/natalie-kellon/front.svg",
  17326. extra: 1214 / 1141,
  17327. bottom: 0.02
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Micro",
  17334. height: math.unit(1 / 16, "inch")
  17335. },
  17336. {
  17337. name: "Tiny",
  17338. height: math.unit(4, "inches")
  17339. },
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(5 + 7 / 12, "feet"),
  17343. default: true
  17344. },
  17345. {
  17346. name: "Amazon",
  17347. height: math.unit(12, "feet")
  17348. },
  17349. {
  17350. name: "Giantess",
  17351. height: math.unit(160, "meters")
  17352. },
  17353. {
  17354. name: "Titaness",
  17355. height: math.unit(800, "meters")
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(6, "feet"),
  17364. weight: math.unit(150, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/alluria/front.svg",
  17368. extra: 806 / 738,
  17369. bottom: 0.01
  17370. }
  17371. },
  17372. side: {
  17373. height: math.unit(6, "feet"),
  17374. weight: math.unit(150, "lb"),
  17375. name: "Side",
  17376. image: {
  17377. source: "./media/characters/alluria/side.svg",
  17378. extra: 800 / 750,
  17379. }
  17380. },
  17381. back: {
  17382. height: math.unit(6, "feet"),
  17383. weight: math.unit(150, "lb"),
  17384. name: "Back",
  17385. image: {
  17386. source: "./media/characters/alluria/back.svg",
  17387. extra: 806 / 738,
  17388. }
  17389. },
  17390. frontMaid: {
  17391. height: math.unit(6, "feet"),
  17392. weight: math.unit(150, "lb"),
  17393. name: "Front (Maid)",
  17394. image: {
  17395. source: "./media/characters/alluria/front-maid.svg",
  17396. extra: 806 / 738,
  17397. bottom: 0.01
  17398. }
  17399. },
  17400. sideMaid: {
  17401. height: math.unit(6, "feet"),
  17402. weight: math.unit(150, "lb"),
  17403. name: "Side (Maid)",
  17404. image: {
  17405. source: "./media/characters/alluria/side-maid.svg",
  17406. extra: 800 / 750,
  17407. bottom: 0.005
  17408. }
  17409. },
  17410. backMaid: {
  17411. height: math.unit(6, "feet"),
  17412. weight: math.unit(150, "lb"),
  17413. name: "Back (Maid)",
  17414. image: {
  17415. source: "./media/characters/alluria/back-maid.svg",
  17416. extra: 806 / 738,
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Micro",
  17423. height: math.unit(6, "inches"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(150, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/kyle/front.svg",
  17437. extra: 1069 / 962,
  17438. bottom: 77.228 / 1727.45
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Macro",
  17445. height: math.unit(150, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6, "feet"),
  17455. weight: math.unit(300, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/duncan/front.svg",
  17459. extra: 1650 / 1482,
  17460. bottom: 0.05
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Macro",
  17467. height: math.unit(100, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17474. {
  17475. front: {
  17476. height: math.unit(5 + 4 / 12, "feet"),
  17477. weight: math.unit(220, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/memory/front.svg",
  17481. extra: 3641 / 3545,
  17482. bottom: 0.03
  17483. }
  17484. },
  17485. back: {
  17486. height: math.unit(5 + 4 / 12, "feet"),
  17487. weight: math.unit(220, "lb"),
  17488. name: "Back",
  17489. image: {
  17490. source: "./media/characters/memory/back.svg",
  17491. extra: 3641 / 3545,
  17492. bottom: 0.025
  17493. }
  17494. },
  17495. frontSkirt: {
  17496. height: math.unit(5 + 4 / 12, "feet"),
  17497. weight: math.unit(220, "lb"),
  17498. name: "Front (Skirt)",
  17499. image: {
  17500. source: "./media/characters/memory/front-skirt.svg",
  17501. extra: 3641 / 3545,
  17502. bottom: 0.03
  17503. }
  17504. },
  17505. frontDress: {
  17506. height: math.unit(5 + 4 / 12, "feet"),
  17507. weight: math.unit(220, "lb"),
  17508. name: "Front (Dress)",
  17509. image: {
  17510. source: "./media/characters/memory/front-dress.svg",
  17511. extra: 3641 / 3545,
  17512. bottom: 0.03
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Micro",
  17519. height: math.unit(6, "inches"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(5 + 4 / 12, "feet")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(4 + 11 / 12, "feet"),
  17533. weight: math.unit(100, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/luno/front.svg",
  17537. extra: 1535 / 1487,
  17538. bottom: 0.03
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Micro",
  17545. height: math.unit(3, "inches")
  17546. },
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(4 + 11 / 12, "feet"),
  17550. default: true
  17551. },
  17552. {
  17553. name: "Macro",
  17554. height: math.unit(300, "feet")
  17555. },
  17556. {
  17557. name: "Megamacro",
  17558. height: math.unit(700, "miles")
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17564. {
  17565. front: {
  17566. height: math.unit(6 + 2 / 12, "feet"),
  17567. weight: math.unit(170, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/jamesy/front.svg",
  17571. extra: 440 / 382,
  17572. bottom: 0.005
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Micro",
  17579. height: math.unit(3, "inches")
  17580. },
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(6 + 2 / 12, "feet"),
  17584. default: true
  17585. },
  17586. {
  17587. name: "Macro",
  17588. height: math.unit(300, "feet")
  17589. },
  17590. {
  17591. name: "Megamacro",
  17592. height: math.unit(700, "miles")
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17598. {
  17599. front: {
  17600. height: math.unit(6, "feet"),
  17601. weight: math.unit(160, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/mark/front.svg",
  17605. extra: 3300 / 3100,
  17606. bottom: 136.42 / 3440.47
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Macro",
  17613. height: math.unit(120, "meters")
  17614. },
  17615. {
  17616. name: "Bigger Macro",
  17617. height: math.unit(350, "meters")
  17618. },
  17619. {
  17620. name: "Megamacro",
  17621. height: math.unit(8, "km"),
  17622. default: true
  17623. },
  17624. {
  17625. name: "Continental",
  17626. height: math.unit(4550, "km")
  17627. },
  17628. {
  17629. name: "Planetary",
  17630. height: math.unit(65000, "km")
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(6, "feet"),
  17639. weight: math.unit(400, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/mac/front.svg",
  17643. extra: 1048 / 987.7,
  17644. bottom: 60 / 1107.6,
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(500, "feet"),
  17652. default: true
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17658. {
  17659. front: {
  17660. height: math.unit(5 + 2 / 12, "feet"),
  17661. weight: math.unit(190, "lb"),
  17662. name: "Front",
  17663. image: {
  17664. source: "./media/characters/bari/front.svg",
  17665. extra: 3156 / 2880,
  17666. bottom: 0.03
  17667. }
  17668. },
  17669. back: {
  17670. height: math.unit(5 + 2 / 12, "feet"),
  17671. weight: math.unit(190, "lb"),
  17672. name: "Back",
  17673. image: {
  17674. source: "./media/characters/bari/back.svg",
  17675. extra: 3260 / 2834,
  17676. bottom: 0.025
  17677. }
  17678. },
  17679. frontPlush: {
  17680. height: math.unit(5 + 2 / 12, "feet"),
  17681. weight: math.unit(190, "lb"),
  17682. name: "Front (Plush)",
  17683. image: {
  17684. source: "./media/characters/bari/front-plush.svg",
  17685. extra: 1112 / 1061,
  17686. bottom: 0.002
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Micro",
  17693. height: math.unit(3, "inches")
  17694. },
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(5 + 2 / 12, "feet"),
  17698. default: true
  17699. },
  17700. {
  17701. name: "Macro",
  17702. height: math.unit(20, "feet")
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17708. {
  17709. front: {
  17710. height: math.unit(6 + 1 / 12, "feet"),
  17711. weight: math.unit(275, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/hunter-misha-raven/front.svg"
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Mortal",
  17721. height: math.unit(6 + 1 / 12, "feet")
  17722. },
  17723. {
  17724. name: "Divine",
  17725. height: math.unit(1.12134e34, "parsecs"),
  17726. default: true
  17727. },
  17728. ]
  17729. ))
  17730. characterMakers.push(() => makeCharacter(
  17731. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17732. {
  17733. front: {
  17734. height: math.unit(6 + 3 / 12, "feet"),
  17735. weight: math.unit(220, "lb"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/max-calore/front.svg",
  17739. extra: 1700 / 1648,
  17740. bottom: 0.01
  17741. }
  17742. },
  17743. back: {
  17744. height: math.unit(6 + 3 / 12, "feet"),
  17745. weight: math.unit(220, "lb"),
  17746. name: "Back",
  17747. image: {
  17748. source: "./media/characters/max-calore/back.svg",
  17749. extra: 1700 / 1648,
  17750. bottom: 0.01
  17751. }
  17752. },
  17753. },
  17754. [
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(6 + 3 / 12, "feet"),
  17758. default: true
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17764. {
  17765. side: {
  17766. height: math.unit(2 + 8 / 12, "feet"),
  17767. weight: math.unit(99, "lb"),
  17768. name: "Side",
  17769. image: {
  17770. source: "./media/characters/aspen/side.svg",
  17771. extra: 152 / 138,
  17772. bottom: 0.032
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(2 + 8 / 12, "feet"),
  17780. default: true
  17781. },
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17786. {
  17787. side: {
  17788. height: math.unit(3 + 2 / 12, "feet"),
  17789. weight: math.unit(224, "lb"),
  17790. name: "Side",
  17791. image: {
  17792. source: "./media/characters/sheila-feral-wolf/side.svg",
  17793. extra: 179 / 166,
  17794. bottom: 0.03
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(3 + 2 / 12, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17808. {
  17809. side: {
  17810. height: math.unit(1 + 9 / 12, "feet"),
  17811. weight: math.unit(38, "lb"),
  17812. name: "Side",
  17813. image: {
  17814. source: "./media/characters/michelle/side.svg",
  17815. extra: 147 / 136.7,
  17816. bottom: 0.03
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Normal",
  17823. height: math.unit(1 + 9 / 12, "feet"),
  17824. default: true
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(1.54, "feet"),
  17833. weight: math.unit(50, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/nino/front.svg"
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(1.54, "feet"),
  17844. default: true
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17850. {
  17851. front: {
  17852. height: math.unit(1.49, "feet"),
  17853. weight: math.unit(45, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/viola/front.svg"
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(1.49, "feet"),
  17864. default: true
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(6 + 5 / 12, "feet"),
  17873. weight: math.unit(580, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/atlas/front.svg",
  17877. extra: 298.5 / 290,
  17878. bottom: 0.015
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(6 + 5 / 12, "feet"),
  17886. default: true
  17887. },
  17888. ]
  17889. ))
  17890. characterMakers.push(() => makeCharacter(
  17891. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17892. {
  17893. side: {
  17894. height: math.unit(15.6, "inches"),
  17895. weight: math.unit(10, "lb"),
  17896. name: "Side",
  17897. image: {
  17898. source: "./media/characters/davy/side.svg",
  17899. extra: 200 / 170,
  17900. bottom: 0.01
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(15.6, "inches"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17914. {
  17915. side: {
  17916. height: math.unit(4 + 8 / 12, "feet"),
  17917. weight: math.unit(166, "lb"),
  17918. name: "Side",
  17919. image: {
  17920. source: "./media/characters/fiona/side.svg",
  17921. extra: 232 / 220,
  17922. bottom: 0.03
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(4 + 8 / 12, "feet"),
  17930. default: true
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17936. {
  17937. front: {
  17938. height: math.unit(26, "inches"),
  17939. weight: math.unit(35, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/lyla/front.svg",
  17943. bottom: 0.1
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(3, "feet"),
  17951. default: true
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17957. {
  17958. side: {
  17959. height: math.unit(1.8, "feet"),
  17960. weight: math.unit(44, "lb"),
  17961. name: "Side",
  17962. image: {
  17963. source: "./media/characters/perseus/side.svg",
  17964. bottom: 0.21
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(1.8, "feet"),
  17972. default: true
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17978. {
  17979. side: {
  17980. height: math.unit(4 + 2 / 12, "feet"),
  17981. weight: math.unit(20, "lb"),
  17982. name: "Side",
  17983. image: {
  17984. source: "./media/characters/remus/side.svg"
  17985. }
  17986. },
  17987. },
  17988. [
  17989. {
  17990. name: "Normal",
  17991. height: math.unit(4 + 2 / 12, "feet"),
  17992. default: true
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17998. {
  17999. front: {
  18000. height: math.unit(4 + 11 / 12, "feet"),
  18001. weight: math.unit(114, "lb"),
  18002. name: "Front",
  18003. image: {
  18004. source: "./media/characters/raf/front.svg",
  18005. extra: 1504/1339,
  18006. bottom: 26/1530
  18007. }
  18008. },
  18009. side: {
  18010. height: math.unit(4 + 11 / 12, "feet"),
  18011. weight: math.unit(114, "lb"),
  18012. name: "Side",
  18013. image: {
  18014. source: "./media/characters/raf/side.svg",
  18015. extra: 1466/1316,
  18016. bottom: 29/1495
  18017. }
  18018. },
  18019. paw: {
  18020. height: math.unit(1.45, "feet"),
  18021. name: "Paw",
  18022. image: {
  18023. source: "./media/characters/raf/paw.svg"
  18024. },
  18025. extraAttributes: {
  18026. "toeSize": {
  18027. name: "Toe Size",
  18028. power: 2,
  18029. type: "area",
  18030. base: math.unit(0.004, "m^2")
  18031. },
  18032. "padSize": {
  18033. name: "Pad Size",
  18034. power: 2,
  18035. type: "area",
  18036. base: math.unit(0.04, "m^2")
  18037. },
  18038. "footSize": {
  18039. name: "Foot Size",
  18040. power: 2,
  18041. type: "area",
  18042. base: math.unit(0.08, "m^2")
  18043. },
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Micro",
  18050. height: math.unit(2, "inches")
  18051. },
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(4 + 11 / 12, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(70, "feet")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(1.5, "meters"),
  18068. weight: math.unit(68, "kg"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/liam-einarr/front.svg",
  18072. extra: 2822 / 2666
  18073. }
  18074. },
  18075. back: {
  18076. height: math.unit(1.5, "meters"),
  18077. weight: math.unit(68, "kg"),
  18078. name: "Back",
  18079. image: {
  18080. source: "./media/characters/liam-einarr/back.svg",
  18081. extra: 2822 / 2666,
  18082. bottom: 0.015
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(1.5, "meters"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Macro",
  18094. height: math.unit(150, "meters")
  18095. },
  18096. {
  18097. name: "Megamacro",
  18098. height: math.unit(35, "km")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6, "feet"),
  18107. weight: math.unit(75, "kg"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/linda/front.svg",
  18111. extra: 930 / 874,
  18112. bottom: 0.004
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(6, "feet"),
  18120. default: true
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18126. {
  18127. front: {
  18128. height: math.unit(6 + 8 / 12, "feet"),
  18129. weight: math.unit(220, "lb"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/caylex/front.svg",
  18133. extra: 821 / 772,
  18134. bottom: 0.07
  18135. }
  18136. },
  18137. back: {
  18138. height: math.unit(6 + 8 / 12, "feet"),
  18139. weight: math.unit(220, "lb"),
  18140. name: "Back",
  18141. image: {
  18142. source: "./media/characters/caylex/back.svg",
  18143. extra: 821 / 772,
  18144. bottom: 0.022
  18145. }
  18146. },
  18147. hand: {
  18148. height: math.unit(1.25, "feet"),
  18149. name: "Hand",
  18150. image: {
  18151. source: "./media/characters/caylex/hand.svg"
  18152. }
  18153. },
  18154. foot: {
  18155. height: math.unit(1.6, "feet"),
  18156. name: "Foot",
  18157. image: {
  18158. source: "./media/characters/caylex/foot.svg"
  18159. }
  18160. },
  18161. armored: {
  18162. height: math.unit(6 + 8 / 12, "feet"),
  18163. weight: math.unit(250, "lb"),
  18164. name: "Armored",
  18165. image: {
  18166. source: "./media/characters/caylex/armored.svg",
  18167. extra: 1420 / 1310,
  18168. bottom: 0.045
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(6 + 8 / 12, "feet"),
  18176. default: true
  18177. },
  18178. {
  18179. name: "Normal+",
  18180. height: math.unit(12, "feet")
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18186. {
  18187. front: {
  18188. height: math.unit(7 + 6 / 12, "feet"),
  18189. weight: math.unit(288, "lb"),
  18190. name: "Front",
  18191. image: {
  18192. source: "./media/characters/alana/front.svg",
  18193. extra: 679 / 653,
  18194. bottom: 22.5 / 701
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(7 + 6 / 12, "feet")
  18202. },
  18203. {
  18204. name: "Large",
  18205. height: math.unit(50, "feet")
  18206. },
  18207. {
  18208. name: "Macro",
  18209. height: math.unit(100, "feet"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Macro+",
  18214. height: math.unit(200, "feet")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18220. {
  18221. front: {
  18222. height: math.unit(6 + 1 / 12, "feet"),
  18223. weight: math.unit(210, "lb"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/hasani/front.svg",
  18227. extra: 244 / 232,
  18228. bottom: 0.01
  18229. }
  18230. },
  18231. back: {
  18232. height: math.unit(6 + 1 / 12, "feet"),
  18233. weight: math.unit(210, "lb"),
  18234. name: "Back",
  18235. image: {
  18236. source: "./media/characters/hasani/back.svg",
  18237. extra: 244 / 232,
  18238. bottom: 0.01
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(6 + 1 / 12, "feet")
  18246. },
  18247. {
  18248. name: "Macro",
  18249. height: math.unit(175, "feet"),
  18250. default: true
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(1.82, "meters"),
  18259. weight: math.unit(140, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/nita/front.svg",
  18263. extra: 2473 / 2363,
  18264. bottom: 0.01
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(1.82, "m")
  18272. },
  18273. {
  18274. name: "Macro",
  18275. height: math.unit(300, "m")
  18276. },
  18277. {
  18278. name: "Mistake Canon",
  18279. height: math.unit(0.5, "miles"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Big Mistake",
  18284. height: math.unit(13, "miles")
  18285. },
  18286. {
  18287. name: "Playing God",
  18288. height: math.unit(2450, "miles")
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18294. {
  18295. front: {
  18296. height: math.unit(4, "feet"),
  18297. weight: math.unit(120, "lb"),
  18298. name: "Front",
  18299. image: {
  18300. source: "./media/characters/shiriko/front.svg",
  18301. extra: 970/934,
  18302. bottom: 5/975
  18303. }
  18304. },
  18305. },
  18306. [
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(4, "feet"),
  18310. default: true
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(6, "feet"),
  18319. name: "front",
  18320. image: {
  18321. source: "./media/characters/deja/front.svg",
  18322. extra: 926 / 840,
  18323. bottom: 0.07
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Planck Length",
  18330. height: math.unit(1.6e-35, "meters")
  18331. },
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(30.48, "meters"),
  18335. default: true
  18336. },
  18337. {
  18338. name: "Universal",
  18339. height: math.unit(8.8e26, "meters")
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18345. {
  18346. side: {
  18347. height: math.unit(8, "feet"),
  18348. weight: math.unit(6300, "lb"),
  18349. name: "Side",
  18350. image: {
  18351. source: "./media/characters/anima/side.svg",
  18352. bottom: 0.035
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(8, "feet"),
  18360. default: true
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(8, "feet"),
  18369. weight: math.unit(350, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/bianca/front.svg",
  18373. extra: 234 / 225,
  18374. bottom: 0.03
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(8, "feet"),
  18382. default: true
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18388. {
  18389. front: {
  18390. height: math.unit(11 + 5/12, "feet"),
  18391. weight: math.unit(1200, "lb"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/adinia/front.svg",
  18395. extra: 1767/1641,
  18396. bottom: 44/1811
  18397. },
  18398. extraAttributes: {
  18399. "energyIntake": {
  18400. name: "Energy Intake",
  18401. power: 3,
  18402. type: "energy",
  18403. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18404. },
  18405. }
  18406. },
  18407. back: {
  18408. height: math.unit(11 + 5/12, "feet"),
  18409. weight: math.unit(1200, "lb"),
  18410. name: "Back",
  18411. image: {
  18412. source: "./media/characters/adinia/back.svg",
  18413. extra: 1834/1684,
  18414. bottom: 14/1848
  18415. },
  18416. extraAttributes: {
  18417. "energyIntake": {
  18418. name: "Energy Intake",
  18419. power: 3,
  18420. type: "energy",
  18421. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18422. },
  18423. }
  18424. },
  18425. maw: {
  18426. height: math.unit(3.79, "feet"),
  18427. name: "Maw",
  18428. image: {
  18429. source: "./media/characters/adinia/maw.svg"
  18430. }
  18431. },
  18432. rump: {
  18433. height: math.unit(4.6, "feet"),
  18434. name: "Rump",
  18435. image: {
  18436. source: "./media/characters/adinia/rump.svg"
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(11 + 5 / 12, "feet"),
  18444. default: true
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18450. {
  18451. front: {
  18452. height: math.unit(3, "meters"),
  18453. weight: math.unit(200, "kg"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/lykasa/front.svg",
  18457. extra: 1076 / 976,
  18458. bottom: 0.06
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(3, "meters")
  18466. },
  18467. {
  18468. name: "Kaiju",
  18469. height: math.unit(120, "meters"),
  18470. default: true
  18471. },
  18472. {
  18473. name: "Mega Kaiju",
  18474. height: math.unit(240, "km")
  18475. },
  18476. {
  18477. name: "Giga Kaiju",
  18478. height: math.unit(400, "megameters")
  18479. },
  18480. {
  18481. name: "Tera Kaiju",
  18482. height: math.unit(800, "gigameters")
  18483. },
  18484. {
  18485. name: "Kaiju Dragon Goddess",
  18486. height: math.unit(26, "zettaparsecs")
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18492. {
  18493. side: {
  18494. height: math.unit(283 / 124 * 6, "feet"),
  18495. weight: math.unit(35000, "lb"),
  18496. name: "Side",
  18497. image: {
  18498. source: "./media/characters/malfaren/side.svg",
  18499. extra: 1310/529,
  18500. bottom: 24/1334
  18501. }
  18502. },
  18503. front: {
  18504. height: math.unit(22.36, "feet"),
  18505. weight: math.unit(35000, "lb"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/malfaren/front.svg",
  18509. extra: 1237/1115,
  18510. bottom: 32/1269
  18511. }
  18512. },
  18513. maw: {
  18514. height: math.unit(6.9, "feet"),
  18515. name: "Maw",
  18516. image: {
  18517. source: "./media/characters/malfaren/maw.svg"
  18518. }
  18519. },
  18520. dick: {
  18521. height: math.unit(6.19, "feet"),
  18522. name: "Dick",
  18523. image: {
  18524. source: "./media/characters/malfaren/dick.svg"
  18525. }
  18526. },
  18527. eye: {
  18528. height: math.unit(0.69, "feet"),
  18529. name: "Eye",
  18530. image: {
  18531. source: "./media/characters/malfaren/eye.svg"
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Big",
  18538. height: math.unit(283 / 162 * 6, "feet"),
  18539. },
  18540. {
  18541. name: "Bigger",
  18542. height: math.unit(283 / 124 * 6, "feet")
  18543. },
  18544. {
  18545. name: "Massive",
  18546. height: math.unit(283 / 92 * 6, "feet"),
  18547. default: true
  18548. },
  18549. {
  18550. name: "👀💦",
  18551. height: math.unit(283 / 73 * 6, "feet"),
  18552. },
  18553. ]
  18554. ))
  18555. characterMakers.push(() => makeCharacter(
  18556. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18557. {
  18558. front: {
  18559. height: math.unit(1.7, "m"),
  18560. weight: math.unit(70, "kg"),
  18561. name: "Front",
  18562. image: {
  18563. source: "./media/characters/kernel/front.svg",
  18564. extra: 222 / 210,
  18565. bottom: 0.007
  18566. }
  18567. },
  18568. },
  18569. [
  18570. {
  18571. name: "Nano",
  18572. height: math.unit(17, "micrometers")
  18573. },
  18574. {
  18575. name: "Micro",
  18576. height: math.unit(1.7, "mm")
  18577. },
  18578. {
  18579. name: "Small",
  18580. height: math.unit(1.7, "cm")
  18581. },
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(1.7, "m"),
  18585. default: true
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(1.75, "meters"),
  18594. weight: math.unit(65, "kg"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/jayne-folest/front.svg",
  18598. extra: 2115 / 2007,
  18599. bottom: 0.02
  18600. }
  18601. },
  18602. back: {
  18603. height: math.unit(1.75, "meters"),
  18604. weight: math.unit(65, "kg"),
  18605. name: "Back",
  18606. image: {
  18607. source: "./media/characters/jayne-folest/back.svg",
  18608. extra: 2115 / 2007,
  18609. bottom: 0.005
  18610. }
  18611. },
  18612. frontClothed: {
  18613. height: math.unit(1.75, "meters"),
  18614. weight: math.unit(65, "kg"),
  18615. name: "Front (Clothed)",
  18616. image: {
  18617. source: "./media/characters/jayne-folest/front-clothed.svg",
  18618. extra: 2115 / 2007,
  18619. bottom: 0.035
  18620. }
  18621. },
  18622. hand: {
  18623. height: math.unit(1 / 1.260, "feet"),
  18624. name: "Hand",
  18625. image: {
  18626. source: "./media/characters/jayne-folest/hand.svg"
  18627. }
  18628. },
  18629. foot: {
  18630. height: math.unit(1 / 0.918, "feet"),
  18631. name: "Foot",
  18632. image: {
  18633. source: "./media/characters/jayne-folest/foot.svg"
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Micro",
  18640. height: math.unit(4, "cm")
  18641. },
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(1.75, "meters")
  18645. },
  18646. {
  18647. name: "Macro",
  18648. height: math.unit(47.5, "meters"),
  18649. default: true
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(180, "cm"),
  18658. weight: math.unit(70, "kg"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/algier/front.svg",
  18662. extra: 596 / 572,
  18663. bottom: 0.04
  18664. }
  18665. },
  18666. back: {
  18667. height: math.unit(180, "cm"),
  18668. weight: math.unit(70, "kg"),
  18669. name: "Back",
  18670. image: {
  18671. source: "./media/characters/algier/back.svg",
  18672. extra: 596 / 572,
  18673. bottom: 0.025
  18674. }
  18675. },
  18676. frontdressed: {
  18677. height: math.unit(180, "cm"),
  18678. weight: math.unit(150, "kg"),
  18679. name: "Front-dressed",
  18680. image: {
  18681. source: "./media/characters/algier/front-dressed.svg",
  18682. extra: 596 / 572,
  18683. bottom: 0.038
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Micro",
  18690. height: math.unit(5, "cm")
  18691. },
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(180, "cm"),
  18695. default: true
  18696. },
  18697. {
  18698. name: "Macro",
  18699. height: math.unit(64, "m")
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18705. {
  18706. upright: {
  18707. height: math.unit(7, "feet"),
  18708. weight: math.unit(300, "lb"),
  18709. name: "Upright",
  18710. image: {
  18711. source: "./media/characters/pretzel/upright.svg",
  18712. extra: 534 / 522,
  18713. bottom: 0.065
  18714. }
  18715. },
  18716. sprawling: {
  18717. height: math.unit(3.75, "feet"),
  18718. weight: math.unit(300, "lb"),
  18719. name: "Sprawling",
  18720. image: {
  18721. source: "./media/characters/pretzel/sprawling.svg",
  18722. extra: 314 / 281,
  18723. bottom: 0.1
  18724. }
  18725. },
  18726. tongue: {
  18727. height: math.unit(2, "feet"),
  18728. name: "Tongue",
  18729. image: {
  18730. source: "./media/characters/pretzel/tongue.svg"
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(7, "feet"),
  18738. default: true
  18739. },
  18740. {
  18741. name: "Oversized",
  18742. height: math.unit(15, "feet")
  18743. },
  18744. {
  18745. name: "Huge",
  18746. height: math.unit(30, "feet")
  18747. },
  18748. {
  18749. name: "Macro",
  18750. height: math.unit(250, "feet")
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18756. {
  18757. sideFront: {
  18758. height: math.unit(5 + 2 / 12, "feet"),
  18759. weight: math.unit(120, "lb"),
  18760. name: "Front Side",
  18761. image: {
  18762. source: "./media/characters/roxi/side-front.svg",
  18763. extra: 2924 / 2717,
  18764. bottom: 0.08
  18765. }
  18766. },
  18767. sideBack: {
  18768. height: math.unit(5 + 2 / 12, "feet"),
  18769. weight: math.unit(120, "lb"),
  18770. name: "Back Side",
  18771. image: {
  18772. source: "./media/characters/roxi/side-back.svg",
  18773. extra: 2904 / 2693,
  18774. bottom: 0.06
  18775. }
  18776. },
  18777. front: {
  18778. height: math.unit(5 + 2 / 12, "feet"),
  18779. weight: math.unit(120, "lb"),
  18780. name: "Front",
  18781. image: {
  18782. source: "./media/characters/roxi/front.svg",
  18783. extra: 2028 / 1907,
  18784. bottom: 0.01
  18785. }
  18786. },
  18787. frontAlt: {
  18788. height: math.unit(5 + 2 / 12, "feet"),
  18789. weight: math.unit(120, "lb"),
  18790. name: "Front (Alt)",
  18791. image: {
  18792. source: "./media/characters/roxi/front-alt.svg",
  18793. extra: 1828 / 1798,
  18794. bottom: 0.01
  18795. }
  18796. },
  18797. sitting: {
  18798. height: math.unit(2.8, "feet"),
  18799. weight: math.unit(120, "lb"),
  18800. name: "Sitting",
  18801. image: {
  18802. source: "./media/characters/roxi/sitting.svg",
  18803. extra: 2660 / 2462,
  18804. bottom: 0.1
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(5 + 2 / 12, "feet"),
  18812. default: true
  18813. },
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18818. {
  18819. side: {
  18820. height: math.unit(55, "feet"),
  18821. weight: math.unit(153, "tons"),
  18822. name: "Side",
  18823. image: {
  18824. source: "./media/characters/shadow/side.svg",
  18825. extra: 701 / 628,
  18826. bottom: 0.02
  18827. }
  18828. },
  18829. flying: {
  18830. height: math.unit(145, "feet"),
  18831. weight: math.unit(153, "tons"),
  18832. name: "Flying",
  18833. image: {
  18834. source: "./media/characters/shadow/flying.svg"
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(55, "feet"),
  18842. default: true
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18848. {
  18849. front: {
  18850. height: math.unit(6, "feet"),
  18851. weight: math.unit(200, "lb"),
  18852. name: "Front",
  18853. image: {
  18854. source: "./media/characters/marcie/front.svg",
  18855. extra: 960 / 876,
  18856. bottom: 58 / 1017.87
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Macro",
  18863. height: math.unit(1, "mile"),
  18864. default: true
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18870. {
  18871. front: {
  18872. height: math.unit(7, "feet"),
  18873. weight: math.unit(200, "lb"),
  18874. name: "Front",
  18875. image: {
  18876. source: "./media/characters/kachina/front.svg",
  18877. extra: 1290.68 / 1119,
  18878. bottom: 36.5 / 1327.18
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(7, "feet"),
  18886. default: true
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18892. {
  18893. looking: {
  18894. height: math.unit(2, "meters"),
  18895. weight: math.unit(300, "kg"),
  18896. name: "Looking",
  18897. image: {
  18898. source: "./media/characters/kash/looking.svg",
  18899. extra: 474 / 344,
  18900. bottom: 0.03
  18901. }
  18902. },
  18903. side: {
  18904. height: math.unit(2, "meters"),
  18905. weight: math.unit(300, "kg"),
  18906. name: "Side",
  18907. image: {
  18908. source: "./media/characters/kash/side.svg",
  18909. extra: 302 / 251,
  18910. bottom: 0.03
  18911. }
  18912. },
  18913. front: {
  18914. height: math.unit(2, "meters"),
  18915. weight: math.unit(300, "kg"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/kash/front.svg",
  18919. extra: 495 / 360,
  18920. bottom: 0.015
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(2, "meters"),
  18928. default: true
  18929. },
  18930. {
  18931. name: "Big",
  18932. height: math.unit(3, "meters")
  18933. },
  18934. {
  18935. name: "Large",
  18936. height: math.unit(5, "meters")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18942. {
  18943. feeding: {
  18944. height: math.unit(6.7, "feet"),
  18945. weight: math.unit(350, "lb"),
  18946. name: "Feeding",
  18947. image: {
  18948. source: "./media/characters/lalim/feeding.svg",
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(6.7, "feet"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(9.5, "feet"),
  18965. weight: math.unit(600, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/de'vout/front.svg",
  18969. extra: 1443 / 1328,
  18970. bottom: 0.025
  18971. }
  18972. },
  18973. back: {
  18974. height: math.unit(9.5, "feet"),
  18975. weight: math.unit(600, "lb"),
  18976. name: "Back",
  18977. image: {
  18978. source: "./media/characters/de'vout/back.svg",
  18979. extra: 1443 / 1328
  18980. }
  18981. },
  18982. frontDressed: {
  18983. height: math.unit(9.5, "feet"),
  18984. weight: math.unit(600, "lb"),
  18985. name: "Front (Dressed",
  18986. image: {
  18987. source: "./media/characters/de'vout/front-dressed.svg",
  18988. extra: 1443 / 1328,
  18989. bottom: 0.025
  18990. }
  18991. },
  18992. backDressed: {
  18993. height: math.unit(9.5, "feet"),
  18994. weight: math.unit(600, "lb"),
  18995. name: "Back (Dressed",
  18996. image: {
  18997. source: "./media/characters/de'vout/back-dressed.svg",
  18998. extra: 1443 / 1328
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(9.5, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(8, "feet"),
  19015. weight: math.unit(225, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/talana/front.svg",
  19019. extra: 1410 / 1300,
  19020. bottom: 0.015
  19021. }
  19022. },
  19023. frontDressed: {
  19024. height: math.unit(8, "feet"),
  19025. weight: math.unit(225, "lb"),
  19026. name: "Front (Dressed",
  19027. image: {
  19028. source: "./media/characters/talana/front-dressed.svg",
  19029. extra: 1410 / 1300,
  19030. bottom: 0.015
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(8, "feet"),
  19038. default: true
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19044. {
  19045. side: {
  19046. height: math.unit(7.2, "feet"),
  19047. weight: math.unit(150, "lb"),
  19048. name: "Side",
  19049. image: {
  19050. source: "./media/characters/xeauvok/side.svg",
  19051. extra: 1975 / 1523,
  19052. bottom: 0.07
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(7.2, "feet"),
  19060. default: true
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19066. {
  19067. side: {
  19068. height: math.unit(4, "meters"),
  19069. weight: math.unit(2200, "kg"),
  19070. name: "Side",
  19071. image: {
  19072. source: "./media/characters/zara/side.svg",
  19073. extra: 765/744,
  19074. bottom: 156/921
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(4, "meters"),
  19082. default: true
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19088. {
  19089. side: {
  19090. height: math.unit(6, "feet"),
  19091. weight: math.unit(150, "lb"),
  19092. name: "Side",
  19093. image: {
  19094. source: "./media/characters/richard-dragon/side.svg",
  19095. extra: 845 / 340,
  19096. bottom: 0.017
  19097. }
  19098. },
  19099. maw: {
  19100. height: math.unit(2.97, "feet"),
  19101. name: "Maw",
  19102. image: {
  19103. source: "./media/characters/richard-dragon/maw.svg"
  19104. }
  19105. },
  19106. },
  19107. [
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(4, "feet"),
  19115. weight: math.unit(100, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/richard-smeargle/front.svg",
  19119. extra: 2952 / 2820,
  19120. bottom: 0.028
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(4, "feet"),
  19128. default: true
  19129. },
  19130. {
  19131. name: "Dynamax",
  19132. height: math.unit(20, "meters")
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(6, "feet"),
  19141. weight: math.unit(110, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/klay/front.svg",
  19145. extra: 962 / 883,
  19146. bottom: 0.04
  19147. }
  19148. },
  19149. back: {
  19150. height: math.unit(6, "feet"),
  19151. weight: math.unit(110, "lb"),
  19152. name: "Back",
  19153. image: {
  19154. source: "./media/characters/klay/back.svg",
  19155. extra: 962 / 883
  19156. }
  19157. },
  19158. beans: {
  19159. height: math.unit(1.15, "feet"),
  19160. name: "Beans",
  19161. image: {
  19162. source: "./media/characters/klay/beans.svg"
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Micro",
  19169. height: math.unit(6, "inches")
  19170. },
  19171. {
  19172. name: "Mini",
  19173. height: math.unit(3, "feet")
  19174. },
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(6, "feet"),
  19178. default: true
  19179. },
  19180. {
  19181. name: "Big",
  19182. height: math.unit(25, "feet")
  19183. },
  19184. {
  19185. name: "Macro",
  19186. height: math.unit(100, "feet")
  19187. },
  19188. {
  19189. name: "Megamacro",
  19190. height: math.unit(400, "feet")
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19196. {
  19197. front: {
  19198. height: math.unit(6, "feet"),
  19199. weight: math.unit(160, "lb"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/marcus/front.svg",
  19203. extra: 734 / 676,
  19204. bottom: 0.03
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Little",
  19211. height: math.unit(6, "feet")
  19212. },
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(110, "feet"),
  19216. default: true
  19217. },
  19218. {
  19219. name: "Macro",
  19220. height: math.unit(250, "feet")
  19221. },
  19222. {
  19223. name: "Megamacro",
  19224. height: math.unit(1000, "feet")
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19230. {
  19231. front: {
  19232. height: math.unit(7, "feet"),
  19233. weight: math.unit(275, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/claude-delroute/front.svg",
  19237. extra: 902/827,
  19238. bottom: 26/928
  19239. }
  19240. },
  19241. side: {
  19242. height: math.unit(7, "feet"),
  19243. weight: math.unit(275, "lb"),
  19244. name: "Side",
  19245. image: {
  19246. source: "./media/characters/claude-delroute/side.svg",
  19247. extra: 908/853,
  19248. bottom: 16/924
  19249. }
  19250. },
  19251. back: {
  19252. height: math.unit(7, "feet"),
  19253. weight: math.unit(275, "lb"),
  19254. name: "Back",
  19255. image: {
  19256. source: "./media/characters/claude-delroute/back.svg",
  19257. extra: 911/829,
  19258. bottom: 18/929
  19259. }
  19260. },
  19261. maw: {
  19262. height: math.unit(0.6407, "meters"),
  19263. name: "Maw",
  19264. image: {
  19265. source: "./media/characters/claude-delroute/maw.svg"
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(7, "feet"),
  19273. default: true
  19274. },
  19275. {
  19276. name: "Lorge",
  19277. height: math.unit(20, "feet")
  19278. },
  19279. ]
  19280. ))
  19281. characterMakers.push(() => makeCharacter(
  19282. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19283. {
  19284. front: {
  19285. height: math.unit(8 + 4 / 12, "feet"),
  19286. weight: math.unit(600, "lb"),
  19287. name: "Front",
  19288. image: {
  19289. source: "./media/characters/dragonien/front.svg",
  19290. extra: 100 / 94,
  19291. bottom: 3.3 / 103.3445
  19292. }
  19293. },
  19294. back: {
  19295. height: math.unit(8 + 4 / 12, "feet"),
  19296. weight: math.unit(600, "lb"),
  19297. name: "Back",
  19298. image: {
  19299. source: "./media/characters/dragonien/back.svg",
  19300. extra: 776 / 746,
  19301. bottom: 6.4 / 782.0616
  19302. }
  19303. },
  19304. foot: {
  19305. height: math.unit(1.54, "feet"),
  19306. name: "Foot",
  19307. image: {
  19308. source: "./media/characters/dragonien/foot.svg",
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(8 + 4 / 12, "feet"),
  19316. default: true
  19317. },
  19318. {
  19319. name: "Macro",
  19320. height: math.unit(200, "feet")
  19321. },
  19322. {
  19323. name: "Megamacro",
  19324. height: math.unit(1, "mile")
  19325. },
  19326. {
  19327. name: "Gigamacro",
  19328. height: math.unit(1000, "miles")
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19334. {
  19335. front: {
  19336. height: math.unit(5 + 2 / 12, "feet"),
  19337. weight: math.unit(110, "lb"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/desta/front.svg",
  19341. extra: 767 / 726,
  19342. bottom: 11.7 / 779
  19343. }
  19344. },
  19345. back: {
  19346. height: math.unit(5 + 2 / 12, "feet"),
  19347. weight: math.unit(110, "lb"),
  19348. name: "Back",
  19349. image: {
  19350. source: "./media/characters/desta/back.svg",
  19351. extra: 777 / 728,
  19352. bottom: 6 / 784
  19353. }
  19354. },
  19355. frontAlt: {
  19356. height: math.unit(5 + 2 / 12, "feet"),
  19357. weight: math.unit(110, "lb"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/desta/front-alt.svg",
  19361. extra: 1482 / 1417
  19362. }
  19363. },
  19364. side: {
  19365. height: math.unit(5 + 2 / 12, "feet"),
  19366. weight: math.unit(110, "lb"),
  19367. name: "Side",
  19368. image: {
  19369. source: "./media/characters/desta/side.svg",
  19370. extra: 2579 / 2491,
  19371. bottom: 0.053
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Micro",
  19378. height: math.unit(6, "inches")
  19379. },
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(5 + 2 / 12, "feet"),
  19383. default: true
  19384. },
  19385. {
  19386. name: "Macro",
  19387. height: math.unit(62, "feet")
  19388. },
  19389. {
  19390. name: "Megamacro",
  19391. height: math.unit(1800, "feet")
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19397. {
  19398. front: {
  19399. height: math.unit(10, "feet"),
  19400. weight: math.unit(700, "lb"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/storm-alystar/front.svg",
  19404. extra: 2112 / 1898,
  19405. bottom: 0.034
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Micro",
  19412. height: math.unit(3.5, "inches")
  19413. },
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(10, "feet"),
  19417. default: true
  19418. },
  19419. {
  19420. name: "Macro",
  19421. height: math.unit(400, "feet")
  19422. },
  19423. {
  19424. name: "Deific",
  19425. height: math.unit(60, "miles")
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(2.35, "meters"),
  19434. weight: math.unit(119, "kg"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/ilia/front.svg",
  19438. extra: 1285 / 1255,
  19439. bottom: 0.06
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(2.35, "meters")
  19447. },
  19448. {
  19449. name: "Macro",
  19450. height: math.unit(140, "meters"),
  19451. default: true
  19452. },
  19453. {
  19454. name: "Megamacro",
  19455. height: math.unit(100, "miles")
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19461. {
  19462. front: {
  19463. height: math.unit(6 + 5 / 12, "feet"),
  19464. weight: math.unit(190, "lb"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/kingdead/front.svg",
  19468. extra: 1228 / 1177
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Micro",
  19475. height: math.unit(7, "inches")
  19476. },
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(6 + 5 / 12, "feet")
  19480. },
  19481. {
  19482. name: "Macro",
  19483. height: math.unit(150, "feet"),
  19484. default: true
  19485. },
  19486. {
  19487. name: "Megamacro",
  19488. height: math.unit(200, "miles")
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(8, "feet"),
  19497. weight: math.unit(600, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/kyrehx/front.svg",
  19501. extra: 1195 / 1095,
  19502. bottom: 0.034
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Micro",
  19509. height: math.unit(2, "inches")
  19510. },
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(8, "feet"),
  19514. default: true
  19515. },
  19516. {
  19517. name: "Macro",
  19518. height: math.unit(255, "feet")
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19527. weight: math.unit(184, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/xang/front.svg",
  19531. extra: 845 / 755
  19532. }
  19533. },
  19534. },
  19535. [
  19536. {
  19537. name: "Normal",
  19538. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19539. default: true
  19540. },
  19541. {
  19542. name: "Macro",
  19543. height: math.unit(0.935 * 146, "feet")
  19544. },
  19545. {
  19546. name: "Megamacro",
  19547. height: math.unit(0.935 * 3, "miles")
  19548. },
  19549. ]
  19550. ))
  19551. characterMakers.push(() => makeCharacter(
  19552. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19553. {
  19554. frontDressed: {
  19555. height: math.unit(5 + 7 / 12, "feet"),
  19556. weight: math.unit(140, "lb"),
  19557. name: "Front (Dressed)",
  19558. image: {
  19559. source: "./media/characters/doc-weardno/front-dressed.svg",
  19560. extra: 263 / 234
  19561. }
  19562. },
  19563. backDressed: {
  19564. height: math.unit(5 + 7 / 12, "feet"),
  19565. weight: math.unit(140, "lb"),
  19566. name: "Back (Dressed)",
  19567. image: {
  19568. source: "./media/characters/doc-weardno/back-dressed.svg",
  19569. extra: 266 / 238
  19570. }
  19571. },
  19572. front: {
  19573. height: math.unit(5 + 7 / 12, "feet"),
  19574. weight: math.unit(140, "lb"),
  19575. name: "Front",
  19576. image: {
  19577. source: "./media/characters/doc-weardno/front.svg",
  19578. extra: 254 / 233
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Micro",
  19585. height: math.unit(3, "inches")
  19586. },
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(5 + 7 / 12, "feet"),
  19590. default: true
  19591. },
  19592. {
  19593. name: "Macro",
  19594. height: math.unit(25, "feet")
  19595. },
  19596. {
  19597. name: "Megamacro",
  19598. height: math.unit(2, "miles")
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19604. {
  19605. front: {
  19606. height: math.unit(6 + 2 / 12, "feet"),
  19607. weight: math.unit(153, "lb"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/seth-whilst/front.svg",
  19611. bottom: 0.07
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Micro",
  19618. height: math.unit(5, "inches")
  19619. },
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(6 + 2 / 12, "feet"),
  19623. default: true
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19629. {
  19630. front: {
  19631. height: math.unit(3, "inches"),
  19632. weight: math.unit(8, "grams"),
  19633. name: "Front",
  19634. image: {
  19635. source: "./media/characters/pocket-jabari/front.svg",
  19636. extra: 1024 / 974,
  19637. bottom: 0.039
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Minimicro",
  19644. height: math.unit(8, "mm")
  19645. },
  19646. {
  19647. name: "Micro",
  19648. height: math.unit(3, "inches"),
  19649. default: true
  19650. },
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(3, "feet")
  19654. },
  19655. ]
  19656. ))
  19657. characterMakers.push(() => makeCharacter(
  19658. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19659. {
  19660. frontDressed: {
  19661. height: math.unit(15, "feet"),
  19662. weight: math.unit(3280, "lb"),
  19663. name: "Front (Dressed)",
  19664. image: {
  19665. source: "./media/characters/sapphy/front-dressed.svg",
  19666. extra: 1951/1654,
  19667. bottom: 194/2145
  19668. },
  19669. form: "anthro",
  19670. default: true
  19671. },
  19672. backDressed: {
  19673. height: math.unit(15, "feet"),
  19674. weight: math.unit(3280, "lb"),
  19675. name: "Back (Dressed)",
  19676. image: {
  19677. source: "./media/characters/sapphy/back-dressed.svg",
  19678. extra: 2058/1918,
  19679. bottom: 125/2183
  19680. },
  19681. form: "anthro"
  19682. },
  19683. frontNude: {
  19684. height: math.unit(15, "feet"),
  19685. weight: math.unit(3280, "lb"),
  19686. name: "Front (Nude)",
  19687. image: {
  19688. source: "./media/characters/sapphy/front-nude.svg",
  19689. extra: 1951/1654,
  19690. bottom: 194/2145
  19691. },
  19692. form: "anthro"
  19693. },
  19694. backNude: {
  19695. height: math.unit(15, "feet"),
  19696. weight: math.unit(3280, "lb"),
  19697. name: "Back (Nude)",
  19698. image: {
  19699. source: "./media/characters/sapphy/back-nude.svg",
  19700. extra: 2058/1918,
  19701. bottom: 125/2183
  19702. },
  19703. form: "anthro"
  19704. },
  19705. full: {
  19706. height: math.unit(15, "feet"),
  19707. weight: math.unit(3280, "lb"),
  19708. name: "Full",
  19709. image: {
  19710. source: "./media/characters/sapphy/full.svg",
  19711. extra: 1396/1317,
  19712. bottom: 44/1440
  19713. },
  19714. form: "anthro"
  19715. },
  19716. dick: {
  19717. height: math.unit(3.8, "feet"),
  19718. name: "Dick",
  19719. image: {
  19720. source: "./media/characters/sapphy/dick.svg"
  19721. },
  19722. form: "anthro"
  19723. },
  19724. feral: {
  19725. height: math.unit(35, "feet"),
  19726. weight: math.unit(160, "tons"),
  19727. name: "Feral",
  19728. image: {
  19729. source: "./media/characters/sapphy/feral.svg",
  19730. extra: 1050/573,
  19731. bottom: 60/1110
  19732. },
  19733. form: "feral",
  19734. default: true
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(15, "feet"),
  19741. form: "anthro"
  19742. },
  19743. {
  19744. name: "Casual Macro",
  19745. height: math.unit(120, "feet"),
  19746. form: "anthro"
  19747. },
  19748. {
  19749. name: "Macro",
  19750. height: math.unit(2150, "feet"),
  19751. default: true,
  19752. form: "anthro"
  19753. },
  19754. {
  19755. name: "Megamacro",
  19756. height: math.unit(8, "miles"),
  19757. form: "anthro"
  19758. },
  19759. {
  19760. name: "Galaxy Mom",
  19761. height: math.unit(6, "megalightyears"),
  19762. form: "anthro"
  19763. },
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(35, "feet"),
  19767. form: "feral",
  19768. default: true
  19769. },
  19770. {
  19771. name: "Macro",
  19772. height: math.unit(300, "feet"),
  19773. form: "feral"
  19774. },
  19775. {
  19776. name: "Galaxy Mom",
  19777. height: math.unit(10, "megalightyears"),
  19778. form: "feral"
  19779. },
  19780. ],
  19781. {
  19782. "anthro": {
  19783. name: "Anthro",
  19784. default: true
  19785. },
  19786. "feral": {
  19787. name: "Feral"
  19788. }
  19789. }
  19790. ))
  19791. characterMakers.push(() => makeCharacter(
  19792. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19793. {
  19794. front: {
  19795. height: math.unit(6, "feet"),
  19796. weight: math.unit(170, "lb"),
  19797. name: "Front",
  19798. image: {
  19799. source: "./media/characters/kiro/front.svg",
  19800. extra: 1064 / 1012,
  19801. bottom: 0.052
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Micro",
  19808. height: math.unit(6, "inches")
  19809. },
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(6, "feet"),
  19813. default: true
  19814. },
  19815. {
  19816. name: "Macro",
  19817. height: math.unit(72, "feet")
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(5 + 9 / 12, "feet"),
  19826. weight: math.unit(175, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/irishfox/front.svg",
  19830. extra: 1912 / 1680,
  19831. bottom: 0.02
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Nano",
  19838. height: math.unit(1, "mm")
  19839. },
  19840. {
  19841. name: "Micro",
  19842. height: math.unit(2, "inches")
  19843. },
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(5 + 9 / 12, "feet"),
  19847. default: true
  19848. },
  19849. {
  19850. name: "Macro",
  19851. height: math.unit(45, "feet")
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19857. {
  19858. front: {
  19859. height: math.unit(6 + 1 / 12, "feet"),
  19860. weight: math.unit(75, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/aronai-sieyes/front.svg",
  19864. extra: 1532/1450,
  19865. bottom: 42/1574
  19866. }
  19867. },
  19868. side: {
  19869. height: math.unit(6 + 1 / 12, "feet"),
  19870. weight: math.unit(75, "lb"),
  19871. name: "Side",
  19872. image: {
  19873. source: "./media/characters/aronai-sieyes/side.svg",
  19874. extra: 1422/1365,
  19875. bottom: 148/1570
  19876. }
  19877. },
  19878. back: {
  19879. height: math.unit(6 + 1 / 12, "feet"),
  19880. weight: math.unit(75, "lb"),
  19881. name: "Back",
  19882. image: {
  19883. source: "./media/characters/aronai-sieyes/back.svg",
  19884. extra: 1526/1464,
  19885. bottom: 51/1577
  19886. }
  19887. },
  19888. dressed: {
  19889. height: math.unit(6 + 1 / 12, "feet"),
  19890. weight: math.unit(75, "lb"),
  19891. name: "Dressed",
  19892. image: {
  19893. source: "./media/characters/aronai-sieyes/dressed.svg",
  19894. extra: 1559/1483,
  19895. bottom: 39/1598
  19896. }
  19897. },
  19898. slit: {
  19899. height: math.unit(1.3, "feet"),
  19900. name: "Slit",
  19901. image: {
  19902. source: "./media/characters/aronai-sieyes/slit.svg"
  19903. }
  19904. },
  19905. slitSpread: {
  19906. height: math.unit(0.9, "feet"),
  19907. name: "Slit (Spread)",
  19908. image: {
  19909. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19910. }
  19911. },
  19912. rump: {
  19913. height: math.unit(1.3, "feet"),
  19914. name: "Rump",
  19915. image: {
  19916. source: "./media/characters/aronai-sieyes/rump.svg"
  19917. }
  19918. },
  19919. maw: {
  19920. height: math.unit(1.25, "feet"),
  19921. name: "Maw",
  19922. image: {
  19923. source: "./media/characters/aronai-sieyes/maw.svg"
  19924. }
  19925. },
  19926. feral: {
  19927. height: math.unit(18, "feet"),
  19928. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19929. name: "Feral",
  19930. image: {
  19931. source: "./media/characters/aronai-sieyes/feral.svg",
  19932. extra: 1530 / 1240,
  19933. bottom: 0.035
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Micro",
  19940. height: math.unit(2, "inches")
  19941. },
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(6 + 1 / 12, "feet"),
  19945. default: true
  19946. }
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(12, "feet"),
  19954. weight: math.unit(410, "kg"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/xuna/front.svg",
  19958. extra: 2184 / 1980
  19959. }
  19960. },
  19961. side: {
  19962. height: math.unit(12, "feet"),
  19963. weight: math.unit(410, "kg"),
  19964. name: "Side",
  19965. image: {
  19966. source: "./media/characters/xuna/side.svg",
  19967. extra: 2184 / 1980
  19968. }
  19969. },
  19970. back: {
  19971. height: math.unit(12, "feet"),
  19972. weight: math.unit(410, "kg"),
  19973. name: "Back",
  19974. image: {
  19975. source: "./media/characters/xuna/back.svg",
  19976. extra: 2184 / 1980
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Nano glow",
  19983. height: math.unit(10, "nm")
  19984. },
  19985. {
  19986. name: "Micro floof",
  19987. height: math.unit(0.3, "m")
  19988. },
  19989. {
  19990. name: "Huggable softy boi",
  19991. height: math.unit(3.6576, "m"),
  19992. default: true
  19993. },
  19994. {
  19995. name: "Admirable floof",
  19996. height: math.unit(80, "meters")
  19997. },
  19998. {
  19999. name: "Gentle macro",
  20000. height: math.unit(300, "meters")
  20001. },
  20002. {
  20003. name: "Very careful floof",
  20004. height: math.unit(3200, "meters")
  20005. },
  20006. {
  20007. name: "The mega floof",
  20008. height: math.unit(36000, "meters")
  20009. },
  20010. {
  20011. name: "Giga-fur-Wicker",
  20012. height: math.unit(4800000, "meters")
  20013. },
  20014. {
  20015. name: "Licky world",
  20016. height: math.unit(20000000, "meters")
  20017. },
  20018. {
  20019. name: "Floofy cyan sun",
  20020. height: math.unit(1500000000, "meters")
  20021. },
  20022. {
  20023. name: "Milky Wicker",
  20024. height: math.unit(1000000000000000000000, "meters")
  20025. },
  20026. {
  20027. name: "The observing Wicker",
  20028. height: math.unit(999999999999999999999999999, "meters")
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(5 + 9 / 12, "feet"),
  20037. weight: math.unit(150, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/arokha-sieyes/front.svg",
  20041. extra: 1425 / 1284,
  20042. bottom: 0.05
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(5 + 9 / 12, "feet")
  20050. },
  20051. {
  20052. name: "Macro",
  20053. height: math.unit(30, "meters"),
  20054. default: true
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(6, "feet"),
  20063. weight: math.unit(180, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/arokh-sieyes/front.svg",
  20067. extra: 1830 / 1769,
  20068. bottom: 0.01
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(6, "feet")
  20076. },
  20077. {
  20078. name: "Macro",
  20079. height: math.unit(30, "meters"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20086. {
  20087. side: {
  20088. height: math.unit(13 + 1 / 12, "feet"),
  20089. weight: math.unit(8.5, "tonnes"),
  20090. name: "Side",
  20091. image: {
  20092. source: "./media/characters/goldeneye/side.svg",
  20093. extra: 1182 / 778,
  20094. bottom: 0.067
  20095. }
  20096. },
  20097. paw: {
  20098. height: math.unit(3.4, "feet"),
  20099. name: "Paw",
  20100. image: {
  20101. source: "./media/characters/goldeneye/paw.svg"
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(13 + 1 / 12, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20115. {
  20116. front: {
  20117. height: math.unit(6 + 1 / 12, "feet"),
  20118. weight: math.unit(210, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/leonardo-lycheborne/front.svg",
  20122. extra: 776/723,
  20123. bottom: 34/810
  20124. }
  20125. },
  20126. side: {
  20127. height: math.unit(6 + 1 / 12, "feet"),
  20128. weight: math.unit(210, "lb"),
  20129. name: "Side",
  20130. image: {
  20131. source: "./media/characters/leonardo-lycheborne/side.svg",
  20132. extra: 780/728,
  20133. bottom: 12/792
  20134. }
  20135. },
  20136. back: {
  20137. height: math.unit(6 + 1 / 12, "feet"),
  20138. weight: math.unit(210, "lb"),
  20139. name: "Back",
  20140. image: {
  20141. source: "./media/characters/leonardo-lycheborne/back.svg",
  20142. extra: 775/721,
  20143. bottom: 17/792
  20144. }
  20145. },
  20146. hand: {
  20147. height: math.unit(1.08, "feet"),
  20148. name: "Hand",
  20149. image: {
  20150. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20151. }
  20152. },
  20153. foot: {
  20154. height: math.unit(1.32, "feet"),
  20155. name: "Foot",
  20156. image: {
  20157. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20158. }
  20159. },
  20160. maw: {
  20161. height: math.unit(1, "feet"),
  20162. name: "Maw",
  20163. image: {
  20164. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20165. }
  20166. },
  20167. were: {
  20168. height: math.unit(20, "feet"),
  20169. weight: math.unit(7800, "lb"),
  20170. name: "Were",
  20171. image: {
  20172. source: "./media/characters/leonardo-lycheborne/were.svg",
  20173. extra: 1224/1165,
  20174. bottom: 72/1296
  20175. }
  20176. },
  20177. feral: {
  20178. height: math.unit(7.5, "feet"),
  20179. weight: math.unit(600, "lb"),
  20180. name: "Feral",
  20181. image: {
  20182. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20183. extra: 797/702,
  20184. bottom: 139/936
  20185. }
  20186. },
  20187. taur: {
  20188. height: math.unit(11, "feet"),
  20189. weight: math.unit(3300, "lb"),
  20190. name: "Taur",
  20191. image: {
  20192. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20193. extra: 1271/1197,
  20194. bottom: 47/1318
  20195. }
  20196. },
  20197. barghest: {
  20198. height: math.unit(11, "feet"),
  20199. weight: math.unit(1300, "lb"),
  20200. name: "Barghest",
  20201. image: {
  20202. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20203. extra: 1291/1204,
  20204. bottom: 37/1328
  20205. }
  20206. },
  20207. dick: {
  20208. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20209. name: "Dick",
  20210. image: {
  20211. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20212. }
  20213. },
  20214. dickWere: {
  20215. height: math.unit((20) / 3.8, "feet"),
  20216. name: "Dick (Were)",
  20217. image: {
  20218. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20219. }
  20220. },
  20221. },
  20222. [
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(6 + 1 / 12, "feet"),
  20226. default: true
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(10, "feet"),
  20235. weight: math.unit(350, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/jet/front.svg",
  20239. extra: 2050 / 1980,
  20240. bottom: 0.013
  20241. }
  20242. },
  20243. back: {
  20244. height: math.unit(10, "feet"),
  20245. weight: math.unit(350, "lb"),
  20246. name: "Back",
  20247. image: {
  20248. source: "./media/characters/jet/back.svg",
  20249. extra: 2050 / 1980,
  20250. bottom: 0.013
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Micro",
  20257. height: math.unit(6, "inches")
  20258. },
  20259. {
  20260. name: "Normal",
  20261. height: math.unit(10, "feet"),
  20262. default: true
  20263. },
  20264. {
  20265. name: "Macro",
  20266. height: math.unit(100, "feet")
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(15, "feet"),
  20275. weight: math.unit(2800, "lb"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/tanarath/front.svg",
  20279. extra: 2392 / 2220,
  20280. bottom: 0.03
  20281. }
  20282. },
  20283. back: {
  20284. height: math.unit(15, "feet"),
  20285. weight: math.unit(2800, "lb"),
  20286. name: "Back",
  20287. image: {
  20288. source: "./media/characters/tanarath/back.svg",
  20289. extra: 2392 / 2220,
  20290. bottom: 0.03
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(15, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(7 + 1 / 12, "feet"),
  20307. weight: math.unit(175, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/patty-cattybatty/front.svg",
  20311. extra: 908 / 874,
  20312. bottom: 0.025
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Micro",
  20319. height: math.unit(1, "inch")
  20320. },
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(7 + 1 / 12, "feet")
  20324. },
  20325. {
  20326. name: "Mini Macro",
  20327. height: math.unit(155, "feet")
  20328. },
  20329. {
  20330. name: "Macro",
  20331. height: math.unit(1077, "feet")
  20332. },
  20333. {
  20334. name: "Mega Macro",
  20335. height: math.unit(47650, "feet"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Giga Macro",
  20340. height: math.unit(440, "miles")
  20341. },
  20342. {
  20343. name: "Tera Macro",
  20344. height: math.unit(8700, "miles")
  20345. },
  20346. {
  20347. name: "Planetary Macro",
  20348. height: math.unit(32700, "miles")
  20349. },
  20350. {
  20351. name: "Solar Macro",
  20352. height: math.unit(550000, "miles")
  20353. },
  20354. {
  20355. name: "Celestial Macro",
  20356. height: math.unit(2.5, "AU")
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20362. {
  20363. front: {
  20364. height: math.unit(4 + 5 / 12, "feet"),
  20365. weight: math.unit(90, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/cappu/front.svg",
  20369. extra: 1247 / 1152,
  20370. bottom: 0.012
  20371. }
  20372. },
  20373. },
  20374. [
  20375. {
  20376. name: "Normal",
  20377. height: math.unit(4 + 5 / 12, "feet"),
  20378. default: true
  20379. },
  20380. ]
  20381. ))
  20382. characterMakers.push(() => makeCharacter(
  20383. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20384. {
  20385. frontDressed: {
  20386. height: math.unit(70, "cm"),
  20387. weight: math.unit(6, "kg"),
  20388. name: "Front (Dressed)",
  20389. image: {
  20390. source: "./media/characters/sebi/front-dressed.svg",
  20391. extra: 713.5 / 686.5,
  20392. bottom: 0.003
  20393. }
  20394. },
  20395. front: {
  20396. height: math.unit(70, "cm"),
  20397. weight: math.unit(5, "kg"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/sebi/front.svg",
  20401. extra: 713.5 / 686.5,
  20402. bottom: 0.003
  20403. }
  20404. }
  20405. },
  20406. [
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(70, "cm"),
  20410. default: true
  20411. },
  20412. {
  20413. name: "Macro",
  20414. height: math.unit(8, "meters")
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(6, "feet"),
  20423. weight: math.unit(150, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/typhek/front.svg",
  20427. extra: 1948 / 1929,
  20428. bottom: 0.025
  20429. }
  20430. },
  20431. side: {
  20432. height: math.unit(6, "feet"),
  20433. weight: math.unit(150, "lb"),
  20434. name: "Side",
  20435. image: {
  20436. source: "./media/characters/typhek/side.svg",
  20437. extra: 2034 / 2010,
  20438. bottom: 0.003
  20439. }
  20440. },
  20441. back: {
  20442. height: math.unit(6, "feet"),
  20443. weight: math.unit(150, "lb"),
  20444. name: "Back",
  20445. image: {
  20446. source: "./media/characters/typhek/back.svg",
  20447. extra: 2005 / 1978,
  20448. bottom: 0.004
  20449. }
  20450. },
  20451. palm: {
  20452. height: math.unit(1.2, "feet"),
  20453. name: "Palm",
  20454. image: {
  20455. source: "./media/characters/typhek/palm.svg"
  20456. }
  20457. },
  20458. fist: {
  20459. height: math.unit(1.1, "feet"),
  20460. name: "Fist",
  20461. image: {
  20462. source: "./media/characters/typhek/fist.svg"
  20463. }
  20464. },
  20465. foot: {
  20466. height: math.unit(1.57, "feet"),
  20467. name: "Foot",
  20468. image: {
  20469. source: "./media/characters/typhek/foot.svg"
  20470. }
  20471. },
  20472. sole: {
  20473. height: math.unit(2.05, "feet"),
  20474. name: "Sole",
  20475. image: {
  20476. source: "./media/characters/typhek/sole.svg"
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Macro",
  20483. height: math.unit(40, "stories"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Megamacro",
  20488. height: math.unit(1, "mile")
  20489. },
  20490. {
  20491. name: "Gigamacro",
  20492. height: math.unit(4000, "solarradii")
  20493. },
  20494. {
  20495. name: "Universal",
  20496. height: math.unit(1.1, "universes")
  20497. }
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20502. {
  20503. side: {
  20504. height: math.unit(5 + 7 / 12, "feet"),
  20505. weight: math.unit(150, "lb"),
  20506. name: "Side",
  20507. image: {
  20508. source: "./media/characters/kassy/side.svg",
  20509. extra: 1280 / 1225,
  20510. bottom: 0.002
  20511. }
  20512. },
  20513. front: {
  20514. height: math.unit(5 + 7 / 12, "feet"),
  20515. weight: math.unit(150, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/kassy/front.svg",
  20519. extra: 1280 / 1225,
  20520. bottom: 0.025
  20521. }
  20522. },
  20523. back: {
  20524. height: math.unit(5 + 7 / 12, "feet"),
  20525. weight: math.unit(150, "lb"),
  20526. name: "Back",
  20527. image: {
  20528. source: "./media/characters/kassy/back.svg",
  20529. extra: 1280 / 1225,
  20530. bottom: 0.002
  20531. }
  20532. },
  20533. foot: {
  20534. height: math.unit(1.266, "feet"),
  20535. name: "Foot",
  20536. image: {
  20537. source: "./media/characters/kassy/foot.svg"
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(5 + 7 / 12, "feet")
  20545. },
  20546. {
  20547. name: "Macro",
  20548. height: math.unit(137, "feet"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Megamacro",
  20553. height: math.unit(1, "mile")
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(6 + 1 / 12, "feet"),
  20562. weight: math.unit(200, "lb"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/neil/front.svg",
  20566. extra: 1326 / 1250,
  20567. bottom: 0.023
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(6 + 1 / 12, "feet"),
  20575. default: true
  20576. },
  20577. {
  20578. name: "Macro",
  20579. height: math.unit(200, "feet")
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(5 + 9 / 12, "feet"),
  20588. weight: math.unit(190, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/atticus/front.svg",
  20592. extra: 2934 / 2785,
  20593. bottom: 0.025
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(5 + 9 / 12, "feet"),
  20601. default: true
  20602. },
  20603. {
  20604. name: "Macro",
  20605. height: math.unit(180, "feet")
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20611. {
  20612. side: {
  20613. height: math.unit(9, "feet"),
  20614. weight: math.unit(650, "lb"),
  20615. name: "Side",
  20616. image: {
  20617. source: "./media/characters/milo/side.svg",
  20618. extra: 2644 / 2310,
  20619. bottom: 0.032
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(9, "feet"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Macro",
  20631. height: math.unit(300, "feet")
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20637. {
  20638. side: {
  20639. height: math.unit(8, "meters"),
  20640. weight: math.unit(90000, "kg"),
  20641. name: "Side",
  20642. image: {
  20643. source: "./media/characters/ijzer/side.svg",
  20644. extra: 2756 / 1600,
  20645. bottom: 0.01
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Small",
  20652. height: math.unit(3, "meters")
  20653. },
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(8, "meters"),
  20657. default: true
  20658. },
  20659. {
  20660. name: "Normal+",
  20661. height: math.unit(10, "meters")
  20662. },
  20663. {
  20664. name: "Bigger",
  20665. height: math.unit(24, "meters")
  20666. },
  20667. {
  20668. name: "Huge",
  20669. height: math.unit(80, "meters")
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(6 + 2 / 12, "feet"),
  20678. weight: math.unit(153, "lb"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/luca-cervicum/front.svg",
  20682. extra: 370 / 327,
  20683. bottom: 0.015
  20684. }
  20685. },
  20686. back: {
  20687. height: math.unit(6 + 2 / 12, "feet"),
  20688. weight: math.unit(153, "lb"),
  20689. name: "Back",
  20690. image: {
  20691. source: "./media/characters/luca-cervicum/back.svg",
  20692. extra: 367 / 333,
  20693. bottom: 0.005
  20694. }
  20695. },
  20696. frontGear: {
  20697. height: math.unit(6 + 2 / 12, "feet"),
  20698. weight: math.unit(173, "lb"),
  20699. name: "Front (Gear)",
  20700. image: {
  20701. source: "./media/characters/luca-cervicum/front-gear.svg",
  20702. extra: 377 / 333,
  20703. bottom: 0.006
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(6 + 2 / 12, "feet"),
  20711. default: true
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20717. {
  20718. front: {
  20719. height: math.unit(6 + 1 / 12, "feet"),
  20720. weight: math.unit(304, "lb"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/oliver/front.svg",
  20724. extra: 157 / 143,
  20725. bottom: 0.08
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(6 + 1 / 12, "feet"),
  20733. default: true
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(5 + 7 / 12, "feet"),
  20742. weight: math.unit(140, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/shane/front.svg",
  20746. extra: 304 / 289,
  20747. bottom: 0.005
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(5 + 7 / 12, "feet"),
  20755. default: true
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(5 + 9 / 12, "feet"),
  20764. weight: math.unit(178, "lb"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/shin/front.svg",
  20768. extra: 159 / 151,
  20769. bottom: 0.015
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Normal",
  20776. height: math.unit(5 + 9 / 12, "feet"),
  20777. default: true
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20783. {
  20784. front: {
  20785. height: math.unit(5 + 10 / 12, "feet"),
  20786. weight: math.unit(168, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/xerxes/front.svg",
  20790. extra: 282 / 260,
  20791. bottom: 0.045
  20792. }
  20793. },
  20794. },
  20795. [
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(5 + 10 / 12, "feet"),
  20799. default: true
  20800. },
  20801. ]
  20802. ))
  20803. characterMakers.push(() => makeCharacter(
  20804. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20805. {
  20806. front: {
  20807. height: math.unit(6 + 7 / 12, "feet"),
  20808. weight: math.unit(208, "lb"),
  20809. name: "Front",
  20810. image: {
  20811. source: "./media/characters/chaska/front.svg",
  20812. extra: 332 / 319,
  20813. bottom: 0.015
  20814. }
  20815. },
  20816. },
  20817. [
  20818. {
  20819. name: "Normal",
  20820. height: math.unit(6 + 7 / 12, "feet"),
  20821. default: true
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20827. {
  20828. front: {
  20829. height: math.unit(5 + 8 / 12, "feet"),
  20830. weight: math.unit(208, "lb"),
  20831. name: "Front",
  20832. image: {
  20833. source: "./media/characters/enuk/front.svg",
  20834. extra: 437 / 406,
  20835. bottom: 0.02
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(5 + 8 / 12, "feet"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(5 + 10 / 12, "feet"),
  20852. weight: math.unit(252, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/bruun/front.svg",
  20856. extra: 197 / 187,
  20857. bottom: 0.012
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(5 + 10 / 12, "feet"),
  20865. default: true
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20871. {
  20872. front: {
  20873. height: math.unit(6 + 10 / 12, "feet"),
  20874. weight: math.unit(255, "lb"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/alexeev/front.svg",
  20878. extra: 213 / 200,
  20879. bottom: 0.05
  20880. }
  20881. },
  20882. },
  20883. [
  20884. {
  20885. name: "Normal",
  20886. height: math.unit(6 + 10 / 12, "feet"),
  20887. default: true
  20888. },
  20889. ]
  20890. ))
  20891. characterMakers.push(() => makeCharacter(
  20892. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20893. {
  20894. front: {
  20895. height: math.unit(2 + 8 / 12, "feet"),
  20896. weight: math.unit(22, "lb"),
  20897. name: "Front",
  20898. image: {
  20899. source: "./media/characters/evelyn/front.svg",
  20900. extra: 208 / 180
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(2 + 8 / 12, "feet"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(5 + 9 / 12, "feet"),
  20917. weight: math.unit(139, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/inca/front.svg",
  20921. extra: 294 / 291,
  20922. bottom: 0.03
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(5 + 9 / 12, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(6 + 3 / 12, "feet"),
  20939. weight: math.unit(185, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/mera/front.svg",
  20943. extra: 291 / 277,
  20944. bottom: 0.03
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(6 + 3 / 12, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20958. {
  20959. front: {
  20960. height: math.unit(6 + 7 / 12, "feet"),
  20961. weight: math.unit(160, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/ceres/front.svg",
  20965. extra: 1023 / 950,
  20966. bottom: 0.027
  20967. }
  20968. },
  20969. back: {
  20970. height: math.unit(6 + 7 / 12, "feet"),
  20971. weight: math.unit(160, "lb"),
  20972. name: "Back",
  20973. image: {
  20974. source: "./media/characters/ceres/back.svg",
  20975. extra: 1023 / 950
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(6 + 7 / 12, "feet"),
  20983. default: true
  20984. },
  20985. ]
  20986. ))
  20987. characterMakers.push(() => makeCharacter(
  20988. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20989. {
  20990. front: {
  20991. height: math.unit(5 + 10 / 12, "feet"),
  20992. weight: math.unit(150, "lb"),
  20993. name: "Front",
  20994. image: {
  20995. source: "./media/characters/kris/front.svg",
  20996. extra: 885 / 803,
  20997. bottom: 0.03
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(5 + 10 / 12, "feet"),
  21005. default: true
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21011. {
  21012. front: {
  21013. height: math.unit(7, "feet"),
  21014. weight: math.unit(120, "kg"),
  21015. name: "Front",
  21016. image: {
  21017. source: "./media/characters/taluthus/front.svg",
  21018. extra: 903 / 833,
  21019. bottom: 0.015
  21020. }
  21021. },
  21022. },
  21023. [
  21024. {
  21025. name: "Normal",
  21026. height: math.unit(7, "feet"),
  21027. default: true
  21028. },
  21029. {
  21030. name: "Macro",
  21031. height: math.unit(300, "feet")
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21037. {
  21038. front: {
  21039. height: math.unit(5 + 9 / 12, "feet"),
  21040. weight: math.unit(145, "lb"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/dawn/front.svg",
  21044. extra: 2094 / 2016,
  21045. bottom: 0.025
  21046. }
  21047. },
  21048. back: {
  21049. height: math.unit(5 + 9 / 12, "feet"),
  21050. weight: math.unit(160, "lb"),
  21051. name: "Back",
  21052. image: {
  21053. source: "./media/characters/dawn/back.svg",
  21054. extra: 2112 / 2080,
  21055. bottom: 0.005
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(6 + 7 / 12, "feet"),
  21063. default: true
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21069. {
  21070. anthro: {
  21071. height: math.unit(8 + 3 / 12, "feet"),
  21072. weight: math.unit(450, "lb"),
  21073. name: "Anthro",
  21074. image: {
  21075. source: "./media/characters/arador/anthro.svg",
  21076. extra: 1835 / 1718,
  21077. bottom: 0.025
  21078. }
  21079. },
  21080. feral: {
  21081. height: math.unit(4, "feet"),
  21082. weight: math.unit(200, "lb"),
  21083. name: "Feral",
  21084. image: {
  21085. source: "./media/characters/arador/feral.svg",
  21086. extra: 1683 / 1514,
  21087. bottom: 0.07
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(8 + 3 / 12, "feet")
  21095. },
  21096. {
  21097. name: "Macro",
  21098. height: math.unit(82.5, "feet"),
  21099. default: true
  21100. },
  21101. ]
  21102. ))
  21103. characterMakers.push(() => makeCharacter(
  21104. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21105. {
  21106. front: {
  21107. height: math.unit(5 + 10 / 12, "feet"),
  21108. weight: math.unit(125, "lb"),
  21109. name: "Front",
  21110. image: {
  21111. source: "./media/characters/dharsi/front.svg",
  21112. extra: 716 / 630,
  21113. bottom: 0.035
  21114. }
  21115. },
  21116. },
  21117. [
  21118. {
  21119. name: "Nano",
  21120. height: math.unit(100, "nm")
  21121. },
  21122. {
  21123. name: "Micro",
  21124. height: math.unit(2, "inches")
  21125. },
  21126. {
  21127. name: "Normal",
  21128. height: math.unit(5 + 10 / 12, "feet"),
  21129. default: true
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(1000, "feet")
  21134. },
  21135. {
  21136. name: "Megamacro",
  21137. height: math.unit(10, "miles")
  21138. },
  21139. {
  21140. name: "Gigamacro",
  21141. height: math.unit(3000, "miles")
  21142. },
  21143. {
  21144. name: "Teramacro",
  21145. height: math.unit(500000, "miles")
  21146. },
  21147. {
  21148. name: "Teramacro+",
  21149. height: math.unit(30, "galaxies")
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(6, "feet"),
  21158. weight: math.unit(150, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/deathy/front.svg",
  21162. extra: 1552 / 1463,
  21163. bottom: 0.025
  21164. }
  21165. },
  21166. side: {
  21167. height: math.unit(6, "feet"),
  21168. weight: math.unit(150, "lb"),
  21169. name: "Side",
  21170. image: {
  21171. source: "./media/characters/deathy/side.svg",
  21172. extra: 1604 / 1455,
  21173. bottom: 0.025
  21174. }
  21175. },
  21176. back: {
  21177. height: math.unit(6, "feet"),
  21178. weight: math.unit(150, "lb"),
  21179. name: "Back",
  21180. image: {
  21181. source: "./media/characters/deathy/back.svg",
  21182. extra: 1580 / 1463,
  21183. bottom: 0.005
  21184. }
  21185. },
  21186. },
  21187. [
  21188. {
  21189. name: "Micro",
  21190. height: math.unit(5, "millimeters")
  21191. },
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(6 + 5 / 12, "feet"),
  21195. default: true
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21201. {
  21202. front: {
  21203. height: math.unit(16, "feet"),
  21204. weight: math.unit(4000, "lb"),
  21205. name: "Front",
  21206. image: {
  21207. source: "./media/characters/juniper/front.svg",
  21208. bottom: 0.04
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(16, "feet"),
  21216. default: true
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(6, "feet"),
  21225. weight: math.unit(150, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/hipster/front.svg",
  21229. extra: 1312 / 1209,
  21230. bottom: 0.025
  21231. }
  21232. },
  21233. back: {
  21234. height: math.unit(6, "feet"),
  21235. weight: math.unit(150, "lb"),
  21236. name: "Back",
  21237. image: {
  21238. source: "./media/characters/hipster/back.svg",
  21239. extra: 1281 / 1196,
  21240. bottom: 0.01
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Micro",
  21247. height: math.unit(1, "mm")
  21248. },
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(4, "inches"),
  21252. default: true
  21253. },
  21254. {
  21255. name: "Macro",
  21256. height: math.unit(500, "feet")
  21257. },
  21258. {
  21259. name: "Megamacro",
  21260. height: math.unit(1000, "miles")
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21266. {
  21267. front: {
  21268. height: math.unit(6, "feet"),
  21269. weight: math.unit(150, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/tendirmuldr/front.svg",
  21273. extra: 1878 / 1772,
  21274. bottom: 0.015
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Megamacro",
  21281. height: math.unit(1500, "miles"),
  21282. default: true
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21288. {
  21289. front: {
  21290. height: math.unit(14, "feet"),
  21291. weight: math.unit(12000, "lb"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/mort/front.svg",
  21295. extra: 365 / 318,
  21296. bottom: 0.01
  21297. }
  21298. },
  21299. side: {
  21300. height: math.unit(14, "feet"),
  21301. weight: math.unit(12000, "lb"),
  21302. name: "Side",
  21303. image: {
  21304. source: "./media/characters/mort/side.svg",
  21305. extra: 365 / 318,
  21306. bottom: 0.052
  21307. },
  21308. default: true
  21309. },
  21310. back: {
  21311. height: math.unit(14, "feet"),
  21312. weight: math.unit(12000, "lb"),
  21313. name: "Back",
  21314. image: {
  21315. source: "./media/characters/mort/back.svg",
  21316. extra: 371 / 332,
  21317. bottom: 0.18
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(14, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21331. {
  21332. front: {
  21333. height: math.unit(8, "feet"),
  21334. weight: math.unit(1, "ton"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/lycoa/front.svg",
  21338. extra: 1836/1728,
  21339. bottom: 81/1917
  21340. }
  21341. },
  21342. back: {
  21343. height: math.unit(8, "feet"),
  21344. weight: math.unit(1, "ton"),
  21345. name: "Back",
  21346. image: {
  21347. source: "./media/characters/lycoa/back.svg",
  21348. extra: 1785/1720,
  21349. bottom: 91/1876
  21350. }
  21351. },
  21352. head: {
  21353. height: math.unit(1.6243, "feet"),
  21354. name: "Head",
  21355. image: {
  21356. source: "./media/characters/lycoa/head.svg",
  21357. extra: 1011/782,
  21358. bottom: 0/1011
  21359. }
  21360. },
  21361. tailmaw: {
  21362. height: math.unit(1.9, "feet"),
  21363. name: "Tailmaw",
  21364. image: {
  21365. source: "./media/characters/lycoa/tailmaw.svg"
  21366. }
  21367. },
  21368. tentacles: {
  21369. height: math.unit(2.1, "feet"),
  21370. name: "Tentacles",
  21371. image: {
  21372. source: "./media/characters/lycoa/tentacles.svg"
  21373. }
  21374. },
  21375. dick: {
  21376. height: math.unit(1.73, "feet"),
  21377. name: "Dick",
  21378. image: {
  21379. source: "./media/characters/lycoa/dick.svg"
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(8, "feet"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Macro",
  21391. height: math.unit(30, "feet")
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21397. {
  21398. front: {
  21399. height: math.unit(4 + 2 / 12, "feet"),
  21400. weight: math.unit(70, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/naldara/front.svg",
  21404. extra: 1664/1387,
  21405. bottom: 81/1745
  21406. },
  21407. form: "anthro",
  21408. default: true
  21409. },
  21410. naga: {
  21411. height: math.unit(20, "feet"),
  21412. weight: math.unit(15000, "kg"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/naldara/naga.svg",
  21416. extra: 1590/1396,
  21417. bottom: 285/1875
  21418. },
  21419. form: "naga",
  21420. default: true
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(4 + 2 / 12, "feet"),
  21427. form: "anthro",
  21428. default: true
  21429. },
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(20, "feet"),
  21433. form: "naga",
  21434. default: true
  21435. },
  21436. ],
  21437. {
  21438. "anthro": {
  21439. name: "Anthro",
  21440. default: true
  21441. },
  21442. "naga": {
  21443. name: "Naga"
  21444. }
  21445. }
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(13 + 7 / 12, "feet"),
  21452. weight: math.unit(1500, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/briar/front.svg",
  21456. extra: 1223/1157,
  21457. bottom: 123/1346
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(13 + 7 / 12, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21471. {
  21472. side: {
  21473. height: math.unit(16, "feet"),
  21474. weight: math.unit(500, "lb"),
  21475. name: "Side",
  21476. image: {
  21477. source: "./media/characters/vanguard/side.svg",
  21478. extra: 1022/914,
  21479. bottom: 30/1052
  21480. }
  21481. },
  21482. sideAlt: {
  21483. height: math.unit(10, "feet"),
  21484. weight: math.unit(500, "lb"),
  21485. name: "Side (Alt)",
  21486. image: {
  21487. source: "./media/characters/vanguard/side-alt.svg",
  21488. extra: 502 / 425,
  21489. bottom: 0.087
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(17.71, "feet"),
  21497. default: true
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(7.5, "feet"),
  21506. weight: math.unit(2, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/artemis/work-safe-front.svg",
  21510. extra: 1192 / 1075,
  21511. bottom: 0.07
  21512. },
  21513. form: "work-safe",
  21514. default: true
  21515. },
  21516. frontNsfw: {
  21517. height: math.unit(7.5, "feet"),
  21518. weight: math.unit(2, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/artemis/calibrating-front.svg",
  21522. extra: 1192 / 1075,
  21523. bottom: 0.07
  21524. },
  21525. form: "calibrating",
  21526. default: true
  21527. },
  21528. frontNsfwer: {
  21529. height: math.unit(7.5, "feet"),
  21530. weight: math.unit(2, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/artemis/oversize-load-front.svg",
  21534. extra: 1192 / 1075,
  21535. bottom: 0.07
  21536. },
  21537. form: "oversize-load",
  21538. default: true
  21539. },
  21540. side: {
  21541. height: math.unit(7.5, "feet"),
  21542. weight: math.unit(2, "lb"),
  21543. name: "Side",
  21544. image: {
  21545. source: "./media/characters/artemis/work-safe-side.svg",
  21546. extra: 1192 / 1075,
  21547. bottom: 0.07
  21548. },
  21549. form: "work-safe"
  21550. },
  21551. sideNsfw: {
  21552. height: math.unit(7.5, "feet"),
  21553. weight: math.unit(2, "lb"),
  21554. name: "Side",
  21555. image: {
  21556. source: "./media/characters/artemis/calibrating-side.svg",
  21557. extra: 1192 / 1075,
  21558. bottom: 0.07
  21559. },
  21560. form: "calibrating"
  21561. },
  21562. sideNsfwer: {
  21563. height: math.unit(7.5, "feet"),
  21564. weight: math.unit(2, "lb"),
  21565. name: "Side",
  21566. image: {
  21567. source: "./media/characters/artemis/oversize-load-side.svg",
  21568. extra: 1192 / 1075,
  21569. bottom: 0.07
  21570. },
  21571. form: "oversize-load"
  21572. },
  21573. maw: {
  21574. height: math.unit(1.1, "feet"),
  21575. name: "Maw",
  21576. image: {
  21577. source: "./media/characters/artemis/maw.svg"
  21578. },
  21579. form: "work-safe"
  21580. },
  21581. stomach: {
  21582. height: math.unit(0.95, "feet"),
  21583. name: "Stomach",
  21584. image: {
  21585. source: "./media/characters/artemis/stomach.svg"
  21586. },
  21587. form: "work-safe"
  21588. },
  21589. dickCanine: {
  21590. height: math.unit(1, "feet"),
  21591. name: "Dick (Canine)",
  21592. image: {
  21593. source: "./media/characters/artemis/dick-canine.svg"
  21594. },
  21595. form: "calibrating"
  21596. },
  21597. dickEquine: {
  21598. height: math.unit(0.85, "feet"),
  21599. name: "Dick (Equine)",
  21600. image: {
  21601. source: "./media/characters/artemis/dick-equine.svg"
  21602. },
  21603. form: "calibrating"
  21604. },
  21605. dickExotic: {
  21606. height: math.unit(0.85, "feet"),
  21607. name: "Dick (Exotic)",
  21608. image: {
  21609. source: "./media/characters/artemis/dick-exotic.svg"
  21610. },
  21611. form: "calibrating"
  21612. },
  21613. dickCanineBigger: {
  21614. height: math.unit(1 * 1.33, "feet"),
  21615. name: "Dick (Canine)",
  21616. image: {
  21617. source: "./media/characters/artemis/dick-canine.svg"
  21618. },
  21619. form: "oversize-load"
  21620. },
  21621. dickEquineBigger: {
  21622. height: math.unit(0.85 * 1.33, "feet"),
  21623. name: "Dick (Equine)",
  21624. image: {
  21625. source: "./media/characters/artemis/dick-equine.svg"
  21626. },
  21627. form: "oversize-load"
  21628. },
  21629. dickExoticBigger: {
  21630. height: math.unit(0.85 * 1.33, "feet"),
  21631. name: "Dick (Exotic)",
  21632. image: {
  21633. source: "./media/characters/artemis/dick-exotic.svg"
  21634. },
  21635. form: "oversize-load"
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(7.5, "feet"),
  21642. form: "work-safe",
  21643. default: true
  21644. },
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(7.5, "feet"),
  21648. form: "calibrating",
  21649. default: true
  21650. },
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(7.5, "feet"),
  21654. form: "oversize-load",
  21655. default: true
  21656. },
  21657. {
  21658. name: "Enlarged",
  21659. height: math.unit(12, "feet"),
  21660. form: "work-safe",
  21661. },
  21662. {
  21663. name: "Enlarged",
  21664. height: math.unit(12, "feet"),
  21665. form: "calibrating",
  21666. },
  21667. {
  21668. name: "Enlarged",
  21669. height: math.unit(12, "feet"),
  21670. form: "oversize-load",
  21671. },
  21672. ],
  21673. {
  21674. "work-safe": {
  21675. name: "Work-Safe",
  21676. default: true
  21677. },
  21678. "calibrating": {
  21679. name: "Calibrating"
  21680. },
  21681. "oversize-load": {
  21682. name: "Oversize Load"
  21683. }
  21684. }
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(5 + 3 / 12, "feet"),
  21691. weight: math.unit(160, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/kira/front.svg",
  21695. extra: 906 / 786,
  21696. bottom: 0.01
  21697. }
  21698. },
  21699. back: {
  21700. height: math.unit(5 + 3 / 12, "feet"),
  21701. weight: math.unit(160, "lb"),
  21702. name: "Back",
  21703. image: {
  21704. source: "./media/characters/kira/back.svg",
  21705. extra: 882 / 757,
  21706. bottom: 0.005
  21707. }
  21708. },
  21709. frontDressed: {
  21710. height: math.unit(5 + 3 / 12, "feet"),
  21711. weight: math.unit(160, "lb"),
  21712. name: "Front (Dressed)",
  21713. image: {
  21714. source: "./media/characters/kira/front-dressed.svg",
  21715. extra: 906 / 786,
  21716. bottom: 0.01
  21717. }
  21718. },
  21719. beans: {
  21720. height: math.unit(0.92, "feet"),
  21721. name: "Beans",
  21722. image: {
  21723. source: "./media/characters/kira/beans.svg"
  21724. }
  21725. },
  21726. },
  21727. [
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(5 + 3 / 12, "feet"),
  21731. default: true
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(5 + 4 / 12, "feet"),
  21740. weight: math.unit(145, "lb"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/scramble/front.svg",
  21744. extra: 763 / 727,
  21745. bottom: 0.05
  21746. }
  21747. },
  21748. back: {
  21749. height: math.unit(5 + 4 / 12, "feet"),
  21750. weight: math.unit(145, "lb"),
  21751. name: "Back",
  21752. image: {
  21753. source: "./media/characters/scramble/back.svg",
  21754. extra: 826 / 737,
  21755. bottom: 0.002
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(5 + 4 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21769. {
  21770. side: {
  21771. height: math.unit(6 + 2 / 12, "feet"),
  21772. weight: math.unit(190, "lb"),
  21773. name: "Side",
  21774. image: {
  21775. source: "./media/characters/biscuit/side.svg",
  21776. extra: 858 / 791,
  21777. bottom: 0.044
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(6 + 2 / 12, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(5 + 2 / 12, "feet"),
  21794. weight: math.unit(120, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/poffin/front.svg",
  21798. extra: 786 / 680,
  21799. bottom: 0.005
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(5 + 2 / 12, "feet"),
  21807. default: true
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21813. {
  21814. front: {
  21815. height: math.unit(6 + 3 / 12, "feet"),
  21816. weight: math.unit(519, "lb"),
  21817. name: "Front",
  21818. image: {
  21819. source: "./media/characters/dhari/front.svg",
  21820. extra: 1048 / 946,
  21821. bottom: 0.015
  21822. }
  21823. },
  21824. back: {
  21825. height: math.unit(6 + 3 / 12, "feet"),
  21826. weight: math.unit(519, "lb"),
  21827. name: "Back",
  21828. image: {
  21829. source: "./media/characters/dhari/back.svg",
  21830. extra: 1048 / 931,
  21831. bottom: 0.005
  21832. }
  21833. },
  21834. frontDressed: {
  21835. height: math.unit(6 + 3 / 12, "feet"),
  21836. weight: math.unit(519, "lb"),
  21837. name: "Front (Dressed)",
  21838. image: {
  21839. source: "./media/characters/dhari/front-dressed.svg",
  21840. extra: 1713 / 1546,
  21841. bottom: 0.02
  21842. }
  21843. },
  21844. backDressed: {
  21845. height: math.unit(6 + 3 / 12, "feet"),
  21846. weight: math.unit(519, "lb"),
  21847. name: "Back (Dressed)",
  21848. image: {
  21849. source: "./media/characters/dhari/back-dressed.svg",
  21850. extra: 1699 / 1537,
  21851. bottom: 0.01
  21852. }
  21853. },
  21854. maw: {
  21855. height: math.unit(0.95, "feet"),
  21856. name: "Maw",
  21857. image: {
  21858. source: "./media/characters/dhari/maw.svg"
  21859. }
  21860. },
  21861. wereFront: {
  21862. height: math.unit(12 + 8 / 12, "feet"),
  21863. weight: math.unit(4000, "lb"),
  21864. name: "Front (Were)",
  21865. image: {
  21866. source: "./media/characters/dhari/were-front.svg",
  21867. extra: 1065 / 969,
  21868. bottom: 0.015
  21869. }
  21870. },
  21871. wereBack: {
  21872. height: math.unit(12 + 8 / 12, "feet"),
  21873. weight: math.unit(4000, "lb"),
  21874. name: "Back (Were)",
  21875. image: {
  21876. source: "./media/characters/dhari/were-back.svg",
  21877. extra: 1065 / 969,
  21878. bottom: 0.012
  21879. }
  21880. },
  21881. wereMaw: {
  21882. height: math.unit(0.625, "meters"),
  21883. name: "Maw (Were)",
  21884. image: {
  21885. source: "./media/characters/dhari/were-maw.svg"
  21886. }
  21887. },
  21888. },
  21889. [
  21890. {
  21891. name: "Normal",
  21892. height: math.unit(6 + 3 / 12, "feet"),
  21893. default: true
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21899. {
  21900. anthro: {
  21901. height: math.unit(5 + 7 / 12, "feet"),
  21902. weight: math.unit(175, "lb"),
  21903. name: "Anthro",
  21904. image: {
  21905. source: "./media/characters/rena-dyne/anthro.svg",
  21906. extra: 1849 / 1785,
  21907. bottom: 0.005
  21908. }
  21909. },
  21910. taur: {
  21911. height: math.unit(15 + 6 / 12, "feet"),
  21912. weight: math.unit(8000, "lb"),
  21913. name: "Taur",
  21914. image: {
  21915. source: "./media/characters/rena-dyne/taur.svg",
  21916. extra: 2315 / 2234,
  21917. bottom: 0.033
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(5 + 7 / 12, "feet"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(8, "feet"),
  21934. weight: math.unit(600, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/weremeep/front.svg",
  21938. extra: 970/849,
  21939. bottom: 7/977
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(8, "feet"),
  21947. default: true
  21948. },
  21949. {
  21950. name: "Lorg",
  21951. height: math.unit(12, "feet")
  21952. },
  21953. {
  21954. name: "Oh Lawd She Comin'",
  21955. height: math.unit(20, "feet")
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21961. {
  21962. front: {
  21963. height: math.unit(4, "feet"),
  21964. weight: math.unit(90, "lb"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/reza/front.svg",
  21968. extra: 1183 / 1111,
  21969. bottom: 0.017
  21970. }
  21971. },
  21972. back: {
  21973. height: math.unit(4, "feet"),
  21974. weight: math.unit(90, "lb"),
  21975. name: "Back",
  21976. image: {
  21977. source: "./media/characters/reza/back.svg",
  21978. extra: 1183 / 1111,
  21979. bottom: 0.01
  21980. }
  21981. },
  21982. drake: {
  21983. height: math.unit(30, "feet"),
  21984. weight: math.unit(246960, "lb"),
  21985. name: "Drake",
  21986. image: {
  21987. source: "./media/characters/reza/drake.svg",
  21988. extra: 2350 / 2024,
  21989. bottom: 60.7 / 2403
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Normal",
  21996. height: math.unit(4, "feet"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22003. {
  22004. side: {
  22005. height: math.unit(15, "feet"),
  22006. weight: math.unit(14, "tons"),
  22007. name: "Side",
  22008. image: {
  22009. source: "./media/characters/athea/side.svg",
  22010. extra: 960 / 540,
  22011. bottom: 0.003
  22012. }
  22013. },
  22014. sitting: {
  22015. height: math.unit(6 * 2.85, "feet"),
  22016. weight: math.unit(14, "tons"),
  22017. name: "Sitting",
  22018. image: {
  22019. source: "./media/characters/athea/sitting.svg",
  22020. extra: 621 / 581,
  22021. bottom: 0.075
  22022. }
  22023. },
  22024. maw: {
  22025. height: math.unit(7.59498031496063, "feet"),
  22026. name: "Maw",
  22027. image: {
  22028. source: "./media/characters/athea/maw.svg"
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Lap Cat",
  22035. height: math.unit(2.5, "feet")
  22036. },
  22037. {
  22038. name: "Minimacro",
  22039. height: math.unit(15, "feet"),
  22040. default: true
  22041. },
  22042. {
  22043. name: "Macro",
  22044. height: math.unit(120, "feet")
  22045. },
  22046. {
  22047. name: "Macro+",
  22048. height: math.unit(640, "feet")
  22049. },
  22050. {
  22051. name: "Colossus",
  22052. height: math.unit(2.2, "miles")
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22058. {
  22059. front: {
  22060. height: math.unit(8 + 8 / 12, "feet"),
  22061. weight: math.unit(130, "kg"),
  22062. name: "Front",
  22063. image: {
  22064. source: "./media/characters/seroko/front.svg",
  22065. extra: 1385 / 1280,
  22066. bottom: 0.025
  22067. }
  22068. },
  22069. back: {
  22070. height: math.unit(8 + 8 / 12, "feet"),
  22071. weight: math.unit(130, "kg"),
  22072. name: "Back",
  22073. image: {
  22074. source: "./media/characters/seroko/back.svg",
  22075. extra: 1369 / 1238,
  22076. bottom: 0.018
  22077. }
  22078. },
  22079. frontDressed: {
  22080. height: math.unit(8 + 8 / 12, "feet"),
  22081. weight: math.unit(130, "kg"),
  22082. name: "Front (Dressed)",
  22083. image: {
  22084. source: "./media/characters/seroko/front-dressed.svg",
  22085. extra: 1366 / 1275,
  22086. bottom: 0.03
  22087. }
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Normal",
  22093. height: math.unit(8 + 8 / 12, "feet"),
  22094. default: true
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(5.5, "feet"),
  22103. weight: math.unit(160, "lb"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/quatzi/front.svg",
  22107. extra: 2346 / 2242,
  22108. bottom: 0.015
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Normal",
  22115. height: math.unit(5.5, "feet"),
  22116. default: true
  22117. },
  22118. {
  22119. name: "Big",
  22120. height: math.unit(7.7, "feet")
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(5 + 11 / 12, "feet"),
  22129. weight: math.unit(180, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/sen/front.svg",
  22133. extra: 1321 / 1254,
  22134. bottom: 0.015
  22135. }
  22136. },
  22137. side: {
  22138. height: math.unit(5 + 11 / 12, "feet"),
  22139. weight: math.unit(180, "lb"),
  22140. name: "Side",
  22141. image: {
  22142. source: "./media/characters/sen/side.svg",
  22143. extra: 1321 / 1254,
  22144. bottom: 0.007
  22145. }
  22146. },
  22147. back: {
  22148. height: math.unit(5 + 11 / 12, "feet"),
  22149. weight: math.unit(180, "lb"),
  22150. name: "Back",
  22151. image: {
  22152. source: "./media/characters/sen/back.svg",
  22153. extra: 1321 / 1254
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(5 + 11 / 12, "feet"),
  22161. default: true
  22162. },
  22163. ]
  22164. ))
  22165. characterMakers.push(() => makeCharacter(
  22166. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22167. {
  22168. front: {
  22169. height: math.unit(166.6, "cm"),
  22170. weight: math.unit(66.6, "kg"),
  22171. name: "Front",
  22172. image: {
  22173. source: "./media/characters/fruity/front.svg",
  22174. extra: 1510 / 1386,
  22175. bottom: 0.04
  22176. }
  22177. },
  22178. back: {
  22179. height: math.unit(166.6, "cm"),
  22180. weight: math.unit(66.6, "lb"),
  22181. name: "Back",
  22182. image: {
  22183. source: "./media/characters/fruity/back.svg",
  22184. extra: 1563 / 1435,
  22185. bottom: 0.005
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(166.6, "cm"),
  22193. default: true
  22194. },
  22195. {
  22196. name: "Demonic",
  22197. height: math.unit(166.6, "feet")
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22203. {
  22204. side: {
  22205. height: math.unit(10, "feet"),
  22206. weight: math.unit(500, "lb"),
  22207. name: "Side",
  22208. image: {
  22209. source: "./media/characters/zost/side.svg",
  22210. extra: 2870/2533,
  22211. bottom: 252/3122
  22212. }
  22213. },
  22214. mawFront: {
  22215. height: math.unit(1.08, "meters"),
  22216. name: "Maw (Front)",
  22217. image: {
  22218. source: "./media/characters/zost/maw-front.svg"
  22219. }
  22220. },
  22221. mawSide: {
  22222. height: math.unit(2.66, "feet"),
  22223. name: "Maw (Side)",
  22224. image: {
  22225. source: "./media/characters/zost/maw-side.svg"
  22226. }
  22227. },
  22228. wingspan: {
  22229. height: math.unit(7.4, "feet"),
  22230. name: "Wingspan",
  22231. image: {
  22232. source: "./media/characters/zost/wingspan.svg"
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(10, "feet"),
  22240. default: true
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22246. {
  22247. front: {
  22248. height: math.unit(5 + 4 / 12, "feet"),
  22249. weight: math.unit(120, "lb"),
  22250. name: "Front",
  22251. image: {
  22252. source: "./media/characters/luci/front.svg",
  22253. extra: 1985 / 1884,
  22254. bottom: 0.04
  22255. }
  22256. },
  22257. back: {
  22258. height: math.unit(5 + 4 / 12, "feet"),
  22259. weight: math.unit(120, "lb"),
  22260. name: "Back",
  22261. image: {
  22262. source: "./media/characters/luci/back.svg",
  22263. extra: 1892 / 1791,
  22264. bottom: 0.002
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(5 + 4 / 12, "feet"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(1500, "feet"),
  22281. weight: math.unit(3.8e6, "tons"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/2th/front.svg",
  22285. extra: 3489 / 3350,
  22286. bottom: 0.1
  22287. }
  22288. },
  22289. foot: {
  22290. height: math.unit(461, "feet"),
  22291. name: "Foot",
  22292. image: {
  22293. source: "./media/characters/2th/foot.svg"
  22294. }
  22295. },
  22296. },
  22297. [
  22298. {
  22299. name: "\"Micro\"",
  22300. height: math.unit(15 + 7 / 12, "feet")
  22301. },
  22302. {
  22303. name: "Normal",
  22304. height: math.unit(1500, "feet"),
  22305. default: true
  22306. },
  22307. {
  22308. name: "Macro",
  22309. height: math.unit(5000, "feet")
  22310. },
  22311. {
  22312. name: "Megamacro",
  22313. height: math.unit(15, "miles")
  22314. },
  22315. {
  22316. name: "Gigamacro",
  22317. height: math.unit(4000, "miles")
  22318. },
  22319. {
  22320. name: "Galactic",
  22321. height: math.unit(50, "AU")
  22322. },
  22323. ]
  22324. ))
  22325. characterMakers.push(() => makeCharacter(
  22326. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22327. {
  22328. front: {
  22329. height: math.unit(5 + 6 / 12, "feet"),
  22330. weight: math.unit(220, "lb"),
  22331. name: "Front",
  22332. image: {
  22333. source: "./media/characters/amethyst/front.svg",
  22334. extra: 2078 / 2040,
  22335. bottom: 0.045
  22336. }
  22337. },
  22338. back: {
  22339. height: math.unit(5 + 6 / 12, "feet"),
  22340. weight: math.unit(220, "lb"),
  22341. name: "Back",
  22342. image: {
  22343. source: "./media/characters/amethyst/back.svg",
  22344. extra: 2021 / 1989,
  22345. bottom: 0.02
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(5 + 6 / 12, "feet"),
  22353. default: true
  22354. },
  22355. ]
  22356. ))
  22357. characterMakers.push(() => makeCharacter(
  22358. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22359. {
  22360. front: {
  22361. height: math.unit(4 + 11 / 12, "feet"),
  22362. weight: math.unit(120, "lb"),
  22363. name: "Front",
  22364. image: {
  22365. source: "./media/characters/yumi-akiyama/front.svg",
  22366. extra: 1327 / 1235,
  22367. bottom: 0.02
  22368. }
  22369. },
  22370. back: {
  22371. height: math.unit(4 + 11 / 12, "feet"),
  22372. weight: math.unit(120, "lb"),
  22373. name: "Back",
  22374. image: {
  22375. source: "./media/characters/yumi-akiyama/back.svg",
  22376. extra: 1287 / 1245,
  22377. bottom: 0.002
  22378. }
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Galactic",
  22384. height: math.unit(50, "galaxies"),
  22385. default: true
  22386. },
  22387. {
  22388. name: "Universal",
  22389. height: math.unit(100, "universes")
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(8, "feet"),
  22398. weight: math.unit(500, "lb"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/rifter-yrmori/front.svg",
  22402. extra: 1180 / 1125,
  22403. bottom: 0.02
  22404. }
  22405. },
  22406. back: {
  22407. height: math.unit(8, "feet"),
  22408. weight: math.unit(500, "lb"),
  22409. name: "Back",
  22410. image: {
  22411. source: "./media/characters/rifter-yrmori/back.svg",
  22412. extra: 1190 / 1145,
  22413. bottom: 0.001
  22414. }
  22415. },
  22416. wings: {
  22417. height: math.unit(7.75, "feet"),
  22418. weight: math.unit(500, "lb"),
  22419. name: "Wings",
  22420. image: {
  22421. source: "./media/characters/rifter-yrmori/wings.svg",
  22422. extra: 1357 / 1285
  22423. }
  22424. },
  22425. maw: {
  22426. height: math.unit(0.8, "feet"),
  22427. name: "Maw",
  22428. image: {
  22429. source: "./media/characters/rifter-yrmori/maw.svg"
  22430. }
  22431. },
  22432. mawfront: {
  22433. height: math.unit(1.45, "feet"),
  22434. name: "Maw (Front)",
  22435. image: {
  22436. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "Normal",
  22443. height: math.unit(8, "feet"),
  22444. default: true
  22445. },
  22446. {
  22447. name: "Macro",
  22448. height: math.unit(42, "meters")
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22454. {
  22455. were: {
  22456. height: math.unit(25 + 6 / 12, "feet"),
  22457. weight: math.unit(10000, "lb"),
  22458. name: "Were",
  22459. image: {
  22460. source: "./media/characters/tahajin/were.svg",
  22461. extra: 801 / 770,
  22462. bottom: 0.042
  22463. }
  22464. },
  22465. aquatic: {
  22466. height: math.unit(6 + 4 / 12, "feet"),
  22467. weight: math.unit(160, "lb"),
  22468. name: "Aquatic",
  22469. image: {
  22470. source: "./media/characters/tahajin/aquatic.svg",
  22471. extra: 572 / 542,
  22472. bottom: 0.04
  22473. }
  22474. },
  22475. chow: {
  22476. height: math.unit(8 + 11 / 12, "feet"),
  22477. weight: math.unit(450, "lb"),
  22478. name: "Chow",
  22479. image: {
  22480. source: "./media/characters/tahajin/chow.svg",
  22481. extra: 660 / 640,
  22482. bottom: 0.015
  22483. }
  22484. },
  22485. demiNaga: {
  22486. height: math.unit(6 + 8 / 12, "feet"),
  22487. weight: math.unit(300, "lb"),
  22488. name: "Demi Naga",
  22489. image: {
  22490. source: "./media/characters/tahajin/demi-naga.svg",
  22491. extra: 643 / 615,
  22492. bottom: 0.1
  22493. }
  22494. },
  22495. data: {
  22496. height: math.unit(5, "inches"),
  22497. weight: math.unit(0.1, "lb"),
  22498. name: "Data",
  22499. image: {
  22500. source: "./media/characters/tahajin/data.svg"
  22501. }
  22502. },
  22503. fluu: {
  22504. height: math.unit(5 + 7 / 12, "feet"),
  22505. weight: math.unit(140, "lb"),
  22506. name: "Fluu",
  22507. image: {
  22508. source: "./media/characters/tahajin/fluu.svg",
  22509. extra: 628 / 592,
  22510. bottom: 0.02
  22511. }
  22512. },
  22513. starWarrior: {
  22514. height: math.unit(4 + 5 / 12, "feet"),
  22515. weight: math.unit(50, "lb"),
  22516. name: "Star Warrior",
  22517. image: {
  22518. source: "./media/characters/tahajin/star-warrior.svg"
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(25 + 6 / 12, "feet"),
  22526. default: true
  22527. },
  22528. ]
  22529. ))
  22530. characterMakers.push(() => makeCharacter(
  22531. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22532. {
  22533. front: {
  22534. height: math.unit(8, "feet"),
  22535. weight: math.unit(350, "lb"),
  22536. name: "Front",
  22537. image: {
  22538. source: "./media/characters/gabira/front.svg",
  22539. extra: 1261/1154,
  22540. bottom: 51/1312
  22541. }
  22542. },
  22543. back: {
  22544. height: math.unit(8, "feet"),
  22545. weight: math.unit(350, "lb"),
  22546. name: "Back",
  22547. image: {
  22548. source: "./media/characters/gabira/back.svg",
  22549. extra: 1265/1163,
  22550. bottom: 46/1311
  22551. }
  22552. },
  22553. head: {
  22554. height: math.unit(2.85, "feet"),
  22555. name: "Head",
  22556. image: {
  22557. source: "./media/characters/gabira/head.svg"
  22558. }
  22559. },
  22560. },
  22561. [
  22562. {
  22563. name: "Normal",
  22564. height: math.unit(8, "feet"),
  22565. default: true
  22566. },
  22567. ]
  22568. ))
  22569. characterMakers.push(() => makeCharacter(
  22570. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22571. {
  22572. front: {
  22573. height: math.unit(5 + 3 / 12, "feet"),
  22574. weight: math.unit(137, "lb"),
  22575. name: "Front",
  22576. image: {
  22577. source: "./media/characters/sasha-katraine/front.svg",
  22578. extra: 1745/1694,
  22579. bottom: 37/1782
  22580. }
  22581. },
  22582. back: {
  22583. height: math.unit(5 + 3 / 12, "feet"),
  22584. weight: math.unit(137, "lb"),
  22585. name: "Back",
  22586. image: {
  22587. source: "./media/characters/sasha-katraine/back.svg",
  22588. extra: 1776/1699,
  22589. bottom: 26/1802
  22590. }
  22591. },
  22592. },
  22593. [
  22594. {
  22595. name: "Micro",
  22596. height: math.unit(5, "inches")
  22597. },
  22598. {
  22599. name: "Normal",
  22600. height: math.unit(5 + 3 / 12, "feet"),
  22601. default: true
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22607. {
  22608. side: {
  22609. height: math.unit(4, "inches"),
  22610. weight: math.unit(200, "grams"),
  22611. name: "Side",
  22612. image: {
  22613. source: "./media/characters/der/side.svg",
  22614. extra: 719 / 400,
  22615. bottom: 30.6 / 749.9187
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Micro",
  22622. height: math.unit(4, "inches"),
  22623. default: true
  22624. },
  22625. ]
  22626. ))
  22627. characterMakers.push(() => makeCharacter(
  22628. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22629. {
  22630. side: {
  22631. height: math.unit(30, "meters"),
  22632. weight: math.unit(700, "tonnes"),
  22633. name: "Side",
  22634. image: {
  22635. source: "./media/characters/fixerdragon/side.svg",
  22636. extra: (1293.0514 - 116.03) / 1106.86,
  22637. bottom: 116.03 / 1293.0514
  22638. }
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Planck",
  22644. height: math.unit(1.6e-35, "meters")
  22645. },
  22646. {
  22647. name: "Micro",
  22648. height: math.unit(0.4, "meters")
  22649. },
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(30, "meters"),
  22653. default: true
  22654. },
  22655. {
  22656. name: "Megamacro",
  22657. height: math.unit(1.2, "megameters")
  22658. },
  22659. {
  22660. name: "Teramacro",
  22661. height: math.unit(130, "terameters")
  22662. },
  22663. {
  22664. name: "Yottamacro",
  22665. height: math.unit(6200, "yottameters")
  22666. },
  22667. ]
  22668. ));
  22669. characterMakers.push(() => makeCharacter(
  22670. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22671. {
  22672. front: {
  22673. height: math.unit(8, "feet"),
  22674. weight: math.unit(250, "lb"),
  22675. name: "Front",
  22676. image: {
  22677. source: "./media/characters/kite/front.svg",
  22678. extra: 2796 / 2659,
  22679. bottom: 0.002
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Normal",
  22686. height: math.unit(8, "feet"),
  22687. default: true
  22688. },
  22689. {
  22690. name: "Macro",
  22691. height: math.unit(360, "feet")
  22692. },
  22693. {
  22694. name: "Megamacro",
  22695. height: math.unit(1500, "feet")
  22696. },
  22697. ]
  22698. ))
  22699. characterMakers.push(() => makeCharacter(
  22700. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22701. {
  22702. front: {
  22703. height: math.unit(5 + 11/12, "feet"),
  22704. weight: math.unit(170, "lb"),
  22705. name: "Front",
  22706. image: {
  22707. source: "./media/characters/poojawa-vynar/front.svg",
  22708. extra: 1735/1585,
  22709. bottom: 96/1831
  22710. }
  22711. },
  22712. back: {
  22713. height: math.unit(5 + 11/12, "feet"),
  22714. weight: math.unit(170, "lb"),
  22715. name: "Back",
  22716. image: {
  22717. source: "./media/characters/poojawa-vynar/back.svg",
  22718. extra: 1749/1607,
  22719. bottom: 28/1777
  22720. }
  22721. },
  22722. male: {
  22723. height: math.unit(5 + 11/12, "feet"),
  22724. weight: math.unit(170, "lb"),
  22725. name: "Male",
  22726. image: {
  22727. source: "./media/characters/poojawa-vynar/male.svg",
  22728. extra: 1855/1713,
  22729. bottom: 63/1918
  22730. }
  22731. },
  22732. taur: {
  22733. height: math.unit(5 + 11/12, "feet"),
  22734. weight: math.unit(170, "lb"),
  22735. name: "Taur",
  22736. image: {
  22737. source: "./media/characters/poojawa-vynar/taur.svg",
  22738. extra: 1151/1059,
  22739. bottom: 356/1507
  22740. }
  22741. },
  22742. frontDressed: {
  22743. height: math.unit(5 + 11/12, "feet"),
  22744. weight: math.unit(170, "lb"),
  22745. name: "Front (Dressed)",
  22746. image: {
  22747. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22748. extra: 1735/1585,
  22749. bottom: 96/1831
  22750. }
  22751. },
  22752. backDressed: {
  22753. height: math.unit(5 + 11/12, "feet"),
  22754. weight: math.unit(170, "lb"),
  22755. name: "Back (Dressed)",
  22756. image: {
  22757. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22758. extra: 1749/1607,
  22759. bottom: 28/1777
  22760. }
  22761. },
  22762. maleDressed: {
  22763. height: math.unit(5 + 11/12, "feet"),
  22764. weight: math.unit(170, "lb"),
  22765. name: "Male (Dressed)",
  22766. image: {
  22767. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22768. extra: 1855/1713,
  22769. bottom: 63/1918
  22770. }
  22771. },
  22772. taurDressed: {
  22773. height: math.unit(5 + 11/12, "feet"),
  22774. weight: math.unit(170, "lb"),
  22775. name: "Taur (Dressed)",
  22776. image: {
  22777. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22778. extra: 1151/1059,
  22779. bottom: 356/1507
  22780. }
  22781. },
  22782. maw: {
  22783. height: math.unit(1.46, "feet"),
  22784. name: "Maw",
  22785. image: {
  22786. source: "./media/characters/poojawa-vynar/maw.svg"
  22787. }
  22788. },
  22789. head: {
  22790. height: math.unit(2.34, "feet"),
  22791. name: "Head",
  22792. image: {
  22793. source: "./media/characters/poojawa-vynar/head.svg"
  22794. }
  22795. },
  22796. paw: {
  22797. height: math.unit(1.61, "feet"),
  22798. name: "Paw",
  22799. image: {
  22800. source: "./media/characters/poojawa-vynar/paw.svg"
  22801. }
  22802. },
  22803. pawToering: {
  22804. height: math.unit(1.72, "feet"),
  22805. name: "Paw (Toering)",
  22806. image: {
  22807. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22808. }
  22809. },
  22810. toering: {
  22811. height: math.unit(2.9, "inches"),
  22812. name: "Toering",
  22813. image: {
  22814. source: "./media/characters/poojawa-vynar/toering.svg"
  22815. }
  22816. },
  22817. shaft: {
  22818. height: math.unit(0.625, "feet"),
  22819. name: "Shaft",
  22820. image: {
  22821. source: "./media/characters/poojawa-vynar/shaft.svg"
  22822. }
  22823. },
  22824. spade: {
  22825. height: math.unit(0.42, "feet"),
  22826. name: "Spade",
  22827. image: {
  22828. source: "./media/characters/poojawa-vynar/spade.svg"
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Shortstack",
  22835. height: math.unit(4, "feet")
  22836. },
  22837. {
  22838. name: "Normal",
  22839. height: math.unit(5 + 11 / 12, "feet"),
  22840. default: true
  22841. },
  22842. {
  22843. name: "Tauric",
  22844. height: math.unit(4, "meters")
  22845. },
  22846. ]
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22850. {
  22851. front: {
  22852. height: math.unit(293, "meters"),
  22853. weight: math.unit(70400, "tons"),
  22854. name: "Front",
  22855. image: {
  22856. source: "./media/characters/violette/front.svg",
  22857. extra: 1227 / 1180,
  22858. bottom: 0.005
  22859. }
  22860. },
  22861. back: {
  22862. height: math.unit(293, "meters"),
  22863. weight: math.unit(70400, "tons"),
  22864. name: "Back",
  22865. image: {
  22866. source: "./media/characters/violette/back.svg",
  22867. extra: 1227 / 1180,
  22868. bottom: 0.005
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(293, "meters"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(1050, "feet"),
  22885. weight: math.unit(200000, "tons"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/alessandra/front.svg",
  22889. extra: 960 / 912,
  22890. bottom: 0.06
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Macro",
  22897. height: math.unit(1050, "feet")
  22898. },
  22899. {
  22900. name: "Macro+",
  22901. height: math.unit(900, "meters"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(5, "feet"),
  22911. weight: math.unit(187, "lb"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/person/front.svg",
  22915. extra: 3087 / 2945,
  22916. bottom: 91 / 3181
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Micro",
  22923. height: math.unit(3, "inches")
  22924. },
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(5, "feet"),
  22928. default: true
  22929. },
  22930. {
  22931. name: "Macro",
  22932. height: math.unit(90, "feet")
  22933. },
  22934. {
  22935. name: "Max Size",
  22936. height: math.unit(280, "feet")
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22942. {
  22943. front: {
  22944. height: math.unit(4.5, "meters"),
  22945. weight: math.unit(3200, "lb"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/ty/front.svg",
  22949. extra: 1038 / 960,
  22950. bottom: 31.156 / 1068
  22951. }
  22952. },
  22953. back: {
  22954. height: math.unit(4.5, "meters"),
  22955. weight: math.unit(3200, "lb"),
  22956. name: "Back",
  22957. image: {
  22958. source: "./media/characters/ty/back.svg",
  22959. extra: 1044 / 966,
  22960. bottom: 7.48 / 1049
  22961. }
  22962. },
  22963. },
  22964. [
  22965. {
  22966. name: "Normal",
  22967. height: math.unit(4.5, "meters"),
  22968. default: true
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22974. {
  22975. front: {
  22976. height: math.unit(5 + 4 / 12, "feet"),
  22977. weight: math.unit(115, "lb"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/rocky/front.svg",
  22981. extra: 1012 / 975,
  22982. bottom: 54 / 1066
  22983. }
  22984. },
  22985. },
  22986. [
  22987. {
  22988. name: "Normal",
  22989. height: math.unit(5 + 4 / 12, "feet"),
  22990. default: true
  22991. },
  22992. ]
  22993. ))
  22994. characterMakers.push(() => makeCharacter(
  22995. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22996. {
  22997. upright: {
  22998. height: math.unit(6, "meters"),
  22999. weight: math.unit(4000, "kg"),
  23000. name: "Upright",
  23001. image: {
  23002. source: "./media/characters/ruin/upright.svg",
  23003. extra: 668 / 661,
  23004. bottom: 42 / 799.8396
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Normal",
  23011. height: math.unit(6, "meters"),
  23012. default: true
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23018. {
  23019. front: {
  23020. height: math.unit(5, "feet"),
  23021. weight: math.unit(106, "lb"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/robin/front.svg",
  23025. extra: 862 / 799,
  23026. bottom: 42.4 / 914.8856
  23027. }
  23028. },
  23029. },
  23030. [
  23031. {
  23032. name: "Normal",
  23033. height: math.unit(5, "feet"),
  23034. default: true
  23035. },
  23036. ]
  23037. ))
  23038. characterMakers.push(() => makeCharacter(
  23039. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23040. {
  23041. side: {
  23042. height: math.unit(3, "feet"),
  23043. weight: math.unit(225, "lb"),
  23044. name: "Side",
  23045. image: {
  23046. source: "./media/characters/saian/side.svg",
  23047. extra: 566 / 356,
  23048. bottom: 79.7 / 643
  23049. }
  23050. },
  23051. maw: {
  23052. height: math.unit(2.85, "feet"),
  23053. name: "Maw",
  23054. image: {
  23055. source: "./media/characters/saian/maw.svg"
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(3, "feet"),
  23063. default: true
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23069. {
  23070. side: {
  23071. height: math.unit(8, "feet"),
  23072. weight: math.unit(300, "lb"),
  23073. name: "Side",
  23074. image: {
  23075. source: "./media/characters/equus-silvermane/side.svg",
  23076. extra: 2176 / 2050,
  23077. bottom: 65.7 / 2245
  23078. }
  23079. },
  23080. front: {
  23081. height: math.unit(8, "feet"),
  23082. weight: math.unit(300, "lb"),
  23083. name: "Front",
  23084. image: {
  23085. source: "./media/characters/equus-silvermane/front.svg",
  23086. extra: 4633 / 4400,
  23087. bottom: 71.3 / 4706.915
  23088. }
  23089. },
  23090. sideStepping: {
  23091. height: math.unit(8, "feet"),
  23092. weight: math.unit(300, "lb"),
  23093. name: "Side (Stepping)",
  23094. image: {
  23095. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23096. extra: 1968 / 1860,
  23097. bottom: 16.4 / 1989
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Normal",
  23104. height: math.unit(8, "feet")
  23105. },
  23106. {
  23107. name: "Minimacro",
  23108. height: math.unit(75, "feet"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Macro",
  23113. height: math.unit(150, "feet")
  23114. },
  23115. {
  23116. name: "Macro+",
  23117. height: math.unit(1000, "feet")
  23118. },
  23119. {
  23120. name: "Megamacro",
  23121. height: math.unit(1, "mile")
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23127. {
  23128. side: {
  23129. height: math.unit(20, "feet"),
  23130. weight: math.unit(30000, "kg"),
  23131. name: "Side",
  23132. image: {
  23133. source: "./media/characters/windar/side.svg",
  23134. extra: 1491 / 1248,
  23135. bottom: 82.56 / 1568
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Normal",
  23142. height: math.unit(20, "feet"),
  23143. default: true
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23149. {
  23150. side: {
  23151. height: math.unit(15.66, "feet"),
  23152. weight: math.unit(150, "lb"),
  23153. name: "Side",
  23154. image: {
  23155. source: "./media/characters/melody/side.svg",
  23156. extra: 1097 / 944,
  23157. bottom: 11.8 / 1109
  23158. }
  23159. },
  23160. sideOutfit: {
  23161. height: math.unit(15.66, "feet"),
  23162. weight: math.unit(150, "lb"),
  23163. name: "Side (Outfit)",
  23164. image: {
  23165. source: "./media/characters/melody/side-outfit.svg",
  23166. extra: 1097 / 944,
  23167. bottom: 11.8 / 1109
  23168. }
  23169. },
  23170. },
  23171. [
  23172. {
  23173. name: "Normal",
  23174. height: math.unit(15.66, "feet"),
  23175. default: true
  23176. },
  23177. ]
  23178. ))
  23179. characterMakers.push(() => makeCharacter(
  23180. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23181. {
  23182. armoredFront: {
  23183. height: math.unit(8, "feet"),
  23184. weight: math.unit(325, "lb"),
  23185. name: "Front",
  23186. image: {
  23187. source: "./media/characters/windera/armored-front.svg",
  23188. extra: 1830/1598,
  23189. bottom: 151/1981
  23190. },
  23191. form: "armored",
  23192. default: true
  23193. },
  23194. macroFront: {
  23195. height: math.unit(70, "feet"),
  23196. weight: math.unit(315453, "lb"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/windera/macro-front.svg",
  23200. extra: 963/883,
  23201. bottom: 23/986
  23202. },
  23203. form: "macro",
  23204. default: true
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Normal",
  23210. height: math.unit(8, "feet"),
  23211. default: true,
  23212. form: "armored"
  23213. },
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(70, "feet"),
  23217. default: true,
  23218. form: "macro"
  23219. },
  23220. ],
  23221. {
  23222. "armored": {
  23223. name: "Armored",
  23224. default: true
  23225. },
  23226. "macro": {
  23227. name: "Macro",
  23228. },
  23229. }
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23233. {
  23234. front: {
  23235. height: math.unit(28.75, "feet"),
  23236. weight: math.unit(2000, "kg"),
  23237. name: "Front",
  23238. image: {
  23239. source: "./media/characters/sonear/front.svg",
  23240. extra: 1041.1 / 964.9,
  23241. bottom: 53.7 / 1096.6
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(28.75, "feet"),
  23249. default: true
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23255. {
  23256. side: {
  23257. height: math.unit(25.5, "feet"),
  23258. weight: math.unit(23000, "kg"),
  23259. name: "Side",
  23260. image: {
  23261. source: "./media/characters/kanara/side.svg"
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(25.5, "feet"),
  23269. default: true
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23275. {
  23276. side: {
  23277. height: math.unit(10, "feet"),
  23278. weight: math.unit(1000, "kg"),
  23279. name: "Side",
  23280. image: {
  23281. source: "./media/characters/ereus/side.svg",
  23282. extra: 1157 / 959,
  23283. bottom: 153 / 1312.5
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(10, "feet"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23297. {
  23298. side: {
  23299. height: math.unit(4.5, "feet"),
  23300. weight: math.unit(500, "lb"),
  23301. name: "Side",
  23302. image: {
  23303. source: "./media/characters/e-ter/side.svg",
  23304. extra: 1550 / 1248,
  23305. bottom: 146 / 1694
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Normal",
  23312. height: math.unit(4.5, "feet"),
  23313. default: true
  23314. },
  23315. ]
  23316. ))
  23317. characterMakers.push(() => makeCharacter(
  23318. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23319. {
  23320. side: {
  23321. height: math.unit(9.7, "feet"),
  23322. weight: math.unit(4000, "kg"),
  23323. name: "Side",
  23324. image: {
  23325. source: "./media/characters/yamie/side.svg"
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Normal",
  23332. height: math.unit(9.7, "feet"),
  23333. default: true
  23334. },
  23335. ]
  23336. ))
  23337. characterMakers.push(() => makeCharacter(
  23338. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23339. {
  23340. front: {
  23341. height: math.unit(50, "feet"),
  23342. weight: math.unit(50000, "kg"),
  23343. name: "Front",
  23344. image: {
  23345. source: "./media/characters/anders/front.svg",
  23346. extra: 570 / 539,
  23347. bottom: 14.7 / 586.7
  23348. }
  23349. },
  23350. },
  23351. [
  23352. {
  23353. name: "Large",
  23354. height: math.unit(50, "feet")
  23355. },
  23356. {
  23357. name: "Macro",
  23358. height: math.unit(2000, "feet"),
  23359. default: true
  23360. },
  23361. {
  23362. name: "Megamacro",
  23363. height: math.unit(12, "miles")
  23364. },
  23365. ]
  23366. ))
  23367. characterMakers.push(() => makeCharacter(
  23368. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23369. {
  23370. front: {
  23371. height: math.unit(7 + 2 / 12, "feet"),
  23372. weight: math.unit(300, "lb"),
  23373. name: "Front",
  23374. image: {
  23375. source: "./media/characters/reban/front.svg",
  23376. extra: 1287/1212,
  23377. bottom: 148/1435
  23378. }
  23379. },
  23380. head: {
  23381. height: math.unit(1.95, "feet"),
  23382. name: "Head",
  23383. image: {
  23384. source: "./media/characters/reban/head.svg"
  23385. }
  23386. },
  23387. maw: {
  23388. height: math.unit(0.95, "feet"),
  23389. name: "Maw",
  23390. image: {
  23391. source: "./media/characters/reban/maw.svg"
  23392. }
  23393. },
  23394. foot: {
  23395. height: math.unit(1.65, "feet"),
  23396. name: "Foot",
  23397. image: {
  23398. source: "./media/characters/reban/foot.svg"
  23399. }
  23400. },
  23401. dick: {
  23402. height: math.unit(7 / 5, "feet"),
  23403. name: "Dick",
  23404. image: {
  23405. source: "./media/characters/reban/dick.svg"
  23406. }
  23407. },
  23408. },
  23409. [
  23410. {
  23411. name: "Natural Height",
  23412. height: math.unit(7 + 2 / 12, "feet")
  23413. },
  23414. {
  23415. name: "Macro",
  23416. height: math.unit(500, "feet"),
  23417. default: true
  23418. },
  23419. {
  23420. name: "Canon Height",
  23421. height: math.unit(50, "AU")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(6, "feet"),
  23430. weight: math.unit(150, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/terrance-keayes/front.svg",
  23434. extra: 1.005,
  23435. bottom: 151 / 1615
  23436. }
  23437. },
  23438. side: {
  23439. height: math.unit(6, "feet"),
  23440. weight: math.unit(150, "lb"),
  23441. name: "Side",
  23442. image: {
  23443. source: "./media/characters/terrance-keayes/side.svg",
  23444. extra: 1.005,
  23445. bottom: 129.4 / 1544
  23446. }
  23447. },
  23448. back: {
  23449. height: math.unit(6, "feet"),
  23450. weight: math.unit(150, "lb"),
  23451. name: "Back",
  23452. image: {
  23453. source: "./media/characters/terrance-keayes/back.svg",
  23454. extra: 1.005,
  23455. bottom: 58.4 / 1557.3
  23456. }
  23457. },
  23458. dick: {
  23459. height: math.unit(6 * 0.208, "feet"),
  23460. name: "Dick",
  23461. image: {
  23462. source: "./media/characters/terrance-keayes/dick.svg"
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Canon Height",
  23469. height: math.unit(35, "miles"),
  23470. default: true
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23476. {
  23477. front: {
  23478. height: math.unit(6, "feet"),
  23479. weight: math.unit(150, "lb"),
  23480. name: "Front",
  23481. image: {
  23482. source: "./media/characters/ofelia/front.svg",
  23483. extra: 1130/1117,
  23484. bottom: 91/1221
  23485. }
  23486. },
  23487. back: {
  23488. height: math.unit(6, "feet"),
  23489. weight: math.unit(150, "lb"),
  23490. name: "Back",
  23491. image: {
  23492. source: "./media/characters/ofelia/back.svg",
  23493. extra: 1172/1159,
  23494. bottom: 28/1200
  23495. }
  23496. },
  23497. maw: {
  23498. height: math.unit(1, "feet"),
  23499. name: "Maw",
  23500. image: {
  23501. source: "./media/characters/ofelia/maw.svg"
  23502. }
  23503. },
  23504. foot: {
  23505. height: math.unit(1.949, "feet"),
  23506. name: "Foot",
  23507. image: {
  23508. source: "./media/characters/ofelia/foot.svg"
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Canon Height",
  23515. height: math.unit(2000, "miles"),
  23516. default: true
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23522. {
  23523. front: {
  23524. height: math.unit(6, "feet"),
  23525. weight: math.unit(150, "lb"),
  23526. name: "Front",
  23527. image: {
  23528. source: "./media/characters/samuel/front.svg",
  23529. extra: 265 / 258,
  23530. bottom: 2 / 266.1566
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(100, "feet"),
  23538. default: true
  23539. },
  23540. {
  23541. name: "Full Size",
  23542. height: math.unit(1000, "miles")
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(6, "feet"),
  23551. weight: math.unit(300, "lb"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/beishir-kiel/front.svg",
  23555. extra: 569 / 547,
  23556. bottom: 41.9 / 609
  23557. }
  23558. },
  23559. maw: {
  23560. height: math.unit(6 * 0.202, "feet"),
  23561. name: "Maw",
  23562. image: {
  23563. source: "./media/characters/beishir-kiel/maw.svg"
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Macro",
  23570. height: math.unit(300, "feet"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(5 + 7/12, "feet"),
  23580. weight: math.unit(120, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/logan-grey/front.svg",
  23584. extra: 1836/1738,
  23585. bottom: 108/1944
  23586. }
  23587. },
  23588. back: {
  23589. height: math.unit(5 + 7/12, "feet"),
  23590. weight: math.unit(120, "lb"),
  23591. name: "Back",
  23592. image: {
  23593. source: "./media/characters/logan-grey/back.svg",
  23594. extra: 1880/1794,
  23595. bottom: 24/1904
  23596. }
  23597. },
  23598. frontSfw: {
  23599. height: math.unit(5 + 7/12, "feet"),
  23600. weight: math.unit(120, "lb"),
  23601. name: "Front (SFW)",
  23602. image: {
  23603. source: "./media/characters/logan-grey/front-sfw.svg",
  23604. extra: 1836/1738,
  23605. bottom: 108/1944
  23606. }
  23607. },
  23608. backSfw: {
  23609. height: math.unit(5 + 7/12, "feet"),
  23610. weight: math.unit(120, "lb"),
  23611. name: "Back (SFW)",
  23612. image: {
  23613. source: "./media/characters/logan-grey/back-sfw.svg",
  23614. extra: 1880/1794,
  23615. bottom: 24/1904
  23616. }
  23617. },
  23618. hands: {
  23619. height: math.unit(0.84, "feet"),
  23620. name: "Hands",
  23621. image: {
  23622. source: "./media/characters/logan-grey/hands.svg"
  23623. }
  23624. },
  23625. paws: {
  23626. height: math.unit(0.72, "feet"),
  23627. name: "Paws",
  23628. image: {
  23629. source: "./media/characters/logan-grey/paws.svg"
  23630. }
  23631. },
  23632. cock: {
  23633. height: math.unit(1.45, "feet"),
  23634. name: "Cock",
  23635. image: {
  23636. source: "./media/characters/logan-grey/cock.svg"
  23637. }
  23638. },
  23639. cockAlt: {
  23640. height: math.unit(1.437, "feet"),
  23641. name: "Cock (alt)",
  23642. image: {
  23643. source: "./media/characters/logan-grey/cock-alt.svg"
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(5 + 8 / 12, "feet")
  23651. },
  23652. {
  23653. name: "The 500 Foot Femboy",
  23654. height: math.unit(500, "feet"),
  23655. default: true
  23656. },
  23657. {
  23658. name: "Megmacro",
  23659. height: math.unit(20, "miles")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(8 + 2 / 12, "feet"),
  23668. weight: math.unit(275, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/draganta/front.svg",
  23672. extra: 1177 / 1135,
  23673. bottom: 33.46 / 1212.1
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Normal",
  23680. height: math.unit(8 + 6 / 12, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Macro",
  23685. height: math.unit(150, "feet")
  23686. },
  23687. {
  23688. name: "Megamacro",
  23689. height: math.unit(1000, "miles")
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(1.72, "m"),
  23698. weight: math.unit(80, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/voski/front.svg",
  23702. extra: 2076.22 / 2022.4,
  23703. bottom: 102.7 / 2177.3866
  23704. }
  23705. },
  23706. frontFlaccid: {
  23707. height: math.unit(1.72, "m"),
  23708. weight: math.unit(80, "lb"),
  23709. name: "Front (Flaccid)",
  23710. image: {
  23711. source: "./media/characters/voski/front-flaccid.svg",
  23712. extra: 2076.22 / 2022.4,
  23713. bottom: 102.7 / 2177.3866
  23714. }
  23715. },
  23716. frontErect: {
  23717. height: math.unit(1.72, "m"),
  23718. weight: math.unit(80, "lb"),
  23719. name: "Front (Erect)",
  23720. image: {
  23721. source: "./media/characters/voski/front-erect.svg",
  23722. extra: 2076.22 / 2022.4,
  23723. bottom: 102.7 / 2177.3866
  23724. }
  23725. },
  23726. back: {
  23727. height: math.unit(1.72, "m"),
  23728. weight: math.unit(80, "lb"),
  23729. name: "Back",
  23730. image: {
  23731. source: "./media/characters/voski/back.svg",
  23732. extra: 2104 / 2051,
  23733. bottom: 10.45 / 2113.63
  23734. }
  23735. },
  23736. },
  23737. [
  23738. {
  23739. name: "Normal",
  23740. height: math.unit(1.72, "m")
  23741. },
  23742. {
  23743. name: "Macro",
  23744. height: math.unit(55, "m"),
  23745. default: true
  23746. },
  23747. {
  23748. name: "Macro+",
  23749. height: math.unit(300, "m")
  23750. },
  23751. {
  23752. name: "Macro++",
  23753. height: math.unit(700, "m")
  23754. },
  23755. {
  23756. name: "Macro+++",
  23757. height: math.unit(4500, "m")
  23758. },
  23759. {
  23760. name: "Macro++++",
  23761. height: math.unit(45, "km")
  23762. },
  23763. {
  23764. name: "Macro+++++",
  23765. height: math.unit(1220, "km")
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23771. {
  23772. front: {
  23773. height: math.unit(2.3, "m"),
  23774. weight: math.unit(304, "kg"),
  23775. name: "Front",
  23776. image: {
  23777. source: "./media/characters/icowom-lee/front.svg",
  23778. extra: 985 / 955,
  23779. bottom: 25.4 / 1012
  23780. }
  23781. },
  23782. fronttentacles: {
  23783. height: math.unit(2.3, "m"),
  23784. weight: math.unit(304, "kg"),
  23785. name: "Front-tentacles",
  23786. image: {
  23787. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23788. extra: 985 / 955,
  23789. bottom: 25.4 / 1012
  23790. }
  23791. },
  23792. back: {
  23793. height: math.unit(2.3, "m"),
  23794. weight: math.unit(304, "kg"),
  23795. name: "Back",
  23796. image: {
  23797. source: "./media/characters/icowom-lee/back.svg",
  23798. extra: 975 / 954,
  23799. bottom: 9.5 / 985
  23800. }
  23801. },
  23802. backtentacles: {
  23803. height: math.unit(2.3, "m"),
  23804. weight: math.unit(304, "kg"),
  23805. name: "Back-tentacles",
  23806. image: {
  23807. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23808. extra: 975 / 954,
  23809. bottom: 9.5 / 985
  23810. }
  23811. },
  23812. frontDressed: {
  23813. height: math.unit(2.3, "m"),
  23814. weight: math.unit(304, "kg"),
  23815. name: "Front (Dressed)",
  23816. image: {
  23817. source: "./media/characters/icowom-lee/front-dressed.svg",
  23818. extra: 3076 / 2933,
  23819. bottom: 51.4 / 3125.1889
  23820. }
  23821. },
  23822. rump: {
  23823. height: math.unit(0.776, "meters"),
  23824. name: "Rump",
  23825. image: {
  23826. source: "./media/characters/icowom-lee/rump.svg"
  23827. }
  23828. },
  23829. genitals: {
  23830. height: math.unit(0.78, "meters"),
  23831. name: "Genitals",
  23832. image: {
  23833. source: "./media/characters/icowom-lee/genitals.svg"
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(2.3, "meters"),
  23841. default: true
  23842. },
  23843. {
  23844. name: "Macro",
  23845. height: math.unit(94, "meters"),
  23846. default: true
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23852. {
  23853. front: {
  23854. height: math.unit(22, "meters"),
  23855. weight: math.unit(21000, "kg"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/shock-diamond/front.svg",
  23859. extra: 2204 / 2053,
  23860. bottom: 65 / 2239.47
  23861. }
  23862. },
  23863. frontNude: {
  23864. height: math.unit(22, "meters"),
  23865. weight: math.unit(21000, "kg"),
  23866. name: "Front (Nude)",
  23867. image: {
  23868. source: "./media/characters/shock-diamond/front-nude.svg",
  23869. extra: 2514 / 2285,
  23870. bottom: 13 / 2527.56
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(3, "meters")
  23878. },
  23879. {
  23880. name: "Macro",
  23881. height: math.unit(22, "meters"),
  23882. default: true
  23883. },
  23884. ]
  23885. ))
  23886. characterMakers.push(() => makeCharacter(
  23887. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23888. {
  23889. front: {
  23890. height: math.unit(5 + 4 / 12, "feet"),
  23891. weight: math.unit(120, "lb"),
  23892. name: "Front",
  23893. image: {
  23894. source: "./media/characters/rory/front.svg",
  23895. extra: 1318/1241,
  23896. bottom: 42/1360
  23897. }
  23898. },
  23899. back: {
  23900. height: math.unit(5 + 4 / 12, "feet"),
  23901. weight: math.unit(120, "lb"),
  23902. name: "Back",
  23903. image: {
  23904. source: "./media/characters/rory/back.svg",
  23905. extra: 1318/1241,
  23906. bottom: 42/1360
  23907. }
  23908. },
  23909. butt: {
  23910. height: math.unit(1.74, "feet"),
  23911. name: "Butt",
  23912. image: {
  23913. source: "./media/characters/rory/butt.svg"
  23914. }
  23915. },
  23916. dick: {
  23917. height: math.unit(1.02, "feet"),
  23918. name: "Dick",
  23919. image: {
  23920. source: "./media/characters/rory/dick.svg"
  23921. }
  23922. },
  23923. paws: {
  23924. height: math.unit(1, "feet"),
  23925. name: "Paws",
  23926. image: {
  23927. source: "./media/characters/rory/paws.svg"
  23928. }
  23929. },
  23930. frontAlt: {
  23931. height: math.unit(5 + 4 / 12, "feet"),
  23932. weight: math.unit(120, "lb"),
  23933. name: "Front (Alt)",
  23934. image: {
  23935. source: "./media/characters/rory/front-alt.svg",
  23936. extra: 589 / 556,
  23937. bottom: 45.7 / 635.76
  23938. }
  23939. },
  23940. frontAltNude: {
  23941. height: math.unit(5 + 4 / 12, "feet"),
  23942. weight: math.unit(120, "lb"),
  23943. name: "Front (Alt, Nude)",
  23944. image: {
  23945. source: "./media/characters/rory/front-alt-nude.svg",
  23946. extra: 589 / 556,
  23947. bottom: 45.7 / 635.76
  23948. }
  23949. },
  23950. side: {
  23951. height: math.unit(5 + 4 / 12, "feet"),
  23952. weight: math.unit(120, "lb"),
  23953. name: "Side",
  23954. image: {
  23955. source: "./media/characters/rory/side.svg",
  23956. extra: 597 / 564,
  23957. bottom: 55 / 653
  23958. }
  23959. },
  23960. backAlt: {
  23961. height: math.unit(5 + 4 / 12, "feet"),
  23962. weight: math.unit(120, "lb"),
  23963. name: "Back (Alt)",
  23964. image: {
  23965. source: "./media/characters/rory/back-alt.svg",
  23966. extra: 620 / 585,
  23967. bottom: 8.86 / 630.43
  23968. }
  23969. },
  23970. dickAlt: {
  23971. height: math.unit(0.86, "feet"),
  23972. name: "Dick (Alt)",
  23973. image: {
  23974. source: "./media/characters/rory/dick-alt.svg"
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(5 + 4 / 12, "feet"),
  23982. default: true
  23983. },
  23984. {
  23985. name: "Macro",
  23986. height: math.unit(100, "feet")
  23987. },
  23988. {
  23989. name: "Macro+",
  23990. height: math.unit(140, "feet")
  23991. },
  23992. {
  23993. name: "Macro++",
  23994. height: math.unit(300, "feet")
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(5 + 9 / 12, "feet"),
  24003. weight: math.unit(190, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/sprisk/front.svg",
  24007. extra: 1225 / 1180,
  24008. bottom: 42.7 / 1266.4
  24009. }
  24010. },
  24011. frontNsfw: {
  24012. height: math.unit(5 + 9 / 12, "feet"),
  24013. weight: math.unit(190, "lb"),
  24014. name: "Front (NSFW)",
  24015. image: {
  24016. source: "./media/characters/sprisk/front-nsfw.svg",
  24017. extra: 1225 / 1180,
  24018. bottom: 42.7 / 1266.4
  24019. }
  24020. },
  24021. back: {
  24022. height: math.unit(5 + 9 / 12, "feet"),
  24023. weight: math.unit(190, "lb"),
  24024. name: "Back",
  24025. image: {
  24026. source: "./media/characters/sprisk/back.svg",
  24027. extra: 1247 / 1200,
  24028. bottom: 5.6 / 1253.04
  24029. }
  24030. },
  24031. },
  24032. [
  24033. {
  24034. name: "Tiny",
  24035. height: math.unit(2, "inches")
  24036. },
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(5 + 9 / 12, "feet"),
  24040. default: true
  24041. },
  24042. {
  24043. name: "Mini Macro",
  24044. height: math.unit(18, "feet")
  24045. },
  24046. {
  24047. name: "Macro",
  24048. height: math.unit(100, "feet")
  24049. },
  24050. {
  24051. name: "MACRO",
  24052. height: math.unit(50, "miles")
  24053. },
  24054. {
  24055. name: "M A C R O",
  24056. height: math.unit(300, "miles")
  24057. },
  24058. ]
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24062. {
  24063. side: {
  24064. height: math.unit(15.6, "meters"),
  24065. weight: math.unit(700000, "kg"),
  24066. name: "Side",
  24067. image: {
  24068. source: "./media/characters/bunsen/side.svg",
  24069. extra: 1644 / 358
  24070. }
  24071. },
  24072. foot: {
  24073. height: math.unit(1.611 * 1644 / 358, "meter"),
  24074. name: "Foot",
  24075. image: {
  24076. source: "./media/characters/bunsen/foot.svg"
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Small",
  24083. height: math.unit(10, "feet")
  24084. },
  24085. {
  24086. name: "Normal",
  24087. height: math.unit(15.6, "meters"),
  24088. default: true
  24089. },
  24090. ]
  24091. ))
  24092. characterMakers.push(() => makeCharacter(
  24093. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24094. {
  24095. front: {
  24096. height: math.unit(4 + 11 / 12, "feet"),
  24097. weight: math.unit(140, "lb"),
  24098. name: "Front",
  24099. image: {
  24100. source: "./media/characters/sesh/front.svg",
  24101. extra: 3420 / 3231,
  24102. bottom: 72 / 3949.5
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(4 + 11 / 12, "feet")
  24110. },
  24111. {
  24112. name: "Grown",
  24113. height: math.unit(15, "feet"),
  24114. default: true
  24115. },
  24116. {
  24117. name: "Macro",
  24118. height: math.unit(1500, "feet")
  24119. },
  24120. {
  24121. name: "Megamacro",
  24122. height: math.unit(30, "miles")
  24123. },
  24124. {
  24125. name: "Continental",
  24126. height: math.unit(3000, "miles")
  24127. },
  24128. {
  24129. name: "Gravity Mass",
  24130. height: math.unit(300000, "miles")
  24131. },
  24132. {
  24133. name: "Planet Buster",
  24134. height: math.unit(30000000, "miles")
  24135. },
  24136. {
  24137. name: "Big",
  24138. height: math.unit(3000000000, "miles")
  24139. },
  24140. ]
  24141. ))
  24142. characterMakers.push(() => makeCharacter(
  24143. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24144. {
  24145. front: {
  24146. height: math.unit(9, "feet"),
  24147. weight: math.unit(350, "lb"),
  24148. name: "Front",
  24149. image: {
  24150. source: "./media/characters/pepper/front.svg",
  24151. extra: 1448 / 1312,
  24152. bottom: 9.4 / 1457.88
  24153. }
  24154. },
  24155. back: {
  24156. height: math.unit(9, "feet"),
  24157. weight: math.unit(350, "lb"),
  24158. name: "Back",
  24159. image: {
  24160. source: "./media/characters/pepper/back.svg",
  24161. extra: 1423 / 1300,
  24162. bottom: 4.6 / 1429
  24163. }
  24164. },
  24165. maw: {
  24166. height: math.unit(0.932, "feet"),
  24167. name: "Maw",
  24168. image: {
  24169. source: "./media/characters/pepper/maw.svg"
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(9, "feet"),
  24177. default: true
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24183. {
  24184. front: {
  24185. height: math.unit(6, "feet"),
  24186. weight: math.unit(150, "lb"),
  24187. name: "Front",
  24188. image: {
  24189. source: "./media/characters/maelstrom/front.svg",
  24190. extra: 2100 / 1883,
  24191. bottom: 94 / 2196.7
  24192. }
  24193. },
  24194. },
  24195. [
  24196. {
  24197. name: "Less Kaiju",
  24198. height: math.unit(200, "feet")
  24199. },
  24200. {
  24201. name: "Kaiju",
  24202. height: math.unit(400, "feet"),
  24203. default: true
  24204. },
  24205. {
  24206. name: "Kaiju-er",
  24207. height: math.unit(600, "feet")
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(6 + 5 / 12, "feet"),
  24216. weight: math.unit(180, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/lexir/front.svg",
  24220. extra: 180 / 172,
  24221. bottom: 12 / 192
  24222. }
  24223. },
  24224. back: {
  24225. height: math.unit(6 + 5 / 12, "feet"),
  24226. weight: math.unit(180, "lb"),
  24227. name: "Back",
  24228. image: {
  24229. source: "./media/characters/lexir/back.svg",
  24230. extra: 1273/1201,
  24231. bottom: 39/1312
  24232. }
  24233. },
  24234. },
  24235. [
  24236. {
  24237. name: "Very Smal",
  24238. height: math.unit(1, "nm")
  24239. },
  24240. {
  24241. name: "Normal",
  24242. height: math.unit(6 + 5 / 12, "feet"),
  24243. default: true
  24244. },
  24245. {
  24246. name: "Macro",
  24247. height: math.unit(1, "mile")
  24248. },
  24249. {
  24250. name: "Megamacro",
  24251. height: math.unit(50, "miles")
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24257. {
  24258. front: {
  24259. height: math.unit(1.5, "meters"),
  24260. weight: math.unit(100, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/maksio/front.svg",
  24264. extra: 1549 / 1531,
  24265. bottom: 123.7 / 1674.5429
  24266. }
  24267. },
  24268. back: {
  24269. height: math.unit(1.5, "meters"),
  24270. weight: math.unit(100, "lb"),
  24271. name: "Back",
  24272. image: {
  24273. source: "./media/characters/maksio/back.svg",
  24274. extra: 1541 / 1509,
  24275. bottom: 97 / 1639
  24276. }
  24277. },
  24278. hand: {
  24279. height: math.unit(0.621, "feet"),
  24280. name: "Hand",
  24281. image: {
  24282. source: "./media/characters/maksio/hand.svg"
  24283. }
  24284. },
  24285. foot: {
  24286. height: math.unit(1.611, "feet"),
  24287. name: "Foot",
  24288. image: {
  24289. source: "./media/characters/maksio/foot.svg"
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Shrunken",
  24296. height: math.unit(10, "cm")
  24297. },
  24298. {
  24299. name: "Normal",
  24300. height: math.unit(150, "cm"),
  24301. default: true
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24307. {
  24308. front: {
  24309. height: math.unit(100, "feet"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/erza-bear/front.svg",
  24313. extra: 2449 / 2390,
  24314. bottom: 46 / 2494
  24315. }
  24316. },
  24317. back: {
  24318. height: math.unit(100, "feet"),
  24319. name: "Back",
  24320. image: {
  24321. source: "./media/characters/erza-bear/back.svg",
  24322. extra: 2489 / 2430,
  24323. bottom: 85.4 / 2480
  24324. }
  24325. },
  24326. tail: {
  24327. height: math.unit(42, "feet"),
  24328. name: "Tail",
  24329. image: {
  24330. source: "./media/characters/erza-bear/tail.svg"
  24331. }
  24332. },
  24333. tongue: {
  24334. height: math.unit(8, "feet"),
  24335. name: "Tongue",
  24336. image: {
  24337. source: "./media/characters/erza-bear/tongue.svg"
  24338. }
  24339. },
  24340. dick: {
  24341. height: math.unit(10.5, "feet"),
  24342. name: "Dick",
  24343. image: {
  24344. source: "./media/characters/erza-bear/dick.svg"
  24345. }
  24346. },
  24347. dickVertical: {
  24348. height: math.unit(16.9, "feet"),
  24349. name: "Dick (Vertical)",
  24350. image: {
  24351. source: "./media/characters/erza-bear/dick-vertical.svg"
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Macro",
  24358. height: math.unit(100, "feet"),
  24359. default: true
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24365. {
  24366. front: {
  24367. height: math.unit(172, "cm"),
  24368. weight: math.unit(73, "kg"),
  24369. name: "Front",
  24370. image: {
  24371. source: "./media/characters/violet-flor/front.svg",
  24372. extra: 1530 / 1442,
  24373. bottom: 61.9 / 1588.8
  24374. }
  24375. },
  24376. back: {
  24377. height: math.unit(180, "cm"),
  24378. weight: math.unit(73, "kg"),
  24379. name: "Back",
  24380. image: {
  24381. source: "./media/characters/violet-flor/back.svg",
  24382. extra: 1692 / 1630,
  24383. bottom: 20 / 1712
  24384. }
  24385. },
  24386. },
  24387. [
  24388. {
  24389. name: "Normal",
  24390. height: math.unit(172, "cm"),
  24391. default: true
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24397. {
  24398. front: {
  24399. height: math.unit(6, "feet"),
  24400. weight: math.unit(220, "lb"),
  24401. name: "Front",
  24402. image: {
  24403. source: "./media/characters/lynn-rhea/front.svg",
  24404. extra: 310 / 273
  24405. }
  24406. },
  24407. back: {
  24408. height: math.unit(6, "feet"),
  24409. weight: math.unit(220, "lb"),
  24410. name: "Back",
  24411. image: {
  24412. source: "./media/characters/lynn-rhea/back.svg",
  24413. extra: 310 / 273
  24414. }
  24415. },
  24416. dicks: {
  24417. height: math.unit(0.9, "feet"),
  24418. name: "Dicks",
  24419. image: {
  24420. source: "./media/characters/lynn-rhea/dicks.svg"
  24421. }
  24422. },
  24423. slit: {
  24424. height: math.unit(0.4, "feet"),
  24425. name: "Slit",
  24426. image: {
  24427. source: "./media/characters/lynn-rhea/slit.svg"
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Micro",
  24434. height: math.unit(1, "inch")
  24435. },
  24436. {
  24437. name: "Macro",
  24438. height: math.unit(60, "feet"),
  24439. default: true
  24440. },
  24441. {
  24442. name: "Megamacro",
  24443. height: math.unit(2, "miles")
  24444. },
  24445. {
  24446. name: "Gigamacro",
  24447. height: math.unit(3, "earths")
  24448. },
  24449. {
  24450. name: "Galactic",
  24451. height: math.unit(0.8, "galaxies")
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24457. {
  24458. front: {
  24459. height: math.unit(1600, "feet"),
  24460. weight: math.unit(85758785169, "kg"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/valathos/front.svg",
  24464. extra: 1451 / 1339
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Macro",
  24471. height: math.unit(1600, "feet"),
  24472. default: true
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24478. {
  24479. front: {
  24480. height: math.unit(7 + 5 / 12, "feet"),
  24481. weight: math.unit(300, "lb"),
  24482. name: "Front",
  24483. image: {
  24484. source: "./media/characters/azula/front.svg",
  24485. extra: 3208 / 2880,
  24486. bottom: 80.2 / 3277
  24487. }
  24488. },
  24489. back: {
  24490. height: math.unit(7 + 5 / 12, "feet"),
  24491. weight: math.unit(300, "lb"),
  24492. name: "Back",
  24493. image: {
  24494. source: "./media/characters/azula/back.svg",
  24495. extra: 3169 / 2822,
  24496. bottom: 150.6 / 3321
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "Normal",
  24503. height: math.unit(7 + 5 / 12, "feet"),
  24504. default: true
  24505. },
  24506. {
  24507. name: "Big",
  24508. height: math.unit(20, "feet")
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24514. {
  24515. front: {
  24516. height: math.unit(5 + 1 / 12, "feet"),
  24517. weight: math.unit(110, "lb"),
  24518. name: "Front",
  24519. image: {
  24520. source: "./media/characters/rupert/front.svg",
  24521. extra: 1549 / 1495,
  24522. bottom: 54.2 / 1604.4
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Normal",
  24529. height: math.unit(5 + 1 / 12, "feet"),
  24530. default: true
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24536. {
  24537. front: {
  24538. height: math.unit(8 + 4 / 12, "feet"),
  24539. weight: math.unit(350, "lb"),
  24540. name: "Front",
  24541. image: {
  24542. source: "./media/characters/sheera-castellar/front.svg",
  24543. extra: 1957 / 1894,
  24544. bottom: 26.97 / 1975.017
  24545. }
  24546. },
  24547. side: {
  24548. height: math.unit(8 + 4 / 12, "feet"),
  24549. weight: math.unit(350, "lb"),
  24550. name: "Side",
  24551. image: {
  24552. source: "./media/characters/sheera-castellar/side.svg",
  24553. extra: 1957 / 1894
  24554. }
  24555. },
  24556. back: {
  24557. height: math.unit(8 + 4 / 12, "feet"),
  24558. weight: math.unit(350, "lb"),
  24559. name: "Back",
  24560. image: {
  24561. source: "./media/characters/sheera-castellar/back.svg",
  24562. extra: 1957 / 1894
  24563. }
  24564. },
  24565. angled: {
  24566. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24567. weight: math.unit(350, "lb"),
  24568. name: "Angled",
  24569. image: {
  24570. source: "./media/characters/sheera-castellar/angled.svg",
  24571. extra: 1807 / 1707,
  24572. bottom: 68 / 1875
  24573. }
  24574. },
  24575. genitals: {
  24576. height: math.unit(2.2, "feet"),
  24577. name: "Genitals",
  24578. image: {
  24579. source: "./media/characters/sheera-castellar/genitals.svg"
  24580. }
  24581. },
  24582. taur: {
  24583. height: math.unit(10 + 6/12, "feet"),
  24584. name: "Taur",
  24585. image: {
  24586. source: "./media/characters/sheera-castellar/taur.svg",
  24587. extra: 2017/1909,
  24588. bottom: 185/2202
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Normal",
  24595. height: math.unit(8 + 4 / 12, "feet")
  24596. },
  24597. {
  24598. name: "Macro",
  24599. height: math.unit(150, "feet"),
  24600. default: true
  24601. },
  24602. {
  24603. name: "Macro+",
  24604. height: math.unit(800, "feet")
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(6, "feet"),
  24613. weight: math.unit(150, "lb"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/jaipur/front.svg",
  24617. extra: 3860 / 3731,
  24618. bottom: 287 / 4140
  24619. }
  24620. },
  24621. back: {
  24622. height: math.unit(6, "feet"),
  24623. weight: math.unit(150, "lb"),
  24624. name: "Back",
  24625. image: {
  24626. source: "./media/characters/jaipur/back.svg",
  24627. extra: 1637/1561,
  24628. bottom: 154/1791
  24629. }
  24630. },
  24631. },
  24632. [
  24633. {
  24634. name: "Normal",
  24635. height: math.unit(1.85, "meters"),
  24636. default: true
  24637. },
  24638. {
  24639. name: "Macro",
  24640. height: math.unit(150, "meters")
  24641. },
  24642. {
  24643. name: "Macro+",
  24644. height: math.unit(0.5, "miles")
  24645. },
  24646. {
  24647. name: "Macro++",
  24648. height: math.unit(2.5, "miles")
  24649. },
  24650. {
  24651. name: "Macro+++",
  24652. height: math.unit(12, "miles")
  24653. },
  24654. {
  24655. name: "Macro++++",
  24656. height: math.unit(120, "miles")
  24657. },
  24658. {
  24659. name: "Macro+++++",
  24660. height: math.unit(1200, "miles")
  24661. },
  24662. ]
  24663. ))
  24664. characterMakers.push(() => makeCharacter(
  24665. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24666. {
  24667. front: {
  24668. height: math.unit(6, "feet"),
  24669. weight: math.unit(150, "lb"),
  24670. name: "Front",
  24671. image: {
  24672. source: "./media/characters/sheila-wolf/front.svg",
  24673. extra: 1931 / 1808,
  24674. bottom: 29.5 / 1960
  24675. }
  24676. },
  24677. dick: {
  24678. height: math.unit(1.464, "feet"),
  24679. name: "Dick",
  24680. image: {
  24681. source: "./media/characters/sheila-wolf/dick.svg"
  24682. }
  24683. },
  24684. muzzle: {
  24685. height: math.unit(0.513, "feet"),
  24686. name: "Muzzle",
  24687. image: {
  24688. source: "./media/characters/sheila-wolf/muzzle.svg"
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Macro",
  24695. height: math.unit(70, "feet"),
  24696. default: true
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(32, "meters"),
  24705. weight: math.unit(300000, "kg"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/almor/front.svg",
  24709. extra: 1408 / 1322,
  24710. bottom: 94.6 / 1506.5
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Macro",
  24717. height: math.unit(32, "meters"),
  24718. default: true
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24724. {
  24725. front: {
  24726. height: math.unit(7, "feet"),
  24727. weight: math.unit(200, "lb"),
  24728. name: "Front",
  24729. image: {
  24730. source: "./media/characters/silver/front.svg",
  24731. extra: 472.1 / 450.5,
  24732. bottom: 26.5 / 499.424
  24733. }
  24734. },
  24735. },
  24736. [
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(7, "feet"),
  24740. default: true
  24741. },
  24742. {
  24743. name: "Macro",
  24744. height: math.unit(800, "feet")
  24745. },
  24746. {
  24747. name: "Megamacro",
  24748. height: math.unit(250, "miles")
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24754. {
  24755. front: {
  24756. height: math.unit(6, "feet"),
  24757. weight: math.unit(150, "lb"),
  24758. name: "Front",
  24759. image: {
  24760. source: "./media/characters/pliskin/front.svg",
  24761. extra: 1469 / 1359,
  24762. bottom: 70 / 1540
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Micro",
  24769. height: math.unit(3, "inches")
  24770. },
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(5 + 11 / 12, "feet"),
  24774. default: true
  24775. },
  24776. {
  24777. name: "Macro",
  24778. height: math.unit(120, "feet")
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24784. {
  24785. front: {
  24786. height: math.unit(6, "feet"),
  24787. weight: math.unit(150, "lb"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/sammy/front.svg",
  24791. extra: 1193 / 1089,
  24792. bottom: 30.5 / 1226
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(1700, "feet"),
  24800. default: true
  24801. },
  24802. {
  24803. name: "Examacro",
  24804. height: math.unit(2.5e9, "lightyears")
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(21, "meters"),
  24813. weight: math.unit(12, "tonnes"),
  24814. name: "Front",
  24815. image: {
  24816. source: "./media/characters/kuru/front.svg",
  24817. extra: 4301 / 3785,
  24818. bottom: 371.3 / 4691
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(21, "meters"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(23, "meters"),
  24835. weight: math.unit(12.2, "tonnes"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/rakka/front.svg",
  24839. extra: 4670 / 4169,
  24840. bottom: 301 / 4968.7
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Macro",
  24847. height: math.unit(23, "meters"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24854. {
  24855. front: {
  24856. height: math.unit(6, "feet"),
  24857. weight: math.unit(150, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/rhys-feline/front.svg",
  24861. extra: 2488 / 2308,
  24862. bottom: 35.67 / 2519.19
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Really Small",
  24869. height: math.unit(1, "nm")
  24870. },
  24871. {
  24872. name: "Micro",
  24873. height: math.unit(4, "inches")
  24874. },
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(4 + 10 / 12, "feet"),
  24878. default: true
  24879. },
  24880. {
  24881. name: "Macro",
  24882. height: math.unit(100, "feet")
  24883. },
  24884. {
  24885. name: "Megamacto",
  24886. height: math.unit(50, "miles")
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24892. {
  24893. side: {
  24894. height: math.unit(30, "feet"),
  24895. weight: math.unit(35000, "kg"),
  24896. name: "Side",
  24897. image: {
  24898. source: "./media/characters/alydar/side.svg",
  24899. extra: 234 / 222,
  24900. bottom: 6.5 / 241
  24901. }
  24902. },
  24903. front: {
  24904. height: math.unit(30, "feet"),
  24905. weight: math.unit(35000, "kg"),
  24906. name: "Front",
  24907. image: {
  24908. source: "./media/characters/alydar/front.svg",
  24909. extra: 223.37 / 210.2,
  24910. bottom: 22.3 / 246.76
  24911. }
  24912. },
  24913. top: {
  24914. height: math.unit(64.54, "feet"),
  24915. weight: math.unit(35000, "kg"),
  24916. name: "Top",
  24917. image: {
  24918. source: "./media/characters/alydar/top.svg"
  24919. }
  24920. },
  24921. anthro: {
  24922. height: math.unit(30, "feet"),
  24923. weight: math.unit(9000, "kg"),
  24924. name: "Anthro",
  24925. image: {
  24926. source: "./media/characters/alydar/anthro.svg",
  24927. extra: 432 / 421,
  24928. bottom: 7.18 / 440
  24929. }
  24930. },
  24931. maw: {
  24932. height: math.unit(11.693, "feet"),
  24933. name: "Maw",
  24934. image: {
  24935. source: "./media/characters/alydar/maw.svg"
  24936. }
  24937. },
  24938. head: {
  24939. height: math.unit(11.693, "feet"),
  24940. name: "Head",
  24941. image: {
  24942. source: "./media/characters/alydar/head.svg"
  24943. }
  24944. },
  24945. headAlt: {
  24946. height: math.unit(12.861, "feet"),
  24947. name: "Head (Alt)",
  24948. image: {
  24949. source: "./media/characters/alydar/head-alt.svg"
  24950. }
  24951. },
  24952. wing: {
  24953. height: math.unit(20.712, "feet"),
  24954. name: "Wing",
  24955. image: {
  24956. source: "./media/characters/alydar/wing.svg"
  24957. }
  24958. },
  24959. wingFeather: {
  24960. height: math.unit(9.662, "feet"),
  24961. name: "Wing Feather",
  24962. image: {
  24963. source: "./media/characters/alydar/wing-feather.svg"
  24964. }
  24965. },
  24966. countourFeather: {
  24967. height: math.unit(4.154, "feet"),
  24968. name: "Contour Feather",
  24969. image: {
  24970. source: "./media/characters/alydar/contour-feather.svg"
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Diplomatic",
  24977. height: math.unit(13, "feet"),
  24978. default: true
  24979. },
  24980. {
  24981. name: "Small",
  24982. height: math.unit(30, "feet")
  24983. },
  24984. {
  24985. name: "Normal",
  24986. height: math.unit(95, "feet"),
  24987. default: true
  24988. },
  24989. {
  24990. name: "Large",
  24991. height: math.unit(285, "feet")
  24992. },
  24993. {
  24994. name: "Incomprehensible",
  24995. height: math.unit(450, "megameters")
  24996. },
  24997. ]
  24998. ))
  24999. characterMakers.push(() => makeCharacter(
  25000. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25001. {
  25002. side: {
  25003. height: math.unit(11, "feet"),
  25004. weight: math.unit(1750, "kg"),
  25005. name: "Side",
  25006. image: {
  25007. source: "./media/characters/selicia/side.svg",
  25008. extra: 440 / 396,
  25009. bottom: 24.8 / 465.979
  25010. }
  25011. },
  25012. maw: {
  25013. height: math.unit(4.665, "feet"),
  25014. name: "Maw",
  25015. image: {
  25016. source: "./media/characters/selicia/maw.svg"
  25017. }
  25018. },
  25019. },
  25020. [
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(11, "feet"),
  25024. default: true
  25025. },
  25026. ]
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25030. {
  25031. side: {
  25032. height: math.unit(2 + 6 / 12, "feet"),
  25033. weight: math.unit(30, "lb"),
  25034. name: "Side",
  25035. image: {
  25036. source: "./media/characters/layla/side.svg",
  25037. extra: 244 / 188,
  25038. bottom: 18.2 / 262.1
  25039. }
  25040. },
  25041. back: {
  25042. height: math.unit(2 + 6 / 12, "feet"),
  25043. weight: math.unit(30, "lb"),
  25044. name: "Back",
  25045. image: {
  25046. source: "./media/characters/layla/back.svg",
  25047. extra: 308 / 241.5,
  25048. bottom: 8.9 / 316.8
  25049. }
  25050. },
  25051. cumming: {
  25052. height: math.unit(2 + 6 / 12, "feet"),
  25053. weight: math.unit(30, "lb"),
  25054. name: "Cumming",
  25055. image: {
  25056. source: "./media/characters/layla/cumming.svg",
  25057. extra: 342 / 279,
  25058. bottom: 595 / 938
  25059. }
  25060. },
  25061. dickFlaccid: {
  25062. height: math.unit(2.595, "feet"),
  25063. name: "Flaccid Genitals",
  25064. image: {
  25065. source: "./media/characters/layla/dick-flaccid.svg"
  25066. }
  25067. },
  25068. dickErect: {
  25069. height: math.unit(2.359, "feet"),
  25070. name: "Erect Genitals",
  25071. image: {
  25072. source: "./media/characters/layla/dick-erect.svg"
  25073. }
  25074. },
  25075. dragon: {
  25076. height: math.unit(40, "feet"),
  25077. name: "Dragon",
  25078. image: {
  25079. source: "./media/characters/layla/dragon.svg",
  25080. extra: 610/535,
  25081. bottom: 367/977
  25082. }
  25083. },
  25084. taur: {
  25085. height: math.unit(30, "feet"),
  25086. name: "Taur",
  25087. image: {
  25088. source: "./media/characters/layla/taur.svg",
  25089. extra: 1268/1199,
  25090. bottom: 112/1380
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Micro",
  25097. height: math.unit(1, "inch")
  25098. },
  25099. {
  25100. name: "Small",
  25101. height: math.unit(1, "foot")
  25102. },
  25103. {
  25104. name: "Normal",
  25105. height: math.unit(2 + 6 / 12, "feet"),
  25106. default: true
  25107. },
  25108. {
  25109. name: "Macro",
  25110. height: math.unit(200, "feet")
  25111. },
  25112. {
  25113. name: "Megamacro",
  25114. height: math.unit(1000, "miles")
  25115. },
  25116. {
  25117. name: "Planetary",
  25118. height: math.unit(8000, "miles")
  25119. },
  25120. {
  25121. name: "True Layla",
  25122. height: math.unit(200000 * 7, "multiverses")
  25123. },
  25124. ]
  25125. ))
  25126. characterMakers.push(() => makeCharacter(
  25127. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25128. {
  25129. back: {
  25130. height: math.unit(10.5, "feet"),
  25131. weight: math.unit(800, "lb"),
  25132. name: "Back",
  25133. image: {
  25134. source: "./media/characters/knox/back.svg",
  25135. extra: 1486 / 1089,
  25136. bottom: 107 / 1601.4
  25137. }
  25138. },
  25139. side: {
  25140. height: math.unit(10.5, "feet"),
  25141. weight: math.unit(800, "lb"),
  25142. name: "Side",
  25143. image: {
  25144. source: "./media/characters/knox/side.svg",
  25145. extra: 244 / 218,
  25146. bottom: 14 / 260
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Compact",
  25153. height: math.unit(10.5, "feet"),
  25154. default: true
  25155. },
  25156. {
  25157. name: "Dynamax",
  25158. height: math.unit(210, "feet")
  25159. },
  25160. {
  25161. name: "Full Macro",
  25162. height: math.unit(850, "feet")
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(28, "feet"),
  25171. weight: math.unit(10500, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/kayda/front.svg",
  25175. extra: 1536 / 1428,
  25176. bottom: 68.7 / 1603
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(28, "feet"),
  25181. weight: math.unit(10500, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/kayda/back.svg",
  25185. extra: 1557 / 1464,
  25186. bottom: 39.5 / 1597.49
  25187. }
  25188. },
  25189. dick: {
  25190. height: math.unit(3.858, "feet"),
  25191. name: "Dick",
  25192. image: {
  25193. source: "./media/characters/kayda/dick.svg"
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Macro",
  25200. height: math.unit(28, "feet"),
  25201. default: true
  25202. },
  25203. ]
  25204. ))
  25205. characterMakers.push(() => makeCharacter(
  25206. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25207. {
  25208. front: {
  25209. height: math.unit(10 + 11 / 12, "feet"),
  25210. weight: math.unit(1400, "lb"),
  25211. name: "Front",
  25212. image: {
  25213. source: "./media/characters/brian/front.svg",
  25214. extra: 737 / 692,
  25215. bottom: 55.4 / 785
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Normal",
  25222. height: math.unit(10 + 11 / 12, "feet"),
  25223. default: true
  25224. },
  25225. ]
  25226. ))
  25227. characterMakers.push(() => makeCharacter(
  25228. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25229. {
  25230. front: {
  25231. height: math.unit(5 + 8 / 12, "feet"),
  25232. weight: math.unit(140, "lb"),
  25233. name: "Front",
  25234. image: {
  25235. source: "./media/characters/khemri/front.svg",
  25236. extra: 4780 / 4059,
  25237. bottom: 80.1 / 4859.25
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Micro",
  25244. height: math.unit(6, "inches")
  25245. },
  25246. {
  25247. name: "Normal",
  25248. height: math.unit(5 + 8 / 12, "feet"),
  25249. default: true
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25255. {
  25256. front: {
  25257. height: math.unit(13, "feet"),
  25258. weight: math.unit(1700, "lb"),
  25259. name: "Front",
  25260. image: {
  25261. source: "./media/characters/felix-braveheart/front.svg",
  25262. extra: 1222 / 1157,
  25263. bottom: 53.2 / 1280
  25264. }
  25265. },
  25266. back: {
  25267. height: math.unit(13, "feet"),
  25268. weight: math.unit(1700, "lb"),
  25269. name: "Back",
  25270. image: {
  25271. source: "./media/characters/felix-braveheart/back.svg",
  25272. extra: 1277 / 1203,
  25273. bottom: 50.2 / 1327
  25274. }
  25275. },
  25276. feral: {
  25277. height: math.unit(6, "feet"),
  25278. weight: math.unit(400, "lb"),
  25279. name: "Feral",
  25280. image: {
  25281. source: "./media/characters/felix-braveheart/feral.svg",
  25282. extra: 682 / 625,
  25283. bottom: 6.9 / 688
  25284. }
  25285. },
  25286. },
  25287. [
  25288. {
  25289. name: "Normal",
  25290. height: math.unit(13, "feet"),
  25291. default: true
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25297. {
  25298. side: {
  25299. height: math.unit(5 + 11 / 12, "feet"),
  25300. weight: math.unit(1400, "lb"),
  25301. name: "Side",
  25302. image: {
  25303. source: "./media/characters/shadow-blade/side.svg",
  25304. extra: 1726 / 1267,
  25305. bottom: 58.4 / 1785
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(5 + 11 / 12, "feet"),
  25313. default: true
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25319. {
  25320. front: {
  25321. height: math.unit(1 + 6 / 12, "feet"),
  25322. weight: math.unit(25, "lb"),
  25323. name: "Front",
  25324. image: {
  25325. source: "./media/characters/karla-halldor/front.svg",
  25326. extra: 1459 / 1383,
  25327. bottom: 12 / 1472
  25328. }
  25329. },
  25330. },
  25331. [
  25332. {
  25333. name: "Normal",
  25334. height: math.unit(1 + 6 / 12, "feet"),
  25335. default: true
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25341. {
  25342. front: {
  25343. height: math.unit(6 + 2 / 12, "feet"),
  25344. weight: math.unit(160, "lb"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/ariam/front.svg",
  25348. extra: 1073/976,
  25349. bottom: 52/1125
  25350. }
  25351. },
  25352. back: {
  25353. height: math.unit(6 + 2/12, "feet"),
  25354. weight: math.unit(160, "lb"),
  25355. name: "Back",
  25356. image: {
  25357. source: "./media/characters/ariam/back.svg",
  25358. extra: 1103/1023,
  25359. bottom: 9/1112
  25360. }
  25361. },
  25362. dressed: {
  25363. height: math.unit(6 + 2/12, "feet"),
  25364. weight: math.unit(160, "lb"),
  25365. name: "Dressed",
  25366. image: {
  25367. source: "./media/characters/ariam/dressed.svg",
  25368. extra: 1099/1009,
  25369. bottom: 25/1124
  25370. }
  25371. },
  25372. squatting: {
  25373. height: math.unit(4.1, "feet"),
  25374. weight: math.unit(160, "lb"),
  25375. name: "Squatting",
  25376. image: {
  25377. source: "./media/characters/ariam/squatting.svg",
  25378. extra: 2617 / 2112,
  25379. bottom: 61.2 / 2681,
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(6 + 2 / 12, "feet"),
  25387. default: true
  25388. },
  25389. {
  25390. name: "Normal+",
  25391. height: math.unit(4, "meters")
  25392. },
  25393. {
  25394. name: "Macro",
  25395. height: math.unit(50, "meters")
  25396. },
  25397. {
  25398. name: "Macro+",
  25399. height: math.unit(100, "meters")
  25400. },
  25401. {
  25402. name: "Megamacro",
  25403. height: math.unit(20, "km")
  25404. },
  25405. {
  25406. name: "Caretaker",
  25407. height: math.unit(444, "megameters")
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(1.67, "meters"),
  25416. weight: math.unit(140, "lb"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25420. extra: 438 / 410,
  25421. bottom: 0.75 / 439
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Shrunken",
  25428. height: math.unit(7.6, "cm")
  25429. },
  25430. {
  25431. name: "Human Scale",
  25432. height: math.unit(1.67, "meters")
  25433. },
  25434. {
  25435. name: "Wolxi Scale",
  25436. height: math.unit(36.7, "meters"),
  25437. default: true
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(1.73, "meters"),
  25446. weight: math.unit(240, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/izue-two-mothers/front.svg",
  25450. extra: 469 / 437,
  25451. bottom: 1.24 / 470.6
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Shrunken",
  25458. height: math.unit(7.86, "cm")
  25459. },
  25460. {
  25461. name: "Human Scale",
  25462. height: math.unit(1.73, "meters")
  25463. },
  25464. {
  25465. name: "Wolxi Scale",
  25466. height: math.unit(38, "meters"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(1.55, "meters"),
  25476. weight: math.unit(120, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/teeku-love-shack/front.svg",
  25480. extra: 387 / 362,
  25481. bottom: 1.51 / 388
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Shrunken",
  25488. height: math.unit(7, "cm")
  25489. },
  25490. {
  25491. name: "Human Scale",
  25492. height: math.unit(1.55, "meters")
  25493. },
  25494. {
  25495. name: "Wolxi Scale",
  25496. height: math.unit(34.1, "meters"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(1.83, "meters"),
  25506. weight: math.unit(135, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/dejma-the-red/front.svg",
  25510. extra: 480 / 458,
  25511. bottom: 1.8 / 482
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Shrunken",
  25518. height: math.unit(8.3, "cm")
  25519. },
  25520. {
  25521. name: "Human Scale",
  25522. height: math.unit(1.83, "meters")
  25523. },
  25524. {
  25525. name: "Wolxi Scale",
  25526. height: math.unit(40, "meters"),
  25527. default: true
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(1.78, "meters"),
  25536. weight: math.unit(65, "kg"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/aki/front.svg",
  25540. extra: 452 / 415
  25541. }
  25542. },
  25543. frontNsfw: {
  25544. height: math.unit(1.78, "meters"),
  25545. weight: math.unit(65, "kg"),
  25546. name: "Front (NSFW)",
  25547. image: {
  25548. source: "./media/characters/aki/front-nsfw.svg",
  25549. extra: 452 / 415
  25550. }
  25551. },
  25552. back: {
  25553. height: math.unit(1.78, "meters"),
  25554. weight: math.unit(65, "kg"),
  25555. name: "Back",
  25556. image: {
  25557. source: "./media/characters/aki/back.svg",
  25558. extra: 452 / 415
  25559. }
  25560. },
  25561. rump: {
  25562. height: math.unit(2.05, "feet"),
  25563. name: "Rump",
  25564. image: {
  25565. source: "./media/characters/aki/rump.svg"
  25566. }
  25567. },
  25568. dick: {
  25569. height: math.unit(0.95, "feet"),
  25570. name: "Dick",
  25571. image: {
  25572. source: "./media/characters/aki/dick.svg"
  25573. }
  25574. },
  25575. },
  25576. [
  25577. {
  25578. name: "Micro",
  25579. height: math.unit(15, "cm")
  25580. },
  25581. {
  25582. name: "Normal",
  25583. height: math.unit(178, "cm"),
  25584. default: true
  25585. },
  25586. {
  25587. name: "Macro",
  25588. height: math.unit(214, "m")
  25589. },
  25590. {
  25591. name: "Macro+",
  25592. height: math.unit(534, "m")
  25593. },
  25594. ]
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25598. {
  25599. front: {
  25600. height: math.unit(5 + 5 / 12, "feet"),
  25601. weight: math.unit(120, "lb"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/ari/front.svg",
  25605. extra: 1550/1471,
  25606. bottom: 39/1589
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Normal",
  25613. height: math.unit(5 + 5 / 12, "feet")
  25614. },
  25615. {
  25616. name: "Macro",
  25617. height: math.unit(100, "feet"),
  25618. default: true
  25619. },
  25620. {
  25621. name: "Megamacro",
  25622. height: math.unit(100, "miles")
  25623. },
  25624. {
  25625. name: "Gigamacro",
  25626. height: math.unit(80000, "miles")
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25632. {
  25633. side: {
  25634. height: math.unit(9, "feet"),
  25635. weight: math.unit(400, "kg"),
  25636. name: "Side",
  25637. image: {
  25638. source: "./media/characters/bolt/side.svg",
  25639. extra: 1126 / 896,
  25640. bottom: 60 / 1187.3,
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Micro",
  25647. height: math.unit(5, "inches")
  25648. },
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(9, "feet"),
  25652. default: true
  25653. },
  25654. {
  25655. name: "Macro",
  25656. height: math.unit(700, "feet")
  25657. },
  25658. {
  25659. name: "Max Size",
  25660. height: math.unit(1.52e22, "yottameters")
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25666. {
  25667. front: {
  25668. height: math.unit(4.3, "meters"),
  25669. weight: math.unit(3, "tons"),
  25670. name: "Front",
  25671. image: {
  25672. source: "./media/characters/draekon-sylviar/front.svg",
  25673. extra: 2072/1512,
  25674. bottom: 74/2146
  25675. }
  25676. },
  25677. back: {
  25678. height: math.unit(4.3, "meters"),
  25679. weight: math.unit(3, "tons"),
  25680. name: "Back",
  25681. image: {
  25682. source: "./media/characters/draekon-sylviar/back.svg",
  25683. extra: 1639/1483,
  25684. bottom: 41/1680
  25685. }
  25686. },
  25687. feral: {
  25688. height: math.unit(1.15, "meters"),
  25689. weight: math.unit(3, "tons"),
  25690. name: "Feral",
  25691. image: {
  25692. source: "./media/characters/draekon-sylviar/feral.svg",
  25693. extra: 1033/395,
  25694. bottom: 130/1163
  25695. }
  25696. },
  25697. maw: {
  25698. height: math.unit(1.3, "meters"),
  25699. name: "Maw",
  25700. image: {
  25701. source: "./media/characters/draekon-sylviar/maw.svg"
  25702. }
  25703. },
  25704. mawSeparated: {
  25705. height: math.unit(1.53, "meters"),
  25706. name: "Separated Maw",
  25707. image: {
  25708. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25709. }
  25710. },
  25711. tail: {
  25712. height: math.unit(1.15, "meters"),
  25713. name: "Tail",
  25714. image: {
  25715. source: "./media/characters/draekon-sylviar/tail.svg"
  25716. }
  25717. },
  25718. tailDick: {
  25719. height: math.unit(1.15, "meters"),
  25720. name: "Tail (Dick)",
  25721. image: {
  25722. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25723. }
  25724. },
  25725. tailDickSeparated: {
  25726. height: math.unit(1.19, "meters"),
  25727. name: "Tail (Separated Dick)",
  25728. image: {
  25729. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25730. }
  25731. },
  25732. slit: {
  25733. height: math.unit(1, "meters"),
  25734. name: "Slit",
  25735. image: {
  25736. source: "./media/characters/draekon-sylviar/slit.svg"
  25737. }
  25738. },
  25739. dick: {
  25740. height: math.unit(1.15, "meters"),
  25741. name: "Dick",
  25742. image: {
  25743. source: "./media/characters/draekon-sylviar/dick.svg"
  25744. }
  25745. },
  25746. dickSeparated: {
  25747. height: math.unit(1.1, "meters"),
  25748. name: "Separated Dick",
  25749. image: {
  25750. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25751. }
  25752. },
  25753. sheath: {
  25754. height: math.unit(1.15, "meters"),
  25755. name: "Sheath",
  25756. image: {
  25757. source: "./media/characters/draekon-sylviar/sheath.svg"
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Small",
  25764. height: math.unit(4.53 / 2, "meters"),
  25765. default: true
  25766. },
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(4.53, "meters"),
  25770. default: true
  25771. },
  25772. {
  25773. name: "Large",
  25774. height: math.unit(4.53 * 2, "meters"),
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(6 + 2 / 12, "feet"),
  25783. weight: math.unit(180, "lb"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/brawler/front.svg",
  25787. extra: 3301 / 3027,
  25788. bottom: 138 / 3439
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(6 + 2 / 12, "feet"),
  25796. default: true
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25802. {
  25803. front: {
  25804. height: math.unit(11, "feet"),
  25805. weight: math.unit(1000, "lb"),
  25806. name: "Front",
  25807. image: {
  25808. source: "./media/characters/alex/front.svg",
  25809. bottom: 44.5 / 620
  25810. }
  25811. },
  25812. },
  25813. [
  25814. {
  25815. name: "Micro",
  25816. height: math.unit(5, "inches")
  25817. },
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(11, "feet"),
  25821. default: true
  25822. },
  25823. {
  25824. name: "Macro",
  25825. height: math.unit(9.5e9, "feet")
  25826. },
  25827. {
  25828. name: "Max Size",
  25829. height: math.unit(1.4e283, "yottameters")
  25830. },
  25831. ]
  25832. ))
  25833. characterMakers.push(() => makeCharacter(
  25834. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25835. {
  25836. female: {
  25837. height: math.unit(29.9, "m"),
  25838. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25839. name: "Female",
  25840. image: {
  25841. source: "./media/characters/zenari/female.svg",
  25842. extra: 3281.6 / 3217,
  25843. bottom: 72.2 / 3353
  25844. }
  25845. },
  25846. male: {
  25847. height: math.unit(27.7, "m"),
  25848. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25849. name: "Male",
  25850. image: {
  25851. source: "./media/characters/zenari/male.svg",
  25852. extra: 3008 / 2991,
  25853. bottom: 54.6 / 3069
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Macro",
  25860. height: math.unit(29.7, "meters"),
  25861. default: true
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25867. {
  25868. female: {
  25869. height: math.unit(23.8, "m"),
  25870. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25871. name: "Female",
  25872. image: {
  25873. source: "./media/characters/mactarian/female.svg",
  25874. extra: 2662 / 2569,
  25875. bottom: 73 / 2736
  25876. }
  25877. },
  25878. male: {
  25879. height: math.unit(23.8, "m"),
  25880. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25881. name: "Male",
  25882. image: {
  25883. source: "./media/characters/mactarian/male.svg",
  25884. extra: 2673 / 2600,
  25885. bottom: 76 / 2750
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Macro",
  25892. height: math.unit(23.8, "meters"),
  25893. default: true
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25899. {
  25900. female: {
  25901. height: math.unit(19.3, "m"),
  25902. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25903. name: "Female",
  25904. image: {
  25905. source: "./media/characters/umok/female.svg",
  25906. extra: 2186 / 2078,
  25907. bottom: 87 / 2277
  25908. }
  25909. },
  25910. male: {
  25911. height: math.unit(19.5, "m"),
  25912. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25913. name: "Male",
  25914. image: {
  25915. source: "./media/characters/umok/male.svg",
  25916. extra: 2233 / 2140,
  25917. bottom: 24.4 / 2258
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Macro",
  25924. height: math.unit(19.3, "meters"),
  25925. default: true
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25931. {
  25932. female: {
  25933. height: math.unit(26.15, "m"),
  25934. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25935. name: "Female",
  25936. image: {
  25937. source: "./media/characters/joraxian/female.svg",
  25938. extra: 2912 / 2824,
  25939. bottom: 36 / 2956
  25940. }
  25941. },
  25942. male: {
  25943. height: math.unit(25.4, "m"),
  25944. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25945. name: "Male",
  25946. image: {
  25947. source: "./media/characters/joraxian/male.svg",
  25948. extra: 2877 / 2721,
  25949. bottom: 82 / 2967
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Macro",
  25956. height: math.unit(26.15, "meters"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25963. {
  25964. female: {
  25965. height: math.unit(21.6, "m"),
  25966. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25967. name: "Female",
  25968. image: {
  25969. source: "./media/characters/sthara/female.svg",
  25970. extra: 2516 / 2347,
  25971. bottom: 21.5 / 2537
  25972. }
  25973. },
  25974. male: {
  25975. height: math.unit(24, "m"),
  25976. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25977. name: "Male",
  25978. image: {
  25979. source: "./media/characters/sthara/male.svg",
  25980. extra: 2732 / 2607,
  25981. bottom: 23 / 2732
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Macro",
  25988. height: math.unit(21.6, "meters"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(6 + 4 / 12, "feet"),
  25998. weight: math.unit(175, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/luka-bryzant/front.svg",
  26002. extra: 311 / 289,
  26003. bottom: 4 / 315
  26004. }
  26005. },
  26006. back: {
  26007. height: math.unit(6 + 4 / 12, "feet"),
  26008. weight: math.unit(175, "lb"),
  26009. name: "Back",
  26010. image: {
  26011. source: "./media/characters/luka-bryzant/back.svg",
  26012. extra: 311 / 289,
  26013. bottom: 3.8 / 313.7
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Micro",
  26020. height: math.unit(10, "inches")
  26021. },
  26022. {
  26023. name: "Normal",
  26024. height: math.unit(6 + 4 / 12, "feet"),
  26025. default: true
  26026. },
  26027. {
  26028. name: "Large",
  26029. height: math.unit(12, "feet")
  26030. },
  26031. ]
  26032. ))
  26033. characterMakers.push(() => makeCharacter(
  26034. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26035. {
  26036. front: {
  26037. height: math.unit(5 + 7 / 12, "feet"),
  26038. weight: math.unit(185, "lb"),
  26039. name: "Front",
  26040. image: {
  26041. source: "./media/characters/aman-aquila/front.svg",
  26042. extra: 1013 / 976,
  26043. bottom: 45.6 / 1057
  26044. }
  26045. },
  26046. side: {
  26047. height: math.unit(5 + 7 / 12, "feet"),
  26048. weight: math.unit(185, "lb"),
  26049. name: "Side",
  26050. image: {
  26051. source: "./media/characters/aman-aquila/side.svg",
  26052. extra: 1054 / 1011,
  26053. bottom: 15 / 1070
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(5 + 7 / 12, "feet"),
  26058. weight: math.unit(185, "lb"),
  26059. name: "Back",
  26060. image: {
  26061. source: "./media/characters/aman-aquila/back.svg",
  26062. extra: 1026 / 970,
  26063. bottom: 12 / 1039
  26064. }
  26065. },
  26066. head: {
  26067. height: math.unit(1.211, "feet"),
  26068. name: "Head",
  26069. image: {
  26070. source: "./media/characters/aman-aquila/head.svg",
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Minimicro",
  26077. height: math.unit(0.057, "inches")
  26078. },
  26079. {
  26080. name: "Micro",
  26081. height: math.unit(7, "inches")
  26082. },
  26083. {
  26084. name: "Mini",
  26085. height: math.unit(3 + 7 / 12, "feet")
  26086. },
  26087. {
  26088. name: "Normal",
  26089. height: math.unit(5 + 7 / 12, "feet"),
  26090. default: true
  26091. },
  26092. {
  26093. name: "Macro",
  26094. height: math.unit(157 + 7 / 12, "feet")
  26095. },
  26096. {
  26097. name: "Megamacro",
  26098. height: math.unit(1557 + 7 / 12, "feet")
  26099. },
  26100. {
  26101. name: "Gigamacro",
  26102. height: math.unit(15557 + 7 / 12, "feet")
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(3 + 2 / 12, "inches"),
  26111. weight: math.unit(0.3, "ounces"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/hiphae/front.svg",
  26115. extra: 1931 / 1683,
  26116. bottom: 24 / 1955
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(3 + 1 / 2, "inches"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26130. {
  26131. front: {
  26132. height: math.unit(5 + 10 / 12, "feet"),
  26133. weight: math.unit(165, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/nicky/front.svg",
  26137. extra: 3144 / 2886,
  26138. bottom: 45.6 / 3192
  26139. }
  26140. },
  26141. back: {
  26142. height: math.unit(5 + 10 / 12, "feet"),
  26143. weight: math.unit(165, "lb"),
  26144. name: "Back",
  26145. image: {
  26146. source: "./media/characters/nicky/back.svg",
  26147. extra: 3055 / 2804,
  26148. bottom: 28.4 / 3087
  26149. }
  26150. },
  26151. frontclothed: {
  26152. height: math.unit(5 + 10 / 12, "feet"),
  26153. weight: math.unit(165, "lb"),
  26154. name: "Front-clothed",
  26155. image: {
  26156. source: "./media/characters/nicky/front-clothed.svg",
  26157. extra: 3184.9 / 2926.9,
  26158. bottom: 86.5 / 3239.9
  26159. }
  26160. },
  26161. foot: {
  26162. height: math.unit(1.16, "feet"),
  26163. name: "Foot",
  26164. image: {
  26165. source: "./media/characters/nicky/foot.svg"
  26166. }
  26167. },
  26168. feet: {
  26169. height: math.unit(1.34, "feet"),
  26170. name: "Feet",
  26171. image: {
  26172. source: "./media/characters/nicky/feet.svg"
  26173. }
  26174. },
  26175. maw: {
  26176. height: math.unit(0.9, "feet"),
  26177. name: "Maw",
  26178. image: {
  26179. source: "./media/characters/nicky/maw.svg"
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(5 + 10 / 12, "feet"),
  26187. default: true
  26188. },
  26189. {
  26190. name: "Macro",
  26191. height: math.unit(60, "feet")
  26192. },
  26193. {
  26194. name: "Megamacro",
  26195. height: math.unit(1, "mile")
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26201. {
  26202. side: {
  26203. height: math.unit(10, "feet"),
  26204. weight: math.unit(600, "lb"),
  26205. name: "Side",
  26206. image: {
  26207. source: "./media/characters/blair/side.svg",
  26208. bottom: 16.6 / 475,
  26209. extra: 458 / 431
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Micro",
  26216. height: math.unit(8, "inches")
  26217. },
  26218. {
  26219. name: "Normal",
  26220. height: math.unit(10, "feet"),
  26221. default: true
  26222. },
  26223. {
  26224. name: "Macro",
  26225. height: math.unit(180, "feet")
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26231. {
  26232. front: {
  26233. height: math.unit(5 + 4 / 12, "feet"),
  26234. weight: math.unit(125, "lb"),
  26235. name: "Front",
  26236. image: {
  26237. source: "./media/characters/fisher/front.svg",
  26238. extra: 444 / 390,
  26239. bottom: 2 / 444.8
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Micro",
  26246. height: math.unit(4, "inches")
  26247. },
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(5 + 4 / 12, "feet"),
  26251. default: true
  26252. },
  26253. {
  26254. name: "Macro",
  26255. height: math.unit(100, "feet")
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(6.71, "feet"),
  26264. weight: math.unit(200, "lb"),
  26265. preyCapacity: math.unit(1000000, "people"),
  26266. name: "Front",
  26267. image: {
  26268. source: "./media/characters/gliss/front.svg",
  26269. extra: 2347 / 2231,
  26270. bottom: 113 / 2462
  26271. }
  26272. },
  26273. hammerspaceSize: {
  26274. height: math.unit(6.71 * 717, "feet"),
  26275. weight: math.unit(200, "lb"),
  26276. preyCapacity: math.unit(1000000, "people"),
  26277. name: "Hammerspace Size",
  26278. image: {
  26279. source: "./media/characters/gliss/front.svg",
  26280. extra: 2347 / 2231,
  26281. bottom: 113 / 2462
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Normal",
  26288. height: math.unit(6.71, "feet"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26295. {
  26296. side: {
  26297. height: math.unit(1.44, "m"),
  26298. weight: math.unit(80, "kg"),
  26299. name: "Side",
  26300. image: {
  26301. source: "./media/characters/dune-anderson/side.svg",
  26302. bottom: 49 / 1426
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Wolf-sized",
  26309. height: math.unit(1.44, "meters")
  26310. },
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(5.05, "meters"),
  26314. default: true
  26315. },
  26316. {
  26317. name: "Big",
  26318. height: math.unit(14.4, "meters")
  26319. },
  26320. {
  26321. name: "Huge",
  26322. height: math.unit(144, "meters")
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26328. {
  26329. front: {
  26330. height: math.unit(7, "feet"),
  26331. weight: math.unit(425, "lb"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/hind/front.svg",
  26335. extra: 2091 / 1860,
  26336. bottom: 129 / 2220
  26337. }
  26338. },
  26339. back: {
  26340. height: math.unit(7, "feet"),
  26341. weight: math.unit(425, "lb"),
  26342. name: "Back",
  26343. image: {
  26344. source: "./media/characters/hind/back.svg",
  26345. extra: 2091 / 1860,
  26346. bottom: 24.6 / 2309
  26347. }
  26348. },
  26349. tail: {
  26350. height: math.unit(2.8, "feet"),
  26351. name: "Tail",
  26352. image: {
  26353. source: "./media/characters/hind/tail.svg"
  26354. }
  26355. },
  26356. head: {
  26357. height: math.unit(2.55, "feet"),
  26358. name: "Head",
  26359. image: {
  26360. source: "./media/characters/hind/head.svg"
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "XS",
  26367. height: math.unit(0.7, "feet")
  26368. },
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(7, "feet"),
  26372. default: true
  26373. },
  26374. {
  26375. name: "XL",
  26376. height: math.unit(70, "feet")
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26382. {
  26383. front: {
  26384. height: math.unit(2.1, "meters"),
  26385. weight: math.unit(150, "lb"),
  26386. name: "Front",
  26387. image: {
  26388. source: "./media/characters/tharquench-sizestealer/front.svg",
  26389. extra: 1605/1470,
  26390. bottom: 36/1641
  26391. }
  26392. },
  26393. frontAlt: {
  26394. height: math.unit(2.1, "meters"),
  26395. weight: math.unit(150, "lb"),
  26396. name: "Front (Alt)",
  26397. image: {
  26398. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26399. extra: 2318 / 2063,
  26400. bottom: 93.4 / 2410
  26401. }
  26402. },
  26403. },
  26404. [
  26405. {
  26406. name: "Nano",
  26407. height: math.unit(1, "mm")
  26408. },
  26409. {
  26410. name: "Micro",
  26411. height: math.unit(1, "cm")
  26412. },
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(2.1, "meters"),
  26416. default: true
  26417. },
  26418. ]
  26419. ))
  26420. characterMakers.push(() => makeCharacter(
  26421. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26422. {
  26423. front: {
  26424. height: math.unit(7 + 5 / 12, "feet"),
  26425. weight: math.unit(357, "lb"),
  26426. name: "Front",
  26427. image: {
  26428. source: "./media/characters/solex-draconov/front.svg",
  26429. extra: 1993 / 1865,
  26430. bottom: 117 / 2111
  26431. }
  26432. },
  26433. },
  26434. [
  26435. {
  26436. name: "Natural Height",
  26437. height: math.unit(7 + 5 / 12, "feet"),
  26438. default: true
  26439. },
  26440. {
  26441. name: "Macro",
  26442. height: math.unit(350, "feet")
  26443. },
  26444. {
  26445. name: "Macro+",
  26446. height: math.unit(1000, "feet")
  26447. },
  26448. {
  26449. name: "Megamacro",
  26450. height: math.unit(20, "km")
  26451. },
  26452. {
  26453. name: "Megamacro+",
  26454. height: math.unit(1000, "km")
  26455. },
  26456. {
  26457. name: "Gigamacro",
  26458. height: math.unit(2.5, "Gm")
  26459. },
  26460. {
  26461. name: "Teramacro",
  26462. height: math.unit(15, "Tm")
  26463. },
  26464. {
  26465. name: "Galactic",
  26466. height: math.unit(30, "Zm")
  26467. },
  26468. {
  26469. name: "Universal",
  26470. height: math.unit(21000, "Ym")
  26471. },
  26472. {
  26473. name: "Omniversal",
  26474. height: math.unit(9.861e50, "Ym")
  26475. },
  26476. {
  26477. name: "Existential",
  26478. height: math.unit(1e300, "meters")
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26484. {
  26485. side: {
  26486. height: math.unit(25, "feet"),
  26487. weight: math.unit(90000, "lb"),
  26488. name: "Side",
  26489. image: {
  26490. source: "./media/characters/mandarax/side.svg",
  26491. extra: 614 / 332,
  26492. bottom: 55 / 630
  26493. }
  26494. },
  26495. lounging: {
  26496. height: math.unit(15.4, "feet"),
  26497. weight: math.unit(90000, "lb"),
  26498. name: "Lounging",
  26499. image: {
  26500. source: "./media/characters/mandarax/lounging.svg",
  26501. extra: 817/609,
  26502. bottom: 685/1502
  26503. }
  26504. },
  26505. head: {
  26506. height: math.unit(11.4, "feet"),
  26507. name: "Head",
  26508. image: {
  26509. source: "./media/characters/mandarax/head.svg"
  26510. }
  26511. },
  26512. belly: {
  26513. height: math.unit(33, "feet"),
  26514. name: "Belly",
  26515. preyCapacity: math.unit(500, "people"),
  26516. image: {
  26517. source: "./media/characters/mandarax/belly.svg"
  26518. }
  26519. },
  26520. dick: {
  26521. height: math.unit(8.46, "feet"),
  26522. name: "Dick",
  26523. image: {
  26524. source: "./media/characters/mandarax/dick.svg"
  26525. }
  26526. },
  26527. top: {
  26528. height: math.unit(28, "meters"),
  26529. name: "Top",
  26530. image: {
  26531. source: "./media/characters/mandarax/top.svg"
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Normal",
  26538. height: math.unit(25, "feet"),
  26539. default: true
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26545. {
  26546. front: {
  26547. height: math.unit(5, "feet"),
  26548. weight: math.unit(90, "lb"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/pixil/front.svg",
  26552. extra: 2000 / 1618,
  26553. bottom: 12.3 / 2011
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(5, "feet"),
  26561. default: true
  26562. },
  26563. {
  26564. name: "Megamacro",
  26565. height: math.unit(10, "miles"),
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(7 + 2 / 12, "feet"),
  26574. weight: math.unit(200, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/angel/front.svg",
  26578. extra: 1830 / 1737,
  26579. bottom: 22.6 / 1854,
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(7 + 2 / 12, "feet"),
  26587. default: true
  26588. },
  26589. {
  26590. name: "Macro",
  26591. height: math.unit(1000, "feet")
  26592. },
  26593. {
  26594. name: "Megamacro",
  26595. height: math.unit(2, "miles")
  26596. },
  26597. {
  26598. name: "Gigamacro",
  26599. height: math.unit(20, "earths")
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26605. {
  26606. front: {
  26607. height: math.unit(5, "feet"),
  26608. weight: math.unit(180, "lb"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/mekana/front.svg",
  26612. extra: 1671 / 1605,
  26613. bottom: 3.5 / 1691
  26614. }
  26615. },
  26616. side: {
  26617. height: math.unit(5, "feet"),
  26618. weight: math.unit(180, "lb"),
  26619. name: "Side",
  26620. image: {
  26621. source: "./media/characters/mekana/side.svg",
  26622. extra: 1671 / 1605,
  26623. bottom: 3.5 / 1691
  26624. }
  26625. },
  26626. back: {
  26627. height: math.unit(5, "feet"),
  26628. weight: math.unit(180, "lb"),
  26629. name: "Back",
  26630. image: {
  26631. source: "./media/characters/mekana/back.svg",
  26632. extra: 1671 / 1605,
  26633. bottom: 3.5 / 1691
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(5, "feet"),
  26641. default: true
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(4 + 6 / 12, "feet"),
  26650. weight: math.unit(80, "lb"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/pixie/front.svg",
  26654. extra: 1924 / 1825,
  26655. bottom: 22.4 / 1946
  26656. }
  26657. },
  26658. },
  26659. [
  26660. {
  26661. name: "Normal",
  26662. height: math.unit(4 + 6 / 12, "feet"),
  26663. default: true
  26664. },
  26665. {
  26666. name: "Macro",
  26667. height: math.unit(40, "feet")
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(2.1, "meters"),
  26676. weight: math.unit(200, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/the-lascivious/front.svg",
  26680. extra: 1 / 0.893,
  26681. bottom: 3.5 / 573.7
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Human Scale",
  26688. height: math.unit(2.1, "meters")
  26689. },
  26690. {
  26691. name: "Wolxi Scale",
  26692. height: math.unit(46.2, "m"),
  26693. default: true
  26694. },
  26695. {
  26696. name: "Boinker of Buildings",
  26697. height: math.unit(10, "km")
  26698. },
  26699. {
  26700. name: "Shagger of Skyscrapers",
  26701. height: math.unit(40, "km")
  26702. },
  26703. {
  26704. name: "Banger of Boroughs",
  26705. height: math.unit(4000, "km")
  26706. },
  26707. {
  26708. name: "Screwer of States",
  26709. height: math.unit(100000, "km")
  26710. },
  26711. {
  26712. name: "Pounder of Planets",
  26713. height: math.unit(2000000, "km")
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26719. {
  26720. front: {
  26721. height: math.unit(6, "feet"),
  26722. weight: math.unit(150, "lb"),
  26723. name: "Front",
  26724. image: {
  26725. source: "./media/characters/aj/front.svg",
  26726. extra: 2039 / 1562,
  26727. bottom: 40 / 2079
  26728. }
  26729. },
  26730. },
  26731. [
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(11 + 6 / 12, "feet"),
  26735. default: true
  26736. },
  26737. {
  26738. name: "Megamacro",
  26739. height: math.unit(60, "megameters")
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26745. {
  26746. side: {
  26747. height: math.unit(31 + 8 / 12, "feet"),
  26748. weight: math.unit(75000, "kg"),
  26749. name: "Side",
  26750. image: {
  26751. source: "./media/characters/koros/side.svg",
  26752. extra: 1442 / 1297,
  26753. bottom: 122.7 / 1562
  26754. }
  26755. },
  26756. dicksKingsCrown: {
  26757. height: math.unit(6, "feet"),
  26758. name: "Dicks (King's Crown)",
  26759. image: {
  26760. source: "./media/characters/koros/dicks-kings-crown.svg"
  26761. }
  26762. },
  26763. dicksTailSet: {
  26764. height: math.unit(3, "feet"),
  26765. name: "Dicks (Tail Set)",
  26766. image: {
  26767. source: "./media/characters/koros/dicks-tail-set.svg"
  26768. }
  26769. },
  26770. dickCumming: {
  26771. height: math.unit(7.98, "feet"),
  26772. name: "Dick (Cumming)",
  26773. image: {
  26774. source: "./media/characters/koros/dick-cumming.svg"
  26775. }
  26776. },
  26777. dicksBack: {
  26778. height: math.unit(5.9, "feet"),
  26779. name: "Dicks (Back)",
  26780. image: {
  26781. source: "./media/characters/koros/dicks-back.svg"
  26782. }
  26783. },
  26784. dicksFront: {
  26785. height: math.unit(3.72, "feet"),
  26786. name: "Dicks (Front)",
  26787. image: {
  26788. source: "./media/characters/koros/dicks-front.svg"
  26789. }
  26790. },
  26791. dicksPeeking: {
  26792. height: math.unit(3.0, "feet"),
  26793. name: "Dicks (Peeking)",
  26794. image: {
  26795. source: "./media/characters/koros/dicks-peeking.svg"
  26796. }
  26797. },
  26798. eye: {
  26799. height: math.unit(1.7, "feet"),
  26800. name: "Eye",
  26801. image: {
  26802. source: "./media/characters/koros/eye.svg"
  26803. }
  26804. },
  26805. headFront: {
  26806. height: math.unit(11.69, "feet"),
  26807. name: "Head (Front)",
  26808. image: {
  26809. source: "./media/characters/koros/head-front.svg"
  26810. }
  26811. },
  26812. headSide: {
  26813. height: math.unit(14, "feet"),
  26814. name: "Head (Side)",
  26815. image: {
  26816. source: "./media/characters/koros/head-side.svg"
  26817. }
  26818. },
  26819. leg: {
  26820. height: math.unit(17, "feet"),
  26821. name: "Leg",
  26822. image: {
  26823. source: "./media/characters/koros/leg.svg"
  26824. }
  26825. },
  26826. mawSide: {
  26827. height: math.unit(12.8, "feet"),
  26828. name: "Maw (Side)",
  26829. image: {
  26830. source: "./media/characters/koros/maw-side.svg"
  26831. }
  26832. },
  26833. mawSpitting: {
  26834. height: math.unit(17, "feet"),
  26835. name: "Maw (Spitting)",
  26836. image: {
  26837. source: "./media/characters/koros/maw-spitting.svg"
  26838. }
  26839. },
  26840. slit: {
  26841. height: math.unit(2.8, "feet"),
  26842. name: "Slit",
  26843. image: {
  26844. source: "./media/characters/koros/slit.svg"
  26845. }
  26846. },
  26847. stomach: {
  26848. height: math.unit(6.8, "feet"),
  26849. preyCapacity: math.unit(20, "people"),
  26850. name: "Stomach",
  26851. image: {
  26852. source: "./media/characters/koros/stomach.svg"
  26853. }
  26854. },
  26855. wingspanBottom: {
  26856. height: math.unit(114, "feet"),
  26857. name: "Wingspan (Bottom)",
  26858. image: {
  26859. source: "./media/characters/koros/wingspan-bottom.svg"
  26860. }
  26861. },
  26862. wingspanTop: {
  26863. height: math.unit(104, "feet"),
  26864. name: "Wingspan (Top)",
  26865. image: {
  26866. source: "./media/characters/koros/wingspan-top.svg"
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(31 + 8 / 12, "feet"),
  26874. default: true
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(18 + 5 / 12, "feet"),
  26883. weight: math.unit(3750, "kg"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/vexx/front.svg",
  26887. extra: 426 / 396,
  26888. bottom: 31.5 / 458
  26889. }
  26890. },
  26891. maw: {
  26892. height: math.unit(6, "feet"),
  26893. name: "Maw",
  26894. image: {
  26895. source: "./media/characters/vexx/maw.svg"
  26896. }
  26897. },
  26898. },
  26899. [
  26900. {
  26901. name: "Normal",
  26902. height: math.unit(18 + 5 / 12, "feet"),
  26903. default: true
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(17 + 6 / 12, "feet"),
  26912. weight: math.unit(150, "lb"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/baadra/front.svg",
  26916. extra: 1694/1553,
  26917. bottom: 179/1873
  26918. }
  26919. },
  26920. frontAlt: {
  26921. height: math.unit(17 + 6 / 12, "feet"),
  26922. weight: math.unit(150, "lb"),
  26923. name: "Front (Alt)",
  26924. image: {
  26925. source: "./media/characters/baadra/front-alt.svg",
  26926. extra: 3137 / 2890,
  26927. bottom: 168.4 / 3305
  26928. }
  26929. },
  26930. back: {
  26931. height: math.unit(17 + 6 / 12, "feet"),
  26932. weight: math.unit(150, "lb"),
  26933. name: "Back",
  26934. image: {
  26935. source: "./media/characters/baadra/back.svg",
  26936. extra: 3142 / 2890,
  26937. bottom: 220 / 3371
  26938. }
  26939. },
  26940. head: {
  26941. height: math.unit(5.45, "feet"),
  26942. name: "Head",
  26943. image: {
  26944. source: "./media/characters/baadra/head.svg"
  26945. }
  26946. },
  26947. headAngry: {
  26948. height: math.unit(4.95, "feet"),
  26949. name: "Head (Angry)",
  26950. image: {
  26951. source: "./media/characters/baadra/head-angry.svg"
  26952. }
  26953. },
  26954. headOpen: {
  26955. height: math.unit(6, "feet"),
  26956. name: "Head (Open)",
  26957. image: {
  26958. source: "./media/characters/baadra/head-open.svg"
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(17 + 6 / 12, "feet"),
  26966. default: true
  26967. },
  26968. ]
  26969. ))
  26970. characterMakers.push(() => makeCharacter(
  26971. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26972. {
  26973. front: {
  26974. height: math.unit(7 + 3 / 12, "feet"),
  26975. weight: math.unit(180, "lb"),
  26976. name: "Front",
  26977. image: {
  26978. source: "./media/characters/juri/front.svg",
  26979. extra: 1401 / 1237,
  26980. bottom: 18.5 / 1418
  26981. }
  26982. },
  26983. side: {
  26984. height: math.unit(7 + 3 / 12, "feet"),
  26985. weight: math.unit(180, "lb"),
  26986. name: "Side",
  26987. image: {
  26988. source: "./media/characters/juri/side.svg",
  26989. extra: 1424 / 1242,
  26990. bottom: 18.5 / 1447
  26991. }
  26992. },
  26993. sitting: {
  26994. height: math.unit(6, "feet"),
  26995. weight: math.unit(180, "lb"),
  26996. name: "Sitting",
  26997. image: {
  26998. source: "./media/characters/juri/sitting.svg",
  26999. extra: 1270 / 1143,
  27000. bottom: 100 / 1343
  27001. }
  27002. },
  27003. back: {
  27004. height: math.unit(7 + 3 / 12, "feet"),
  27005. weight: math.unit(180, "lb"),
  27006. name: "Back",
  27007. image: {
  27008. source: "./media/characters/juri/back.svg",
  27009. extra: 1377 / 1240,
  27010. bottom: 23.7 / 1405
  27011. }
  27012. },
  27013. maw: {
  27014. height: math.unit(2.8, "feet"),
  27015. name: "Maw",
  27016. image: {
  27017. source: "./media/characters/juri/maw.svg"
  27018. }
  27019. },
  27020. stomach: {
  27021. height: math.unit(0.89, "feet"),
  27022. preyCapacity: math.unit(4, "liters"),
  27023. name: "Stomach",
  27024. image: {
  27025. source: "./media/characters/juri/stomach.svg"
  27026. }
  27027. },
  27028. },
  27029. [
  27030. {
  27031. name: "Normal",
  27032. height: math.unit(7 + 3 / 12, "feet"),
  27033. default: true
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27039. {
  27040. fox: {
  27041. height: math.unit(5 + 6 / 12, "feet"),
  27042. weight: math.unit(140, "lb"),
  27043. name: "Fox",
  27044. image: {
  27045. source: "./media/characters/maxene-sita/fox.svg",
  27046. extra: 146 / 138,
  27047. bottom: 2.1 / 148.19
  27048. }
  27049. },
  27050. foxLaying: {
  27051. height: math.unit(1.70, "feet"),
  27052. weight: math.unit(140, "lb"),
  27053. name: "Fox (Laying)",
  27054. image: {
  27055. source: "./media/characters/maxene-sita/fox-laying.svg",
  27056. extra: 910 / 572,
  27057. bottom: 71 / 981
  27058. }
  27059. },
  27060. kitsune: {
  27061. height: math.unit(10, "feet"),
  27062. weight: math.unit(800, "lb"),
  27063. name: "Kitsune",
  27064. image: {
  27065. source: "./media/characters/maxene-sita/kitsune.svg",
  27066. extra: 185 / 176,
  27067. bottom: 4.7 / 189.9
  27068. }
  27069. },
  27070. hellhound: {
  27071. height: math.unit(10, "feet"),
  27072. weight: math.unit(700, "lb"),
  27073. name: "Hellhound",
  27074. image: {
  27075. source: "./media/characters/maxene-sita/hellhound.svg",
  27076. extra: 1600 / 1545,
  27077. bottom: 81 / 1681
  27078. }
  27079. },
  27080. },
  27081. [
  27082. {
  27083. name: "Normal",
  27084. height: math.unit(5 + 6 / 12, "feet"),
  27085. default: true
  27086. },
  27087. ]
  27088. ))
  27089. characterMakers.push(() => makeCharacter(
  27090. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27091. {
  27092. front: {
  27093. height: math.unit(3 + 4 / 12, "feet"),
  27094. weight: math.unit(70, "lb"),
  27095. name: "Front",
  27096. image: {
  27097. source: "./media/characters/maia/front.svg",
  27098. extra: 227 / 219.5,
  27099. bottom: 40 / 267
  27100. }
  27101. },
  27102. back: {
  27103. height: math.unit(3 + 4 / 12, "feet"),
  27104. weight: math.unit(70, "lb"),
  27105. name: "Back",
  27106. image: {
  27107. source: "./media/characters/maia/back.svg",
  27108. extra: 237 / 225
  27109. }
  27110. },
  27111. },
  27112. [
  27113. {
  27114. name: "Normal",
  27115. height: math.unit(3 + 4 / 12, "feet"),
  27116. default: true
  27117. },
  27118. ]
  27119. ))
  27120. characterMakers.push(() => makeCharacter(
  27121. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27122. {
  27123. front: {
  27124. height: math.unit(5 + 10 / 12, "feet"),
  27125. weight: math.unit(197, "lb"),
  27126. name: "Front",
  27127. image: {
  27128. source: "./media/characters/jabaro/front.svg",
  27129. extra: 225 / 216,
  27130. bottom: 5.06 / 230
  27131. }
  27132. },
  27133. back: {
  27134. height: math.unit(5 + 10 / 12, "feet"),
  27135. weight: math.unit(197, "lb"),
  27136. name: "Back",
  27137. image: {
  27138. source: "./media/characters/jabaro/back.svg",
  27139. extra: 225 / 219,
  27140. bottom: 1.9 / 227
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(5 + 10 / 12, "feet"),
  27148. default: true
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(5 + 8 / 12, "feet"),
  27157. weight: math.unit(139, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/risa/front.svg",
  27161. extra: 270 / 260,
  27162. bottom: 11.2 / 282
  27163. }
  27164. },
  27165. back: {
  27166. height: math.unit(5 + 8 / 12, "feet"),
  27167. weight: math.unit(139, "lb"),
  27168. name: "Back",
  27169. image: {
  27170. source: "./media/characters/risa/back.svg",
  27171. extra: 264 / 255,
  27172. bottom: 4 / 268
  27173. }
  27174. },
  27175. },
  27176. [
  27177. {
  27178. name: "Normal",
  27179. height: math.unit(5 + 8 / 12, "feet"),
  27180. default: true
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(2 + 11 / 12, "feet"),
  27189. weight: math.unit(30, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/weatley/front.svg",
  27193. bottom: 10.7 / 414,
  27194. extra: 403.5 / 362
  27195. }
  27196. },
  27197. back: {
  27198. height: math.unit(2 + 11 / 12, "feet"),
  27199. weight: math.unit(30, "lb"),
  27200. name: "Back",
  27201. image: {
  27202. source: "./media/characters/weatley/back.svg",
  27203. bottom: 10.7 / 414,
  27204. extra: 403.5 / 362
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(2 + 11 / 12, "feet"),
  27212. default: true
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(5 + 2 / 12, "feet"),
  27221. weight: math.unit(50, "kg"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/mercury-crescent/front.svg",
  27225. extra: 1088 / 1033,
  27226. bottom: 18.9 / 1109
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Normal",
  27233. height: math.unit(5 + 2 / 12, "feet"),
  27234. default: true
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(2, "feet"),
  27243. weight: math.unit(15, "kg"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/diamond-jones/front.svg",
  27247. extra: 727/723,
  27248. bottom: 46/773
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(2, "feet"),
  27256. default: true
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(3, "feet"),
  27265. weight: math.unit(30, "kg"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/sweet-bit/front.svg",
  27269. extra: 675 / 567,
  27270. bottom: 27.7 / 703
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(3, "feet"),
  27278. default: true
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27284. {
  27285. side: {
  27286. height: math.unit(9.178, "feet"),
  27287. weight: math.unit(500, "lb"),
  27288. name: "Side",
  27289. image: {
  27290. source: "./media/characters/umbrazen/side.svg",
  27291. extra: 1730 / 1473,
  27292. bottom: 34.6 / 1765
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(9.178, "feet"),
  27300. default: true
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(10, "feet"),
  27309. weight: math.unit(750, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/arlist/front.svg",
  27313. extra: 961 / 778,
  27314. bottom: 6.2 / 986
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(10, "feet"),
  27322. default: true
  27323. },
  27324. ]
  27325. ))
  27326. characterMakers.push(() => makeCharacter(
  27327. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27328. {
  27329. front: {
  27330. height: math.unit(5 + 1 / 12, "feet"),
  27331. weight: math.unit(110, "lb"),
  27332. name: "Front",
  27333. image: {
  27334. source: "./media/characters/aradel/front.svg",
  27335. extra: 324 / 303,
  27336. bottom: 3.6 / 329.4
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(5 + 1 / 12, "feet"),
  27344. default: true
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27350. {
  27351. dressed: {
  27352. height: math.unit(3 + 8 / 12, "feet"),
  27353. weight: math.unit(50, "lb"),
  27354. name: "Dressed",
  27355. image: {
  27356. source: "./media/characters/serryn/dressed.svg",
  27357. extra: 1792 / 1656,
  27358. bottom: 43.5 / 1840
  27359. }
  27360. },
  27361. nude: {
  27362. height: math.unit(3 + 8 / 12, "feet"),
  27363. weight: math.unit(50, "lb"),
  27364. name: "Nude",
  27365. image: {
  27366. source: "./media/characters/serryn/nude.svg",
  27367. extra: 1792 / 1656,
  27368. bottom: 43.5 / 1840
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Normal",
  27375. height: math.unit(3 + 8 / 12, "feet"),
  27376. default: true
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(7 + 10 / 12, "feet"),
  27385. weight: math.unit(255, "lb"),
  27386. name: "Front",
  27387. image: {
  27388. source: "./media/characters/xavier-thyme/front.svg",
  27389. extra: 3733 / 3642,
  27390. bottom: 131 / 3869
  27391. }
  27392. },
  27393. frontRaven: {
  27394. height: math.unit(7 + 10 / 12, "feet"),
  27395. weight: math.unit(255, "lb"),
  27396. name: "Front (Raven)",
  27397. image: {
  27398. source: "./media/characters/xavier-thyme/front-raven.svg",
  27399. extra: 4385 / 3642,
  27400. bottom: 131 / 4517
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(7 + 10 / 12, "feet"),
  27408. default: true
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27414. {
  27415. front: {
  27416. height: math.unit(1.6, "m"),
  27417. weight: math.unit(50, "kg"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/kiki/front.svg",
  27421. extra: 4682 / 3610,
  27422. bottom: 115 / 4777
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(1.6, "meters"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(50, "m"),
  27439. weight: math.unit(500, "tonnes"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/ryoko/front.svg",
  27443. extra: 4632 / 3926,
  27444. bottom: 193 / 4823
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(50, "meters"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(30, "m"),
  27461. weight: math.unit(22, "tonnes"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/elio/front.svg",
  27465. extra: 4582 / 3720,
  27466. bottom: 236 / 4828
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Normal",
  27473. height: math.unit(30, "meters"),
  27474. default: true
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(6 + 3 / 12, "feet"),
  27483. weight: math.unit(120, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/azura/front.svg",
  27487. extra: 1149 / 1135,
  27488. bottom: 45 / 1194
  27489. }
  27490. },
  27491. frontClothed: {
  27492. height: math.unit(6 + 3 / 12, "feet"),
  27493. weight: math.unit(120, "lb"),
  27494. name: "Front (Clothed)",
  27495. image: {
  27496. source: "./media/characters/azura/front-clothed.svg",
  27497. extra: 1149 / 1135,
  27498. bottom: 45 / 1194
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(6 + 3 / 12, "feet"),
  27506. default: true
  27507. },
  27508. {
  27509. name: "Macro",
  27510. height: math.unit(20 + 6 / 12, "feet")
  27511. },
  27512. {
  27513. name: "Megamacro",
  27514. height: math.unit(12, "miles")
  27515. },
  27516. {
  27517. name: "Gigamacro",
  27518. height: math.unit(10000, "miles")
  27519. },
  27520. {
  27521. name: "Teramacro",
  27522. height: math.unit(900000, "miles")
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27528. {
  27529. front: {
  27530. height: math.unit(12, "feet"),
  27531. weight: math.unit(1, "ton"),
  27532. capacity: math.unit(660000, "gallons"),
  27533. name: "Front",
  27534. image: {
  27535. source: "./media/characters/zeus/front.svg",
  27536. extra: 5005 / 4717,
  27537. bottom: 363 / 5388
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Normal",
  27544. height: math.unit(12, "feet")
  27545. },
  27546. {
  27547. name: "Preferred Size",
  27548. height: math.unit(0.5, "miles"),
  27549. default: true
  27550. },
  27551. {
  27552. name: "Giga Horse",
  27553. height: math.unit(300, "miles")
  27554. },
  27555. {
  27556. name: "Riding Planets",
  27557. height: math.unit(30, "megameters")
  27558. },
  27559. {
  27560. name: "Cosmic Giant",
  27561. height: math.unit(3, "zettameters")
  27562. },
  27563. {
  27564. name: "Breeding God",
  27565. height: math.unit(9.92e22, "yottameters")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27571. {
  27572. side: {
  27573. height: math.unit(9, "feet"),
  27574. weight: math.unit(1500, "kg"),
  27575. name: "Side",
  27576. image: {
  27577. source: "./media/characters/fang/side.svg",
  27578. extra: 924 / 866,
  27579. bottom: 47.5 / 972.3
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(9, "feet"),
  27587. default: true
  27588. },
  27589. {
  27590. name: "Macro",
  27591. height: math.unit(75 + 6 / 12, "feet")
  27592. },
  27593. {
  27594. name: "Teramacro",
  27595. height: math.unit(50000, "miles")
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(10, "feet"),
  27604. weight: math.unit(2, "tons"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/rekhit/front.svg",
  27608. extra: 2796 / 2590,
  27609. bottom: 225 / 3022
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(10, "feet"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Macro",
  27621. height: math.unit(500, "feet")
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(7 + 6.451 / 12, "feet"),
  27630. weight: math.unit(310, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/dahlia-verrick/front.svg",
  27634. extra: 1488 / 1365,
  27635. bottom: 6.2 / 1495
  27636. }
  27637. },
  27638. back: {
  27639. height: math.unit(7 + 6.451 / 12, "feet"),
  27640. weight: math.unit(310, "lb"),
  27641. name: "Back",
  27642. image: {
  27643. source: "./media/characters/dahlia-verrick/back.svg",
  27644. extra: 1472 / 1351,
  27645. bottom: 5.28 / 1477
  27646. }
  27647. },
  27648. frontBusiness: {
  27649. height: math.unit(7 + 6.451 / 12, "feet"),
  27650. weight: math.unit(200, "lb"),
  27651. name: "Front (Business)",
  27652. image: {
  27653. source: "./media/characters/dahlia-verrick/front-business.svg",
  27654. extra: 1478 / 1381,
  27655. bottom: 5.5 / 1484
  27656. }
  27657. },
  27658. frontCasual: {
  27659. height: math.unit(7 + 6.451 / 12, "feet"),
  27660. weight: math.unit(200, "lb"),
  27661. name: "Front (Casual)",
  27662. image: {
  27663. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27664. extra: 1478 / 1381,
  27665. bottom: 5.5 / 1484
  27666. }
  27667. },
  27668. },
  27669. [
  27670. {
  27671. name: "Travel-Sized",
  27672. height: math.unit(7.45, "inches")
  27673. },
  27674. {
  27675. name: "Normal",
  27676. height: math.unit(7 + 6.451 / 12, "feet"),
  27677. default: true
  27678. },
  27679. {
  27680. name: "Hitting the Town",
  27681. height: math.unit(37 + 8 / 12, "feet")
  27682. },
  27683. {
  27684. name: "Stomp in the Suburbs",
  27685. height: math.unit(964 + 9.728 / 12, "feet")
  27686. },
  27687. {
  27688. name: "Sit on the City",
  27689. height: math.unit(61747 + 10.592 / 12, "feet")
  27690. },
  27691. {
  27692. name: "Glomp the Globe",
  27693. height: math.unit(252919327 + 4.832 / 12, "feet")
  27694. },
  27695. ]
  27696. ))
  27697. characterMakers.push(() => makeCharacter(
  27698. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27699. {
  27700. front: {
  27701. height: math.unit(6 + 4 / 12, "feet"),
  27702. weight: math.unit(320, "lb"),
  27703. name: "Front",
  27704. image: {
  27705. source: "./media/characters/balina-mahigan/front.svg",
  27706. extra: 447 / 428,
  27707. bottom: 18 / 466
  27708. }
  27709. },
  27710. back: {
  27711. height: math.unit(6 + 4 / 12, "feet"),
  27712. weight: math.unit(320, "lb"),
  27713. name: "Back",
  27714. image: {
  27715. source: "./media/characters/balina-mahigan/back.svg",
  27716. extra: 445 / 428,
  27717. bottom: 4.07 / 448
  27718. }
  27719. },
  27720. arm: {
  27721. height: math.unit(1.88, "feet"),
  27722. name: "Arm",
  27723. image: {
  27724. source: "./media/characters/balina-mahigan/arm.svg"
  27725. }
  27726. },
  27727. backPort: {
  27728. height: math.unit(0.685, "feet"),
  27729. name: "Back Port",
  27730. image: {
  27731. source: "./media/characters/balina-mahigan/back-port.svg"
  27732. }
  27733. },
  27734. hoofpaw: {
  27735. height: math.unit(1.41, "feet"),
  27736. name: "Hoofpaw",
  27737. image: {
  27738. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27739. }
  27740. },
  27741. leftHandBack: {
  27742. height: math.unit(0.938, "feet"),
  27743. name: "Left Hand (Back)",
  27744. image: {
  27745. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27746. }
  27747. },
  27748. leftHandFront: {
  27749. height: math.unit(0.938, "feet"),
  27750. name: "Left Hand (Front)",
  27751. image: {
  27752. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27753. }
  27754. },
  27755. rightHandBack: {
  27756. height: math.unit(0.95, "feet"),
  27757. name: "Right Hand (Back)",
  27758. image: {
  27759. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27760. }
  27761. },
  27762. rightHandFront: {
  27763. height: math.unit(0.95, "feet"),
  27764. name: "Right Hand (Front)",
  27765. image: {
  27766. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(6 + 4 / 12, "feet"),
  27774. default: true
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27780. {
  27781. front: {
  27782. height: math.unit(6, "feet"),
  27783. weight: math.unit(320, "lb"),
  27784. name: "Front",
  27785. image: {
  27786. source: "./media/characters/balina-mejeri/front.svg",
  27787. extra: 517 / 488,
  27788. bottom: 44.2 / 561
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Normal",
  27795. height: math.unit(6 + 4 / 12, "feet")
  27796. },
  27797. {
  27798. name: "Business",
  27799. height: math.unit(155, "feet"),
  27800. default: true
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27806. {
  27807. kneeling: {
  27808. height: math.unit(6 + 4 / 12, "feet"),
  27809. weight: math.unit(300 * 20, "lb"),
  27810. name: "Kneeling",
  27811. image: {
  27812. source: "./media/characters/balbarian/kneeling.svg",
  27813. extra: 922 / 862,
  27814. bottom: 42.4 / 965
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(6 + 4 / 12, "feet")
  27822. },
  27823. {
  27824. name: "Treasured",
  27825. height: math.unit(18 + 9 / 12, "feet"),
  27826. default: true
  27827. },
  27828. {
  27829. name: "Macro",
  27830. height: math.unit(900, "feet")
  27831. },
  27832. ]
  27833. ))
  27834. characterMakers.push(() => makeCharacter(
  27835. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27836. {
  27837. front: {
  27838. height: math.unit(6 + 4 / 12, "feet"),
  27839. weight: math.unit(325, "lb"),
  27840. name: "Front",
  27841. image: {
  27842. source: "./media/characters/balina-amarini/front.svg",
  27843. extra: 415 / 403,
  27844. bottom: 19 / 433.4
  27845. }
  27846. },
  27847. back: {
  27848. height: math.unit(6 + 4 / 12, "feet"),
  27849. weight: math.unit(325, "lb"),
  27850. name: "Back",
  27851. image: {
  27852. source: "./media/characters/balina-amarini/back.svg",
  27853. extra: 415 / 403,
  27854. bottom: 13.5 / 432
  27855. }
  27856. },
  27857. overdrive: {
  27858. height: math.unit(6 + 4 / 12, "feet"),
  27859. weight: math.unit(400, "lb"),
  27860. name: "Overdrive",
  27861. image: {
  27862. source: "./media/characters/balina-amarini/overdrive.svg",
  27863. extra: 269 / 259,
  27864. bottom: 12 / 282
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Boom",
  27871. height: math.unit(9 + 10 / 12, "feet"),
  27872. default: true
  27873. },
  27874. {
  27875. name: "Macro",
  27876. height: math.unit(280, "feet")
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27882. {
  27883. goddess: {
  27884. height: math.unit(600, "feet"),
  27885. weight: math.unit(2000000, "tons"),
  27886. name: "Goddess",
  27887. image: {
  27888. source: "./media/characters/lady-kubwa/goddess.svg",
  27889. extra: 1240.5 / 1223,
  27890. bottom: 22 / 1263
  27891. }
  27892. },
  27893. goddesser: {
  27894. height: math.unit(900, "feet"),
  27895. weight: math.unit(20000000, "lb"),
  27896. name: "Goddess-er",
  27897. image: {
  27898. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27899. extra: 899 / 888,
  27900. bottom: 12.6 / 912
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Macro",
  27907. height: math.unit(600, "feet"),
  27908. default: true
  27909. },
  27910. {
  27911. name: "Megamacro",
  27912. height: math.unit(250, "miles")
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(7 + 7 / 12, "feet"),
  27921. weight: math.unit(250, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/tala-grovehorn/front.svg",
  27925. extra: 2636 / 2525,
  27926. bottom: 147 / 2781
  27927. }
  27928. },
  27929. back: {
  27930. height: math.unit(7 + 7 / 12, "feet"),
  27931. weight: math.unit(250, "lb"),
  27932. name: "Back",
  27933. image: {
  27934. source: "./media/characters/tala-grovehorn/back.svg",
  27935. extra: 2635 / 2539,
  27936. bottom: 100 / 2732.8
  27937. }
  27938. },
  27939. mouth: {
  27940. height: math.unit(1.15, "feet"),
  27941. name: "Mouth",
  27942. image: {
  27943. source: "./media/characters/tala-grovehorn/mouth.svg"
  27944. }
  27945. },
  27946. dick: {
  27947. height: math.unit(2.36, "feet"),
  27948. name: "Dick",
  27949. image: {
  27950. source: "./media/characters/tala-grovehorn/dick.svg"
  27951. }
  27952. },
  27953. slit: {
  27954. height: math.unit(0.61, "feet"),
  27955. name: "Slit",
  27956. image: {
  27957. source: "./media/characters/tala-grovehorn/slit.svg"
  27958. }
  27959. },
  27960. },
  27961. [
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(7 + 7 / 12, "feet"),
  27969. weight: math.unit(225, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/epona/front.svg",
  27973. extra: 2445 / 2290,
  27974. bottom: 251 / 2696
  27975. }
  27976. },
  27977. back: {
  27978. height: math.unit(7 + 7 / 12, "feet"),
  27979. weight: math.unit(225, "lb"),
  27980. name: "Back",
  27981. image: {
  27982. source: "./media/characters/epona/back.svg",
  27983. extra: 2546 / 2408,
  27984. bottom: 44 / 2589
  27985. }
  27986. },
  27987. genitals: {
  27988. height: math.unit(1.5, "feet"),
  27989. name: "Genitals",
  27990. image: {
  27991. source: "./media/characters/epona/genitals.svg"
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(7 + 7 / 12, "feet"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28005. {
  28006. front: {
  28007. height: math.unit(7, "feet"),
  28008. weight: math.unit(518, "lb"),
  28009. name: "Front",
  28010. image: {
  28011. source: "./media/characters/avia-bloodbourn/front.svg",
  28012. extra: 1466 / 1350,
  28013. bottom: 65 / 1527
  28014. }
  28015. },
  28016. },
  28017. [
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28022. {
  28023. front: {
  28024. height: math.unit(9.35, "feet"),
  28025. weight: math.unit(600, "lb"),
  28026. name: "Front",
  28027. image: {
  28028. source: "./media/characters/amera/front.svg",
  28029. extra: 891 / 818,
  28030. bottom: 30 / 922.7
  28031. }
  28032. },
  28033. back: {
  28034. height: math.unit(9.35, "feet"),
  28035. weight: math.unit(600, "lb"),
  28036. name: "Back",
  28037. image: {
  28038. source: "./media/characters/amera/back.svg",
  28039. extra: 876 / 824,
  28040. bottom: 6.8 / 884
  28041. }
  28042. },
  28043. dick: {
  28044. height: math.unit(2.14, "feet"),
  28045. name: "Dick",
  28046. image: {
  28047. source: "./media/characters/amera/dick.svg"
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(9.35, "feet"),
  28055. default: true
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28061. {
  28062. kneeling: {
  28063. height: math.unit(3 + 4 / 12, "feet"),
  28064. weight: math.unit(90, "lb"),
  28065. name: "Kneeling",
  28066. image: {
  28067. source: "./media/characters/rosewen/kneeling.svg",
  28068. extra: 1835 / 1571,
  28069. bottom: 27.7 / 1862
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(3 + 4 / 12, "feet"),
  28077. default: true
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28083. {
  28084. front: {
  28085. height: math.unit(5 + 10 / 12, "feet"),
  28086. weight: math.unit(200, "lb"),
  28087. name: "Front",
  28088. image: {
  28089. source: "./media/characters/sabah/front.svg",
  28090. extra: 849 / 763,
  28091. bottom: 33.9 / 881
  28092. }
  28093. },
  28094. },
  28095. [
  28096. {
  28097. name: "Normal",
  28098. height: math.unit(5 + 10 / 12, "feet"),
  28099. default: true
  28100. },
  28101. ]
  28102. ))
  28103. characterMakers.push(() => makeCharacter(
  28104. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28105. {
  28106. front: {
  28107. height: math.unit(3 + 5 / 12, "feet"),
  28108. weight: math.unit(40, "kg"),
  28109. name: "Front",
  28110. image: {
  28111. source: "./media/characters/purple-flame/front.svg",
  28112. extra: 1577 / 1412,
  28113. bottom: 97 / 1694
  28114. }
  28115. },
  28116. frontDressed: {
  28117. height: math.unit(3 + 5 / 12, "feet"),
  28118. weight: math.unit(40, "kg"),
  28119. name: "Front (Dressed)",
  28120. image: {
  28121. source: "./media/characters/purple-flame/front-dressed.svg",
  28122. extra: 1577 / 1412,
  28123. bottom: 97 / 1694
  28124. }
  28125. },
  28126. headphones: {
  28127. height: math.unit(0.85, "feet"),
  28128. name: "Headphones",
  28129. image: {
  28130. source: "./media/characters/purple-flame/headphones.svg"
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Really Small",
  28137. height: math.unit(5, "cm")
  28138. },
  28139. {
  28140. name: "Micro",
  28141. height: math.unit(1 + 5 / 12, "feet")
  28142. },
  28143. {
  28144. name: "Normal",
  28145. height: math.unit(3 + 5 / 12, "feet"),
  28146. default: true
  28147. },
  28148. {
  28149. name: "Minimacro",
  28150. height: math.unit(125, "feet")
  28151. },
  28152. {
  28153. name: "Macro",
  28154. height: math.unit(0.5, "miles")
  28155. },
  28156. {
  28157. name: "Megamacro",
  28158. height: math.unit(50, "miles")
  28159. },
  28160. {
  28161. name: "Gigantic",
  28162. height: math.unit(750, "miles")
  28163. },
  28164. {
  28165. name: "Planetary",
  28166. height: math.unit(15000, "miles")
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(14, "feet"),
  28175. weight: math.unit(959, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/arsenal/front.svg",
  28179. extra: 2357 / 2157,
  28180. bottom: 93 / 2458
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(14, "feet"),
  28188. default: true
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28194. {
  28195. front: {
  28196. height: math.unit(6, "feet"),
  28197. weight: math.unit(150, "lb"),
  28198. name: "Front",
  28199. image: {
  28200. source: "./media/characters/adira/front.svg",
  28201. extra: 1078 / 1029,
  28202. bottom: 87 / 1166
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Micro",
  28209. height: math.unit(4, "inches"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Macro",
  28214. height: math.unit(50, "feet")
  28215. },
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28220. {
  28221. front: {
  28222. height: math.unit(16, "feet"),
  28223. weight: math.unit(1000, "lb"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/grim/front.svg",
  28227. extra: 622 / 614,
  28228. bottom: 18.1 / 642
  28229. }
  28230. },
  28231. back: {
  28232. height: math.unit(16, "feet"),
  28233. weight: math.unit(1000, "lb"),
  28234. name: "Back",
  28235. image: {
  28236. source: "./media/characters/grim/back.svg",
  28237. extra: 610.6 / 602,
  28238. bottom: 40.8 / 652
  28239. }
  28240. },
  28241. hunched: {
  28242. height: math.unit(9.75, "feet"),
  28243. weight: math.unit(1000, "lb"),
  28244. name: "Hunched",
  28245. image: {
  28246. source: "./media/characters/grim/hunched.svg",
  28247. extra: 304 / 297,
  28248. bottom: 35.4 / 394
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Normal",
  28255. height: math.unit(16, "feet"),
  28256. default: true
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28262. {
  28263. front: {
  28264. height: math.unit(2.3, "meters"),
  28265. weight: math.unit(300, "lb"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/sinja/front-sfw.svg",
  28269. extra: 1393 / 1294,
  28270. bottom: 70 / 1463
  28271. }
  28272. },
  28273. frontNsfw: {
  28274. height: math.unit(2.3, "meters"),
  28275. weight: math.unit(300, "lb"),
  28276. name: "Front (NSFW)",
  28277. image: {
  28278. source: "./media/characters/sinja/front-nsfw.svg",
  28279. extra: 1393 / 1294,
  28280. bottom: 70 / 1463
  28281. }
  28282. },
  28283. back: {
  28284. height: math.unit(2.3, "meters"),
  28285. weight: math.unit(300, "lb"),
  28286. name: "Back",
  28287. image: {
  28288. source: "./media/characters/sinja/back.svg",
  28289. extra: 1393 / 1294,
  28290. bottom: 70 / 1463
  28291. }
  28292. },
  28293. head: {
  28294. height: math.unit(1.771, "feet"),
  28295. name: "Head",
  28296. image: {
  28297. source: "./media/characters/sinja/head.svg"
  28298. }
  28299. },
  28300. slit: {
  28301. height: math.unit(0.8, "feet"),
  28302. name: "Slit",
  28303. image: {
  28304. source: "./media/characters/sinja/slit.svg"
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(2.3, "meters")
  28312. },
  28313. {
  28314. name: "Macro",
  28315. height: math.unit(91, "meters"),
  28316. default: true
  28317. },
  28318. {
  28319. name: "Megamacro",
  28320. height: math.unit(91440, "meters")
  28321. },
  28322. {
  28323. name: "Gigamacro",
  28324. height: math.unit(60960000, "meters")
  28325. },
  28326. {
  28327. name: "Teramacro",
  28328. height: math.unit(9144000000, "meters")
  28329. },
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28334. {
  28335. front: {
  28336. height: math.unit(1.7, "meters"),
  28337. weight: math.unit(130, "lb"),
  28338. name: "Front",
  28339. image: {
  28340. source: "./media/characters/kyu/front.svg",
  28341. extra: 415 / 395,
  28342. bottom: 5 / 420
  28343. }
  28344. },
  28345. head: {
  28346. height: math.unit(1.75, "feet"),
  28347. name: "Head",
  28348. image: {
  28349. source: "./media/characters/kyu/head.svg"
  28350. }
  28351. },
  28352. foot: {
  28353. height: math.unit(0.81, "feet"),
  28354. name: "Foot",
  28355. image: {
  28356. source: "./media/characters/kyu/foot.svg"
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(1.7, "meters")
  28364. },
  28365. {
  28366. name: "Macro",
  28367. height: math.unit(131, "feet"),
  28368. default: true
  28369. },
  28370. {
  28371. name: "Megamacro",
  28372. height: math.unit(91440, "meters")
  28373. },
  28374. {
  28375. name: "Gigamacro",
  28376. height: math.unit(60960000, "meters")
  28377. },
  28378. {
  28379. name: "Teramacro",
  28380. height: math.unit(9144000000, "meters")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(7 + 1 / 12, "feet"),
  28389. weight: math.unit(250, "lb"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/joey/front.svg",
  28393. extra: 1791 / 1537,
  28394. bottom: 28 / 1816
  28395. }
  28396. },
  28397. },
  28398. [
  28399. {
  28400. name: "Micro",
  28401. height: math.unit(3, "inches")
  28402. },
  28403. {
  28404. name: "Normal",
  28405. height: math.unit(7 + 1 / 12, "feet"),
  28406. default: true
  28407. },
  28408. ]
  28409. ))
  28410. characterMakers.push(() => makeCharacter(
  28411. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28412. {
  28413. front: {
  28414. height: math.unit(165, "cm"),
  28415. weight: math.unit(140, "lb"),
  28416. name: "Front",
  28417. image: {
  28418. source: "./media/characters/sam-evans/front.svg",
  28419. extra: 3417 / 3230,
  28420. bottom: 41.3 / 3417
  28421. }
  28422. },
  28423. frontSixTails: {
  28424. height: math.unit(165, "cm"),
  28425. weight: math.unit(140, "lb"),
  28426. name: "Front-six-tails",
  28427. image: {
  28428. source: "./media/characters/sam-evans/front-six-tails.svg",
  28429. extra: 3417 / 3230,
  28430. bottom: 41.3 / 3417
  28431. }
  28432. },
  28433. back: {
  28434. height: math.unit(165, "cm"),
  28435. weight: math.unit(140, "lb"),
  28436. name: "Back",
  28437. image: {
  28438. source: "./media/characters/sam-evans/back.svg",
  28439. extra: 3227 / 3032,
  28440. bottom: 6.8 / 3234
  28441. }
  28442. },
  28443. face: {
  28444. height: math.unit(0.68, "feet"),
  28445. name: "Face",
  28446. image: {
  28447. source: "./media/characters/sam-evans/face.svg"
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Normal",
  28454. height: math.unit(165, "cm"),
  28455. default: true
  28456. },
  28457. {
  28458. name: "Macro",
  28459. height: math.unit(100, "meters")
  28460. },
  28461. {
  28462. name: "Macro+",
  28463. height: math.unit(800, "meters")
  28464. },
  28465. {
  28466. name: "Macro++",
  28467. height: math.unit(3, "km")
  28468. },
  28469. {
  28470. name: "Macro+++",
  28471. height: math.unit(30, "km")
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(10, "feet"),
  28480. weight: math.unit(750, "lb"),
  28481. name: "Front",
  28482. image: {
  28483. source: "./media/characters/juliet-a/front.svg",
  28484. extra: 1766 / 1720,
  28485. bottom: 43 / 1809
  28486. }
  28487. },
  28488. back: {
  28489. height: math.unit(10, "feet"),
  28490. weight: math.unit(750, "lb"),
  28491. name: "Back",
  28492. image: {
  28493. source: "./media/characters/juliet-a/back.svg",
  28494. extra: 1781 / 1734,
  28495. bottom: 35 / 1810,
  28496. }
  28497. },
  28498. },
  28499. [
  28500. {
  28501. name: "Normal",
  28502. height: math.unit(10, "feet"),
  28503. default: true
  28504. },
  28505. {
  28506. name: "Dragon Form",
  28507. height: math.unit(250, "feet")
  28508. },
  28509. {
  28510. name: "Macro",
  28511. height: math.unit(1000, "feet")
  28512. },
  28513. {
  28514. name: "Megamacro",
  28515. height: math.unit(10000, "feet")
  28516. }
  28517. ]
  28518. ))
  28519. characterMakers.push(() => makeCharacter(
  28520. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28521. {
  28522. regular: {
  28523. height: math.unit(7 + 3 / 12, "feet"),
  28524. weight: math.unit(260, "lb"),
  28525. name: "Regular",
  28526. image: {
  28527. source: "./media/characters/wild/regular.svg",
  28528. extra: 97.45 / 92,
  28529. bottom: 6.8 / 104.3
  28530. }
  28531. },
  28532. biggums: {
  28533. height: math.unit(8 + 6 / 12, "feet"),
  28534. weight: math.unit(425, "lb"),
  28535. name: "Biggums",
  28536. image: {
  28537. source: "./media/characters/wild/biggums.svg",
  28538. extra: 97.45 / 92,
  28539. bottom: 7.5 / 132.34
  28540. }
  28541. },
  28542. mawRegular: {
  28543. height: math.unit(1.24, "feet"),
  28544. name: "Maw (Regular)",
  28545. image: {
  28546. source: "./media/characters/wild/maw.svg"
  28547. }
  28548. },
  28549. mawBiggums: {
  28550. height: math.unit(1.47, "feet"),
  28551. name: "Maw (Biggums)",
  28552. image: {
  28553. source: "./media/characters/wild/maw.svg"
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Normal",
  28560. height: math.unit(7 + 3 / 12, "feet"),
  28561. default: true
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28567. {
  28568. front: {
  28569. height: math.unit(2.5, "meters"),
  28570. weight: math.unit(200, "kg"),
  28571. name: "Front",
  28572. image: {
  28573. source: "./media/characters/vidar/front.svg",
  28574. extra: 2994 / 2795,
  28575. bottom: 56 / 3061
  28576. }
  28577. },
  28578. back: {
  28579. height: math.unit(2.5, "meters"),
  28580. weight: math.unit(200, "kg"),
  28581. name: "Back",
  28582. image: {
  28583. source: "./media/characters/vidar/back.svg",
  28584. extra: 3131 / 2928,
  28585. bottom: 13.5 / 3141.5
  28586. }
  28587. },
  28588. feral: {
  28589. height: math.unit(2.5, "meters"),
  28590. weight: math.unit(2000, "kg"),
  28591. name: "Feral",
  28592. image: {
  28593. source: "./media/characters/vidar/feral.svg",
  28594. extra: 2790 / 1765,
  28595. bottom: 6 / 2796
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(2.5, "meters"),
  28603. default: true
  28604. },
  28605. {
  28606. name: "Macro",
  28607. height: math.unit(100, "meters")
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(5 + 9 / 12, "feet"),
  28616. weight: math.unit(120, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/ash/front.svg",
  28620. extra: 2189 / 1961,
  28621. bottom: 5.2 / 2194
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(5 + 9 / 12, "feet"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(9, "feet"),
  28638. weight: math.unit(10000, "lb"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/gygabite/front.svg",
  28642. bottom: 31.7 / 537.8,
  28643. extra: 505 / 370
  28644. }
  28645. },
  28646. },
  28647. [
  28648. {
  28649. name: "Normal",
  28650. height: math.unit(9, "feet"),
  28651. default: true
  28652. },
  28653. ]
  28654. ))
  28655. characterMakers.push(() => makeCharacter(
  28656. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28657. {
  28658. front: {
  28659. height: math.unit(12, "feet"),
  28660. weight: math.unit(4000, "lb"),
  28661. name: "Front",
  28662. image: {
  28663. source: "./media/characters/p0tat0/front.svg",
  28664. extra: 1065 / 921,
  28665. bottom: 55.7 / 1121.25
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(12, "feet"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28679. {
  28680. side: {
  28681. height: math.unit(6.5, "feet"),
  28682. weight: math.unit(800, "lb"),
  28683. name: "Side",
  28684. image: {
  28685. source: "./media/characters/dusk/side.svg",
  28686. extra: 615 / 373,
  28687. bottom: 53 / 664
  28688. }
  28689. },
  28690. sitting: {
  28691. height: math.unit(7, "feet"),
  28692. weight: math.unit(800, "lb"),
  28693. name: "Sitting",
  28694. image: {
  28695. source: "./media/characters/dusk/sitting.svg",
  28696. extra: 753 / 425,
  28697. bottom: 33 / 774
  28698. }
  28699. },
  28700. head: {
  28701. height: math.unit(6.1, "feet"),
  28702. name: "Head",
  28703. image: {
  28704. source: "./media/characters/dusk/head.svg"
  28705. }
  28706. },
  28707. },
  28708. [
  28709. {
  28710. name: "Normal",
  28711. height: math.unit(7, "feet"),
  28712. default: true
  28713. },
  28714. ]
  28715. ))
  28716. characterMakers.push(() => makeCharacter(
  28717. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28718. {
  28719. front: {
  28720. height: math.unit(15, "feet"),
  28721. weight: math.unit(7000, "lb"),
  28722. name: "Front",
  28723. image: {
  28724. source: "./media/characters/jay-direwolf/front.svg",
  28725. extra: 1810 / 1732,
  28726. bottom: 66 / 1892
  28727. }
  28728. },
  28729. },
  28730. [
  28731. {
  28732. name: "Normal",
  28733. height: math.unit(15, "feet"),
  28734. default: true
  28735. },
  28736. ]
  28737. ))
  28738. characterMakers.push(() => makeCharacter(
  28739. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28740. {
  28741. front: {
  28742. height: math.unit(4 + 9 / 12, "feet"),
  28743. weight: math.unit(130, "lb"),
  28744. name: "Front",
  28745. image: {
  28746. source: "./media/characters/anchovie/front.svg",
  28747. extra: 382 / 350,
  28748. bottom: 25 / 409
  28749. }
  28750. },
  28751. back: {
  28752. height: math.unit(4 + 9 / 12, "feet"),
  28753. weight: math.unit(130, "lb"),
  28754. name: "Back",
  28755. image: {
  28756. source: "./media/characters/anchovie/back.svg",
  28757. extra: 385 / 352,
  28758. bottom: 16.6 / 402
  28759. }
  28760. },
  28761. frontDressed: {
  28762. height: math.unit(4 + 9 / 12, "feet"),
  28763. weight: math.unit(130, "lb"),
  28764. name: "Front (Dressed)",
  28765. image: {
  28766. source: "./media/characters/anchovie/front-dressed.svg",
  28767. extra: 382 / 350,
  28768. bottom: 25 / 409
  28769. }
  28770. },
  28771. backDressed: {
  28772. height: math.unit(4 + 9 / 12, "feet"),
  28773. weight: math.unit(130, "lb"),
  28774. name: "Back (Dressed)",
  28775. image: {
  28776. source: "./media/characters/anchovie/back-dressed.svg",
  28777. extra: 385 / 352,
  28778. bottom: 16.6 / 402
  28779. }
  28780. },
  28781. },
  28782. [
  28783. {
  28784. name: "Micro",
  28785. height: math.unit(6.4, "inches")
  28786. },
  28787. {
  28788. name: "Normal",
  28789. height: math.unit(4 + 9 / 12, "feet"),
  28790. default: true
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(2, "meters"),
  28799. weight: math.unit(180, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/acidrenamon/front.svg",
  28803. extra: 987 / 890,
  28804. bottom: 22.8 / 1009
  28805. }
  28806. },
  28807. back: {
  28808. height: math.unit(2, "meters"),
  28809. weight: math.unit(180, "lb"),
  28810. name: "Back",
  28811. image: {
  28812. source: "./media/characters/acidrenamon/back.svg",
  28813. extra: 983 / 891,
  28814. bottom: 8.4 / 992
  28815. }
  28816. },
  28817. head: {
  28818. height: math.unit(1.92, "feet"),
  28819. name: "Head",
  28820. image: {
  28821. source: "./media/characters/acidrenamon/head.svg"
  28822. }
  28823. },
  28824. rump: {
  28825. height: math.unit(1.72, "feet"),
  28826. name: "Rump",
  28827. image: {
  28828. source: "./media/characters/acidrenamon/rump.svg"
  28829. }
  28830. },
  28831. tail: {
  28832. height: math.unit(4.2, "feet"),
  28833. name: "Tail",
  28834. image: {
  28835. source: "./media/characters/acidrenamon/tail.svg"
  28836. }
  28837. },
  28838. },
  28839. [
  28840. {
  28841. name: "Normal",
  28842. height: math.unit(2, "meters"),
  28843. default: true
  28844. },
  28845. {
  28846. name: "Minimacro",
  28847. height: math.unit(7, "meters")
  28848. },
  28849. {
  28850. name: "Macro",
  28851. height: math.unit(200, "meters")
  28852. },
  28853. {
  28854. name: "Gigamacro",
  28855. height: math.unit(0.2, "earths")
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28861. {
  28862. front: {
  28863. height: math.unit(152, "feet"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/kenzie-lee/front.svg",
  28867. extra: 1869/1774,
  28868. bottom: 128/1997
  28869. }
  28870. },
  28871. side: {
  28872. height: math.unit(86, "feet"),
  28873. name: "Side",
  28874. image: {
  28875. source: "./media/characters/kenzie-lee/side.svg",
  28876. extra: 930/815,
  28877. bottom: 177/1107
  28878. }
  28879. },
  28880. paw: {
  28881. height: math.unit(15, "feet"),
  28882. name: "Paw",
  28883. image: {
  28884. source: "./media/characters/kenzie-lee/paw.svg"
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Kenzie Flea",
  28891. height: math.unit(2, "mm"),
  28892. default: true
  28893. },
  28894. {
  28895. name: "Micro",
  28896. height: math.unit(2, "inches")
  28897. },
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(152, "feet")
  28901. },
  28902. {
  28903. name: "Megamacro",
  28904. height: math.unit(7, "miles")
  28905. },
  28906. {
  28907. name: "Gigamacro",
  28908. height: math.unit(8000, "miles")
  28909. },
  28910. ]
  28911. ))
  28912. characterMakers.push(() => makeCharacter(
  28913. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28914. {
  28915. front: {
  28916. height: math.unit(6, "feet"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/withers/front.svg",
  28920. extra: 1935/1760,
  28921. bottom: 72/2007
  28922. }
  28923. },
  28924. back: {
  28925. height: math.unit(6, "feet"),
  28926. name: "Back",
  28927. image: {
  28928. source: "./media/characters/withers/back.svg",
  28929. extra: 1944/1792,
  28930. bottom: 12/1956
  28931. }
  28932. },
  28933. dressed: {
  28934. height: math.unit(6, "feet"),
  28935. name: "Dressed",
  28936. image: {
  28937. source: "./media/characters/withers/dressed.svg",
  28938. extra: 1937/1765,
  28939. bottom: 73/2010
  28940. }
  28941. },
  28942. phase1: {
  28943. height: math.unit(1.1, "feet"),
  28944. name: "Phase 1",
  28945. image: {
  28946. source: "./media/characters/withers/phase-1.svg",
  28947. extra: 1885/1232,
  28948. bottom: 0/1885
  28949. }
  28950. },
  28951. phase2: {
  28952. height: math.unit(1.05, "feet"),
  28953. name: "Phase 2",
  28954. image: {
  28955. source: "./media/characters/withers/phase-2.svg",
  28956. extra: 1792/1090,
  28957. bottom: 0/1792
  28958. }
  28959. },
  28960. partyWipe: {
  28961. height: math.unit(1.1, "feet"),
  28962. name: "Party Wipe",
  28963. image: {
  28964. source: "./media/characters/withers/party-wipe.svg",
  28965. extra: 1864/1207,
  28966. bottom: 0/1864
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Macro",
  28973. height: math.unit(167, "feet"),
  28974. default: true
  28975. },
  28976. {
  28977. name: "Megamacro",
  28978. height: math.unit(15, "miles")
  28979. }
  28980. ]
  28981. ))
  28982. characterMakers.push(() => makeCharacter(
  28983. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28984. {
  28985. front: {
  28986. height: math.unit(6 + 7 / 12, "feet"),
  28987. weight: math.unit(250, "lb"),
  28988. name: "Front",
  28989. image: {
  28990. source: "./media/characters/nemoskii/front.svg",
  28991. extra: 2270 / 1734,
  28992. bottom: 86 / 2354
  28993. }
  28994. },
  28995. back: {
  28996. height: math.unit(6 + 7 / 12, "feet"),
  28997. weight: math.unit(250, "lb"),
  28998. name: "Back",
  28999. image: {
  29000. source: "./media/characters/nemoskii/back.svg",
  29001. extra: 1845 / 1788,
  29002. bottom: 10.5 / 1852
  29003. }
  29004. },
  29005. head: {
  29006. height: math.unit(1.31, "feet"),
  29007. name: "Head",
  29008. image: {
  29009. source: "./media/characters/nemoskii/head.svg"
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Micro",
  29016. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29017. },
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(6 + 7 / 12, "feet"),
  29021. default: true
  29022. },
  29023. {
  29024. name: "Macro",
  29025. height: math.unit((6 + 7 / 12) * 150, "feet")
  29026. },
  29027. {
  29028. name: "Macro+",
  29029. height: math.unit((6 + 7 / 12) * 500, "feet")
  29030. },
  29031. {
  29032. name: "Megamacro",
  29033. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(1, "mile"),
  29042. weight: math.unit(265261.9, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/shui/front.svg",
  29046. extra: 1633 / 1564,
  29047. bottom: 91.5 / 1726
  29048. }
  29049. },
  29050. },
  29051. [
  29052. {
  29053. name: "Macro",
  29054. height: math.unit(1, "mile"),
  29055. default: true
  29056. },
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(12 + 6 / 12, "feet"),
  29064. weight: math.unit(1342, "lb"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/arokh-takakura/front.svg",
  29068. extra: 1089 / 1043,
  29069. bottom: 77.4 / 1176.7
  29070. }
  29071. },
  29072. back: {
  29073. height: math.unit(12 + 6 / 12, "feet"),
  29074. weight: math.unit(1342, "lb"),
  29075. name: "Back",
  29076. image: {
  29077. source: "./media/characters/arokh-takakura/back.svg",
  29078. extra: 1046 / 1019,
  29079. bottom: 102 / 1150
  29080. }
  29081. },
  29082. },
  29083. [
  29084. {
  29085. name: "Big",
  29086. height: math.unit(12 + 6 / 12, "feet"),
  29087. default: true
  29088. },
  29089. ]
  29090. ))
  29091. characterMakers.push(() => makeCharacter(
  29092. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29093. {
  29094. front: {
  29095. height: math.unit(5 + 6 / 12, "feet"),
  29096. weight: math.unit(150, "lb"),
  29097. name: "Front",
  29098. image: {
  29099. source: "./media/characters/theo/front.svg",
  29100. extra: 1184 / 1131,
  29101. bottom: 7.4 / 1191
  29102. }
  29103. },
  29104. },
  29105. [
  29106. {
  29107. name: "Micro",
  29108. height: math.unit(5, "inches")
  29109. },
  29110. {
  29111. name: "Normal",
  29112. height: math.unit(5 + 6 / 12, "feet"),
  29113. default: true
  29114. },
  29115. ]
  29116. ))
  29117. characterMakers.push(() => makeCharacter(
  29118. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29119. {
  29120. front: {
  29121. height: math.unit(5 + 9 / 12, "feet"),
  29122. weight: math.unit(130, "lb"),
  29123. name: "Front",
  29124. image: {
  29125. source: "./media/characters/cecelia-swift/front.svg",
  29126. extra: 502 / 484,
  29127. bottom: 23 / 523
  29128. }
  29129. },
  29130. back: {
  29131. height: math.unit(5 + 9 / 12, "feet"),
  29132. weight: math.unit(130, "lb"),
  29133. name: "Back",
  29134. image: {
  29135. source: "./media/characters/cecelia-swift/back.svg",
  29136. extra: 499 / 485,
  29137. bottom: 12 / 511
  29138. }
  29139. },
  29140. head: {
  29141. height: math.unit(0.90, "feet"),
  29142. name: "Head",
  29143. image: {
  29144. source: "./media/characters/cecelia-swift/head.svg"
  29145. }
  29146. },
  29147. rump: {
  29148. height: math.unit(1.75, "feet"),
  29149. name: "Rump",
  29150. image: {
  29151. source: "./media/characters/cecelia-swift/rump.svg"
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(5 + 9 / 12, "feet"),
  29159. default: true
  29160. },
  29161. {
  29162. name: "Big",
  29163. height: math.unit(50, "feet")
  29164. },
  29165. {
  29166. name: "Macro",
  29167. height: math.unit(100, "feet")
  29168. },
  29169. {
  29170. name: "Macro+",
  29171. height: math.unit(500, "feet")
  29172. },
  29173. {
  29174. name: "Macro++",
  29175. height: math.unit(1000, "feet")
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29181. {
  29182. front: {
  29183. height: math.unit(6, "feet"),
  29184. weight: math.unit(150, "lb"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/kaunan/front.svg",
  29188. extra: 2890 / 2523,
  29189. bottom: 49 / 2939
  29190. }
  29191. },
  29192. },
  29193. [
  29194. {
  29195. name: "Macro",
  29196. height: math.unit(150, "feet"),
  29197. default: true
  29198. },
  29199. ]
  29200. ))
  29201. characterMakers.push(() => makeCharacter(
  29202. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29203. {
  29204. dressed: {
  29205. height: math.unit(175, "cm"),
  29206. weight: math.unit(60, "kg"),
  29207. name: "Dressed",
  29208. image: {
  29209. source: "./media/characters/fei/dressed.svg",
  29210. extra: 1402/1278,
  29211. bottom: 27/1429
  29212. }
  29213. },
  29214. nude: {
  29215. height: math.unit(175, "cm"),
  29216. weight: math.unit(60, "kg"),
  29217. name: "Nude",
  29218. image: {
  29219. source: "./media/characters/fei/nude.svg",
  29220. extra: 1402/1278,
  29221. bottom: 27/1429
  29222. }
  29223. },
  29224. heels: {
  29225. height: math.unit(0.466, "feet"),
  29226. name: "Heels",
  29227. image: {
  29228. source: "./media/characters/fei/heels.svg",
  29229. extra: 156/152,
  29230. bottom: 28/184
  29231. }
  29232. },
  29233. },
  29234. [
  29235. {
  29236. name: "Mortal",
  29237. height: math.unit(175, "cm")
  29238. },
  29239. {
  29240. name: "Normal",
  29241. height: math.unit(3500, "m")
  29242. },
  29243. {
  29244. name: "Stroll",
  29245. height: math.unit(18.4, "km"),
  29246. default: true
  29247. },
  29248. {
  29249. name: "Showoff",
  29250. height: math.unit(175, "km")
  29251. },
  29252. ]
  29253. ))
  29254. characterMakers.push(() => makeCharacter(
  29255. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29256. {
  29257. front: {
  29258. height: math.unit(7, "feet"),
  29259. weight: math.unit(1000, "kg"),
  29260. name: "Front",
  29261. image: {
  29262. source: "./media/characters/edrax/front.svg",
  29263. extra: 2838 / 2550,
  29264. bottom: 130 / 2968
  29265. }
  29266. },
  29267. },
  29268. [
  29269. {
  29270. name: "Small",
  29271. height: math.unit(7, "feet")
  29272. },
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(1500, "meters")
  29276. },
  29277. {
  29278. name: "Mega",
  29279. height: math.unit(12000000, "km"),
  29280. default: true
  29281. },
  29282. {
  29283. name: "Megamacro",
  29284. height: math.unit(10600000, "lightyears")
  29285. },
  29286. {
  29287. name: "Hypermacro",
  29288. height: math.unit(256, "yottameters")
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29294. {
  29295. front: {
  29296. height: math.unit(10, "feet"),
  29297. weight: math.unit(750, "lb"),
  29298. name: "Front",
  29299. image: {
  29300. source: "./media/characters/clove/front.svg",
  29301. extra: 1918/1751,
  29302. bottom: 52/1970
  29303. }
  29304. },
  29305. back: {
  29306. height: math.unit(10, "feet"),
  29307. weight: math.unit(750, "lb"),
  29308. name: "Back",
  29309. image: {
  29310. source: "./media/characters/clove/back.svg",
  29311. extra: 1912/1747,
  29312. bottom: 50/1962
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(10, "feet"),
  29320. default: true
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(4, "feet"),
  29329. weight: math.unit(50, "lb"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/alex-rabbit/front.svg",
  29333. extra: 507 / 458,
  29334. bottom: 18.5 / 527
  29335. }
  29336. },
  29337. back: {
  29338. height: math.unit(4, "feet"),
  29339. weight: math.unit(50, "lb"),
  29340. name: "Back",
  29341. image: {
  29342. source: "./media/characters/alex-rabbit/back.svg",
  29343. extra: 502 / 460,
  29344. bottom: 18.9 / 521
  29345. }
  29346. },
  29347. },
  29348. [
  29349. {
  29350. name: "Normal",
  29351. height: math.unit(4, "feet"),
  29352. default: true
  29353. },
  29354. ]
  29355. ))
  29356. characterMakers.push(() => makeCharacter(
  29357. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29358. {
  29359. front: {
  29360. height: math.unit(1 + 3 / 12, "feet"),
  29361. weight: math.unit(80, "lb"),
  29362. name: "Front",
  29363. image: {
  29364. source: "./media/characters/zander-rose/front.svg",
  29365. extra: 916 / 797,
  29366. bottom: 17 / 933
  29367. }
  29368. },
  29369. back: {
  29370. height: math.unit(1 + 3 / 12, "feet"),
  29371. weight: math.unit(80, "lb"),
  29372. name: "Back",
  29373. image: {
  29374. source: "./media/characters/zander-rose/back.svg",
  29375. extra: 903 / 779,
  29376. bottom: 31 / 934
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Normal",
  29383. height: math.unit(1 + 3 / 12, "feet"),
  29384. default: true
  29385. },
  29386. ]
  29387. ))
  29388. characterMakers.push(() => makeCharacter(
  29389. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29390. {
  29391. anthro: {
  29392. height: math.unit(6, "feet"),
  29393. weight: math.unit(150, "lb"),
  29394. name: "Anthro",
  29395. image: {
  29396. source: "./media/characters/razz/anthro.svg",
  29397. extra: 1437 / 1343,
  29398. bottom: 48 / 1485
  29399. }
  29400. },
  29401. feral: {
  29402. height: math.unit(6, "feet"),
  29403. weight: math.unit(150, "lb"),
  29404. name: "Feral",
  29405. image: {
  29406. source: "./media/characters/razz/feral.svg",
  29407. extra: 2569 / 1385,
  29408. bottom: 95 / 2664
  29409. }
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Normal",
  29415. height: math.unit(6, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(9 + 4 / 12, "feet"),
  29425. weight: math.unit(500, "lb"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/morrigan/front.svg",
  29429. extra: 2707 / 2579,
  29430. bottom: 156 / 2863
  29431. }
  29432. },
  29433. },
  29434. [
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(9 + 4 / 12, "feet"),
  29438. default: true
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29444. {
  29445. front: {
  29446. height: math.unit(5, "stories"),
  29447. weight: math.unit(4000, "lb"),
  29448. name: "Front",
  29449. image: {
  29450. source: "./media/characters/jenene/front.svg",
  29451. extra: 1780 / 1710,
  29452. bottom: 57 / 1837
  29453. }
  29454. },
  29455. },
  29456. [
  29457. {
  29458. name: "Normal",
  29459. height: math.unit(5, "stories"),
  29460. default: true
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29466. {
  29467. taurSfw: {
  29468. height: math.unit(10, "meters"),
  29469. weight: math.unit(17500, "kg"),
  29470. name: "Taur",
  29471. image: {
  29472. source: "./media/characters/faey/taur-sfw.svg",
  29473. extra: 1200 / 968,
  29474. bottom: 41 / 1241
  29475. }
  29476. },
  29477. chestmaw: {
  29478. height: math.unit(2.01, "meters"),
  29479. name: "Chestmaw",
  29480. image: {
  29481. source: "./media/characters/faey/chestmaw.svg"
  29482. }
  29483. },
  29484. foot: {
  29485. height: math.unit(2.43, "meters"),
  29486. name: "Foot",
  29487. image: {
  29488. source: "./media/characters/faey/foot.svg"
  29489. }
  29490. },
  29491. jaws: {
  29492. height: math.unit(1.66, "meters"),
  29493. name: "Jaws",
  29494. image: {
  29495. source: "./media/characters/faey/jaws.svg"
  29496. }
  29497. },
  29498. tongues: {
  29499. height: math.unit(2.01, "meters"),
  29500. name: "Tongues",
  29501. image: {
  29502. source: "./media/characters/faey/tongues.svg"
  29503. }
  29504. },
  29505. },
  29506. [
  29507. {
  29508. name: "Small",
  29509. height: math.unit(10, "meters"),
  29510. default: true
  29511. },
  29512. {
  29513. name: "Big",
  29514. height: math.unit(500000, "km")
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(7, "feet"),
  29523. weight: math.unit(275, "lb"),
  29524. name: "Front",
  29525. image: {
  29526. source: "./media/characters/roku/front.svg",
  29527. extra: 903 / 878,
  29528. bottom: 37 / 940
  29529. }
  29530. },
  29531. },
  29532. [
  29533. {
  29534. name: "Normal",
  29535. height: math.unit(7, "feet"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Macro",
  29540. height: math.unit(500, "feet")
  29541. },
  29542. {
  29543. name: "Megamacro",
  29544. height: math.unit(200, "miles")
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(6 + 2 / 12, "feet"),
  29553. weight: math.unit(150, "lb"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/lira/front.svg",
  29557. extra: 1727 / 1605,
  29558. bottom: 26 / 1753
  29559. }
  29560. },
  29561. back: {
  29562. height: math.unit(6 + 2 / 12, "feet"),
  29563. weight: math.unit(150, "lb"),
  29564. name: "Back",
  29565. image: {
  29566. source: "./media/characters/lira/back.svg",
  29567. extra: 1713/1621,
  29568. bottom: 20/1733
  29569. }
  29570. },
  29571. hand: {
  29572. height: math.unit(0.75, "feet"),
  29573. name: "Hand",
  29574. image: {
  29575. source: "./media/characters/lira/hand.svg"
  29576. }
  29577. },
  29578. maw: {
  29579. height: math.unit(0.65, "feet"),
  29580. name: "Maw",
  29581. image: {
  29582. source: "./media/characters/lira/maw.svg"
  29583. }
  29584. },
  29585. pawDigi: {
  29586. height: math.unit(1.6, "feet"),
  29587. name: "Paw Digi",
  29588. image: {
  29589. source: "./media/characters/lira/paw-digi.svg"
  29590. }
  29591. },
  29592. pawPlanti: {
  29593. height: math.unit(1.4, "feet"),
  29594. name: "Paw Planti",
  29595. image: {
  29596. source: "./media/characters/lira/paw-planti.svg"
  29597. }
  29598. },
  29599. },
  29600. [
  29601. {
  29602. name: "Normal",
  29603. height: math.unit(6 + 2 / 12, "feet"),
  29604. default: true
  29605. },
  29606. {
  29607. name: "Macro",
  29608. height: math.unit(100, "feet")
  29609. },
  29610. {
  29611. name: "Macro²",
  29612. height: math.unit(1600, "feet")
  29613. },
  29614. {
  29615. name: "Planetary",
  29616. height: math.unit(20, "earths")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(6, "feet"),
  29625. weight: math.unit(150, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/hadjet/front.svg",
  29629. extra: 1480 / 1346,
  29630. bottom: 26 / 1506
  29631. }
  29632. },
  29633. frontNsfw: {
  29634. height: math.unit(6, "feet"),
  29635. weight: math.unit(150, "lb"),
  29636. name: "Front (NSFW)",
  29637. image: {
  29638. source: "./media/characters/hadjet/front-nsfw.svg",
  29639. extra: 1440 / 1358,
  29640. bottom: 52 / 1492
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Macro",
  29647. height: math.unit(10, "stories"),
  29648. default: true
  29649. },
  29650. {
  29651. name: "Megamacro",
  29652. height: math.unit(1.5, "miles")
  29653. },
  29654. {
  29655. name: "Megamacro+",
  29656. height: math.unit(5, "miles")
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29662. {
  29663. side: {
  29664. height: math.unit(106, "feet"),
  29665. weight: math.unit(500, "tonnes"),
  29666. name: "Side",
  29667. image: {
  29668. source: "./media/characters/kodran/side.svg",
  29669. extra: 553 / 480,
  29670. bottom: 33 / 586
  29671. }
  29672. },
  29673. front: {
  29674. height: math.unit(132, "feet"),
  29675. weight: math.unit(500, "tonnes"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/kodran/front.svg",
  29679. extra: 667 / 643,
  29680. bottom: 42 / 709
  29681. }
  29682. },
  29683. flying: {
  29684. height: math.unit(350, "feet"),
  29685. weight: math.unit(500, "tonnes"),
  29686. name: "Flying",
  29687. image: {
  29688. source: "./media/characters/kodran/flying.svg"
  29689. }
  29690. },
  29691. foot: {
  29692. height: math.unit(33, "feet"),
  29693. name: "Foot",
  29694. image: {
  29695. source: "./media/characters/kodran/foot.svg"
  29696. }
  29697. },
  29698. footFront: {
  29699. height: math.unit(19, "feet"),
  29700. name: "Foot (Front)",
  29701. image: {
  29702. source: "./media/characters/kodran/foot-front.svg",
  29703. extra: 261 / 261,
  29704. bottom: 91 / 352
  29705. }
  29706. },
  29707. headFront: {
  29708. height: math.unit(53, "feet"),
  29709. name: "Head (Front)",
  29710. image: {
  29711. source: "./media/characters/kodran/head-front.svg"
  29712. }
  29713. },
  29714. headSide: {
  29715. height: math.unit(65, "feet"),
  29716. name: "Head (Side)",
  29717. image: {
  29718. source: "./media/characters/kodran/head-side.svg"
  29719. }
  29720. },
  29721. throat: {
  29722. height: math.unit(79, "feet"),
  29723. name: "Throat",
  29724. image: {
  29725. source: "./media/characters/kodran/throat.svg"
  29726. }
  29727. },
  29728. },
  29729. [
  29730. {
  29731. name: "Large",
  29732. height: math.unit(106, "feet"),
  29733. default: true
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29739. {
  29740. side: {
  29741. height: math.unit(11, "feet"),
  29742. weight: math.unit(150, "lb"),
  29743. name: "Side",
  29744. image: {
  29745. source: "./media/characters/pyxaron/side.svg",
  29746. extra: 305 / 195,
  29747. bottom: 17 / 322
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Normal",
  29754. height: math.unit(11, "feet"),
  29755. default: true
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29761. {
  29762. front: {
  29763. height: math.unit(6, "feet"),
  29764. weight: math.unit(150, "lb"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/meep/front.svg",
  29768. extra: 88 / 80,
  29769. bottom: 6 / 94
  29770. }
  29771. },
  29772. },
  29773. [
  29774. {
  29775. name: "Fun Sized",
  29776. height: math.unit(2, "inches"),
  29777. default: true
  29778. },
  29779. {
  29780. name: "Friend Sized",
  29781. height: math.unit(8, "inches")
  29782. },
  29783. ]
  29784. ))
  29785. characterMakers.push(() => makeCharacter(
  29786. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29787. {
  29788. front: {
  29789. height: math.unit(15, "feet"),
  29790. weight: math.unit(2500, "lb"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/holly-rabbit/front.svg",
  29794. extra: 1433 / 1233,
  29795. bottom: 125 / 1558
  29796. }
  29797. },
  29798. dick: {
  29799. height: math.unit(4.6, "feet"),
  29800. name: "Dick",
  29801. image: {
  29802. source: "./media/characters/holly-rabbit/dick.svg"
  29803. }
  29804. },
  29805. },
  29806. [
  29807. {
  29808. name: "Normal",
  29809. height: math.unit(15, "feet"),
  29810. default: true
  29811. },
  29812. {
  29813. name: "Macro",
  29814. height: math.unit(250, "feet")
  29815. },
  29816. {
  29817. name: "Macro+",
  29818. height: math.unit(2500, "feet")
  29819. },
  29820. ]
  29821. ))
  29822. characterMakers.push(() => makeCharacter(
  29823. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29824. {
  29825. front: {
  29826. height: math.unit(3.02, "meters"),
  29827. weight: math.unit(500, "kg"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/drena/front.svg",
  29831. extra: 282 / 243,
  29832. bottom: 8 / 290
  29833. }
  29834. },
  29835. side: {
  29836. height: math.unit(3.02, "meters"),
  29837. weight: math.unit(500, "kg"),
  29838. name: "Side",
  29839. image: {
  29840. source: "./media/characters/drena/side.svg",
  29841. extra: 280 / 245,
  29842. bottom: 10 / 290
  29843. }
  29844. },
  29845. back: {
  29846. height: math.unit(3.02, "meters"),
  29847. weight: math.unit(500, "kg"),
  29848. name: "Back",
  29849. image: {
  29850. source: "./media/characters/drena/back.svg",
  29851. extra: 278 / 243,
  29852. bottom: 2 / 280
  29853. }
  29854. },
  29855. foot: {
  29856. height: math.unit(0.75, "meters"),
  29857. name: "Foot",
  29858. image: {
  29859. source: "./media/characters/drena/foot.svg"
  29860. }
  29861. },
  29862. maw: {
  29863. height: math.unit(0.82, "meters"),
  29864. name: "Maw",
  29865. image: {
  29866. source: "./media/characters/drena/maw.svg"
  29867. }
  29868. },
  29869. eating: {
  29870. height: math.unit(0.75, "meters"),
  29871. name: "Eating",
  29872. image: {
  29873. source: "./media/characters/drena/eating.svg"
  29874. }
  29875. },
  29876. rump: {
  29877. height: math.unit(0.93, "meters"),
  29878. name: "Rump",
  29879. image: {
  29880. source: "./media/characters/drena/rump.svg"
  29881. }
  29882. },
  29883. },
  29884. [
  29885. {
  29886. name: "Normal",
  29887. height: math.unit(3.02, "meters"),
  29888. default: true
  29889. },
  29890. ]
  29891. ))
  29892. characterMakers.push(() => makeCharacter(
  29893. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29894. {
  29895. front: {
  29896. height: math.unit(6 + 4 / 12, "feet"),
  29897. weight: math.unit(250, "lb"),
  29898. name: "Front",
  29899. image: {
  29900. source: "./media/characters/remmyzilla/front.svg",
  29901. extra: 4033 / 3588,
  29902. bottom: 123 / 4156
  29903. }
  29904. },
  29905. back: {
  29906. height: math.unit(6 + 4 / 12, "feet"),
  29907. weight: math.unit(250, "lb"),
  29908. name: "Back",
  29909. image: {
  29910. source: "./media/characters/remmyzilla/back.svg",
  29911. extra: 2687 / 2555,
  29912. bottom: 48 / 2735
  29913. }
  29914. },
  29915. paw: {
  29916. height: math.unit(1.73, "feet"),
  29917. name: "Paw",
  29918. image: {
  29919. source: "./media/characters/remmyzilla/paw.svg"
  29920. },
  29921. extraAttributes: {
  29922. "toeSize": {
  29923. name: "Toe Size",
  29924. power: 2,
  29925. type: "area",
  29926. base: math.unit(0.0035, "m^2")
  29927. },
  29928. "padSize": {
  29929. name: "Pad Size",
  29930. power: 2,
  29931. type: "area",
  29932. base: math.unit(0.015, "m^2")
  29933. },
  29934. "pawsize": {
  29935. name: "Paw Size",
  29936. power: 2,
  29937. type: "area",
  29938. base: math.unit(0.072, "m^2")
  29939. },
  29940. }
  29941. },
  29942. maw: {
  29943. height: math.unit(1.73, "feet"),
  29944. name: "Maw",
  29945. image: {
  29946. source: "./media/characters/remmyzilla/maw.svg"
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Normal",
  29953. height: math.unit(6 + 4 / 12, "feet")
  29954. },
  29955. {
  29956. name: "Minimacro",
  29957. height: math.unit(12 + 8 / 12, "feet")
  29958. },
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(640, "feet"),
  29962. default: true
  29963. },
  29964. {
  29965. name: "Megamacro",
  29966. height: math.unit(6400, "feet")
  29967. },
  29968. {
  29969. name: "Gigamacro",
  29970. height: math.unit(64000, "miles")
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29976. {
  29977. front: {
  29978. height: math.unit(2.5, "meters"),
  29979. weight: math.unit(300, "lb"),
  29980. name: "Front",
  29981. image: {
  29982. source: "./media/characters/lawrence/front.svg",
  29983. extra: 357 / 335,
  29984. bottom: 30 / 387
  29985. }
  29986. },
  29987. back: {
  29988. height: math.unit(2.5, "meters"),
  29989. weight: math.unit(300, "lb"),
  29990. name: "Back",
  29991. image: {
  29992. source: "./media/characters/lawrence/back.svg",
  29993. extra: 357 / 338,
  29994. bottom: 16 / 373
  29995. }
  29996. },
  29997. head: {
  29998. height: math.unit(0.9, "meter"),
  29999. name: "Head",
  30000. image: {
  30001. source: "./media/characters/lawrence/head.svg"
  30002. }
  30003. },
  30004. maw: {
  30005. height: math.unit(0.7, "meter"),
  30006. name: "Maw",
  30007. image: {
  30008. source: "./media/characters/lawrence/maw.svg"
  30009. }
  30010. },
  30011. footBottom: {
  30012. height: math.unit(0.5, "meter"),
  30013. name: "Foot (Bottom)",
  30014. image: {
  30015. source: "./media/characters/lawrence/foot-bottom.svg"
  30016. }
  30017. },
  30018. footTop: {
  30019. height: math.unit(0.5, "meter"),
  30020. name: "Foot (Top)",
  30021. image: {
  30022. source: "./media/characters/lawrence/foot-top.svg"
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(2.5, "meters"),
  30030. default: true
  30031. },
  30032. {
  30033. name: "Macro",
  30034. height: math.unit(95, "meters")
  30035. },
  30036. {
  30037. name: "Megamacro",
  30038. height: math.unit(150, "km")
  30039. },
  30040. ]
  30041. ))
  30042. characterMakers.push(() => makeCharacter(
  30043. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30044. {
  30045. front: {
  30046. height: math.unit(4.2, "meters"),
  30047. name: "Front",
  30048. image: {
  30049. source: "./media/characters/sydney/front.svg",
  30050. extra: 1323 / 1277,
  30051. bottom: 111 / 1434
  30052. }
  30053. },
  30054. },
  30055. [
  30056. {
  30057. name: "Normal",
  30058. height: math.unit(4.2, "meters"),
  30059. default: true
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30065. {
  30066. back: {
  30067. height: math.unit(201, "feet"),
  30068. name: "Back",
  30069. image: {
  30070. source: "./media/characters/jessica/back.svg",
  30071. extra: 273 / 259,
  30072. bottom: 7 / 280
  30073. }
  30074. },
  30075. },
  30076. [
  30077. {
  30078. name: "Normal",
  30079. height: math.unit(201, "feet"),
  30080. default: true
  30081. },
  30082. {
  30083. name: "Megamacro",
  30084. height: math.unit(8, "miles")
  30085. },
  30086. ]
  30087. ))
  30088. characterMakers.push(() => makeCharacter(
  30089. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30090. {
  30091. side: {
  30092. height: math.unit(5.6, "m"),
  30093. weight: math.unit(8000, "kg"),
  30094. name: "Side",
  30095. image: {
  30096. source: "./media/characters/victoria/side.svg",
  30097. extra: 1542/1229,
  30098. bottom: 124/1666
  30099. }
  30100. },
  30101. maw: {
  30102. height: math.unit(7.14, "feet"),
  30103. name: "Maw",
  30104. image: {
  30105. source: "./media/characters/victoria/maw.svg"
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Normal",
  30112. height: math.unit(5.6, "m"),
  30113. default: true
  30114. },
  30115. ]
  30116. ))
  30117. characterMakers.push(() => makeCharacter(
  30118. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30119. {
  30120. front: {
  30121. height: math.unit(5 + 6 / 12, "feet"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/cat/front.svg",
  30125. extra: 1449/1295,
  30126. bottom: 34/1483
  30127. },
  30128. form: "cat",
  30129. default: true
  30130. },
  30131. back: {
  30132. height: math.unit(5 + 6 / 12, "feet"),
  30133. name: "Back",
  30134. image: {
  30135. source: "./media/characters/cat/back.svg",
  30136. extra: 1466/1301,
  30137. bottom: 19/1485
  30138. },
  30139. form: "cat"
  30140. },
  30141. taur: {
  30142. height: math.unit(7, "feet"),
  30143. name: "Taur",
  30144. image: {
  30145. source: "./media/characters/cat/taur.svg",
  30146. extra: 1389/1233,
  30147. bottom: 83/1472
  30148. },
  30149. form: "taur",
  30150. default: true
  30151. },
  30152. lucarioFront: {
  30153. height: math.unit(4, "feet"),
  30154. name: "Lucario (Front)",
  30155. image: {
  30156. source: "./media/characters/cat/lucario-front.svg",
  30157. extra: 1149/1019,
  30158. bottom: 84/1233
  30159. },
  30160. form: "lucario",
  30161. default: true
  30162. },
  30163. lucarioBack: {
  30164. height: math.unit(4, "feet"),
  30165. name: "Lucario (Back)",
  30166. image: {
  30167. source: "./media/characters/cat/lucario-back.svg",
  30168. extra: 1190/1059,
  30169. bottom: 33/1223
  30170. },
  30171. form: "lucario"
  30172. },
  30173. megaLucario: {
  30174. height: math.unit(4, "feet"),
  30175. name: "Mega Lucario",
  30176. image: {
  30177. source: "./media/characters/cat/mega-lucario.svg",
  30178. extra: 1515 / 1319,
  30179. bottom: 63 / 1578
  30180. },
  30181. form: "lucario"
  30182. },
  30183. nickit: {
  30184. height: math.unit(2, "feet"),
  30185. name: "Nickit",
  30186. image: {
  30187. source: "./media/characters/cat/nickit.svg",
  30188. extra: 1980 / 1585,
  30189. bottom: 102 / 2082
  30190. },
  30191. form: "nickit",
  30192. default: true
  30193. },
  30194. lopunnyFront: {
  30195. height: math.unit(5, "feet"),
  30196. name: "Lopunny (Front)",
  30197. image: {
  30198. source: "./media/characters/cat/lopunny-front.svg",
  30199. extra: 1782 / 1469,
  30200. bottom: 38 / 1820
  30201. },
  30202. form: "lopunny",
  30203. default: true
  30204. },
  30205. lopunnyBack: {
  30206. height: math.unit(5, "feet"),
  30207. name: "Lopunny (Back)",
  30208. image: {
  30209. source: "./media/characters/cat/lopunny-back.svg",
  30210. extra: 1660 / 1490,
  30211. bottom: 25 / 1685
  30212. },
  30213. form: "lopunny"
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Really small",
  30219. height: math.unit(1, "nm")
  30220. },
  30221. {
  30222. name: "Micro",
  30223. height: math.unit(5, "inches")
  30224. },
  30225. {
  30226. name: "Normal",
  30227. height: math.unit(5 + 6 / 12, "feet"),
  30228. default: true
  30229. },
  30230. {
  30231. name: "Macro",
  30232. height: math.unit(50, "feet")
  30233. },
  30234. {
  30235. name: "Macro+",
  30236. height: math.unit(150, "feet")
  30237. },
  30238. {
  30239. name: "Megamacro",
  30240. height: math.unit(100, "miles")
  30241. },
  30242. ]
  30243. ))
  30244. characterMakers.push(() => makeCharacter(
  30245. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30246. {
  30247. front: {
  30248. height: math.unit(63.4, "meters"),
  30249. weight: math.unit(3.28349e+6, "kilograms"),
  30250. name: "Front",
  30251. image: {
  30252. source: "./media/characters/kirina-violet/front.svg",
  30253. extra: 2812 / 2725,
  30254. bottom: 0 / 2812
  30255. }
  30256. },
  30257. back: {
  30258. height: math.unit(63.4, "meters"),
  30259. weight: math.unit(3.28349e+6, "kilograms"),
  30260. name: "Back",
  30261. image: {
  30262. source: "./media/characters/kirina-violet/back.svg",
  30263. extra: 2812 / 2725,
  30264. bottom: 0 / 2812
  30265. }
  30266. },
  30267. mouth: {
  30268. height: math.unit(4.35, "meters"),
  30269. name: "Mouth",
  30270. image: {
  30271. source: "./media/characters/kirina-violet/mouth.svg"
  30272. }
  30273. },
  30274. paw: {
  30275. height: math.unit(5.6, "meters"),
  30276. name: "Paw",
  30277. image: {
  30278. source: "./media/characters/kirina-violet/paw.svg"
  30279. }
  30280. },
  30281. tail: {
  30282. height: math.unit(18, "meters"),
  30283. name: "Tail",
  30284. image: {
  30285. source: "./media/characters/kirina-violet/tail.svg"
  30286. }
  30287. },
  30288. },
  30289. [
  30290. {
  30291. name: "Macro",
  30292. height: math.unit(63.4, "meters"),
  30293. default: true
  30294. },
  30295. ]
  30296. ))
  30297. characterMakers.push(() => makeCharacter(
  30298. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30299. {
  30300. front: {
  30301. height: math.unit(75, "feet"),
  30302. name: "Front",
  30303. image: {
  30304. source: "./media/characters/cat-gigachu/front.svg",
  30305. extra: 1239/1027,
  30306. bottom: 32/1271
  30307. }
  30308. },
  30309. back: {
  30310. height: math.unit(75, "feet"),
  30311. name: "Back",
  30312. image: {
  30313. source: "./media/characters/cat-gigachu/back.svg",
  30314. extra: 1229/1030,
  30315. bottom: 9/1238
  30316. }
  30317. },
  30318. },
  30319. [
  30320. {
  30321. name: "Dynamax",
  30322. height: math.unit(75, "feet"),
  30323. default: true
  30324. },
  30325. ]
  30326. ))
  30327. characterMakers.push(() => makeCharacter(
  30328. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30329. {
  30330. front: {
  30331. height: math.unit(6, "feet"),
  30332. weight: math.unit(150, "lb"),
  30333. name: "Front",
  30334. image: {
  30335. source: "./media/characters/sfaiyan/front.svg",
  30336. extra: 999 / 978,
  30337. bottom: 5 / 1004
  30338. }
  30339. },
  30340. },
  30341. [
  30342. {
  30343. name: "Normal",
  30344. height: math.unit(1.82, "meters")
  30345. },
  30346. {
  30347. name: "Giant",
  30348. height: math.unit(2.27, "km"),
  30349. default: true
  30350. },
  30351. ]
  30352. ))
  30353. characterMakers.push(() => makeCharacter(
  30354. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30355. {
  30356. front: {
  30357. height: math.unit(179, "cm"),
  30358. weight: math.unit(100, "kg"),
  30359. name: "Front",
  30360. image: {
  30361. source: "./media/characters/raunehkeli/front.svg",
  30362. extra: 1934 / 1926,
  30363. bottom: 0 / 1934
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(179, "cm")
  30371. },
  30372. {
  30373. name: "Maximum",
  30374. height: math.unit(575, "meters"),
  30375. default: true
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(6, "feet"),
  30384. weight: math.unit(150, "lb"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30388. extra: 2625 / 2518,
  30389. bottom: 60 / 2685
  30390. }
  30391. },
  30392. },
  30393. [
  30394. {
  30395. name: "Normal",
  30396. height: math.unit(6 + 2 / 12, "feet")
  30397. },
  30398. {
  30399. name: "Macro",
  30400. height: math.unit(1180, "feet"),
  30401. default: true
  30402. },
  30403. ]
  30404. ))
  30405. characterMakers.push(() => makeCharacter(
  30406. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30407. {
  30408. front: {
  30409. height: math.unit(5 + 6 / 12, "feet"),
  30410. weight: math.unit(108, "lb"),
  30411. name: "Front",
  30412. image: {
  30413. source: "./media/characters/lilith-zott/front.svg",
  30414. extra: 2510 / 2238,
  30415. bottom: 100 / 2610
  30416. }
  30417. },
  30418. frontDressed: {
  30419. height: math.unit(5 + 6 / 12, "feet"),
  30420. weight: math.unit(108, "lb"),
  30421. name: "Front (Dressed)",
  30422. image: {
  30423. source: "./media/characters/lilith-zott/front-dressed.svg",
  30424. extra: 2510 / 2238,
  30425. bottom: 100 / 2610
  30426. }
  30427. },
  30428. },
  30429. [
  30430. {
  30431. name: "Normal",
  30432. height: math.unit(5 + 6 / 12, "feet")
  30433. },
  30434. {
  30435. name: "Macro",
  30436. height: math.unit(1030, "feet"),
  30437. default: true
  30438. },
  30439. ]
  30440. ))
  30441. characterMakers.push(() => makeCharacter(
  30442. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30443. {
  30444. front: {
  30445. height: math.unit(6, "feet"),
  30446. weight: math.unit(150, "lb"),
  30447. name: "Front",
  30448. image: {
  30449. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30450. extra: 2567 / 2435,
  30451. bottom: 39 / 2606
  30452. }
  30453. },
  30454. frontSuper: {
  30455. height: math.unit(6, "feet"),
  30456. name: "Front (Super)",
  30457. image: {
  30458. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30459. extra: 2567 / 2435,
  30460. bottom: 39 / 2606
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Normal",
  30467. height: math.unit(5 + 10 / 12, "feet")
  30468. },
  30469. {
  30470. name: "Macro",
  30471. height: math.unit(1100, "feet"),
  30472. default: true
  30473. },
  30474. ]
  30475. ))
  30476. characterMakers.push(() => makeCharacter(
  30477. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30478. {
  30479. front: {
  30480. height: math.unit(100, "miles"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/sona/front.svg",
  30484. extra: 2433 / 2201,
  30485. bottom: 53 / 2486
  30486. }
  30487. },
  30488. foot: {
  30489. height: math.unit(16.1, "miles"),
  30490. name: "Foot",
  30491. image: {
  30492. source: "./media/characters/sona/foot.svg"
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Macro",
  30499. height: math.unit(100, "miles"),
  30500. default: true
  30501. },
  30502. ]
  30503. ))
  30504. characterMakers.push(() => makeCharacter(
  30505. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30506. {
  30507. front: {
  30508. height: math.unit(6, "feet"),
  30509. weight: math.unit(150, "lb"),
  30510. name: "Front",
  30511. image: {
  30512. source: "./media/characters/bailey/front.svg",
  30513. extra: 1778 / 1724,
  30514. bottom: 30 / 1808
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Micro",
  30521. height: math.unit(4, "inches")
  30522. },
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(5 + 5 / 12, "feet"),
  30526. default: true
  30527. },
  30528. {
  30529. name: "Macro",
  30530. height: math.unit(250, "feet")
  30531. },
  30532. {
  30533. name: "Megamacro",
  30534. height: math.unit(100, "miles")
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30540. {
  30541. front: {
  30542. height: math.unit(5 + 2 / 12, "feet"),
  30543. weight: math.unit(120, "lb"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/snaps/front.svg",
  30547. extra: 2370 / 2177,
  30548. bottom: 48 / 2418
  30549. }
  30550. },
  30551. back: {
  30552. height: math.unit(5 + 2 / 12, "feet"),
  30553. weight: math.unit(120, "lb"),
  30554. name: "Back",
  30555. image: {
  30556. source: "./media/characters/snaps/back.svg",
  30557. extra: 2408 / 2258,
  30558. bottom: 15 / 2423
  30559. }
  30560. },
  30561. },
  30562. [
  30563. {
  30564. name: "Micro",
  30565. height: math.unit(9, "inches")
  30566. },
  30567. {
  30568. name: "Normal",
  30569. height: math.unit(5 + 2 / 12, "feet"),
  30570. default: true
  30571. },
  30572. {
  30573. name: "Mini Macro",
  30574. height: math.unit(10, "feet")
  30575. },
  30576. ]
  30577. ))
  30578. characterMakers.push(() => makeCharacter(
  30579. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30580. {
  30581. front: {
  30582. height: math.unit(1.8, "meters"),
  30583. weight: math.unit(85, "kg"),
  30584. name: "Front",
  30585. image: {
  30586. source: "./media/characters/azteck/front.svg",
  30587. extra: 2815 / 2625,
  30588. bottom: 89 / 2904
  30589. }
  30590. },
  30591. back: {
  30592. height: math.unit(1.8, "meters"),
  30593. weight: math.unit(85, "kg"),
  30594. name: "Back",
  30595. image: {
  30596. source: "./media/characters/azteck/back.svg",
  30597. extra: 2856 / 2648,
  30598. bottom: 85 / 2941
  30599. }
  30600. },
  30601. frontDressed: {
  30602. height: math.unit(1.8, "meters"),
  30603. weight: math.unit(85, "kg"),
  30604. name: "Front (Dressed)",
  30605. image: {
  30606. source: "./media/characters/azteck/front-dressed.svg",
  30607. extra: 2147 / 2003,
  30608. bottom: 68 / 2215
  30609. }
  30610. },
  30611. head: {
  30612. height: math.unit(0.47, "meters"),
  30613. weight: math.unit(85, "kg"),
  30614. name: "Head",
  30615. image: {
  30616. source: "./media/characters/azteck/head.svg"
  30617. }
  30618. },
  30619. },
  30620. [
  30621. {
  30622. name: "Bite sized",
  30623. height: math.unit(16, "cm")
  30624. },
  30625. {
  30626. name: "Normal",
  30627. height: math.unit(1.8, "meters"),
  30628. default: true
  30629. },
  30630. ]
  30631. ))
  30632. characterMakers.push(() => makeCharacter(
  30633. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30634. {
  30635. front: {
  30636. height: math.unit(6, "feet"),
  30637. weight: math.unit(150, "lb"),
  30638. name: "Front",
  30639. image: {
  30640. source: "./media/characters/pidge/front.svg",
  30641. extra: 1936/1820,
  30642. bottom: 0/1936
  30643. }
  30644. },
  30645. back: {
  30646. height: math.unit(6, "feet"),
  30647. weight: math.unit(150, "lb"),
  30648. name: "Back",
  30649. image: {
  30650. source: "./media/characters/pidge/back.svg",
  30651. extra: 1938/1843,
  30652. bottom: 0/1938
  30653. }
  30654. },
  30655. casual: {
  30656. height: math.unit(6, "feet"),
  30657. weight: math.unit(150, "lb"),
  30658. name: "Casual",
  30659. image: {
  30660. source: "./media/characters/pidge/casual.svg",
  30661. extra: 1936/1820,
  30662. bottom: 0/1936
  30663. }
  30664. },
  30665. tech: {
  30666. height: math.unit(6, "feet"),
  30667. weight: math.unit(150, "lb"),
  30668. name: "Tech",
  30669. image: {
  30670. source: "./media/characters/pidge/tech.svg",
  30671. extra: 1802/1682,
  30672. bottom: 0/1802
  30673. }
  30674. },
  30675. head: {
  30676. height: math.unit(1.61, "feet"),
  30677. name: "Head",
  30678. image: {
  30679. source: "./media/characters/pidge/head.svg"
  30680. }
  30681. },
  30682. collar: {
  30683. height: math.unit(0.82, "feet"),
  30684. name: "Collar",
  30685. image: {
  30686. source: "./media/characters/pidge/collar.svg"
  30687. }
  30688. },
  30689. },
  30690. [
  30691. {
  30692. name: "Macro",
  30693. height: math.unit(2, "mile"),
  30694. default: true
  30695. },
  30696. {
  30697. name: "PUPPY",
  30698. height: math.unit(20, "miles")
  30699. },
  30700. ]
  30701. ))
  30702. characterMakers.push(() => makeCharacter(
  30703. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30704. {
  30705. front: {
  30706. height: math.unit(6, "feet"),
  30707. weight: math.unit(150, "lb"),
  30708. name: "Front",
  30709. image: {
  30710. source: "./media/characters/en/front.svg",
  30711. extra: 1697 / 1563,
  30712. bottom: 103 / 1800
  30713. }
  30714. },
  30715. back: {
  30716. height: math.unit(6, "feet"),
  30717. weight: math.unit(150, "lb"),
  30718. name: "Back",
  30719. image: {
  30720. source: "./media/characters/en/back.svg",
  30721. extra: 1700 / 1570,
  30722. bottom: 51 / 1751
  30723. }
  30724. },
  30725. frontDressed: {
  30726. height: math.unit(6, "feet"),
  30727. weight: math.unit(150, "lb"),
  30728. name: "Front (Dressed)",
  30729. image: {
  30730. source: "./media/characters/en/front-dressed.svg",
  30731. extra: 1697 / 1563,
  30732. bottom: 103 / 1800
  30733. }
  30734. },
  30735. backDressed: {
  30736. height: math.unit(6, "feet"),
  30737. weight: math.unit(150, "lb"),
  30738. name: "Back (Dressed)",
  30739. image: {
  30740. source: "./media/characters/en/back-dressed.svg",
  30741. extra: 1700 / 1570,
  30742. bottom: 51 / 1751
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Macro",
  30749. height: math.unit(210, "feet"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(6, "feet"),
  30759. weight: math.unit(150, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/haze-orris/front.svg",
  30763. extra: 3975 / 3525,
  30764. bottom: 137 / 4112
  30765. }
  30766. },
  30767. },
  30768. [
  30769. {
  30770. name: "Micro",
  30771. height: math.unit(150, "mm"),
  30772. default: true
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30778. {
  30779. front: {
  30780. height: math.unit(6, "feet"),
  30781. weight: math.unit(150, "lb"),
  30782. name: "Front",
  30783. image: {
  30784. source: "./media/characters/casselene-yaro/front.svg",
  30785. extra: 4721 / 4541,
  30786. bottom: 82 / 4803
  30787. }
  30788. },
  30789. back: {
  30790. height: math.unit(6, "feet"),
  30791. weight: math.unit(150, "lb"),
  30792. name: "Back",
  30793. image: {
  30794. source: "./media/characters/casselene-yaro/back.svg",
  30795. extra: 4569 / 4377,
  30796. bottom: 69 / 4638
  30797. }
  30798. },
  30799. dressed: {
  30800. height: math.unit(6, "feet"),
  30801. weight: math.unit(150, "lb"),
  30802. name: "Dressed",
  30803. image: {
  30804. source: "./media/characters/casselene-yaro/dressed.svg",
  30805. extra: 4721 / 4541,
  30806. bottom: 82 / 4803
  30807. }
  30808. },
  30809. maw: {
  30810. height: math.unit(1, "feet"),
  30811. name: "Maw",
  30812. image: {
  30813. source: "./media/characters/casselene-yaro/maw.svg"
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Macro",
  30820. height: math.unit(190, "feet"),
  30821. default: true
  30822. },
  30823. ]
  30824. ))
  30825. characterMakers.push(() => makeCharacter(
  30826. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30827. {
  30828. front: {
  30829. height: math.unit(10, "feet"),
  30830. weight: math.unit(15015, "lb"),
  30831. name: "Front",
  30832. image: {
  30833. source: "./media/characters/platine/front.svg",
  30834. extra: 1428/1353,
  30835. bottom: 31/1459
  30836. }
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Normal",
  30842. height: math.unit(10, "feet"),
  30843. default: true
  30844. },
  30845. {
  30846. name: "Macro",
  30847. height: math.unit(100, "feet")
  30848. },
  30849. {
  30850. name: "Megamacro",
  30851. height: math.unit(1000, "feet")
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(15 + 5 / 12, "feet"),
  30860. weight: math.unit(4600, "lb"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/neapolitan-ananassa/front.svg",
  30864. extra: 2903 / 2736,
  30865. bottom: 0 / 2903
  30866. }
  30867. },
  30868. side: {
  30869. height: math.unit(15 + 5 / 12, "feet"),
  30870. weight: math.unit(4600, "lb"),
  30871. name: "Side",
  30872. image: {
  30873. source: "./media/characters/neapolitan-ananassa/side.svg",
  30874. extra: 2925 / 2719,
  30875. bottom: 0 / 2925
  30876. }
  30877. },
  30878. back: {
  30879. height: math.unit(15 + 5 / 12, "feet"),
  30880. weight: math.unit(4600, "lb"),
  30881. name: "Back",
  30882. image: {
  30883. source: "./media/characters/neapolitan-ananassa/back.svg",
  30884. extra: 2903 / 2736,
  30885. bottom: 0 / 2903
  30886. }
  30887. },
  30888. },
  30889. [
  30890. {
  30891. name: "Normal",
  30892. height: math.unit(15 + 5 / 12, "feet"),
  30893. default: true
  30894. },
  30895. {
  30896. name: "Post-Millenium",
  30897. height: math.unit(35 + 5 / 12, "feet")
  30898. },
  30899. {
  30900. name: "Post-Era",
  30901. height: math.unit(450 + 5 / 12, "feet")
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30907. {
  30908. front: {
  30909. height: math.unit(300, "meters"),
  30910. weight: math.unit(125000, "tonnes"),
  30911. name: "Front",
  30912. image: {
  30913. source: "./media/characters/pazuzu/front.svg",
  30914. extra: 877 / 794,
  30915. bottom: 47 / 924
  30916. }
  30917. },
  30918. },
  30919. [
  30920. {
  30921. name: "Macro",
  30922. height: math.unit(300, "meters"),
  30923. default: true
  30924. },
  30925. ]
  30926. ))
  30927. characterMakers.push(() => makeCharacter(
  30928. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30929. {
  30930. side: {
  30931. height: math.unit(10 + 7 / 12, "feet"),
  30932. weight: math.unit(2.5, "tons"),
  30933. name: "Side",
  30934. image: {
  30935. source: "./media/characters/aasha/side.svg",
  30936. extra: 1345 / 1245,
  30937. bottom: 111 / 1456
  30938. }
  30939. },
  30940. back: {
  30941. height: math.unit(10 + 7 / 12, "feet"),
  30942. weight: math.unit(2.5, "tons"),
  30943. name: "Back",
  30944. image: {
  30945. source: "./media/characters/aasha/back.svg",
  30946. extra: 1133 / 1057,
  30947. bottom: 257 / 1390
  30948. }
  30949. },
  30950. },
  30951. [
  30952. {
  30953. name: "Normal",
  30954. height: math.unit(10 + 7 / 12, "feet"),
  30955. default: true
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30961. {
  30962. front: {
  30963. height: math.unit(6 + 3 / 12, "feet"),
  30964. name: "Front",
  30965. image: {
  30966. source: "./media/characters/nevan/front.svg",
  30967. extra: 704 / 704,
  30968. bottom: 28 / 732
  30969. }
  30970. },
  30971. back: {
  30972. height: math.unit(6 + 3 / 12, "feet"),
  30973. name: "Back",
  30974. image: {
  30975. source: "./media/characters/nevan/back.svg",
  30976. extra: 714 / 714,
  30977. bottom: 21 / 735
  30978. }
  30979. },
  30980. frontFlaccid: {
  30981. height: math.unit(6 + 3 / 12, "feet"),
  30982. name: "Front (Flaccid)",
  30983. image: {
  30984. source: "./media/characters/nevan/front-flaccid.svg",
  30985. extra: 704 / 704,
  30986. bottom: 28 / 732
  30987. }
  30988. },
  30989. frontErect: {
  30990. height: math.unit(6 + 3 / 12, "feet"),
  30991. name: "Front (Erect)",
  30992. image: {
  30993. source: "./media/characters/nevan/front-erect.svg",
  30994. extra: 704 / 704,
  30995. bottom: 28 / 732
  30996. }
  30997. },
  30998. backFlaccid: {
  30999. height: math.unit(6 + 3 / 12, "feet"),
  31000. name: "Back (Flaccid)",
  31001. image: {
  31002. source: "./media/characters/nevan/back-flaccid.svg",
  31003. extra: 714 / 714,
  31004. bottom: 21 / 735
  31005. }
  31006. },
  31007. },
  31008. [
  31009. {
  31010. name: "Normal",
  31011. height: math.unit(6 + 3 / 12, "feet"),
  31012. default: true
  31013. },
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31018. {
  31019. front: {
  31020. height: math.unit(4, "feet"),
  31021. name: "Front",
  31022. image: {
  31023. source: "./media/characters/arhan/front.svg",
  31024. extra: 3368 / 3133,
  31025. bottom: 0 / 3368
  31026. }
  31027. },
  31028. side: {
  31029. height: math.unit(4, "feet"),
  31030. name: "Side",
  31031. image: {
  31032. source: "./media/characters/arhan/side.svg",
  31033. extra: 3347 / 3105,
  31034. bottom: 0 / 3347
  31035. }
  31036. },
  31037. tongue: {
  31038. height: math.unit(1.42, "feet"),
  31039. name: "Tongue",
  31040. image: {
  31041. source: "./media/characters/arhan/tongue.svg"
  31042. }
  31043. },
  31044. head: {
  31045. height: math.unit(0.85, "feet"),
  31046. name: "Head",
  31047. image: {
  31048. source: "./media/characters/arhan/head.svg"
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(4, "feet"),
  31056. default: true
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31062. {
  31063. front: {
  31064. height: math.unit(5 + 7.5 / 12, "feet"),
  31065. weight: math.unit(120, "lb"),
  31066. name: "Front",
  31067. image: {
  31068. source: "./media/characters/digi-duncan/front.svg",
  31069. extra: 330 / 326,
  31070. bottom: 16 / 346
  31071. }
  31072. },
  31073. side: {
  31074. height: math.unit(5 + 7.5 / 12, "feet"),
  31075. weight: math.unit(120, "lb"),
  31076. name: "Side",
  31077. image: {
  31078. source: "./media/characters/digi-duncan/side.svg",
  31079. extra: 341 / 337,
  31080. bottom: 1 / 342
  31081. }
  31082. },
  31083. back: {
  31084. height: math.unit(5 + 7.5 / 12, "feet"),
  31085. weight: math.unit(120, "lb"),
  31086. name: "Back",
  31087. image: {
  31088. source: "./media/characters/digi-duncan/back.svg",
  31089. extra: 330 / 326,
  31090. bottom: 12 / 342
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Speck",
  31097. height: math.unit(0.25, "mm")
  31098. },
  31099. {
  31100. name: "Micro",
  31101. height: math.unit(5, "mm")
  31102. },
  31103. {
  31104. name: "Tiny",
  31105. height: math.unit(0.5, "inches"),
  31106. default: true
  31107. },
  31108. {
  31109. name: "Human",
  31110. height: math.unit(5 + 7.5 / 12, "feet")
  31111. },
  31112. {
  31113. name: "Minigiant",
  31114. height: math.unit(8 + 5.25, "feet")
  31115. },
  31116. {
  31117. name: "Giant",
  31118. height: math.unit(2000, "feet")
  31119. },
  31120. {
  31121. name: "Mega",
  31122. height: math.unit(371.1, "miles")
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(2, "meters"),
  31131. weight: math.unit(350, "kg"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31135. extra: 898 / 838,
  31136. bottom: 9 / 907
  31137. }
  31138. },
  31139. },
  31140. [
  31141. {
  31142. name: "Micro",
  31143. height: math.unit(8, "meters")
  31144. },
  31145. {
  31146. name: "Normal",
  31147. height: math.unit(50, "meters"),
  31148. default: true
  31149. },
  31150. {
  31151. name: "Macro",
  31152. height: math.unit(500, "meters")
  31153. },
  31154. ]
  31155. ))
  31156. characterMakers.push(() => makeCharacter(
  31157. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31158. {
  31159. front: {
  31160. height: math.unit(6 + 6 / 12, "feet"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/khardesh/front.svg",
  31164. extra: 1788/1596,
  31165. bottom: 66/1854
  31166. }
  31167. },
  31168. back: {
  31169. height: math.unit(6 + 6 / 12, "feet"),
  31170. name: "Back",
  31171. image: {
  31172. source: "./media/characters/khardesh/back.svg",
  31173. extra: 1781/1584,
  31174. bottom: 68/1849
  31175. }
  31176. },
  31177. },
  31178. [
  31179. {
  31180. name: "Normal",
  31181. height: math.unit(6 + 6 / 12, "feet"),
  31182. default: true
  31183. },
  31184. {
  31185. name: "Normal+",
  31186. height: math.unit(4, "meters")
  31187. },
  31188. {
  31189. name: "Macro",
  31190. height: math.unit(50, "meters")
  31191. },
  31192. {
  31193. name: "Macro+",
  31194. height: math.unit(100, "meters")
  31195. },
  31196. {
  31197. name: "Megamacro",
  31198. height: math.unit(20, "km")
  31199. },
  31200. ]
  31201. ))
  31202. characterMakers.push(() => makeCharacter(
  31203. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31204. {
  31205. front: {
  31206. height: math.unit(6, "feet"),
  31207. weight: math.unit(150, "lb"),
  31208. name: "Front",
  31209. image: {
  31210. source: "./media/characters/kosho/front.svg",
  31211. extra: 1847 / 1847,
  31212. bottom: 86 / 1933
  31213. }
  31214. },
  31215. },
  31216. [
  31217. {
  31218. name: "Second-stage micro",
  31219. height: math.unit(0.5, "inches")
  31220. },
  31221. {
  31222. name: "First-stage micro",
  31223. height: math.unit(6, "inches")
  31224. },
  31225. {
  31226. name: "Normal",
  31227. height: math.unit(6, "feet"),
  31228. default: true
  31229. },
  31230. {
  31231. name: "First-stage macro",
  31232. height: math.unit(72, "feet")
  31233. },
  31234. {
  31235. name: "Second-stage macro",
  31236. height: math.unit(864, "feet")
  31237. },
  31238. ]
  31239. ))
  31240. characterMakers.push(() => makeCharacter(
  31241. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31242. {
  31243. normal: {
  31244. height: math.unit(4 + 6 / 12, "feet"),
  31245. name: "Normal",
  31246. image: {
  31247. source: "./media/characters/hydra/normal.svg",
  31248. extra: 2833 / 2634,
  31249. bottom: 68 / 2901
  31250. }
  31251. },
  31252. smol: {
  31253. height: math.unit(0.705, "inches"),
  31254. name: "Smol",
  31255. image: {
  31256. source: "./media/characters/hydra/smol.svg",
  31257. extra: 2715 / 2540,
  31258. bottom: 0 / 2715
  31259. }
  31260. },
  31261. },
  31262. [
  31263. {
  31264. name: "Normal",
  31265. height: math.unit(4 + 6 / 12, "feet"),
  31266. default: true
  31267. }
  31268. ]
  31269. ))
  31270. characterMakers.push(() => makeCharacter(
  31271. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31272. {
  31273. front: {
  31274. height: math.unit(0.6, "cm"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/daz/front.svg",
  31278. extra: 1682 / 1164,
  31279. bottom: 42 / 1724
  31280. }
  31281. },
  31282. },
  31283. [
  31284. {
  31285. name: "Normal",
  31286. height: math.unit(0.6, "cm"),
  31287. default: true
  31288. },
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31293. {
  31294. front: {
  31295. height: math.unit(6, "feet"),
  31296. weight: math.unit(235, "lb"),
  31297. name: "Front",
  31298. image: {
  31299. source: "./media/characters/theo-pangolin/front.svg",
  31300. extra: 1996 / 1969,
  31301. bottom: 115 / 2111
  31302. }
  31303. },
  31304. back: {
  31305. height: math.unit(6, "feet"),
  31306. weight: math.unit(235, "lb"),
  31307. name: "Back",
  31308. image: {
  31309. source: "./media/characters/theo-pangolin/back.svg",
  31310. extra: 1979 / 1979,
  31311. bottom: 40 / 2019
  31312. }
  31313. },
  31314. feral: {
  31315. height: math.unit(2, "feet"),
  31316. weight: math.unit(30, "lb"),
  31317. name: "Feral",
  31318. image: {
  31319. source: "./media/characters/theo-pangolin/feral.svg",
  31320. extra: 803 / 791,
  31321. bottom: 181 / 984
  31322. }
  31323. },
  31324. footFive: {
  31325. height: math.unit(1.43, "feet"),
  31326. name: "Foot (Five Toes)",
  31327. image: {
  31328. source: "./media/characters/theo-pangolin/foot-five.svg"
  31329. }
  31330. },
  31331. footFour: {
  31332. height: math.unit(1.43, "feet"),
  31333. name: "Foot (Four Toes)",
  31334. image: {
  31335. source: "./media/characters/theo-pangolin/foot-four.svg"
  31336. }
  31337. },
  31338. handFour: {
  31339. height: math.unit(0.81, "feet"),
  31340. name: "Hand (Four Fingers)",
  31341. image: {
  31342. source: "./media/characters/theo-pangolin/hand-four.svg"
  31343. }
  31344. },
  31345. handThree: {
  31346. height: math.unit(0.81, "feet"),
  31347. name: "Hand (Three Fingers)",
  31348. image: {
  31349. source: "./media/characters/theo-pangolin/hand-three.svg"
  31350. }
  31351. },
  31352. headFront: {
  31353. height: math.unit(1.37, "feet"),
  31354. name: "Head (Front)",
  31355. image: {
  31356. source: "./media/characters/theo-pangolin/head-front.svg"
  31357. }
  31358. },
  31359. headSide: {
  31360. height: math.unit(1.43, "feet"),
  31361. name: "Head (Side)",
  31362. image: {
  31363. source: "./media/characters/theo-pangolin/head-side.svg"
  31364. }
  31365. },
  31366. tongue: {
  31367. height: math.unit(2.29, "feet"),
  31368. name: "Tongue",
  31369. image: {
  31370. source: "./media/characters/theo-pangolin/tongue.svg"
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(6, "feet")
  31378. },
  31379. {
  31380. name: "Macro",
  31381. height: math.unit(400, "feet"),
  31382. default: true
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31388. {
  31389. front: {
  31390. height: math.unit(6, "inches"),
  31391. weight: math.unit(0.036, "kg"),
  31392. name: "Front",
  31393. image: {
  31394. source: "./media/characters/renée/front.svg",
  31395. extra: 900 / 886,
  31396. bottom: 8 / 908
  31397. }
  31398. },
  31399. },
  31400. [
  31401. {
  31402. name: "Nano",
  31403. height: math.unit(1, "nm")
  31404. },
  31405. {
  31406. name: "Micro",
  31407. height: math.unit(1, "mm")
  31408. },
  31409. {
  31410. name: "Normal",
  31411. height: math.unit(6, "inches")
  31412. },
  31413. {
  31414. name: "Macro",
  31415. height: math.unit(2000, "feet"),
  31416. default: true
  31417. },
  31418. {
  31419. name: "Megamacro",
  31420. height: math.unit(2, "km")
  31421. },
  31422. {
  31423. name: "Gigamacro",
  31424. height: math.unit(2000, "km")
  31425. },
  31426. {
  31427. name: "Teramacro",
  31428. height: math.unit(250000, "km")
  31429. },
  31430. ]
  31431. ))
  31432. characterMakers.push(() => makeCharacter(
  31433. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31434. {
  31435. front: {
  31436. height: math.unit(4, "meters"),
  31437. weight: math.unit(150, "kg"),
  31438. name: "Front",
  31439. image: {
  31440. source: "./media/characters/caledvwlch/front.svg",
  31441. extra: 1760 / 1551,
  31442. bottom: 28 / 1788
  31443. }
  31444. },
  31445. side: {
  31446. height: math.unit(4, "meters"),
  31447. weight: math.unit(150, "kg"),
  31448. name: "Side",
  31449. image: {
  31450. source: "./media/characters/caledvwlch/side.svg",
  31451. extra: 1605 / 1536,
  31452. bottom: 31 / 1636
  31453. }
  31454. },
  31455. back: {
  31456. height: math.unit(4, "meters"),
  31457. weight: math.unit(150, "kg"),
  31458. name: "Back",
  31459. image: {
  31460. source: "./media/characters/caledvwlch/back.svg",
  31461. extra: 1635 / 1565,
  31462. bottom: 27 / 1662
  31463. }
  31464. },
  31465. },
  31466. [
  31467. {
  31468. name: "\"Incognito\"",
  31469. height: math.unit(4, "meters")
  31470. },
  31471. {
  31472. name: "Small rampage",
  31473. height: math.unit(600, "meters")
  31474. },
  31475. {
  31476. name: "Mega",
  31477. height: math.unit(30, "km")
  31478. },
  31479. {
  31480. name: "Home-size",
  31481. height: math.unit(50, "km"),
  31482. default: true
  31483. },
  31484. {
  31485. name: "Giga",
  31486. height: math.unit(300, "km")
  31487. },
  31488. {
  31489. name: "Lounging",
  31490. height: math.unit(11000, "km")
  31491. },
  31492. {
  31493. name: "Planet snacking",
  31494. height: math.unit(2000000, "km")
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31500. {
  31501. front: {
  31502. height: math.unit(6, "feet"),
  31503. weight: math.unit(215, "lb"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/sapphire-svell/front.svg",
  31507. extra: 495 / 455,
  31508. bottom: 20 / 515
  31509. }
  31510. },
  31511. back: {
  31512. height: math.unit(6, "feet"),
  31513. weight: math.unit(216, "lb"),
  31514. name: "Back",
  31515. image: {
  31516. source: "./media/characters/sapphire-svell/back.svg",
  31517. extra: 497 / 477,
  31518. bottom: 7 / 504
  31519. }
  31520. },
  31521. maw: {
  31522. height: math.unit(1.57, "feet"),
  31523. name: "Maw",
  31524. image: {
  31525. source: "./media/characters/sapphire-svell/maw.svg"
  31526. }
  31527. },
  31528. foot: {
  31529. height: math.unit(1.07, "feet"),
  31530. name: "Foot",
  31531. image: {
  31532. source: "./media/characters/sapphire-svell/foot.svg"
  31533. }
  31534. },
  31535. toering: {
  31536. height: math.unit(1.7, "inch"),
  31537. name: "Toering",
  31538. image: {
  31539. source: "./media/characters/sapphire-svell/toering.svg"
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(300, "feet"),
  31547. default: true
  31548. },
  31549. {
  31550. name: "Augmented",
  31551. height: math.unit(1250, "feet")
  31552. },
  31553. {
  31554. name: "Unleashed",
  31555. height: math.unit(3000, "feet")
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31561. {
  31562. side: {
  31563. height: math.unit(2 + 3 / 12, "feet"),
  31564. weight: math.unit(110, "lb"),
  31565. name: "Side",
  31566. image: {
  31567. source: "./media/characters/glitch-flux/side.svg",
  31568. extra: 997 / 805,
  31569. bottom: 20 / 1017
  31570. }
  31571. },
  31572. },
  31573. [
  31574. {
  31575. name: "Normal",
  31576. height: math.unit(2 + 3 / 12, "feet"),
  31577. default: true
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31583. {
  31584. front: {
  31585. height: math.unit(4, "meters"),
  31586. name: "Front",
  31587. image: {
  31588. source: "./media/characters/mid/front.svg",
  31589. extra: 507 / 476,
  31590. bottom: 17 / 524
  31591. }
  31592. },
  31593. back: {
  31594. height: math.unit(4, "meters"),
  31595. name: "Back",
  31596. image: {
  31597. source: "./media/characters/mid/back.svg",
  31598. extra: 519 / 487,
  31599. bottom: 7 / 526
  31600. }
  31601. },
  31602. stuck: {
  31603. height: math.unit(2.2, "meters"),
  31604. name: "Stuck",
  31605. image: {
  31606. source: "./media/characters/mid/stuck.svg",
  31607. extra: 1951 / 1869,
  31608. bottom: 88 / 2039
  31609. }
  31610. }
  31611. },
  31612. [
  31613. {
  31614. name: "Normal",
  31615. height: math.unit(4, "meters"),
  31616. default: true
  31617. },
  31618. {
  31619. name: "Big",
  31620. height: math.unit(10, "meters")
  31621. },
  31622. {
  31623. name: "Macro",
  31624. height: math.unit(800, "meters")
  31625. },
  31626. {
  31627. name: "Megamacro",
  31628. height: math.unit(100, "km")
  31629. },
  31630. {
  31631. name: "Overgrown",
  31632. height: math.unit(1, "parsec")
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(2.5, "meters"),
  31641. weight: math.unit(225, "kg"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/iris/front.svg",
  31645. extra: 3348 / 3251,
  31646. bottom: 205 / 3553
  31647. }
  31648. },
  31649. maw: {
  31650. height: math.unit(0.56, "meter"),
  31651. name: "Maw",
  31652. image: {
  31653. source: "./media/characters/iris/maw.svg"
  31654. }
  31655. },
  31656. },
  31657. [
  31658. {
  31659. name: "Mewter cat",
  31660. height: math.unit(1.2, "meters")
  31661. },
  31662. {
  31663. name: "Normal",
  31664. height: math.unit(2.5, "meters"),
  31665. default: true
  31666. },
  31667. {
  31668. name: "Minimacro",
  31669. height: math.unit(18, "feet")
  31670. },
  31671. {
  31672. name: "Macro",
  31673. height: math.unit(140, "feet")
  31674. },
  31675. {
  31676. name: "Macro+",
  31677. height: math.unit(180, "meters")
  31678. },
  31679. {
  31680. name: "Megamacro",
  31681. height: math.unit(2746, "meters")
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(6, "feet"),
  31690. weight: math.unit(135, "lb"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/axel/front.svg",
  31694. extra: 908 / 908,
  31695. bottom: 58 / 966
  31696. }
  31697. },
  31698. side: {
  31699. height: math.unit(6, "feet"),
  31700. weight: math.unit(135, "lb"),
  31701. name: "Side",
  31702. image: {
  31703. source: "./media/characters/axel/side.svg",
  31704. extra: 958 / 958,
  31705. bottom: 11 / 969
  31706. }
  31707. },
  31708. back: {
  31709. height: math.unit(6, "feet"),
  31710. weight: math.unit(135, "lb"),
  31711. name: "Back",
  31712. image: {
  31713. source: "./media/characters/axel/back.svg",
  31714. extra: 887 / 887,
  31715. bottom: 34 / 921
  31716. }
  31717. },
  31718. head: {
  31719. height: math.unit(1.07, "feet"),
  31720. name: "Head",
  31721. image: {
  31722. source: "./media/characters/axel/head.svg"
  31723. }
  31724. },
  31725. beak: {
  31726. height: math.unit(1.4, "feet"),
  31727. name: "Beak",
  31728. image: {
  31729. source: "./media/characters/axel/beak.svg"
  31730. }
  31731. },
  31732. beakSide: {
  31733. height: math.unit(1.4, "feet"),
  31734. name: "Beak Side",
  31735. image: {
  31736. source: "./media/characters/axel/beak-side.svg"
  31737. }
  31738. },
  31739. sheath: {
  31740. height: math.unit(0.5, "feet"),
  31741. name: "Sheath",
  31742. image: {
  31743. source: "./media/characters/axel/sheath.svg"
  31744. }
  31745. },
  31746. dick: {
  31747. height: math.unit(0.98, "feet"),
  31748. name: "Dick",
  31749. image: {
  31750. source: "./media/characters/axel/dick.svg"
  31751. }
  31752. },
  31753. },
  31754. [
  31755. {
  31756. name: "Macro",
  31757. height: math.unit(68, "meters"),
  31758. default: true
  31759. },
  31760. ]
  31761. ))
  31762. characterMakers.push(() => makeCharacter(
  31763. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31764. {
  31765. front: {
  31766. height: math.unit(3.5, "meters"),
  31767. weight: math.unit(1200, "kg"),
  31768. name: "Front",
  31769. image: {
  31770. source: "./media/characters/joanna/front.svg",
  31771. extra: 1596 / 1488,
  31772. bottom: 29 / 1625
  31773. }
  31774. },
  31775. back: {
  31776. height: math.unit(3.5, "meters"),
  31777. weight: math.unit(1200, "kg"),
  31778. name: "Back",
  31779. image: {
  31780. source: "./media/characters/joanna/back.svg",
  31781. extra: 1594 / 1495,
  31782. bottom: 26 / 1620
  31783. }
  31784. },
  31785. frontShorts: {
  31786. height: math.unit(3.5, "meters"),
  31787. weight: math.unit(1200, "kg"),
  31788. name: "Front (Shorts)",
  31789. image: {
  31790. source: "./media/characters/joanna/front-shorts.svg",
  31791. extra: 1596 / 1488,
  31792. bottom: 29 / 1625
  31793. }
  31794. },
  31795. frontBiker: {
  31796. height: math.unit(3.5, "meters"),
  31797. weight: math.unit(1200, "kg"),
  31798. name: "Front (Biker)",
  31799. image: {
  31800. source: "./media/characters/joanna/front-biker.svg",
  31801. extra: 1596 / 1488,
  31802. bottom: 29 / 1625
  31803. }
  31804. },
  31805. backBiker: {
  31806. height: math.unit(3.5, "meters"),
  31807. weight: math.unit(1200, "kg"),
  31808. name: "Back (Biker)",
  31809. image: {
  31810. source: "./media/characters/joanna/back-biker.svg",
  31811. extra: 1594 / 1495,
  31812. bottom: 88 / 1682
  31813. }
  31814. },
  31815. bikeLeft: {
  31816. height: math.unit(2.4, "meters"),
  31817. weight: math.unit(1600, "kg"),
  31818. name: "Bike (Left)",
  31819. image: {
  31820. source: "./media/characters/joanna/bike-left.svg",
  31821. extra: 720 / 720,
  31822. bottom: 8 / 728
  31823. }
  31824. },
  31825. bikeRight: {
  31826. height: math.unit(2.4, "meters"),
  31827. weight: math.unit(1600, "kg"),
  31828. name: "Bike (Right)",
  31829. image: {
  31830. source: "./media/characters/joanna/bike-right.svg",
  31831. extra: 720 / 720,
  31832. bottom: 8 / 728
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Incognito",
  31839. height: math.unit(3.5, "meters")
  31840. },
  31841. {
  31842. name: "Casual Big",
  31843. height: math.unit(200, "meters")
  31844. },
  31845. {
  31846. name: "Macro",
  31847. height: math.unit(600, "meters")
  31848. },
  31849. {
  31850. name: "Original",
  31851. height: math.unit(20, "km"),
  31852. default: true
  31853. },
  31854. {
  31855. name: "Giga",
  31856. height: math.unit(400, "km")
  31857. },
  31858. {
  31859. name: "Lounging",
  31860. height: math.unit(1500, "km")
  31861. },
  31862. {
  31863. name: "Planetary",
  31864. height: math.unit(200000, "km")
  31865. },
  31866. ]
  31867. ))
  31868. characterMakers.push(() => makeCharacter(
  31869. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31870. {
  31871. front: {
  31872. height: math.unit(6, "feet"),
  31873. weight: math.unit(150, "lb"),
  31874. name: "Front",
  31875. image: {
  31876. source: "./media/characters/hugo-sigil/front.svg",
  31877. extra: 522 / 500,
  31878. bottom: 2 / 524
  31879. }
  31880. },
  31881. back: {
  31882. height: math.unit(6, "feet"),
  31883. weight: math.unit(150, "lb"),
  31884. name: "Back",
  31885. image: {
  31886. source: "./media/characters/hugo-sigil/back.svg",
  31887. extra: 519 / 495,
  31888. bottom: 5 / 524
  31889. }
  31890. },
  31891. maw: {
  31892. height: math.unit(1.4, "feet"),
  31893. weight: math.unit(150, "lb"),
  31894. name: "Maw",
  31895. image: {
  31896. source: "./media/characters/hugo-sigil/maw.svg"
  31897. }
  31898. },
  31899. feet: {
  31900. height: math.unit(1.56, "feet"),
  31901. weight: math.unit(150, "lb"),
  31902. name: "Feet",
  31903. image: {
  31904. source: "./media/characters/hugo-sigil/feet.svg",
  31905. extra: 177 / 177,
  31906. bottom: 12 / 189
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Normal",
  31913. height: math.unit(6, "feet")
  31914. },
  31915. {
  31916. name: "Macro",
  31917. height: math.unit(200, "feet"),
  31918. default: true
  31919. },
  31920. ]
  31921. ))
  31922. characterMakers.push(() => makeCharacter(
  31923. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31924. {
  31925. front: {
  31926. height: math.unit(6, "feet"),
  31927. weight: math.unit(150, "lb"),
  31928. name: "Front",
  31929. image: {
  31930. source: "./media/characters/peri/front.svg",
  31931. extra: 2354 / 2233,
  31932. bottom: 49 / 2403
  31933. }
  31934. },
  31935. },
  31936. [
  31937. {
  31938. name: "Really Small",
  31939. height: math.unit(1, "nm")
  31940. },
  31941. {
  31942. name: "Micro",
  31943. height: math.unit(4, "inches")
  31944. },
  31945. {
  31946. name: "Normal",
  31947. height: math.unit(7, "inches"),
  31948. default: true
  31949. },
  31950. {
  31951. name: "Macro",
  31952. height: math.unit(400, "feet")
  31953. },
  31954. {
  31955. name: "Megamacro",
  31956. height: math.unit(100, "miles")
  31957. },
  31958. ]
  31959. ))
  31960. characterMakers.push(() => makeCharacter(
  31961. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31962. {
  31963. frontSlim: {
  31964. height: math.unit(7, "feet"),
  31965. name: "Front (Slim)",
  31966. image: {
  31967. source: "./media/characters/issilora/front-slim.svg",
  31968. extra: 529 / 449,
  31969. bottom: 53 / 582
  31970. }
  31971. },
  31972. sideSlim: {
  31973. height: math.unit(7, "feet"),
  31974. name: "Side (Slim)",
  31975. image: {
  31976. source: "./media/characters/issilora/side-slim.svg",
  31977. extra: 570 / 480,
  31978. bottom: 30 / 600
  31979. }
  31980. },
  31981. backSlim: {
  31982. height: math.unit(7, "feet"),
  31983. name: "Back (Slim)",
  31984. image: {
  31985. source: "./media/characters/issilora/back-slim.svg",
  31986. extra: 537 / 455,
  31987. bottom: 46 / 583
  31988. }
  31989. },
  31990. frontBuff: {
  31991. height: math.unit(7, "feet"),
  31992. name: "Front (Buff)",
  31993. image: {
  31994. source: "./media/characters/issilora/front-buff.svg",
  31995. extra: 2310 / 2035,
  31996. bottom: 335 / 2645
  31997. }
  31998. },
  31999. head: {
  32000. height: math.unit(1.94, "feet"),
  32001. name: "Head",
  32002. image: {
  32003. source: "./media/characters/issilora/head.svg"
  32004. }
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Minimum",
  32010. height: math.unit(7, "feet")
  32011. },
  32012. {
  32013. name: "Comfortable",
  32014. height: math.unit(17, "feet")
  32015. },
  32016. {
  32017. name: "Fun Size",
  32018. height: math.unit(47, "feet")
  32019. },
  32020. {
  32021. name: "Natural Macro",
  32022. height: math.unit(137, "feet"),
  32023. default: true
  32024. },
  32025. {
  32026. name: "Maximum Kaiju",
  32027. height: math.unit(397, "feet")
  32028. },
  32029. ]
  32030. ))
  32031. characterMakers.push(() => makeCharacter(
  32032. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32033. {
  32034. front: {
  32035. height: math.unit(50 + 9/12, "feet"),
  32036. weight: math.unit(32.8, "tons"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/irb'iiritaahn/front.svg",
  32040. extra: 1878/1826,
  32041. bottom: 326/2204
  32042. }
  32043. },
  32044. back: {
  32045. height: math.unit(50 + 9/12, "feet"),
  32046. weight: math.unit(32.8, "tons"),
  32047. name: "Back",
  32048. image: {
  32049. source: "./media/characters/irb'iiritaahn/back.svg",
  32050. extra: 2052/2018,
  32051. bottom: 152/2204
  32052. }
  32053. },
  32054. head: {
  32055. height: math.unit(12.86, "feet"),
  32056. name: "Head",
  32057. image: {
  32058. source: "./media/characters/irb'iiritaahn/head.svg"
  32059. }
  32060. },
  32061. maw: {
  32062. height: math.unit(9.66, "feet"),
  32063. name: "Maw",
  32064. image: {
  32065. source: "./media/characters/irb'iiritaahn/maw.svg"
  32066. }
  32067. },
  32068. frontDick: {
  32069. height: math.unit(8.78461, "feet"),
  32070. name: "Front Dick",
  32071. image: {
  32072. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32073. }
  32074. },
  32075. rearDick: {
  32076. height: math.unit(8.78461, "feet"),
  32077. name: "Rear Dick",
  32078. image: {
  32079. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32080. }
  32081. },
  32082. rearDickUnfolded: {
  32083. height: math.unit(8.78, "feet"),
  32084. name: "Rear Dick (Unfolded)",
  32085. image: {
  32086. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32087. }
  32088. },
  32089. wings: {
  32090. height: math.unit(43, "feet"),
  32091. name: "Wings",
  32092. image: {
  32093. source: "./media/characters/irb'iiritaahn/wings.svg"
  32094. }
  32095. },
  32096. },
  32097. [
  32098. {
  32099. name: "Macro",
  32100. height: math.unit(50 + 9/12, "feet"),
  32101. default: true
  32102. },
  32103. ]
  32104. ))
  32105. characterMakers.push(() => makeCharacter(
  32106. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32107. {
  32108. front: {
  32109. height: math.unit(205, "cm"),
  32110. weight: math.unit(102, "kg"),
  32111. name: "Front",
  32112. image: {
  32113. source: "./media/characters/irbisgreif/front.svg",
  32114. extra: 785/706,
  32115. bottom: 13/798
  32116. }
  32117. },
  32118. back: {
  32119. height: math.unit(205, "cm"),
  32120. weight: math.unit(102, "kg"),
  32121. name: "Back",
  32122. image: {
  32123. source: "./media/characters/irbisgreif/back.svg",
  32124. extra: 713/701,
  32125. bottom: 26/739
  32126. }
  32127. },
  32128. frontDressed: {
  32129. height: math.unit(216, "cm"),
  32130. weight: math.unit(102, "kg"),
  32131. name: "Front-dressed",
  32132. image: {
  32133. source: "./media/characters/irbisgreif/front-dressed.svg",
  32134. extra: 902/776,
  32135. bottom: 14/916
  32136. }
  32137. },
  32138. sideDressed: {
  32139. height: math.unit(195, "cm"),
  32140. weight: math.unit(102, "kg"),
  32141. name: "Side-dressed",
  32142. image: {
  32143. source: "./media/characters/irbisgreif/side-dressed.svg",
  32144. extra: 788/688,
  32145. bottom: 21/809
  32146. }
  32147. },
  32148. backDressed: {
  32149. height: math.unit(216, "cm"),
  32150. weight: math.unit(102, "kg"),
  32151. name: "Back-dressed",
  32152. image: {
  32153. source: "./media/characters/irbisgreif/back-dressed.svg",
  32154. extra: 901/783,
  32155. bottom: 10/911
  32156. }
  32157. },
  32158. dick: {
  32159. height: math.unit(0.49, "feet"),
  32160. name: "Dick",
  32161. image: {
  32162. source: "./media/characters/irbisgreif/dick.svg"
  32163. }
  32164. },
  32165. wingTop: {
  32166. height: math.unit(1.93 , "feet"),
  32167. name: "Wing-top",
  32168. image: {
  32169. source: "./media/characters/irbisgreif/wing-top.svg"
  32170. }
  32171. },
  32172. wingBottom: {
  32173. height: math.unit(1.93 , "feet"),
  32174. name: "Wing-bottom",
  32175. image: {
  32176. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32177. }
  32178. },
  32179. },
  32180. [
  32181. {
  32182. name: "Normal",
  32183. height: math.unit(216, "cm"),
  32184. default: true
  32185. },
  32186. ]
  32187. ))
  32188. characterMakers.push(() => makeCharacter(
  32189. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32190. {
  32191. front: {
  32192. height: math.unit(6, "feet"),
  32193. weight: math.unit(150, "lb"),
  32194. name: "Front",
  32195. image: {
  32196. source: "./media/characters/pride/front.svg",
  32197. extra: 1299/1230,
  32198. bottom: 18/1317
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(7, "feet")
  32206. },
  32207. {
  32208. name: "Mini-macro",
  32209. height: math.unit(11, "feet")
  32210. },
  32211. {
  32212. name: "Macro",
  32213. height: math.unit(15, "meters"),
  32214. default: true
  32215. },
  32216. {
  32217. name: "Macro+",
  32218. height: math.unit(40, "meters")
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32224. {
  32225. front: {
  32226. height: math.unit(4 + 2 / 12, "feet"),
  32227. weight: math.unit(95, "lb"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/vaelophis-nyx/front.svg",
  32231. extra: 2532/2330,
  32232. bottom: 0/2532
  32233. }
  32234. },
  32235. back: {
  32236. height: math.unit(4 + 2 / 12, "feet"),
  32237. weight: math.unit(95, "lb"),
  32238. name: "Back",
  32239. image: {
  32240. source: "./media/characters/vaelophis-nyx/back.svg",
  32241. extra: 2484/2361,
  32242. bottom: 0/2484
  32243. }
  32244. },
  32245. feralSide: {
  32246. height: math.unit(2 + 1/12, "feet"),
  32247. weight: math.unit(20, "lb"),
  32248. name: "Feral (Side)",
  32249. image: {
  32250. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32251. extra: 1721/1581,
  32252. bottom: 70/1791
  32253. }
  32254. },
  32255. feralLazing: {
  32256. height: math.unit(1.08, "feet"),
  32257. weight: math.unit(20, "lb"),
  32258. name: "Feral (Lazing)",
  32259. image: {
  32260. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32261. extra: 822/822,
  32262. bottom: 248/1070
  32263. }
  32264. },
  32265. ear: {
  32266. height: math.unit(0.416, "feet"),
  32267. name: "Ear",
  32268. image: {
  32269. source: "./media/characters/vaelophis-nyx/ear.svg"
  32270. }
  32271. },
  32272. eye: {
  32273. height: math.unit(0.0748, "feet"),
  32274. name: "Eye",
  32275. image: {
  32276. source: "./media/characters/vaelophis-nyx/eye.svg"
  32277. }
  32278. },
  32279. mouth: {
  32280. height: math.unit(0.378, "feet"),
  32281. name: "Mouth",
  32282. image: {
  32283. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32284. }
  32285. },
  32286. spade: {
  32287. height: math.unit(0.55, "feet"),
  32288. name: "Spade",
  32289. image: {
  32290. source: "./media/characters/vaelophis-nyx/spade.svg"
  32291. }
  32292. },
  32293. },
  32294. [
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(4 + 2/12, "feet"),
  32298. default: true
  32299. },
  32300. ]
  32301. ))
  32302. characterMakers.push(() => makeCharacter(
  32303. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32304. {
  32305. front: {
  32306. height: math.unit(7, "feet"),
  32307. weight: math.unit(231, "lb"),
  32308. name: "Front",
  32309. image: {
  32310. source: "./media/characters/flux/front.svg",
  32311. extra: 919/871,
  32312. bottom: 0/919
  32313. }
  32314. },
  32315. back: {
  32316. height: math.unit(7, "feet"),
  32317. weight: math.unit(231, "lb"),
  32318. name: "Back",
  32319. image: {
  32320. source: "./media/characters/flux/back.svg",
  32321. extra: 1040/992,
  32322. bottom: 0/1040
  32323. }
  32324. },
  32325. frontDressed: {
  32326. height: math.unit(7, "feet"),
  32327. weight: math.unit(231, "lb"),
  32328. name: "Front (Dressed)",
  32329. image: {
  32330. source: "./media/characters/flux/front-dressed.svg",
  32331. extra: 919/871,
  32332. bottom: 0/919
  32333. }
  32334. },
  32335. feralSide: {
  32336. height: math.unit(5, "feet"),
  32337. weight: math.unit(150, "lb"),
  32338. name: "Feral (Side)",
  32339. image: {
  32340. source: "./media/characters/flux/feral-side.svg",
  32341. extra: 598/528,
  32342. bottom: 28/626
  32343. }
  32344. },
  32345. head: {
  32346. height: math.unit(1.585, "feet"),
  32347. name: "Head",
  32348. image: {
  32349. source: "./media/characters/flux/head.svg"
  32350. }
  32351. },
  32352. headSide: {
  32353. height: math.unit(1.74, "feet"),
  32354. name: "Head (Side)",
  32355. image: {
  32356. source: "./media/characters/flux/head-side.svg"
  32357. }
  32358. },
  32359. headSideFire: {
  32360. height: math.unit(1.76, "feet"),
  32361. name: "Head (Side, Fire)",
  32362. image: {
  32363. source: "./media/characters/flux/head-side-fire.svg"
  32364. }
  32365. },
  32366. },
  32367. [
  32368. {
  32369. name: "Normal",
  32370. height: math.unit(7, "feet"),
  32371. default: true
  32372. },
  32373. ]
  32374. ))
  32375. characterMakers.push(() => makeCharacter(
  32376. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32377. {
  32378. front: {
  32379. height: math.unit(9, "feet"),
  32380. weight: math.unit(1012, "lb"),
  32381. name: "Front",
  32382. image: {
  32383. source: "./media/characters/ulfra-lupae/front.svg",
  32384. extra: 1083/1011,
  32385. bottom: 67/1150
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Micro",
  32392. height: math.unit(6, "inches")
  32393. },
  32394. {
  32395. name: "Socializing",
  32396. height: math.unit(6 + 5/12, "feet")
  32397. },
  32398. {
  32399. name: "Normal",
  32400. height: math.unit(9, "feet"),
  32401. default: true
  32402. },
  32403. {
  32404. name: "Macro",
  32405. height: math.unit(150, "feet")
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32411. {
  32412. front: {
  32413. height: math.unit(5 + 2/12, "feet"),
  32414. weight: math.unit(120, "lb"),
  32415. name: "Front",
  32416. image: {
  32417. source: "./media/characters/timber/front.svg",
  32418. extra: 2814/2705,
  32419. bottom: 181/2995
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(5 + 2/12, "feet"),
  32427. default: true
  32428. },
  32429. ]
  32430. ))
  32431. characterMakers.push(() => makeCharacter(
  32432. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32433. {
  32434. front: {
  32435. height: math.unit(9, "feet"),
  32436. name: "Front",
  32437. image: {
  32438. source: "./media/characters/nicki/front.svg",
  32439. extra: 1240/990,
  32440. bottom: 45/1285
  32441. },
  32442. form: "anthro",
  32443. default: true
  32444. },
  32445. side: {
  32446. height: math.unit(9, "feet"),
  32447. name: "Side",
  32448. image: {
  32449. source: "./media/characters/nicki/side.svg",
  32450. extra: 1047/973,
  32451. bottom: 61/1108
  32452. },
  32453. form: "anthro"
  32454. },
  32455. back: {
  32456. height: math.unit(9, "feet"),
  32457. name: "Back",
  32458. image: {
  32459. source: "./media/characters/nicki/back.svg",
  32460. extra: 1006/965,
  32461. bottom: 39/1045
  32462. },
  32463. form: "anthro"
  32464. },
  32465. taur: {
  32466. height: math.unit(15, "feet"),
  32467. name: "Taur",
  32468. image: {
  32469. source: "./media/characters/nicki/taur.svg",
  32470. extra: 1592/1347,
  32471. bottom: 0/1592
  32472. },
  32473. form: "taur",
  32474. default: true
  32475. },
  32476. },
  32477. [
  32478. {
  32479. name: "Normal",
  32480. height: math.unit(9, "feet"),
  32481. form: "anthro",
  32482. default: true
  32483. },
  32484. {
  32485. name: "Normal",
  32486. height: math.unit(15, "feet"),
  32487. form: "taur",
  32488. default: true
  32489. }
  32490. ],
  32491. {
  32492. "anthro": {
  32493. name: "Anthro",
  32494. default: true
  32495. },
  32496. "taur": {
  32497. name: "Taur"
  32498. }
  32499. }
  32500. ))
  32501. characterMakers.push(() => makeCharacter(
  32502. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32503. {
  32504. front: {
  32505. height: math.unit(7 + 10/12, "feet"),
  32506. weight: math.unit(3.5, "tons"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/lee/front.svg",
  32510. extra: 1773/1615,
  32511. bottom: 86/1859
  32512. }
  32513. },
  32514. hand: {
  32515. height: math.unit(1.78, "feet"),
  32516. name: "Hand",
  32517. image: {
  32518. source: "./media/characters/lee/hand.svg"
  32519. }
  32520. },
  32521. maw: {
  32522. height: math.unit(1.18, "feet"),
  32523. name: "Maw",
  32524. image: {
  32525. source: "./media/characters/lee/maw.svg"
  32526. }
  32527. },
  32528. },
  32529. [
  32530. {
  32531. name: "Normal",
  32532. height: math.unit(7 + 10/12, "feet"),
  32533. default: true
  32534. },
  32535. ]
  32536. ))
  32537. characterMakers.push(() => makeCharacter(
  32538. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32539. {
  32540. front: {
  32541. height: math.unit(9, "feet"),
  32542. name: "Front",
  32543. image: {
  32544. source: "./media/characters/guti/front.svg",
  32545. extra: 4551/4355,
  32546. bottom: 123/4674
  32547. }
  32548. },
  32549. tongue: {
  32550. height: math.unit(1, "feet"),
  32551. name: "Tongue",
  32552. image: {
  32553. source: "./media/characters/guti/tongue.svg"
  32554. }
  32555. },
  32556. paw: {
  32557. height: math.unit(1.18, "feet"),
  32558. name: "Paw",
  32559. image: {
  32560. source: "./media/characters/guti/paw.svg"
  32561. }
  32562. },
  32563. },
  32564. [
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(9, "feet"),
  32568. default: true
  32569. },
  32570. ]
  32571. ))
  32572. characterMakers.push(() => makeCharacter(
  32573. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32574. {
  32575. side: {
  32576. height: math.unit(5, "meters"),
  32577. name: "Side",
  32578. image: {
  32579. source: "./media/characters/vesper/side.svg",
  32580. extra: 1605/1518,
  32581. bottom: 0/1605
  32582. }
  32583. },
  32584. },
  32585. [
  32586. {
  32587. name: "Small",
  32588. height: math.unit(5, "meters")
  32589. },
  32590. {
  32591. name: "Sage",
  32592. height: math.unit(100, "meters"),
  32593. default: true
  32594. },
  32595. {
  32596. name: "Fun Size",
  32597. height: math.unit(600, "meters")
  32598. },
  32599. {
  32600. name: "Goddess",
  32601. height: math.unit(20000, "km")
  32602. },
  32603. {
  32604. name: "Maximum",
  32605. height: math.unit(5, "galaxies")
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32611. {
  32612. front: {
  32613. height: math.unit(6 + 3/12, "feet"),
  32614. weight: math.unit(190, "lb"),
  32615. name: "Front",
  32616. image: {
  32617. source: "./media/characters/gawain/front.svg",
  32618. extra: 2222/2139,
  32619. bottom: 90/2312
  32620. }
  32621. },
  32622. back: {
  32623. height: math.unit(6 + 3/12, "feet"),
  32624. weight: math.unit(190, "lb"),
  32625. name: "Back",
  32626. image: {
  32627. source: "./media/characters/gawain/back.svg",
  32628. extra: 2199/2111,
  32629. bottom: 73/2272
  32630. }
  32631. },
  32632. },
  32633. [
  32634. {
  32635. name: "Normal",
  32636. height: math.unit(6 + 3/12, "feet"),
  32637. default: true
  32638. },
  32639. ]
  32640. ))
  32641. characterMakers.push(() => makeCharacter(
  32642. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32643. {
  32644. side: {
  32645. height: math.unit(3.5, "meters"),
  32646. weight: math.unit(16000, "lb"),
  32647. name: "Side",
  32648. image: {
  32649. source: "./media/characters/dascalti/side.svg",
  32650. extra: 392/273,
  32651. bottom: 47/439
  32652. }
  32653. },
  32654. breath: {
  32655. height: math.unit(7.4, "feet"),
  32656. name: "Breath",
  32657. image: {
  32658. source: "./media/characters/dascalti/breath.svg"
  32659. }
  32660. },
  32661. fed: {
  32662. height: math.unit(3.6, "meters"),
  32663. weight: math.unit(16000, "lb"),
  32664. name: "Fed",
  32665. image: {
  32666. source: "./media/characters/dascalti/fed.svg",
  32667. extra: 1419/820,
  32668. bottom: 95/1514
  32669. }
  32670. },
  32671. },
  32672. [
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(3.5, "meters"),
  32676. default: true
  32677. },
  32678. ]
  32679. ))
  32680. characterMakers.push(() => makeCharacter(
  32681. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32682. {
  32683. front: {
  32684. height: math.unit(3 + 5/12, "feet"),
  32685. name: "Front",
  32686. image: {
  32687. source: "./media/characters/mauve/front.svg",
  32688. extra: 1126/1033,
  32689. bottom: 65/1191
  32690. }
  32691. },
  32692. side: {
  32693. height: math.unit(3 + 5/12, "feet"),
  32694. name: "Side",
  32695. image: {
  32696. source: "./media/characters/mauve/side.svg",
  32697. extra: 1089/1001,
  32698. bottom: 29/1118
  32699. }
  32700. },
  32701. back: {
  32702. height: math.unit(3 + 5/12, "feet"),
  32703. name: "Back",
  32704. image: {
  32705. source: "./media/characters/mauve/back.svg",
  32706. extra: 1173/1053,
  32707. bottom: 109/1282
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(3 + 5/12, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(6 + 3/12, "feet"),
  32724. weight: math.unit(430, "lb"),
  32725. name: "Front",
  32726. image: {
  32727. source: "./media/characters/carlos/front.svg",
  32728. extra: 1964/1913,
  32729. bottom: 70/2034
  32730. }
  32731. },
  32732. },
  32733. [
  32734. {
  32735. name: "Normal",
  32736. height: math.unit(6 + 3/12, "feet"),
  32737. default: true
  32738. },
  32739. ]
  32740. ))
  32741. characterMakers.push(() => makeCharacter(
  32742. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32743. {
  32744. back: {
  32745. height: math.unit(5 + 10/12, "feet"),
  32746. weight: math.unit(200, "lb"),
  32747. name: "Back",
  32748. image: {
  32749. source: "./media/characters/jax/back.svg",
  32750. extra: 764/739,
  32751. bottom: 25/789
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "Normal",
  32758. height: math.unit(5 + 10/12, "feet"),
  32759. default: true
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(8, "feet"),
  32768. weight: math.unit(250, "lb"),
  32769. name: "Front",
  32770. image: {
  32771. source: "./media/characters/eikthynir/front.svg",
  32772. extra: 1332/1166,
  32773. bottom: 82/1414
  32774. }
  32775. },
  32776. back: {
  32777. height: math.unit(8, "feet"),
  32778. weight: math.unit(250, "lb"),
  32779. name: "Back",
  32780. image: {
  32781. source: "./media/characters/eikthynir/back.svg",
  32782. extra: 1342/1190,
  32783. bottom: 19/1361
  32784. }
  32785. },
  32786. dick: {
  32787. height: math.unit(2.35, "feet"),
  32788. name: "Dick",
  32789. image: {
  32790. source: "./media/characters/eikthynir/dick.svg"
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Normal",
  32797. height: math.unit(8, "feet"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(99, "meters"),
  32807. weight: math.unit(13000, "tons"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/zlmos/front.svg",
  32811. extra: 2202/1992,
  32812. bottom: 315/2517
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Macro",
  32819. height: math.unit(99, "meters"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(6 + 5/12, "feet"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/purri/front.svg",
  32832. extra: 1698/1610,
  32833. bottom: 32/1730
  32834. }
  32835. },
  32836. frontAlt: {
  32837. height: math.unit(6 + 5/12, "feet"),
  32838. name: "Front (Alt)",
  32839. image: {
  32840. source: "./media/characters/purri/front-alt.svg",
  32841. extra: 450/420,
  32842. bottom: 26/476
  32843. }
  32844. },
  32845. boots: {
  32846. height: math.unit(5.5, "feet"),
  32847. name: "Boots",
  32848. image: {
  32849. source: "./media/characters/purri/boots.svg",
  32850. extra: 905/853,
  32851. bottom: 18/923
  32852. }
  32853. },
  32854. lying: {
  32855. height: math.unit(2, "feet"),
  32856. name: "Lying",
  32857. image: {
  32858. source: "./media/characters/purri/lying.svg",
  32859. extra: 940/843,
  32860. bottom: 146/1086
  32861. }
  32862. },
  32863. devious: {
  32864. height: math.unit(1.77, "feet"),
  32865. name: "Devious",
  32866. image: {
  32867. source: "./media/characters/purri/devious.svg",
  32868. extra: 1440/1155,
  32869. bottom: 147/1587
  32870. }
  32871. },
  32872. bean: {
  32873. height: math.unit(1.94, "feet"),
  32874. name: "Bean",
  32875. image: {
  32876. source: "./media/characters/purri/bean.svg"
  32877. }
  32878. },
  32879. },
  32880. [
  32881. {
  32882. name: "Micro",
  32883. height: math.unit(1, "mm")
  32884. },
  32885. {
  32886. name: "Normal",
  32887. height: math.unit(6 + 5/12, "feet"),
  32888. default: true
  32889. },
  32890. {
  32891. name: "Macro :3c",
  32892. height: math.unit(2, "miles")
  32893. },
  32894. ]
  32895. ))
  32896. characterMakers.push(() => makeCharacter(
  32897. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32898. {
  32899. front: {
  32900. height: math.unit(6 + 2/12, "feet"),
  32901. weight: math.unit(250, "lb"),
  32902. name: "Front",
  32903. image: {
  32904. source: "./media/characters/moonlight/front.svg",
  32905. extra: 1044/908,
  32906. bottom: 56/1100
  32907. }
  32908. },
  32909. feral: {
  32910. height: math.unit(3 + 1/12, "feet"),
  32911. weight: math.unit(50, "kg"),
  32912. name: "Feral",
  32913. image: {
  32914. source: "./media/characters/moonlight/feral.svg",
  32915. extra: 3705/2791,
  32916. bottom: 145/3850
  32917. }
  32918. },
  32919. paw: {
  32920. height: math.unit(1, "feet"),
  32921. name: "Paw",
  32922. image: {
  32923. source: "./media/characters/moonlight/paw.svg"
  32924. }
  32925. },
  32926. paws: {
  32927. height: math.unit(0.98, "feet"),
  32928. name: "Paws",
  32929. image: {
  32930. source: "./media/characters/moonlight/paws.svg",
  32931. extra: 939/939,
  32932. bottom: 50/989
  32933. }
  32934. },
  32935. mouth: {
  32936. height: math.unit(0.48, "feet"),
  32937. name: "Mouth",
  32938. image: {
  32939. source: "./media/characters/moonlight/mouth.svg"
  32940. }
  32941. },
  32942. dick: {
  32943. height: math.unit(1.46, "feet"),
  32944. name: "Dick",
  32945. image: {
  32946. source: "./media/characters/moonlight/dick.svg"
  32947. }
  32948. },
  32949. },
  32950. [
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(6 + 2/12, "feet"),
  32954. default: true
  32955. },
  32956. {
  32957. name: "Macro",
  32958. height: math.unit(300, "feet")
  32959. },
  32960. {
  32961. name: "Macro+",
  32962. height: math.unit(1, "mile")
  32963. },
  32964. {
  32965. name: "Mt. Moon",
  32966. height: math.unit(5, "miles")
  32967. },
  32968. {
  32969. name: "Megamacro",
  32970. height: math.unit(15, "miles")
  32971. },
  32972. ]
  32973. ))
  32974. characterMakers.push(() => makeCharacter(
  32975. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32976. {
  32977. back: {
  32978. height: math.unit(6, "feet"),
  32979. weight: math.unit(150, "lb"),
  32980. name: "Back",
  32981. image: {
  32982. source: "./media/characters/sylen/back.svg",
  32983. extra: 1335/1273,
  32984. bottom: 107/1442
  32985. }
  32986. },
  32987. },
  32988. [
  32989. {
  32990. name: "Normal",
  32991. height: math.unit(5 + 5/12, "feet")
  32992. },
  32993. {
  32994. name: "Megamacro",
  32995. height: math.unit(3, "miles"),
  32996. default: true
  32997. },
  32998. ]
  32999. ))
  33000. characterMakers.push(() => makeCharacter(
  33001. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33002. {
  33003. front: {
  33004. height: math.unit(6, "feet"),
  33005. weight: math.unit(190, "lb"),
  33006. name: "Front",
  33007. image: {
  33008. source: "./media/characters/huttser/front.svg",
  33009. extra: 1152/1058,
  33010. bottom: 23/1175
  33011. }
  33012. },
  33013. side: {
  33014. height: math.unit(6, "feet"),
  33015. weight: math.unit(190, "lb"),
  33016. name: "Side",
  33017. image: {
  33018. source: "./media/characters/huttser/side.svg",
  33019. extra: 1174/1065,
  33020. bottom: 18/1192
  33021. }
  33022. },
  33023. back: {
  33024. height: math.unit(6, "feet"),
  33025. weight: math.unit(190, "lb"),
  33026. name: "Back",
  33027. image: {
  33028. source: "./media/characters/huttser/back.svg",
  33029. extra: 1158/1056,
  33030. bottom: 12/1170
  33031. }
  33032. },
  33033. },
  33034. [
  33035. ]
  33036. ))
  33037. characterMakers.push(() => makeCharacter(
  33038. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33039. {
  33040. side: {
  33041. height: math.unit(12 + 9/12, "feet"),
  33042. weight: math.unit(15000, "lb"),
  33043. name: "Side",
  33044. image: {
  33045. source: "./media/characters/faan/side.svg",
  33046. extra: 2747/2697,
  33047. bottom: 0/2747
  33048. }
  33049. },
  33050. front: {
  33051. height: math.unit(12 + 9/12, "feet"),
  33052. weight: math.unit(15000, "lb"),
  33053. name: "Front",
  33054. image: {
  33055. source: "./media/characters/faan/front.svg",
  33056. extra: 607/571,
  33057. bottom: 24/631
  33058. }
  33059. },
  33060. head: {
  33061. height: math.unit(2.85, "feet"),
  33062. name: "Head",
  33063. image: {
  33064. source: "./media/characters/faan/head.svg"
  33065. }
  33066. },
  33067. headAlt: {
  33068. height: math.unit(3.13, "feet"),
  33069. name: "Head-alt",
  33070. image: {
  33071. source: "./media/characters/faan/head-alt.svg"
  33072. }
  33073. },
  33074. },
  33075. [
  33076. {
  33077. name: "Normal",
  33078. height: math.unit(12 + 9/12, "feet"),
  33079. default: true
  33080. },
  33081. ]
  33082. ))
  33083. characterMakers.push(() => makeCharacter(
  33084. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33085. {
  33086. front: {
  33087. height: math.unit(6, "feet"),
  33088. weight: math.unit(300, "lb"),
  33089. name: "Front",
  33090. image: {
  33091. source: "./media/characters/tanio/front.svg",
  33092. extra: 711/673,
  33093. bottom: 25/736
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(6, "feet"),
  33101. default: true
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(3, "inches"),
  33110. name: "Front",
  33111. image: {
  33112. source: "./media/characters/noboru/front.svg",
  33113. extra: 1039/932,
  33114. bottom: 18/1057
  33115. }
  33116. },
  33117. },
  33118. [
  33119. {
  33120. name: "Micro",
  33121. height: math.unit(3, "inches"),
  33122. default: true
  33123. },
  33124. ]
  33125. ))
  33126. characterMakers.push(() => makeCharacter(
  33127. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33128. {
  33129. front: {
  33130. height: math.unit(1.85, "meters"),
  33131. weight: math.unit(80, "kg"),
  33132. name: "Front",
  33133. image: {
  33134. source: "./media/characters/daniel-barrett/front.svg",
  33135. extra: 355/337,
  33136. bottom: 9/364
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Pico",
  33143. height: math.unit(0.0433, "mm")
  33144. },
  33145. {
  33146. name: "Nano",
  33147. height: math.unit(1.5, "mm")
  33148. },
  33149. {
  33150. name: "Micro",
  33151. height: math.unit(5.3, "cm"),
  33152. default: true
  33153. },
  33154. {
  33155. name: "Normal",
  33156. height: math.unit(1.85, "meters")
  33157. },
  33158. {
  33159. name: "Macro",
  33160. height: math.unit(64.7, "meters")
  33161. },
  33162. {
  33163. name: "Megamacro",
  33164. height: math.unit(2.26, "km")
  33165. },
  33166. {
  33167. name: "Gigamacro",
  33168. height: math.unit(79, "km")
  33169. },
  33170. {
  33171. name: "Teramacro",
  33172. height: math.unit(2765, "km")
  33173. },
  33174. {
  33175. name: "Petamacro",
  33176. height: math.unit(96678, "km")
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33182. {
  33183. front: {
  33184. height: math.unit(30, "meters"),
  33185. weight: math.unit(400, "tons"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/zeel/front.svg",
  33189. extra: 2599/2599,
  33190. bottom: 226/2825
  33191. }
  33192. },
  33193. },
  33194. [
  33195. {
  33196. name: "Macro",
  33197. height: math.unit(30, "meters"),
  33198. default: true
  33199. },
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33204. {
  33205. front: {
  33206. height: math.unit(6 + 7/12, "feet"),
  33207. weight: math.unit(210, "lb"),
  33208. name: "Front",
  33209. image: {
  33210. source: "./media/characters/tarn/front.svg",
  33211. extra: 3517/3220,
  33212. bottom: 91/3608
  33213. }
  33214. },
  33215. back: {
  33216. height: math.unit(6 + 7/12, "feet"),
  33217. weight: math.unit(210, "lb"),
  33218. name: "Back",
  33219. image: {
  33220. source: "./media/characters/tarn/back.svg",
  33221. extra: 3566/3241,
  33222. bottom: 34/3600
  33223. }
  33224. },
  33225. dick: {
  33226. height: math.unit(1.65, "feet"),
  33227. name: "Dick",
  33228. image: {
  33229. source: "./media/characters/tarn/dick.svg"
  33230. }
  33231. },
  33232. paw: {
  33233. height: math.unit(1.80, "feet"),
  33234. name: "Paw",
  33235. image: {
  33236. source: "./media/characters/tarn/paw.svg"
  33237. }
  33238. },
  33239. tongue: {
  33240. height: math.unit(0.97, "feet"),
  33241. name: "Tongue",
  33242. image: {
  33243. source: "./media/characters/tarn/tongue.svg"
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Micro",
  33250. height: math.unit(4, "inches")
  33251. },
  33252. {
  33253. name: "Normal",
  33254. height: math.unit(6 + 7/12, "feet"),
  33255. default: true
  33256. },
  33257. {
  33258. name: "Macro",
  33259. height: math.unit(300, "feet")
  33260. },
  33261. ]
  33262. ))
  33263. characterMakers.push(() => makeCharacter(
  33264. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33265. {
  33266. front: {
  33267. height: math.unit(5 + 7/12, "feet"),
  33268. weight: math.unit(80, "kg"),
  33269. name: "Front",
  33270. image: {
  33271. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33272. extra: 3023/2865,
  33273. bottom: 33/3056
  33274. }
  33275. },
  33276. back: {
  33277. height: math.unit(5 + 7/12, "feet"),
  33278. weight: math.unit(80, "kg"),
  33279. name: "Back",
  33280. image: {
  33281. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33282. extra: 3020/2886,
  33283. bottom: 30/3050
  33284. }
  33285. },
  33286. dick: {
  33287. height: math.unit(0.98, "feet"),
  33288. name: "Dick",
  33289. image: {
  33290. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33291. }
  33292. },
  33293. anatomy: {
  33294. height: math.unit(2.86, "feet"),
  33295. name: "Anatomy",
  33296. image: {
  33297. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Really Small",
  33304. height: math.unit(2, "inches")
  33305. },
  33306. {
  33307. name: "Micro",
  33308. height: math.unit(5.583, "inches")
  33309. },
  33310. {
  33311. name: "Normal",
  33312. height: math.unit(5 + 7/12, "feet"),
  33313. default: true
  33314. },
  33315. {
  33316. name: "Macro",
  33317. height: math.unit(67, "feet")
  33318. },
  33319. {
  33320. name: "Megamacro",
  33321. height: math.unit(134, "feet")
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33327. {
  33328. front: {
  33329. height: math.unit(9, "feet"),
  33330. weight: math.unit(120, "lb"),
  33331. name: "Front",
  33332. image: {
  33333. source: "./media/characters/sally/front.svg",
  33334. extra: 1506/1349,
  33335. bottom: 66/1572
  33336. }
  33337. },
  33338. },
  33339. [
  33340. {
  33341. name: "Normal",
  33342. height: math.unit(9, "feet"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(8, "feet"),
  33352. weight: math.unit(900, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/owen/front.svg",
  33356. extra: 1761/1657,
  33357. bottom: 74/1835
  33358. }
  33359. },
  33360. side: {
  33361. height: math.unit(8, "feet"),
  33362. weight: math.unit(900, "lb"),
  33363. name: "Side",
  33364. image: {
  33365. source: "./media/characters/owen/side.svg",
  33366. extra: 1797/1734,
  33367. bottom: 30/1827
  33368. }
  33369. },
  33370. back: {
  33371. height: math.unit(8, "feet"),
  33372. weight: math.unit(900, "lb"),
  33373. name: "Back",
  33374. image: {
  33375. source: "./media/characters/owen/back.svg",
  33376. extra: 1796/1706,
  33377. bottom: 59/1855
  33378. }
  33379. },
  33380. maw: {
  33381. height: math.unit(1.76, "feet"),
  33382. name: "Maw",
  33383. image: {
  33384. source: "./media/characters/owen/maw.svg"
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Normal",
  33391. height: math.unit(8, "feet"),
  33392. default: true
  33393. },
  33394. ]
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33398. {
  33399. front: {
  33400. height: math.unit(4, "feet"),
  33401. weight: math.unit(400, "lb"),
  33402. name: "Front",
  33403. image: {
  33404. source: "./media/characters/ryth/front.svg",
  33405. extra: 1920/1748,
  33406. bottom: 42/1962
  33407. }
  33408. },
  33409. back: {
  33410. height: math.unit(4, "feet"),
  33411. weight: math.unit(400, "lb"),
  33412. name: "Back",
  33413. image: {
  33414. source: "./media/characters/ryth/back.svg",
  33415. extra: 1897/1690,
  33416. bottom: 89/1986
  33417. }
  33418. },
  33419. mouth: {
  33420. height: math.unit(1.39, "feet"),
  33421. name: "Mouth",
  33422. image: {
  33423. source: "./media/characters/ryth/mouth.svg"
  33424. }
  33425. },
  33426. tailmaw: {
  33427. height: math.unit(1.23, "feet"),
  33428. name: "Tailmaw",
  33429. image: {
  33430. source: "./media/characters/ryth/tailmaw.svg"
  33431. }
  33432. },
  33433. goia: {
  33434. height: math.unit(4, "meters"),
  33435. weight: math.unit(10800, "lb"),
  33436. name: "Goia",
  33437. image: {
  33438. source: "./media/characters/ryth/goia.svg",
  33439. extra: 745/640,
  33440. bottom: 107/852
  33441. }
  33442. },
  33443. goiaFront: {
  33444. height: math.unit(4, "meters"),
  33445. weight: math.unit(10800, "lb"),
  33446. name: "Goia (Front)",
  33447. image: {
  33448. source: "./media/characters/ryth/goia-front.svg",
  33449. extra: 750/586,
  33450. bottom: 114/864
  33451. }
  33452. },
  33453. goiaMaw: {
  33454. height: math.unit(5.55, "feet"),
  33455. name: "Goia Maw",
  33456. image: {
  33457. source: "./media/characters/ryth/goia-maw.svg"
  33458. }
  33459. },
  33460. goiaForepaw: {
  33461. height: math.unit(3.5, "feet"),
  33462. name: "Goia Forepaw",
  33463. image: {
  33464. source: "./media/characters/ryth/goia-forepaw.svg"
  33465. }
  33466. },
  33467. goiaHindpaw: {
  33468. height: math.unit(5.55, "feet"),
  33469. name: "Goia Hindpaw",
  33470. image: {
  33471. source: "./media/characters/ryth/goia-hindpaw.svg"
  33472. }
  33473. },
  33474. },
  33475. [
  33476. {
  33477. name: "Normal",
  33478. height: math.unit(4, "feet"),
  33479. default: true
  33480. },
  33481. ]
  33482. ))
  33483. characterMakers.push(() => makeCharacter(
  33484. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33485. {
  33486. front: {
  33487. height: math.unit(7, "feet"),
  33488. weight: math.unit(180, "lb"),
  33489. name: "Front",
  33490. image: {
  33491. source: "./media/characters/necrolance/front.svg",
  33492. extra: 1062/947,
  33493. bottom: 41/1103
  33494. }
  33495. },
  33496. back: {
  33497. height: math.unit(7, "feet"),
  33498. weight: math.unit(180, "lb"),
  33499. name: "Back",
  33500. image: {
  33501. source: "./media/characters/necrolance/back.svg",
  33502. extra: 1045/984,
  33503. bottom: 14/1059
  33504. }
  33505. },
  33506. wing: {
  33507. height: math.unit(2.67, "feet"),
  33508. name: "Wing",
  33509. image: {
  33510. source: "./media/characters/necrolance/wing.svg"
  33511. }
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(7, "feet"),
  33518. default: true
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33524. {
  33525. front: {
  33526. height: math.unit(76, "meters"),
  33527. weight: math.unit(30000, "tons"),
  33528. name: "Front",
  33529. image: {
  33530. source: "./media/characters/tyler/front.svg",
  33531. extra: 1640/1640,
  33532. bottom: 114/1754
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Macro",
  33539. height: math.unit(76, "meters"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(4 + 11/12, "feet"),
  33549. weight: math.unit(132, "lb"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/icey/front.svg",
  33553. extra: 2750/2550,
  33554. bottom: 33/2783
  33555. }
  33556. },
  33557. back: {
  33558. height: math.unit(4 + 11/12, "feet"),
  33559. weight: math.unit(132, "lb"),
  33560. name: "Back",
  33561. image: {
  33562. source: "./media/characters/icey/back.svg",
  33563. extra: 2624/2481,
  33564. bottom: 35/2659
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Normal",
  33571. height: math.unit(4 + 11/12, "feet"),
  33572. default: true
  33573. },
  33574. ]
  33575. ))
  33576. characterMakers.push(() => makeCharacter(
  33577. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33578. {
  33579. front: {
  33580. height: math.unit(100, "feet"),
  33581. weight: math.unit(0, "lb"),
  33582. name: "Front",
  33583. image: {
  33584. source: "./media/characters/smile/front.svg",
  33585. extra: 2983/2912,
  33586. bottom: 162/3145
  33587. }
  33588. },
  33589. back: {
  33590. height: math.unit(100, "feet"),
  33591. weight: math.unit(0, "lb"),
  33592. name: "Back",
  33593. image: {
  33594. source: "./media/characters/smile/back.svg",
  33595. extra: 3143/3031,
  33596. bottom: 91/3234
  33597. }
  33598. },
  33599. head: {
  33600. height: math.unit(26.3, "feet"),
  33601. weight: math.unit(0, "lb"),
  33602. name: "Head",
  33603. image: {
  33604. source: "./media/characters/smile/head.svg"
  33605. }
  33606. },
  33607. collar: {
  33608. height: math.unit(5.3, "feet"),
  33609. weight: math.unit(0, "lb"),
  33610. name: "Collar",
  33611. image: {
  33612. source: "./media/characters/smile/collar.svg"
  33613. }
  33614. },
  33615. },
  33616. [
  33617. {
  33618. name: "Macro",
  33619. height: math.unit(100, "feet"),
  33620. default: true
  33621. },
  33622. ]
  33623. ))
  33624. characterMakers.push(() => makeCharacter(
  33625. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33626. {
  33627. dragon: {
  33628. height: math.unit(26, "feet"),
  33629. weight: math.unit(36, "tons"),
  33630. name: "Dragon",
  33631. image: {
  33632. source: "./media/characters/arimphae/dragon.svg",
  33633. extra: 1574/983,
  33634. bottom: 357/1931
  33635. }
  33636. },
  33637. drake: {
  33638. height: math.unit(9, "feet"),
  33639. weight: math.unit(1.5, "tons"),
  33640. name: "Drake",
  33641. image: {
  33642. source: "./media/characters/arimphae/drake.svg",
  33643. extra: 1120/925,
  33644. bottom: 435/1555
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Small",
  33651. height: math.unit(26*5/9, "feet")
  33652. },
  33653. {
  33654. name: "Normal",
  33655. height: math.unit(26, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33662. {
  33663. front: {
  33664. height: math.unit(8 + 9/12, "feet"),
  33665. name: "Front",
  33666. image: {
  33667. source: "./media/characters/xander/front.svg",
  33668. extra: 1237/974,
  33669. bottom: 94/1331
  33670. }
  33671. },
  33672. },
  33673. [
  33674. {
  33675. name: "Normal",
  33676. height: math.unit(8 + 9/12, "feet"),
  33677. default: true
  33678. },
  33679. {
  33680. name: "Gaze Grabber",
  33681. height: math.unit(13 + 8/12, "feet")
  33682. },
  33683. {
  33684. name: "Jaw Dropper",
  33685. height: math.unit(27, "feet")
  33686. },
  33687. {
  33688. name: "Show Stopper",
  33689. height: math.unit(136, "feet")
  33690. },
  33691. {
  33692. name: "Superstar",
  33693. height: math.unit(1.9e6, "miles")
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33699. {
  33700. side: {
  33701. height: math.unit(2100, "feet"),
  33702. name: "Side",
  33703. image: {
  33704. source: "./media/characters/osiris/side.svg",
  33705. extra: 1105/939,
  33706. bottom: 167/1272
  33707. }
  33708. },
  33709. },
  33710. [
  33711. {
  33712. name: "Macro",
  33713. height: math.unit(2100, "feet"),
  33714. default: true
  33715. },
  33716. ]
  33717. ))
  33718. characterMakers.push(() => makeCharacter(
  33719. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33720. {
  33721. front: {
  33722. height: math.unit(6 + 8/12, "feet"),
  33723. weight: math.unit(225, "lb"),
  33724. name: "Front",
  33725. image: {
  33726. source: "./media/characters/rhys-londe/front.svg",
  33727. extra: 2258/2141,
  33728. bottom: 188/2446
  33729. }
  33730. },
  33731. back: {
  33732. height: math.unit(6 + 8/12, "feet"),
  33733. weight: math.unit(225, "lb"),
  33734. name: "Back",
  33735. image: {
  33736. source: "./media/characters/rhys-londe/back.svg",
  33737. extra: 2237/2137,
  33738. bottom: 63/2300
  33739. }
  33740. },
  33741. frontNsfw: {
  33742. height: math.unit(6 + 8/12, "feet"),
  33743. weight: math.unit(225, "lb"),
  33744. name: "Front (NSFW)",
  33745. image: {
  33746. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33747. extra: 2258/2141,
  33748. bottom: 188/2446
  33749. }
  33750. },
  33751. backNsfw: {
  33752. height: math.unit(6 + 8/12, "feet"),
  33753. weight: math.unit(225, "lb"),
  33754. name: "Back (NSFW)",
  33755. image: {
  33756. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33757. extra: 2237/2137,
  33758. bottom: 63/2300
  33759. }
  33760. },
  33761. dick: {
  33762. height: math.unit(30, "inches"),
  33763. name: "Dick",
  33764. image: {
  33765. source: "./media/characters/rhys-londe/dick.svg"
  33766. }
  33767. },
  33768. maw: {
  33769. height: math.unit(1.6, "feet"),
  33770. name: "Maw",
  33771. image: {
  33772. source: "./media/characters/rhys-londe/maw.svg"
  33773. }
  33774. },
  33775. },
  33776. [
  33777. {
  33778. name: "Normal",
  33779. height: math.unit(6 + 8/12, "feet"),
  33780. default: true
  33781. },
  33782. ]
  33783. ))
  33784. characterMakers.push(() => makeCharacter(
  33785. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33786. {
  33787. front: {
  33788. height: math.unit(3 + 10/12, "feet"),
  33789. weight: math.unit(90, "lb"),
  33790. name: "Front",
  33791. image: {
  33792. source: "./media/characters/taivas-ensim/front.svg",
  33793. extra: 1327/1216,
  33794. bottom: 96/1423
  33795. }
  33796. },
  33797. back: {
  33798. height: math.unit(3 + 10/12, "feet"),
  33799. weight: math.unit(90, "lb"),
  33800. name: "Back",
  33801. image: {
  33802. source: "./media/characters/taivas-ensim/back.svg",
  33803. extra: 1355/1247,
  33804. bottom: 11/1366
  33805. }
  33806. },
  33807. frontNsfw: {
  33808. height: math.unit(3 + 10/12, "feet"),
  33809. weight: math.unit(90, "lb"),
  33810. name: "Front (NSFW)",
  33811. image: {
  33812. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33813. extra: 1327/1216,
  33814. bottom: 96/1423
  33815. }
  33816. },
  33817. backNsfw: {
  33818. height: math.unit(3 + 10/12, "feet"),
  33819. weight: math.unit(90, "lb"),
  33820. name: "Back (NSFW)",
  33821. image: {
  33822. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33823. extra: 1355/1247,
  33824. bottom: 11/1366
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Normal",
  33831. height: math.unit(3 + 10/12, "feet"),
  33832. default: true
  33833. },
  33834. ]
  33835. ))
  33836. characterMakers.push(() => makeCharacter(
  33837. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33838. {
  33839. front: {
  33840. height: math.unit(9 + 6/12, "feet"),
  33841. weight: math.unit(940, "lb"),
  33842. name: "Front",
  33843. image: {
  33844. source: "./media/characters/byliss/front.svg",
  33845. extra: 1327/1290,
  33846. bottom: 82/1409
  33847. }
  33848. },
  33849. back: {
  33850. height: math.unit(9 + 6/12, "feet"),
  33851. weight: math.unit(940, "lb"),
  33852. name: "Back",
  33853. image: {
  33854. source: "./media/characters/byliss/back.svg",
  33855. extra: 1376/1349,
  33856. bottom: 9/1385
  33857. }
  33858. },
  33859. frontNsfw: {
  33860. height: math.unit(9 + 6/12, "feet"),
  33861. weight: math.unit(940, "lb"),
  33862. name: "Front (NSFW)",
  33863. image: {
  33864. source: "./media/characters/byliss/front-nsfw.svg",
  33865. extra: 1327/1290,
  33866. bottom: 82/1409
  33867. }
  33868. },
  33869. backNsfw: {
  33870. height: math.unit(9 + 6/12, "feet"),
  33871. weight: math.unit(940, "lb"),
  33872. name: "Back (NSFW)",
  33873. image: {
  33874. source: "./media/characters/byliss/back-nsfw.svg",
  33875. extra: 1376/1349,
  33876. bottom: 9/1385
  33877. }
  33878. },
  33879. },
  33880. [
  33881. {
  33882. name: "Normal",
  33883. height: math.unit(9 + 6/12, "feet"),
  33884. default: true
  33885. },
  33886. ]
  33887. ))
  33888. characterMakers.push(() => makeCharacter(
  33889. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33890. {
  33891. front: {
  33892. height: math.unit(5 + 2/12, "feet"),
  33893. weight: math.unit(200, "lb"),
  33894. name: "Front",
  33895. image: {
  33896. source: "./media/characters/noraly/front.svg",
  33897. extra: 4985/4773,
  33898. bottom: 150/5135
  33899. }
  33900. },
  33901. full: {
  33902. height: math.unit(5 + 2/12, "feet"),
  33903. weight: math.unit(164, "lb"),
  33904. name: "Full",
  33905. image: {
  33906. source: "./media/characters/noraly/full.svg",
  33907. extra: 1114/1059,
  33908. bottom: 35/1149
  33909. }
  33910. },
  33911. fuller: {
  33912. height: math.unit(5 + 2/12, "feet"),
  33913. weight: math.unit(230, "lb"),
  33914. name: "Fuller",
  33915. image: {
  33916. source: "./media/characters/noraly/fuller.svg",
  33917. extra: 1114/1059,
  33918. bottom: 35/1149
  33919. }
  33920. },
  33921. fullest: {
  33922. height: math.unit(5 + 2/12, "feet"),
  33923. weight: math.unit(300, "lb"),
  33924. name: "Fullest",
  33925. image: {
  33926. source: "./media/characters/noraly/fullest.svg",
  33927. extra: 1114/1059,
  33928. bottom: 35/1149
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Normal",
  33935. height: math.unit(5 + 2/12, "feet"),
  33936. default: true
  33937. },
  33938. ]
  33939. ))
  33940. characterMakers.push(() => makeCharacter(
  33941. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33942. {
  33943. front: {
  33944. height: math.unit(5 + 2/12, "feet"),
  33945. weight: math.unit(210, "lb"),
  33946. name: "Front",
  33947. image: {
  33948. source: "./media/characters/pera/front.svg",
  33949. extra: 1560/1531,
  33950. bottom: 165/1725
  33951. }
  33952. },
  33953. back: {
  33954. height: math.unit(5 + 2/12, "feet"),
  33955. weight: math.unit(210, "lb"),
  33956. name: "Back",
  33957. image: {
  33958. source: "./media/characters/pera/back.svg",
  33959. extra: 1523/1493,
  33960. bottom: 152/1675
  33961. }
  33962. },
  33963. dick: {
  33964. height: math.unit(2.4, "feet"),
  33965. name: "Dick",
  33966. image: {
  33967. source: "./media/characters/pera/dick.svg"
  33968. }
  33969. },
  33970. },
  33971. [
  33972. {
  33973. name: "Normal",
  33974. height: math.unit(5 + 2/12, "feet"),
  33975. default: true
  33976. },
  33977. ]
  33978. ))
  33979. characterMakers.push(() => makeCharacter(
  33980. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33981. {
  33982. front: {
  33983. height: math.unit(12, "feet"),
  33984. weight: math.unit(3200, "lb"),
  33985. name: "Front",
  33986. image: {
  33987. source: "./media/characters/julian/front.svg",
  33988. extra: 2962/2701,
  33989. bottom: 184/3146
  33990. }
  33991. },
  33992. maw: {
  33993. height: math.unit(5.35, "feet"),
  33994. name: "Maw",
  33995. image: {
  33996. source: "./media/characters/julian/maw.svg"
  33997. }
  33998. },
  33999. paw: {
  34000. height: math.unit(3.07, "feet"),
  34001. name: "Paw",
  34002. image: {
  34003. source: "./media/characters/julian/paw.svg"
  34004. }
  34005. },
  34006. },
  34007. [
  34008. {
  34009. name: "Default",
  34010. height: math.unit(12, "feet"),
  34011. default: true
  34012. },
  34013. {
  34014. name: "Big",
  34015. height: math.unit(50, "feet")
  34016. },
  34017. {
  34018. name: "Really Big",
  34019. height: math.unit(1, "mile")
  34020. },
  34021. {
  34022. name: "Extremely Big",
  34023. height: math.unit(100, "miles")
  34024. },
  34025. {
  34026. name: "Planet Hugger",
  34027. height: math.unit(200, "megameters")
  34028. },
  34029. {
  34030. name: "Unreasonably Big",
  34031. height: math.unit(1e300, "meters")
  34032. },
  34033. ]
  34034. ))
  34035. characterMakers.push(() => makeCharacter(
  34036. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34037. {
  34038. solgooleo: {
  34039. height: math.unit(4, "meters"),
  34040. weight: math.unit(6000*1.5, "kg"),
  34041. volume: math.unit(6000, "liters"),
  34042. name: "Solgooleo",
  34043. image: {
  34044. source: "./media/characters/pi/solgooleo.svg",
  34045. extra: 388/331,
  34046. bottom: 29/417
  34047. }
  34048. },
  34049. },
  34050. [
  34051. {
  34052. name: "Normal",
  34053. height: math.unit(4, "meters"),
  34054. default: true
  34055. },
  34056. ]
  34057. ))
  34058. characterMakers.push(() => makeCharacter(
  34059. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34060. {
  34061. front: {
  34062. height: math.unit(8, "feet"),
  34063. weight: math.unit(4, "tons"),
  34064. name: "Front",
  34065. image: {
  34066. source: "./media/characters/shaun/front.svg",
  34067. extra: 503/495,
  34068. bottom: 20/523
  34069. }
  34070. },
  34071. back: {
  34072. height: math.unit(8, "feet"),
  34073. weight: math.unit(4, "tons"),
  34074. name: "Back",
  34075. image: {
  34076. source: "./media/characters/shaun/back.svg",
  34077. extra: 487/480,
  34078. bottom: 20/507
  34079. }
  34080. },
  34081. },
  34082. [
  34083. {
  34084. name: "Lorg",
  34085. height: math.unit(8, "feet"),
  34086. default: true
  34087. },
  34088. ]
  34089. ))
  34090. characterMakers.push(() => makeCharacter(
  34091. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34092. {
  34093. frontAnthro: {
  34094. height: math.unit(7, "feet"),
  34095. name: "Front",
  34096. image: {
  34097. source: "./media/characters/sini/front-anthro.svg",
  34098. extra: 726/678,
  34099. bottom: 35/761
  34100. },
  34101. form: "anthro",
  34102. default: true
  34103. },
  34104. backAnthro: {
  34105. height: math.unit(7, "feet"),
  34106. name: "Back",
  34107. image: {
  34108. source: "./media/characters/sini/back-anthro.svg",
  34109. extra: 743/701,
  34110. bottom: 12/755
  34111. },
  34112. form: "anthro",
  34113. },
  34114. frontAnthroNsfw: {
  34115. height: math.unit(7, "feet"),
  34116. name: "Front (NSFW)",
  34117. image: {
  34118. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34119. extra: 726/678,
  34120. bottom: 35/761
  34121. },
  34122. form: "anthro"
  34123. },
  34124. backAnthroNsfw: {
  34125. height: math.unit(7, "feet"),
  34126. name: "Back (NSFW)",
  34127. image: {
  34128. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34129. extra: 743/701,
  34130. bottom: 12/755
  34131. },
  34132. form: "anthro",
  34133. },
  34134. mawAnthro: {
  34135. height: math.unit(2.14, "feet"),
  34136. name: "Maw",
  34137. image: {
  34138. source: "./media/characters/sini/maw-anthro.svg"
  34139. },
  34140. form: "anthro"
  34141. },
  34142. dick: {
  34143. height: math.unit(1.45, "feet"),
  34144. name: "Dick",
  34145. image: {
  34146. source: "./media/characters/sini/dick-anthro.svg"
  34147. },
  34148. form: "anthro"
  34149. },
  34150. feral: {
  34151. height: math.unit(16, "feet"),
  34152. name: "Feral",
  34153. image: {
  34154. source: "./media/characters/sini/feral.svg",
  34155. extra: 814/605,
  34156. bottom: 11/825
  34157. },
  34158. form: "feral",
  34159. default: true
  34160. },
  34161. feralNsfw: {
  34162. height: math.unit(16, "feet"),
  34163. name: "Feral (NSFW)",
  34164. image: {
  34165. source: "./media/characters/sini/feral-nsfw.svg",
  34166. extra: 814/605,
  34167. bottom: 11/825
  34168. },
  34169. form: "feral"
  34170. },
  34171. mawFeral: {
  34172. height: math.unit(5.66, "feet"),
  34173. name: "Maw",
  34174. image: {
  34175. source: "./media/characters/sini/maw-feral.svg"
  34176. },
  34177. form: "feral",
  34178. },
  34179. pawFeral: {
  34180. height: math.unit(5.17, "feet"),
  34181. name: "Paw",
  34182. image: {
  34183. source: "./media/characters/sini/paw-feral.svg"
  34184. },
  34185. form: "feral",
  34186. },
  34187. rumpFeral: {
  34188. height: math.unit(13.11, "feet"),
  34189. name: "Rump",
  34190. image: {
  34191. source: "./media/characters/sini/rump-feral.svg"
  34192. },
  34193. form: "feral",
  34194. },
  34195. dickFeral: {
  34196. height: math.unit(1, "feet"),
  34197. name: "Dick",
  34198. image: {
  34199. source: "./media/characters/sini/dick-feral.svg"
  34200. },
  34201. form: "feral",
  34202. },
  34203. eyeFeral: {
  34204. height: math.unit(1.23, "feet"),
  34205. name: "Eye",
  34206. image: {
  34207. source: "./media/characters/sini/eye-feral.svg"
  34208. },
  34209. form: "feral",
  34210. },
  34211. },
  34212. [
  34213. {
  34214. name: "Normal",
  34215. height: math.unit(7, "feet"),
  34216. default: true,
  34217. form: "anthro"
  34218. },
  34219. {
  34220. name: "Normal",
  34221. height: math.unit(16, "feet"),
  34222. default: true,
  34223. form: "feral"
  34224. },
  34225. ],
  34226. {
  34227. "anthro": {
  34228. name: "Anthro",
  34229. default: true
  34230. },
  34231. "feral": {
  34232. name: "Feral",
  34233. }
  34234. }
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34238. {
  34239. side: {
  34240. height: math.unit(47.2, "meters"),
  34241. weight: math.unit(10000, "tons"),
  34242. name: "Side",
  34243. image: {
  34244. source: "./media/characters/raylldo/side.svg",
  34245. extra: 2363/642,
  34246. bottom: 221/2584
  34247. }
  34248. },
  34249. top: {
  34250. height: math.unit(240, "meters"),
  34251. weight: math.unit(10000, "tons"),
  34252. name: "Top",
  34253. image: {
  34254. source: "./media/characters/raylldo/top.svg"
  34255. }
  34256. },
  34257. bottom: {
  34258. height: math.unit(240, "meters"),
  34259. weight: math.unit(10000, "tons"),
  34260. name: "Bottom",
  34261. image: {
  34262. source: "./media/characters/raylldo/bottom.svg"
  34263. }
  34264. },
  34265. head: {
  34266. height: math.unit(38.6, "meters"),
  34267. name: "Head",
  34268. image: {
  34269. source: "./media/characters/raylldo/head.svg",
  34270. extra: 1335/1112,
  34271. bottom: 0/1335
  34272. }
  34273. },
  34274. maw: {
  34275. height: math.unit(16.37, "meters"),
  34276. name: "Maw",
  34277. image: {
  34278. source: "./media/characters/raylldo/maw.svg",
  34279. extra: 883/660,
  34280. bottom: 0/883
  34281. },
  34282. extraAttributes: {
  34283. preyCapacity: {
  34284. name: "Capacity",
  34285. power: 3,
  34286. type: "volume",
  34287. base: math.unit(1000, "people")
  34288. },
  34289. tongueSize: {
  34290. name: "Tongue Size",
  34291. power: 2,
  34292. type: "area",
  34293. base: math.unit(21, "m^2")
  34294. }
  34295. }
  34296. },
  34297. forepaw: {
  34298. height: math.unit(18, "meters"),
  34299. name: "Forepaw",
  34300. image: {
  34301. source: "./media/characters/raylldo/forepaw.svg"
  34302. }
  34303. },
  34304. hindpaw: {
  34305. height: math.unit(23, "meters"),
  34306. name: "Hindpaw",
  34307. image: {
  34308. source: "./media/characters/raylldo/hindpaw.svg"
  34309. }
  34310. },
  34311. genitals: {
  34312. height: math.unit(42, "meters"),
  34313. name: "Genitals",
  34314. image: {
  34315. source: "./media/characters/raylldo/genitals.svg"
  34316. }
  34317. },
  34318. },
  34319. [
  34320. {
  34321. name: "Normal",
  34322. height: math.unit(47.2, "meters"),
  34323. default: true
  34324. },
  34325. ]
  34326. ))
  34327. characterMakers.push(() => makeCharacter(
  34328. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34329. {
  34330. anthroFront: {
  34331. height: math.unit(9, "feet"),
  34332. weight: math.unit(600, "lb"),
  34333. name: "Anthro (Front)",
  34334. image: {
  34335. source: "./media/characters/glint/anthro-front.svg",
  34336. extra: 1097/1018,
  34337. bottom: 28/1125
  34338. }
  34339. },
  34340. anthroBack: {
  34341. height: math.unit(9, "feet"),
  34342. weight: math.unit(600, "lb"),
  34343. name: "Anthro (Back)",
  34344. image: {
  34345. source: "./media/characters/glint/anthro-back.svg",
  34346. extra: 1154/997,
  34347. bottom: 36/1190
  34348. }
  34349. },
  34350. feral: {
  34351. height: math.unit(11, "feet"),
  34352. weight: math.unit(50000, "lb"),
  34353. name: "Feral",
  34354. image: {
  34355. source: "./media/characters/glint/feral.svg",
  34356. extra: 3035/1585,
  34357. bottom: 1169/4204
  34358. }
  34359. },
  34360. dickAnthro: {
  34361. height: math.unit(0.7, "meters"),
  34362. name: "Dick (Anthro)",
  34363. image: {
  34364. source: "./media/characters/glint/dick-anthro.svg"
  34365. }
  34366. },
  34367. dickFeral: {
  34368. height: math.unit(2.65, "meters"),
  34369. name: "Dick (Feral)",
  34370. image: {
  34371. source: "./media/characters/glint/dick-feral.svg"
  34372. }
  34373. },
  34374. slitHidden: {
  34375. height: math.unit(5.85, "meters"),
  34376. name: "Slit (Hidden)",
  34377. image: {
  34378. source: "./media/characters/glint/slit-hidden.svg"
  34379. }
  34380. },
  34381. slitErect: {
  34382. height: math.unit(5.85, "meters"),
  34383. name: "Slit (Erect)",
  34384. image: {
  34385. source: "./media/characters/glint/slit-erect.svg"
  34386. }
  34387. },
  34388. mawAnthro: {
  34389. height: math.unit(0.63, "meters"),
  34390. name: "Maw (Anthro)",
  34391. image: {
  34392. source: "./media/characters/glint/maw.svg"
  34393. }
  34394. },
  34395. mawFeral: {
  34396. height: math.unit(2.89, "meters"),
  34397. name: "Maw (Feral)",
  34398. image: {
  34399. source: "./media/characters/glint/maw.svg"
  34400. }
  34401. },
  34402. },
  34403. [
  34404. {
  34405. name: "Normal",
  34406. height: math.unit(9, "feet"),
  34407. default: true
  34408. },
  34409. ]
  34410. ))
  34411. characterMakers.push(() => makeCharacter(
  34412. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34413. {
  34414. side: {
  34415. height: math.unit(15, "feet"),
  34416. weight: math.unit(5000, "kg"),
  34417. name: "Side",
  34418. image: {
  34419. source: "./media/characters/kairne/side.svg",
  34420. extra: 979/811,
  34421. bottom: 13/992
  34422. }
  34423. },
  34424. front: {
  34425. height: math.unit(15, "feet"),
  34426. weight: math.unit(5000, "kg"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/kairne/front.svg",
  34430. extra: 908/814,
  34431. bottom: 26/934
  34432. }
  34433. },
  34434. sideNsfw: {
  34435. height: math.unit(15, "feet"),
  34436. weight: math.unit(5000, "kg"),
  34437. name: "Side (NSFW)",
  34438. image: {
  34439. source: "./media/characters/kairne/side-nsfw.svg",
  34440. extra: 979/811,
  34441. bottom: 13/992
  34442. }
  34443. },
  34444. frontNsfw: {
  34445. height: math.unit(15, "feet"),
  34446. weight: math.unit(5000, "kg"),
  34447. name: "Front (NSFW)",
  34448. image: {
  34449. source: "./media/characters/kairne/front-nsfw.svg",
  34450. extra: 908/814,
  34451. bottom: 26/934
  34452. }
  34453. },
  34454. dickCaged: {
  34455. height: math.unit(0.65, "meters"),
  34456. name: "Dick-caged",
  34457. image: {
  34458. source: "./media/characters/kairne/dick-caged.svg"
  34459. }
  34460. },
  34461. dick: {
  34462. height: math.unit(0.79, "meters"),
  34463. name: "Dick",
  34464. image: {
  34465. source: "./media/characters/kairne/dick.svg"
  34466. }
  34467. },
  34468. genitals: {
  34469. height: math.unit(1.29, "meters"),
  34470. name: "Genitals",
  34471. image: {
  34472. source: "./media/characters/kairne/genitals.svg"
  34473. }
  34474. },
  34475. maw: {
  34476. height: math.unit(1.73, "meters"),
  34477. name: "Maw",
  34478. image: {
  34479. source: "./media/characters/kairne/maw.svg"
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(15, "feet"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34493. {
  34494. front: {
  34495. height: math.unit(5 + 8/12, "feet"),
  34496. weight: math.unit(139, "lb"),
  34497. name: "Front",
  34498. image: {
  34499. source: "./media/characters/biscuit-jackal/front.svg",
  34500. extra: 2106/1961,
  34501. bottom: 58/2164
  34502. }
  34503. },
  34504. back: {
  34505. height: math.unit(5 + 8/12, "feet"),
  34506. weight: math.unit(139, "lb"),
  34507. name: "Back",
  34508. image: {
  34509. source: "./media/characters/biscuit-jackal/back.svg",
  34510. extra: 2132/1976,
  34511. bottom: 57/2189
  34512. }
  34513. },
  34514. werejackal: {
  34515. height: math.unit(6 + 3/12, "feet"),
  34516. weight: math.unit(188, "lb"),
  34517. name: "Werejackal",
  34518. image: {
  34519. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34520. extra: 2373/2178,
  34521. bottom: 53/2426
  34522. }
  34523. },
  34524. },
  34525. [
  34526. {
  34527. name: "Normal",
  34528. height: math.unit(5 + 8/12, "feet"),
  34529. default: true
  34530. },
  34531. ]
  34532. ))
  34533. characterMakers.push(() => makeCharacter(
  34534. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34535. {
  34536. front: {
  34537. height: math.unit(140, "cm"),
  34538. weight: math.unit(45, "kg"),
  34539. name: "Front",
  34540. image: {
  34541. source: "./media/characters/tayra-white/front.svg",
  34542. extra: 2229/2192,
  34543. bottom: 75/2304
  34544. }
  34545. },
  34546. },
  34547. [
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(140, "cm"),
  34551. default: true
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(4 + 5/12, "feet"),
  34560. name: "Front",
  34561. image: {
  34562. source: "./media/characters/scoop/front.svg",
  34563. extra: 1257/1136,
  34564. bottom: 69/1326
  34565. }
  34566. },
  34567. back: {
  34568. height: math.unit(4 + 5/12, "feet"),
  34569. name: "Back",
  34570. image: {
  34571. source: "./media/characters/scoop/back.svg",
  34572. extra: 1321/1152,
  34573. bottom: 32/1353
  34574. }
  34575. },
  34576. maw: {
  34577. height: math.unit(0.68, "feet"),
  34578. name: "Maw",
  34579. image: {
  34580. source: "./media/characters/scoop/maw.svg"
  34581. }
  34582. },
  34583. },
  34584. [
  34585. {
  34586. name: "Really Small",
  34587. height: math.unit(1, "mm")
  34588. },
  34589. {
  34590. name: "Micro",
  34591. height: math.unit(1, "inch")
  34592. },
  34593. {
  34594. name: "Normal",
  34595. height: math.unit(4 + 5/12, "feet"),
  34596. default: true
  34597. },
  34598. {
  34599. name: "Macro",
  34600. height: math.unit(200, "feet")
  34601. },
  34602. {
  34603. name: "Megamacro",
  34604. height: math.unit(3240, "feet")
  34605. },
  34606. {
  34607. name: "Teramacro",
  34608. height: math.unit(2500, "miles")
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(15 + 7/12, "feet"),
  34617. weight: math.unit(1150, "tons"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/saphinara/front.svg",
  34621. extra: 1837/1643,
  34622. bottom: 84/1921
  34623. },
  34624. form: "normal",
  34625. default: true
  34626. },
  34627. side: {
  34628. height: math.unit(15 + 7/12, "feet"),
  34629. weight: math.unit(1150, "tons"),
  34630. name: "Side",
  34631. image: {
  34632. source: "./media/characters/saphinara/side.svg",
  34633. extra: 605/547,
  34634. bottom: 6/611
  34635. },
  34636. form: "normal"
  34637. },
  34638. back: {
  34639. height: math.unit(15 + 7/12, "feet"),
  34640. weight: math.unit(1150, "tons"),
  34641. name: "Back",
  34642. image: {
  34643. source: "./media/characters/saphinara/back.svg",
  34644. extra: 591/531,
  34645. bottom: 13/604
  34646. },
  34647. form: "normal"
  34648. },
  34649. frontTail: {
  34650. height: math.unit(15 + 7/12, "feet"),
  34651. weight: math.unit(1150, "tons"),
  34652. name: "Front (Full Tail)",
  34653. image: {
  34654. source: "./media/characters/saphinara/front-tail.svg",
  34655. extra: 2256/1630,
  34656. bottom: 261/2517
  34657. },
  34658. form: "normal"
  34659. },
  34660. insides: {
  34661. height: math.unit(11.92, "feet"),
  34662. name: "Insides",
  34663. image: {
  34664. source: "./media/characters/saphinara/insides.svg"
  34665. },
  34666. form: "normal"
  34667. },
  34668. head: {
  34669. height: math.unit(4.17, "feet"),
  34670. name: "Head",
  34671. image: {
  34672. source: "./media/characters/saphinara/head.svg"
  34673. },
  34674. form: "normal"
  34675. },
  34676. tongue: {
  34677. height: math.unit(4.60, "feet"),
  34678. name: "Tongue",
  34679. image: {
  34680. source: "./media/characters/saphinara/tongue.svg"
  34681. },
  34682. form: "normal"
  34683. },
  34684. headEnraged: {
  34685. height: math.unit(5.55, "feet"),
  34686. name: "Head (Enraged)",
  34687. image: {
  34688. source: "./media/characters/saphinara/head-enraged.svg"
  34689. },
  34690. form: "normal"
  34691. },
  34692. wings: {
  34693. height: math.unit(11.95, "feet"),
  34694. name: "Wings",
  34695. image: {
  34696. source: "./media/characters/saphinara/wings.svg"
  34697. },
  34698. form: "normal"
  34699. },
  34700. feathers: {
  34701. height: math.unit(8.92, "feet"),
  34702. name: "Feathers",
  34703. image: {
  34704. source: "./media/characters/saphinara/feathers.svg"
  34705. },
  34706. form: "normal"
  34707. },
  34708. shackles: {
  34709. height: math.unit(2, "feet"),
  34710. name: "Shackles",
  34711. image: {
  34712. source: "./media/characters/saphinara/shackles.svg"
  34713. },
  34714. form: "normal"
  34715. },
  34716. eyes: {
  34717. height: math.unit(1.331, "feet"),
  34718. name: "Eyes",
  34719. image: {
  34720. source: "./media/characters/saphinara/eyes.svg"
  34721. },
  34722. form: "normal"
  34723. },
  34724. eyesEnraged: {
  34725. height: math.unit(1.331, "feet"),
  34726. name: "Eyes (Enraged)",
  34727. image: {
  34728. source: "./media/characters/saphinara/eyes-enraged.svg"
  34729. },
  34730. form: "normal"
  34731. },
  34732. trueFormSide: {
  34733. height: math.unit(200, "feet"),
  34734. weight: math.unit(1e7, "tons"),
  34735. name: "Side",
  34736. image: {
  34737. source: "./media/characters/saphinara/true-form-side.svg",
  34738. extra: 1399/770,
  34739. bottom: 97/1496
  34740. },
  34741. form: "true-form",
  34742. default: true
  34743. },
  34744. trueFormMaw: {
  34745. height: math.unit(71.5, "feet"),
  34746. name: "Maw",
  34747. image: {
  34748. source: "./media/characters/saphinara/true-form-maw.svg",
  34749. extra: 2302/1453,
  34750. bottom: 0/2302
  34751. },
  34752. form: "true-form"
  34753. },
  34754. meowberusSide: {
  34755. height: math.unit(75, "feet"),
  34756. weight: math.unit(180000, "kg"),
  34757. preyCapacity: math.unit(50000, "people"),
  34758. name: "Side",
  34759. image: {
  34760. source: "./media/characters/saphinara/meowberus-side.svg",
  34761. extra: 1400/711,
  34762. bottom: 126/1526
  34763. },
  34764. form: "meowberus",
  34765. extraAttributes: {
  34766. "pawArea": {
  34767. name: "Paw Size",
  34768. power: 2,
  34769. type: "area",
  34770. base: math.unit(35, "m^2")
  34771. }
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(15 + 7/12, "feet"),
  34779. default: true,
  34780. form: "normal"
  34781. },
  34782. {
  34783. name: "Angry",
  34784. height: math.unit(30 + 6/12, "feet"),
  34785. form: "normal"
  34786. },
  34787. {
  34788. name: "Enraged",
  34789. height: math.unit(102 + 1/12, "feet"),
  34790. form: "normal"
  34791. },
  34792. {
  34793. name: "True",
  34794. height: math.unit(200, "feet"),
  34795. default: true,
  34796. form: "true-form"
  34797. },
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(75, "feet"),
  34801. default: true,
  34802. form: "meowberus"
  34803. },
  34804. ],
  34805. {
  34806. "normal": {
  34807. name: "Normal",
  34808. default: true
  34809. },
  34810. "true-form": {
  34811. name: "True Form"
  34812. },
  34813. "meowberus": {
  34814. name: "Meowberus",
  34815. },
  34816. }
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34820. {
  34821. front: {
  34822. height: math.unit(6 + 8/12, "feet"),
  34823. weight: math.unit(300, "lb"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/jrain/front.svg",
  34827. extra: 3039/2865,
  34828. bottom: 399/3438
  34829. }
  34830. },
  34831. back: {
  34832. height: math.unit(6 + 8/12, "feet"),
  34833. weight: math.unit(300, "lb"),
  34834. name: "Back",
  34835. image: {
  34836. source: "./media/characters/jrain/back.svg",
  34837. extra: 3089/2938,
  34838. bottom: 172/3261
  34839. }
  34840. },
  34841. head: {
  34842. height: math.unit(2.14, "feet"),
  34843. name: "Head",
  34844. image: {
  34845. source: "./media/characters/jrain/head.svg"
  34846. }
  34847. },
  34848. maw: {
  34849. height: math.unit(1.77, "feet"),
  34850. name: "Maw",
  34851. image: {
  34852. source: "./media/characters/jrain/maw.svg"
  34853. }
  34854. },
  34855. leftHand: {
  34856. height: math.unit(1.1, "feet"),
  34857. name: "Left Hand",
  34858. image: {
  34859. source: "./media/characters/jrain/left-hand.svg"
  34860. }
  34861. },
  34862. rightHand: {
  34863. height: math.unit(1.1, "feet"),
  34864. name: "Right Hand",
  34865. image: {
  34866. source: "./media/characters/jrain/right-hand.svg"
  34867. }
  34868. },
  34869. eye: {
  34870. height: math.unit(0.35, "feet"),
  34871. name: "Eye",
  34872. image: {
  34873. source: "./media/characters/jrain/eye.svg"
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(6 + 8/12, "feet"),
  34881. default: true
  34882. },
  34883. {
  34884. name: "Casually Large",
  34885. height: math.unit(25, "feet")
  34886. },
  34887. {
  34888. name: "Giant",
  34889. height: math.unit(100, "feet")
  34890. },
  34891. {
  34892. name: "Kaiju",
  34893. height: math.unit(300, "feet")
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34899. {
  34900. dragon: {
  34901. height: math.unit(5, "meters"),
  34902. name: "Dragon",
  34903. image: {
  34904. source: "./media/characters/sabrina/dragon.svg",
  34905. extra: 3670 / 2365,
  34906. bottom: 333 / 4003
  34907. }
  34908. },
  34909. gryphon: {
  34910. height: math.unit(3, "meters"),
  34911. name: "Gryphon",
  34912. image: {
  34913. source: "./media/characters/sabrina/gryphon.svg",
  34914. extra: 1576 / 945,
  34915. bottom: 71 / 1647
  34916. }
  34917. },
  34918. snake: {
  34919. height: math.unit(12, "meters"),
  34920. name: "Snake",
  34921. image: {
  34922. source: "./media/characters/sabrina/snake.svg",
  34923. extra: 1758 / 1320,
  34924. bottom: 186 / 1944
  34925. }
  34926. },
  34927. collar: {
  34928. height: math.unit(1.86, "meters"),
  34929. name: "Collar",
  34930. image: {
  34931. source: "./media/characters/sabrina/collar.svg"
  34932. }
  34933. },
  34934. eye: {
  34935. height: math.unit(0.53, "meters"),
  34936. name: "Eye",
  34937. image: {
  34938. source: "./media/characters/sabrina/eye.svg"
  34939. }
  34940. },
  34941. foot: {
  34942. height: math.unit(1.86, "meters"),
  34943. name: "Foot",
  34944. image: {
  34945. source: "./media/characters/sabrina/foot.svg"
  34946. }
  34947. },
  34948. hand: {
  34949. height: math.unit(1.32, "meters"),
  34950. name: "Hand",
  34951. image: {
  34952. source: "./media/characters/sabrina/hand.svg"
  34953. }
  34954. },
  34955. head: {
  34956. height: math.unit(2.44, "meters"),
  34957. name: "Head",
  34958. image: {
  34959. source: "./media/characters/sabrina/head.svg"
  34960. }
  34961. },
  34962. headAngry: {
  34963. height: math.unit(2.44, "meters"),
  34964. name: "Head (Angry))",
  34965. image: {
  34966. source: "./media/characters/sabrina/head-angry.svg"
  34967. }
  34968. },
  34969. maw: {
  34970. height: math.unit(1.65, "meters"),
  34971. name: "Maw",
  34972. image: {
  34973. source: "./media/characters/sabrina/maw.svg"
  34974. }
  34975. },
  34976. spikes: {
  34977. height: math.unit(1.69, "meters"),
  34978. name: "Spikes",
  34979. image: {
  34980. source: "./media/characters/sabrina/spikes.svg"
  34981. }
  34982. },
  34983. stomach: {
  34984. height: math.unit(1.15, "meters"),
  34985. name: "Stomach",
  34986. image: {
  34987. source: "./media/characters/sabrina/stomach.svg"
  34988. }
  34989. },
  34990. tongue: {
  34991. height: math.unit(1.27, "meters"),
  34992. name: "Tongue",
  34993. image: {
  34994. source: "./media/characters/sabrina/tongue.svg"
  34995. }
  34996. },
  34997. wingDorsal: {
  34998. height: math.unit(4.85, "meters"),
  34999. name: "Wing (Dorsal)",
  35000. image: {
  35001. source: "./media/characters/sabrina/wing-dorsal.svg"
  35002. }
  35003. },
  35004. wingVentral: {
  35005. height: math.unit(4.85, "meters"),
  35006. name: "Wing (Ventral)",
  35007. image: {
  35008. source: "./media/characters/sabrina/wing-ventral.svg"
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Normal",
  35015. height: math.unit(5, "meters"),
  35016. default: true
  35017. },
  35018. ]
  35019. ))
  35020. characterMakers.push(() => makeCharacter(
  35021. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35022. {
  35023. frontMaid: {
  35024. height: math.unit(5 + 5/12, "feet"),
  35025. weight: math.unit(130, "lb"),
  35026. name: "Front (Maid)",
  35027. image: {
  35028. source: "./media/characters/midnight-tales/front-maid.svg",
  35029. extra: 489/454,
  35030. bottom: 61/550
  35031. }
  35032. },
  35033. frontFormal: {
  35034. height: math.unit(5 + 5/12, "feet"),
  35035. weight: math.unit(130, "lb"),
  35036. name: "Front (Formal)",
  35037. image: {
  35038. source: "./media/characters/midnight-tales/front-formal.svg",
  35039. extra: 489/454,
  35040. bottom: 61/550
  35041. }
  35042. },
  35043. back: {
  35044. height: math.unit(5 + 5/12, "feet"),
  35045. weight: math.unit(130, "lb"),
  35046. name: "Back",
  35047. image: {
  35048. source: "./media/characters/midnight-tales/back.svg",
  35049. extra: 498/456,
  35050. bottom: 33/531
  35051. }
  35052. },
  35053. frontBeast: {
  35054. height: math.unit(40, "feet"),
  35055. weight: math.unit(64000, "lb"),
  35056. name: "Front (Beast)",
  35057. image: {
  35058. source: "./media/characters/midnight-tales/front-beast.svg",
  35059. extra: 927/860,
  35060. bottom: 53/980
  35061. }
  35062. },
  35063. backBeast: {
  35064. height: math.unit(40, "feet"),
  35065. weight: math.unit(64000, "lb"),
  35066. name: "Back (Beast)",
  35067. image: {
  35068. source: "./media/characters/midnight-tales/back-beast.svg",
  35069. extra: 929/855,
  35070. bottom: 16/945
  35071. }
  35072. },
  35073. footBeast: {
  35074. height: math.unit(6.7, "feet"),
  35075. name: "Foot (Beast)",
  35076. image: {
  35077. source: "./media/characters/midnight-tales/foot-beast.svg"
  35078. }
  35079. },
  35080. headBeast: {
  35081. height: math.unit(8, "feet"),
  35082. name: "Head (Beast)",
  35083. image: {
  35084. source: "./media/characters/midnight-tales/head-beast.svg"
  35085. }
  35086. },
  35087. },
  35088. [
  35089. {
  35090. name: "Normal",
  35091. height: math.unit(5 + 5 / 12, "feet"),
  35092. default: true
  35093. },
  35094. {
  35095. name: "Macro",
  35096. height: math.unit(25, "feet")
  35097. },
  35098. ]
  35099. ))
  35100. characterMakers.push(() => makeCharacter(
  35101. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35102. {
  35103. front: {
  35104. height: math.unit(5 + 10/12, "feet"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/argon/front.svg",
  35108. extra: 2009/1935,
  35109. bottom: 118/2127
  35110. }
  35111. },
  35112. back: {
  35113. height: math.unit(5 + 10/12, "feet"),
  35114. name: "Back",
  35115. image: {
  35116. source: "./media/characters/argon/back.svg",
  35117. extra: 2047/1992,
  35118. bottom: 20/2067
  35119. }
  35120. },
  35121. frontDressed: {
  35122. height: math.unit(5 + 10/12, "feet"),
  35123. name: "Front (Dressed)",
  35124. image: {
  35125. source: "./media/characters/argon/front-dressed.svg",
  35126. extra: 2009/1935,
  35127. bottom: 118/2127
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(5 + 10/12, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(8 + 6/12, "feet"),
  35144. weight: math.unit(1150, "lb"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/kichi/front.svg",
  35148. extra: 1267/1164,
  35149. bottom: 61/1328
  35150. }
  35151. },
  35152. back: {
  35153. height: math.unit(8 + 6/12, "feet"),
  35154. weight: math.unit(1150, "lb"),
  35155. name: "Back",
  35156. image: {
  35157. source: "./media/characters/kichi/back.svg",
  35158. extra: 1273/1166,
  35159. bottom: 33/1306
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(8 + 6/12, "feet"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35173. {
  35174. front: {
  35175. height: math.unit(6, "feet"),
  35176. weight: math.unit(210, "lb"),
  35177. name: "Front",
  35178. image: {
  35179. source: "./media/characters/manetel-greyscale/front.svg",
  35180. extra: 350/312,
  35181. bottom: 8/358
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Micro",
  35188. height: math.unit(2, "inches")
  35189. },
  35190. {
  35191. name: "Normal",
  35192. height: math.unit(6, "feet"),
  35193. default: true
  35194. },
  35195. {
  35196. name: "Minimacro",
  35197. height: math.unit(17, "feet")
  35198. },
  35199. {
  35200. name: "Macro",
  35201. height: math.unit(117, "feet")
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35207. {
  35208. side: {
  35209. height: math.unit(5 + 1/12, "feet"),
  35210. weight: math.unit(418, "lb"),
  35211. name: "Side",
  35212. image: {
  35213. source: "./media/characters/softpurr/side.svg",
  35214. extra: 1993/1945,
  35215. bottom: 134/2127
  35216. }
  35217. },
  35218. front: {
  35219. height: math.unit(5 + 1/12, "feet"),
  35220. weight: math.unit(418, "lb"),
  35221. name: "Front",
  35222. image: {
  35223. source: "./media/characters/softpurr/front.svg",
  35224. extra: 1950/1856,
  35225. bottom: 174/2124
  35226. }
  35227. },
  35228. paw: {
  35229. height: math.unit(1, "feet"),
  35230. name: "Paw",
  35231. image: {
  35232. source: "./media/characters/softpurr/paw.svg"
  35233. }
  35234. },
  35235. },
  35236. [
  35237. {
  35238. name: "Normal",
  35239. height: math.unit(5 + 1/12, "feet"),
  35240. default: true
  35241. },
  35242. ]
  35243. ))
  35244. characterMakers.push(() => makeCharacter(
  35245. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35246. {
  35247. front: {
  35248. height: math.unit(260, "meters"),
  35249. name: "Front",
  35250. image: {
  35251. source: "./media/characters/anahita/front.svg",
  35252. extra: 665/635,
  35253. bottom: 89/754
  35254. }
  35255. },
  35256. },
  35257. [
  35258. {
  35259. name: "Macro",
  35260. height: math.unit(260, "meters"),
  35261. default: true
  35262. },
  35263. ]
  35264. ))
  35265. characterMakers.push(() => makeCharacter(
  35266. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35267. {
  35268. front: {
  35269. height: math.unit(4 + 10/12, "feet"),
  35270. weight: math.unit(160, "lb"),
  35271. name: "Front",
  35272. image: {
  35273. source: "./media/characters/chip-mouse/front.svg",
  35274. extra: 3528/3408,
  35275. bottom: 0/3528
  35276. }
  35277. },
  35278. frontNsfw: {
  35279. height: math.unit(4 + 10/12, "feet"),
  35280. weight: math.unit(160, "lb"),
  35281. name: "Front (NSFW)",
  35282. image: {
  35283. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35284. extra: 3528/3408,
  35285. bottom: 0/3528
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Normal",
  35292. height: math.unit(4 + 10/12, "feet"),
  35293. default: true
  35294. },
  35295. ]
  35296. ))
  35297. characterMakers.push(() => makeCharacter(
  35298. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35299. {
  35300. side: {
  35301. height: math.unit(10, "feet"),
  35302. weight: math.unit(14000, "lb"),
  35303. name: "Side",
  35304. image: {
  35305. source: "./media/characters/kremm/side.svg",
  35306. extra: 1390/1053,
  35307. bottom: 90/1480
  35308. }
  35309. },
  35310. gut: {
  35311. height: math.unit(5.8, "feet"),
  35312. name: "Gut",
  35313. image: {
  35314. source: "./media/characters/kremm/gut.svg"
  35315. }
  35316. },
  35317. ass: {
  35318. height: math.unit(6.1, "feet"),
  35319. name: "Ass",
  35320. image: {
  35321. source: "./media/characters/kremm/ass.svg"
  35322. }
  35323. },
  35324. jaws: {
  35325. height: math.unit(2.2, "feet"),
  35326. name: "Jaws",
  35327. image: {
  35328. source: "./media/characters/kremm/jaws.svg"
  35329. }
  35330. },
  35331. dick: {
  35332. height: math.unit(4.26, "feet"),
  35333. name: "Dick",
  35334. image: {
  35335. source: "./media/characters/kremm/dick.svg"
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(10, "feet"),
  35343. default: true
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35349. {
  35350. front: {
  35351. height: math.unit(30, "stories"),
  35352. name: "Front",
  35353. image: {
  35354. source: "./media/characters/kai/front.svg",
  35355. extra: 1892/1718,
  35356. bottom: 162/2054
  35357. }
  35358. },
  35359. },
  35360. [
  35361. {
  35362. name: "Macro",
  35363. height: math.unit(30, "stories"),
  35364. default: true
  35365. },
  35366. ]
  35367. ))
  35368. characterMakers.push(() => makeCharacter(
  35369. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35370. {
  35371. front: {
  35372. height: math.unit(6 + 4/12, "feet"),
  35373. weight: math.unit(145, "lb"),
  35374. name: "Front",
  35375. image: {
  35376. source: "./media/characters/sykes/front.svg",
  35377. extra: 1321 / 1187,
  35378. bottom: 66 / 1387
  35379. }
  35380. },
  35381. back: {
  35382. height: math.unit(6 + 4/12, "feet"),
  35383. weight: math.unit(145, "lb"),
  35384. name: "Back",
  35385. image: {
  35386. source: "./media/characters/sykes/back.svg",
  35387. extra: 1326/1181,
  35388. bottom: 31/1357
  35389. }
  35390. },
  35391. traditionalOutfit: {
  35392. height: math.unit(6 + 4/12, "feet"),
  35393. weight: math.unit(145, "lb"),
  35394. name: "Traditional Outfit",
  35395. image: {
  35396. source: "./media/characters/sykes/traditional-outfit.svg",
  35397. extra: 1321 / 1187,
  35398. bottom: 66 / 1387
  35399. }
  35400. },
  35401. adventureOutfit: {
  35402. height: math.unit(6 + 4/12, "feet"),
  35403. weight: math.unit(145, "lb"),
  35404. name: "Adventure Outfit",
  35405. image: {
  35406. source: "./media/characters/sykes/adventure-outfit.svg",
  35407. extra: 1321 / 1187,
  35408. bottom: 66 / 1387
  35409. }
  35410. },
  35411. handLeft: {
  35412. height: math.unit(0.9, "feet"),
  35413. name: "Hand (Left)",
  35414. image: {
  35415. source: "./media/characters/sykes/hand-left.svg"
  35416. }
  35417. },
  35418. handRight: {
  35419. height: math.unit(0.839, "feet"),
  35420. name: "Hand (Right)",
  35421. image: {
  35422. source: "./media/characters/sykes/hand-right.svg"
  35423. }
  35424. },
  35425. leftFoot: {
  35426. height: math.unit(1.2, "feet"),
  35427. name: "Foot (Left)",
  35428. image: {
  35429. source: "./media/characters/sykes/foot-left.svg"
  35430. }
  35431. },
  35432. rightFoot: {
  35433. height: math.unit(1.2, "feet"),
  35434. name: "Foot (Right)",
  35435. image: {
  35436. source: "./media/characters/sykes/foot-right.svg"
  35437. }
  35438. },
  35439. maw: {
  35440. height: math.unit(1.93, "feet"),
  35441. name: "Maw",
  35442. image: {
  35443. source: "./media/characters/sykes/maw.svg"
  35444. }
  35445. },
  35446. teeth: {
  35447. height: math.unit(0.51, "feet"),
  35448. name: "Teeth",
  35449. image: {
  35450. source: "./media/characters/sykes/teeth.svg"
  35451. }
  35452. },
  35453. tongue: {
  35454. height: math.unit(2.13, "feet"),
  35455. name: "Tongue",
  35456. image: {
  35457. source: "./media/characters/sykes/tongue.svg"
  35458. }
  35459. },
  35460. uvula: {
  35461. height: math.unit(0.16, "feet"),
  35462. name: "Uvula",
  35463. image: {
  35464. source: "./media/characters/sykes/uvula.svg"
  35465. }
  35466. },
  35467. collar: {
  35468. height: math.unit(0.287, "feet"),
  35469. name: "Collar",
  35470. image: {
  35471. source: "./media/characters/sykes/collar.svg"
  35472. }
  35473. },
  35474. tail: {
  35475. height: math.unit(3.8, "feet"),
  35476. name: "Tail",
  35477. image: {
  35478. source: "./media/characters/sykes/tail.svg"
  35479. }
  35480. },
  35481. },
  35482. [
  35483. {
  35484. name: "Shrunken",
  35485. height: math.unit(5, "inches")
  35486. },
  35487. {
  35488. name: "Normal",
  35489. height: math.unit(6 + 4 / 12, "feet"),
  35490. default: true
  35491. },
  35492. {
  35493. name: "Big",
  35494. height: math.unit(15, "feet")
  35495. },
  35496. ]
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35500. {
  35501. front: {
  35502. height: math.unit(5 + 8/12, "feet"),
  35503. weight: math.unit(190, "lb"),
  35504. name: "Front",
  35505. image: {
  35506. source: "./media/characters/oven-otter/front.svg",
  35507. extra: 1809/1740,
  35508. bottom: 181/1990
  35509. }
  35510. },
  35511. back: {
  35512. height: math.unit(5 + 8/12, "feet"),
  35513. weight: math.unit(190, "lb"),
  35514. name: "Back",
  35515. image: {
  35516. source: "./media/characters/oven-otter/back.svg",
  35517. extra: 1709/1635,
  35518. bottom: 118/1827
  35519. }
  35520. },
  35521. hand: {
  35522. height: math.unit(1.07, "feet"),
  35523. name: "Hand",
  35524. image: {
  35525. source: "./media/characters/oven-otter/hand.svg"
  35526. }
  35527. },
  35528. beans: {
  35529. height: math.unit(1.74, "feet"),
  35530. name: "Beans",
  35531. image: {
  35532. source: "./media/characters/oven-otter/beans.svg"
  35533. }
  35534. },
  35535. },
  35536. [
  35537. {
  35538. name: "Micro",
  35539. height: math.unit(0.5, "inches")
  35540. },
  35541. {
  35542. name: "Normal",
  35543. height: math.unit(5 + 8/12, "feet"),
  35544. default: true
  35545. },
  35546. {
  35547. name: "Macro",
  35548. height: math.unit(250, "feet")
  35549. },
  35550. {
  35551. name: "Really High",
  35552. height: math.unit(420, "feet")
  35553. },
  35554. ]
  35555. ))
  35556. characterMakers.push(() => makeCharacter(
  35557. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35558. {
  35559. front: {
  35560. height: math.unit(5, "meters"),
  35561. weight: math.unit(292000000000000, "kg"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/devourer/front.svg",
  35565. extra: 1800/1733,
  35566. bottom: 211/2011
  35567. }
  35568. },
  35569. maw: {
  35570. height: math.unit(1.1, "meter"),
  35571. name: "Maw",
  35572. image: {
  35573. source: "./media/characters/devourer/maw.svg"
  35574. }
  35575. },
  35576. },
  35577. [
  35578. {
  35579. name: "Small",
  35580. height: math.unit(3, "meters")
  35581. },
  35582. {
  35583. name: "Large",
  35584. height: math.unit(5, "meters"),
  35585. default: true
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35591. {
  35592. front: {
  35593. height: math.unit(6, "feet"),
  35594. weight: math.unit(400, "lb"),
  35595. name: "Front",
  35596. image: {
  35597. source: "./media/characters/ellarby/front.svg",
  35598. extra: 1909/1763,
  35599. bottom: 80/1989
  35600. }
  35601. },
  35602. back: {
  35603. height: math.unit(6, "feet"),
  35604. weight: math.unit(400, "lb"),
  35605. name: "Back",
  35606. image: {
  35607. source: "./media/characters/ellarby/back.svg",
  35608. extra: 1914/1784,
  35609. bottom: 172/2086
  35610. }
  35611. },
  35612. },
  35613. [
  35614. {
  35615. name: "Mischief",
  35616. height: math.unit(18, "inches")
  35617. },
  35618. {
  35619. name: "Trouble",
  35620. height: math.unit(12, "feet")
  35621. },
  35622. {
  35623. name: "Havoc",
  35624. height: math.unit(200, "feet"),
  35625. default: true
  35626. },
  35627. {
  35628. name: "Pandemonium",
  35629. height: math.unit(1, "mile")
  35630. },
  35631. {
  35632. name: "Catastrophe",
  35633. height: math.unit(100, "miles")
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35639. {
  35640. front: {
  35641. height: math.unit(4.7, "meters"),
  35642. weight: math.unit(6500, "kg"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/vex/front.svg",
  35646. extra: 1288/1140,
  35647. bottom: 100/1388
  35648. }
  35649. },
  35650. },
  35651. [
  35652. {
  35653. name: "Normal",
  35654. height: math.unit(4.7, "meters"),
  35655. default: true
  35656. },
  35657. ]
  35658. ))
  35659. characterMakers.push(() => makeCharacter(
  35660. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35661. {
  35662. normal: {
  35663. height: math.unit(6, "feet"),
  35664. weight: math.unit(350, "lb"),
  35665. name: "Normal",
  35666. image: {
  35667. source: "./media/characters/teshy/normal.svg",
  35668. extra: 1795/1735,
  35669. bottom: 16/1811
  35670. }
  35671. },
  35672. monsterFront: {
  35673. height: math.unit(12, "feet"),
  35674. weight: math.unit(4700, "lb"),
  35675. name: "Monster (Front)",
  35676. image: {
  35677. source: "./media/characters/teshy/monster-front.svg",
  35678. extra: 2042/2034,
  35679. bottom: 128/2170
  35680. }
  35681. },
  35682. monsterSide: {
  35683. height: math.unit(12, "feet"),
  35684. weight: math.unit(4700, "lb"),
  35685. name: "Monster (Side)",
  35686. image: {
  35687. source: "./media/characters/teshy/monster-side.svg",
  35688. extra: 2067/2056,
  35689. bottom: 70/2137
  35690. }
  35691. },
  35692. monsterBack: {
  35693. height: math.unit(12, "feet"),
  35694. weight: math.unit(4700, "lb"),
  35695. name: "Monster (Back)",
  35696. image: {
  35697. source: "./media/characters/teshy/monster-back.svg",
  35698. extra: 1921/1914,
  35699. bottom: 171/2092
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Normal",
  35706. height: math.unit(6, "feet"),
  35707. default: true
  35708. },
  35709. ]
  35710. ))
  35711. characterMakers.push(() => makeCharacter(
  35712. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35713. {
  35714. front: {
  35715. height: math.unit(6, "feet"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/ramey/front.svg",
  35719. extra: 790/787,
  35720. bottom: 27/817
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Normal",
  35727. height: math.unit(6, "feet"),
  35728. default: true
  35729. },
  35730. ]
  35731. ))
  35732. characterMakers.push(() => makeCharacter(
  35733. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35734. {
  35735. front: {
  35736. height: math.unit(5 + 5/12, "feet"),
  35737. weight: math.unit(120, "lb"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/phirae/front.svg",
  35741. extra: 2491/2436,
  35742. bottom: 38/2529
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(5 + 5/12, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35756. {
  35757. front: {
  35758. height: math.unit(5 + 3/12, "feet"),
  35759. name: "Front",
  35760. image: {
  35761. source: "./media/characters/stagglas/front.svg",
  35762. extra: 962/882,
  35763. bottom: 53/1015
  35764. }
  35765. },
  35766. feral: {
  35767. height: math.unit(335, "cm"),
  35768. name: "Feral",
  35769. image: {
  35770. source: "./media/characters/stagglas/feral.svg",
  35771. extra: 1732/1090,
  35772. bottom: 48/1780
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(5 + 3/12, "feet"),
  35780. default: true
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35786. {
  35787. front: {
  35788. height: math.unit(5 + 4/12, "feet"),
  35789. weight: math.unit(145, "lb"),
  35790. name: "Front",
  35791. image: {
  35792. source: "./media/characters/starra/front.svg",
  35793. extra: 1790/1691,
  35794. bottom: 91/1881
  35795. }
  35796. },
  35797. },
  35798. [
  35799. {
  35800. name: "Normal",
  35801. height: math.unit(5 + 4/12, "feet"),
  35802. default: true
  35803. },
  35804. ]
  35805. ))
  35806. characterMakers.push(() => makeCharacter(
  35807. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35808. {
  35809. front: {
  35810. height: math.unit(2.2, "meters"),
  35811. name: "Front",
  35812. image: {
  35813. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35814. extra: 1194/1005,
  35815. bottom: 25/1219
  35816. }
  35817. },
  35818. },
  35819. [
  35820. {
  35821. name: "Normal",
  35822. height: math.unit(2.2, "meters"),
  35823. default: true
  35824. },
  35825. ]
  35826. ))
  35827. characterMakers.push(() => makeCharacter(
  35828. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35829. {
  35830. side: {
  35831. height: math.unit(8 + 2/12, "feet"),
  35832. weight: math.unit(1240, "lb"),
  35833. name: "Side",
  35834. image: {
  35835. source: "./media/characters/mika-valentine/side.svg",
  35836. extra: 2670/2501,
  35837. bottom: 250/2920
  35838. }
  35839. },
  35840. },
  35841. [
  35842. {
  35843. name: "Normal",
  35844. height: math.unit(8 + 2/12, "feet"),
  35845. default: true
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35851. {
  35852. front: {
  35853. height: math.unit(7 + 2/12, "feet"),
  35854. name: "Front",
  35855. image: {
  35856. source: "./media/characters/xoltol/front.svg",
  35857. extra: 2212/2124,
  35858. bottom: 84/2296
  35859. }
  35860. },
  35861. side: {
  35862. height: math.unit(7 + 2/12, "feet"),
  35863. name: "Side",
  35864. image: {
  35865. source: "./media/characters/xoltol/side.svg",
  35866. extra: 2273/2197,
  35867. bottom: 26/2299
  35868. }
  35869. },
  35870. hand: {
  35871. height: math.unit(2.5, "feet"),
  35872. name: "Hand",
  35873. image: {
  35874. source: "./media/characters/xoltol/hand.svg"
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Small-ish",
  35881. height: math.unit(5 + 11/12, "feet")
  35882. },
  35883. {
  35884. name: "Normal",
  35885. height: math.unit(7 + 2/12, "feet")
  35886. },
  35887. {
  35888. name: "\"Macro\"",
  35889. height: math.unit(14 + 9/12, "feet"),
  35890. default: true
  35891. },
  35892. {
  35893. name: "Alternate Height",
  35894. height: math.unit(20, "feet")
  35895. },
  35896. {
  35897. name: "Actually Macro",
  35898. height: math.unit(100, "feet")
  35899. },
  35900. ]
  35901. ))
  35902. characterMakers.push(() => makeCharacter(
  35903. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35904. {
  35905. front: {
  35906. height: math.unit(5 + 2/12, "feet"),
  35907. name: "Front",
  35908. image: {
  35909. source: "./media/characters/kotetsu-redwood/front.svg",
  35910. extra: 1053/942,
  35911. bottom: 60/1113
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(5 + 2/12, "feet"),
  35919. default: true
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35925. {
  35926. front: {
  35927. height: math.unit(2.4, "meters"),
  35928. weight: math.unit(125, "kg"),
  35929. name: "Front",
  35930. image: {
  35931. source: "./media/characters/lilith/front.svg",
  35932. extra: 1590/1513,
  35933. bottom: 203/1793
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Humanoid",
  35940. height: math.unit(2.4, "meters")
  35941. },
  35942. {
  35943. name: "Normal",
  35944. height: math.unit(6, "meters"),
  35945. default: true
  35946. },
  35947. {
  35948. name: "Largest",
  35949. height: math.unit(55, "meters")
  35950. },
  35951. ]
  35952. ))
  35953. characterMakers.push(() => makeCharacter(
  35954. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35955. {
  35956. front: {
  35957. height: math.unit(8 + 4/12, "feet"),
  35958. weight: math.unit(535, "lb"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/beh'kah-bolger/front.svg",
  35962. extra: 1660/1603,
  35963. bottom: 37/1697
  35964. }
  35965. },
  35966. },
  35967. [
  35968. {
  35969. name: "Normal",
  35970. height: math.unit(8 + 4/12, "feet"),
  35971. default: true
  35972. },
  35973. {
  35974. name: "Kaiju",
  35975. height: math.unit(250, "feet")
  35976. },
  35977. {
  35978. name: "Still Growing",
  35979. height: math.unit(10, "miles")
  35980. },
  35981. {
  35982. name: "Continental",
  35983. height: math.unit(5000, "miles")
  35984. },
  35985. {
  35986. name: "Final Form",
  35987. height: math.unit(2500000, "miles")
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35993. {
  35994. front: {
  35995. height: math.unit(7 + 2/12, "feet"),
  35996. weight: math.unit(230, "kg"),
  35997. name: "Front",
  35998. image: {
  35999. source: "./media/characters/tatyana-milewska/front.svg",
  36000. extra: 1199/1150,
  36001. bottom: 86/1285
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(7 + 2/12, "feet"),
  36009. default: true
  36010. },
  36011. {
  36012. name: "Big",
  36013. height: math.unit(12, "feet")
  36014. },
  36015. {
  36016. name: "Minimacro",
  36017. height: math.unit(20, "feet")
  36018. },
  36019. {
  36020. name: "Macro",
  36021. height: math.unit(120, "feet")
  36022. },
  36023. ]
  36024. ))
  36025. characterMakers.push(() => makeCharacter(
  36026. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36027. {
  36028. front: {
  36029. height: math.unit(7 + 8/12, "feet"),
  36030. weight: math.unit(152, "kg"),
  36031. name: "Front",
  36032. image: {
  36033. source: "./media/characters/helen-arri/front.svg",
  36034. extra: 440/423,
  36035. bottom: 14/454
  36036. }
  36037. },
  36038. back: {
  36039. height: math.unit(7 + 8/12, "feet"),
  36040. weight: math.unit(152, "kg"),
  36041. name: "Back",
  36042. image: {
  36043. source: "./media/characters/helen-arri/back.svg",
  36044. extra: 443/426,
  36045. bottom: 8/451
  36046. }
  36047. },
  36048. },
  36049. [
  36050. {
  36051. name: "Normal",
  36052. height: math.unit(7 + 8/12, "feet"),
  36053. default: true
  36054. },
  36055. {
  36056. name: "Big",
  36057. height: math.unit(14, "feet")
  36058. },
  36059. {
  36060. name: "Minimacro",
  36061. height: math.unit(24, "feet")
  36062. },
  36063. {
  36064. name: "Macro",
  36065. height: math.unit(140, "feet")
  36066. },
  36067. ]
  36068. ))
  36069. characterMakers.push(() => makeCharacter(
  36070. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36071. {
  36072. front: {
  36073. height: math.unit(6, "meters"),
  36074. name: "Front",
  36075. image: {
  36076. source: "./media/characters/ehanu-rehu/front.svg",
  36077. extra: 1800/1800,
  36078. bottom: 59/1859
  36079. }
  36080. },
  36081. },
  36082. [
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(6, "meters"),
  36086. default: true
  36087. },
  36088. ]
  36089. ))
  36090. characterMakers.push(() => makeCharacter(
  36091. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36092. {
  36093. front: {
  36094. height: math.unit(7 + 3/12, "feet"),
  36095. name: "Front",
  36096. image: {
  36097. source: "./media/characters/renholder/front.svg",
  36098. extra: 3096/2960,
  36099. bottom: 250/3346
  36100. }
  36101. },
  36102. },
  36103. [
  36104. {
  36105. name: "Normal Bat",
  36106. height: math.unit(7 + 3/12, "feet"),
  36107. default: true
  36108. },
  36109. {
  36110. name: "Slightly Tall Bat",
  36111. height: math.unit(100, "feet")
  36112. },
  36113. {
  36114. name: "Big Bat",
  36115. height: math.unit(1000, "feet")
  36116. },
  36117. {
  36118. name: "City-Sized Bat",
  36119. height: math.unit(200000, "feet")
  36120. },
  36121. {
  36122. name: "Bigger Bat",
  36123. height: math.unit(10000, "miles")
  36124. },
  36125. {
  36126. name: "Solar Sized Bat",
  36127. height: math.unit(100, "AU")
  36128. },
  36129. {
  36130. name: "Galactic Bat",
  36131. height: math.unit(200000, "lightyears")
  36132. },
  36133. {
  36134. name: "Universally Known Bat",
  36135. height: math.unit(1, "universe")
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36141. {
  36142. front: {
  36143. height: math.unit(6 + 11/12, "feet"),
  36144. weight: math.unit(250, "lb"),
  36145. name: "Front",
  36146. image: {
  36147. source: "./media/characters/cookiecat/front.svg",
  36148. extra: 893/827,
  36149. bottom: 14/907
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Micro",
  36156. height: math.unit(3, "inches")
  36157. },
  36158. {
  36159. name: "Normal",
  36160. height: math.unit(6 + 11/12, "feet"),
  36161. default: true
  36162. },
  36163. {
  36164. name: "Macro",
  36165. height: math.unit(100, "feet")
  36166. },
  36167. {
  36168. name: "Macro+",
  36169. height: math.unit(404, "feet")
  36170. },
  36171. {
  36172. name: "Megamacro",
  36173. height: math.unit(165, "miles")
  36174. },
  36175. {
  36176. name: "Planetary",
  36177. height: math.unit(4600, "miles")
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(10 + 3/12, "feet"),
  36186. weight: math.unit(1500, "lb"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/tux-kusanagi/front.svg",
  36190. extra: 944/840,
  36191. bottom: 39/983
  36192. }
  36193. },
  36194. back: {
  36195. height: math.unit(10 + 3/12, "feet"),
  36196. weight: math.unit(1500, "lb"),
  36197. name: "Back",
  36198. image: {
  36199. source: "./media/characters/tux-kusanagi/back.svg",
  36200. extra: 941/842,
  36201. bottom: 28/969
  36202. }
  36203. },
  36204. rump: {
  36205. height: math.unit(5.25, "feet"),
  36206. name: "Rump",
  36207. image: {
  36208. source: "./media/characters/tux-kusanagi/rump.svg"
  36209. }
  36210. },
  36211. beak: {
  36212. height: math.unit(1.54, "feet"),
  36213. name: "Beak",
  36214. image: {
  36215. source: "./media/characters/tux-kusanagi/beak.svg"
  36216. }
  36217. },
  36218. },
  36219. [
  36220. {
  36221. name: "Normal",
  36222. height: math.unit(10 + 3/12, "feet"),
  36223. default: true
  36224. },
  36225. ]
  36226. ))
  36227. characterMakers.push(() => makeCharacter(
  36228. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36229. {
  36230. front: {
  36231. height: math.unit(58, "feet"),
  36232. weight: math.unit(200, "tons"),
  36233. name: "Front",
  36234. image: {
  36235. source: "./media/characters/uzarmazari/front.svg",
  36236. extra: 1575/1455,
  36237. bottom: 152/1727
  36238. }
  36239. },
  36240. back: {
  36241. height: math.unit(58, "feet"),
  36242. weight: math.unit(200, "tons"),
  36243. name: "Back",
  36244. image: {
  36245. source: "./media/characters/uzarmazari/back.svg",
  36246. extra: 1585/1510,
  36247. bottom: 157/1742
  36248. }
  36249. },
  36250. head: {
  36251. height: math.unit(26, "feet"),
  36252. name: "Head",
  36253. image: {
  36254. source: "./media/characters/uzarmazari/head.svg"
  36255. }
  36256. },
  36257. },
  36258. [
  36259. {
  36260. name: "Normal",
  36261. height: math.unit(58, "feet"),
  36262. default: true
  36263. },
  36264. ]
  36265. ))
  36266. characterMakers.push(() => makeCharacter(
  36267. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36268. {
  36269. side: {
  36270. height: math.unit(15, "feet"),
  36271. name: "Side",
  36272. image: {
  36273. source: "./media/characters/akitu/side.svg",
  36274. extra: 1421/1321,
  36275. bottom: 157/1578
  36276. }
  36277. },
  36278. front: {
  36279. height: math.unit(15, "feet"),
  36280. name: "Front",
  36281. image: {
  36282. source: "./media/characters/akitu/front.svg",
  36283. extra: 1435/1326,
  36284. bottom: 232/1667
  36285. }
  36286. },
  36287. },
  36288. [
  36289. {
  36290. name: "Normal",
  36291. height: math.unit(15, "feet"),
  36292. default: true
  36293. },
  36294. ]
  36295. ))
  36296. characterMakers.push(() => makeCharacter(
  36297. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36298. {
  36299. front: {
  36300. height: math.unit(10 + 8/12, "feet"),
  36301. name: "Front",
  36302. image: {
  36303. source: "./media/characters/azalie-croixland/front.svg",
  36304. extra: 1972/1856,
  36305. bottom: 31/2003
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Original Height",
  36312. height: math.unit(5 + 4/12, "feet")
  36313. },
  36314. {
  36315. name: "Normal Height",
  36316. height: math.unit(10 + 8/12, "feet"),
  36317. default: true
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36323. {
  36324. side: {
  36325. height: math.unit(7 + 1/12, "feet"),
  36326. weight: math.unit(245, "lb"),
  36327. name: "Side",
  36328. image: {
  36329. source: "./media/characters/kavus-kazian/side.svg",
  36330. extra: 349/342,
  36331. bottom: 15/364
  36332. }
  36333. },
  36334. },
  36335. [
  36336. {
  36337. name: "Normal",
  36338. height: math.unit(7 + 1/12, "feet"),
  36339. default: true
  36340. },
  36341. ]
  36342. ))
  36343. characterMakers.push(() => makeCharacter(
  36344. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36345. {
  36346. normalFront: {
  36347. height: math.unit(5 + 11/12, "feet"),
  36348. name: "Front",
  36349. image: {
  36350. source: "./media/characters/moonlight-rose/normal-front.svg",
  36351. extra: 1980/1825,
  36352. bottom: 18/1998
  36353. },
  36354. form: "normal",
  36355. default: true
  36356. },
  36357. normalBack: {
  36358. height: math.unit(5 + 11/12, "feet"),
  36359. name: "Back",
  36360. image: {
  36361. source: "./media/characters/moonlight-rose/normal-back.svg",
  36362. extra: 2010/1839,
  36363. bottom: 10/2020
  36364. },
  36365. form: "normal"
  36366. },
  36367. demonFront: {
  36368. height: math.unit(1.5, "earths"),
  36369. name: "Front",
  36370. image: {
  36371. source: "./media/characters/moonlight-rose/demon.svg",
  36372. extra: 1400/1294,
  36373. bottom: 45/1445
  36374. },
  36375. form: "demon",
  36376. default: true
  36377. },
  36378. terraFront: {
  36379. height: math.unit(1.5, "earths"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/moonlight-rose/terra.svg"
  36383. },
  36384. form: "terra",
  36385. default: true
  36386. },
  36387. jupiterFront: {
  36388. height: math.unit(69911*2, "km"),
  36389. name: "Front",
  36390. image: {
  36391. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36392. extra: 1367/1286,
  36393. bottom: 55/1422
  36394. },
  36395. form: "jupiter",
  36396. default: true
  36397. },
  36398. neptuneFront: {
  36399. height: math.unit(24622*2, "feet"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36403. extra: 1851/1712,
  36404. bottom: 0/1851
  36405. },
  36406. form: "neptune",
  36407. default: true
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "\"Natural\" Height",
  36413. height: math.unit(5 + 11/12, "feet"),
  36414. form: "normal"
  36415. },
  36416. {
  36417. name: "Smallest comfortable size",
  36418. height: math.unit(40, "meters"),
  36419. form: "normal"
  36420. },
  36421. {
  36422. name: "Common size",
  36423. height: math.unit(50, "km"),
  36424. form: "normal",
  36425. default: true
  36426. },
  36427. {
  36428. name: "Normal",
  36429. height: math.unit(1.5, "earths"),
  36430. form: "demon",
  36431. default: true
  36432. },
  36433. {
  36434. name: "Universal",
  36435. height: math.unit(15, "universes"),
  36436. form: "demon"
  36437. },
  36438. {
  36439. name: "Earth",
  36440. height: math.unit(1.5, "earths"),
  36441. form: "terra",
  36442. default: true
  36443. },
  36444. {
  36445. name: "Super Earth",
  36446. height: math.unit(67.5, "earths"),
  36447. form: "terra"
  36448. },
  36449. {
  36450. name: "Doesn't fit in a solar system...",
  36451. height: math.unit(1, "galaxy"),
  36452. form: "terra"
  36453. },
  36454. {
  36455. name: "Saturn",
  36456. height: math.unit(58232*2, "km"),
  36457. form: "jupiter"
  36458. },
  36459. {
  36460. name: "Jupiter",
  36461. height: math.unit(69911*2, "km"),
  36462. form: "jupiter",
  36463. default: true
  36464. },
  36465. {
  36466. name: "HD 100546 b",
  36467. height: math.unit(482938, "km"),
  36468. form: "jupiter"
  36469. },
  36470. {
  36471. name: "Enceladus",
  36472. height: math.unit(513*2, "km"),
  36473. form: "neptune"
  36474. },
  36475. {
  36476. name: "Europe",
  36477. height: math.unit(1560*2, "km"),
  36478. form: "neptune"
  36479. },
  36480. {
  36481. name: "Neptune",
  36482. height: math.unit(24622*2, "km"),
  36483. form: "neptune",
  36484. default: true
  36485. },
  36486. {
  36487. name: "CoRoT-9b",
  36488. height: math.unit(75067*2, "km"),
  36489. form: "neptune"
  36490. },
  36491. ],
  36492. {
  36493. "normal": {
  36494. name: "Normal",
  36495. default: true
  36496. },
  36497. "demon": {
  36498. name: "Demon"
  36499. },
  36500. "terra": {
  36501. name: "Terra"
  36502. },
  36503. "jupiter": {
  36504. name: "Jupiter"
  36505. },
  36506. "neptune": {
  36507. name: "Neptune"
  36508. }
  36509. }
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(16, "feet"),
  36516. weight: math.unit(610, "kg"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/huckle/front.svg",
  36520. extra: 1731/1625,
  36521. bottom: 33/1764
  36522. }
  36523. },
  36524. back: {
  36525. height: math.unit(16, "feet"),
  36526. weight: math.unit(610, "kg"),
  36527. name: "Back",
  36528. image: {
  36529. source: "./media/characters/huckle/back.svg",
  36530. extra: 1738/1651,
  36531. bottom: 37/1775
  36532. }
  36533. },
  36534. laughing: {
  36535. height: math.unit(3.75, "feet"),
  36536. name: "Laughing",
  36537. image: {
  36538. source: "./media/characters/huckle/laughing.svg"
  36539. }
  36540. },
  36541. angry: {
  36542. height: math.unit(4.15, "feet"),
  36543. name: "Angry",
  36544. image: {
  36545. source: "./media/characters/huckle/angry.svg"
  36546. }
  36547. },
  36548. },
  36549. [
  36550. {
  36551. name: "Normal",
  36552. height: math.unit(16, "feet"),
  36553. default: true
  36554. },
  36555. {
  36556. name: "Mini Macro",
  36557. height: math.unit(463, "feet")
  36558. },
  36559. {
  36560. name: "Macro",
  36561. height: math.unit(1680, "meters")
  36562. },
  36563. {
  36564. name: "Mega Macro",
  36565. height: math.unit(175, "km")
  36566. },
  36567. {
  36568. name: "Terra Macro",
  36569. height: math.unit(32, "gigameters")
  36570. },
  36571. {
  36572. name: "Multiverse+",
  36573. height: math.unit(2.56e23, "yottameters")
  36574. },
  36575. ]
  36576. ))
  36577. characterMakers.push(() => makeCharacter(
  36578. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36579. {
  36580. front: {
  36581. height: math.unit(6 + 9/12, "feet"),
  36582. weight: math.unit(280, "lb"),
  36583. name: "Front",
  36584. image: {
  36585. source: "./media/characters/candy/front.svg",
  36586. extra: 234/217,
  36587. bottom: 11/245
  36588. }
  36589. },
  36590. },
  36591. [
  36592. {
  36593. name: "Really Small",
  36594. height: math.unit(0.1, "nm")
  36595. },
  36596. {
  36597. name: "Micro",
  36598. height: math.unit(2, "inches")
  36599. },
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(6 + 9/12, "feet"),
  36603. default: true
  36604. },
  36605. {
  36606. name: "Small Macro",
  36607. height: math.unit(69, "feet")
  36608. },
  36609. {
  36610. name: "Macro",
  36611. height: math.unit(160, "feet")
  36612. },
  36613. {
  36614. name: "Megamacro",
  36615. height: math.unit(22000, "miles")
  36616. },
  36617. {
  36618. name: "Gigamacro",
  36619. height: math.unit(50000, "miles")
  36620. },
  36621. ]
  36622. ))
  36623. characterMakers.push(() => makeCharacter(
  36624. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36625. {
  36626. front: {
  36627. height: math.unit(4, "feet"),
  36628. weight: math.unit(90, "lb"),
  36629. name: "Front",
  36630. image: {
  36631. source: "./media/characters/joey-mcdonald/front.svg",
  36632. extra: 1059/852,
  36633. bottom: 33/1092
  36634. }
  36635. },
  36636. back: {
  36637. height: math.unit(4, "feet"),
  36638. weight: math.unit(90, "lb"),
  36639. name: "Back",
  36640. image: {
  36641. source: "./media/characters/joey-mcdonald/back.svg",
  36642. extra: 1077/879,
  36643. bottom: 5/1082
  36644. }
  36645. },
  36646. frontKobold: {
  36647. height: math.unit(4, "feet"),
  36648. weight: math.unit(100, "lb"),
  36649. name: "Front-kobold",
  36650. image: {
  36651. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36652. extra: 1480/1367,
  36653. bottom: 0/1480
  36654. }
  36655. },
  36656. backKobold: {
  36657. height: math.unit(4, "feet"),
  36658. weight: math.unit(100, "lb"),
  36659. name: "Back-kobold",
  36660. image: {
  36661. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36662. extra: 1449/1361,
  36663. bottom: 0/1449
  36664. }
  36665. },
  36666. },
  36667. [
  36668. {
  36669. name: "Normal",
  36670. height: math.unit(4, "feet"),
  36671. default: true
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(12 + 6/12, "feet"),
  36680. name: "Front",
  36681. image: {
  36682. source: "./media/characters/kass-lockheed/front.svg",
  36683. extra: 354/343,
  36684. bottom: 9/363
  36685. }
  36686. },
  36687. back: {
  36688. height: math.unit(12 + 6/12, "feet"),
  36689. name: "Back",
  36690. image: {
  36691. source: "./media/characters/kass-lockheed/back.svg",
  36692. extra: 364/352,
  36693. bottom: 3/367
  36694. }
  36695. },
  36696. dick: {
  36697. height: math.unit(3.12, "feet"),
  36698. name: "Dick",
  36699. image: {
  36700. source: "./media/characters/kass-lockheed/dick.svg"
  36701. }
  36702. },
  36703. head: {
  36704. height: math.unit(2.6, "feet"),
  36705. name: "Head",
  36706. image: {
  36707. source: "./media/characters/kass-lockheed/head.svg"
  36708. }
  36709. },
  36710. bleh: {
  36711. height: math.unit(2.85, "feet"),
  36712. name: "Bleh",
  36713. image: {
  36714. source: "./media/characters/kass-lockheed/bleh.svg"
  36715. }
  36716. },
  36717. smug: {
  36718. height: math.unit(2.85, "feet"),
  36719. name: "Smug",
  36720. image: {
  36721. source: "./media/characters/kass-lockheed/smug.svg"
  36722. }
  36723. },
  36724. },
  36725. [
  36726. {
  36727. name: "Normal",
  36728. height: math.unit(12 + 6/12, "feet"),
  36729. default: true
  36730. },
  36731. ]
  36732. ))
  36733. characterMakers.push(() => makeCharacter(
  36734. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36735. {
  36736. front: {
  36737. height: math.unit(6 + 2/12, "feet"),
  36738. name: "Front",
  36739. image: {
  36740. source: "./media/characters/taylor/front.svg",
  36741. extra: 639/495,
  36742. bottom: 12/651
  36743. }
  36744. },
  36745. },
  36746. [
  36747. {
  36748. name: "Normal",
  36749. height: math.unit(6 + 2/12, "feet"),
  36750. default: true
  36751. },
  36752. {
  36753. name: "Big",
  36754. height: math.unit(15, "feet")
  36755. },
  36756. {
  36757. name: "Lorg",
  36758. height: math.unit(80, "feet")
  36759. },
  36760. {
  36761. name: "Too Lorg",
  36762. height: math.unit(120, "feet")
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36768. {
  36769. front: {
  36770. height: math.unit(15, "feet"),
  36771. name: "Front",
  36772. image: {
  36773. source: "./media/characters/kaizer/front.svg",
  36774. extra: 1612/1436,
  36775. bottom: 43/1655
  36776. }
  36777. },
  36778. },
  36779. [
  36780. {
  36781. name: "Normal",
  36782. height: math.unit(15, "feet"),
  36783. default: true
  36784. },
  36785. ]
  36786. ))
  36787. characterMakers.push(() => makeCharacter(
  36788. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36789. {
  36790. front: {
  36791. height: math.unit(2, "feet"),
  36792. weight: math.unit(30, "lb"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/sandy/front.svg",
  36796. extra: 1439/1307,
  36797. bottom: 194/1633
  36798. }
  36799. },
  36800. },
  36801. [
  36802. {
  36803. name: "Normal",
  36804. height: math.unit(2, "feet"),
  36805. default: true
  36806. },
  36807. ]
  36808. ))
  36809. characterMakers.push(() => makeCharacter(
  36810. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36811. {
  36812. front: {
  36813. height: math.unit(3, "feet"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/mellvi/front.svg",
  36817. extra: 1831/1630,
  36818. bottom: 58/1889
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(3, "feet"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36832. {
  36833. front: {
  36834. height: math.unit(5 + 11/12, "feet"),
  36835. weight: math.unit(200, "lb"),
  36836. name: "Front",
  36837. image: {
  36838. source: "./media/characters/shirou/front.svg",
  36839. extra: 2491/2383,
  36840. bottom: 189/2680
  36841. }
  36842. },
  36843. back: {
  36844. height: math.unit(5 + 11/12, "feet"),
  36845. weight: math.unit(200, "lb"),
  36846. name: "Back",
  36847. image: {
  36848. source: "./media/characters/shirou/back.svg",
  36849. extra: 2554/2450,
  36850. bottom: 76/2630
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(5 + 11/12, "feet"),
  36858. default: true
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36864. {
  36865. front: {
  36866. height: math.unit(6 + 3/12, "feet"),
  36867. weight: math.unit(177, "lb"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/noryu/front.svg",
  36871. extra: 973/885,
  36872. bottom: 10/983
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(6 + 3/12, "feet"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36886. {
  36887. front: {
  36888. height: math.unit(5 + 6/12, "feet"),
  36889. weight: math.unit(170, "lb"),
  36890. name: "Front",
  36891. image: {
  36892. source: "./media/characters/mevolas-rubenido/front.svg",
  36893. extra: 2109/1901,
  36894. bottom: 96/2205
  36895. }
  36896. },
  36897. },
  36898. [
  36899. {
  36900. name: "Normal",
  36901. height: math.unit(5 + 6/12, "feet"),
  36902. default: true
  36903. },
  36904. ]
  36905. ))
  36906. characterMakers.push(() => makeCharacter(
  36907. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36908. {
  36909. front: {
  36910. height: math.unit(100, "feet"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/dee/front.svg",
  36914. extra: 2153/2036,
  36915. bottom: 59/2212
  36916. }
  36917. },
  36918. back: {
  36919. height: math.unit(100, "feet"),
  36920. name: "Back",
  36921. image: {
  36922. source: "./media/characters/dee/back.svg",
  36923. extra: 2183/2058,
  36924. bottom: 75/2258
  36925. }
  36926. },
  36927. foot: {
  36928. height: math.unit(19.43, "feet"),
  36929. name: "Foot",
  36930. image: {
  36931. source: "./media/characters/dee/foot.svg"
  36932. }
  36933. },
  36934. hoof: {
  36935. height: math.unit(20.6, "feet"),
  36936. name: "Hoof",
  36937. image: {
  36938. source: "./media/characters/dee/hoof.svg"
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Macro",
  36945. height: math.unit(100, "feet"),
  36946. default: true
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36952. {
  36953. front: {
  36954. height: math.unit(5 + 6/12, "feet"),
  36955. name: "Front",
  36956. image: {
  36957. source: "./media/characters/teh/front.svg",
  36958. extra: 1002/847,
  36959. bottom: 62/1064
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Normal",
  36966. height: math.unit(5 + 6/12, "feet"),
  36967. default: true
  36968. },
  36969. ]
  36970. ))
  36971. characterMakers.push(() => makeCharacter(
  36972. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36973. {
  36974. side: {
  36975. height: math.unit(6 + 1/12, "feet"),
  36976. weight: math.unit(204, "lb"),
  36977. name: "Side",
  36978. image: {
  36979. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36980. extra: 974/775,
  36981. bottom: 169/1143
  36982. }
  36983. },
  36984. sitting: {
  36985. height: math.unit(6 + 2/12, "feet"),
  36986. weight: math.unit(204, "lb"),
  36987. name: "Sitting",
  36988. image: {
  36989. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36990. extra: 1175/964,
  36991. bottom: 378/1553
  36992. }
  36993. },
  36994. },
  36995. [
  36996. {
  36997. name: "Normal",
  36998. height: math.unit(6 + 1/12, "feet"),
  36999. default: true
  37000. },
  37001. ]
  37002. ))
  37003. characterMakers.push(() => makeCharacter(
  37004. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37005. {
  37006. front: {
  37007. height: math.unit(6, "inches"),
  37008. name: "Front",
  37009. image: {
  37010. source: "./media/characters/tululi/front.svg",
  37011. extra: 1997/1876,
  37012. bottom: 20/2017
  37013. }
  37014. },
  37015. },
  37016. [
  37017. {
  37018. name: "Normal",
  37019. height: math.unit(6, "inches"),
  37020. default: true
  37021. },
  37022. ]
  37023. ))
  37024. characterMakers.push(() => makeCharacter(
  37025. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37026. {
  37027. front: {
  37028. height: math.unit(4 + 1/12, "feet"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/star/front.svg",
  37032. extra: 1493/1189,
  37033. bottom: 48/1541
  37034. }
  37035. },
  37036. },
  37037. [
  37038. {
  37039. name: "Normal",
  37040. height: math.unit(4 + 1/12, "feet"),
  37041. default: true
  37042. },
  37043. ]
  37044. ))
  37045. characterMakers.push(() => makeCharacter(
  37046. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37047. {
  37048. front: {
  37049. height: math.unit(6 + 3/12, "feet"),
  37050. name: "Front",
  37051. image: {
  37052. source: "./media/characters/comet/front.svg",
  37053. extra: 1681/1462,
  37054. bottom: 26/1707
  37055. }
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "Normal",
  37061. height: math.unit(6 + 3/12, "feet"),
  37062. default: true
  37063. },
  37064. ]
  37065. ))
  37066. characterMakers.push(() => makeCharacter(
  37067. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37068. {
  37069. front: {
  37070. height: math.unit(950, "feet"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/vortex/front.svg",
  37074. extra: 1497/1434,
  37075. bottom: 56/1553
  37076. }
  37077. },
  37078. maw: {
  37079. height: math.unit(285, "feet"),
  37080. name: "Maw",
  37081. image: {
  37082. source: "./media/characters/vortex/maw.svg"
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Macro",
  37089. height: math.unit(950, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37096. {
  37097. front: {
  37098. height: math.unit(600, "feet"),
  37099. weight: math.unit(0.02, "grams"),
  37100. name: "Front",
  37101. image: {
  37102. source: "./media/characters/doodle/front.svg",
  37103. extra: 1578/1413,
  37104. bottom: 37/1615
  37105. }
  37106. },
  37107. },
  37108. [
  37109. {
  37110. name: "Macro",
  37111. height: math.unit(600, "feet"),
  37112. default: true
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37118. {
  37119. front: {
  37120. height: math.unit(6 + 6/12, "feet"),
  37121. name: "Front",
  37122. image: {
  37123. source: "./media/characters/jai/front.svg",
  37124. extra: 1645/1534,
  37125. bottom: 115/1760
  37126. }
  37127. },
  37128. },
  37129. [
  37130. {
  37131. name: "Normal",
  37132. height: math.unit(6 + 6/12, "feet"),
  37133. default: true
  37134. },
  37135. ]
  37136. ))
  37137. characterMakers.push(() => makeCharacter(
  37138. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37139. {
  37140. front: {
  37141. height: math.unit(6 + 8/12, "feet"),
  37142. name: "Front",
  37143. image: {
  37144. source: "./media/characters/pixel/front.svg",
  37145. extra: 1900/1735,
  37146. bottom: 63/1963
  37147. }
  37148. },
  37149. },
  37150. [
  37151. {
  37152. name: "Normal",
  37153. height: math.unit(6 + 8/12, "feet"),
  37154. default: true
  37155. },
  37156. ]
  37157. ))
  37158. characterMakers.push(() => makeCharacter(
  37159. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37160. {
  37161. back: {
  37162. height: math.unit(4 + 1/12, "feet"),
  37163. weight: math.unit(75, "lb"),
  37164. name: "Back",
  37165. image: {
  37166. source: "./media/characters/rhett/back.svg",
  37167. extra: 930/878,
  37168. bottom: 25/955
  37169. }
  37170. },
  37171. front: {
  37172. height: math.unit(4 + 1/12, "feet"),
  37173. weight: math.unit(75, "lb"),
  37174. name: "Front",
  37175. image: {
  37176. source: "./media/characters/rhett/front.svg",
  37177. extra: 1682/1586,
  37178. bottom: 92/1774
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Micro",
  37185. height: math.unit(8, "inches")
  37186. },
  37187. {
  37188. name: "Tiny",
  37189. height: math.unit(2, "feet")
  37190. },
  37191. {
  37192. name: "Normal",
  37193. height: math.unit(4 + 1/12, "feet"),
  37194. default: true
  37195. },
  37196. ]
  37197. ))
  37198. characterMakers.push(() => makeCharacter(
  37199. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37200. {
  37201. front: {
  37202. height: math.unit(3 + 3/12, "feet"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/penny/front.svg",
  37206. extra: 1406/1311,
  37207. bottom: 26/1432
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(3 + 3/12, "feet"),
  37215. default: true
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(4 + 11/12, "feet"),
  37224. name: "Front",
  37225. image: {
  37226. source: "./media/characters/monty/front.svg",
  37227. extra: 1479/1209,
  37228. bottom: 0/1479
  37229. }
  37230. },
  37231. },
  37232. [
  37233. {
  37234. name: "Normal",
  37235. height: math.unit(4 + 11/12, "feet"),
  37236. default: true
  37237. },
  37238. ]
  37239. ))
  37240. characterMakers.push(() => makeCharacter(
  37241. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37242. {
  37243. front: {
  37244. height: math.unit(8 + 4/12, "feet"),
  37245. name: "Front",
  37246. image: {
  37247. source: "./media/characters/sterling/front.svg",
  37248. extra: 1420/1236,
  37249. bottom: 27/1447
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(8 + 4/12, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(15, "feet"),
  37266. name: "Front",
  37267. image: {
  37268. source: "./media/characters/marble/front.svg",
  37269. extra: 973/937,
  37270. bottom: 32/1005
  37271. }
  37272. },
  37273. },
  37274. [
  37275. {
  37276. name: "Normal",
  37277. height: math.unit(15, "feet"),
  37278. default: true
  37279. },
  37280. ]
  37281. ))
  37282. characterMakers.push(() => makeCharacter(
  37283. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37284. {
  37285. front: {
  37286. height: math.unit(3, "inches"),
  37287. name: "Front",
  37288. image: {
  37289. source: "./media/characters/powder/front.svg",
  37290. extra: 1504/1334,
  37291. bottom: 518/2022
  37292. }
  37293. },
  37294. },
  37295. [
  37296. {
  37297. name: "Normal",
  37298. height: math.unit(3, "inches"),
  37299. default: true
  37300. },
  37301. ]
  37302. ))
  37303. characterMakers.push(() => makeCharacter(
  37304. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37305. {
  37306. front: {
  37307. height: math.unit(4 + 5/12, "feet"),
  37308. name: "Front",
  37309. image: {
  37310. source: "./media/characters/joey-raccoon/front.svg",
  37311. extra: 1273/1197,
  37312. bottom: 0/1273
  37313. }
  37314. },
  37315. },
  37316. [
  37317. {
  37318. name: "Normal",
  37319. height: math.unit(4 + 5/12, "feet"),
  37320. default: true
  37321. },
  37322. ]
  37323. ))
  37324. characterMakers.push(() => makeCharacter(
  37325. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37326. {
  37327. front: {
  37328. height: math.unit(8 + 4/12, "feet"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/vick/front.svg",
  37332. extra: 2187/2118,
  37333. bottom: 47/2234
  37334. }
  37335. },
  37336. },
  37337. [
  37338. {
  37339. name: "Normal",
  37340. height: math.unit(8 + 4/12, "feet"),
  37341. default: true
  37342. },
  37343. ]
  37344. ))
  37345. characterMakers.push(() => makeCharacter(
  37346. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37347. {
  37348. front: {
  37349. height: math.unit(5 + 5/12, "feet"),
  37350. name: "Front",
  37351. image: {
  37352. source: "./media/characters/mitsy/front.svg",
  37353. extra: 1842/1695,
  37354. bottom: 0/1842
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(5 + 5/12, "feet"),
  37362. default: true
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37368. {
  37369. front: {
  37370. height: math.unit(6 + 3/12, "feet"),
  37371. name: "Front",
  37372. image: {
  37373. source: "./media/characters/silvy/front.svg",
  37374. extra: 1995/1836,
  37375. bottom: 225/2220
  37376. }
  37377. },
  37378. },
  37379. [
  37380. {
  37381. name: "Normal",
  37382. height: math.unit(6 + 3/12, "feet"),
  37383. default: true
  37384. },
  37385. ]
  37386. ))
  37387. characterMakers.push(() => makeCharacter(
  37388. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37389. {
  37390. front: {
  37391. height: math.unit(3 + 8/12, "feet"),
  37392. name: "Front",
  37393. image: {
  37394. source: "./media/characters/rodney/front.svg",
  37395. extra: 1956/1747,
  37396. bottom: 31/1987
  37397. }
  37398. },
  37399. frontDressed: {
  37400. height: math.unit(2.9, "feet"),
  37401. name: "Front (Dressed)",
  37402. image: {
  37403. source: "./media/characters/rodney/front-dressed.svg",
  37404. extra: 1382/1241,
  37405. bottom: 385/1767
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(3 + 8/12, "feet"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(5 + 9/12, "feet"),
  37422. weight: math.unit(194, "lbs"),
  37423. name: "Front",
  37424. image: {
  37425. source: "./media/characters/zakail-sudekai/front.svg",
  37426. extra: 2696/2533,
  37427. bottom: 248/2944
  37428. }
  37429. },
  37430. maw: {
  37431. height: math.unit(1.35, "feet"),
  37432. name: "Maw",
  37433. image: {
  37434. source: "./media/characters/zakail-sudekai/maw.svg"
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Normal",
  37441. height: math.unit(5 + 9/12, "feet"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37448. {
  37449. front: {
  37450. height: math.unit(8 + 4/12, "feet"),
  37451. weight: math.unit(1200, "lb"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/eleanor/front.svg",
  37455. extra: 1226/1192,
  37456. bottom: 52/1278
  37457. }
  37458. },
  37459. back: {
  37460. height: math.unit(8 + 4/12, "feet"),
  37461. weight: math.unit(1200, "lb"),
  37462. name: "Back",
  37463. image: {
  37464. source: "./media/characters/eleanor/back.svg",
  37465. extra: 1242/1184,
  37466. bottom: 60/1302
  37467. }
  37468. },
  37469. head: {
  37470. height: math.unit(2.62, "feet"),
  37471. name: "Head",
  37472. image: {
  37473. source: "./media/characters/eleanor/head.svg"
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(8 + 4/12, "feet"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(8 + 4/12, "feet"),
  37490. weight: math.unit(750, "lb"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/tanya/front.svg",
  37494. extra: 1749/1615,
  37495. bottom: 33/1782
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(8 + 4/12, "feet"),
  37503. default: true
  37504. },
  37505. ]
  37506. ))
  37507. characterMakers.push(() => makeCharacter(
  37508. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37509. {
  37510. front: {
  37511. height: math.unit(5, "feet"),
  37512. weight: math.unit(225, "lb"),
  37513. name: "Front",
  37514. image: {
  37515. source: "./media/characters/cindy/front.svg",
  37516. extra: 1320/1250,
  37517. bottom: 42/1362
  37518. }
  37519. },
  37520. frontDressed: {
  37521. height: math.unit(5, "feet"),
  37522. weight: math.unit(225, "lb"),
  37523. name: "Front (Dressed)",
  37524. image: {
  37525. source: "./media/characters/cindy/front-dressed.svg",
  37526. extra: 1320/1250,
  37527. bottom: 42/1362
  37528. }
  37529. },
  37530. back: {
  37531. height: math.unit(5, "feet"),
  37532. weight: math.unit(225, "lb"),
  37533. name: "Back",
  37534. image: {
  37535. source: "./media/characters/cindy/back.svg",
  37536. extra: 1384/1346,
  37537. bottom: 14/1398
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(5, "feet"),
  37545. default: true
  37546. },
  37547. ]
  37548. ))
  37549. characterMakers.push(() => makeCharacter(
  37550. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37551. {
  37552. front: {
  37553. height: math.unit(6 + 9/12, "feet"),
  37554. weight: math.unit(440, "lb"),
  37555. name: "Front",
  37556. image: {
  37557. source: "./media/characters/wilbur-owen/front.svg",
  37558. extra: 1575/1448,
  37559. bottom: 72/1647
  37560. }
  37561. },
  37562. back: {
  37563. height: math.unit(6 + 9/12, "feet"),
  37564. weight: math.unit(440, "lb"),
  37565. name: "Back",
  37566. image: {
  37567. source: "./media/characters/wilbur-owen/back.svg",
  37568. extra: 1578/1445,
  37569. bottom: 36/1614
  37570. }
  37571. },
  37572. },
  37573. [
  37574. {
  37575. name: "Normal",
  37576. height: math.unit(6 + 9/12, "feet"),
  37577. default: true
  37578. },
  37579. ]
  37580. ))
  37581. characterMakers.push(() => makeCharacter(
  37582. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37583. {
  37584. front: {
  37585. height: math.unit(6 + 5/12, "feet"),
  37586. weight: math.unit(650, "lb"),
  37587. name: "Front",
  37588. image: {
  37589. source: "./media/characters/keegan/front.svg",
  37590. extra: 2387/2198,
  37591. bottom: 33/2420
  37592. }
  37593. },
  37594. side: {
  37595. height: math.unit(6 + 5/12, "feet"),
  37596. weight: math.unit(650, "lb"),
  37597. name: "Side",
  37598. image: {
  37599. source: "./media/characters/keegan/side.svg",
  37600. extra: 2390/2202,
  37601. bottom: 47/2437
  37602. }
  37603. },
  37604. back: {
  37605. height: math.unit(6 + 5/12, "feet"),
  37606. weight: math.unit(650, "lb"),
  37607. name: "Back",
  37608. image: {
  37609. source: "./media/characters/keegan/back.svg",
  37610. extra: 2418/2268,
  37611. bottom: 15/2433
  37612. }
  37613. },
  37614. frontSfw: {
  37615. height: math.unit(6 + 5/12, "feet"),
  37616. weight: math.unit(650, "lb"),
  37617. name: "Front (SFW)",
  37618. image: {
  37619. source: "./media/characters/keegan/front-sfw.svg",
  37620. extra: 2387/2198,
  37621. bottom: 33/2420
  37622. }
  37623. },
  37624. beans: {
  37625. height: math.unit(1.85, "feet"),
  37626. name: "Beans",
  37627. image: {
  37628. source: "./media/characters/keegan/beans.svg"
  37629. }
  37630. },
  37631. },
  37632. [
  37633. {
  37634. name: "Normal",
  37635. height: math.unit(6 + 5/12, "feet"),
  37636. default: true
  37637. },
  37638. ]
  37639. ))
  37640. characterMakers.push(() => makeCharacter(
  37641. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37642. {
  37643. front: {
  37644. height: math.unit(9, "feet"),
  37645. name: "Front",
  37646. image: {
  37647. source: "./media/characters/colton/front.svg",
  37648. extra: 1589/1326,
  37649. bottom: 139/1728
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(9, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(2 + 9/12, "feet"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/bora/front.svg",
  37669. extra: 1265/1250,
  37670. bottom: 24/1289
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(2 + 9/12, "feet"),
  37678. default: true
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37684. {
  37685. front: {
  37686. height: math.unit(8, "feet"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/myu-myu/front.svg",
  37690. extra: 1949/1857,
  37691. bottom: 90/2039
  37692. }
  37693. },
  37694. },
  37695. [
  37696. {
  37697. name: "Normal",
  37698. height: math.unit(8, "feet"),
  37699. default: true
  37700. },
  37701. {
  37702. name: "Big",
  37703. height: math.unit(15, "feet")
  37704. },
  37705. {
  37706. name: "BIG",
  37707. height: math.unit(25, "feet")
  37708. },
  37709. ]
  37710. ))
  37711. characterMakers.push(() => makeCharacter(
  37712. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37713. {
  37714. side: {
  37715. height: math.unit(7 + 5/12, "feet"),
  37716. weight: math.unit(2800, "lb"),
  37717. name: "Side",
  37718. image: {
  37719. source: "./media/characters/haloren/side.svg",
  37720. extra: 1793/409,
  37721. bottom: 59/1852
  37722. }
  37723. },
  37724. frontPaw: {
  37725. height: math.unit(2.36, "feet"),
  37726. name: "Front paw",
  37727. image: {
  37728. source: "./media/characters/haloren/front-paw.svg"
  37729. }
  37730. },
  37731. hindPaw: {
  37732. height: math.unit(3.18, "feet"),
  37733. name: "Hind paw",
  37734. image: {
  37735. source: "./media/characters/haloren/hind-paw.svg"
  37736. }
  37737. },
  37738. maw: {
  37739. height: math.unit(5.05, "feet"),
  37740. name: "Maw",
  37741. image: {
  37742. source: "./media/characters/haloren/maw.svg"
  37743. }
  37744. },
  37745. dick: {
  37746. height: math.unit(2.90, "feet"),
  37747. name: "Dick",
  37748. image: {
  37749. source: "./media/characters/haloren/dick.svg"
  37750. }
  37751. },
  37752. },
  37753. [
  37754. {
  37755. name: "Normal",
  37756. height: math.unit(7 + 5/12, "feet"),
  37757. default: true
  37758. },
  37759. {
  37760. name: "Enhanced",
  37761. height: math.unit(14 + 3/12, "feet")
  37762. },
  37763. ]
  37764. ))
  37765. characterMakers.push(() => makeCharacter(
  37766. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37767. {
  37768. front: {
  37769. height: math.unit(171, "cm"),
  37770. name: "Front",
  37771. image: {
  37772. source: "./media/characters/kimmy/front.svg",
  37773. extra: 1491/1435,
  37774. bottom: 53/1544
  37775. }
  37776. },
  37777. },
  37778. [
  37779. {
  37780. name: "Small",
  37781. height: math.unit(9, "cm")
  37782. },
  37783. {
  37784. name: "Normal",
  37785. height: math.unit(171, "cm"),
  37786. default: true
  37787. },
  37788. ]
  37789. ))
  37790. characterMakers.push(() => makeCharacter(
  37791. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37792. {
  37793. front: {
  37794. height: math.unit(8, "feet"),
  37795. weight: math.unit(300, "lb"),
  37796. name: "Front",
  37797. image: {
  37798. source: "./media/characters/galeboomer/front.svg",
  37799. extra: 4651/4415,
  37800. bottom: 162/4813
  37801. }
  37802. },
  37803. back: {
  37804. height: math.unit(8, "feet"),
  37805. weight: math.unit(300, "lb"),
  37806. name: "Back",
  37807. image: {
  37808. source: "./media/characters/galeboomer/back.svg",
  37809. extra: 4544/4314,
  37810. bottom: 16/4560
  37811. }
  37812. },
  37813. frontAlt: {
  37814. height: math.unit(8, "feet"),
  37815. weight: math.unit(300, "lb"),
  37816. name: "Front (Alt)",
  37817. image: {
  37818. source: "./media/characters/galeboomer/front-alt.svg",
  37819. extra: 4458/4228,
  37820. bottom: 68/4526
  37821. }
  37822. },
  37823. maw: {
  37824. height: math.unit(1.2, "feet"),
  37825. name: "Maw",
  37826. image: {
  37827. source: "./media/characters/galeboomer/maw.svg"
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(8, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(5 + 9/12, "feet"),
  37844. weight: math.unit(120, "lb"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/chyr/front.svg",
  37848. extra: 1323/1254,
  37849. bottom: 63/1386
  37850. }
  37851. },
  37852. back: {
  37853. height: math.unit(5 + 9/12, "feet"),
  37854. weight: math.unit(120, "lb"),
  37855. name: "Back",
  37856. image: {
  37857. source: "./media/characters/chyr/back.svg",
  37858. extra: 1323/1252,
  37859. bottom: 48/1371
  37860. }
  37861. },
  37862. },
  37863. [
  37864. {
  37865. name: "Normal",
  37866. height: math.unit(5 + 9/12, "feet"),
  37867. default: true
  37868. },
  37869. ]
  37870. ))
  37871. characterMakers.push(() => makeCharacter(
  37872. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37873. {
  37874. front: {
  37875. height: math.unit(7, "feet"),
  37876. weight: math.unit(310, "lb"),
  37877. name: "Front",
  37878. image: {
  37879. source: "./media/characters/solarus/front.svg",
  37880. extra: 2415/2021,
  37881. bottom: 103/2518
  37882. }
  37883. },
  37884. back: {
  37885. height: math.unit(7, "feet"),
  37886. weight: math.unit(310, "lb"),
  37887. name: "Back",
  37888. image: {
  37889. source: "./media/characters/solarus/back.svg",
  37890. extra: 2463/2089,
  37891. bottom: 79/2542
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(7, "feet"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(16, "feet"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37911. extra: 1844/1780,
  37912. bottom: 58/1902
  37913. }
  37914. },
  37915. winterCoat: {
  37916. height: math.unit(16, "feet"),
  37917. name: "Winter Coat",
  37918. image: {
  37919. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37920. extra: 1807/1775,
  37921. bottom: 69/1876
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Normal",
  37928. height: math.unit(16, "feet"),
  37929. default: true
  37930. },
  37931. {
  37932. name: "Chicago Size",
  37933. height: math.unit(560, "feet")
  37934. },
  37935. ]
  37936. ))
  37937. characterMakers.push(() => makeCharacter(
  37938. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37939. {
  37940. front: {
  37941. height: math.unit(11 + 6/12, "feet"),
  37942. weight: math.unit(1366, "lb"),
  37943. name: "Front",
  37944. image: {
  37945. source: "./media/characters/lexor/front.svg",
  37946. extra: 1560/1481,
  37947. bottom: 211/1771
  37948. }
  37949. },
  37950. back: {
  37951. height: math.unit(11 + 6/12, "feet"),
  37952. weight: math.unit(1366, "lb"),
  37953. name: "Back",
  37954. image: {
  37955. source: "./media/characters/lexor/back.svg",
  37956. extra: 1614/1533,
  37957. bottom: 76/1690
  37958. }
  37959. },
  37960. maw: {
  37961. height: math.unit(3, "feet"),
  37962. name: "Maw",
  37963. image: {
  37964. source: "./media/characters/lexor/maw.svg"
  37965. }
  37966. },
  37967. dick: {
  37968. height: math.unit(2.59, "feet"),
  37969. name: "Dick",
  37970. image: {
  37971. source: "./media/characters/lexor/dick.svg"
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(11 + 6/12, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(5 + 8/12, "feet"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/magnum/front.svg",
  37991. extra: 942/855,
  37992. bottom: 26/968
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(5 + 8/12, "feet"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38006. {
  38007. front: {
  38008. height: math.unit(18 + 4/12, "feet"),
  38009. weight: math.unit(1500, "kg"),
  38010. name: "Front",
  38011. image: {
  38012. source: "./media/characters/solas-sharpsman/front.svg",
  38013. extra: 1698/1589,
  38014. bottom: 0/1698
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(18 + 4/12, "feet"),
  38022. default: true
  38023. },
  38024. ]
  38025. ))
  38026. characterMakers.push(() => makeCharacter(
  38027. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38028. {
  38029. front: {
  38030. height: math.unit(5 + 5/12, "feet"),
  38031. weight: math.unit(180, "lb"),
  38032. name: "Front",
  38033. image: {
  38034. source: "./media/characters/october/front.svg",
  38035. extra: 1800/1650,
  38036. bottom: 0/1800
  38037. }
  38038. },
  38039. frontNsfw: {
  38040. height: math.unit(5 + 5/12, "feet"),
  38041. weight: math.unit(180, "lb"),
  38042. name: "Front (NSFW)",
  38043. image: {
  38044. source: "./media/characters/october/front-nsfw.svg",
  38045. extra: 1392/1307,
  38046. bottom: 42/1434
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(5 + 5/12, "feet"),
  38054. default: true
  38055. },
  38056. ]
  38057. ))
  38058. characterMakers.push(() => makeCharacter(
  38059. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38060. {
  38061. front: {
  38062. height: math.unit(8 + 6/12, "feet"),
  38063. name: "Front",
  38064. image: {
  38065. source: "./media/characters/essynkardi/front.svg",
  38066. extra: 1914/1846,
  38067. bottom: 22/1936
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Normal",
  38074. height: math.unit(8 + 6/12, "feet"),
  38075. default: true
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38081. {
  38082. front: {
  38083. height: math.unit(6 + 6/12, "feet"),
  38084. weight: math.unit(7, "lb"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/icky/front.svg",
  38088. extra: 813/782,
  38089. bottom: 66/879
  38090. }
  38091. },
  38092. back: {
  38093. height: math.unit(6 + 6/12, "feet"),
  38094. weight: math.unit(7, "lb"),
  38095. name: "Back",
  38096. image: {
  38097. source: "./media/characters/icky/back.svg",
  38098. extra: 754/735,
  38099. bottom: 56/810
  38100. }
  38101. },
  38102. },
  38103. [
  38104. {
  38105. name: "Normal",
  38106. height: math.unit(6 + 6/12, "feet"),
  38107. default: true
  38108. },
  38109. ]
  38110. ))
  38111. characterMakers.push(() => makeCharacter(
  38112. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38113. {
  38114. front: {
  38115. height: math.unit(15, "feet"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/rojas/front.svg",
  38119. extra: 1462/1408,
  38120. bottom: 95/1557
  38121. }
  38122. },
  38123. back: {
  38124. height: math.unit(15, "feet"),
  38125. name: "Back",
  38126. image: {
  38127. source: "./media/characters/rojas/back.svg",
  38128. extra: 1023/954,
  38129. bottom: 28/1051
  38130. }
  38131. },
  38132. },
  38133. [
  38134. {
  38135. name: "Normal",
  38136. height: math.unit(15, "feet"),
  38137. default: true
  38138. },
  38139. ]
  38140. ))
  38141. characterMakers.push(() => makeCharacter(
  38142. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38143. {
  38144. frontHuman: {
  38145. height: math.unit(5 + 7/12, "feet"),
  38146. name: "Front (Human)",
  38147. image: {
  38148. source: "./media/characters/alek-dryagan/front-human.svg",
  38149. extra: 1687/1667,
  38150. bottom: 69/1756
  38151. }
  38152. },
  38153. backHuman: {
  38154. height: math.unit(5 + 7/12, "feet"),
  38155. name: "Back (Human)",
  38156. image: {
  38157. source: "./media/characters/alek-dryagan/back-human.svg",
  38158. extra: 1670/1649,
  38159. bottom: 65/1735
  38160. }
  38161. },
  38162. frontDemi: {
  38163. height: math.unit(65, "feet"),
  38164. name: "Front (Demi)",
  38165. image: {
  38166. source: "./media/characters/alek-dryagan/front-demi.svg",
  38167. extra: 1669/1642,
  38168. bottom: 49/1718
  38169. }
  38170. },
  38171. backDemi: {
  38172. height: math.unit(65, "feet"),
  38173. name: "Back (Demi)",
  38174. image: {
  38175. source: "./media/characters/alek-dryagan/back-demi.svg",
  38176. extra: 1658/1637,
  38177. bottom: 40/1698
  38178. }
  38179. },
  38180. mawHuman: {
  38181. height: math.unit(0.3, "feet"),
  38182. name: "Maw (Human)",
  38183. image: {
  38184. source: "./media/characters/alek-dryagan/maw-human.svg"
  38185. }
  38186. },
  38187. mawDemi: {
  38188. height: math.unit(3.8, "feet"),
  38189. name: "Maw (Demi)",
  38190. image: {
  38191. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Normal",
  38198. height: math.unit(5 + 7/12, "feet"),
  38199. default: true
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38205. {
  38206. frontHuman: {
  38207. height: math.unit(5 + 2/12, "feet"),
  38208. name: "Front (Human)",
  38209. image: {
  38210. source: "./media/characters/gen/front-human.svg",
  38211. extra: 1627/1538,
  38212. bottom: 71/1698
  38213. }
  38214. },
  38215. backHuman: {
  38216. height: math.unit(5 + 2/12, "feet"),
  38217. name: "Back (Human)",
  38218. image: {
  38219. source: "./media/characters/gen/back-human.svg",
  38220. extra: 1638/1548,
  38221. bottom: 69/1707
  38222. }
  38223. },
  38224. frontDemi: {
  38225. height: math.unit(5 + 2/12, "feet"),
  38226. name: "Front (Demi)",
  38227. image: {
  38228. source: "./media/characters/gen/front-demi.svg",
  38229. extra: 1627/1538,
  38230. bottom: 71/1698
  38231. }
  38232. },
  38233. backDemi: {
  38234. height: math.unit(5 + 2/12, "feet"),
  38235. name: "Back (Demi)",
  38236. image: {
  38237. source: "./media/characters/gen/back-demi.svg",
  38238. extra: 1638/1548,
  38239. bottom: 69/1707
  38240. }
  38241. },
  38242. },
  38243. [
  38244. {
  38245. name: "Normal",
  38246. height: math.unit(5 + 2/12, "feet"),
  38247. default: true
  38248. },
  38249. ]
  38250. ))
  38251. characterMakers.push(() => makeCharacter(
  38252. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38253. {
  38254. frontImp: {
  38255. height: math.unit(1 + 11/12, "feet"),
  38256. name: "Front (Imp)",
  38257. image: {
  38258. source: "./media/characters/max-kobold/front-imp.svg",
  38259. extra: 1238/1134,
  38260. bottom: 81/1319
  38261. }
  38262. },
  38263. backImp: {
  38264. height: math.unit(1 + 11/12, "feet"),
  38265. name: "Back (Imp)",
  38266. image: {
  38267. source: "./media/characters/max-kobold/back-imp.svg",
  38268. extra: 1334/1175,
  38269. bottom: 34/1368
  38270. }
  38271. },
  38272. frontDemi: {
  38273. height: math.unit(5 + 9/12, "feet"),
  38274. name: "Front (Demi)",
  38275. image: {
  38276. source: "./media/characters/max-kobold/front-demi.svg",
  38277. extra: 1715/1685,
  38278. bottom: 54/1769
  38279. }
  38280. },
  38281. backDemi: {
  38282. height: math.unit(5 + 9/12, "feet"),
  38283. name: "Back (Demi)",
  38284. image: {
  38285. source: "./media/characters/max-kobold/back-demi.svg",
  38286. extra: 1752/1729,
  38287. bottom: 41/1793
  38288. }
  38289. },
  38290. handImp: {
  38291. height: math.unit(0.45, "feet"),
  38292. name: "Hand (Imp)",
  38293. image: {
  38294. source: "./media/characters/max-kobold/hand.svg"
  38295. }
  38296. },
  38297. pawImp: {
  38298. height: math.unit(0.46, "feet"),
  38299. name: "Paw (Imp)",
  38300. image: {
  38301. source: "./media/characters/max-kobold/paw.svg"
  38302. }
  38303. },
  38304. handDemi: {
  38305. height: math.unit(0.80, "feet"),
  38306. name: "Hand (Demi)",
  38307. image: {
  38308. source: "./media/characters/max-kobold/hand.svg"
  38309. }
  38310. },
  38311. pawDemi: {
  38312. height: math.unit(1.1, "feet"),
  38313. name: "Paw (Demi)",
  38314. image: {
  38315. source: "./media/characters/max-kobold/paw.svg"
  38316. }
  38317. },
  38318. headImp: {
  38319. height: math.unit(1.33, "feet"),
  38320. name: "Head (Imp)",
  38321. image: {
  38322. source: "./media/characters/max-kobold/head-imp.svg"
  38323. }
  38324. },
  38325. mawImp: {
  38326. height: math.unit(0.75, "feet"),
  38327. name: "Maw (Imp)",
  38328. image: {
  38329. source: "./media/characters/max-kobold/maw-imp.svg"
  38330. }
  38331. },
  38332. mawDemi: {
  38333. height: math.unit(0.42, "feet"),
  38334. name: "Maw (Demi)",
  38335. image: {
  38336. source: "./media/characters/max-kobold/maw-demi.svg"
  38337. }
  38338. },
  38339. },
  38340. [
  38341. {
  38342. name: "Normal",
  38343. height: math.unit(1 + 11/12, "feet"),
  38344. default: true
  38345. },
  38346. ]
  38347. ))
  38348. characterMakers.push(() => makeCharacter(
  38349. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38350. {
  38351. front: {
  38352. height: math.unit(7 + 5/12, "feet"),
  38353. name: "Front",
  38354. image: {
  38355. source: "./media/characters/carbon/front.svg",
  38356. extra: 1754/1689,
  38357. bottom: 65/1819
  38358. }
  38359. },
  38360. back: {
  38361. height: math.unit(7 + 5/12, "feet"),
  38362. name: "Back",
  38363. image: {
  38364. source: "./media/characters/carbon/back.svg",
  38365. extra: 1762/1695,
  38366. bottom: 24/1786
  38367. }
  38368. },
  38369. frontGigantamax: {
  38370. height: math.unit(150, "feet"),
  38371. name: "Front (Gigantamax)",
  38372. image: {
  38373. source: "./media/characters/carbon/front-gigantamax.svg",
  38374. extra: 1826/1669,
  38375. bottom: 59/1885
  38376. }
  38377. },
  38378. backGigantamax: {
  38379. height: math.unit(150, "feet"),
  38380. name: "Back (Gigantamax)",
  38381. image: {
  38382. source: "./media/characters/carbon/back-gigantamax.svg",
  38383. extra: 1796/1653,
  38384. bottom: 53/1849
  38385. }
  38386. },
  38387. maw: {
  38388. height: math.unit(0.48, "feet"),
  38389. name: "Maw",
  38390. image: {
  38391. source: "./media/characters/carbon/maw.svg"
  38392. }
  38393. },
  38394. mawGigantamax: {
  38395. height: math.unit(7.5, "feet"),
  38396. name: "Maw (Gigantamax)",
  38397. image: {
  38398. source: "./media/characters/carbon/maw-gigantamax.svg"
  38399. }
  38400. },
  38401. },
  38402. [
  38403. {
  38404. name: "Normal",
  38405. height: math.unit(7 + 5/12, "feet"),
  38406. default: true
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38412. {
  38413. front: {
  38414. height: math.unit(6, "feet"),
  38415. name: "Front",
  38416. image: {
  38417. source: "./media/characters/maverick/front.svg",
  38418. extra: 1672/1661,
  38419. bottom: 85/1757
  38420. }
  38421. },
  38422. back: {
  38423. height: math.unit(6, "feet"),
  38424. name: "Back",
  38425. image: {
  38426. source: "./media/characters/maverick/back.svg",
  38427. extra: 1642/1631,
  38428. bottom: 38/1680
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(6, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(15, "feet"),
  38445. weight: math.unit(615, "lb"),
  38446. name: "Front",
  38447. image: {
  38448. source: "./media/characters/grockle/front.svg",
  38449. extra: 1535/1427,
  38450. bottom: 56/1591
  38451. }
  38452. },
  38453. },
  38454. [
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(15, "feet"),
  38458. default: true
  38459. },
  38460. {
  38461. name: "Large",
  38462. height: math.unit(150, "feet")
  38463. },
  38464. {
  38465. name: "Macro",
  38466. height: math.unit(1876, "feet")
  38467. },
  38468. {
  38469. name: "Mega Macro",
  38470. height: math.unit(121940, "feet")
  38471. },
  38472. {
  38473. name: "Giga Macro",
  38474. height: math.unit(750, "km")
  38475. },
  38476. {
  38477. name: "Tera Macro",
  38478. height: math.unit(750000, "km")
  38479. },
  38480. {
  38481. name: "Galactic",
  38482. height: math.unit(1.4e5, "km")
  38483. },
  38484. {
  38485. name: "Godlike",
  38486. height: math.unit(9.8e280, "galaxies")
  38487. },
  38488. ]
  38489. ))
  38490. characterMakers.push(() => makeCharacter(
  38491. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38492. {
  38493. front: {
  38494. height: math.unit(11, "meters"),
  38495. weight: math.unit(20, "tonnes"),
  38496. name: "Front",
  38497. image: {
  38498. source: "./media/characters/alistair/front.svg",
  38499. extra: 1265/1009,
  38500. bottom: 93/1358
  38501. }
  38502. },
  38503. },
  38504. [
  38505. {
  38506. name: "Normal",
  38507. height: math.unit(11, "meters"),
  38508. default: true
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(5 + 8/12, "feet"),
  38517. name: "Front",
  38518. image: {
  38519. source: "./media/characters/haruka/front.svg",
  38520. extra: 2012/1952,
  38521. bottom: 0/2012
  38522. }
  38523. },
  38524. },
  38525. [
  38526. {
  38527. name: "Normal",
  38528. height: math.unit(5 + 8/12, "feet"),
  38529. default: true
  38530. },
  38531. ]
  38532. ))
  38533. characterMakers.push(() => makeCharacter(
  38534. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38535. {
  38536. back: {
  38537. height: math.unit(9, "feet"),
  38538. name: "Back",
  38539. image: {
  38540. source: "./media/characters/vivian-sylveon/back.svg",
  38541. extra: 1853/1714,
  38542. bottom: 0/1853
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(9, "feet"),
  38550. default: true
  38551. },
  38552. {
  38553. name: "Macro",
  38554. height: math.unit(500, "feet")
  38555. },
  38556. {
  38557. name: "Megamacro",
  38558. height: math.unit(600, "miles")
  38559. },
  38560. {
  38561. name: "Gigamacro",
  38562. height: math.unit(30000, "miles")
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38568. {
  38569. anthro: {
  38570. height: math.unit(5 + 10/12, "feet"),
  38571. weight: math.unit(100, "lb"),
  38572. name: "Anthro",
  38573. image: {
  38574. source: "./media/characters/daiki/anthro.svg",
  38575. extra: 1115/1027,
  38576. bottom: 69/1184
  38577. }
  38578. },
  38579. feral: {
  38580. height: math.unit(200, "feet"),
  38581. name: "Feral",
  38582. image: {
  38583. source: "./media/characters/daiki/feral.svg",
  38584. extra: 1256/313,
  38585. bottom: 39/1295
  38586. }
  38587. },
  38588. feralHead: {
  38589. height: math.unit(171, "feet"),
  38590. name: "Feral Head",
  38591. image: {
  38592. source: "./media/characters/daiki/feral-head.svg"
  38593. }
  38594. },
  38595. manaDragon: {
  38596. height: math.unit(170, "meters"),
  38597. name: "Mana-dragon",
  38598. image: {
  38599. source: "./media/characters/daiki/mana-dragon.svg",
  38600. extra: 763/420,
  38601. bottom: 97/860
  38602. }
  38603. },
  38604. },
  38605. [
  38606. {
  38607. name: "Normal",
  38608. height: math.unit(5 + 10/12, "feet"),
  38609. default: true
  38610. },
  38611. ]
  38612. ))
  38613. characterMakers.push(() => makeCharacter(
  38614. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38615. {
  38616. fullyEquippedFront: {
  38617. height: math.unit(3 + 1/12, "feet"),
  38618. weight: math.unit(24, "lb"),
  38619. name: "Fully Equipped (Front)",
  38620. image: {
  38621. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38622. extra: 687/605,
  38623. bottom: 18/705
  38624. }
  38625. },
  38626. fullyEquippedBack: {
  38627. height: math.unit(3 + 1/12, "feet"),
  38628. weight: math.unit(24, "lb"),
  38629. name: "Fully Equipped (Back)",
  38630. image: {
  38631. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38632. extra: 689/590,
  38633. bottom: 18/707
  38634. }
  38635. },
  38636. dailyWear: {
  38637. height: math.unit(3 + 1/12, "feet"),
  38638. weight: math.unit(24, "lb"),
  38639. name: "Daily Wear",
  38640. image: {
  38641. source: "./media/characters/tea-spot/daily-wear.svg",
  38642. extra: 701/620,
  38643. bottom: 21/722
  38644. }
  38645. },
  38646. maidWork: {
  38647. height: math.unit(3 + 1/12, "feet"),
  38648. weight: math.unit(24, "lb"),
  38649. name: "Maid Work",
  38650. image: {
  38651. source: "./media/characters/tea-spot/maid-work.svg",
  38652. extra: 693/609,
  38653. bottom: 15/708
  38654. }
  38655. },
  38656. },
  38657. [
  38658. {
  38659. name: "Normal",
  38660. height: math.unit(3 + 1/12, "feet"),
  38661. default: true
  38662. },
  38663. ]
  38664. ))
  38665. characterMakers.push(() => makeCharacter(
  38666. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38667. {
  38668. front: {
  38669. height: math.unit(175, "cm"),
  38670. weight: math.unit(75, "kg"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/chee/front.svg",
  38674. extra: 1796/1740,
  38675. bottom: 40/1836
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Micro-Micro",
  38682. height: math.unit(1, "nm")
  38683. },
  38684. {
  38685. name: "Micro-erst",
  38686. height: math.unit(1, "micrometer")
  38687. },
  38688. {
  38689. name: "Micro-er",
  38690. height: math.unit(1, "cm")
  38691. },
  38692. {
  38693. name: "Normal",
  38694. height: math.unit(175, "cm"),
  38695. default: true
  38696. },
  38697. {
  38698. name: "Macro",
  38699. height: math.unit(100, "m")
  38700. },
  38701. {
  38702. name: "Macro-er",
  38703. height: math.unit(1, "km")
  38704. },
  38705. {
  38706. name: "Macro-erst",
  38707. height: math.unit(10, "km")
  38708. },
  38709. {
  38710. name: "Macro-Macro",
  38711. height: math.unit(100, "km")
  38712. },
  38713. ]
  38714. ))
  38715. characterMakers.push(() => makeCharacter(
  38716. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38717. {
  38718. front: {
  38719. height: math.unit(11 + 9/12, "feet"),
  38720. weight: math.unit(935, "lb"),
  38721. name: "Front",
  38722. image: {
  38723. source: "./media/characters/kingsley/front.svg",
  38724. extra: 1803/1674,
  38725. bottom: 127/1930
  38726. }
  38727. },
  38728. frontNude: {
  38729. height: math.unit(11 + 9/12, "feet"),
  38730. weight: math.unit(935, "lb"),
  38731. name: "Front (Nude)",
  38732. image: {
  38733. source: "./media/characters/kingsley/front-nude.svg",
  38734. extra: 1803/1674,
  38735. bottom: 127/1930
  38736. }
  38737. },
  38738. },
  38739. [
  38740. {
  38741. name: "Normal",
  38742. height: math.unit(11 + 9/12, "feet"),
  38743. default: true
  38744. },
  38745. ]
  38746. ))
  38747. characterMakers.push(() => makeCharacter(
  38748. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38749. {
  38750. side: {
  38751. height: math.unit(9, "feet"),
  38752. name: "Side",
  38753. image: {
  38754. source: "./media/characters/rymel/side.svg",
  38755. extra: 792/469,
  38756. bottom: 121/913
  38757. }
  38758. },
  38759. maw: {
  38760. height: math.unit(2.4, "meters"),
  38761. name: "Maw",
  38762. image: {
  38763. source: "./media/characters/rymel/maw.svg"
  38764. }
  38765. },
  38766. },
  38767. [
  38768. {
  38769. name: "House Drake",
  38770. height: math.unit(2, "feet")
  38771. },
  38772. {
  38773. name: "Reduced",
  38774. height: math.unit(4.5, "feet")
  38775. },
  38776. {
  38777. name: "Normal",
  38778. height: math.unit(9, "feet"),
  38779. default: true
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38785. {
  38786. front: {
  38787. height: math.unit(1.74, "meters"),
  38788. weight: math.unit(55, "kg"),
  38789. name: "Front",
  38790. image: {
  38791. source: "./media/characters/rubus/front.svg",
  38792. extra: 1894/1742,
  38793. bottom: 44/1938
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Normal",
  38800. height: math.unit(1.74, "meters"),
  38801. default: true
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(5 + 2/12, "feet"),
  38810. weight: math.unit(112, "lb"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/cassie-kingston/front.svg",
  38814. extra: 1438/1390,
  38815. bottom: 47/1485
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(5 + 2/12, "feet"),
  38823. default: true
  38824. },
  38825. {
  38826. name: "Macro",
  38827. height: math.unit(128, "feet")
  38828. },
  38829. {
  38830. name: "Megamacro",
  38831. height: math.unit(2.56, "miles")
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(7, "feet"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/fox/front.svg",
  38843. extra: 1798/1703,
  38844. bottom: 55/1853
  38845. }
  38846. },
  38847. back: {
  38848. height: math.unit(7, "feet"),
  38849. name: "Back",
  38850. image: {
  38851. source: "./media/characters/fox/back.svg",
  38852. extra: 1748/1649,
  38853. bottom: 32/1780
  38854. }
  38855. },
  38856. head: {
  38857. height: math.unit(1.95, "feet"),
  38858. name: "Head",
  38859. image: {
  38860. source: "./media/characters/fox/head.svg"
  38861. }
  38862. },
  38863. dick: {
  38864. height: math.unit(1.33, "feet"),
  38865. name: "Dick",
  38866. image: {
  38867. source: "./media/characters/fox/dick.svg"
  38868. }
  38869. },
  38870. foot: {
  38871. height: math.unit(1, "feet"),
  38872. name: "Foot",
  38873. image: {
  38874. source: "./media/characters/fox/foot.svg"
  38875. }
  38876. },
  38877. paw: {
  38878. height: math.unit(0.92, "feet"),
  38879. name: "Paw",
  38880. image: {
  38881. source: "./media/characters/fox/paw.svg"
  38882. }
  38883. },
  38884. },
  38885. [
  38886. {
  38887. name: "Small",
  38888. height: math.unit(3, "inches")
  38889. },
  38890. {
  38891. name: "\"Realistic\"",
  38892. height: math.unit(7, "feet")
  38893. },
  38894. {
  38895. name: "Normal",
  38896. height: math.unit(150, "feet"),
  38897. default: true
  38898. },
  38899. {
  38900. name: "BIG",
  38901. height: math.unit(1200, "feet")
  38902. },
  38903. {
  38904. name: "👀",
  38905. height: math.unit(5, "miles")
  38906. },
  38907. {
  38908. name: "👀👀👀",
  38909. height: math.unit(64, "miles")
  38910. },
  38911. ]
  38912. ))
  38913. characterMakers.push(() => makeCharacter(
  38914. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38915. {
  38916. front: {
  38917. height: math.unit(625, "feet"),
  38918. name: "Front",
  38919. image: {
  38920. source: "./media/characters/asonja-rossa/front.svg",
  38921. extra: 1833/1686,
  38922. bottom: 24/1857
  38923. }
  38924. },
  38925. back: {
  38926. height: math.unit(625, "feet"),
  38927. name: "Back",
  38928. image: {
  38929. source: "./media/characters/asonja-rossa/back.svg",
  38930. extra: 1852/1753,
  38931. bottom: 26/1878
  38932. }
  38933. },
  38934. },
  38935. [
  38936. {
  38937. name: "Macro",
  38938. height: math.unit(625, "feet"),
  38939. default: true
  38940. },
  38941. ]
  38942. ))
  38943. characterMakers.push(() => makeCharacter(
  38944. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38945. {
  38946. side: {
  38947. height: math.unit(8, "feet"),
  38948. name: "Side",
  38949. image: {
  38950. source: "./media/characters/rezukii/side.svg",
  38951. extra: 979/542,
  38952. bottom: 87/1066
  38953. }
  38954. },
  38955. sitting: {
  38956. height: math.unit(14.6, "feet"),
  38957. name: "Sitting",
  38958. image: {
  38959. source: "./media/characters/rezukii/sitting.svg",
  38960. extra: 1023/813,
  38961. bottom: 45/1068
  38962. }
  38963. },
  38964. },
  38965. [
  38966. {
  38967. name: "Tiny",
  38968. height: math.unit(2, "feet")
  38969. },
  38970. {
  38971. name: "Smol",
  38972. height: math.unit(4, "feet")
  38973. },
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(8, "feet"),
  38977. default: true
  38978. },
  38979. {
  38980. name: "Big",
  38981. height: math.unit(12, "feet")
  38982. },
  38983. {
  38984. name: "Macro",
  38985. height: math.unit(30, "feet")
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(14, "feet"),
  38994. weight: math.unit(9.5, "tonnes"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/dawnheart/front.svg",
  38998. extra: 2792/2675,
  38999. bottom: 64/2856
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Normal",
  39006. height: math.unit(14, "feet"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39013. {
  39014. front: {
  39015. height: math.unit(1.7, "m"),
  39016. name: "Front",
  39017. image: {
  39018. source: "./media/characters/gladi/front.svg",
  39019. extra: 1460/1362,
  39020. bottom: 19/1479
  39021. }
  39022. },
  39023. back: {
  39024. height: math.unit(1.7, "m"),
  39025. name: "Back",
  39026. image: {
  39027. source: "./media/characters/gladi/back.svg",
  39028. extra: 1459/1357,
  39029. bottom: 12/1471
  39030. }
  39031. },
  39032. feral: {
  39033. height: math.unit(2.05, "m"),
  39034. name: "Feral",
  39035. image: {
  39036. source: "./media/characters/gladi/feral.svg",
  39037. extra: 821/557,
  39038. bottom: 91/912
  39039. }
  39040. },
  39041. },
  39042. [
  39043. {
  39044. name: "Shortest",
  39045. height: math.unit(70, "cm")
  39046. },
  39047. {
  39048. name: "Normal",
  39049. height: math.unit(1.7, "m")
  39050. },
  39051. {
  39052. name: "Macro",
  39053. height: math.unit(10, "m"),
  39054. default: true
  39055. },
  39056. {
  39057. name: "Tallest",
  39058. height: math.unit(200, "m")
  39059. },
  39060. ]
  39061. ))
  39062. characterMakers.push(() => makeCharacter(
  39063. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39064. {
  39065. front: {
  39066. height: math.unit(5 + 7/12, "feet"),
  39067. weight: math.unit(2, "tons"),
  39068. name: "Front",
  39069. image: {
  39070. source: "./media/characters/erdno/front.svg",
  39071. extra: 1234/1129,
  39072. bottom: 35/1269
  39073. }
  39074. },
  39075. angled: {
  39076. height: math.unit(5 + 7/12, "feet"),
  39077. weight: math.unit(2, "tons"),
  39078. name: "Angled",
  39079. image: {
  39080. source: "./media/characters/erdno/angled.svg",
  39081. extra: 1185/1139,
  39082. bottom: 36/1221
  39083. }
  39084. },
  39085. side: {
  39086. height: math.unit(5 + 7/12, "feet"),
  39087. weight: math.unit(2, "tons"),
  39088. name: "Side",
  39089. image: {
  39090. source: "./media/characters/erdno/side.svg",
  39091. extra: 1191/1144,
  39092. bottom: 40/1231
  39093. }
  39094. },
  39095. back: {
  39096. height: math.unit(5 + 7/12, "feet"),
  39097. weight: math.unit(2, "tons"),
  39098. name: "Back",
  39099. image: {
  39100. source: "./media/characters/erdno/back.svg",
  39101. extra: 1202/1146,
  39102. bottom: 17/1219
  39103. }
  39104. },
  39105. frontNsfw: {
  39106. height: math.unit(5 + 7/12, "feet"),
  39107. weight: math.unit(2, "tons"),
  39108. name: "Front (NSFW)",
  39109. image: {
  39110. source: "./media/characters/erdno/front-nsfw.svg",
  39111. extra: 1234/1129,
  39112. bottom: 35/1269
  39113. }
  39114. },
  39115. angledNsfw: {
  39116. height: math.unit(5 + 7/12, "feet"),
  39117. weight: math.unit(2, "tons"),
  39118. name: "Angled (NSFW)",
  39119. image: {
  39120. source: "./media/characters/erdno/angled-nsfw.svg",
  39121. extra: 1185/1139,
  39122. bottom: 36/1221
  39123. }
  39124. },
  39125. sideNsfw: {
  39126. height: math.unit(5 + 7/12, "feet"),
  39127. weight: math.unit(2, "tons"),
  39128. name: "Side (NSFW)",
  39129. image: {
  39130. source: "./media/characters/erdno/side-nsfw.svg",
  39131. extra: 1191/1144,
  39132. bottom: 40/1231
  39133. }
  39134. },
  39135. backNsfw: {
  39136. height: math.unit(5 + 7/12, "feet"),
  39137. weight: math.unit(2, "tons"),
  39138. name: "Back (NSFW)",
  39139. image: {
  39140. source: "./media/characters/erdno/back-nsfw.svg",
  39141. extra: 1202/1146,
  39142. bottom: 17/1219
  39143. }
  39144. },
  39145. frontHyper: {
  39146. height: math.unit(5 + 7/12, "feet"),
  39147. weight: math.unit(2, "tons"),
  39148. name: "Front (Hyper)",
  39149. image: {
  39150. source: "./media/characters/erdno/front-hyper.svg",
  39151. extra: 1298/1136,
  39152. bottom: 35/1333
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Normal",
  39159. height: math.unit(5 + 7/12, "feet"),
  39160. default: true
  39161. },
  39162. {
  39163. name: "Big",
  39164. height: math.unit(5.7, "meters")
  39165. },
  39166. {
  39167. name: "Macro",
  39168. height: math.unit(5.7, "kilometers")
  39169. },
  39170. {
  39171. name: "Megamacro",
  39172. height: math.unit(5.7, "earths")
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39178. {
  39179. front: {
  39180. height: math.unit(5 + 10/12, "feet"),
  39181. weight: math.unit(150, "lb"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/jamie/front.svg",
  39185. extra: 1908/1768,
  39186. bottom: 19/1927
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Minimum",
  39193. height: math.unit(2, "cm")
  39194. },
  39195. {
  39196. name: "Micro",
  39197. height: math.unit(3, "inches")
  39198. },
  39199. {
  39200. name: "Normal",
  39201. height: math.unit(5 + 10/12, "feet"),
  39202. default: true
  39203. },
  39204. {
  39205. name: "Macro",
  39206. height: math.unit(150, "feet")
  39207. },
  39208. {
  39209. name: "Megamacro",
  39210. height: math.unit(10000, "m")
  39211. },
  39212. ]
  39213. ))
  39214. characterMakers.push(() => makeCharacter(
  39215. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39216. {
  39217. front: {
  39218. height: math.unit(2, "meters"),
  39219. weight: math.unit(100, "kg"),
  39220. name: "Front",
  39221. image: {
  39222. source: "./media/characters/shiron/front.svg",
  39223. extra: 2103/1985,
  39224. bottom: 98/2201
  39225. }
  39226. },
  39227. back: {
  39228. height: math.unit(2, "meters"),
  39229. weight: math.unit(100, "kg"),
  39230. name: "Back",
  39231. image: {
  39232. source: "./media/characters/shiron/back.svg",
  39233. extra: 2110/2015,
  39234. bottom: 89/2199
  39235. }
  39236. },
  39237. hand: {
  39238. height: math.unit(0.96, "feet"),
  39239. name: "Hand",
  39240. image: {
  39241. source: "./media/characters/shiron/hand.svg"
  39242. }
  39243. },
  39244. foot: {
  39245. height: math.unit(1.464, "feet"),
  39246. name: "Foot",
  39247. image: {
  39248. source: "./media/characters/shiron/foot.svg"
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Normal",
  39255. height: math.unit(2, "meters")
  39256. },
  39257. {
  39258. name: "Macro",
  39259. height: math.unit(500, "meters"),
  39260. default: true
  39261. },
  39262. {
  39263. name: "Megamacro",
  39264. height: math.unit(20, "km")
  39265. },
  39266. ]
  39267. ))
  39268. characterMakers.push(() => makeCharacter(
  39269. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39270. {
  39271. front: {
  39272. height: math.unit(6, "feet"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/sam/front.svg",
  39276. extra: 849/826,
  39277. bottom: 19/868
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(6, "feet"),
  39285. default: true
  39286. },
  39287. ]
  39288. ))
  39289. characterMakers.push(() => makeCharacter(
  39290. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39291. {
  39292. front: {
  39293. height: math.unit(8 + 4/12, "feet"),
  39294. weight: math.unit(122, "kg"),
  39295. name: "Front",
  39296. image: {
  39297. source: "./media/characters/namori-kurogawa/front.svg",
  39298. extra: 1894/1576,
  39299. bottom: 34/1928
  39300. }
  39301. },
  39302. },
  39303. [
  39304. {
  39305. name: "Normal",
  39306. height: math.unit(8 + 4/12, "feet"),
  39307. default: true
  39308. },
  39309. ]
  39310. ))
  39311. characterMakers.push(() => makeCharacter(
  39312. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39313. {
  39314. front: {
  39315. height: math.unit(9, "feet"),
  39316. weight: math.unit(621, "lb"),
  39317. name: "Front",
  39318. image: {
  39319. source: "./media/characters/unmru/front.svg",
  39320. extra: 1853/1747,
  39321. bottom: 73/1926
  39322. }
  39323. },
  39324. side: {
  39325. height: math.unit(9, "feet"),
  39326. weight: math.unit(621, "lb"),
  39327. name: "Side",
  39328. image: {
  39329. source: "./media/characters/unmru/side.svg",
  39330. extra: 1781/1671,
  39331. bottom: 127/1908
  39332. }
  39333. },
  39334. back: {
  39335. height: math.unit(9, "feet"),
  39336. weight: math.unit(621, "lb"),
  39337. name: "Back",
  39338. image: {
  39339. source: "./media/characters/unmru/back.svg",
  39340. extra: 1894/1765,
  39341. bottom: 75/1969
  39342. }
  39343. },
  39344. dick: {
  39345. height: math.unit(3, "feet"),
  39346. weight: math.unit(35, "lb"),
  39347. name: "Dick",
  39348. image: {
  39349. source: "./media/characters/unmru/dick.svg"
  39350. }
  39351. },
  39352. },
  39353. [
  39354. {
  39355. name: "Normal",
  39356. height: math.unit(9, "feet")
  39357. },
  39358. {
  39359. name: "Natural",
  39360. height: math.unit(27, "feet"),
  39361. default: true
  39362. },
  39363. {
  39364. name: "Giant",
  39365. height: math.unit(90, "feet")
  39366. },
  39367. {
  39368. name: "Kaiju",
  39369. height: math.unit(270, "feet")
  39370. },
  39371. {
  39372. name: "Macro",
  39373. height: math.unit(900, "feet")
  39374. },
  39375. {
  39376. name: "Macro+",
  39377. height: math.unit(2700, "feet")
  39378. },
  39379. {
  39380. name: "Megamacro",
  39381. height: math.unit(9000, "feet")
  39382. },
  39383. {
  39384. name: "City-Crushing",
  39385. height: math.unit(27000, "feet")
  39386. },
  39387. {
  39388. name: "Mountain-Mashing",
  39389. height: math.unit(90000, "feet")
  39390. },
  39391. {
  39392. name: "Earth-Eclipsing",
  39393. height: math.unit(2.7e8, "feet")
  39394. },
  39395. {
  39396. name: "Sol-Swallowing",
  39397. height: math.unit(9e10, "feet")
  39398. },
  39399. {
  39400. name: "Majoris-Munching",
  39401. height: math.unit(2.7e13, "feet")
  39402. },
  39403. ]
  39404. ))
  39405. characterMakers.push(() => makeCharacter(
  39406. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39407. {
  39408. front: {
  39409. height: math.unit(1, "inch"),
  39410. name: "Front",
  39411. image: {
  39412. source: "./media/characters/squeaks-mouse/front.svg",
  39413. extra: 352/308,
  39414. bottom: 25/377
  39415. }
  39416. },
  39417. },
  39418. [
  39419. {
  39420. name: "Micro",
  39421. height: math.unit(1, "inch"),
  39422. default: true
  39423. },
  39424. ]
  39425. ))
  39426. characterMakers.push(() => makeCharacter(
  39427. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39428. {
  39429. side: {
  39430. height: math.unit(35, "feet"),
  39431. name: "Side",
  39432. image: {
  39433. source: "./media/characters/sayko/side.svg",
  39434. extra: 1697/1021,
  39435. bottom: 82/1779
  39436. }
  39437. },
  39438. head: {
  39439. height: math.unit(16, "feet"),
  39440. name: "Head",
  39441. image: {
  39442. source: "./media/characters/sayko/head.svg"
  39443. }
  39444. },
  39445. forepaw: {
  39446. height: math.unit(7.85, "feet"),
  39447. name: "Forepaw",
  39448. image: {
  39449. source: "./media/characters/sayko/forepaw.svg"
  39450. }
  39451. },
  39452. hindpaw: {
  39453. height: math.unit(8.8, "feet"),
  39454. name: "Hindpaw",
  39455. image: {
  39456. source: "./media/characters/sayko/hindpaw.svg"
  39457. }
  39458. },
  39459. },
  39460. [
  39461. {
  39462. name: "Normal",
  39463. height: math.unit(35, "feet"),
  39464. default: true
  39465. },
  39466. {
  39467. name: "Colossus",
  39468. height: math.unit(100, "meters")
  39469. },
  39470. {
  39471. name: "\"Small\" Deity",
  39472. height: math.unit(1, "km")
  39473. },
  39474. {
  39475. name: "\"Large\" Deity",
  39476. height: math.unit(15, "km")
  39477. },
  39478. ]
  39479. ))
  39480. characterMakers.push(() => makeCharacter(
  39481. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39482. {
  39483. front: {
  39484. height: math.unit(6, "feet"),
  39485. weight: math.unit(250, "lb"),
  39486. name: "Front",
  39487. image: {
  39488. source: "./media/characters/mukiro/front.svg",
  39489. extra: 1368/1310,
  39490. bottom: 34/1402
  39491. }
  39492. },
  39493. },
  39494. [
  39495. {
  39496. name: "Normal",
  39497. height: math.unit(6, "feet"),
  39498. default: true
  39499. },
  39500. ]
  39501. ))
  39502. characterMakers.push(() => makeCharacter(
  39503. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39504. {
  39505. front: {
  39506. height: math.unit(12 + 4/12, "feet"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39510. extra: 1346/1311,
  39511. bottom: 65/1411
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Base",
  39518. height: math.unit(12 + 4/12, "feet"),
  39519. default: true
  39520. },
  39521. {
  39522. name: "Macro",
  39523. height: math.unit(150, "feet")
  39524. },
  39525. {
  39526. name: "Mega",
  39527. height: math.unit(2, "miles")
  39528. },
  39529. {
  39530. name: "Demi God",
  39531. height: math.unit(4, "AU")
  39532. },
  39533. {
  39534. name: "God Size",
  39535. height: math.unit(1, "universe")
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39541. {
  39542. front: {
  39543. height: math.unit(3 + 3/12, "feet"),
  39544. weight: math.unit(88, "lb"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/trey/front.svg",
  39548. extra: 1815/1509,
  39549. bottom: 60/1875
  39550. }
  39551. },
  39552. },
  39553. [
  39554. {
  39555. name: "Normal",
  39556. height: math.unit(3 + 3/12, "feet"),
  39557. default: true
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39563. {
  39564. front: {
  39565. height: math.unit(4, "meters"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/adelonda/front.svg",
  39569. extra: 1077/982,
  39570. bottom: 39/1116
  39571. }
  39572. },
  39573. back: {
  39574. height: math.unit(4, "meters"),
  39575. name: "Back",
  39576. image: {
  39577. source: "./media/characters/adelonda/back.svg",
  39578. extra: 1105/1003,
  39579. bottom: 25/1130
  39580. }
  39581. },
  39582. feral: {
  39583. height: math.unit(40/1.5, "meters"),
  39584. name: "Feral",
  39585. image: {
  39586. source: "./media/characters/adelonda/feral.svg",
  39587. extra: 597/271,
  39588. bottom: 387/984
  39589. }
  39590. },
  39591. },
  39592. [
  39593. {
  39594. name: "Normal",
  39595. height: math.unit(4, "meters"),
  39596. default: true
  39597. },
  39598. ]
  39599. ))
  39600. characterMakers.push(() => makeCharacter(
  39601. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39602. {
  39603. front: {
  39604. height: math.unit(8 + 4/12, "feet"),
  39605. weight: math.unit(670, "lb"),
  39606. name: "Front",
  39607. image: {
  39608. source: "./media/characters/acadiel/front.svg",
  39609. extra: 1901/1595,
  39610. bottom: 142/2043
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(8 + 4/12, "feet"),
  39618. default: true
  39619. },
  39620. {
  39621. name: "Macro",
  39622. height: math.unit(200, "feet")
  39623. },
  39624. ]
  39625. ))
  39626. characterMakers.push(() => makeCharacter(
  39627. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39628. {
  39629. front: {
  39630. height: math.unit(6 + 2/12, "feet"),
  39631. weight: math.unit(185, "lb"),
  39632. name: "Front",
  39633. image: {
  39634. source: "./media/characters/kayne-ein/front.svg",
  39635. extra: 1780/1560,
  39636. bottom: 81/1861
  39637. }
  39638. },
  39639. },
  39640. [
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(6 + 2/12, "feet"),
  39644. default: true
  39645. },
  39646. {
  39647. name: "Transformation Stage",
  39648. height: math.unit(15, "feet")
  39649. },
  39650. {
  39651. name: "Macro",
  39652. height: math.unit(150, "feet")
  39653. },
  39654. {
  39655. name: "Earth's Shadow",
  39656. height: math.unit(6200, "miles")
  39657. },
  39658. {
  39659. name: "Universal Demon",
  39660. height: math.unit(28e9, "parsecs")
  39661. },
  39662. {
  39663. name: "Multiverse God",
  39664. height: math.unit(3, "multiverses")
  39665. },
  39666. ]
  39667. ))
  39668. characterMakers.push(() => makeCharacter(
  39669. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39670. {
  39671. front: {
  39672. height: math.unit(5 + 5/12, "feet"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/fawn/front.svg",
  39676. extra: 1873/1731,
  39677. bottom: 95/1968
  39678. }
  39679. },
  39680. back: {
  39681. height: math.unit(5 + 5/12, "feet"),
  39682. name: "Back",
  39683. image: {
  39684. source: "./media/characters/fawn/back.svg",
  39685. extra: 1813/1700,
  39686. bottom: 14/1827
  39687. }
  39688. },
  39689. hoof: {
  39690. height: math.unit(1.45, "feet"),
  39691. name: "Hoof",
  39692. image: {
  39693. source: "./media/characters/fawn/hoof.svg"
  39694. }
  39695. },
  39696. },
  39697. [
  39698. {
  39699. name: "Normal",
  39700. height: math.unit(5 + 5/12, "feet"),
  39701. default: true
  39702. },
  39703. ]
  39704. ))
  39705. characterMakers.push(() => makeCharacter(
  39706. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39707. {
  39708. front: {
  39709. height: math.unit(2 + 5/12, "feet"),
  39710. name: "Front",
  39711. image: {
  39712. source: "./media/characters/orion/front.svg",
  39713. extra: 1366/1304,
  39714. bottom: 43/1409
  39715. }
  39716. },
  39717. paw: {
  39718. height: math.unit(0.52, "feet"),
  39719. name: "Paw",
  39720. image: {
  39721. source: "./media/characters/orion/paw.svg"
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Normal",
  39728. height: math.unit(2 + 5/12, "feet"),
  39729. default: true
  39730. },
  39731. ]
  39732. ))
  39733. characterMakers.push(() => makeCharacter(
  39734. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39735. {
  39736. front: {
  39737. height: math.unit(5 + 10/12, "feet"),
  39738. name: "Front",
  39739. image: {
  39740. source: "./media/characters/vera/front.svg",
  39741. extra: 1680/1575,
  39742. bottom: 49/1729
  39743. }
  39744. },
  39745. back: {
  39746. height: math.unit(5 + 10/12, "feet"),
  39747. name: "Back",
  39748. image: {
  39749. source: "./media/characters/vera/back.svg",
  39750. extra: 1700/1588,
  39751. bottom: 18/1718
  39752. }
  39753. },
  39754. arcanine: {
  39755. height: math.unit(6 + 8/12, "feet"),
  39756. name: "Arcanine",
  39757. image: {
  39758. source: "./media/characters/vera/arcanine.svg",
  39759. extra: 1590/1511,
  39760. bottom: 71/1661
  39761. }
  39762. },
  39763. maw: {
  39764. height: math.unit(0.82, "feet"),
  39765. name: "Maw",
  39766. image: {
  39767. source: "./media/characters/vera/maw.svg"
  39768. }
  39769. },
  39770. mawArcanine: {
  39771. height: math.unit(0.97, "feet"),
  39772. name: "Maw (Arcanine)",
  39773. image: {
  39774. source: "./media/characters/vera/maw-arcanine.svg"
  39775. }
  39776. },
  39777. paw: {
  39778. height: math.unit(0.75, "feet"),
  39779. name: "Paw",
  39780. image: {
  39781. source: "./media/characters/vera/paw.svg"
  39782. }
  39783. },
  39784. pawprint: {
  39785. height: math.unit(0.52, "feet"),
  39786. name: "Pawprint",
  39787. image: {
  39788. source: "./media/characters/vera/pawprint.svg"
  39789. }
  39790. },
  39791. },
  39792. [
  39793. {
  39794. name: "Normal",
  39795. height: math.unit(5 + 10/12, "feet"),
  39796. default: true
  39797. },
  39798. {
  39799. name: "Macro",
  39800. height: math.unit(75, "feet")
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(4, "feet"),
  39809. weight: math.unit(40, "lb"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/orvan-rabbit/front.svg",
  39813. extra: 1896/1642,
  39814. bottom: 29/1925
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(4, "feet"),
  39822. default: true
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(6, "feet"),
  39831. weight: math.unit(168, "lb"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/lisa/front.svg",
  39835. extra: 2065/1867,
  39836. bottom: 46/2111
  39837. }
  39838. },
  39839. back: {
  39840. height: math.unit(6, "feet"),
  39841. weight: math.unit(168, "lb"),
  39842. name: "Back",
  39843. image: {
  39844. source: "./media/characters/lisa/back.svg",
  39845. extra: 1982/1838,
  39846. bottom: 29/2011
  39847. }
  39848. },
  39849. maw: {
  39850. height: math.unit(0.81, "feet"),
  39851. name: "Maw",
  39852. image: {
  39853. source: "./media/characters/lisa/maw.svg"
  39854. }
  39855. },
  39856. paw: {
  39857. height: math.unit(0.9, "feet"),
  39858. name: "Paw",
  39859. image: {
  39860. source: "./media/characters/lisa/paw.svg"
  39861. }
  39862. },
  39863. caribousune: {
  39864. height: math.unit(7 + 2/12, "feet"),
  39865. weight: math.unit(268, "lb"),
  39866. name: "Caribousune",
  39867. image: {
  39868. source: "./media/characters/lisa/caribousune.svg",
  39869. extra: 1843/1633,
  39870. bottom: 29/1872
  39871. }
  39872. },
  39873. frontCaribousune: {
  39874. height: math.unit(7 + 2/12, "feet"),
  39875. weight: math.unit(268, "lb"),
  39876. name: "Front (Caribousune)",
  39877. image: {
  39878. source: "./media/characters/lisa/front-caribousune.svg",
  39879. extra: 1818/1638,
  39880. bottom: 52/1870
  39881. }
  39882. },
  39883. sideCaribousune: {
  39884. height: math.unit(7 + 2/12, "feet"),
  39885. weight: math.unit(268, "lb"),
  39886. name: "Side (Caribousune)",
  39887. image: {
  39888. source: "./media/characters/lisa/side-caribousune.svg",
  39889. extra: 1851/1635,
  39890. bottom: 16/1867
  39891. }
  39892. },
  39893. backCaribousune: {
  39894. height: math.unit(7 + 2/12, "feet"),
  39895. weight: math.unit(268, "lb"),
  39896. name: "Back (Caribousune)",
  39897. image: {
  39898. source: "./media/characters/lisa/back-caribousune.svg",
  39899. extra: 1801/1604,
  39900. bottom: 44/1845
  39901. }
  39902. },
  39903. caribou: {
  39904. height: math.unit(7 + 2/12, "feet"),
  39905. weight: math.unit(268, "lb"),
  39906. name: "Caribou",
  39907. image: {
  39908. source: "./media/characters/lisa/caribou.svg",
  39909. extra: 1843/1633,
  39910. bottom: 29/1872
  39911. }
  39912. },
  39913. frontCaribou: {
  39914. height: math.unit(7 + 2/12, "feet"),
  39915. weight: math.unit(268, "lb"),
  39916. name: "Front (Caribou)",
  39917. image: {
  39918. source: "./media/characters/lisa/front-caribou.svg",
  39919. extra: 1818/1638,
  39920. bottom: 52/1870
  39921. }
  39922. },
  39923. sideCaribou: {
  39924. height: math.unit(7 + 2/12, "feet"),
  39925. weight: math.unit(268, "lb"),
  39926. name: "Side (Caribou)",
  39927. image: {
  39928. source: "./media/characters/lisa/side-caribou.svg",
  39929. extra: 1851/1635,
  39930. bottom: 16/1867
  39931. }
  39932. },
  39933. backCaribou: {
  39934. height: math.unit(7 + 2/12, "feet"),
  39935. weight: math.unit(268, "lb"),
  39936. name: "Back (Caribou)",
  39937. image: {
  39938. source: "./media/characters/lisa/back-caribou.svg",
  39939. extra: 1801/1604,
  39940. bottom: 44/1845
  39941. }
  39942. },
  39943. mawCaribou: {
  39944. height: math.unit(1.45, "feet"),
  39945. name: "Maw (Caribou)",
  39946. image: {
  39947. source: "./media/characters/lisa/maw-caribou.svg"
  39948. }
  39949. },
  39950. mawCaribousune: {
  39951. height: math.unit(1.45, "feet"),
  39952. name: "Maw (Caribousune)",
  39953. image: {
  39954. source: "./media/characters/lisa/maw-caribousune.svg"
  39955. }
  39956. },
  39957. pawCaribousune: {
  39958. height: math.unit(1.61, "feet"),
  39959. name: "Paw (Caribou)",
  39960. image: {
  39961. source: "./media/characters/lisa/paw-caribousune.svg"
  39962. }
  39963. },
  39964. },
  39965. [
  39966. {
  39967. name: "Normal",
  39968. height: math.unit(6, "feet")
  39969. },
  39970. {
  39971. name: "God Size",
  39972. height: math.unit(72, "feet"),
  39973. default: true
  39974. },
  39975. {
  39976. name: "Towering",
  39977. height: math.unit(288, "feet")
  39978. },
  39979. {
  39980. name: "City Size",
  39981. height: math.unit(48384, "feet")
  39982. },
  39983. {
  39984. name: "Continental",
  39985. height: math.unit(4200, "miles")
  39986. },
  39987. {
  39988. name: "Planet Eater",
  39989. height: math.unit(42, "earths")
  39990. },
  39991. {
  39992. name: "Star Swallower",
  39993. height: math.unit(42, "solarradii")
  39994. },
  39995. {
  39996. name: "System Swallower",
  39997. height: math.unit(84000, "AU")
  39998. },
  39999. {
  40000. name: "Galaxy Gobbler",
  40001. height: math.unit(42, "galaxies")
  40002. },
  40003. {
  40004. name: "Universe Devourer",
  40005. height: math.unit(42, "universes")
  40006. },
  40007. {
  40008. name: "Multiverse Muncher",
  40009. height: math.unit(42, "multiverses")
  40010. },
  40011. ]
  40012. ))
  40013. characterMakers.push(() => makeCharacter(
  40014. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40015. {
  40016. front: {
  40017. height: math.unit(36, "feet"),
  40018. name: "Front",
  40019. image: {
  40020. source: "./media/characters/shadow-rat/front.svg",
  40021. extra: 1845/1758,
  40022. bottom: 83/1928
  40023. }
  40024. },
  40025. },
  40026. [
  40027. {
  40028. name: "Macro",
  40029. height: math.unit(36, "feet"),
  40030. default: true
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40036. {
  40037. side: {
  40038. height: math.unit(8, "feet"),
  40039. weight: math.unit(2630, "lb"),
  40040. name: "Side",
  40041. image: {
  40042. source: "./media/characters/torallia/side.svg",
  40043. extra: 2164/2021,
  40044. bottom: 371/2535
  40045. }
  40046. },
  40047. },
  40048. [
  40049. {
  40050. name: "Mortal Interaction",
  40051. height: math.unit(8, "feet")
  40052. },
  40053. {
  40054. name: "Natural",
  40055. height: math.unit(24, "feet"),
  40056. default: true
  40057. },
  40058. {
  40059. name: "Giant",
  40060. height: math.unit(80, "feet")
  40061. },
  40062. {
  40063. name: "Kaiju",
  40064. height: math.unit(240, "feet")
  40065. },
  40066. {
  40067. name: "Macro",
  40068. height: math.unit(800, "feet")
  40069. },
  40070. {
  40071. name: "Macro+",
  40072. height: math.unit(2400, "feet")
  40073. },
  40074. {
  40075. name: "Macro++",
  40076. height: math.unit(8000, "feet")
  40077. },
  40078. {
  40079. name: "City-Crushing",
  40080. height: math.unit(24000, "feet")
  40081. },
  40082. {
  40083. name: "Mountain-Mashing",
  40084. height: math.unit(80000, "feet")
  40085. },
  40086. {
  40087. name: "District Demolisher",
  40088. height: math.unit(240000, "feet")
  40089. },
  40090. {
  40091. name: "Tri-County Terror",
  40092. height: math.unit(800000, "feet")
  40093. },
  40094. {
  40095. name: "State Smasher",
  40096. height: math.unit(2.4e6, "feet")
  40097. },
  40098. {
  40099. name: "Nation Nemesis",
  40100. height: math.unit(8e6, "feet")
  40101. },
  40102. {
  40103. name: "Continent Cracker",
  40104. height: math.unit(2.4e7, "feet")
  40105. },
  40106. {
  40107. name: "Planet-Pillaging",
  40108. height: math.unit(8e7, "feet")
  40109. },
  40110. {
  40111. name: "Earth-Eclipsing",
  40112. height: math.unit(2.4e8, "feet")
  40113. },
  40114. {
  40115. name: "Jovian-Jostling",
  40116. height: math.unit(8e8, "feet")
  40117. },
  40118. {
  40119. name: "Gas Giant Gulper",
  40120. height: math.unit(2.4e9, "feet")
  40121. },
  40122. {
  40123. name: "Astral Annihilator",
  40124. height: math.unit(8e9, "feet")
  40125. },
  40126. {
  40127. name: "Celestial Conqueror",
  40128. height: math.unit(2.4e10, "feet")
  40129. },
  40130. {
  40131. name: "Sol-Swallowing",
  40132. height: math.unit(8e10, "feet")
  40133. },
  40134. {
  40135. name: "Hunter of the Heavens",
  40136. height: math.unit(2.4e13, "feet")
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(6 + 8/12, "feet"),
  40145. weight: math.unit(250, "kilograms"),
  40146. volume: math.unit(28, "liters"),
  40147. name: "Front",
  40148. image: {
  40149. source: "./media/characters/rebecca-pawlson/front.svg",
  40150. extra: 1737/1596,
  40151. bottom: 107/1844
  40152. }
  40153. },
  40154. back: {
  40155. height: math.unit(6 + 8/12, "feet"),
  40156. weight: math.unit(250, "kilograms"),
  40157. volume: math.unit(28, "liters"),
  40158. name: "Back",
  40159. image: {
  40160. source: "./media/characters/rebecca-pawlson/back.svg",
  40161. extra: 1702/1523,
  40162. bottom: 86/1788
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(6 + 8/12, "feet")
  40170. },
  40171. {
  40172. name: "Mini Macro",
  40173. height: math.unit(10, "feet"),
  40174. default: true
  40175. },
  40176. {
  40177. name: "Macro",
  40178. height: math.unit(100, "feet")
  40179. },
  40180. {
  40181. name: "Mega Macro",
  40182. height: math.unit(2500, "feet")
  40183. },
  40184. {
  40185. name: "Giga Macro",
  40186. height: math.unit(50, "miles")
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40192. {
  40193. front: {
  40194. height: math.unit(7 + 6/12, "feet"),
  40195. weight: math.unit(600, "lb"),
  40196. name: "Front",
  40197. image: {
  40198. source: "./media/characters/moxie-nova/front.svg",
  40199. extra: 1734/1652,
  40200. bottom: 41/1775
  40201. }
  40202. },
  40203. },
  40204. [
  40205. {
  40206. name: "Normal",
  40207. height: math.unit(7 + 6/12, "feet"),
  40208. default: true
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40214. {
  40215. goat: {
  40216. height: math.unit(4, "feet"),
  40217. weight: math.unit(180, "lb"),
  40218. name: "Goat",
  40219. image: {
  40220. source: "./media/characters/tiffany/goat.svg",
  40221. extra: 1845/1595,
  40222. bottom: 106/1951
  40223. }
  40224. },
  40225. front: {
  40226. height: math.unit(5, "feet"),
  40227. weight: math.unit(150, "lb"),
  40228. name: "Foxcoon",
  40229. image: {
  40230. source: "./media/characters/tiffany/foxcoon.svg",
  40231. extra: 1941/1845,
  40232. bottom: 58/1999
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Normal",
  40239. height: math.unit(5, "feet"),
  40240. default: true
  40241. },
  40242. ]
  40243. ))
  40244. characterMakers.push(() => makeCharacter(
  40245. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40246. {
  40247. front: {
  40248. height: math.unit(8, "feet"),
  40249. weight: math.unit(300, "lb"),
  40250. name: "Front",
  40251. image: {
  40252. source: "./media/characters/raxinath/front.svg",
  40253. extra: 1407/1309,
  40254. bottom: 39/1446
  40255. }
  40256. },
  40257. back: {
  40258. height: math.unit(8, "feet"),
  40259. weight: math.unit(300, "lb"),
  40260. name: "Back",
  40261. image: {
  40262. source: "./media/characters/raxinath/back.svg",
  40263. extra: 1405/1315,
  40264. bottom: 9/1414
  40265. }
  40266. },
  40267. },
  40268. [
  40269. {
  40270. name: "Speck",
  40271. height: math.unit(0.5, "nm")
  40272. },
  40273. {
  40274. name: "Micro",
  40275. height: math.unit(3, "inches")
  40276. },
  40277. {
  40278. name: "Kobold",
  40279. height: math.unit(3, "feet")
  40280. },
  40281. {
  40282. name: "Normal",
  40283. height: math.unit(8, "feet"),
  40284. default: true
  40285. },
  40286. {
  40287. name: "Giant",
  40288. height: math.unit(50, "feet")
  40289. },
  40290. {
  40291. name: "Macro",
  40292. height: math.unit(1000, "feet")
  40293. },
  40294. {
  40295. name: "Megamacro",
  40296. height: math.unit(1, "mile")
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40302. {
  40303. front: {
  40304. height: math.unit(10, "feet"),
  40305. weight: math.unit(1442, "lb"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/mal-dragon/front.svg",
  40309. extra: 1515/1444,
  40310. bottom: 113/1628
  40311. }
  40312. },
  40313. back: {
  40314. height: math.unit(10, "feet"),
  40315. weight: math.unit(1442, "lb"),
  40316. name: "Back",
  40317. image: {
  40318. source: "./media/characters/mal-dragon/back.svg",
  40319. extra: 1527/1434,
  40320. bottom: 25/1552
  40321. }
  40322. },
  40323. },
  40324. [
  40325. {
  40326. name: "Mortal Interaction",
  40327. height: math.unit(10, "feet"),
  40328. default: true
  40329. },
  40330. {
  40331. name: "Large",
  40332. height: math.unit(30, "feet")
  40333. },
  40334. {
  40335. name: "Kaiju",
  40336. height: math.unit(300, "feet")
  40337. },
  40338. {
  40339. name: "Megamacro",
  40340. height: math.unit(10000, "feet")
  40341. },
  40342. {
  40343. name: "Continent Cracker",
  40344. height: math.unit(30000000, "feet")
  40345. },
  40346. {
  40347. name: "Sol-Swallowing",
  40348. height: math.unit(1e11, "feet")
  40349. },
  40350. {
  40351. name: "Light Universal",
  40352. height: math.unit(5, "universes")
  40353. },
  40354. {
  40355. name: "Universe Atoms",
  40356. height: math.unit(1.829e9, "universes")
  40357. },
  40358. {
  40359. name: "Light Multiversal",
  40360. height: math.unit(5, "multiverses")
  40361. },
  40362. {
  40363. name: "Multiverse Atoms",
  40364. height: math.unit(1.829e9, "multiverses")
  40365. },
  40366. {
  40367. name: "Fabric of Time",
  40368. height: math.unit(1e262, "multiverses")
  40369. },
  40370. ]
  40371. ))
  40372. characterMakers.push(() => makeCharacter(
  40373. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40374. {
  40375. front: {
  40376. height: math.unit(9, "feet"),
  40377. weight: math.unit(1050, "lb"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/tabitha/front.svg",
  40381. extra: 2083/1994,
  40382. bottom: 68/2151
  40383. }
  40384. },
  40385. },
  40386. [
  40387. {
  40388. name: "Baseline",
  40389. height: math.unit(9, "feet"),
  40390. default: true
  40391. },
  40392. {
  40393. name: "Giant",
  40394. height: math.unit(90, "feet")
  40395. },
  40396. {
  40397. name: "Macro",
  40398. height: math.unit(900, "feet")
  40399. },
  40400. {
  40401. name: "Megamacro",
  40402. height: math.unit(9000, "feet")
  40403. },
  40404. {
  40405. name: "City-Crushing",
  40406. height: math.unit(27000, "feet")
  40407. },
  40408. {
  40409. name: "Mountain-Mashing",
  40410. height: math.unit(90000, "feet")
  40411. },
  40412. {
  40413. name: "Nation Nemesis",
  40414. height: math.unit(9e6, "feet")
  40415. },
  40416. {
  40417. name: "Continent Cracker",
  40418. height: math.unit(27e6, "feet")
  40419. },
  40420. {
  40421. name: "Earth-Eclipsing",
  40422. height: math.unit(2.7e8, "feet")
  40423. },
  40424. {
  40425. name: "Gas Giant Gulper",
  40426. height: math.unit(2.7e9, "feet")
  40427. },
  40428. {
  40429. name: "Sol-Swallowing",
  40430. height: math.unit(9e10, "feet")
  40431. },
  40432. {
  40433. name: "Galaxy Gulper",
  40434. height: math.unit(9, "galaxies")
  40435. },
  40436. {
  40437. name: "Cosmos Churner",
  40438. height: math.unit(9, "universes")
  40439. },
  40440. ]
  40441. ))
  40442. characterMakers.push(() => makeCharacter(
  40443. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40444. {
  40445. front: {
  40446. height: math.unit(160, "cm"),
  40447. weight: math.unit(55, "kg"),
  40448. name: "Front",
  40449. image: {
  40450. source: "./media/characters/tow/front.svg",
  40451. extra: 1751/1722,
  40452. bottom: 74/1825
  40453. }
  40454. },
  40455. },
  40456. [
  40457. {
  40458. name: "Norm",
  40459. height: math.unit(160, "cm")
  40460. },
  40461. {
  40462. name: "Casual",
  40463. height: math.unit(3200, "m"),
  40464. default: true
  40465. },
  40466. {
  40467. name: "Show-Off",
  40468. height: math.unit(160, "km")
  40469. },
  40470. ]
  40471. ))
  40472. characterMakers.push(() => makeCharacter(
  40473. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40474. {
  40475. front: {
  40476. height: math.unit(7 + 11/12, "feet"),
  40477. weight: math.unit(342.8, "lb"),
  40478. name: "Front",
  40479. image: {
  40480. source: "./media/characters/vivian-orca-dragon/front.svg",
  40481. extra: 1890/1865,
  40482. bottom: 28/1918
  40483. }
  40484. },
  40485. },
  40486. [
  40487. {
  40488. name: "Micro",
  40489. height: math.unit(5, "inches")
  40490. },
  40491. {
  40492. name: "Normal",
  40493. height: math.unit(7 + 11/12, "feet"),
  40494. default: true
  40495. },
  40496. {
  40497. name: "Macro",
  40498. height: math.unit(395 + 7/12, "feet")
  40499. },
  40500. ]
  40501. ))
  40502. characterMakers.push(() => makeCharacter(
  40503. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40504. {
  40505. side: {
  40506. height: math.unit(10, "feet"),
  40507. weight: math.unit(1442, "lb"),
  40508. name: "Side",
  40509. image: {
  40510. source: "./media/characters/lotherakon/side.svg",
  40511. extra: 1604/1497,
  40512. bottom: 89/1693
  40513. }
  40514. },
  40515. },
  40516. [
  40517. {
  40518. name: "Mortal Interaction",
  40519. height: math.unit(10, "feet")
  40520. },
  40521. {
  40522. name: "Large",
  40523. height: math.unit(30, "feet"),
  40524. default: true
  40525. },
  40526. {
  40527. name: "Giant",
  40528. height: math.unit(100, "feet")
  40529. },
  40530. {
  40531. name: "Kaiju",
  40532. height: math.unit(300, "feet")
  40533. },
  40534. {
  40535. name: "Macro",
  40536. height: math.unit(1000, "feet")
  40537. },
  40538. {
  40539. name: "Macro+",
  40540. height: math.unit(3000, "feet")
  40541. },
  40542. {
  40543. name: "Megamacro",
  40544. height: math.unit(10000, "feet")
  40545. },
  40546. {
  40547. name: "City-Crushing",
  40548. height: math.unit(30000, "feet")
  40549. },
  40550. {
  40551. name: "Continent Cracker",
  40552. height: math.unit(30e6, "feet")
  40553. },
  40554. {
  40555. name: "Earth Eclipsing",
  40556. height: math.unit(3e8, "feet")
  40557. },
  40558. {
  40559. name: "Gas Giant Gulper",
  40560. height: math.unit(3e9, "feet")
  40561. },
  40562. {
  40563. name: "Sol-Swallowing",
  40564. height: math.unit(1e11, "feet")
  40565. },
  40566. {
  40567. name: "System Swallower",
  40568. height: math.unit(3e14, "feet")
  40569. },
  40570. {
  40571. name: "Galaxy Gulper",
  40572. height: math.unit(10, "galaxies")
  40573. },
  40574. {
  40575. name: "Light Universal",
  40576. height: math.unit(5, "universes")
  40577. },
  40578. {
  40579. name: "Universe Palm",
  40580. height: math.unit(20, "universes")
  40581. },
  40582. {
  40583. name: "Light Multiversal",
  40584. height: math.unit(5, "multiverses")
  40585. },
  40586. {
  40587. name: "Multiverse Palm",
  40588. height: math.unit(20, "multiverses")
  40589. },
  40590. {
  40591. name: "Inferno Incarnate",
  40592. height: math.unit(1e7, "multiverses")
  40593. },
  40594. ]
  40595. ))
  40596. characterMakers.push(() => makeCharacter(
  40597. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40598. {
  40599. front: {
  40600. height: math.unit(8, "feet"),
  40601. weight: math.unit(1200, "lb"),
  40602. name: "Front",
  40603. image: {
  40604. source: "./media/characters/malithee/front.svg",
  40605. extra: 1675/1640,
  40606. bottom: 162/1837
  40607. }
  40608. },
  40609. },
  40610. [
  40611. {
  40612. name: "Mortal Interaction",
  40613. height: math.unit(8, "feet"),
  40614. default: true
  40615. },
  40616. {
  40617. name: "Large",
  40618. height: math.unit(24, "feet")
  40619. },
  40620. {
  40621. name: "Kaiju",
  40622. height: math.unit(240, "feet")
  40623. },
  40624. {
  40625. name: "Megamacro",
  40626. height: math.unit(8000, "feet")
  40627. },
  40628. {
  40629. name: "Continent Cracker",
  40630. height: math.unit(24e6, "feet")
  40631. },
  40632. {
  40633. name: "Earth-Eclipsing",
  40634. height: math.unit(2.4e8, "feet")
  40635. },
  40636. {
  40637. name: "Sol-Swallowing",
  40638. height: math.unit(8e10, "feet")
  40639. },
  40640. {
  40641. name: "Galaxy Gulper",
  40642. height: math.unit(8, "galaxies")
  40643. },
  40644. {
  40645. name: "Light Universal",
  40646. height: math.unit(4, "universes")
  40647. },
  40648. {
  40649. name: "Universe Atoms",
  40650. height: math.unit(1.829e9, "universes")
  40651. },
  40652. {
  40653. name: "Light Multiversal",
  40654. height: math.unit(4, "multiverses")
  40655. },
  40656. {
  40657. name: "Multiverse Atoms",
  40658. height: math.unit(1.829e9, "multiverses")
  40659. },
  40660. {
  40661. name: "Nigh-Omnipresence",
  40662. height: math.unit(8e261, "multiverses")
  40663. },
  40664. ]
  40665. ))
  40666. characterMakers.push(() => makeCharacter(
  40667. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40668. {
  40669. front: {
  40670. height: math.unit(10, "feet"),
  40671. weight: math.unit(1500, "lb"),
  40672. name: "Front",
  40673. image: {
  40674. source: "./media/characters/miles-thestia/front.svg",
  40675. extra: 1812/1727,
  40676. bottom: 86/1898
  40677. }
  40678. },
  40679. back: {
  40680. height: math.unit(10, "feet"),
  40681. weight: math.unit(1500, "lb"),
  40682. name: "Back",
  40683. image: {
  40684. source: "./media/characters/miles-thestia/back.svg",
  40685. extra: 1799/1690,
  40686. bottom: 47/1846
  40687. }
  40688. },
  40689. frontNsfw: {
  40690. height: math.unit(10, "feet"),
  40691. weight: math.unit(1500, "lb"),
  40692. name: "Front (NSFW)",
  40693. image: {
  40694. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40695. extra: 1812/1727,
  40696. bottom: 86/1898
  40697. }
  40698. },
  40699. },
  40700. [
  40701. {
  40702. name: "Mini-Macro",
  40703. height: math.unit(10, "feet"),
  40704. default: true
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(25, "feet"),
  40713. name: "Front",
  40714. image: {
  40715. source: "./media/characters/titan-s-wulf/front.svg",
  40716. extra: 1560/1484,
  40717. bottom: 76/1636
  40718. }
  40719. },
  40720. },
  40721. [
  40722. {
  40723. name: "Smallest",
  40724. height: math.unit(25, "feet"),
  40725. default: true
  40726. },
  40727. {
  40728. name: "Normal",
  40729. height: math.unit(200, "feet")
  40730. },
  40731. {
  40732. name: "Macro",
  40733. height: math.unit(200000, "feet")
  40734. },
  40735. {
  40736. name: "Multiversal Original",
  40737. height: math.unit(10000, "multiverses")
  40738. },
  40739. ]
  40740. ))
  40741. characterMakers.push(() => makeCharacter(
  40742. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40743. {
  40744. front: {
  40745. height: math.unit(8, "feet"),
  40746. weight: math.unit(553, "lb"),
  40747. name: "Front",
  40748. image: {
  40749. source: "./media/characters/tawendeh/front.svg",
  40750. extra: 2365/2268,
  40751. bottom: 83/2448
  40752. }
  40753. },
  40754. frontClothed: {
  40755. height: math.unit(8, "feet"),
  40756. weight: math.unit(553, "lb"),
  40757. name: "Front (Clothed)",
  40758. image: {
  40759. source: "./media/characters/tawendeh/front-clothed.svg",
  40760. extra: 2365/2268,
  40761. bottom: 83/2448
  40762. }
  40763. },
  40764. back: {
  40765. height: math.unit(8, "feet"),
  40766. weight: math.unit(553, "lb"),
  40767. name: "Back",
  40768. image: {
  40769. source: "./media/characters/tawendeh/back.svg",
  40770. extra: 2397/2294,
  40771. bottom: 42/2439
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Mortal Interaction",
  40778. height: math.unit(8, "feet"),
  40779. default: true
  40780. },
  40781. {
  40782. name: "Giant",
  40783. height: math.unit(80, "feet")
  40784. },
  40785. {
  40786. name: "Macro",
  40787. height: math.unit(800, "feet")
  40788. },
  40789. {
  40790. name: "Megamacro",
  40791. height: math.unit(8000, "feet")
  40792. },
  40793. {
  40794. name: "City-Crushing",
  40795. height: math.unit(24000, "feet")
  40796. },
  40797. {
  40798. name: "Mountain-Mashing",
  40799. height: math.unit(80000, "feet")
  40800. },
  40801. {
  40802. name: "Nation Nemesis",
  40803. height: math.unit(8e6, "feet")
  40804. },
  40805. {
  40806. name: "Continent Cracker",
  40807. height: math.unit(24e6, "feet")
  40808. },
  40809. {
  40810. name: "Earth-Eclipsing",
  40811. height: math.unit(2.4e8, "feet")
  40812. },
  40813. {
  40814. name: "Gas Giant Gulper",
  40815. height: math.unit(2.4e9, "feet")
  40816. },
  40817. {
  40818. name: "Sol-Swallowing",
  40819. height: math.unit(8e10, "feet")
  40820. },
  40821. {
  40822. name: "Galaxy Gulper",
  40823. height: math.unit(8, "galaxies")
  40824. },
  40825. {
  40826. name: "Cosmos Churner",
  40827. height: math.unit(8, "universes")
  40828. },
  40829. {
  40830. name: "Omnipotent Otter",
  40831. height: math.unit(80, "universes")
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(2.6, "meters"),
  40840. weight: math.unit(900, "kg"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/neesha/front.svg",
  40844. extra: 1803/1653,
  40845. bottom: 128/1931
  40846. }
  40847. },
  40848. },
  40849. [
  40850. {
  40851. name: "Normal",
  40852. height: math.unit(2.6, "meters"),
  40853. default: true
  40854. },
  40855. {
  40856. name: "Macro",
  40857. height: math.unit(50, "meters")
  40858. },
  40859. ]
  40860. ))
  40861. characterMakers.push(() => makeCharacter(
  40862. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40863. {
  40864. front: {
  40865. height: math.unit(5, "feet"),
  40866. weight: math.unit(185, "lb"),
  40867. name: "Front",
  40868. image: {
  40869. source: "./media/characters/kyera/front.svg",
  40870. extra: 1875/1790,
  40871. bottom: 96/1971
  40872. }
  40873. },
  40874. },
  40875. [
  40876. {
  40877. name: "Normal",
  40878. height: math.unit(5, "feet"),
  40879. default: true
  40880. },
  40881. ]
  40882. ))
  40883. characterMakers.push(() => makeCharacter(
  40884. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40885. {
  40886. front: {
  40887. height: math.unit(7 + 6/12, "feet"),
  40888. weight: math.unit(540, "lb"),
  40889. name: "Front",
  40890. image: {
  40891. source: "./media/characters/yuko/front.svg",
  40892. extra: 1282/1222,
  40893. bottom: 101/1383
  40894. }
  40895. },
  40896. frontClothed: {
  40897. height: math.unit(7 + 6/12, "feet"),
  40898. weight: math.unit(540, "lb"),
  40899. name: "Front (Clothed)",
  40900. image: {
  40901. source: "./media/characters/yuko/front-clothed.svg",
  40902. extra: 1282/1222,
  40903. bottom: 101/1383
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Normal",
  40910. height: math.unit(7 + 6/12, "feet"),
  40911. default: true
  40912. },
  40913. {
  40914. name: "Macro",
  40915. height: math.unit(26 + 9/12, "feet")
  40916. },
  40917. {
  40918. name: "Megamacro",
  40919. height: math.unit(300, "feet")
  40920. },
  40921. {
  40922. name: "Gigamacro",
  40923. height: math.unit(5000, "feet")
  40924. },
  40925. {
  40926. name: "Planetary",
  40927. height: math.unit(10000, "miles")
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(8 + 2/12, "feet"),
  40936. weight: math.unit(600, "lb"),
  40937. name: "Front",
  40938. image: {
  40939. source: "./media/characters/deam-nitrel/front.svg",
  40940. extra: 1308/1234,
  40941. bottom: 125/1433
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Normal",
  40948. height: math.unit(8 + 2/12, "feet"),
  40949. default: true
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(6.1, "feet"),
  40958. weight: math.unit(180, "lb"),
  40959. name: "Front",
  40960. image: {
  40961. source: "./media/characters/skyress/front.svg",
  40962. extra: 1045/915,
  40963. bottom: 28/1073
  40964. }
  40965. },
  40966. maw: {
  40967. height: math.unit(1, "feet"),
  40968. name: "Maw",
  40969. image: {
  40970. source: "./media/characters/skyress/maw.svg"
  40971. }
  40972. },
  40973. },
  40974. [
  40975. {
  40976. name: "Normal",
  40977. height: math.unit(6.1, "feet"),
  40978. default: true
  40979. },
  40980. {
  40981. name: "Macro",
  40982. height: math.unit(200, "feet")
  40983. },
  40984. ]
  40985. ))
  40986. characterMakers.push(() => makeCharacter(
  40987. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40988. {
  40989. front: {
  40990. height: math.unit(4 + 2/12, "feet"),
  40991. weight: math.unit(40, "kg"),
  40992. name: "Front",
  40993. image: {
  40994. source: "./media/characters/amethyst-jones/front.svg",
  40995. extra: 1220/1150,
  40996. bottom: 101/1321
  40997. }
  40998. },
  40999. },
  41000. [
  41001. {
  41002. name: "Normal",
  41003. height: math.unit(4 + 2/12, "feet"),
  41004. default: true
  41005. },
  41006. ]
  41007. ))
  41008. characterMakers.push(() => makeCharacter(
  41009. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41010. {
  41011. front: {
  41012. height: math.unit(1.7, "m"),
  41013. weight: math.unit(135, "lb"),
  41014. name: "Front",
  41015. image: {
  41016. source: "./media/characters/jade/front.svg",
  41017. extra: 1818/1767,
  41018. bottom: 32/1850
  41019. }
  41020. },
  41021. back: {
  41022. height: math.unit(1.7, "m"),
  41023. weight: math.unit(135, "lb"),
  41024. name: "Back",
  41025. image: {
  41026. source: "./media/characters/jade/back.svg",
  41027. extra: 1869/1809,
  41028. bottom: 35/1904
  41029. }
  41030. },
  41031. hand: {
  41032. height: math.unit(0.24, "m"),
  41033. name: "Hand",
  41034. image: {
  41035. source: "./media/characters/jade/hand.svg"
  41036. }
  41037. },
  41038. foot: {
  41039. height: math.unit(0.263, "m"),
  41040. name: "Foot",
  41041. image: {
  41042. source: "./media/characters/jade/foot.svg"
  41043. }
  41044. },
  41045. dick: {
  41046. height: math.unit(0.47, "m"),
  41047. name: "Dick",
  41048. image: {
  41049. source: "./media/characters/jade/dick.svg"
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Micro",
  41056. height: math.unit(22, "cm")
  41057. },
  41058. {
  41059. name: "Normal",
  41060. height: math.unit(1.7, "m"),
  41061. default: true
  41062. },
  41063. {
  41064. name: "Macro",
  41065. height: math.unit(152, "m")
  41066. },
  41067. ]
  41068. ))
  41069. characterMakers.push(() => makeCharacter(
  41070. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41071. {
  41072. front: {
  41073. height: math.unit(100, "miles"),
  41074. weight: math.unit(20000, "tons"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/cookie/front.svg",
  41078. extra: 1125/1070,
  41079. bottom: 30/1155
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Big",
  41086. height: math.unit(50, "feet")
  41087. },
  41088. {
  41089. name: "Macro",
  41090. height: math.unit(100, "miles"),
  41091. default: true
  41092. },
  41093. {
  41094. name: "Megamacro",
  41095. height: math.unit(90000, "miles")
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(6, "feet"),
  41104. weight: math.unit(145, "lb"),
  41105. name: "Front",
  41106. image: {
  41107. source: "./media/characters/farzian/front.svg",
  41108. extra: 1902/1693,
  41109. bottom: 108/2010
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Macro",
  41116. height: math.unit(500, "feet"),
  41117. default: true
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41123. {
  41124. front: {
  41125. height: math.unit(3 + 6/12, "feet"),
  41126. weight: math.unit(50, "lb"),
  41127. name: "Front",
  41128. image: {
  41129. source: "./media/characters/kimberly-tilson/front.svg",
  41130. extra: 1400/1322,
  41131. bottom: 36/1436
  41132. }
  41133. },
  41134. back: {
  41135. height: math.unit(3 + 6/12, "feet"),
  41136. weight: math.unit(50, "lb"),
  41137. name: "Back",
  41138. image: {
  41139. source: "./media/characters/kimberly-tilson/back.svg",
  41140. extra: 1370/1307,
  41141. bottom: 20/1390
  41142. }
  41143. },
  41144. },
  41145. [
  41146. {
  41147. name: "Normal",
  41148. height: math.unit(3 + 6/12, "feet"),
  41149. default: true
  41150. },
  41151. ]
  41152. ))
  41153. characterMakers.push(() => makeCharacter(
  41154. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41155. {
  41156. front: {
  41157. height: math.unit(1148, "feet"),
  41158. weight: math.unit(34057, "lb"),
  41159. name: "Front",
  41160. image: {
  41161. source: "./media/characters/harthos/front.svg",
  41162. extra: 1391/1339,
  41163. bottom: 13/1404
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Macro",
  41170. height: math.unit(1148, "feet"),
  41171. default: true
  41172. },
  41173. ]
  41174. ))
  41175. characterMakers.push(() => makeCharacter(
  41176. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41177. {
  41178. front: {
  41179. height: math.unit(15, "feet"),
  41180. name: "Front",
  41181. image: {
  41182. source: "./media/characters/hypatia/front.svg",
  41183. extra: 1653/1591,
  41184. bottom: 79/1732
  41185. }
  41186. },
  41187. },
  41188. [
  41189. {
  41190. name: "Normal",
  41191. height: math.unit(15, "feet")
  41192. },
  41193. {
  41194. name: "Small",
  41195. height: math.unit(300, "feet")
  41196. },
  41197. {
  41198. name: "Macro",
  41199. height: math.unit(2500, "feet"),
  41200. default: true
  41201. },
  41202. {
  41203. name: "Mega Macro",
  41204. height: math.unit(1500, "miles")
  41205. },
  41206. {
  41207. name: "Giga Macro",
  41208. height: math.unit(1.5e6, "miles")
  41209. },
  41210. ]
  41211. ))
  41212. characterMakers.push(() => makeCharacter(
  41213. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41214. {
  41215. front: {
  41216. height: math.unit(6, "feet"),
  41217. weight: math.unit(200, "lb"),
  41218. name: "Front",
  41219. image: {
  41220. source: "./media/characters/wulver/front.svg",
  41221. extra: 1724/1632,
  41222. bottom: 130/1854
  41223. }
  41224. },
  41225. frontNsfw: {
  41226. height: math.unit(6, "feet"),
  41227. weight: math.unit(200, "lb"),
  41228. name: "Front (NSFW)",
  41229. image: {
  41230. source: "./media/characters/wulver/front-nsfw.svg",
  41231. extra: 1724/1632,
  41232. bottom: 130/1854
  41233. }
  41234. },
  41235. },
  41236. [
  41237. {
  41238. name: "Human-Sized",
  41239. height: math.unit(6, "feet")
  41240. },
  41241. {
  41242. name: "Normal",
  41243. height: math.unit(4, "meters"),
  41244. default: true
  41245. },
  41246. {
  41247. name: "Large",
  41248. height: math.unit(6, "m")
  41249. },
  41250. ]
  41251. ))
  41252. characterMakers.push(() => makeCharacter(
  41253. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41254. {
  41255. front: {
  41256. height: math.unit(7, "feet"),
  41257. name: "Front",
  41258. image: {
  41259. source: "./media/characters/maru/front.svg",
  41260. extra: 1595/1570,
  41261. bottom: 0/1595
  41262. }
  41263. },
  41264. },
  41265. [
  41266. {
  41267. name: "Normal",
  41268. height: math.unit(7, "feet"),
  41269. default: true
  41270. },
  41271. {
  41272. name: "Macro",
  41273. height: math.unit(700, "feet")
  41274. },
  41275. {
  41276. name: "Mega Macro",
  41277. height: math.unit(25, "miles")
  41278. },
  41279. ]
  41280. ))
  41281. characterMakers.push(() => makeCharacter(
  41282. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41283. {
  41284. front: {
  41285. height: math.unit(6, "feet"),
  41286. weight: math.unit(170, "lb"),
  41287. name: "Front",
  41288. image: {
  41289. source: "./media/characters/xenon/front.svg",
  41290. extra: 1376/1305,
  41291. bottom: 56/1432
  41292. }
  41293. },
  41294. back: {
  41295. height: math.unit(6, "feet"),
  41296. weight: math.unit(170, "lb"),
  41297. name: "Back",
  41298. image: {
  41299. source: "./media/characters/xenon/back.svg",
  41300. extra: 1328/1259,
  41301. bottom: 95/1423
  41302. }
  41303. },
  41304. maw: {
  41305. height: math.unit(0.52, "feet"),
  41306. name: "Maw",
  41307. image: {
  41308. source: "./media/characters/xenon/maw.svg"
  41309. }
  41310. },
  41311. hand: {
  41312. height: math.unit(0.82, "feet"),
  41313. name: "Hand",
  41314. image: {
  41315. source: "./media/characters/xenon/hand.svg"
  41316. }
  41317. },
  41318. foot: {
  41319. height: math.unit(1.13, "feet"),
  41320. name: "Foot",
  41321. image: {
  41322. source: "./media/characters/xenon/foot.svg"
  41323. }
  41324. },
  41325. },
  41326. [
  41327. {
  41328. name: "Micro",
  41329. height: math.unit(0.8, "inches")
  41330. },
  41331. {
  41332. name: "Normal",
  41333. height: math.unit(6, "feet")
  41334. },
  41335. {
  41336. name: "Macro",
  41337. height: math.unit(50, "feet"),
  41338. default: true
  41339. },
  41340. {
  41341. name: "Macro+",
  41342. height: math.unit(250, "feet")
  41343. },
  41344. {
  41345. name: "Megamacro",
  41346. height: math.unit(1500, "feet")
  41347. },
  41348. ]
  41349. ))
  41350. characterMakers.push(() => makeCharacter(
  41351. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41352. {
  41353. front: {
  41354. height: math.unit(7 + 5/12, "feet"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/zane/front.svg",
  41358. extra: 1260/1203,
  41359. bottom: 94/1354
  41360. }
  41361. },
  41362. back: {
  41363. height: math.unit(5.05, "feet"),
  41364. name: "Back",
  41365. image: {
  41366. source: "./media/characters/zane/back.svg",
  41367. extra: 893/829,
  41368. bottom: 30/923
  41369. }
  41370. },
  41371. werewolf: {
  41372. height: math.unit(11, "feet"),
  41373. name: "Werewolf",
  41374. image: {
  41375. source: "./media/characters/zane/werewolf.svg",
  41376. extra: 1383/1323,
  41377. bottom: 89/1472
  41378. }
  41379. },
  41380. foot: {
  41381. height: math.unit(1.46, "feet"),
  41382. name: "Foot",
  41383. image: {
  41384. source: "./media/characters/zane/foot.svg"
  41385. }
  41386. },
  41387. footFront: {
  41388. height: math.unit(0.784, "feet"),
  41389. name: "Foot (Front)",
  41390. image: {
  41391. source: "./media/characters/zane/foot-front.svg"
  41392. }
  41393. },
  41394. dick: {
  41395. height: math.unit(1.95, "feet"),
  41396. name: "Dick",
  41397. image: {
  41398. source: "./media/characters/zane/dick.svg"
  41399. }
  41400. },
  41401. dickWerewolf: {
  41402. height: math.unit(3.77, "feet"),
  41403. name: "Dick (Werewolf)",
  41404. image: {
  41405. source: "./media/characters/zane/dick.svg"
  41406. }
  41407. },
  41408. },
  41409. [
  41410. {
  41411. name: "Normal",
  41412. height: math.unit(7 + 5/12, "feet"),
  41413. default: true
  41414. },
  41415. ]
  41416. ))
  41417. characterMakers.push(() => makeCharacter(
  41418. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41419. {
  41420. front: {
  41421. height: math.unit(6 + 2/12, "feet"),
  41422. weight: math.unit(284, "lb"),
  41423. name: "Front",
  41424. image: {
  41425. source: "./media/characters/benni-desparque/front.svg",
  41426. extra: 1353/1126,
  41427. bottom: 69/1422
  41428. }
  41429. },
  41430. },
  41431. [
  41432. {
  41433. name: "Civilian",
  41434. height: math.unit(6 + 2/12, "feet")
  41435. },
  41436. {
  41437. name: "Normal",
  41438. height: math.unit(98, "feet"),
  41439. default: true
  41440. },
  41441. {
  41442. name: "Kaiju Fighter",
  41443. height: math.unit(268, "feet")
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41449. {
  41450. front: {
  41451. height: math.unit(5, "feet"),
  41452. weight: math.unit(105, "lb"),
  41453. name: "Front",
  41454. image: {
  41455. source: "./media/characters/maxine/front.svg",
  41456. extra: 1386/1250,
  41457. bottom: 71/1457
  41458. }
  41459. },
  41460. },
  41461. [
  41462. {
  41463. name: "Normal",
  41464. height: math.unit(5, "feet"),
  41465. default: true
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(11 + 7/12, "feet"),
  41474. weight: math.unit(9576, "lb"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/scaly/front.svg",
  41478. extra: 888/867,
  41479. bottom: 36/924
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(11 + 7/12, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41493. {
  41494. front: {
  41495. height: math.unit(6 + 3/12, "feet"),
  41496. name: "Front",
  41497. image: {
  41498. source: "./media/characters/saelria/front.svg",
  41499. extra: 1243/1138,
  41500. bottom: 46/1289
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Micro",
  41507. height: math.unit(6, "inches"),
  41508. },
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(6 + 3/12, "feet"),
  41512. default: true
  41513. },
  41514. {
  41515. name: "Macro",
  41516. height: math.unit(25, "feet")
  41517. },
  41518. ]
  41519. ))
  41520. characterMakers.push(() => makeCharacter(
  41521. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41522. {
  41523. front: {
  41524. height: math.unit(80, "meters"),
  41525. weight: math.unit(7000, "tonnes"),
  41526. name: "Front",
  41527. image: {
  41528. source: "./media/characters/tef/front.svg",
  41529. extra: 2036/1991,
  41530. bottom: 54/2090
  41531. }
  41532. },
  41533. back: {
  41534. height: math.unit(80, "meters"),
  41535. weight: math.unit(7000, "tonnes"),
  41536. name: "Back",
  41537. image: {
  41538. source: "./media/characters/tef/back.svg",
  41539. extra: 2036/1991,
  41540. bottom: 54/2090
  41541. }
  41542. },
  41543. },
  41544. [
  41545. {
  41546. name: "Macro",
  41547. height: math.unit(80, "meters"),
  41548. default: true
  41549. },
  41550. ]
  41551. ))
  41552. characterMakers.push(() => makeCharacter(
  41553. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41554. {
  41555. front: {
  41556. height: math.unit(13, "feet"),
  41557. weight: math.unit(6, "tons"),
  41558. name: "Front",
  41559. image: {
  41560. source: "./media/characters/rover/front.svg",
  41561. extra: 1233/1156,
  41562. bottom: 50/1283
  41563. }
  41564. },
  41565. back: {
  41566. height: math.unit(13, "feet"),
  41567. weight: math.unit(6, "tons"),
  41568. name: "Back",
  41569. image: {
  41570. source: "./media/characters/rover/back.svg",
  41571. extra: 1327/1258,
  41572. bottom: 39/1366
  41573. }
  41574. },
  41575. },
  41576. [
  41577. {
  41578. name: "Normal",
  41579. height: math.unit(13, "feet"),
  41580. default: true
  41581. },
  41582. {
  41583. name: "Macro",
  41584. height: math.unit(1300, "feet")
  41585. },
  41586. {
  41587. name: "Megamacro",
  41588. height: math.unit(1300, "miles")
  41589. },
  41590. {
  41591. name: "Gigamacro",
  41592. height: math.unit(1300000, "miles")
  41593. },
  41594. ]
  41595. ))
  41596. characterMakers.push(() => makeCharacter(
  41597. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41598. {
  41599. front: {
  41600. height: math.unit(6, "feet"),
  41601. weight: math.unit(150, "lb"),
  41602. name: "Front",
  41603. image: {
  41604. source: "./media/characters/ariz/front.svg",
  41605. extra: 1401/1346,
  41606. bottom: 5/1406
  41607. }
  41608. },
  41609. },
  41610. [
  41611. {
  41612. name: "Normal",
  41613. height: math.unit(10, "feet"),
  41614. default: true
  41615. },
  41616. ]
  41617. ))
  41618. characterMakers.push(() => makeCharacter(
  41619. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41620. {
  41621. front: {
  41622. height: math.unit(6, "feet"),
  41623. weight: math.unit(140, "lb"),
  41624. name: "Front",
  41625. image: {
  41626. source: "./media/characters/sigrun/front.svg",
  41627. extra: 1418/1359,
  41628. bottom: 27/1445
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Macro",
  41635. height: math.unit(35, "feet"),
  41636. default: true
  41637. },
  41638. ]
  41639. ))
  41640. characterMakers.push(() => makeCharacter(
  41641. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41642. {
  41643. front: {
  41644. height: math.unit(6, "feet"),
  41645. weight: math.unit(150, "lb"),
  41646. name: "Front",
  41647. image: {
  41648. source: "./media/characters/numin/front.svg",
  41649. extra: 1433/1388,
  41650. bottom: 12/1445
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Macro",
  41657. height: math.unit(21.5, "km"),
  41658. default: true
  41659. },
  41660. ]
  41661. ))
  41662. characterMakers.push(() => makeCharacter(
  41663. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41664. {
  41665. front: {
  41666. height: math.unit(6, "feet"),
  41667. weight: math.unit(463, "lb"),
  41668. name: "Front",
  41669. image: {
  41670. source: "./media/characters/melwa/front.svg",
  41671. extra: 1307/1248,
  41672. bottom: 93/1400
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Macro",
  41679. height: math.unit(50, "meters"),
  41680. default: true
  41681. },
  41682. ]
  41683. ))
  41684. characterMakers.push(() => makeCharacter(
  41685. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41686. {
  41687. front: {
  41688. height: math.unit(325, "feet"),
  41689. name: "Front",
  41690. image: {
  41691. source: "./media/characters/zorkaiju/front.svg",
  41692. extra: 1955/1814,
  41693. bottom: 40/1995
  41694. }
  41695. },
  41696. frontExtended: {
  41697. height: math.unit(325, "feet"),
  41698. name: "Front (Extended)",
  41699. image: {
  41700. source: "./media/characters/zorkaiju/front-extended.svg",
  41701. extra: 1955/1814,
  41702. bottom: 40/1995
  41703. }
  41704. },
  41705. side: {
  41706. height: math.unit(325, "feet"),
  41707. name: "Side",
  41708. image: {
  41709. source: "./media/characters/zorkaiju/side.svg",
  41710. extra: 1495/1396,
  41711. bottom: 17/1512
  41712. }
  41713. },
  41714. sideExtended: {
  41715. height: math.unit(325, "feet"),
  41716. name: "Side (Extended)",
  41717. image: {
  41718. source: "./media/characters/zorkaiju/side-extended.svg",
  41719. extra: 1495/1396,
  41720. bottom: 17/1512
  41721. }
  41722. },
  41723. back: {
  41724. height: math.unit(325, "feet"),
  41725. name: "Back",
  41726. image: {
  41727. source: "./media/characters/zorkaiju/back.svg",
  41728. extra: 1959/1821,
  41729. bottom: 31/1990
  41730. }
  41731. },
  41732. backExtended: {
  41733. height: math.unit(325, "feet"),
  41734. name: "Back (Extended)",
  41735. image: {
  41736. source: "./media/characters/zorkaiju/back-extended.svg",
  41737. extra: 1959/1821,
  41738. bottom: 31/1990
  41739. }
  41740. },
  41741. hand: {
  41742. height: math.unit(58.4, "feet"),
  41743. name: "Hand",
  41744. image: {
  41745. source: "./media/characters/zorkaiju/hand.svg"
  41746. }
  41747. },
  41748. handExtended: {
  41749. height: math.unit(61.4, "feet"),
  41750. name: "Hand (Extended)",
  41751. image: {
  41752. source: "./media/characters/zorkaiju/hand-extended.svg"
  41753. }
  41754. },
  41755. foot: {
  41756. height: math.unit(95, "feet"),
  41757. name: "Foot",
  41758. image: {
  41759. source: "./media/characters/zorkaiju/foot.svg"
  41760. }
  41761. },
  41762. leftArm: {
  41763. height: math.unit(59, "feet"),
  41764. name: "Left Arm",
  41765. image: {
  41766. source: "./media/characters/zorkaiju/left-arm.svg"
  41767. }
  41768. },
  41769. rightArm: {
  41770. height: math.unit(59, "feet"),
  41771. name: "Right Arm",
  41772. image: {
  41773. source: "./media/characters/zorkaiju/right-arm.svg"
  41774. }
  41775. },
  41776. leftArmExtended: {
  41777. height: math.unit(59 * 1.033546, "feet"),
  41778. name: "Left Arm (Extended)",
  41779. image: {
  41780. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41781. }
  41782. },
  41783. rightArmExtended: {
  41784. height: math.unit(59 * 1.0496, "feet"),
  41785. name: "Right Arm (Extended)",
  41786. image: {
  41787. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41788. }
  41789. },
  41790. tail: {
  41791. height: math.unit(104, "feet"),
  41792. name: "Tail",
  41793. image: {
  41794. source: "./media/characters/zorkaiju/tail.svg"
  41795. }
  41796. },
  41797. tailExtended: {
  41798. height: math.unit(104, "feet"),
  41799. name: "Tail (Extended)",
  41800. image: {
  41801. source: "./media/characters/zorkaiju/tail-extended.svg"
  41802. }
  41803. },
  41804. tailBottom: {
  41805. height: math.unit(104, "feet"),
  41806. name: "Tail Bottom",
  41807. image: {
  41808. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41809. }
  41810. },
  41811. crystal: {
  41812. height: math.unit(27.54, "feet"),
  41813. name: "Crystal",
  41814. image: {
  41815. source: "./media/characters/zorkaiju/crystal.svg"
  41816. }
  41817. },
  41818. },
  41819. [
  41820. {
  41821. name: "Kaiju",
  41822. height: math.unit(325, "feet"),
  41823. default: true
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41829. {
  41830. front: {
  41831. height: math.unit(6 + 1/12, "feet"),
  41832. weight: math.unit(115, "lb"),
  41833. name: "Front",
  41834. image: {
  41835. source: "./media/characters/bailey-belfry/front.svg",
  41836. extra: 1240/1121,
  41837. bottom: 101/1341
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Normal",
  41844. height: math.unit(6 + 1/12, "feet"),
  41845. default: true
  41846. },
  41847. ]
  41848. ))
  41849. characterMakers.push(() => makeCharacter(
  41850. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41851. {
  41852. side: {
  41853. height: math.unit(4, "meters"),
  41854. weight: math.unit(250, "kg"),
  41855. name: "Side",
  41856. image: {
  41857. source: "./media/characters/blacky/side.svg",
  41858. extra: 1027/919,
  41859. bottom: 43/1070
  41860. }
  41861. },
  41862. maw: {
  41863. height: math.unit(1, "meters"),
  41864. name: "Maw",
  41865. image: {
  41866. source: "./media/characters/blacky/maw.svg"
  41867. }
  41868. },
  41869. paw: {
  41870. height: math.unit(1, "meters"),
  41871. name: "Paw",
  41872. image: {
  41873. source: "./media/characters/blacky/paw.svg"
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(4, "meters"),
  41881. default: true
  41882. },
  41883. ]
  41884. ))
  41885. characterMakers.push(() => makeCharacter(
  41886. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41887. {
  41888. front: {
  41889. height: math.unit(170, "cm"),
  41890. weight: math.unit(66, "kg"),
  41891. name: "Front",
  41892. image: {
  41893. source: "./media/characters/thux-ei/front.svg",
  41894. extra: 1109/1011,
  41895. bottom: 8/1117
  41896. }
  41897. },
  41898. },
  41899. [
  41900. {
  41901. name: "Normal",
  41902. height: math.unit(170, "cm"),
  41903. default: true
  41904. },
  41905. ]
  41906. ))
  41907. characterMakers.push(() => makeCharacter(
  41908. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41909. {
  41910. front: {
  41911. height: math.unit(5, "feet"),
  41912. weight: math.unit(120, "lb"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/roxanne-voltaire/front.svg",
  41916. extra: 1901/1779,
  41917. bottom: 53/1954
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Normal",
  41924. height: math.unit(5, "feet"),
  41925. default: true
  41926. },
  41927. {
  41928. name: "Giant",
  41929. height: math.unit(50, "feet")
  41930. },
  41931. {
  41932. name: "Titan",
  41933. height: math.unit(500, "feet")
  41934. },
  41935. {
  41936. name: "Macro",
  41937. height: math.unit(5000, "feet")
  41938. },
  41939. {
  41940. name: "Megamacro",
  41941. height: math.unit(50000, "feet")
  41942. },
  41943. {
  41944. name: "Gigamacro",
  41945. height: math.unit(500000, "feet")
  41946. },
  41947. {
  41948. name: "Teramacro",
  41949. height: math.unit(5e6, "feet")
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41955. {
  41956. front: {
  41957. height: math.unit(6 + 2/12, "feet"),
  41958. name: "Front",
  41959. image: {
  41960. source: "./media/characters/squeaks/front.svg",
  41961. extra: 1823/1768,
  41962. bottom: 138/1961
  41963. }
  41964. },
  41965. },
  41966. [
  41967. {
  41968. name: "Micro",
  41969. height: math.unit(0.5, "inches")
  41970. },
  41971. {
  41972. name: "Normal",
  41973. height: math.unit(6 + 2/12, "feet"),
  41974. default: true
  41975. },
  41976. {
  41977. name: "Macro",
  41978. height: math.unit(600, "feet")
  41979. },
  41980. ]
  41981. ))
  41982. characterMakers.push(() => makeCharacter(
  41983. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41984. {
  41985. front: {
  41986. height: math.unit(1.72, "meters"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/archinger/front.svg",
  41990. extra: 1861/1675,
  41991. bottom: 125/1986
  41992. }
  41993. },
  41994. back: {
  41995. height: math.unit(1.72, "meters"),
  41996. name: "Back",
  41997. image: {
  41998. source: "./media/characters/archinger/back.svg",
  41999. extra: 1844/1701,
  42000. bottom: 104/1948
  42001. }
  42002. },
  42003. cock: {
  42004. height: math.unit(0.59, "feet"),
  42005. name: "Cock",
  42006. image: {
  42007. source: "./media/characters/archinger/cock.svg"
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(1.72, "meters"),
  42015. default: true
  42016. },
  42017. {
  42018. name: "Macro",
  42019. height: math.unit(84, "meters")
  42020. },
  42021. {
  42022. name: "Macro+",
  42023. height: math.unit(112, "meters")
  42024. },
  42025. {
  42026. name: "Macro++",
  42027. height: math.unit(960, "meters")
  42028. },
  42029. {
  42030. name: "Macro+++",
  42031. height: math.unit(4, "km")
  42032. },
  42033. {
  42034. name: "Macro++++",
  42035. height: math.unit(48, "km")
  42036. },
  42037. {
  42038. name: "Macro+++++",
  42039. height: math.unit(4500, "km")
  42040. },
  42041. ]
  42042. ))
  42043. characterMakers.push(() => makeCharacter(
  42044. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42045. {
  42046. front: {
  42047. height: math.unit(5 + 5/12, "feet"),
  42048. name: "Front",
  42049. image: {
  42050. source: "./media/characters/alsnapz/front.svg",
  42051. extra: 1157/1065,
  42052. bottom: 42/1199
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Normal",
  42059. height: math.unit(5 + 5/12, "feet"),
  42060. default: true
  42061. },
  42062. ]
  42063. ))
  42064. characterMakers.push(() => makeCharacter(
  42065. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42066. {
  42067. side: {
  42068. height: math.unit(3.2, "earths"),
  42069. name: "Side",
  42070. image: {
  42071. source: "./media/characters/mag/side.svg",
  42072. extra: 1331/1008,
  42073. bottom: 52/1383
  42074. }
  42075. },
  42076. wing: {
  42077. height: math.unit(1.94, "earths"),
  42078. name: "Wing",
  42079. image: {
  42080. source: "./media/characters/mag/wing.svg"
  42081. }
  42082. },
  42083. dick: {
  42084. height: math.unit(1.8, "earths"),
  42085. name: "Dick",
  42086. image: {
  42087. source: "./media/characters/mag/dick.svg"
  42088. }
  42089. },
  42090. ass: {
  42091. height: math.unit(1.33, "earths"),
  42092. name: "Ass",
  42093. image: {
  42094. source: "./media/characters/mag/ass.svg"
  42095. }
  42096. },
  42097. head: {
  42098. height: math.unit(1.1, "earths"),
  42099. name: "Head",
  42100. image: {
  42101. source: "./media/characters/mag/head.svg"
  42102. }
  42103. },
  42104. maw: {
  42105. height: math.unit(1.62, "earths"),
  42106. name: "Maw",
  42107. image: {
  42108. source: "./media/characters/mag/maw.svg"
  42109. }
  42110. },
  42111. },
  42112. [
  42113. {
  42114. name: "Small",
  42115. height: math.unit(162, "feet")
  42116. },
  42117. {
  42118. name: "Normal",
  42119. height: math.unit(3.2, "earths"),
  42120. default: true
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42126. {
  42127. front: {
  42128. height: math.unit(512, "feet"),
  42129. weight: math.unit(63509, "tonnes"),
  42130. name: "Front",
  42131. image: {
  42132. source: "./media/characters/vorrel-harroc/front.svg",
  42133. extra: 1075/1063,
  42134. bottom: 62/1137
  42135. }
  42136. },
  42137. },
  42138. [
  42139. {
  42140. name: "Normal",
  42141. height: math.unit(10, "feet")
  42142. },
  42143. {
  42144. name: "Macro",
  42145. height: math.unit(512, "feet"),
  42146. default: true
  42147. },
  42148. {
  42149. name: "Megamacro",
  42150. height: math.unit(256, "miles")
  42151. },
  42152. {
  42153. name: "Gigamacro",
  42154. height: math.unit(4096, "miles")
  42155. },
  42156. ]
  42157. ))
  42158. characterMakers.push(() => makeCharacter(
  42159. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42160. {
  42161. side: {
  42162. height: math.unit(50, "feet"),
  42163. name: "Side",
  42164. image: {
  42165. source: "./media/characters/froimar/side.svg",
  42166. extra: 855/638,
  42167. bottom: 99/954
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Macro",
  42174. height: math.unit(50, "feet"),
  42175. default: true
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42181. {
  42182. front: {
  42183. height: math.unit(210, "miles"),
  42184. name: "Front",
  42185. image: {
  42186. source: "./media/characters/timothy/front.svg",
  42187. extra: 1007/943,
  42188. bottom: 62/1069
  42189. }
  42190. },
  42191. frontSkirt: {
  42192. height: math.unit(210, "miles"),
  42193. name: "Front (Skirt)",
  42194. image: {
  42195. source: "./media/characters/timothy/front-skirt.svg",
  42196. extra: 1007/943,
  42197. bottom: 62/1069
  42198. }
  42199. },
  42200. frontCoat: {
  42201. height: math.unit(210, "miles"),
  42202. name: "Front (Coat)",
  42203. image: {
  42204. source: "./media/characters/timothy/front-coat.svg",
  42205. extra: 1007/943,
  42206. bottom: 62/1069
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Macro",
  42213. height: math.unit(210, "miles"),
  42214. default: true
  42215. },
  42216. {
  42217. name: "Megamacro",
  42218. height: math.unit(210000, "miles")
  42219. },
  42220. ]
  42221. ))
  42222. characterMakers.push(() => makeCharacter(
  42223. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42224. {
  42225. front: {
  42226. height: math.unit(188, "feet"),
  42227. name: "Front",
  42228. image: {
  42229. source: "./media/characters/pyotr/front.svg",
  42230. extra: 1912/1826,
  42231. bottom: 18/1930
  42232. }
  42233. },
  42234. },
  42235. [
  42236. {
  42237. name: "Macro",
  42238. height: math.unit(188, "feet"),
  42239. default: true
  42240. },
  42241. {
  42242. name: "Megamacro",
  42243. height: math.unit(8, "miles")
  42244. },
  42245. ]
  42246. ))
  42247. characterMakers.push(() => makeCharacter(
  42248. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42249. {
  42250. side: {
  42251. height: math.unit(10, "feet"),
  42252. weight: math.unit(4500, "lb"),
  42253. name: "Side",
  42254. image: {
  42255. source: "./media/characters/ackart/side.svg",
  42256. extra: 1776/1668,
  42257. bottom: 116/1892
  42258. }
  42259. },
  42260. },
  42261. [
  42262. {
  42263. name: "Normal",
  42264. height: math.unit(10, "feet"),
  42265. default: true
  42266. },
  42267. ]
  42268. ))
  42269. characterMakers.push(() => makeCharacter(
  42270. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42271. {
  42272. side: {
  42273. height: math.unit(21, "feet"),
  42274. name: "Side",
  42275. image: {
  42276. source: "./media/characters/nolow/side.svg",
  42277. extra: 1484/1434,
  42278. bottom: 85/1569
  42279. }
  42280. },
  42281. sideErect: {
  42282. height: math.unit(21, "feet"),
  42283. name: "Side-erect",
  42284. image: {
  42285. source: "./media/characters/nolow/side-erect.svg",
  42286. extra: 1484/1434,
  42287. bottom: 85/1569
  42288. }
  42289. },
  42290. },
  42291. [
  42292. {
  42293. name: "Regular",
  42294. height: math.unit(12, "feet")
  42295. },
  42296. {
  42297. name: "Big Chee",
  42298. height: math.unit(21, "feet"),
  42299. default: true
  42300. },
  42301. ]
  42302. ))
  42303. characterMakers.push(() => makeCharacter(
  42304. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42305. {
  42306. front: {
  42307. height: math.unit(7, "feet"),
  42308. weight: math.unit(250, "lb"),
  42309. name: "Front",
  42310. image: {
  42311. source: "./media/characters/nines/front.svg",
  42312. extra: 1741/1607,
  42313. bottom: 41/1782
  42314. }
  42315. },
  42316. side: {
  42317. height: math.unit(7, "feet"),
  42318. weight: math.unit(250, "lb"),
  42319. name: "Side",
  42320. image: {
  42321. source: "./media/characters/nines/side.svg",
  42322. extra: 1854/1735,
  42323. bottom: 93/1947
  42324. }
  42325. },
  42326. back: {
  42327. height: math.unit(7, "feet"),
  42328. weight: math.unit(250, "lb"),
  42329. name: "Back",
  42330. image: {
  42331. source: "./media/characters/nines/back.svg",
  42332. extra: 1748/1615,
  42333. bottom: 20/1768
  42334. }
  42335. },
  42336. },
  42337. [
  42338. {
  42339. name: "Megamacro",
  42340. height: math.unit(99, "km"),
  42341. default: true
  42342. },
  42343. ]
  42344. ))
  42345. characterMakers.push(() => makeCharacter(
  42346. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42347. {
  42348. front: {
  42349. height: math.unit(5 + 10/12, "feet"),
  42350. weight: math.unit(210, "lb"),
  42351. name: "Front",
  42352. image: {
  42353. source: "./media/characters/zenith/front.svg",
  42354. extra: 1531/1452,
  42355. bottom: 198/1729
  42356. }
  42357. },
  42358. back: {
  42359. height: math.unit(5 + 10/12, "feet"),
  42360. weight: math.unit(210, "lb"),
  42361. name: "Back",
  42362. image: {
  42363. source: "./media/characters/zenith/back.svg",
  42364. extra: 1571/1487,
  42365. bottom: 75/1646
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Normal",
  42372. height: math.unit(5 + 10/12, "feet"),
  42373. default: true
  42374. }
  42375. ]
  42376. ))
  42377. characterMakers.push(() => makeCharacter(
  42378. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42379. {
  42380. front: {
  42381. height: math.unit(4, "feet"),
  42382. weight: math.unit(60, "lb"),
  42383. name: "Front",
  42384. image: {
  42385. source: "./media/characters/jasper/front.svg",
  42386. extra: 1450/1379,
  42387. bottom: 19/1469
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(4, "feet"),
  42395. default: true
  42396. },
  42397. ]
  42398. ))
  42399. characterMakers.push(() => makeCharacter(
  42400. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42401. {
  42402. front: {
  42403. height: math.unit(6 + 5/12, "feet"),
  42404. weight: math.unit(290, "lb"),
  42405. name: "Front",
  42406. image: {
  42407. source: "./media/characters/tiberius-thyben/front.svg",
  42408. extra: 757/739,
  42409. bottom: 39/796
  42410. }
  42411. },
  42412. },
  42413. [
  42414. {
  42415. name: "Micro",
  42416. height: math.unit(1.5, "inches")
  42417. },
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(6 + 5/12, "feet"),
  42421. default: true
  42422. },
  42423. {
  42424. name: "Macro",
  42425. height: math.unit(300, "feet")
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42431. {
  42432. front: {
  42433. height: math.unit(5 + 6/12, "feet"),
  42434. weight: math.unit(60, "kg"),
  42435. name: "Front",
  42436. image: {
  42437. source: "./media/characters/sabre/front.svg",
  42438. extra: 738/671,
  42439. bottom: 27/765
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Teeny",
  42446. height: math.unit(2, "inches")
  42447. },
  42448. {
  42449. name: "Smol",
  42450. height: math.unit(8, "inches")
  42451. },
  42452. {
  42453. name: "Normal",
  42454. height: math.unit(5 + 6/12, "feet"),
  42455. default: true
  42456. },
  42457. {
  42458. name: "Mini-Macro",
  42459. height: math.unit(15, "feet")
  42460. },
  42461. {
  42462. name: "Macro",
  42463. height: math.unit(50, "feet")
  42464. },
  42465. ]
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42469. {
  42470. front: {
  42471. height: math.unit(6 + 4/12, "feet"),
  42472. weight: math.unit(170, "lb"),
  42473. name: "Front",
  42474. image: {
  42475. source: "./media/characters/charlie/front.svg",
  42476. extra: 1348/1228,
  42477. bottom: 15/1363
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "Macro",
  42484. height: math.unit(1700, "meters"),
  42485. default: true
  42486. },
  42487. {
  42488. name: "MegaMacro",
  42489. height: math.unit(20400, "meters")
  42490. },
  42491. ]
  42492. ))
  42493. characterMakers.push(() => makeCharacter(
  42494. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42495. {
  42496. front: {
  42497. height: math.unit(6 + 3/12, "feet"),
  42498. weight: math.unit(185, "lb"),
  42499. name: "Front",
  42500. image: {
  42501. source: "./media/characters/susan-grant/front.svg",
  42502. extra: 1351/1327,
  42503. bottom: 26/1377
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Normal",
  42510. height: math.unit(6 + 3/12, "feet"),
  42511. default: true
  42512. },
  42513. {
  42514. name: "Macro",
  42515. height: math.unit(225, "feet")
  42516. },
  42517. {
  42518. name: "Macro+",
  42519. height: math.unit(900, "feet")
  42520. },
  42521. {
  42522. name: "MegaMacro",
  42523. height: math.unit(14400, "feet")
  42524. },
  42525. ]
  42526. ))
  42527. characterMakers.push(() => makeCharacter(
  42528. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42529. {
  42530. front: {
  42531. height: math.unit(5 + 4/12, "feet"),
  42532. weight: math.unit(110, "lb"),
  42533. name: "Front",
  42534. image: {
  42535. source: "./media/characters/axel-isanov/front.svg",
  42536. extra: 1096/1065,
  42537. bottom: 13/1109
  42538. }
  42539. },
  42540. },
  42541. [
  42542. {
  42543. name: "Normal",
  42544. height: math.unit(5 + 4/12, "feet"),
  42545. default: true
  42546. },
  42547. ]
  42548. ))
  42549. characterMakers.push(() => makeCharacter(
  42550. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42551. {
  42552. front: {
  42553. height: math.unit(9, "feet"),
  42554. weight: math.unit(467, "lb"),
  42555. name: "Front",
  42556. image: {
  42557. source: "./media/characters/necahual/front.svg",
  42558. extra: 920/873,
  42559. bottom: 26/946
  42560. }
  42561. },
  42562. back: {
  42563. height: math.unit(9, "feet"),
  42564. weight: math.unit(467, "lb"),
  42565. name: "Back",
  42566. image: {
  42567. source: "./media/characters/necahual/back.svg",
  42568. extra: 930/884,
  42569. bottom: 16/946
  42570. }
  42571. },
  42572. frontUnderwear: {
  42573. height: math.unit(9, "feet"),
  42574. weight: math.unit(467, "lb"),
  42575. name: "Front (Underwear)",
  42576. image: {
  42577. source: "./media/characters/necahual/front-underwear.svg",
  42578. extra: 920/873,
  42579. bottom: 26/946
  42580. }
  42581. },
  42582. frontDressed: {
  42583. height: math.unit(9, "feet"),
  42584. weight: math.unit(467, "lb"),
  42585. name: "Front (Dressed)",
  42586. image: {
  42587. source: "./media/characters/necahual/front-dressed.svg",
  42588. extra: 920/873,
  42589. bottom: 26/946
  42590. }
  42591. },
  42592. },
  42593. [
  42594. {
  42595. name: "Comprsesed",
  42596. height: math.unit(9, "feet")
  42597. },
  42598. {
  42599. name: "Natural",
  42600. height: math.unit(15, "feet"),
  42601. default: true
  42602. },
  42603. {
  42604. name: "Boosted",
  42605. height: math.unit(50, "feet")
  42606. },
  42607. {
  42608. name: "Boosted+",
  42609. height: math.unit(150, "feet")
  42610. },
  42611. {
  42612. name: "Max",
  42613. height: math.unit(500, "feet")
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42619. {
  42620. front: {
  42621. height: math.unit(22 + 1/12, "feet"),
  42622. weight: math.unit(3200, "lb"),
  42623. name: "Front",
  42624. image: {
  42625. source: "./media/characters/theo-acacia/front.svg",
  42626. extra: 1796/1741,
  42627. bottom: 83/1879
  42628. }
  42629. },
  42630. frontUnderwear: {
  42631. height: math.unit(22 + 1/12, "feet"),
  42632. weight: math.unit(3200, "lb"),
  42633. name: "Front (Underwear)",
  42634. image: {
  42635. source: "./media/characters/theo-acacia/front-underwear.svg",
  42636. extra: 1796/1741,
  42637. bottom: 83/1879
  42638. }
  42639. },
  42640. frontNude: {
  42641. height: math.unit(22 + 1/12, "feet"),
  42642. weight: math.unit(3200, "lb"),
  42643. name: "Front (Nude)",
  42644. image: {
  42645. source: "./media/characters/theo-acacia/front-nude.svg",
  42646. extra: 1796/1741,
  42647. bottom: 83/1879
  42648. }
  42649. },
  42650. },
  42651. [
  42652. {
  42653. name: "Normal",
  42654. height: math.unit(22 + 1/12, "feet"),
  42655. default: true
  42656. },
  42657. ]
  42658. ))
  42659. characterMakers.push(() => makeCharacter(
  42660. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42661. {
  42662. front: {
  42663. height: math.unit(20, "feet"),
  42664. name: "Front",
  42665. image: {
  42666. source: "./media/characters/astra/front.svg",
  42667. extra: 1850/1714,
  42668. bottom: 106/1956
  42669. }
  42670. },
  42671. frontUndressed: {
  42672. height: math.unit(20, "feet"),
  42673. name: "Front (Undressed)",
  42674. image: {
  42675. source: "./media/characters/astra/front-undressed.svg",
  42676. extra: 1926/1749,
  42677. bottom: 0/1926
  42678. }
  42679. },
  42680. hand: {
  42681. height: math.unit(1.53, "feet"),
  42682. name: "Hand",
  42683. image: {
  42684. source: "./media/characters/astra/hand.svg"
  42685. }
  42686. },
  42687. paw: {
  42688. height: math.unit(1.53, "feet"),
  42689. name: "Paw",
  42690. image: {
  42691. source: "./media/characters/astra/paw.svg"
  42692. }
  42693. },
  42694. },
  42695. [
  42696. {
  42697. name: "Smallest",
  42698. height: math.unit(20, "feet")
  42699. },
  42700. {
  42701. name: "Normal",
  42702. height: math.unit(1e9, "miles"),
  42703. default: true
  42704. },
  42705. {
  42706. name: "Larger",
  42707. height: math.unit(5, "multiverses")
  42708. },
  42709. {
  42710. name: "Largest",
  42711. height: math.unit(1e9, "multiverses")
  42712. },
  42713. ]
  42714. ))
  42715. characterMakers.push(() => makeCharacter(
  42716. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42717. {
  42718. front: {
  42719. height: math.unit(8, "feet"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/breanna/front.svg",
  42723. extra: 1912/1632,
  42724. bottom: 33/1945
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Smallest",
  42731. height: math.unit(8, "feet")
  42732. },
  42733. {
  42734. name: "Normal",
  42735. height: math.unit(1, "mile"),
  42736. default: true
  42737. },
  42738. {
  42739. name: "Maximum",
  42740. height: math.unit(1500000000000, "lightyears")
  42741. },
  42742. ]
  42743. ))
  42744. characterMakers.push(() => makeCharacter(
  42745. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42746. {
  42747. front: {
  42748. height: math.unit(5 + 11/12, "feet"),
  42749. weight: math.unit(155, "lb"),
  42750. name: "Front",
  42751. image: {
  42752. source: "./media/characters/cai/front.svg",
  42753. extra: 1823/1702,
  42754. bottom: 32/1855
  42755. }
  42756. },
  42757. back: {
  42758. height: math.unit(5 + 11/12, "feet"),
  42759. weight: math.unit(155, "lb"),
  42760. name: "Back",
  42761. image: {
  42762. source: "./media/characters/cai/back.svg",
  42763. extra: 1809/1708,
  42764. bottom: 31/1840
  42765. }
  42766. },
  42767. },
  42768. [
  42769. {
  42770. name: "Normal",
  42771. height: math.unit(5 + 11/12, "feet"),
  42772. default: true
  42773. },
  42774. {
  42775. name: "Big",
  42776. height: math.unit(15, "feet")
  42777. },
  42778. {
  42779. name: "Macro",
  42780. height: math.unit(200, "feet")
  42781. },
  42782. ]
  42783. ))
  42784. characterMakers.push(() => makeCharacter(
  42785. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42786. {
  42787. front: {
  42788. height: math.unit(5 + 6/12, "feet"),
  42789. weight: math.unit(160, "lb"),
  42790. name: "Front",
  42791. image: {
  42792. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42793. extra: 1227/1174,
  42794. bottom: 37/1264
  42795. }
  42796. },
  42797. },
  42798. [
  42799. {
  42800. name: "Macro",
  42801. height: math.unit(444, "meters"),
  42802. default: true
  42803. },
  42804. ]
  42805. ))
  42806. characterMakers.push(() => makeCharacter(
  42807. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42808. {
  42809. front: {
  42810. height: math.unit(18 + 7/12, "feet"),
  42811. name: "Front",
  42812. image: {
  42813. source: "./media/characters/rex/front.svg",
  42814. extra: 1941/1807,
  42815. bottom: 66/2007
  42816. }
  42817. },
  42818. back: {
  42819. height: math.unit(18 + 7/12, "feet"),
  42820. name: "Back",
  42821. image: {
  42822. source: "./media/characters/rex/back.svg",
  42823. extra: 1937/1822,
  42824. bottom: 42/1979
  42825. }
  42826. },
  42827. boot: {
  42828. height: math.unit(3.45, "feet"),
  42829. name: "Boot",
  42830. image: {
  42831. source: "./media/characters/rex/boot.svg"
  42832. }
  42833. },
  42834. paw: {
  42835. height: math.unit(4.17, "feet"),
  42836. name: "Paw",
  42837. image: {
  42838. source: "./media/characters/rex/paw.svg"
  42839. }
  42840. },
  42841. head: {
  42842. height: math.unit(6.728, "feet"),
  42843. name: "Head",
  42844. image: {
  42845. source: "./media/characters/rex/head.svg"
  42846. }
  42847. },
  42848. },
  42849. [
  42850. {
  42851. name: "Nano",
  42852. height: math.unit(18 + 7/12, "feet")
  42853. },
  42854. {
  42855. name: "Micro",
  42856. height: math.unit(1.5, "megameters")
  42857. },
  42858. {
  42859. name: "Normal",
  42860. height: math.unit(440, "megameters"),
  42861. default: true
  42862. },
  42863. {
  42864. name: "Macro",
  42865. height: math.unit(2.5, "gigameters")
  42866. },
  42867. {
  42868. name: "Gigamacro",
  42869. height: math.unit(2, "galaxies")
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42875. {
  42876. side: {
  42877. height: math.unit(32, "feet"),
  42878. weight: math.unit(250000, "lb"),
  42879. name: "Side",
  42880. image: {
  42881. source: "./media/characters/silverwing/side.svg",
  42882. extra: 1100/1019,
  42883. bottom: 204/1304
  42884. }
  42885. },
  42886. },
  42887. [
  42888. {
  42889. name: "Normal",
  42890. height: math.unit(32, "feet"),
  42891. default: true
  42892. },
  42893. ]
  42894. ))
  42895. characterMakers.push(() => makeCharacter(
  42896. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42897. {
  42898. front: {
  42899. height: math.unit(6 + 6/12, "feet"),
  42900. weight: math.unit(350, "lb"),
  42901. name: "Front",
  42902. image: {
  42903. source: "./media/characters/tristan-hawthorne/front.svg",
  42904. extra: 1159/1124,
  42905. bottom: 37/1196
  42906. },
  42907. form: "labrador",
  42908. default: true
  42909. },
  42910. skunkFront: {
  42911. height: math.unit(4 + 6/12, "feet"),
  42912. weight: math.unit(120, "lb"),
  42913. name: "Front",
  42914. image: {
  42915. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42916. extra: 1609/1551,
  42917. bottom: 169/1778
  42918. },
  42919. form: "skunk",
  42920. default: true
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(6 + 6/12, "feet"),
  42927. form: "labrador",
  42928. default: true
  42929. },
  42930. {
  42931. name: "Normal",
  42932. height: math.unit(4 + 6/12, "feet"),
  42933. form: "skunk",
  42934. default: true
  42935. },
  42936. ],
  42937. {
  42938. "labrador": {
  42939. name: "Labrador",
  42940. default: true
  42941. },
  42942. "skunk": {
  42943. name: "Skunk"
  42944. }
  42945. }
  42946. ))
  42947. characterMakers.push(() => makeCharacter(
  42948. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42949. {
  42950. front: {
  42951. height: math.unit(5 + 11/12, "feet"),
  42952. weight: math.unit(190, "lb"),
  42953. name: "Front",
  42954. image: {
  42955. source: "./media/characters/mizu/front.svg",
  42956. extra: 1988/1788,
  42957. bottom: 14/2002
  42958. }
  42959. },
  42960. },
  42961. [
  42962. {
  42963. name: "Normal",
  42964. height: math.unit(5 + 11/12, "feet"),
  42965. default: true
  42966. },
  42967. ]
  42968. ))
  42969. characterMakers.push(() => makeCharacter(
  42970. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42971. {
  42972. front: {
  42973. height: math.unit(1.7, "feet"),
  42974. weight: math.unit(50, "lb"),
  42975. name: "Front",
  42976. image: {
  42977. source: "./media/characters/dechroma/front.svg",
  42978. extra: 1095/859,
  42979. bottom: 64/1159
  42980. }
  42981. },
  42982. },
  42983. [
  42984. {
  42985. name: "Normal",
  42986. height: math.unit(1.7, "feet"),
  42987. default: true
  42988. },
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42993. {
  42994. side: {
  42995. height: math.unit(30, "feet"),
  42996. name: "Side",
  42997. image: {
  42998. source: "./media/characters/veluren-thanazel/side.svg",
  42999. extra: 1611/633,
  43000. bottom: 118/1729
  43001. }
  43002. },
  43003. front: {
  43004. height: math.unit(30, "feet"),
  43005. name: "Front",
  43006. image: {
  43007. source: "./media/characters/veluren-thanazel/front.svg",
  43008. extra: 1486/636,
  43009. bottom: 238/1724
  43010. }
  43011. },
  43012. head: {
  43013. height: math.unit(21.4, "feet"),
  43014. name: "Head",
  43015. image: {
  43016. source: "./media/characters/veluren-thanazel/head.svg"
  43017. }
  43018. },
  43019. genitals: {
  43020. height: math.unit(19.4, "feet"),
  43021. name: "Genitals",
  43022. image: {
  43023. source: "./media/characters/veluren-thanazel/genitals.svg"
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Social",
  43030. height: math.unit(6, "feet")
  43031. },
  43032. {
  43033. name: "Play",
  43034. height: math.unit(12, "feet")
  43035. },
  43036. {
  43037. name: "True",
  43038. height: math.unit(30, "feet"),
  43039. default: true
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43045. {
  43046. front: {
  43047. height: math.unit(7 + 6/12, "feet"),
  43048. weight: math.unit(500, "kg"),
  43049. name: "Front",
  43050. image: {
  43051. source: "./media/characters/arcturas/front.svg",
  43052. extra: 1700/1500,
  43053. bottom: 145/1845
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Normal",
  43060. height: math.unit(7 + 6/12, "feet"),
  43061. default: true
  43062. },
  43063. ]
  43064. ))
  43065. characterMakers.push(() => makeCharacter(
  43066. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43067. {
  43068. side: {
  43069. height: math.unit(6, "feet"),
  43070. weight: math.unit(2, "tons"),
  43071. name: "Side",
  43072. image: {
  43073. source: "./media/characters/vitaen/side.svg",
  43074. extra: 1157/617,
  43075. bottom: 122/1279
  43076. }
  43077. },
  43078. },
  43079. [
  43080. {
  43081. name: "Normal",
  43082. height: math.unit(6, "feet"),
  43083. default: true
  43084. },
  43085. ]
  43086. ))
  43087. characterMakers.push(() => makeCharacter(
  43088. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43089. {
  43090. front: {
  43091. height: math.unit(19, "feet"),
  43092. name: "Front",
  43093. image: {
  43094. source: "./media/characters/fia-dreamweaver/front.svg",
  43095. extra: 1630/1504,
  43096. bottom: 25/1655
  43097. }
  43098. },
  43099. },
  43100. [
  43101. {
  43102. name: "Normal",
  43103. height: math.unit(19, "feet"),
  43104. default: true
  43105. },
  43106. ]
  43107. ))
  43108. characterMakers.push(() => makeCharacter(
  43109. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43110. {
  43111. front: {
  43112. height: math.unit(5 + 4/12, "feet"),
  43113. name: "Front",
  43114. image: {
  43115. source: "./media/characters/artan/front.svg",
  43116. extra: 1618/1535,
  43117. bottom: 46/1664
  43118. }
  43119. },
  43120. back: {
  43121. height: math.unit(5 + 4/12, "feet"),
  43122. name: "Back",
  43123. image: {
  43124. source: "./media/characters/artan/back.svg",
  43125. extra: 1618/1543,
  43126. bottom: 31/1649
  43127. }
  43128. },
  43129. },
  43130. [
  43131. {
  43132. name: "Normal",
  43133. height: math.unit(5 + 4/12, "feet"),
  43134. default: true
  43135. },
  43136. ]
  43137. ))
  43138. characterMakers.push(() => makeCharacter(
  43139. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43140. {
  43141. side: {
  43142. height: math.unit(182, "cm"),
  43143. weight: math.unit(1000, "lb"),
  43144. name: "Side",
  43145. image: {
  43146. source: "./media/characters/silver-dragon/side.svg",
  43147. extra: 710/287,
  43148. bottom: 88/798
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Normal",
  43155. height: math.unit(182, "cm"),
  43156. default: true
  43157. },
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43162. {
  43163. side: {
  43164. height: math.unit(6 + 6/12, "feet"),
  43165. weight: math.unit(1.5, "tons"),
  43166. name: "Side",
  43167. image: {
  43168. source: "./media/characters/zephyr/side.svg",
  43169. extra: 1433/586,
  43170. bottom: 109/1542
  43171. }
  43172. },
  43173. },
  43174. [
  43175. {
  43176. name: "Normal",
  43177. height: math.unit(6 + 6/12, "feet"),
  43178. default: true
  43179. },
  43180. ]
  43181. ))
  43182. characterMakers.push(() => makeCharacter(
  43183. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43184. {
  43185. side: {
  43186. height: math.unit(1, "feet"),
  43187. name: "Side",
  43188. image: {
  43189. source: "./media/characters/vixye/side.svg",
  43190. extra: 632/541,
  43191. bottom: 0/632
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(1, "feet"),
  43199. default: true
  43200. },
  43201. {
  43202. name: "True",
  43203. height: math.unit(1e15, "multiverses")
  43204. },
  43205. ]
  43206. ))
  43207. characterMakers.push(() => makeCharacter(
  43208. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43209. {
  43210. front: {
  43211. height: math.unit(8 + 2/12, "feet"),
  43212. weight: math.unit(650, "lb"),
  43213. name: "Front",
  43214. image: {
  43215. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43216. extra: 1174/1137,
  43217. bottom: 82/1256
  43218. }
  43219. },
  43220. back: {
  43221. height: math.unit(8 + 2/12, "feet"),
  43222. weight: math.unit(650, "lb"),
  43223. name: "Back",
  43224. image: {
  43225. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43226. extra: 1204/1157,
  43227. bottom: 46/1250
  43228. }
  43229. },
  43230. },
  43231. [
  43232. {
  43233. name: "Wildform",
  43234. height: math.unit(8 + 2/12, "feet"),
  43235. default: true
  43236. },
  43237. ]
  43238. ))
  43239. characterMakers.push(() => makeCharacter(
  43240. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43241. {
  43242. front: {
  43243. height: math.unit(18, "feet"),
  43244. name: "Front",
  43245. image: {
  43246. source: "./media/characters/cyphin/front.svg",
  43247. extra: 970/886,
  43248. bottom: 42/1012
  43249. }
  43250. },
  43251. back: {
  43252. height: math.unit(18, "feet"),
  43253. name: "Back",
  43254. image: {
  43255. source: "./media/characters/cyphin/back.svg",
  43256. extra: 1009/894,
  43257. bottom: 24/1033
  43258. }
  43259. },
  43260. head: {
  43261. height: math.unit(5.05, "feet"),
  43262. name: "Head",
  43263. image: {
  43264. source: "./media/characters/cyphin/head.svg"
  43265. }
  43266. },
  43267. tailbud: {
  43268. height: math.unit(5, "feet"),
  43269. name: "Tailbud",
  43270. image: {
  43271. source: "./media/characters/cyphin/tailbud.svg"
  43272. }
  43273. },
  43274. },
  43275. [
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43280. {
  43281. side: {
  43282. height: math.unit(10, "feet"),
  43283. weight: math.unit(6, "tons"),
  43284. name: "Side",
  43285. image: {
  43286. source: "./media/characters/raijin/side.svg",
  43287. extra: 1529/613,
  43288. bottom: 337/1866
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Normal",
  43295. height: math.unit(10, "feet"),
  43296. default: true
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43302. {
  43303. side: {
  43304. height: math.unit(9, "feet"),
  43305. name: "Side",
  43306. image: {
  43307. source: "./media/characters/nilghais/side.svg",
  43308. extra: 1047/744,
  43309. bottom: 91/1138
  43310. }
  43311. },
  43312. head: {
  43313. height: math.unit(3.14, "feet"),
  43314. name: "Head",
  43315. image: {
  43316. source: "./media/characters/nilghais/head.svg"
  43317. }
  43318. },
  43319. mouth: {
  43320. height: math.unit(4.6, "feet"),
  43321. name: "Mouth",
  43322. image: {
  43323. source: "./media/characters/nilghais/mouth.svg"
  43324. }
  43325. },
  43326. wings: {
  43327. height: math.unit(24, "feet"),
  43328. name: "Wings",
  43329. image: {
  43330. source: "./media/characters/nilghais/wings.svg"
  43331. }
  43332. },
  43333. ass: {
  43334. height: math.unit(6.12, "feet"),
  43335. name: "Ass",
  43336. image: {
  43337. source: "./media/characters/nilghais/ass.svg"
  43338. }
  43339. },
  43340. },
  43341. [
  43342. {
  43343. name: "Normal",
  43344. height: math.unit(9, "feet"),
  43345. default: true
  43346. },
  43347. ]
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43351. {
  43352. regular: {
  43353. height: math.unit(16 + 2/12, "feet"),
  43354. weight: math.unit(2300, "lb"),
  43355. name: "Regular",
  43356. image: {
  43357. source: "./media/characters/zolgar/regular.svg",
  43358. extra: 1246/1004,
  43359. bottom: 124/1370
  43360. }
  43361. },
  43362. boxers: {
  43363. height: math.unit(16 + 2/12, "feet"),
  43364. weight: math.unit(2300, "lb"),
  43365. name: "Boxers",
  43366. image: {
  43367. source: "./media/characters/zolgar/boxers.svg",
  43368. extra: 1246/1004,
  43369. bottom: 124/1370
  43370. }
  43371. },
  43372. armored: {
  43373. height: math.unit(16 + 2/12, "feet"),
  43374. weight: math.unit(2300, "lb"),
  43375. name: "Armored",
  43376. image: {
  43377. source: "./media/characters/zolgar/armored.svg",
  43378. extra: 1246/1004,
  43379. bottom: 124/1370
  43380. }
  43381. },
  43382. goth: {
  43383. height: math.unit(16 + 2/12, "feet"),
  43384. weight: math.unit(2300, "lb"),
  43385. name: "Goth",
  43386. image: {
  43387. source: "./media/characters/zolgar/goth.svg",
  43388. extra: 1246/1004,
  43389. bottom: 124/1370
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Shrunken Down",
  43396. height: math.unit(9 + 2/12, "feet")
  43397. },
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(16 + 2/12, "feet"),
  43401. default: true
  43402. },
  43403. ]
  43404. ))
  43405. characterMakers.push(() => makeCharacter(
  43406. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43407. {
  43408. front: {
  43409. height: math.unit(6, "feet"),
  43410. weight: math.unit(168, "lb"),
  43411. name: "Front",
  43412. image: {
  43413. source: "./media/characters/luca/front.svg",
  43414. extra: 841/667,
  43415. bottom: 102/943
  43416. }
  43417. },
  43418. },
  43419. [
  43420. {
  43421. name: "Normal",
  43422. height: math.unit(6, "feet"),
  43423. default: true
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43429. {
  43430. side: {
  43431. height: math.unit(7 + 3/12, "feet"),
  43432. weight: math.unit(312, "lb"),
  43433. name: "Side",
  43434. image: {
  43435. source: "./media/characters/zezo/side.svg",
  43436. extra: 1192/1067,
  43437. bottom: 63/1255
  43438. }
  43439. },
  43440. },
  43441. [
  43442. {
  43443. name: "Normal",
  43444. height: math.unit(7 + 3/12, "feet"),
  43445. default: true
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43451. {
  43452. front: {
  43453. height: math.unit(5 + 5/12, "feet"),
  43454. weight: math.unit(170, "lb"),
  43455. name: "Front",
  43456. image: {
  43457. source: "./media/characters/mayso/front.svg",
  43458. extra: 1215/1108,
  43459. bottom: 16/1231
  43460. }
  43461. },
  43462. },
  43463. [
  43464. {
  43465. name: "Normal",
  43466. height: math.unit(5 + 5/12, "feet"),
  43467. default: true
  43468. },
  43469. ]
  43470. ))
  43471. characterMakers.push(() => makeCharacter(
  43472. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43473. {
  43474. front: {
  43475. height: math.unit(4 + 3/12, "feet"),
  43476. weight: math.unit(80, "lb"),
  43477. name: "Front",
  43478. image: {
  43479. source: "./media/characters/hess/front.svg",
  43480. extra: 1200/1123,
  43481. bottom: 16/1216
  43482. }
  43483. },
  43484. },
  43485. [
  43486. {
  43487. name: "Normal",
  43488. height: math.unit(4 + 3/12, "feet"),
  43489. default: true
  43490. },
  43491. ]
  43492. ))
  43493. characterMakers.push(() => makeCharacter(
  43494. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43495. {
  43496. front: {
  43497. height: math.unit(1.9, "meters"),
  43498. name: "Front",
  43499. image: {
  43500. source: "./media/characters/ashgar/front.svg",
  43501. extra: 1177/1146,
  43502. bottom: 99/1276
  43503. }
  43504. },
  43505. back: {
  43506. height: math.unit(1.9, "meters"),
  43507. name: "Back",
  43508. image: {
  43509. source: "./media/characters/ashgar/back.svg",
  43510. extra: 1201/1183,
  43511. bottom: 53/1254
  43512. }
  43513. },
  43514. feral: {
  43515. height: math.unit(1.4, "meters"),
  43516. name: "Feral",
  43517. image: {
  43518. source: "./media/characters/ashgar/feral.svg",
  43519. extra: 370/345,
  43520. bottom: 45/415
  43521. }
  43522. },
  43523. },
  43524. [
  43525. {
  43526. name: "Normal",
  43527. height: math.unit(1.9, "meters"),
  43528. default: true
  43529. },
  43530. ]
  43531. ))
  43532. characterMakers.push(() => makeCharacter(
  43533. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43534. {
  43535. regular: {
  43536. height: math.unit(6, "feet"),
  43537. weight: math.unit(220, "lb"),
  43538. name: "Regular",
  43539. image: {
  43540. source: "./media/characters/phillip/regular.svg",
  43541. extra: 1373/1277,
  43542. bottom: 75/1448
  43543. }
  43544. },
  43545. dressed: {
  43546. height: math.unit(6, "feet"),
  43547. weight: math.unit(220, "lb"),
  43548. name: "Dressed",
  43549. image: {
  43550. source: "./media/characters/phillip/dressed.svg",
  43551. extra: 1373/1277,
  43552. bottom: 75/1448
  43553. }
  43554. },
  43555. paw: {
  43556. height: math.unit(1.44, "feet"),
  43557. name: "Paw",
  43558. image: {
  43559. source: "./media/characters/phillip/paw.svg"
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(6, "feet"),
  43567. default: true
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43573. {
  43574. side: {
  43575. height: math.unit(42, "feet"),
  43576. name: "Side",
  43577. image: {
  43578. source: "./media/characters/uvula/side.svg",
  43579. extra: 683/586,
  43580. bottom: 60/743
  43581. }
  43582. },
  43583. front: {
  43584. height: math.unit(42, "feet"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/uvula/front.svg",
  43588. extra: 705/613,
  43589. bottom: 54/759
  43590. }
  43591. },
  43592. maw: {
  43593. height: math.unit(23.5, "feet"),
  43594. name: "Maw",
  43595. image: {
  43596. source: "./media/characters/uvula/maw.svg"
  43597. }
  43598. },
  43599. },
  43600. [
  43601. {
  43602. name: "Original Size",
  43603. height: math.unit(14, "inches")
  43604. },
  43605. {
  43606. name: "Human Size",
  43607. height: math.unit(6, "feet")
  43608. },
  43609. {
  43610. name: "Big",
  43611. height: math.unit(42, "feet"),
  43612. default: true
  43613. },
  43614. {
  43615. name: "Bigger",
  43616. height: math.unit(100, "feet")
  43617. },
  43618. ]
  43619. ))
  43620. characterMakers.push(() => makeCharacter(
  43621. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43622. {
  43623. front: {
  43624. height: math.unit(5 + 11/12, "feet"),
  43625. name: "Front",
  43626. image: {
  43627. source: "./media/characters/lannah/front.svg",
  43628. extra: 1208/1113,
  43629. bottom: 97/1305
  43630. }
  43631. },
  43632. },
  43633. [
  43634. {
  43635. name: "Normal",
  43636. height: math.unit(5 + 11/12, "feet"),
  43637. default: true
  43638. },
  43639. ]
  43640. ))
  43641. characterMakers.push(() => makeCharacter(
  43642. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43643. {
  43644. front: {
  43645. height: math.unit(6 + 3/12, "feet"),
  43646. weight: math.unit(3.5, "tons"),
  43647. name: "Front",
  43648. image: {
  43649. source: "./media/characters/emberflame/front.svg",
  43650. extra: 1198/672,
  43651. bottom: 82/1280
  43652. }
  43653. },
  43654. side: {
  43655. height: math.unit(6 + 3/12, "feet"),
  43656. weight: math.unit(3.5, "tons"),
  43657. name: "Side",
  43658. image: {
  43659. source: "./media/characters/emberflame/side.svg",
  43660. extra: 938/527,
  43661. bottom: 56/994
  43662. }
  43663. },
  43664. },
  43665. [
  43666. {
  43667. name: "Normal",
  43668. height: math.unit(6 + 3/12, "feet"),
  43669. default: true
  43670. },
  43671. ]
  43672. ))
  43673. characterMakers.push(() => makeCharacter(
  43674. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43675. {
  43676. side: {
  43677. height: math.unit(17.5, "feet"),
  43678. weight: math.unit(35, "tons"),
  43679. name: "Side",
  43680. image: {
  43681. source: "./media/characters/sophie-ambrose/side.svg",
  43682. extra: 1573/1242,
  43683. bottom: 71/1644
  43684. }
  43685. },
  43686. maw: {
  43687. height: math.unit(7.4, "feet"),
  43688. name: "Maw",
  43689. image: {
  43690. source: "./media/characters/sophie-ambrose/maw.svg"
  43691. }
  43692. },
  43693. },
  43694. [
  43695. {
  43696. name: "Normal",
  43697. height: math.unit(17.5, "feet"),
  43698. default: true
  43699. },
  43700. ]
  43701. ))
  43702. characterMakers.push(() => makeCharacter(
  43703. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43704. {
  43705. front: {
  43706. height: math.unit(280, "feet"),
  43707. weight: math.unit(550, "tons"),
  43708. name: "Front",
  43709. image: {
  43710. source: "./media/characters/king-mugi/front.svg",
  43711. extra: 1102/947,
  43712. bottom: 104/1206
  43713. }
  43714. },
  43715. },
  43716. [
  43717. {
  43718. name: "King Mugi",
  43719. height: math.unit(280, "feet"),
  43720. default: true
  43721. },
  43722. ]
  43723. ))
  43724. characterMakers.push(() => makeCharacter(
  43725. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43726. {
  43727. front: {
  43728. height: math.unit(64, "meters"),
  43729. name: "Front",
  43730. image: {
  43731. source: "./media/characters/nova-fox/front.svg",
  43732. extra: 1310/1246,
  43733. bottom: 65/1375
  43734. }
  43735. },
  43736. },
  43737. [
  43738. {
  43739. name: "Macro",
  43740. height: math.unit(64, "meters"),
  43741. default: true
  43742. },
  43743. ]
  43744. ))
  43745. characterMakers.push(() => makeCharacter(
  43746. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43747. {
  43748. front: {
  43749. height: math.unit(6 + 3/12, "feet"),
  43750. weight: math.unit(170, "lb"),
  43751. name: "Front",
  43752. image: {
  43753. source: "./media/characters/sam-bat/front.svg",
  43754. extra: 1601/1411,
  43755. bottom: 125/1726
  43756. }
  43757. },
  43758. back: {
  43759. height: math.unit(6 + 3/12, "feet"),
  43760. weight: math.unit(170, "lb"),
  43761. name: "Back",
  43762. image: {
  43763. source: "./media/characters/sam-bat/back.svg",
  43764. extra: 1577/1405,
  43765. bottom: 58/1635
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(6 + 3/12, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43779. {
  43780. front: {
  43781. height: math.unit(59, "feet"),
  43782. weight: math.unit(40000, "lb"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/inari/front.svg",
  43786. extra: 1884/1350,
  43787. bottom: 95/1979
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Gigantamax",
  43794. height: math.unit(59, "feet"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43801. {
  43802. front: {
  43803. height: math.unit(5 + 8/12, "feet"),
  43804. name: "Front",
  43805. image: {
  43806. source: "./media/characters/elizabeth/front.svg",
  43807. extra: 1395/1298,
  43808. bottom: 54/1449
  43809. }
  43810. },
  43811. mouth: {
  43812. height: math.unit(1.97, "feet"),
  43813. name: "Mouth",
  43814. image: {
  43815. source: "./media/characters/elizabeth/mouth.svg"
  43816. }
  43817. },
  43818. foot: {
  43819. height: math.unit(1.17, "feet"),
  43820. name: "Foot",
  43821. image: {
  43822. source: "./media/characters/elizabeth/foot.svg"
  43823. }
  43824. },
  43825. },
  43826. [
  43827. {
  43828. name: "Normal",
  43829. height: math.unit(5 + 8/12, "feet"),
  43830. default: true
  43831. },
  43832. {
  43833. name: "Minimacro",
  43834. height: math.unit(18, "feet")
  43835. },
  43836. {
  43837. name: "Macro",
  43838. height: math.unit(180, "feet")
  43839. },
  43840. ]
  43841. ))
  43842. characterMakers.push(() => makeCharacter(
  43843. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43844. {
  43845. front: {
  43846. height: math.unit(5 + 2/12, "feet"),
  43847. name: "Front",
  43848. image: {
  43849. source: "./media/characters/october-gossamer/front.svg",
  43850. extra: 505/454,
  43851. bottom: 7/512
  43852. }
  43853. },
  43854. back: {
  43855. height: math.unit(5 + 2/12, "feet"),
  43856. name: "Back",
  43857. image: {
  43858. source: "./media/characters/october-gossamer/back.svg",
  43859. extra: 501/454,
  43860. bottom: 11/512
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Normal",
  43867. height: math.unit(5 + 2/12, "feet"),
  43868. default: true
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43874. {
  43875. front: {
  43876. height: math.unit(5, "feet"),
  43877. name: "Front",
  43878. image: {
  43879. source: "./media/characters/epiglottis/front.svg",
  43880. extra: 923/849,
  43881. bottom: 17/940
  43882. }
  43883. },
  43884. },
  43885. [
  43886. {
  43887. name: "Original Size",
  43888. height: math.unit(10, "inches")
  43889. },
  43890. {
  43891. name: "Human Size",
  43892. height: math.unit(5, "feet"),
  43893. default: true
  43894. },
  43895. {
  43896. name: "Big",
  43897. height: math.unit(25, "feet")
  43898. },
  43899. {
  43900. name: "Bigger",
  43901. height: math.unit(50, "feet")
  43902. },
  43903. {
  43904. name: "oh lawd",
  43905. height: math.unit(75, "feet")
  43906. },
  43907. ]
  43908. ))
  43909. characterMakers.push(() => makeCharacter(
  43910. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43911. {
  43912. front: {
  43913. height: math.unit(2 + 4/12, "feet"),
  43914. weight: math.unit(60, "lb"),
  43915. name: "Front",
  43916. image: {
  43917. source: "./media/characters/lerm/front.svg",
  43918. extra: 796/790,
  43919. bottom: 79/875
  43920. }
  43921. },
  43922. },
  43923. [
  43924. {
  43925. name: "Normal",
  43926. height: math.unit(2 + 4/12, "feet"),
  43927. default: true
  43928. },
  43929. ]
  43930. ))
  43931. characterMakers.push(() => makeCharacter(
  43932. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43933. {
  43934. front: {
  43935. height: math.unit(5.5, "feet"),
  43936. weight: math.unit(130, "lb"),
  43937. name: "Front",
  43938. image: {
  43939. source: "./media/characters/xena-nebadon/front.svg",
  43940. extra: 1828/1730,
  43941. bottom: 79/1907
  43942. }
  43943. },
  43944. },
  43945. [
  43946. {
  43947. name: "Tiny Puppy",
  43948. height: math.unit(3, "inches")
  43949. },
  43950. {
  43951. name: "Normal",
  43952. height: math.unit(5.5, "feet"),
  43953. default: true
  43954. },
  43955. {
  43956. name: "Lotta Lady",
  43957. height: math.unit(12, "feet")
  43958. },
  43959. {
  43960. name: "Pretty Big",
  43961. height: math.unit(100, "feet")
  43962. },
  43963. {
  43964. name: "Big",
  43965. height: math.unit(500, "feet")
  43966. },
  43967. {
  43968. name: "Skyscraper Toys",
  43969. height: math.unit(2500, "feet")
  43970. },
  43971. {
  43972. name: "Plane Catcher",
  43973. height: math.unit(8, "miles")
  43974. },
  43975. {
  43976. name: "Planet Toys",
  43977. height: math.unit(15, "earths")
  43978. },
  43979. {
  43980. name: "Stardust",
  43981. height: math.unit(0.25, "galaxies")
  43982. },
  43983. {
  43984. name: "Snacks",
  43985. height: math.unit(70, "universes")
  43986. },
  43987. ]
  43988. ))
  43989. characterMakers.push(() => makeCharacter(
  43990. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43991. {
  43992. front: {
  43993. height: math.unit(1.6, "meters"),
  43994. weight: math.unit(60, "kg"),
  43995. name: "Front",
  43996. image: {
  43997. source: "./media/characters/bounty/front.svg",
  43998. extra: 1426/1308,
  43999. bottom: 15/1441
  44000. }
  44001. },
  44002. back: {
  44003. height: math.unit(1.6, "meters"),
  44004. weight: math.unit(60, "kg"),
  44005. name: "Back",
  44006. image: {
  44007. source: "./media/characters/bounty/back.svg",
  44008. extra: 1417/1307,
  44009. bottom: 8/1425
  44010. }
  44011. },
  44012. },
  44013. [
  44014. {
  44015. name: "Normal",
  44016. height: math.unit(1.6, "meters"),
  44017. default: true
  44018. },
  44019. {
  44020. name: "Macro",
  44021. height: math.unit(300, "meters")
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44027. {
  44028. front: {
  44029. height: math.unit(2 + 8/12, "feet"),
  44030. weight: math.unit(15, "lb"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/mochi/front.svg",
  44034. extra: 1022/852,
  44035. bottom: 435/1457
  44036. }
  44037. },
  44038. back: {
  44039. height: math.unit(2 + 8/12, "feet"),
  44040. weight: math.unit(15, "lb"),
  44041. name: "Back",
  44042. image: {
  44043. source: "./media/characters/mochi/back.svg",
  44044. extra: 1335/1119,
  44045. bottom: 39/1374
  44046. }
  44047. },
  44048. bird: {
  44049. height: math.unit(2 + 8/12, "feet"),
  44050. weight: math.unit(15, "lb"),
  44051. name: "Bird",
  44052. image: {
  44053. source: "./media/characters/mochi/bird.svg",
  44054. extra: 1251/1113,
  44055. bottom: 178/1429
  44056. }
  44057. },
  44058. kaiju: {
  44059. height: math.unit(154, "feet"),
  44060. weight: math.unit(1e7, "lb"),
  44061. name: "Kaiju",
  44062. image: {
  44063. source: "./media/characters/mochi/kaiju.svg",
  44064. extra: 460/324,
  44065. bottom: 40/500
  44066. }
  44067. },
  44068. head: {
  44069. height: math.unit(1.21, "feet"),
  44070. name: "Head",
  44071. image: {
  44072. source: "./media/characters/mochi/head.svg"
  44073. }
  44074. },
  44075. alternateTail: {
  44076. height: math.unit(2 + 8/12, "feet"),
  44077. weight: math.unit(45, "lb"),
  44078. name: "Alternate Tail",
  44079. image: {
  44080. source: "./media/characters/mochi/alternate-tail.svg",
  44081. extra: 139/76,
  44082. bottom: 45/184
  44083. }
  44084. },
  44085. },
  44086. [
  44087. {
  44088. name: "Micro",
  44089. height: math.unit(2, "inches")
  44090. },
  44091. {
  44092. name: "Normal",
  44093. height: math.unit(2 + 8/12, "feet"),
  44094. default: true
  44095. },
  44096. {
  44097. name: "Macro",
  44098. height: math.unit(106, "feet")
  44099. },
  44100. ]
  44101. ))
  44102. characterMakers.push(() => makeCharacter(
  44103. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44104. {
  44105. front: {
  44106. height: math.unit(5.67, "feet"),
  44107. weight: math.unit(135, "lb"),
  44108. name: "Front",
  44109. image: {
  44110. source: "./media/characters/sarel/front.svg",
  44111. extra: 865/788,
  44112. bottom: 97/962
  44113. }
  44114. },
  44115. back: {
  44116. height: math.unit(5.67, "feet"),
  44117. weight: math.unit(135, "lb"),
  44118. name: "Back",
  44119. image: {
  44120. source: "./media/characters/sarel/back.svg",
  44121. extra: 857/777,
  44122. bottom: 32/889
  44123. }
  44124. },
  44125. chozoan: {
  44126. height: math.unit(5.67, "feet"),
  44127. weight: math.unit(135, "lb"),
  44128. name: "Chozoan",
  44129. image: {
  44130. source: "./media/characters/sarel/chozoan.svg",
  44131. extra: 865/788,
  44132. bottom: 97/962
  44133. }
  44134. },
  44135. current: {
  44136. height: math.unit(5.67, "feet"),
  44137. weight: math.unit(135, "lb"),
  44138. name: "Current",
  44139. image: {
  44140. source: "./media/characters/sarel/current.svg",
  44141. extra: 865/788,
  44142. bottom: 97/962
  44143. }
  44144. },
  44145. head: {
  44146. height: math.unit(1.77, "feet"),
  44147. name: "Head",
  44148. image: {
  44149. source: "./media/characters/sarel/head.svg"
  44150. }
  44151. },
  44152. claws: {
  44153. height: math.unit(1.8, "feet"),
  44154. name: "Claws",
  44155. image: {
  44156. source: "./media/characters/sarel/claws.svg"
  44157. }
  44158. },
  44159. clawsAlt: {
  44160. height: math.unit(1.8, "feet"),
  44161. name: "Claws-alt",
  44162. image: {
  44163. source: "./media/characters/sarel/claws-alt.svg"
  44164. }
  44165. },
  44166. },
  44167. [
  44168. {
  44169. name: "Normal",
  44170. height: math.unit(5.67, "feet"),
  44171. default: true
  44172. },
  44173. ]
  44174. ))
  44175. characterMakers.push(() => makeCharacter(
  44176. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44177. {
  44178. front: {
  44179. height: math.unit(5500, "feet"),
  44180. name: "Front",
  44181. image: {
  44182. source: "./media/characters/alyonia/front.svg",
  44183. extra: 1200/1135,
  44184. bottom: 29/1229
  44185. }
  44186. },
  44187. back: {
  44188. height: math.unit(5500, "feet"),
  44189. name: "Back",
  44190. image: {
  44191. source: "./media/characters/alyonia/back.svg",
  44192. extra: 1205/1138,
  44193. bottom: 10/1215
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Small",
  44200. height: math.unit(10, "feet")
  44201. },
  44202. {
  44203. name: "Macro",
  44204. height: math.unit(500, "feet")
  44205. },
  44206. {
  44207. name: "Mega Macro",
  44208. height: math.unit(5500, "feet"),
  44209. default: true
  44210. },
  44211. {
  44212. name: "Mega Macro+",
  44213. height: math.unit(500000, "feet")
  44214. },
  44215. {
  44216. name: "Giga Macro",
  44217. height: math.unit(3000, "miles")
  44218. },
  44219. {
  44220. name: "Tera Macro",
  44221. height: math.unit(2.8e6, "miles")
  44222. },
  44223. {
  44224. name: "Galactic",
  44225. height: math.unit(120000, "lightyears")
  44226. },
  44227. ]
  44228. ))
  44229. characterMakers.push(() => makeCharacter(
  44230. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44231. {
  44232. werewolf: {
  44233. height: math.unit(8, "feet"),
  44234. weight: math.unit(425, "lb"),
  44235. name: "Werewolf",
  44236. image: {
  44237. source: "./media/characters/autumn/werewolf.svg",
  44238. extra: 2154/2031,
  44239. bottom: 160/2314
  44240. }
  44241. },
  44242. human: {
  44243. height: math.unit(5 + 8/12, "feet"),
  44244. weight: math.unit(150, "lb"),
  44245. name: "Human",
  44246. image: {
  44247. source: "./media/characters/autumn/human.svg",
  44248. extra: 1200/1149,
  44249. bottom: 30/1230
  44250. }
  44251. },
  44252. },
  44253. [
  44254. {
  44255. name: "Normal",
  44256. height: math.unit(8, "feet"),
  44257. default: true
  44258. },
  44259. ]
  44260. ))
  44261. characterMakers.push(() => makeCharacter(
  44262. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44263. {
  44264. front: {
  44265. height: math.unit(8 + 5/12, "feet"),
  44266. weight: math.unit(825, "lb"),
  44267. name: "Front",
  44268. image: {
  44269. source: "./media/characters/cobalt-charizard/front.svg",
  44270. extra: 1268/1155,
  44271. bottom: 122/1390
  44272. }
  44273. },
  44274. side: {
  44275. height: math.unit(8 + 5/12, "feet"),
  44276. weight: math.unit(825, "lb"),
  44277. name: "Side",
  44278. image: {
  44279. source: "./media/characters/cobalt-charizard/side.svg",
  44280. extra: 1348/1257,
  44281. bottom: 58/1406
  44282. }
  44283. },
  44284. gMax: {
  44285. height: math.unit(134 + 11/12, "feet"),
  44286. name: "G-Max",
  44287. image: {
  44288. source: "./media/characters/cobalt-charizard/g-max.svg",
  44289. extra: 1835/1541,
  44290. bottom: 151/1986
  44291. }
  44292. },
  44293. },
  44294. [
  44295. {
  44296. name: "Normal",
  44297. height: math.unit(8 + 5/12, "feet"),
  44298. default: true
  44299. },
  44300. ]
  44301. ))
  44302. characterMakers.push(() => makeCharacter(
  44303. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44304. {
  44305. front: {
  44306. height: math.unit(6 + 3/12, "feet"),
  44307. weight: math.unit(210, "lb"),
  44308. name: "Front",
  44309. image: {
  44310. source: "./media/characters/stella/front.svg",
  44311. extra: 3549/3335,
  44312. bottom: 51/3600
  44313. }
  44314. },
  44315. },
  44316. [
  44317. {
  44318. name: "Normal",
  44319. height: math.unit(6 + 3/12, "feet"),
  44320. default: true
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(5, "feet"),
  44329. weight: math.unit(90, "lb"),
  44330. name: "Front",
  44331. image: {
  44332. source: "./media/characters/riley-bishop/front.svg",
  44333. extra: 1450/1428,
  44334. bottom: 152/1602
  44335. }
  44336. },
  44337. },
  44338. [
  44339. {
  44340. name: "Normal",
  44341. height: math.unit(5, "feet"),
  44342. default: true
  44343. },
  44344. ]
  44345. ))
  44346. characterMakers.push(() => makeCharacter(
  44347. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44348. {
  44349. side: {
  44350. height: math.unit(8 + 2/12, "feet"),
  44351. weight: math.unit(500, "kg"),
  44352. name: "Side",
  44353. image: {
  44354. source: "./media/characters/theo-arcanine/side.svg",
  44355. extra: 1342/1074,
  44356. bottom: 111/1453
  44357. }
  44358. },
  44359. },
  44360. [
  44361. {
  44362. name: "Normal",
  44363. height: math.unit(8 + 2/12, "feet"),
  44364. default: true
  44365. },
  44366. ]
  44367. ))
  44368. characterMakers.push(() => makeCharacter(
  44369. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44370. {
  44371. front: {
  44372. height: math.unit(4, "feet"),
  44373. name: "Front",
  44374. image: {
  44375. source: "./media/characters/kali/front.svg",
  44376. extra: 1921/1357,
  44377. bottom: 70/1991
  44378. }
  44379. },
  44380. },
  44381. [
  44382. {
  44383. name: "Normal",
  44384. height: math.unit(4, "feet"),
  44385. default: true
  44386. },
  44387. {
  44388. name: "Macro",
  44389. height: math.unit(32, "meters")
  44390. },
  44391. {
  44392. name: "Macro+",
  44393. height: math.unit(150, "meters")
  44394. },
  44395. {
  44396. name: "Megamacro",
  44397. height: math.unit(7500, "meters")
  44398. },
  44399. {
  44400. name: "Megamacro+",
  44401. height: math.unit(80, "kilometers")
  44402. },
  44403. ]
  44404. ))
  44405. characterMakers.push(() => makeCharacter(
  44406. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44407. {
  44408. side: {
  44409. height: math.unit(5 + 11/12, "feet"),
  44410. weight: math.unit(236, "lb"),
  44411. name: "Side",
  44412. image: {
  44413. source: "./media/characters/gapp/side.svg",
  44414. extra: 775/340,
  44415. bottom: 58/833
  44416. }
  44417. },
  44418. mouth: {
  44419. height: math.unit(2.98, "feet"),
  44420. name: "Mouth",
  44421. image: {
  44422. source: "./media/characters/gapp/mouth.svg"
  44423. }
  44424. },
  44425. },
  44426. [
  44427. {
  44428. name: "Normal",
  44429. height: math.unit(5 + 1/12, "feet"),
  44430. default: true
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44436. {
  44437. front: {
  44438. height: math.unit(6, "feet"),
  44439. name: "Front",
  44440. image: {
  44441. source: "./media/characters/persephone/front.svg",
  44442. extra: 1895/1717,
  44443. bottom: 96/1991
  44444. }
  44445. },
  44446. back: {
  44447. height: math.unit(6, "feet"),
  44448. name: "Back",
  44449. image: {
  44450. source: "./media/characters/persephone/back.svg",
  44451. extra: 1868/1679,
  44452. bottom: 26/1894
  44453. }
  44454. },
  44455. casual: {
  44456. height: math.unit(6, "feet"),
  44457. name: "Casual",
  44458. image: {
  44459. source: "./media/characters/persephone/casual.svg",
  44460. extra: 1713/1541,
  44461. bottom: 76/1789
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Human Size",
  44468. height: math.unit(6, "feet")
  44469. },
  44470. {
  44471. name: "Big Steppy",
  44472. height: math.unit(600, "meters"),
  44473. default: true
  44474. },
  44475. {
  44476. name: "Galaxy Brain",
  44477. height: math.unit(1, "zettameter")
  44478. },
  44479. ]
  44480. ))
  44481. characterMakers.push(() => makeCharacter(
  44482. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44483. {
  44484. front: {
  44485. height: math.unit(1.85, "meters"),
  44486. name: "Front",
  44487. image: {
  44488. source: "./media/characters/riley-foxthing/front.svg",
  44489. extra: 1495/1354,
  44490. bottom: 122/1617
  44491. }
  44492. },
  44493. frontAlt: {
  44494. height: math.unit(1.85, "meters"),
  44495. name: "Front (Alt)",
  44496. image: {
  44497. source: "./media/characters/riley-foxthing/front-alt.svg",
  44498. extra: 1572/1389,
  44499. bottom: 116/1688
  44500. }
  44501. },
  44502. },
  44503. [
  44504. {
  44505. name: "Normal Sized",
  44506. height: math.unit(1.85, "meters"),
  44507. default: true
  44508. },
  44509. {
  44510. name: "Quite Sizable",
  44511. height: math.unit(5, "meters")
  44512. },
  44513. {
  44514. name: "Rather Large",
  44515. height: math.unit(20, "meters")
  44516. },
  44517. {
  44518. name: "Macro",
  44519. height: math.unit(450, "meters")
  44520. },
  44521. {
  44522. name: "Giga",
  44523. height: math.unit(5, "km")
  44524. },
  44525. ]
  44526. ))
  44527. characterMakers.push(() => makeCharacter(
  44528. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44529. {
  44530. front: {
  44531. height: math.unit(6, "feet"),
  44532. weight: math.unit(200, "lb"),
  44533. name: "Front",
  44534. image: {
  44535. source: "./media/characters/blizzard/front.svg",
  44536. extra: 1136/990,
  44537. bottom: 136/1272
  44538. }
  44539. },
  44540. back: {
  44541. height: math.unit(6, "feet"),
  44542. weight: math.unit(200, "lb"),
  44543. name: "Back",
  44544. image: {
  44545. source: "./media/characters/blizzard/back.svg",
  44546. extra: 1175/1034,
  44547. bottom: 97/1272
  44548. }
  44549. },
  44550. sitting: {
  44551. height: math.unit(3.725, "feet"),
  44552. weight: math.unit(200, "lb"),
  44553. name: "Sitting",
  44554. image: {
  44555. source: "./media/characters/blizzard/sitting.svg",
  44556. extra: 581/485,
  44557. bottom: 90/671
  44558. }
  44559. },
  44560. frontWizard: {
  44561. height: math.unit(7.9, "feet"),
  44562. weight: math.unit(200, "lb"),
  44563. name: "Front (Wizard)",
  44564. image: {
  44565. source: "./media/characters/blizzard/front-wizard.svg"
  44566. }
  44567. },
  44568. backWizard: {
  44569. height: math.unit(7.9, "feet"),
  44570. weight: math.unit(200, "lb"),
  44571. name: "Back (Wizard)",
  44572. image: {
  44573. source: "./media/characters/blizzard/back-wizard.svg"
  44574. }
  44575. },
  44576. frontNsfw: {
  44577. height: math.unit(6, "feet"),
  44578. weight: math.unit(200, "lb"),
  44579. name: "Front (NSFW)",
  44580. image: {
  44581. source: "./media/characters/blizzard/front-nsfw.svg",
  44582. extra: 1136/990,
  44583. bottom: 136/1272
  44584. }
  44585. },
  44586. backNsfw: {
  44587. height: math.unit(6, "feet"),
  44588. weight: math.unit(200, "lb"),
  44589. name: "Back (NSFW)",
  44590. image: {
  44591. source: "./media/characters/blizzard/back-nsfw.svg",
  44592. extra: 1175/1034,
  44593. bottom: 97/1272
  44594. }
  44595. },
  44596. sittingNsfw: {
  44597. height: math.unit(3.725, "feet"),
  44598. weight: math.unit(200, "lb"),
  44599. name: "Sitting (NSFW)",
  44600. image: {
  44601. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44602. extra: 581/485,
  44603. bottom: 90/671
  44604. }
  44605. },
  44606. wizardFrontNsfw: {
  44607. height: math.unit(7.9, "feet"),
  44608. weight: math.unit(200, "lb"),
  44609. name: "Wizard (Front, NSFW)",
  44610. image: {
  44611. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44612. }
  44613. },
  44614. },
  44615. [
  44616. {
  44617. name: "Normal",
  44618. height: math.unit(6, "feet"),
  44619. default: true
  44620. },
  44621. ]
  44622. ))
  44623. characterMakers.push(() => makeCharacter(
  44624. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44625. {
  44626. front: {
  44627. height: math.unit(5 + 2/12, "feet"),
  44628. name: "Front",
  44629. image: {
  44630. source: "./media/characters/lumi/front.svg",
  44631. extra: 1328/1268,
  44632. bottom: 103/1431
  44633. }
  44634. },
  44635. back: {
  44636. height: math.unit(5 + 2/12, "feet"),
  44637. name: "Back",
  44638. image: {
  44639. source: "./media/characters/lumi/back.svg",
  44640. extra: 1381/1327,
  44641. bottom: 43/1424
  44642. }
  44643. },
  44644. },
  44645. [
  44646. {
  44647. name: "Normal",
  44648. height: math.unit(5 + 2/12, "feet"),
  44649. default: true
  44650. },
  44651. ]
  44652. ))
  44653. characterMakers.push(() => makeCharacter(
  44654. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44655. {
  44656. front: {
  44657. height: math.unit(5 + 9/12, "feet"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/aliya-cotton/front.svg",
  44661. extra: 577/564,
  44662. bottom: 29/606
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(5 + 9/12, "feet"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44676. {
  44677. front: {
  44678. height: math.unit(2.7, "meters"),
  44679. weight: math.unit(25000, "lb"),
  44680. name: "Front",
  44681. image: {
  44682. source: "./media/characters/noah-luxray/front.svg",
  44683. extra: 1644/825,
  44684. bottom: 339/1983
  44685. }
  44686. },
  44687. side: {
  44688. height: math.unit(2.97, "meters"),
  44689. weight: math.unit(25000, "lb"),
  44690. name: "Side",
  44691. image: {
  44692. source: "./media/characters/noah-luxray/side.svg",
  44693. extra: 1319/650,
  44694. bottom: 163/1482
  44695. }
  44696. },
  44697. dick: {
  44698. height: math.unit(7.4, "feet"),
  44699. weight: math.unit(2500, "lb"),
  44700. name: "Dick",
  44701. image: {
  44702. source: "./media/characters/noah-luxray/dick.svg"
  44703. }
  44704. },
  44705. dickAlt: {
  44706. height: math.unit(10.83, "feet"),
  44707. weight: math.unit(2500, "lb"),
  44708. name: "Dick-alt",
  44709. image: {
  44710. source: "./media/characters/noah-luxray/dick-alt.svg"
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "BIG",
  44717. height: math.unit(2.7, "meters"),
  44718. default: true
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44724. {
  44725. standing: {
  44726. height: math.unit(183, "cm"),
  44727. weight: math.unit(68, "kg"),
  44728. name: "Standing",
  44729. image: {
  44730. source: "./media/characters/arion/standing.svg",
  44731. extra: 1869/1807,
  44732. bottom: 93/1962
  44733. }
  44734. },
  44735. reclining: {
  44736. height: math.unit(70.5, "cm"),
  44737. weight: math.unit(68, "lb"),
  44738. name: "Reclining",
  44739. image: {
  44740. source: "./media/characters/arion/reclining.svg",
  44741. extra: 937/870,
  44742. bottom: 63/1000
  44743. }
  44744. },
  44745. },
  44746. [
  44747. {
  44748. name: "Colossus Size, Low",
  44749. height: math.unit(33, "meters"),
  44750. default: true
  44751. },
  44752. {
  44753. name: "Colossus Size, Mid",
  44754. height: math.unit(52, "meters")
  44755. },
  44756. {
  44757. name: "Colossus Size, High",
  44758. height: math.unit(60, "meters")
  44759. },
  44760. {
  44761. name: "Titan Size, Low",
  44762. height: math.unit(91, "meters"),
  44763. },
  44764. {
  44765. name: "Titan Size, Mid",
  44766. height: math.unit(122, "meters")
  44767. },
  44768. {
  44769. name: "Titan Size, High",
  44770. height: math.unit(162, "meters")
  44771. },
  44772. ]
  44773. ))
  44774. characterMakers.push(() => makeCharacter(
  44775. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44776. {
  44777. front: {
  44778. height: math.unit(53, "meters"),
  44779. name: "Front",
  44780. image: {
  44781. source: "./media/characters/stellar-marbey/front.svg",
  44782. extra: 1913/1805,
  44783. bottom: 92/2005
  44784. }
  44785. },
  44786. back: {
  44787. height: math.unit(53, "meters"),
  44788. name: "Back",
  44789. image: {
  44790. source: "./media/characters/stellar-marbey/back.svg",
  44791. extra: 1960/1851,
  44792. bottom: 28/1988
  44793. }
  44794. },
  44795. mouth: {
  44796. height: math.unit(3.5, "meters"),
  44797. name: "Mouth",
  44798. image: {
  44799. source: "./media/characters/stellar-marbey/mouth.svg"
  44800. }
  44801. },
  44802. },
  44803. [
  44804. {
  44805. name: "Macro",
  44806. height: math.unit(53, "meters"),
  44807. default: true
  44808. },
  44809. ]
  44810. ))
  44811. characterMakers.push(() => makeCharacter(
  44812. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44813. {
  44814. front: {
  44815. height: math.unit(8 + 1/12, "feet"),
  44816. weight: math.unit(233, "lb"),
  44817. name: "Front",
  44818. image: {
  44819. source: "./media/characters/matsu/front.svg",
  44820. extra: 832/772,
  44821. bottom: 40/872
  44822. }
  44823. },
  44824. back: {
  44825. height: math.unit(8 + 1/12, "feet"),
  44826. weight: math.unit(233, "lb"),
  44827. name: "Back",
  44828. image: {
  44829. source: "./media/characters/matsu/back.svg",
  44830. extra: 839/780,
  44831. bottom: 47/886
  44832. }
  44833. },
  44834. },
  44835. [
  44836. {
  44837. name: "Normal",
  44838. height: math.unit(8 + 1/12, "feet"),
  44839. default: true
  44840. },
  44841. ]
  44842. ))
  44843. characterMakers.push(() => makeCharacter(
  44844. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44845. {
  44846. front: {
  44847. height: math.unit(4, "feet"),
  44848. weight: math.unit(148, "lb"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/thiz/front.svg",
  44852. extra: 1913/1748,
  44853. bottom: 62/1975
  44854. }
  44855. },
  44856. },
  44857. [
  44858. {
  44859. name: "Normal",
  44860. height: math.unit(4, "feet"),
  44861. default: true
  44862. },
  44863. ]
  44864. ))
  44865. characterMakers.push(() => makeCharacter(
  44866. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44867. {
  44868. front: {
  44869. height: math.unit(7 + 6/12, "feet"),
  44870. weight: math.unit(267, "lb"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/marcel/front.svg",
  44874. extra: 1221/1096,
  44875. bottom: 76/1297
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(7 + 6/12, "feet"),
  44883. default: true
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44889. {
  44890. side: {
  44891. height: math.unit(42, "meters"),
  44892. name: "Side",
  44893. image: {
  44894. source: "./media/characters/flake/side.svg",
  44895. extra: 1525/1306,
  44896. bottom: 209/1734
  44897. }
  44898. },
  44899. },
  44900. [
  44901. {
  44902. name: "Normal",
  44903. height: math.unit(42, "meters"),
  44904. default: true
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44910. {
  44911. dressed: {
  44912. height: math.unit(6 + 4/12, "feet"),
  44913. weight: math.unit(520, "lb"),
  44914. name: "Dressed",
  44915. image: {
  44916. source: "./media/characters/someonne/dressed.svg",
  44917. extra: 1020/1010,
  44918. bottom: 178/1198
  44919. }
  44920. },
  44921. undressed: {
  44922. height: math.unit(6 + 4/12, "feet"),
  44923. weight: math.unit(520, "lb"),
  44924. name: "Undressed",
  44925. image: {
  44926. source: "./media/characters/someonne/undressed.svg",
  44927. extra: 1019/1014,
  44928. bottom: 169/1188
  44929. }
  44930. },
  44931. },
  44932. [
  44933. {
  44934. name: "Normal",
  44935. height: math.unit(6 + 4/12, "feet"),
  44936. default: true
  44937. },
  44938. ]
  44939. ))
  44940. characterMakers.push(() => makeCharacter(
  44941. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44942. {
  44943. front: {
  44944. height: math.unit(3, "feet"),
  44945. weight: math.unit(30, "lb"),
  44946. name: "Front",
  44947. image: {
  44948. source: "./media/characters/till/front.svg",
  44949. extra: 892/823,
  44950. bottom: 55/947
  44951. }
  44952. },
  44953. },
  44954. [
  44955. {
  44956. name: "Normal",
  44957. height: math.unit(3, "feet"),
  44958. default: true
  44959. },
  44960. ]
  44961. ))
  44962. characterMakers.push(() => makeCharacter(
  44963. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44964. {
  44965. front: {
  44966. height: math.unit(9 + 8/12, "feet"),
  44967. weight: math.unit(800, "lb"),
  44968. name: "Front",
  44969. image: {
  44970. source: "./media/characters/sydney-heki/front.svg",
  44971. extra: 1360/1300,
  44972. bottom: 22/1382
  44973. }
  44974. },
  44975. back: {
  44976. height: math.unit(9 + 8/12, "feet"),
  44977. weight: math.unit(800, "lb"),
  44978. name: "Back",
  44979. image: {
  44980. source: "./media/characters/sydney-heki/back.svg",
  44981. extra: 1356/1293,
  44982. bottom: 12/1368
  44983. }
  44984. },
  44985. frontDressed: {
  44986. height: math.unit(9 + 8/12, "feet"),
  44987. weight: math.unit(800, "lb"),
  44988. name: "Front-dressed",
  44989. image: {
  44990. source: "./media/characters/sydney-heki/front-dressed.svg",
  44991. extra: 1360/1300,
  44992. bottom: 22/1382
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(9 + 8/12, "feet"),
  45000. default: true
  45001. },
  45002. {
  45003. name: "Macro",
  45004. height: math.unit(500, "feet")
  45005. },
  45006. {
  45007. name: "Megamacro",
  45008. height: math.unit(3.6, "miles")
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45014. {
  45015. front: {
  45016. height: math.unit(200, "cm"),
  45017. weight: math.unit(250, "lb"),
  45018. name: "Front",
  45019. image: {
  45020. source: "./media/characters/fowler-karlsson/front.svg",
  45021. extra: 897/845,
  45022. bottom: 123/1020
  45023. }
  45024. },
  45025. back: {
  45026. height: math.unit(200, "cm"),
  45027. weight: math.unit(250, "lb"),
  45028. name: "Back",
  45029. image: {
  45030. source: "./media/characters/fowler-karlsson/back.svg",
  45031. extra: 999/944,
  45032. bottom: 26/1025
  45033. }
  45034. },
  45035. dick: {
  45036. height: math.unit(1.92, "feet"),
  45037. weight: math.unit(150, "lb"),
  45038. name: "Dick",
  45039. image: {
  45040. source: "./media/characters/fowler-karlsson/dick.svg"
  45041. }
  45042. },
  45043. },
  45044. [
  45045. {
  45046. name: "Normal",
  45047. height: math.unit(200, "cm"),
  45048. default: true
  45049. },
  45050. {
  45051. name: "Smaller Macro",
  45052. height: math.unit(90, "m")
  45053. },
  45054. {
  45055. name: "Macro",
  45056. height: math.unit(150, "m")
  45057. },
  45058. {
  45059. name: "Bigger Macro",
  45060. height: math.unit(300, "m")
  45061. },
  45062. ]
  45063. ))
  45064. characterMakers.push(() => makeCharacter(
  45065. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45066. {
  45067. side: {
  45068. height: math.unit(8 + 2/12, "feet"),
  45069. weight: math.unit(1, "tonne"),
  45070. name: "Side",
  45071. image: {
  45072. source: "./media/characters/rylide/side.svg",
  45073. extra: 1318/1034,
  45074. bottom: 106/1424
  45075. }
  45076. },
  45077. sitting: {
  45078. height: math.unit(303, "cm"),
  45079. weight: math.unit(1, "tonne"),
  45080. name: "Sitting",
  45081. image: {
  45082. source: "./media/characters/rylide/sitting.svg",
  45083. extra: 1303/1103,
  45084. bottom: 36/1339
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(8 + 2/12, "feet"),
  45092. default: true
  45093. },
  45094. ]
  45095. ))
  45096. characterMakers.push(() => makeCharacter(
  45097. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45098. {
  45099. front: {
  45100. height: math.unit(5 + 10/12, "feet"),
  45101. weight: math.unit(160, "lb"),
  45102. name: "Front",
  45103. image: {
  45104. source: "./media/characters/pudask/front.svg",
  45105. extra: 1616/1590,
  45106. bottom: 161/1777
  45107. }
  45108. },
  45109. },
  45110. [
  45111. {
  45112. name: "Ferret Height",
  45113. height: math.unit(2 + 5/12, "feet")
  45114. },
  45115. {
  45116. name: "Canon Height",
  45117. height: math.unit(5 + 10/12, "feet"),
  45118. default: true
  45119. },
  45120. ]
  45121. ))
  45122. characterMakers.push(() => makeCharacter(
  45123. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45124. {
  45125. front: {
  45126. height: math.unit(3 + 6/12, "feet"),
  45127. weight: math.unit(60, "lb"),
  45128. name: "Front",
  45129. image: {
  45130. source: "./media/characters/ramita/front.svg",
  45131. extra: 1402/1232,
  45132. bottom: 62/1464
  45133. }
  45134. },
  45135. dressed: {
  45136. height: math.unit(3 + 6/12, "feet"),
  45137. weight: math.unit(60, "lb"),
  45138. name: "Dressed",
  45139. image: {
  45140. source: "./media/characters/ramita/dressed.svg",
  45141. extra: 1534/1249,
  45142. bottom: 50/1584
  45143. }
  45144. },
  45145. },
  45146. [
  45147. {
  45148. name: "Normal",
  45149. height: math.unit(3 + 6/12, "feet"),
  45150. default: true
  45151. },
  45152. ]
  45153. ))
  45154. characterMakers.push(() => makeCharacter(
  45155. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45156. {
  45157. front: {
  45158. height: math.unit(8, "feet"),
  45159. name: "Front",
  45160. image: {
  45161. source: "./media/characters/ark/front.svg",
  45162. extra: 772/693,
  45163. bottom: 45/817
  45164. }
  45165. },
  45166. },
  45167. [
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(8, "feet"),
  45171. default: true
  45172. },
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45177. {
  45178. front: {
  45179. height: math.unit(6, "feet"),
  45180. weight: math.unit(250, "lb"),
  45181. volume: math.unit(5/8, "gallons"),
  45182. name: "Front",
  45183. image: {
  45184. source: "./media/characters/ludwig-horn/front.svg",
  45185. extra: 1782/1635,
  45186. bottom: 96/1878
  45187. }
  45188. },
  45189. back: {
  45190. height: math.unit(6, "feet"),
  45191. weight: math.unit(250, "lb"),
  45192. volume: math.unit(5/8, "gallons"),
  45193. name: "Back",
  45194. image: {
  45195. source: "./media/characters/ludwig-horn/back.svg",
  45196. extra: 1874/1729,
  45197. bottom: 27/1901
  45198. }
  45199. },
  45200. dick: {
  45201. height: math.unit(1.05, "feet"),
  45202. weight: math.unit(15, "lb"),
  45203. volume: math.unit(5/8, "gallons"),
  45204. name: "Dick",
  45205. image: {
  45206. source: "./media/characters/ludwig-horn/dick.svg"
  45207. }
  45208. },
  45209. },
  45210. [
  45211. {
  45212. name: "Small",
  45213. height: math.unit(6, "feet")
  45214. },
  45215. {
  45216. name: "Typical",
  45217. height: math.unit(12, "feet"),
  45218. default: true
  45219. },
  45220. {
  45221. name: "Building",
  45222. height: math.unit(80, "feet")
  45223. },
  45224. {
  45225. name: "Town",
  45226. height: math.unit(800, "feet")
  45227. },
  45228. {
  45229. name: "Kingdom",
  45230. height: math.unit(80000, "feet")
  45231. },
  45232. {
  45233. name: "Planet",
  45234. height: math.unit(8000000, "feet")
  45235. },
  45236. {
  45237. name: "Universe",
  45238. height: math.unit(8000000000, "feet")
  45239. },
  45240. {
  45241. name: "Transcended",
  45242. height: math.unit(8e27, "feet")
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45248. {
  45249. front: {
  45250. height: math.unit(5, "feet"),
  45251. weight: math.unit(50, "kg"),
  45252. name: "Front",
  45253. image: {
  45254. source: "./media/characters/biot-avery/front.svg",
  45255. extra: 1295/1232,
  45256. bottom: 86/1381
  45257. }
  45258. },
  45259. },
  45260. [
  45261. {
  45262. name: "Normal",
  45263. height: math.unit(5, "feet"),
  45264. default: true
  45265. },
  45266. ]
  45267. ))
  45268. characterMakers.push(() => makeCharacter(
  45269. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45270. {
  45271. front: {
  45272. height: math.unit(6, "feet"),
  45273. name: "Front",
  45274. image: {
  45275. source: "./media/characters/kitsune-kiro/front.svg",
  45276. extra: 1270/1158,
  45277. bottom: 42/1312
  45278. }
  45279. },
  45280. frontAlt: {
  45281. height: math.unit(6, "feet"),
  45282. name: "Front-alt",
  45283. image: {
  45284. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45285. extra: 1130/1081,
  45286. bottom: 36/1166
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Smol",
  45293. height: math.unit(3, "feet")
  45294. },
  45295. {
  45296. name: "Normal",
  45297. height: math.unit(6, "feet"),
  45298. default: true
  45299. },
  45300. ]
  45301. ))
  45302. characterMakers.push(() => makeCharacter(
  45303. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45304. {
  45305. front: {
  45306. height: math.unit(6, "feet"),
  45307. weight: math.unit(125, "lb"),
  45308. name: "Front",
  45309. image: {
  45310. source: "./media/characters/jack-thatcher/front.svg",
  45311. extra: 1474/1370,
  45312. bottom: 26/1500
  45313. }
  45314. },
  45315. back: {
  45316. height: math.unit(6, "feet"),
  45317. weight: math.unit(125, "lb"),
  45318. name: "Back",
  45319. image: {
  45320. source: "./media/characters/jack-thatcher/back.svg",
  45321. extra: 1489/1384,
  45322. bottom: 18/1507
  45323. }
  45324. },
  45325. },
  45326. [
  45327. {
  45328. name: "Normal",
  45329. height: math.unit(6, "feet"),
  45330. default: true
  45331. },
  45332. {
  45333. name: "Macro",
  45334. height: math.unit(75, "feet")
  45335. },
  45336. {
  45337. name: "Macro-er",
  45338. height: math.unit(250, "feet")
  45339. },
  45340. ]
  45341. ))
  45342. characterMakers.push(() => makeCharacter(
  45343. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45344. {
  45345. front: {
  45346. height: math.unit(7, "feet"),
  45347. weight: math.unit(110, "kg"),
  45348. name: "Front",
  45349. image: {
  45350. source: "./media/characters/max-hyper/front.svg",
  45351. extra: 1969/1881,
  45352. bottom: 49/2018
  45353. }
  45354. },
  45355. },
  45356. [
  45357. {
  45358. name: "Normal",
  45359. height: math.unit(7, "feet"),
  45360. default: true
  45361. },
  45362. ]
  45363. ))
  45364. characterMakers.push(() => makeCharacter(
  45365. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45366. {
  45367. front: {
  45368. height: math.unit(5 + 5/12, "feet"),
  45369. weight: math.unit(160, "lb"),
  45370. name: "Front",
  45371. image: {
  45372. source: "./media/characters/spook/front.svg",
  45373. extra: 794/791,
  45374. bottom: 54/848
  45375. }
  45376. },
  45377. back: {
  45378. height: math.unit(5 + 5/12, "feet"),
  45379. weight: math.unit(160, "lb"),
  45380. name: "Back",
  45381. image: {
  45382. source: "./media/characters/spook/back.svg",
  45383. extra: 812/798,
  45384. bottom: 32/844
  45385. }
  45386. },
  45387. },
  45388. [
  45389. {
  45390. name: "Normal",
  45391. height: math.unit(5 + 5/12, "feet"),
  45392. default: true
  45393. },
  45394. ]
  45395. ))
  45396. characterMakers.push(() => makeCharacter(
  45397. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45398. {
  45399. front: {
  45400. height: math.unit(18, "feet"),
  45401. name: "Front",
  45402. image: {
  45403. source: "./media/characters/xeaduulix/front.svg",
  45404. extra: 1380/1166,
  45405. bottom: 110/1490
  45406. }
  45407. },
  45408. back: {
  45409. height: math.unit(18, "feet"),
  45410. name: "Back",
  45411. image: {
  45412. source: "./media/characters/xeaduulix/back.svg",
  45413. extra: 1592/1170,
  45414. bottom: 128/1720
  45415. }
  45416. },
  45417. frontNsfw: {
  45418. height: math.unit(18, "feet"),
  45419. name: "Front (NSFW)",
  45420. image: {
  45421. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45422. extra: 1380/1166,
  45423. bottom: 110/1490
  45424. }
  45425. },
  45426. backNsfw: {
  45427. height: math.unit(18, "feet"),
  45428. name: "Back (NSFW)",
  45429. image: {
  45430. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45431. extra: 1592/1170,
  45432. bottom: 128/1720
  45433. }
  45434. },
  45435. },
  45436. [
  45437. {
  45438. name: "Normal",
  45439. height: math.unit(18, "feet"),
  45440. default: true
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45446. {
  45447. spreadWings: {
  45448. height: math.unit(20, "feet"),
  45449. name: "Spread Wings",
  45450. image: {
  45451. source: "./media/characters/fledge/spread-wings.svg",
  45452. extra: 693/635,
  45453. bottom: 26/719
  45454. }
  45455. },
  45456. front: {
  45457. height: math.unit(20, "feet"),
  45458. name: "Front",
  45459. image: {
  45460. source: "./media/characters/fledge/front.svg",
  45461. extra: 684/637,
  45462. bottom: 18/702
  45463. }
  45464. },
  45465. frontAlt: {
  45466. height: math.unit(20, "feet"),
  45467. name: "Front (Alt)",
  45468. image: {
  45469. source: "./media/characters/fledge/front-alt.svg",
  45470. extra: 708/664,
  45471. bottom: 13/721
  45472. }
  45473. },
  45474. back: {
  45475. height: math.unit(20, "feet"),
  45476. name: "Back",
  45477. image: {
  45478. source: "./media/characters/fledge/back.svg",
  45479. extra: 718/634,
  45480. bottom: 22/740
  45481. }
  45482. },
  45483. head: {
  45484. height: math.unit(5.55, "feet"),
  45485. name: "Head",
  45486. image: {
  45487. source: "./media/characters/fledge/head.svg"
  45488. }
  45489. },
  45490. headAlt: {
  45491. height: math.unit(5.1, "feet"),
  45492. name: "Head (Alt)",
  45493. image: {
  45494. source: "./media/characters/fledge/head-alt.svg"
  45495. }
  45496. },
  45497. },
  45498. [
  45499. {
  45500. name: "Small",
  45501. height: math.unit(6 + 2/12, "feet")
  45502. },
  45503. {
  45504. name: "Big",
  45505. height: math.unit(20, "feet"),
  45506. default: true
  45507. },
  45508. {
  45509. name: "Giant",
  45510. height: math.unit(100, "feet")
  45511. },
  45512. {
  45513. name: "Macro",
  45514. height: math.unit(200, "feet")
  45515. },
  45516. ]
  45517. ))
  45518. characterMakers.push(() => makeCharacter(
  45519. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45520. {
  45521. front: {
  45522. height: math.unit(1, "meter"),
  45523. name: "Front",
  45524. image: {
  45525. source: "./media/characters/atlas-morenai/front.svg",
  45526. extra: 1275/1043,
  45527. bottom: 19/1294
  45528. }
  45529. },
  45530. back: {
  45531. height: math.unit(1, "meter"),
  45532. name: "Back",
  45533. image: {
  45534. source: "./media/characters/atlas-morenai/back.svg",
  45535. extra: 1141/1001,
  45536. bottom: 25/1166
  45537. }
  45538. },
  45539. },
  45540. [
  45541. {
  45542. name: "Normal",
  45543. height: math.unit(1, "meter"),
  45544. default: true
  45545. },
  45546. {
  45547. name: "Magic-Infused",
  45548. height: math.unit(5, "meters")
  45549. },
  45550. ]
  45551. ))
  45552. characterMakers.push(() => makeCharacter(
  45553. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45554. {
  45555. front: {
  45556. height: math.unit(5, "meters"),
  45557. name: "Front",
  45558. image: {
  45559. source: "./media/characters/cintia/front.svg",
  45560. extra: 1312/1228,
  45561. bottom: 38/1350
  45562. }
  45563. },
  45564. back: {
  45565. height: math.unit(5, "meters"),
  45566. name: "Back",
  45567. image: {
  45568. source: "./media/characters/cintia/back.svg",
  45569. extra: 1260/1166,
  45570. bottom: 98/1358
  45571. }
  45572. },
  45573. frontDick: {
  45574. height: math.unit(5, "meters"),
  45575. name: "Front (Dick)",
  45576. image: {
  45577. source: "./media/characters/cintia/front-dick.svg",
  45578. extra: 1312/1228,
  45579. bottom: 38/1350
  45580. }
  45581. },
  45582. backDick: {
  45583. height: math.unit(5, "meters"),
  45584. name: "Back (Dick)",
  45585. image: {
  45586. source: "./media/characters/cintia/back-dick.svg",
  45587. extra: 1260/1166,
  45588. bottom: 98/1358
  45589. }
  45590. },
  45591. bust: {
  45592. height: math.unit(1.97, "meters"),
  45593. name: "Bust",
  45594. image: {
  45595. source: "./media/characters/cintia/bust.svg",
  45596. extra: 617/565,
  45597. bottom: 0/617
  45598. }
  45599. },
  45600. },
  45601. [
  45602. {
  45603. name: "Normal",
  45604. height: math.unit(5, "meters"),
  45605. default: true
  45606. },
  45607. ]
  45608. ))
  45609. characterMakers.push(() => makeCharacter(
  45610. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45611. {
  45612. side: {
  45613. height: math.unit(100, "feet"),
  45614. name: "Side",
  45615. image: {
  45616. source: "./media/characters/denora/side.svg",
  45617. extra: 875/803,
  45618. bottom: 9/884
  45619. }
  45620. },
  45621. },
  45622. [
  45623. {
  45624. name: "Standard",
  45625. height: math.unit(100, "feet"),
  45626. default: true
  45627. },
  45628. {
  45629. name: "Grand",
  45630. height: math.unit(1000, "feet")
  45631. },
  45632. {
  45633. name: "Conquering",
  45634. height: math.unit(10000, "feet")
  45635. },
  45636. ]
  45637. ))
  45638. characterMakers.push(() => makeCharacter(
  45639. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45640. {
  45641. dressed: {
  45642. height: math.unit(8 + 5/12, "feet"),
  45643. weight: math.unit(700, "lb"),
  45644. name: "Dressed",
  45645. image: {
  45646. source: "./media/characters/kiva/dressed.svg",
  45647. extra: 1102/1055,
  45648. bottom: 60/1162
  45649. }
  45650. },
  45651. nude: {
  45652. height: math.unit(8 + 5/12, "feet"),
  45653. weight: math.unit(700, "lb"),
  45654. name: "Nude",
  45655. image: {
  45656. source: "./media/characters/kiva/nude.svg",
  45657. extra: 1102/1055,
  45658. bottom: 60/1162
  45659. }
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Base Height",
  45665. height: math.unit(8 + 5/12, "feet"),
  45666. default: true
  45667. },
  45668. {
  45669. name: "Macro",
  45670. height: math.unit(100, "feet")
  45671. },
  45672. {
  45673. name: "Max",
  45674. height: math.unit(3280, "feet")
  45675. },
  45676. ]
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45680. {
  45681. front: {
  45682. height: math.unit(6 + 8/12, "feet"),
  45683. weight: math.unit(250, "lb"),
  45684. name: "Front",
  45685. image: {
  45686. source: "./media/characters/ztragon/front.svg",
  45687. extra: 1825/1684,
  45688. bottom: 98/1923
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Normal",
  45695. height: math.unit(6 + 8/12, "feet"),
  45696. default: true
  45697. },
  45698. {
  45699. name: "Macro",
  45700. height: math.unit(80, "feet")
  45701. },
  45702. ]
  45703. ))
  45704. characterMakers.push(() => makeCharacter(
  45705. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45706. {
  45707. front: {
  45708. height: math.unit(10.4, "feet"),
  45709. weight: math.unit(2, "tons"),
  45710. name: "Front",
  45711. image: {
  45712. source: "./media/characters/yesenia/front.svg",
  45713. extra: 1479/1474,
  45714. bottom: 233/1712
  45715. }
  45716. },
  45717. },
  45718. [
  45719. {
  45720. name: "Normal",
  45721. height: math.unit(10.4, "feet"),
  45722. default: true
  45723. },
  45724. ]
  45725. ))
  45726. characterMakers.push(() => makeCharacter(
  45727. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45728. {
  45729. normal: {
  45730. height: math.unit(6 + 1/12, "feet"),
  45731. weight: math.unit(180, "lb"),
  45732. name: "Normal",
  45733. image: {
  45734. source: "./media/characters/leanne-lycheborne/normal.svg",
  45735. extra: 1748/1660,
  45736. bottom: 98/1846
  45737. }
  45738. },
  45739. were: {
  45740. height: math.unit(12, "feet"),
  45741. weight: math.unit(1600, "lb"),
  45742. name: "Were",
  45743. image: {
  45744. source: "./media/characters/leanne-lycheborne/were.svg",
  45745. extra: 1485/1432,
  45746. bottom: 66/1551
  45747. }
  45748. },
  45749. },
  45750. [
  45751. {
  45752. name: "Normal",
  45753. height: math.unit(6 + 1/12, "feet"),
  45754. default: true
  45755. },
  45756. ]
  45757. ))
  45758. characterMakers.push(() => makeCharacter(
  45759. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45760. {
  45761. side: {
  45762. height: math.unit(13, "feet"),
  45763. name: "Side",
  45764. image: {
  45765. source: "./media/characters/kira-tyler/side.svg",
  45766. extra: 693/393,
  45767. bottom: 58/751
  45768. }
  45769. },
  45770. },
  45771. [
  45772. {
  45773. name: "Normal",
  45774. height: math.unit(13, "feet"),
  45775. default: true
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45781. {
  45782. front: {
  45783. height: math.unit(10.3, "feet"),
  45784. weight: math.unit(150, "lb"),
  45785. name: "Front",
  45786. image: {
  45787. source: "./media/characters/blaze/front.svg",
  45788. extra: 1378/1286,
  45789. bottom: 172/1550
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(10.3, "feet"),
  45797. default: true
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45803. {
  45804. side: {
  45805. height: math.unit(2, "meters"),
  45806. weight: math.unit(400, "kg"),
  45807. name: "Side",
  45808. image: {
  45809. source: "./media/characters/anu/side.svg",
  45810. extra: 506/394,
  45811. bottom: 18/524
  45812. }
  45813. },
  45814. },
  45815. [
  45816. {
  45817. name: "Humanoid",
  45818. height: math.unit(2, "meters")
  45819. },
  45820. {
  45821. name: "Normal",
  45822. height: math.unit(5, "meters"),
  45823. default: true
  45824. },
  45825. ]
  45826. ))
  45827. characterMakers.push(() => makeCharacter(
  45828. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45829. {
  45830. front: {
  45831. height: math.unit(5 + 5/12, "feet"),
  45832. weight: math.unit(170, "lb"),
  45833. name: "Front",
  45834. image: {
  45835. source: "./media/characters/synx-the-lynx/front.svg",
  45836. extra: 1893/1745,
  45837. bottom: 17/1910
  45838. }
  45839. },
  45840. side: {
  45841. height: math.unit(5 + 5/12, "feet"),
  45842. weight: math.unit(170, "lb"),
  45843. name: "Side",
  45844. image: {
  45845. source: "./media/characters/synx-the-lynx/side.svg",
  45846. extra: 1884/1740,
  45847. bottom: 39/1923
  45848. }
  45849. },
  45850. back: {
  45851. height: math.unit(5 + 5/12, "feet"),
  45852. weight: math.unit(170, "lb"),
  45853. name: "Back",
  45854. image: {
  45855. source: "./media/characters/synx-the-lynx/back.svg",
  45856. extra: 1903/1755,
  45857. bottom: 14/1917
  45858. }
  45859. },
  45860. },
  45861. [
  45862. {
  45863. name: "Normal",
  45864. height: math.unit(5 + 5/12, "feet"),
  45865. default: true
  45866. },
  45867. ]
  45868. ))
  45869. characterMakers.push(() => makeCharacter(
  45870. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45871. {
  45872. back: {
  45873. height: math.unit(15, "feet"),
  45874. name: "Back",
  45875. image: {
  45876. source: "./media/characters/nadezda-fex/back.svg",
  45877. extra: 1695/1481,
  45878. bottom: 25/1720
  45879. }
  45880. },
  45881. },
  45882. [
  45883. {
  45884. name: "Normal",
  45885. height: math.unit(15, "feet"),
  45886. default: true
  45887. },
  45888. {
  45889. name: "Macro",
  45890. height: math.unit(2.5, "miles")
  45891. },
  45892. {
  45893. name: "Goddess",
  45894. height: math.unit(2, "multiverses")
  45895. },
  45896. ]
  45897. ))
  45898. characterMakers.push(() => makeCharacter(
  45899. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45900. {
  45901. front: {
  45902. height: math.unit(216, "cm"),
  45903. name: "Front",
  45904. image: {
  45905. source: "./media/characters/lev/front.svg",
  45906. extra: 1728/1670,
  45907. bottom: 82/1810
  45908. }
  45909. },
  45910. back: {
  45911. height: math.unit(216, "cm"),
  45912. name: "Back",
  45913. image: {
  45914. source: "./media/characters/lev/back.svg",
  45915. extra: 1738/1675,
  45916. bottom: 24/1762
  45917. }
  45918. },
  45919. dressed: {
  45920. height: math.unit(216, "cm"),
  45921. name: "Dressed",
  45922. image: {
  45923. source: "./media/characters/lev/dressed.svg",
  45924. extra: 1397/1351,
  45925. bottom: 73/1470
  45926. }
  45927. },
  45928. head: {
  45929. height: math.unit(0.51, "meter"),
  45930. name: "Head",
  45931. image: {
  45932. source: "./media/characters/lev/head.svg"
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(216, "cm"),
  45940. default: true
  45941. },
  45942. {
  45943. name: "Relatively Macro",
  45944. height: math.unit(80, "meters")
  45945. },
  45946. {
  45947. name: "Megamacro",
  45948. height: math.unit(21600, "meters")
  45949. },
  45950. {
  45951. name: "Megamacro+",
  45952. height: math.unit(64800, "meters")
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45958. {
  45959. front: {
  45960. height: math.unit(2, "meters"),
  45961. weight: math.unit(80, "kg"),
  45962. name: "Front",
  45963. image: {
  45964. source: "./media/characters/moka/front.svg",
  45965. extra: 1337/1255,
  45966. bottom: 58/1395
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Micro",
  45973. height: math.unit(15, "cm")
  45974. },
  45975. {
  45976. name: "Normal",
  45977. height: math.unit(2, "meters"),
  45978. default: true
  45979. },
  45980. {
  45981. name: "Macro",
  45982. height: math.unit(20, "meters"),
  45983. },
  45984. ]
  45985. ))
  45986. characterMakers.push(() => makeCharacter(
  45987. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45988. {
  45989. front: {
  45990. height: math.unit(9, "feet"),
  45991. weight: math.unit(240, "lb"),
  45992. name: "Front",
  45993. image: {
  45994. source: "./media/characters/kuzco/front.svg",
  45995. extra: 1593/1487,
  45996. bottom: 32/1625
  45997. }
  45998. },
  45999. side: {
  46000. height: math.unit(9, "feet"),
  46001. weight: math.unit(240, "lb"),
  46002. name: "Side",
  46003. image: {
  46004. source: "./media/characters/kuzco/side.svg",
  46005. extra: 1575/1485,
  46006. bottom: 30/1605
  46007. }
  46008. },
  46009. back: {
  46010. height: math.unit(9, "feet"),
  46011. weight: math.unit(240, "lb"),
  46012. name: "Back",
  46013. image: {
  46014. source: "./media/characters/kuzco/back.svg",
  46015. extra: 1603/1514,
  46016. bottom: 14/1617
  46017. }
  46018. },
  46019. },
  46020. [
  46021. {
  46022. name: "Normal",
  46023. height: math.unit(9, "feet"),
  46024. default: true
  46025. },
  46026. ]
  46027. ))
  46028. characterMakers.push(() => makeCharacter(
  46029. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46030. {
  46031. side: {
  46032. height: math.unit(2, "meters"),
  46033. weight: math.unit(300, "kg"),
  46034. name: "Side",
  46035. image: {
  46036. source: "./media/characters/ceruleus/side.svg",
  46037. extra: 1068/974,
  46038. bottom: 126/1194
  46039. }
  46040. },
  46041. },
  46042. [
  46043. {
  46044. name: "Normal",
  46045. height: math.unit(16, "meters"),
  46046. default: true
  46047. },
  46048. ]
  46049. ))
  46050. characterMakers.push(() => makeCharacter(
  46051. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46052. {
  46053. front: {
  46054. height: math.unit(9, "feet"),
  46055. weight: math.unit(500, "kg"),
  46056. name: "Front",
  46057. image: {
  46058. source: "./media/characters/acouya/front.svg",
  46059. extra: 1660/1473,
  46060. bottom: 28/1688
  46061. }
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Normal",
  46067. height: math.unit(9, "feet"),
  46068. default: true
  46069. },
  46070. ]
  46071. ))
  46072. characterMakers.push(() => makeCharacter(
  46073. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46074. {
  46075. front: {
  46076. height: math.unit(5 + 6/12, "feet"),
  46077. weight: math.unit(195, "lb"),
  46078. name: "Front",
  46079. image: {
  46080. source: "./media/characters/vant/front.svg",
  46081. extra: 1396/1320,
  46082. bottom: 20/1416
  46083. }
  46084. },
  46085. back: {
  46086. height: math.unit(5 + 6/12, "feet"),
  46087. weight: math.unit(195, "lb"),
  46088. name: "Back",
  46089. image: {
  46090. source: "./media/characters/vant/back.svg",
  46091. extra: 1396/1320,
  46092. bottom: 20/1416
  46093. }
  46094. },
  46095. maw: {
  46096. height: math.unit(0.75, "feet"),
  46097. name: "Maw",
  46098. image: {
  46099. source: "./media/characters/vant/maw.svg"
  46100. }
  46101. },
  46102. paw: {
  46103. height: math.unit(1.07, "feet"),
  46104. name: "Paw",
  46105. image: {
  46106. source: "./media/characters/vant/paw.svg"
  46107. }
  46108. },
  46109. },
  46110. [
  46111. {
  46112. name: "Micro",
  46113. height: math.unit(0.25, "inches")
  46114. },
  46115. {
  46116. name: "Normal",
  46117. height: math.unit(5 + 6/12, "feet"),
  46118. default: true
  46119. },
  46120. {
  46121. name: "Macro",
  46122. height: math.unit(75, "feet")
  46123. },
  46124. ]
  46125. ))
  46126. characterMakers.push(() => makeCharacter(
  46127. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46128. {
  46129. front: {
  46130. height: math.unit(30, "meters"),
  46131. weight: math.unit(363, "tons"),
  46132. name: "Front",
  46133. image: {
  46134. source: "./media/characters/ahra/front.svg",
  46135. extra: 1914/1814,
  46136. bottom: 46/1960
  46137. }
  46138. },
  46139. },
  46140. [
  46141. {
  46142. name: "Macro",
  46143. height: math.unit(30, "meters"),
  46144. default: true
  46145. },
  46146. ]
  46147. ))
  46148. characterMakers.push(() => makeCharacter(
  46149. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46150. {
  46151. undressed: {
  46152. height: math.unit(2, "m"),
  46153. weight: math.unit(250, "kg"),
  46154. name: "Undressed",
  46155. image: {
  46156. source: "./media/characters/coriander/undressed.svg",
  46157. extra: 1757/1606,
  46158. bottom: 107/1864
  46159. }
  46160. },
  46161. dressed: {
  46162. height: math.unit(2, "m"),
  46163. weight: math.unit(250, "kg"),
  46164. name: "Dressed",
  46165. image: {
  46166. source: "./media/characters/coriander/dressed.svg",
  46167. extra: 1757/1606,
  46168. bottom: 107/1864
  46169. }
  46170. },
  46171. },
  46172. [
  46173. {
  46174. name: "Normal",
  46175. height: math.unit(4, "meters"),
  46176. default: true
  46177. },
  46178. {
  46179. name: "XL",
  46180. height: math.unit(6, "meters")
  46181. },
  46182. {
  46183. name: "XXL",
  46184. height: math.unit(8, "meters")
  46185. },
  46186. ]
  46187. ))
  46188. characterMakers.push(() => makeCharacter(
  46189. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46190. {
  46191. front: {
  46192. height: math.unit(6, "feet"),
  46193. name: "Front",
  46194. image: {
  46195. source: "./media/characters/syrinx/front.svg",
  46196. extra: 1557/1259,
  46197. bottom: 171/1728
  46198. }
  46199. },
  46200. },
  46201. [
  46202. {
  46203. name: "Normal",
  46204. height: math.unit(6 + 3/12, "feet"),
  46205. default: true
  46206. },
  46207. ]
  46208. ))
  46209. characterMakers.push(() => makeCharacter(
  46210. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46211. {
  46212. front: {
  46213. height: math.unit(11 + 6/12, "feet"),
  46214. weight: math.unit(1.5, "tons"),
  46215. name: "Front",
  46216. image: {
  46217. source: "./media/characters/bor/front.svg",
  46218. extra: 1189/1109,
  46219. bottom: 170/1359
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(11 + 6/12, "feet"),
  46227. default: true
  46228. },
  46229. {
  46230. name: "Macro",
  46231. height: math.unit(32 + 9/12, "feet")
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46237. {
  46238. anthro: {
  46239. height: math.unit(9, "feet"),
  46240. weight: math.unit(2076, "lb"),
  46241. name: "Anthro",
  46242. image: {
  46243. source: "./media/characters/abacus/anthro.svg",
  46244. extra: 1540/1494,
  46245. bottom: 233/1773
  46246. }
  46247. },
  46248. pigeon: {
  46249. height: math.unit(1, "feet"),
  46250. name: "Pigeon",
  46251. image: {
  46252. source: "./media/characters/abacus/pigeon.svg",
  46253. extra: 528/525,
  46254. bottom: 46/574
  46255. }
  46256. },
  46257. },
  46258. [
  46259. {
  46260. name: "Normal",
  46261. height: math.unit(9, "feet"),
  46262. default: true
  46263. },
  46264. ]
  46265. ))
  46266. characterMakers.push(() => makeCharacter(
  46267. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46268. {
  46269. side: {
  46270. height: math.unit(6, "feet"),
  46271. name: "Side",
  46272. image: {
  46273. source: "./media/characters/delkhan/side.svg",
  46274. extra: 1884/1786,
  46275. bottom: 308/2192
  46276. }
  46277. },
  46278. head: {
  46279. height: math.unit(3.38, "feet"),
  46280. name: "Head",
  46281. image: {
  46282. source: "./media/characters/delkhan/head.svg"
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(72, "feet"),
  46290. default: true
  46291. },
  46292. {
  46293. name: "Giant",
  46294. height: math.unit(172, "feet")
  46295. },
  46296. ]
  46297. ))
  46298. characterMakers.push(() => makeCharacter(
  46299. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46300. {
  46301. standing: {
  46302. height: math.unit(6, "feet"),
  46303. name: "Standing",
  46304. image: {
  46305. source: "./media/characters/euchidat/standing.svg",
  46306. extra: 1612/1553,
  46307. bottom: 116/1728
  46308. }
  46309. },
  46310. leaning: {
  46311. height: math.unit(6, "feet"),
  46312. name: "Leaning",
  46313. image: {
  46314. source: "./media/characters/euchidat/leaning.svg",
  46315. extra: 1719/1674,
  46316. bottom: 27/1746
  46317. }
  46318. },
  46319. },
  46320. [
  46321. {
  46322. name: "Normal",
  46323. height: math.unit(175, "feet"),
  46324. default: true
  46325. },
  46326. {
  46327. name: "Megamacro",
  46328. height: math.unit(190, "miles")
  46329. },
  46330. {
  46331. name: "Gigamacro",
  46332. height: math.unit(190000, "miles")
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46338. {
  46339. front: {
  46340. height: math.unit(6, "feet"),
  46341. weight: math.unit(150, "lb"),
  46342. name: "Front",
  46343. image: {
  46344. source: "./media/characters/rebecca-stack/front.svg",
  46345. extra: 1256/1201,
  46346. bottom: 18/1274
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Normal",
  46353. height: math.unit(5 + 8/12, "feet"),
  46354. default: true
  46355. },
  46356. {
  46357. name: "Demolitionist",
  46358. height: math.unit(200, "feet")
  46359. },
  46360. {
  46361. name: "Out of Control",
  46362. height: math.unit(2, "miles")
  46363. },
  46364. {
  46365. name: "Giga",
  46366. height: math.unit(7200, "miles")
  46367. },
  46368. ]
  46369. ))
  46370. characterMakers.push(() => makeCharacter(
  46371. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46372. {
  46373. front: {
  46374. height: math.unit(6, "feet"),
  46375. weight: math.unit(150, "lb"),
  46376. name: "Front",
  46377. image: {
  46378. source: "./media/characters/jenny-cartwright/front.svg",
  46379. extra: 1384/1376,
  46380. bottom: 58/1442
  46381. }
  46382. },
  46383. },
  46384. [
  46385. {
  46386. name: "Normal",
  46387. height: math.unit(6 + 7/12, "feet"),
  46388. default: true
  46389. },
  46390. {
  46391. name: "Librarian",
  46392. height: math.unit(55, "feet")
  46393. },
  46394. {
  46395. name: "Sightseer",
  46396. height: math.unit(50, "miles")
  46397. },
  46398. {
  46399. name: "Giga",
  46400. height: math.unit(30000, "miles")
  46401. },
  46402. ]
  46403. ))
  46404. characterMakers.push(() => makeCharacter(
  46405. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46406. {
  46407. nude: {
  46408. height: math.unit(8, "feet"),
  46409. weight: math.unit(225, "lb"),
  46410. name: "Nude",
  46411. image: {
  46412. source: "./media/characters/marvy/nude.svg",
  46413. extra: 1900/1683,
  46414. bottom: 89/1989
  46415. }
  46416. },
  46417. dressed: {
  46418. height: math.unit(8, "feet"),
  46419. weight: math.unit(225, "lb"),
  46420. name: "Dressed",
  46421. image: {
  46422. source: "./media/characters/marvy/dressed.svg",
  46423. extra: 1900/1683,
  46424. bottom: 89/1989
  46425. }
  46426. },
  46427. head: {
  46428. height: math.unit(2.85, "feet"),
  46429. name: "Head",
  46430. image: {
  46431. source: "./media/characters/marvy/head.svg"
  46432. }
  46433. },
  46434. },
  46435. [
  46436. {
  46437. name: "Normal",
  46438. height: math.unit(8, "feet"),
  46439. default: true
  46440. },
  46441. ]
  46442. ))
  46443. characterMakers.push(() => makeCharacter(
  46444. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46445. {
  46446. front: {
  46447. height: math.unit(8, "feet"),
  46448. weight: math.unit(250, "lb"),
  46449. name: "Front",
  46450. image: {
  46451. source: "./media/characters/leah/front.svg",
  46452. extra: 1257/1149,
  46453. bottom: 109/1366
  46454. }
  46455. },
  46456. },
  46457. [
  46458. {
  46459. name: "Normal",
  46460. height: math.unit(8, "feet"),
  46461. default: true
  46462. },
  46463. {
  46464. name: "Minimacro",
  46465. height: math.unit(40, "feet")
  46466. },
  46467. {
  46468. name: "Macro",
  46469. height: math.unit(124, "feet")
  46470. },
  46471. {
  46472. name: "Megamacro",
  46473. height: math.unit(850, "feet")
  46474. },
  46475. ]
  46476. ))
  46477. characterMakers.push(() => makeCharacter(
  46478. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46479. {
  46480. side: {
  46481. height: math.unit(13 + 6/12, "feet"),
  46482. weight: math.unit(3200, "lb"),
  46483. name: "Side",
  46484. image: {
  46485. source: "./media/characters/alvir/side.svg",
  46486. extra: 896/589,
  46487. bottom: 26/922
  46488. }
  46489. },
  46490. },
  46491. [
  46492. {
  46493. name: "Normal",
  46494. height: math.unit(13 + 6/12, "feet"),
  46495. default: true
  46496. },
  46497. ]
  46498. ))
  46499. characterMakers.push(() => makeCharacter(
  46500. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46501. {
  46502. front: {
  46503. height: math.unit(5 + 4/12, "feet"),
  46504. weight: math.unit(236, "lb"),
  46505. name: "Front",
  46506. image: {
  46507. source: "./media/characters/zaina-khalil/front.svg",
  46508. extra: 1533/1485,
  46509. bottom: 94/1627
  46510. }
  46511. },
  46512. side: {
  46513. height: math.unit(5 + 4/12, "feet"),
  46514. weight: math.unit(236, "lb"),
  46515. name: "Side",
  46516. image: {
  46517. source: "./media/characters/zaina-khalil/side.svg",
  46518. extra: 1537/1498,
  46519. bottom: 66/1603
  46520. }
  46521. },
  46522. back: {
  46523. height: math.unit(5 + 4/12, "feet"),
  46524. weight: math.unit(236, "lb"),
  46525. name: "Back",
  46526. image: {
  46527. source: "./media/characters/zaina-khalil/back.svg",
  46528. extra: 1546/1494,
  46529. bottom: 89/1635
  46530. }
  46531. },
  46532. },
  46533. [
  46534. {
  46535. name: "Normal",
  46536. height: math.unit(5 + 4/12, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46543. {
  46544. side: {
  46545. height: math.unit(12, "feet"),
  46546. weight: math.unit(4000, "lb"),
  46547. name: "Side",
  46548. image: {
  46549. source: "./media/characters/terry/side.svg",
  46550. extra: 1518/1439,
  46551. bottom: 149/1667
  46552. }
  46553. },
  46554. },
  46555. [
  46556. {
  46557. name: "Normal",
  46558. height: math.unit(12, "feet"),
  46559. default: true
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46565. {
  46566. front: {
  46567. height: math.unit(12, "feet"),
  46568. weight: math.unit(1500, "lb"),
  46569. name: "Front",
  46570. image: {
  46571. source: "./media/characters/kahea/front.svg",
  46572. extra: 1722/1617,
  46573. bottom: 179/1901
  46574. }
  46575. },
  46576. },
  46577. [
  46578. {
  46579. name: "Normal",
  46580. height: math.unit(12, "feet"),
  46581. default: true
  46582. },
  46583. ]
  46584. ))
  46585. characterMakers.push(() => makeCharacter(
  46586. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46587. {
  46588. demonFront: {
  46589. height: math.unit(36, "feet"),
  46590. name: "Front",
  46591. image: {
  46592. source: "./media/characters/alex-xuria/demon-front.svg",
  46593. extra: 1705/1673,
  46594. bottom: 198/1903
  46595. },
  46596. form: "demon",
  46597. default: true
  46598. },
  46599. demonBack: {
  46600. height: math.unit(36, "feet"),
  46601. name: "Back",
  46602. image: {
  46603. source: "./media/characters/alex-xuria/demon-back.svg",
  46604. extra: 1725/1693,
  46605. bottom: 70/1795
  46606. },
  46607. form: "demon"
  46608. },
  46609. demonHead: {
  46610. height: math.unit(2.14, "meters"),
  46611. name: "Head",
  46612. image: {
  46613. source: "./media/characters/alex-xuria/demon-head.svg"
  46614. },
  46615. form: "demon"
  46616. },
  46617. demonHand: {
  46618. height: math.unit(1.61, "meters"),
  46619. name: "Hand",
  46620. image: {
  46621. source: "./media/characters/alex-xuria/demon-hand.svg"
  46622. },
  46623. form: "demon"
  46624. },
  46625. demonPaw: {
  46626. height: math.unit(1.35, "meters"),
  46627. name: "Paw",
  46628. image: {
  46629. source: "./media/characters/alex-xuria/demon-paw.svg"
  46630. },
  46631. form: "demon"
  46632. },
  46633. demonFoot: {
  46634. height: math.unit(2.2, "meters"),
  46635. name: "Foot",
  46636. image: {
  46637. source: "./media/characters/alex-xuria/demon-foot.svg"
  46638. },
  46639. form: "demon"
  46640. },
  46641. demonCock: {
  46642. height: math.unit(1.74, "meters"),
  46643. name: "Cock",
  46644. image: {
  46645. source: "./media/characters/alex-xuria/demon-cock.svg"
  46646. },
  46647. form: "demon"
  46648. },
  46649. demonTailClosed: {
  46650. height: math.unit(1.47, "meters"),
  46651. name: "Tail (Closed)",
  46652. image: {
  46653. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46654. },
  46655. form: "demon"
  46656. },
  46657. demonTailOpen: {
  46658. height: math.unit(2.85, "meters"),
  46659. name: "Tail (Open)",
  46660. image: {
  46661. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46662. },
  46663. form: "demon"
  46664. },
  46665. incubusFront: {
  46666. height: math.unit(12, "feet"),
  46667. name: "Front",
  46668. image: {
  46669. source: "./media/characters/alex-xuria/incubus-front.svg",
  46670. extra: 1754/1677,
  46671. bottom: 125/1879
  46672. },
  46673. form: "incubus",
  46674. default: true
  46675. },
  46676. incubusBack: {
  46677. height: math.unit(12, "feet"),
  46678. name: "Back",
  46679. image: {
  46680. source: "./media/characters/alex-xuria/incubus-back.svg",
  46681. extra: 1702/1647,
  46682. bottom: 30/1732
  46683. },
  46684. form: "incubus"
  46685. },
  46686. incubusHead: {
  46687. height: math.unit(3.45, "feet"),
  46688. name: "Head",
  46689. image: {
  46690. source: "./media/characters/alex-xuria/incubus-head.svg"
  46691. },
  46692. form: "incubus"
  46693. },
  46694. rabbitFront: {
  46695. height: math.unit(6, "feet"),
  46696. name: "Front",
  46697. image: {
  46698. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46699. extra: 1369/1349,
  46700. bottom: 45/1414
  46701. },
  46702. form: "rabbit",
  46703. default: true
  46704. },
  46705. rabbitSide: {
  46706. height: math.unit(6, "feet"),
  46707. name: "Side",
  46708. image: {
  46709. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46710. extra: 1370/1356,
  46711. bottom: 37/1407
  46712. },
  46713. form: "rabbit"
  46714. },
  46715. rabbitBack: {
  46716. height: math.unit(6, "feet"),
  46717. name: "Back",
  46718. image: {
  46719. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46720. extra: 1375/1358,
  46721. bottom: 43/1418
  46722. },
  46723. form: "rabbit"
  46724. },
  46725. },
  46726. [
  46727. {
  46728. name: "Normal",
  46729. height: math.unit(6, "feet"),
  46730. default: true,
  46731. form: "rabbit"
  46732. },
  46733. {
  46734. name: "Incubus",
  46735. height: math.unit(12, "feet"),
  46736. default: true,
  46737. form: "incubus"
  46738. },
  46739. {
  46740. name: "Demon",
  46741. height: math.unit(36, "feet"),
  46742. default: true,
  46743. form: "demon"
  46744. }
  46745. ],
  46746. {
  46747. "demon": {
  46748. name: "Demon",
  46749. default: true
  46750. },
  46751. "incubus": {
  46752. name: "Incubus",
  46753. },
  46754. "rabbit": {
  46755. name: "Rabbit"
  46756. }
  46757. }
  46758. ))
  46759. characterMakers.push(() => makeCharacter(
  46760. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46761. {
  46762. front: {
  46763. height: math.unit(7 + 5/12, "feet"),
  46764. weight: math.unit(510, "lb"),
  46765. name: "Front",
  46766. image: {
  46767. source: "./media/characters/syrup/front.svg",
  46768. extra: 932/916,
  46769. bottom: 26/958
  46770. }
  46771. },
  46772. },
  46773. [
  46774. {
  46775. name: "Normal",
  46776. height: math.unit(7 + 5/12, "feet"),
  46777. default: true
  46778. },
  46779. {
  46780. name: "Big",
  46781. height: math.unit(50, "feet")
  46782. },
  46783. {
  46784. name: "Macro",
  46785. height: math.unit(300, "feet")
  46786. },
  46787. {
  46788. name: "Megamacro",
  46789. height: math.unit(1, "mile")
  46790. },
  46791. ]
  46792. ))
  46793. characterMakers.push(() => makeCharacter(
  46794. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46795. {
  46796. front: {
  46797. height: math.unit(6 + 9/12, "feet"),
  46798. name: "Front",
  46799. image: {
  46800. source: "./media/characters/zeimne/front.svg",
  46801. extra: 1969/1806,
  46802. bottom: 53/2022
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Normal",
  46809. height: math.unit(6 + 9/12, "feet"),
  46810. default: true
  46811. },
  46812. {
  46813. name: "Giant",
  46814. height: math.unit(550, "feet")
  46815. },
  46816. {
  46817. name: "Mega",
  46818. height: math.unit(3, "miles")
  46819. },
  46820. {
  46821. name: "Giga",
  46822. height: math.unit(250, "miles")
  46823. },
  46824. {
  46825. name: "Tera",
  46826. height: math.unit(1, "AU")
  46827. },
  46828. ]
  46829. ))
  46830. characterMakers.push(() => makeCharacter(
  46831. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46832. {
  46833. front: {
  46834. height: math.unit(5 + 2/12, "feet"),
  46835. name: "Front",
  46836. image: {
  46837. source: "./media/characters/grar/front.svg",
  46838. extra: 1331/1119,
  46839. bottom: 60/1391
  46840. }
  46841. },
  46842. back: {
  46843. height: math.unit(5 + 2/12, "feet"),
  46844. name: "Back",
  46845. image: {
  46846. source: "./media/characters/grar/back.svg",
  46847. extra: 1385/1169,
  46848. bottom: 23/1408
  46849. }
  46850. },
  46851. },
  46852. [
  46853. {
  46854. name: "Normal",
  46855. height: math.unit(5 + 2/12, "feet"),
  46856. default: true
  46857. },
  46858. ]
  46859. ))
  46860. characterMakers.push(() => makeCharacter(
  46861. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46862. {
  46863. front: {
  46864. height: math.unit(13 + 7/12, "feet"),
  46865. weight: math.unit(2200, "lb"),
  46866. name: "Front",
  46867. image: {
  46868. source: "./media/characters/endraya/front.svg",
  46869. extra: 1289/1215,
  46870. bottom: 50/1339
  46871. }
  46872. },
  46873. nude: {
  46874. height: math.unit(13 + 7/12, "feet"),
  46875. weight: math.unit(2200, "lb"),
  46876. name: "Nude",
  46877. image: {
  46878. source: "./media/characters/endraya/nude.svg",
  46879. extra: 1247/1171,
  46880. bottom: 40/1287
  46881. }
  46882. },
  46883. head: {
  46884. height: math.unit(2.6, "feet"),
  46885. name: "Head",
  46886. image: {
  46887. source: "./media/characters/endraya/head.svg"
  46888. }
  46889. },
  46890. slit: {
  46891. height: math.unit(3.4, "feet"),
  46892. name: "Slit",
  46893. image: {
  46894. source: "./media/characters/endraya/slit.svg"
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Normal",
  46901. height: math.unit(13 + 7/12, "feet"),
  46902. default: true
  46903. },
  46904. {
  46905. name: "Macro",
  46906. height: math.unit(200, "feet")
  46907. },
  46908. ]
  46909. ))
  46910. characterMakers.push(() => makeCharacter(
  46911. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46912. {
  46913. front: {
  46914. height: math.unit(1.81, "meters"),
  46915. weight: math.unit(69, "kg"),
  46916. name: "Front",
  46917. image: {
  46918. source: "./media/characters/rodryana/front.svg",
  46919. extra: 2002/1921,
  46920. bottom: 53/2055
  46921. }
  46922. },
  46923. back: {
  46924. height: math.unit(1.81, "meters"),
  46925. weight: math.unit(69, "kg"),
  46926. name: "Back",
  46927. image: {
  46928. source: "./media/characters/rodryana/back.svg",
  46929. extra: 1993/1926,
  46930. bottom: 48/2041
  46931. }
  46932. },
  46933. maw: {
  46934. height: math.unit(0.19769417475, "meters"),
  46935. name: "Maw",
  46936. image: {
  46937. source: "./media/characters/rodryana/maw.svg"
  46938. }
  46939. },
  46940. slit: {
  46941. height: math.unit(0.31631067961, "meters"),
  46942. name: "Slit",
  46943. image: {
  46944. source: "./media/characters/rodryana/slit.svg"
  46945. }
  46946. },
  46947. },
  46948. [
  46949. {
  46950. name: "Normal",
  46951. height: math.unit(1.81, "meters")
  46952. },
  46953. {
  46954. name: "Mini Macro",
  46955. height: math.unit(181, "meters")
  46956. },
  46957. {
  46958. name: "Macro",
  46959. height: math.unit(452, "meters"),
  46960. default: true
  46961. },
  46962. {
  46963. name: "Mega Macro",
  46964. height: math.unit(1.375, "km")
  46965. },
  46966. {
  46967. name: "Giga Macro",
  46968. height: math.unit(13.575, "km")
  46969. },
  46970. ]
  46971. ))
  46972. characterMakers.push(() => makeCharacter(
  46973. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46974. {
  46975. front: {
  46976. height: math.unit(6, "feet"),
  46977. weight: math.unit(1000, "lb"),
  46978. name: "Front",
  46979. image: {
  46980. source: "./media/characters/asaya/front.svg",
  46981. extra: 1460/1200,
  46982. bottom: 71/1531
  46983. }
  46984. },
  46985. },
  46986. [
  46987. {
  46988. name: "Normal",
  46989. height: math.unit(8, "km"),
  46990. default: true
  46991. },
  46992. ]
  46993. ))
  46994. characterMakers.push(() => makeCharacter(
  46995. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46996. {
  46997. front: {
  46998. height: math.unit(3.5, "meters"),
  46999. name: "Front",
  47000. image: {
  47001. source: "./media/characters/sarzu-and-israz/front.svg",
  47002. extra: 1570/1558,
  47003. bottom: 150/1720
  47004. },
  47005. },
  47006. back: {
  47007. height: math.unit(3.5, "meters"),
  47008. name: "Back",
  47009. image: {
  47010. source: "./media/characters/sarzu-and-israz/back.svg",
  47011. extra: 1523/1509,
  47012. bottom: 132/1655
  47013. },
  47014. },
  47015. frontFemale: {
  47016. height: math.unit(3.5, "meters"),
  47017. name: "Front (Female)",
  47018. image: {
  47019. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47020. extra: 1570/1558,
  47021. bottom: 150/1720
  47022. },
  47023. },
  47024. frontHerm: {
  47025. height: math.unit(3.5, "meters"),
  47026. name: "Front (Herm)",
  47027. image: {
  47028. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47029. extra: 1570/1558,
  47030. bottom: 150/1720
  47031. },
  47032. },
  47033. },
  47034. [
  47035. {
  47036. name: "Normal",
  47037. height: math.unit(3.5, "meters"),
  47038. default: true,
  47039. },
  47040. {
  47041. name: "Macro",
  47042. height: math.unit(65.5, "meters"),
  47043. },
  47044. ],
  47045. ))
  47046. characterMakers.push(() => makeCharacter(
  47047. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47048. {
  47049. front: {
  47050. height: math.unit(6, "feet"),
  47051. weight: math.unit(250, "lb"),
  47052. name: "Front",
  47053. image: {
  47054. source: "./media/characters/zenimma/front.svg",
  47055. extra: 1346/1320,
  47056. bottom: 58/1404
  47057. }
  47058. },
  47059. back: {
  47060. height: math.unit(6, "feet"),
  47061. weight: math.unit(250, "lb"),
  47062. name: "Back",
  47063. image: {
  47064. source: "./media/characters/zenimma/back.svg",
  47065. extra: 1324/1308,
  47066. bottom: 44/1368
  47067. }
  47068. },
  47069. dick: {
  47070. height: math.unit(1.44, "feet"),
  47071. name: "Dick",
  47072. image: {
  47073. source: "./media/characters/zenimma/dick.svg"
  47074. }
  47075. },
  47076. },
  47077. [
  47078. {
  47079. name: "Canon Height",
  47080. height: math.unit(66, "miles"),
  47081. default: true
  47082. },
  47083. ]
  47084. ))
  47085. characterMakers.push(() => makeCharacter(
  47086. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47087. {
  47088. nude: {
  47089. height: math.unit(6, "feet"),
  47090. weight: math.unit(150, "lb"),
  47091. name: "Nude",
  47092. image: {
  47093. source: "./media/characters/shavon/nude.svg",
  47094. extra: 1242/1096,
  47095. bottom: 98/1340
  47096. }
  47097. },
  47098. dressed: {
  47099. height: math.unit(6, "feet"),
  47100. weight: math.unit(150, "lb"),
  47101. name: "Dressed",
  47102. image: {
  47103. source: "./media/characters/shavon/dressed.svg",
  47104. extra: 1242/1096,
  47105. bottom: 98/1340
  47106. }
  47107. },
  47108. },
  47109. [
  47110. {
  47111. name: "Macro",
  47112. height: math.unit(255, "feet"),
  47113. default: true
  47114. },
  47115. ]
  47116. ))
  47117. characterMakers.push(() => makeCharacter(
  47118. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47119. {
  47120. front: {
  47121. height: math.unit(6, "feet"),
  47122. name: "Front",
  47123. image: {
  47124. source: "./media/characters/steph/front.svg",
  47125. extra: 1430/1330,
  47126. bottom: 54/1484
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Normal",
  47133. height: math.unit(6, "feet"),
  47134. default: true
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47140. {
  47141. front: {
  47142. height: math.unit(9, "feet"),
  47143. weight: math.unit(400, "lb"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/kil'aman/front.svg",
  47147. extra: 1210/1159,
  47148. bottom: 109/1319
  47149. }
  47150. },
  47151. head: {
  47152. height: math.unit(2.14, "feet"),
  47153. name: "Head",
  47154. image: {
  47155. source: "./media/characters/kil'aman/head.svg"
  47156. }
  47157. },
  47158. maw: {
  47159. height: math.unit(1.21, "feet"),
  47160. name: "Maw",
  47161. image: {
  47162. source: "./media/characters/kil'aman/maw.svg"
  47163. }
  47164. },
  47165. foot: {
  47166. height: math.unit(1.7, "feet"),
  47167. name: "Foot",
  47168. image: {
  47169. source: "./media/characters/kil'aman/foot.svg"
  47170. }
  47171. },
  47172. dick: {
  47173. height: math.unit(2.1, "feet"),
  47174. name: "Dick",
  47175. image: {
  47176. source: "./media/characters/kil'aman/dick.svg"
  47177. }
  47178. },
  47179. },
  47180. [
  47181. {
  47182. name: "Normal",
  47183. height: math.unit(9, "feet")
  47184. },
  47185. {
  47186. name: "Canon Height",
  47187. height: math.unit(10, "miles"),
  47188. default: true
  47189. },
  47190. {
  47191. name: "Maximum",
  47192. height: math.unit(6e9, "miles")
  47193. },
  47194. ]
  47195. ))
  47196. characterMakers.push(() => makeCharacter(
  47197. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47198. {
  47199. front: {
  47200. height: math.unit(90, "feet"),
  47201. weight: math.unit(675000, "lb"),
  47202. name: "Front",
  47203. image: {
  47204. source: "./media/characters/qadan/front.svg",
  47205. extra: 1012/1004,
  47206. bottom: 78/1090
  47207. }
  47208. },
  47209. back: {
  47210. height: math.unit(90, "feet"),
  47211. weight: math.unit(675000, "lb"),
  47212. name: "Back",
  47213. image: {
  47214. source: "./media/characters/qadan/back.svg",
  47215. extra: 1042/1031,
  47216. bottom: 55/1097
  47217. }
  47218. },
  47219. armored: {
  47220. height: math.unit(90, "feet"),
  47221. weight: math.unit(675000, "lb"),
  47222. name: "Armored",
  47223. image: {
  47224. source: "./media/characters/qadan/armored.svg",
  47225. extra: 1047/1037,
  47226. bottom: 48/1095
  47227. }
  47228. },
  47229. },
  47230. [
  47231. {
  47232. name: "Normal",
  47233. height: math.unit(90, "feet"),
  47234. default: true
  47235. },
  47236. ]
  47237. ))
  47238. characterMakers.push(() => makeCharacter(
  47239. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47240. {
  47241. front: {
  47242. height: math.unit(6, "feet"),
  47243. weight: math.unit(225, "lb"),
  47244. name: "Front",
  47245. image: {
  47246. source: "./media/characters/brooke/front.svg",
  47247. extra: 1050/1010,
  47248. bottom: 66/1116
  47249. }
  47250. },
  47251. back: {
  47252. height: math.unit(6, "feet"),
  47253. weight: math.unit(225, "lb"),
  47254. name: "Back",
  47255. image: {
  47256. source: "./media/characters/brooke/back.svg",
  47257. extra: 1053/1013,
  47258. bottom: 41/1094
  47259. }
  47260. },
  47261. dressed: {
  47262. height: math.unit(6, "feet"),
  47263. weight: math.unit(225, "lb"),
  47264. name: "Dressed",
  47265. image: {
  47266. source: "./media/characters/brooke/dressed.svg",
  47267. extra: 1050/1010,
  47268. bottom: 66/1116
  47269. }
  47270. },
  47271. },
  47272. [
  47273. {
  47274. name: "Canon Height",
  47275. height: math.unit(500, "miles"),
  47276. default: true
  47277. },
  47278. ]
  47279. ))
  47280. characterMakers.push(() => makeCharacter(
  47281. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47282. {
  47283. front: {
  47284. height: math.unit(6 + 2/12, "feet"),
  47285. weight: math.unit(210, "lb"),
  47286. name: "Front",
  47287. image: {
  47288. source: "./media/characters/wubs/front.svg",
  47289. extra: 1345/1325,
  47290. bottom: 70/1415
  47291. }
  47292. },
  47293. back: {
  47294. height: math.unit(6 + 2/12, "feet"),
  47295. weight: math.unit(210, "lb"),
  47296. name: "Back",
  47297. image: {
  47298. source: "./media/characters/wubs/back.svg",
  47299. extra: 1296/1275,
  47300. bottom: 58/1354
  47301. }
  47302. },
  47303. },
  47304. [
  47305. {
  47306. name: "Normal",
  47307. height: math.unit(6 + 2/12, "feet"),
  47308. default: true
  47309. },
  47310. {
  47311. name: "Macro",
  47312. height: math.unit(1000, "feet")
  47313. },
  47314. {
  47315. name: "Megamacro",
  47316. height: math.unit(1, "mile")
  47317. },
  47318. ]
  47319. ))
  47320. characterMakers.push(() => makeCharacter(
  47321. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47322. {
  47323. front: {
  47324. height: math.unit(4, "feet"),
  47325. weight: math.unit(120, "lb"),
  47326. name: "Front",
  47327. image: {
  47328. source: "./media/characters/blue/front.svg",
  47329. extra: 1636/1525,
  47330. bottom: 43/1679
  47331. }
  47332. },
  47333. back: {
  47334. height: math.unit(4, "feet"),
  47335. weight: math.unit(120, "lb"),
  47336. name: "Back",
  47337. image: {
  47338. source: "./media/characters/blue/back.svg",
  47339. extra: 1660/1560,
  47340. bottom: 57/1717
  47341. }
  47342. },
  47343. paws: {
  47344. height: math.unit(0.826, "feet"),
  47345. name: "Paws",
  47346. image: {
  47347. source: "./media/characters/blue/paws.svg"
  47348. }
  47349. },
  47350. },
  47351. [
  47352. {
  47353. name: "Micro",
  47354. height: math.unit(3, "inches")
  47355. },
  47356. {
  47357. name: "Normal",
  47358. height: math.unit(4, "feet"),
  47359. default: true
  47360. },
  47361. {
  47362. name: "Femenine Form",
  47363. height: math.unit(14, "feet")
  47364. },
  47365. {
  47366. name: "Werebat Form",
  47367. height: math.unit(18, "feet")
  47368. },
  47369. ]
  47370. ))
  47371. characterMakers.push(() => makeCharacter(
  47372. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47373. {
  47374. female: {
  47375. height: math.unit(7 + 4/12, "feet"),
  47376. weight: math.unit(243, "lb"),
  47377. name: "Female",
  47378. image: {
  47379. source: "./media/characters/kaya/female.svg",
  47380. extra: 975/898,
  47381. bottom: 34/1009
  47382. }
  47383. },
  47384. herm: {
  47385. height: math.unit(7 + 4/12, "feet"),
  47386. weight: math.unit(243, "lb"),
  47387. name: "Herm",
  47388. image: {
  47389. source: "./media/characters/kaya/herm.svg",
  47390. extra: 975/898,
  47391. bottom: 34/1009
  47392. }
  47393. },
  47394. },
  47395. [
  47396. {
  47397. name: "Normal",
  47398. height: math.unit(7 + 4/12, "feet"),
  47399. default: true
  47400. },
  47401. ]
  47402. ))
  47403. characterMakers.push(() => makeCharacter(
  47404. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47405. {
  47406. female: {
  47407. height: math.unit(9 + 4/12, "feet"),
  47408. weight: math.unit(398, "lb"),
  47409. name: "Female",
  47410. image: {
  47411. source: "./media/characters/kassandra/female.svg",
  47412. extra: 908/839,
  47413. bottom: 61/969
  47414. }
  47415. },
  47416. intersex: {
  47417. height: math.unit(9 + 4/12, "feet"),
  47418. weight: math.unit(398, "lb"),
  47419. name: "Intersex",
  47420. image: {
  47421. source: "./media/characters/kassandra/intersex.svg",
  47422. extra: 908/839,
  47423. bottom: 61/969
  47424. }
  47425. },
  47426. },
  47427. [
  47428. {
  47429. name: "Normal",
  47430. height: math.unit(9 + 4/12, "feet"),
  47431. default: true
  47432. },
  47433. ]
  47434. ))
  47435. characterMakers.push(() => makeCharacter(
  47436. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47437. {
  47438. front: {
  47439. height: math.unit(3, "meters"),
  47440. name: "Front",
  47441. image: {
  47442. source: "./media/characters/amy/front.svg",
  47443. extra: 1380/1343,
  47444. bottom: 70/1450
  47445. }
  47446. },
  47447. back: {
  47448. height: math.unit(3, "meters"),
  47449. name: "Back",
  47450. image: {
  47451. source: "./media/characters/amy/back.svg",
  47452. extra: 1380/1347,
  47453. bottom: 66/1446
  47454. }
  47455. },
  47456. },
  47457. [
  47458. {
  47459. name: "Normal",
  47460. height: math.unit(3, "meters"),
  47461. default: true
  47462. },
  47463. ]
  47464. ))
  47465. characterMakers.push(() => makeCharacter(
  47466. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47467. {
  47468. side: {
  47469. height: math.unit(47, "cm"),
  47470. weight: math.unit(10.8, "kg"),
  47471. name: "Side",
  47472. image: {
  47473. source: "./media/characters/alphaschakal/side.svg",
  47474. extra: 1058/568,
  47475. bottom: 62/1120
  47476. }
  47477. },
  47478. back: {
  47479. height: math.unit(78, "cm"),
  47480. weight: math.unit(10.8, "kg"),
  47481. name: "Back",
  47482. image: {
  47483. source: "./media/characters/alphaschakal/back.svg",
  47484. extra: 1102/942,
  47485. bottom: 185/1287
  47486. }
  47487. },
  47488. head: {
  47489. height: math.unit(28, "cm"),
  47490. name: "Head",
  47491. image: {
  47492. source: "./media/characters/alphaschakal/head.svg",
  47493. extra: 696/508,
  47494. bottom: 0/696
  47495. }
  47496. },
  47497. paw: {
  47498. height: math.unit(16, "cm"),
  47499. name: "Paw",
  47500. image: {
  47501. source: "./media/characters/alphaschakal/paw.svg"
  47502. }
  47503. },
  47504. },
  47505. [
  47506. {
  47507. name: "Normal",
  47508. height: math.unit(47, "cm"),
  47509. default: true
  47510. },
  47511. {
  47512. name: "Macro",
  47513. height: math.unit(340, "cm")
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47519. {
  47520. front: {
  47521. height: math.unit(36, "earths"),
  47522. name: "Front",
  47523. image: {
  47524. source: "./media/characters/ecobyss/front.svg",
  47525. extra: 1282/1215,
  47526. bottom: 11/1293
  47527. }
  47528. },
  47529. back: {
  47530. height: math.unit(36, "earths"),
  47531. name: "Back",
  47532. image: {
  47533. source: "./media/characters/ecobyss/back.svg",
  47534. extra: 1291/1222,
  47535. bottom: 8/1299
  47536. }
  47537. },
  47538. },
  47539. [
  47540. {
  47541. name: "Normal",
  47542. height: math.unit(36, "earths"),
  47543. default: true
  47544. },
  47545. ]
  47546. ))
  47547. characterMakers.push(() => makeCharacter(
  47548. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47549. {
  47550. front: {
  47551. height: math.unit(12, "feet"),
  47552. name: "Front",
  47553. image: {
  47554. source: "./media/characters/vasuk/front.svg",
  47555. extra: 1326/1207,
  47556. bottom: 64/1390
  47557. }
  47558. },
  47559. },
  47560. [
  47561. {
  47562. name: "Normal",
  47563. height: math.unit(12, "feet"),
  47564. default: true
  47565. },
  47566. ]
  47567. ))
  47568. characterMakers.push(() => makeCharacter(
  47569. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47570. {
  47571. side: {
  47572. height: math.unit(100, "feet"),
  47573. name: "Side",
  47574. image: {
  47575. source: "./media/characters/linneaus/side.svg",
  47576. extra: 987/807,
  47577. bottom: 47/1034
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Macro",
  47584. height: math.unit(100, "feet"),
  47585. default: true
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47591. {
  47592. front: {
  47593. height: math.unit(8, "feet"),
  47594. weight: math.unit(1200, "lb"),
  47595. name: "Front",
  47596. image: {
  47597. source: "./media/characters/nyterious-daligdig/front.svg",
  47598. extra: 1284/1094,
  47599. bottom: 84/1368
  47600. }
  47601. },
  47602. back: {
  47603. height: math.unit(8, "feet"),
  47604. weight: math.unit(1200, "lb"),
  47605. name: "Back",
  47606. image: {
  47607. source: "./media/characters/nyterious-daligdig/back.svg",
  47608. extra: 1301/1121,
  47609. bottom: 129/1430
  47610. }
  47611. },
  47612. mouth: {
  47613. height: math.unit(1.464, "feet"),
  47614. name: "Mouth",
  47615. image: {
  47616. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47617. }
  47618. },
  47619. },
  47620. [
  47621. {
  47622. name: "Small",
  47623. height: math.unit(8, "feet"),
  47624. default: true
  47625. },
  47626. {
  47627. name: "Normal",
  47628. height: math.unit(15, "feet")
  47629. },
  47630. {
  47631. name: "Macro",
  47632. height: math.unit(90, "feet")
  47633. },
  47634. ]
  47635. ))
  47636. characterMakers.push(() => makeCharacter(
  47637. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47638. {
  47639. front: {
  47640. height: math.unit(7 + 4/12, "feet"),
  47641. weight: math.unit(252, "lb"),
  47642. name: "Front",
  47643. image: {
  47644. source: "./media/characters/bandel/front.svg",
  47645. extra: 1946/1775,
  47646. bottom: 26/1972
  47647. }
  47648. },
  47649. back: {
  47650. height: math.unit(7 + 4/12, "feet"),
  47651. weight: math.unit(252, "lb"),
  47652. name: "Back",
  47653. image: {
  47654. source: "./media/characters/bandel/back.svg",
  47655. extra: 1940/1770,
  47656. bottom: 25/1965
  47657. }
  47658. },
  47659. maw: {
  47660. height: math.unit(2.15, "feet"),
  47661. name: "Maw",
  47662. image: {
  47663. source: "./media/characters/bandel/maw.svg"
  47664. }
  47665. },
  47666. stomach: {
  47667. height: math.unit(1.95, "feet"),
  47668. name: "Stomach",
  47669. image: {
  47670. source: "./media/characters/bandel/stomach.svg"
  47671. }
  47672. },
  47673. },
  47674. [
  47675. {
  47676. name: "Normal",
  47677. height: math.unit(7 + 4/12, "feet"),
  47678. default: true
  47679. },
  47680. ]
  47681. ))
  47682. characterMakers.push(() => makeCharacter(
  47683. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47684. {
  47685. front: {
  47686. height: math.unit(10 + 5/12, "feet"),
  47687. weight: math.unit(773.5, "kg"),
  47688. name: "Front",
  47689. image: {
  47690. source: "./media/characters/zed/front.svg",
  47691. extra: 987/941,
  47692. bottom: 52/1039
  47693. }
  47694. },
  47695. },
  47696. [
  47697. {
  47698. name: "Short",
  47699. height: math.unit(5 + 4/12, "feet")
  47700. },
  47701. {
  47702. name: "Average",
  47703. height: math.unit(10 + 5/12, "feet"),
  47704. default: true
  47705. },
  47706. {
  47707. name: "Mini-Macro",
  47708. height: math.unit(24 + 9/12, "feet")
  47709. },
  47710. {
  47711. name: "Macro",
  47712. height: math.unit(249, "feet")
  47713. },
  47714. {
  47715. name: "Mega-Macro",
  47716. height: math.unit(12490, "feet")
  47717. },
  47718. {
  47719. name: "Giga-Macro",
  47720. height: math.unit(24.9, "miles")
  47721. },
  47722. {
  47723. name: "Tera-Macro",
  47724. height: math.unit(24900, "miles")
  47725. },
  47726. {
  47727. name: "Cosmic Scale",
  47728. height: math.unit(38.9, "lightyears")
  47729. },
  47730. {
  47731. name: "Universal Scale",
  47732. height: math.unit(138e12, "lightyears")
  47733. },
  47734. ]
  47735. ))
  47736. characterMakers.push(() => makeCharacter(
  47737. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47738. {
  47739. front: {
  47740. height: math.unit(1561, "inches"),
  47741. name: "Front",
  47742. image: {
  47743. source: "./media/characters/ivan/front.svg",
  47744. extra: 1126/1071,
  47745. bottom: 26/1152
  47746. }
  47747. },
  47748. back: {
  47749. height: math.unit(1561, "inches"),
  47750. name: "Back",
  47751. image: {
  47752. source: "./media/characters/ivan/back.svg",
  47753. extra: 1134/1079,
  47754. bottom: 30/1164
  47755. }
  47756. },
  47757. },
  47758. [
  47759. {
  47760. name: "Normal",
  47761. height: math.unit(1561, "inches"),
  47762. default: true
  47763. },
  47764. ]
  47765. ))
  47766. characterMakers.push(() => makeCharacter(
  47767. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47768. {
  47769. front: {
  47770. height: math.unit(5 + 7/12, "feet"),
  47771. weight: math.unit(150, "lb"),
  47772. name: "Front",
  47773. image: {
  47774. source: "./media/characters/robin-arctic-hare/front.svg",
  47775. extra: 1148/974,
  47776. bottom: 20/1168
  47777. }
  47778. },
  47779. },
  47780. [
  47781. {
  47782. name: "Normal",
  47783. height: math.unit(5 + 7/12, "feet"),
  47784. default: true
  47785. },
  47786. ]
  47787. ))
  47788. characterMakers.push(() => makeCharacter(
  47789. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47790. {
  47791. side: {
  47792. height: math.unit(5, "feet"),
  47793. name: "Side",
  47794. image: {
  47795. source: "./media/characters/birch/side.svg",
  47796. extra: 985/796,
  47797. bottom: 111/1096
  47798. }
  47799. },
  47800. },
  47801. [
  47802. {
  47803. name: "Normal",
  47804. height: math.unit(5, "feet"),
  47805. default: true
  47806. },
  47807. ]
  47808. ))
  47809. characterMakers.push(() => makeCharacter(
  47810. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47811. {
  47812. front: {
  47813. height: math.unit(4, "feet"),
  47814. name: "Front",
  47815. image: {
  47816. source: "./media/characters/rasp/front.svg",
  47817. extra: 561/478,
  47818. bottom: 74/635
  47819. }
  47820. },
  47821. },
  47822. [
  47823. {
  47824. name: "Normal",
  47825. height: math.unit(4, "feet"),
  47826. default: true
  47827. },
  47828. ]
  47829. ))
  47830. characterMakers.push(() => makeCharacter(
  47831. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47832. {
  47833. front: {
  47834. height: math.unit(4 + 6/12, "feet"),
  47835. name: "Front",
  47836. image: {
  47837. source: "./media/characters/agatha/front.svg",
  47838. extra: 947/933,
  47839. bottom: 42/989
  47840. }
  47841. },
  47842. back: {
  47843. height: math.unit(4 + 6/12, "feet"),
  47844. name: "Back",
  47845. image: {
  47846. source: "./media/characters/agatha/back.svg",
  47847. extra: 935/922,
  47848. bottom: 48/983
  47849. }
  47850. },
  47851. },
  47852. [
  47853. {
  47854. name: "Normal",
  47855. height: math.unit(4 + 6 /12, "feet"),
  47856. default: true
  47857. },
  47858. {
  47859. name: "Max Size",
  47860. height: math.unit(500, "feet")
  47861. },
  47862. ]
  47863. ))
  47864. characterMakers.push(() => makeCharacter(
  47865. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47866. {
  47867. side: {
  47868. height: math.unit(30, "feet"),
  47869. name: "Side",
  47870. image: {
  47871. source: "./media/characters/roggy/side.svg",
  47872. extra: 909/643,
  47873. bottom: 63/972
  47874. }
  47875. },
  47876. lounging: {
  47877. height: math.unit(20, "feet"),
  47878. name: "Lounging",
  47879. image: {
  47880. source: "./media/characters/roggy/lounging.svg",
  47881. extra: 643/479,
  47882. bottom: 145/788
  47883. }
  47884. },
  47885. handpaw: {
  47886. height: math.unit(13.1, "feet"),
  47887. name: "Handpaw",
  47888. image: {
  47889. source: "./media/characters/roggy/handpaw.svg"
  47890. }
  47891. },
  47892. footpaw: {
  47893. height: math.unit(15.8, "feet"),
  47894. name: "Footpaw",
  47895. image: {
  47896. source: "./media/characters/roggy/footpaw.svg"
  47897. }
  47898. },
  47899. },
  47900. [
  47901. {
  47902. name: "Menacing",
  47903. height: math.unit(30, "feet"),
  47904. default: true
  47905. },
  47906. ]
  47907. ))
  47908. characterMakers.push(() => makeCharacter(
  47909. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47910. {
  47911. front: {
  47912. height: math.unit(5 + 7/12, "feet"),
  47913. weight: math.unit(135, "lb"),
  47914. name: "Front",
  47915. image: {
  47916. source: "./media/characters/naomi/front.svg",
  47917. extra: 1209/1154,
  47918. bottom: 129/1338
  47919. }
  47920. },
  47921. back: {
  47922. height: math.unit(5 + 7/12, "feet"),
  47923. weight: math.unit(135, "lb"),
  47924. name: "Back",
  47925. image: {
  47926. source: "./media/characters/naomi/back.svg",
  47927. extra: 1252/1190,
  47928. bottom: 23/1275
  47929. }
  47930. },
  47931. },
  47932. [
  47933. {
  47934. name: "Normal",
  47935. height: math.unit(5 + 7 /12, "feet"),
  47936. default: true
  47937. },
  47938. ]
  47939. ))
  47940. characterMakers.push(() => makeCharacter(
  47941. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47942. {
  47943. side: {
  47944. height: math.unit(35, "meters"),
  47945. name: "Side",
  47946. image: {
  47947. source: "./media/characters/kimpi/side.svg",
  47948. extra: 419/382,
  47949. bottom: 63/482
  47950. }
  47951. },
  47952. hand: {
  47953. height: math.unit(8.96, "meters"),
  47954. name: "Hand",
  47955. image: {
  47956. source: "./media/characters/kimpi/hand.svg"
  47957. }
  47958. },
  47959. },
  47960. [
  47961. {
  47962. name: "Normal",
  47963. height: math.unit(35, "meters"),
  47964. default: true
  47965. },
  47966. ]
  47967. ))
  47968. characterMakers.push(() => makeCharacter(
  47969. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47970. {
  47971. front: {
  47972. height: math.unit(4 + 4/12, "feet"),
  47973. name: "Front",
  47974. image: {
  47975. source: "./media/characters/pepper-purrloin/front.svg",
  47976. extra: 1141/1024,
  47977. bottom: 21/1162
  47978. }
  47979. },
  47980. },
  47981. [
  47982. {
  47983. name: "Normal",
  47984. height: math.unit(4 + 4/12, "feet"),
  47985. default: true
  47986. },
  47987. ]
  47988. ))
  47989. characterMakers.push(() => makeCharacter(
  47990. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47991. {
  47992. front: {
  47993. height: math.unit(6 + 2/12, "feet"),
  47994. name: "Front",
  47995. image: {
  47996. source: "./media/characters/raphael/front.svg",
  47997. extra: 1101/962,
  47998. bottom: 59/1160
  47999. }
  48000. },
  48001. },
  48002. [
  48003. {
  48004. name: "Normal",
  48005. height: math.unit(6 + 2/12, "feet"),
  48006. default: true
  48007. },
  48008. ]
  48009. ))
  48010. characterMakers.push(() => makeCharacter(
  48011. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48012. {
  48013. front: {
  48014. height: math.unit(6, "feet"),
  48015. weight: math.unit(150, "lb"),
  48016. name: "Front",
  48017. image: {
  48018. source: "./media/characters/victor-williams/front.svg",
  48019. extra: 1894/1825,
  48020. bottom: 67/1961
  48021. }
  48022. },
  48023. },
  48024. [
  48025. {
  48026. name: "Normal",
  48027. height: math.unit(6, "feet"),
  48028. default: true
  48029. },
  48030. ]
  48031. ))
  48032. characterMakers.push(() => makeCharacter(
  48033. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48034. {
  48035. front: {
  48036. height: math.unit(5 + 8/12, "feet"),
  48037. weight: math.unit(150, "lb"),
  48038. name: "Front",
  48039. image: {
  48040. source: "./media/characters/rachel/front.svg",
  48041. extra: 1902/1787,
  48042. bottom: 46/1948
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Base Height",
  48049. height: math.unit(5 + 8/12, "feet"),
  48050. default: true
  48051. },
  48052. {
  48053. name: "Macro",
  48054. height: math.unit(200, "feet")
  48055. },
  48056. {
  48057. name: "Mega Macro",
  48058. height: math.unit(1, "mile")
  48059. },
  48060. {
  48061. name: "Giga Macro",
  48062. height: math.unit(1500, "miles")
  48063. },
  48064. {
  48065. name: "Tera Macro",
  48066. height: math.unit(8000, "miles")
  48067. },
  48068. {
  48069. name: "Tera Macro+",
  48070. height: math.unit(2e5, "miles")
  48071. },
  48072. ]
  48073. ))
  48074. characterMakers.push(() => makeCharacter(
  48075. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48076. {
  48077. front: {
  48078. height: math.unit(6.5, "feet"),
  48079. name: "Front",
  48080. image: {
  48081. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48082. extra: 860/819,
  48083. bottom: 307/1167
  48084. }
  48085. },
  48086. back: {
  48087. height: math.unit(6.5, "feet"),
  48088. name: "Back",
  48089. image: {
  48090. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48091. extra: 880/837,
  48092. bottom: 395/1275
  48093. }
  48094. },
  48095. sleeping: {
  48096. height: math.unit(2.79, "feet"),
  48097. name: "Sleeping",
  48098. image: {
  48099. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48100. extra: 465/383,
  48101. bottom: 263/728
  48102. }
  48103. },
  48104. maw: {
  48105. height: math.unit(2.52, "feet"),
  48106. name: "Maw",
  48107. image: {
  48108. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48109. }
  48110. },
  48111. },
  48112. [
  48113. {
  48114. name: "Normal",
  48115. height: math.unit(6.5, "feet"),
  48116. default: true
  48117. },
  48118. ]
  48119. ))
  48120. characterMakers.push(() => makeCharacter(
  48121. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48122. {
  48123. front: {
  48124. height: math.unit(5, "feet"),
  48125. name: "Front",
  48126. image: {
  48127. source: "./media/characters/nova-nerium/front.svg",
  48128. extra: 1548/1392,
  48129. bottom: 374/1922
  48130. }
  48131. },
  48132. back: {
  48133. height: math.unit(5, "feet"),
  48134. name: "Back",
  48135. image: {
  48136. source: "./media/characters/nova-nerium/back.svg",
  48137. extra: 1658/1468,
  48138. bottom: 257/1915
  48139. }
  48140. },
  48141. },
  48142. [
  48143. {
  48144. name: "Normal",
  48145. height: math.unit(5, "feet"),
  48146. default: true
  48147. },
  48148. ]
  48149. ))
  48150. characterMakers.push(() => makeCharacter(
  48151. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48152. {
  48153. front: {
  48154. height: math.unit(5 + 4/12, "feet"),
  48155. name: "Front",
  48156. image: {
  48157. source: "./media/characters/ashe-pyriph/front.svg",
  48158. extra: 1935/1747,
  48159. bottom: 60/1995
  48160. }
  48161. },
  48162. },
  48163. [
  48164. {
  48165. name: "Normal",
  48166. height: math.unit(5 + 4/12, "feet"),
  48167. default: true
  48168. },
  48169. ]
  48170. ))
  48171. characterMakers.push(() => makeCharacter(
  48172. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48173. {
  48174. front: {
  48175. height: math.unit(8.7, "feet"),
  48176. name: "Front",
  48177. image: {
  48178. source: "./media/characters/flicker-wisp/front.svg",
  48179. extra: 1835/1613,
  48180. bottom: 449/2284
  48181. }
  48182. },
  48183. side: {
  48184. height: math.unit(8.7, "feet"),
  48185. name: "Side",
  48186. image: {
  48187. source: "./media/characters/flicker-wisp/side.svg",
  48188. extra: 1841/1642,
  48189. bottom: 336/2177
  48190. },
  48191. default: true
  48192. },
  48193. maw: {
  48194. height: math.unit(3.35, "feet"),
  48195. name: "Maw",
  48196. image: {
  48197. source: "./media/characters/flicker-wisp/maw.svg",
  48198. extra: 2338/1506,
  48199. bottom: 0/2338
  48200. }
  48201. },
  48202. ovipositor: {
  48203. height: math.unit(4.95, "feet"),
  48204. name: "Ovipositor",
  48205. image: {
  48206. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48207. }
  48208. },
  48209. egg: {
  48210. height: math.unit(0.385, "feet"),
  48211. weight: math.unit(2, "lb"),
  48212. name: "Egg",
  48213. image: {
  48214. source: "./media/characters/flicker-wisp/egg.svg"
  48215. }
  48216. },
  48217. },
  48218. [
  48219. {
  48220. name: "Normal",
  48221. height: math.unit(8.7, "feet"),
  48222. default: true
  48223. },
  48224. ]
  48225. ))
  48226. characterMakers.push(() => makeCharacter(
  48227. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48228. {
  48229. side: {
  48230. height: math.unit(11, "feet"),
  48231. name: "Side",
  48232. image: {
  48233. source: "./media/characters/faefnul/side.svg",
  48234. extra: 1100/1007,
  48235. bottom: 0/1100
  48236. }
  48237. },
  48238. },
  48239. [
  48240. {
  48241. name: "Normal",
  48242. height: math.unit(11, "feet"),
  48243. default: true
  48244. },
  48245. ]
  48246. ))
  48247. characterMakers.push(() => makeCharacter(
  48248. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48249. {
  48250. front: {
  48251. height: math.unit(6 + 2/12, "feet"),
  48252. name: "Front",
  48253. image: {
  48254. source: "./media/characters/shady/front.svg",
  48255. extra: 502/461,
  48256. bottom: 9/511
  48257. }
  48258. },
  48259. kneeling: {
  48260. height: math.unit(4.6, "feet"),
  48261. name: "Kneeling",
  48262. image: {
  48263. source: "./media/characters/shady/kneeling.svg",
  48264. extra: 1328/1219,
  48265. bottom: 117/1445
  48266. }
  48267. },
  48268. maw: {
  48269. height: math.unit(2, "feet"),
  48270. name: "Maw",
  48271. image: {
  48272. source: "./media/characters/shady/maw.svg"
  48273. }
  48274. },
  48275. },
  48276. [
  48277. {
  48278. name: "Nano",
  48279. height: math.unit(1, "mm")
  48280. },
  48281. {
  48282. name: "Micro",
  48283. height: math.unit(12, "mm")
  48284. },
  48285. {
  48286. name: "Tiny",
  48287. height: math.unit(3, "inches")
  48288. },
  48289. {
  48290. name: "Normal",
  48291. height: math.unit(6 + 2/12, "feet"),
  48292. default: true
  48293. },
  48294. {
  48295. name: "Big",
  48296. height: math.unit(15, "feet")
  48297. },
  48298. {
  48299. name: "Macro",
  48300. height: math.unit(150, "feet")
  48301. },
  48302. {
  48303. name: "Titanic",
  48304. height: math.unit(500, "feet")
  48305. },
  48306. ]
  48307. ))
  48308. characterMakers.push(() => makeCharacter(
  48309. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48310. {
  48311. front: {
  48312. height: math.unit(12, "feet"),
  48313. name: "Front",
  48314. image: {
  48315. source: "./media/characters/fenrir/front.svg",
  48316. extra: 968/875,
  48317. bottom: 22/990
  48318. }
  48319. },
  48320. },
  48321. [
  48322. {
  48323. name: "Big",
  48324. height: math.unit(12, "feet"),
  48325. default: true
  48326. },
  48327. ]
  48328. ))
  48329. characterMakers.push(() => makeCharacter(
  48330. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48331. {
  48332. front: {
  48333. height: math.unit(5 + 4/12, "feet"),
  48334. name: "Front",
  48335. image: {
  48336. source: "./media/characters/makar/front.svg",
  48337. extra: 1181/1112,
  48338. bottom: 78/1259
  48339. }
  48340. },
  48341. },
  48342. [
  48343. {
  48344. name: "Normal",
  48345. height: math.unit(5 + 4/12, "feet"),
  48346. default: true
  48347. },
  48348. ]
  48349. ))
  48350. characterMakers.push(() => makeCharacter(
  48351. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48352. {
  48353. front: {
  48354. height: math.unit(5 + 7/12, "feet"),
  48355. name: "Front",
  48356. image: {
  48357. source: "./media/characters/callow/front.svg",
  48358. extra: 1482/1304,
  48359. bottom: 23/1505
  48360. }
  48361. },
  48362. back: {
  48363. height: math.unit(5 + 7/12, "feet"),
  48364. name: "Back",
  48365. image: {
  48366. source: "./media/characters/callow/back.svg",
  48367. extra: 1484/1296,
  48368. bottom: 25/1509
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Micro",
  48375. height: math.unit(3, "inches"),
  48376. default: true
  48377. },
  48378. {
  48379. name: "Normal",
  48380. height: math.unit(5 + 7/12, "feet")
  48381. },
  48382. ]
  48383. ))
  48384. characterMakers.push(() => makeCharacter(
  48385. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48386. {
  48387. front: {
  48388. height: math.unit(6 + 2/12, "feet"),
  48389. name: "Front",
  48390. image: {
  48391. source: "./media/characters/natel/front.svg",
  48392. extra: 1833/1692,
  48393. bottom: 166/1999
  48394. }
  48395. },
  48396. },
  48397. [
  48398. {
  48399. name: "Normal",
  48400. height: math.unit(6 + 2/12, "feet"),
  48401. default: true
  48402. },
  48403. ]
  48404. ))
  48405. characterMakers.push(() => makeCharacter(
  48406. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48407. {
  48408. front: {
  48409. height: math.unit(1.75, "meters"),
  48410. name: "Front",
  48411. image: {
  48412. source: "./media/characters/misu/front.svg",
  48413. extra: 1690/1558,
  48414. bottom: 234/1924
  48415. }
  48416. },
  48417. back: {
  48418. height: math.unit(1.75, "meters"),
  48419. name: "Back",
  48420. image: {
  48421. source: "./media/characters/misu/back.svg",
  48422. extra: 1762/1618,
  48423. bottom: 146/1908
  48424. }
  48425. },
  48426. frontNude: {
  48427. height: math.unit(1.75, "meters"),
  48428. name: "Front (Nude)",
  48429. image: {
  48430. source: "./media/characters/misu/front-nude.svg",
  48431. extra: 1690/1558,
  48432. bottom: 234/1924
  48433. }
  48434. },
  48435. backNude: {
  48436. height: math.unit(1.75, "meters"),
  48437. name: "Back (Nude)",
  48438. image: {
  48439. source: "./media/characters/misu/back-nude.svg",
  48440. extra: 1762/1618,
  48441. bottom: 146/1908
  48442. }
  48443. },
  48444. frontErect: {
  48445. height: math.unit(1.75, "meters"),
  48446. name: "Front (Erect)",
  48447. image: {
  48448. source: "./media/characters/misu/front-erect.svg",
  48449. extra: 1690/1558,
  48450. bottom: 234/1924
  48451. }
  48452. },
  48453. maw: {
  48454. height: math.unit(0.47, "meters"),
  48455. name: "Maw",
  48456. image: {
  48457. source: "./media/characters/misu/maw.svg"
  48458. }
  48459. },
  48460. head: {
  48461. height: math.unit(0.35, "meters"),
  48462. name: "Head",
  48463. image: {
  48464. source: "./media/characters/misu/head.svg"
  48465. }
  48466. },
  48467. rear: {
  48468. height: math.unit(0.47, "meters"),
  48469. name: "Rear",
  48470. image: {
  48471. source: "./media/characters/misu/rear.svg"
  48472. }
  48473. },
  48474. },
  48475. [
  48476. {
  48477. name: "Normal",
  48478. height: math.unit(1.75, "meters")
  48479. },
  48480. {
  48481. name: "Not good for the people",
  48482. height: math.unit(42, "meters")
  48483. },
  48484. {
  48485. name: "Not good for the neighborhood",
  48486. height: math.unit(135, "meters")
  48487. },
  48488. {
  48489. name: "Bit bigger problem",
  48490. height: math.unit(380, "meters"),
  48491. default: true
  48492. },
  48493. {
  48494. name: "Not good for the city",
  48495. height: math.unit(1.5, "km")
  48496. },
  48497. {
  48498. name: "Not good for the county",
  48499. height: math.unit(5.5, "km")
  48500. },
  48501. {
  48502. name: "Not good for the state",
  48503. height: math.unit(25, "km")
  48504. },
  48505. {
  48506. name: "Not good for the country",
  48507. height: math.unit(125, "km")
  48508. },
  48509. {
  48510. name: "Not good for the continent",
  48511. height: math.unit(2100, "km")
  48512. },
  48513. {
  48514. name: "Not good for the planet",
  48515. height: math.unit(35000, "km")
  48516. },
  48517. {
  48518. name: "Just no",
  48519. height: math.unit(8.5e18, "km")
  48520. },
  48521. ]
  48522. ))
  48523. characterMakers.push(() => makeCharacter(
  48524. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48525. {
  48526. front: {
  48527. height: math.unit(6.5, "feet"),
  48528. name: "Front",
  48529. image: {
  48530. source: "./media/characters/poppy/front.svg",
  48531. extra: 1878/1812,
  48532. bottom: 43/1921
  48533. }
  48534. },
  48535. feet: {
  48536. height: math.unit(1.06, "feet"),
  48537. name: "Feet",
  48538. image: {
  48539. source: "./media/characters/poppy/feet.svg",
  48540. extra: 1083/1083,
  48541. bottom: 87/1170
  48542. }
  48543. },
  48544. },
  48545. [
  48546. {
  48547. name: "Human",
  48548. height: math.unit(6.5, "feet")
  48549. },
  48550. {
  48551. name: "Default",
  48552. height: math.unit(300, "feet"),
  48553. default: true
  48554. },
  48555. {
  48556. name: "Huge",
  48557. height: math.unit(850, "feet")
  48558. },
  48559. {
  48560. name: "Mega",
  48561. height: math.unit(8000, "feet")
  48562. },
  48563. {
  48564. name: "Giga",
  48565. height: math.unit(300, "miles")
  48566. },
  48567. ]
  48568. ))
  48569. characterMakers.push(() => makeCharacter(
  48570. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48571. {
  48572. bipedal: {
  48573. height: math.unit(7, "feet"),
  48574. name: "Bipedal",
  48575. image: {
  48576. source: "./media/characters/zener/bipedal.svg",
  48577. extra: 874/805,
  48578. bottom: 109/983
  48579. }
  48580. },
  48581. quadrupedal: {
  48582. height: math.unit(4.64, "feet"),
  48583. name: "Quadrupedal",
  48584. image: {
  48585. source: "./media/characters/zener/quadrupedal.svg",
  48586. extra: 638/507,
  48587. bottom: 190/828
  48588. }
  48589. },
  48590. cock: {
  48591. height: math.unit(18, "inches"),
  48592. name: "Cock",
  48593. image: {
  48594. source: "./media/characters/zener/cock.svg"
  48595. }
  48596. },
  48597. },
  48598. [
  48599. {
  48600. name: "Normal",
  48601. height: math.unit(7, "feet"),
  48602. default: true
  48603. },
  48604. ]
  48605. ))
  48606. characterMakers.push(() => makeCharacter(
  48607. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48608. {
  48609. nude: {
  48610. height: math.unit(5 + 6/12, "feet"),
  48611. name: "Nude",
  48612. image: {
  48613. source: "./media/characters/charlie-dog/nude.svg",
  48614. extra: 768/734,
  48615. bottom: 26/794
  48616. }
  48617. },
  48618. dressed: {
  48619. height: math.unit(5 + 6/12, "feet"),
  48620. name: "Dressed",
  48621. image: {
  48622. source: "./media/characters/charlie-dog/dressed.svg",
  48623. extra: 768/734,
  48624. bottom: 26/794
  48625. }
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(5 + 6/12, "feet"),
  48632. default: true
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48638. {
  48639. front: {
  48640. height: math.unit(6 + 4/12, "feet"),
  48641. name: "Front",
  48642. image: {
  48643. source: "./media/characters/ir'istrasz/front.svg",
  48644. extra: 1014/977,
  48645. bottom: 65/1079
  48646. }
  48647. },
  48648. back: {
  48649. height: math.unit(6 + 4/12, "feet"),
  48650. name: "Back",
  48651. image: {
  48652. source: "./media/characters/ir'istrasz/back.svg",
  48653. extra: 1024/992,
  48654. bottom: 34/1058
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Normal",
  48661. height: math.unit(6 + 4/12, "feet"),
  48662. default: true
  48663. },
  48664. ]
  48665. ))
  48666. characterMakers.push(() => makeCharacter(
  48667. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48668. {
  48669. front: {
  48670. height: math.unit(5 + 8/12, "feet"),
  48671. name: "Front",
  48672. image: {
  48673. source: "./media/characters/dee-ditto/front.svg",
  48674. extra: 1874/1785,
  48675. bottom: 68/1942
  48676. }
  48677. },
  48678. back: {
  48679. height: math.unit(5 + 8/12, "feet"),
  48680. name: "Back",
  48681. image: {
  48682. source: "./media/characters/dee-ditto/back.svg",
  48683. extra: 1870/1783,
  48684. bottom: 77/1947
  48685. }
  48686. },
  48687. },
  48688. [
  48689. {
  48690. name: "Normal",
  48691. height: math.unit(5 + 8/12, "feet"),
  48692. default: true
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48698. {
  48699. front: {
  48700. height: math.unit(7 + 6/12, "feet"),
  48701. name: "Front",
  48702. image: {
  48703. source: "./media/characters/fey/front.svg",
  48704. extra: 995/979,
  48705. bottom: 30/1025
  48706. }
  48707. },
  48708. back: {
  48709. height: math.unit(7 + 6/12, "feet"),
  48710. name: "Back",
  48711. image: {
  48712. source: "./media/characters/fey/back.svg",
  48713. extra: 1079/1008,
  48714. bottom: 5/1084
  48715. }
  48716. },
  48717. dressed: {
  48718. height: math.unit(7 + 6/12, "feet"),
  48719. name: "Dressed",
  48720. image: {
  48721. source: "./media/characters/fey/dressed.svg",
  48722. extra: 995/979,
  48723. bottom: 30/1025
  48724. }
  48725. },
  48726. },
  48727. [
  48728. {
  48729. name: "Normal",
  48730. height: math.unit(7 + 6/12, "feet"),
  48731. default: true
  48732. },
  48733. ]
  48734. ))
  48735. characterMakers.push(() => makeCharacter(
  48736. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48737. {
  48738. standing: {
  48739. height: math.unit(17, "feet"),
  48740. name: "Standing",
  48741. image: {
  48742. source: "./media/characters/aster/standing.svg",
  48743. extra: 1798/1598,
  48744. bottom: 117/1915
  48745. }
  48746. },
  48747. },
  48748. [
  48749. {
  48750. name: "Normal",
  48751. height: math.unit(17, "feet"),
  48752. default: true
  48753. },
  48754. {
  48755. name: "Homewrecker",
  48756. height: math.unit(95, "feet")
  48757. },
  48758. {
  48759. name: "Planet Devourer",
  48760. height: math.unit(1008000, "miles")
  48761. },
  48762. ]
  48763. ))
  48764. characterMakers.push(() => makeCharacter(
  48765. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48766. {
  48767. front: {
  48768. height: math.unit(6 + 5/12, "feet"),
  48769. weight: math.unit(265, "lb"),
  48770. name: "Front",
  48771. image: {
  48772. source: "./media/characters/devon-childs/front.svg",
  48773. extra: 1795/1721,
  48774. bottom: 41/1836
  48775. }
  48776. },
  48777. side: {
  48778. height: math.unit(6 + 5/12, "feet"),
  48779. weight: math.unit(265, "lb"),
  48780. name: "Side",
  48781. image: {
  48782. source: "./media/characters/devon-childs/side.svg",
  48783. extra: 1812/1738,
  48784. bottom: 30/1842
  48785. }
  48786. },
  48787. back: {
  48788. height: math.unit(6 + 5/12, "feet"),
  48789. weight: math.unit(265, "lb"),
  48790. name: "Back",
  48791. image: {
  48792. source: "./media/characters/devon-childs/back.svg",
  48793. extra: 1808/1735,
  48794. bottom: 23/1831
  48795. }
  48796. },
  48797. hand: {
  48798. height: math.unit(1.464, "feet"),
  48799. name: "Hand",
  48800. image: {
  48801. source: "./media/characters/devon-childs/hand.svg"
  48802. }
  48803. },
  48804. foot: {
  48805. height: math.unit(1.6, "feet"),
  48806. name: "Foot",
  48807. image: {
  48808. source: "./media/characters/devon-childs/foot.svg"
  48809. }
  48810. },
  48811. },
  48812. [
  48813. {
  48814. name: "Micro",
  48815. height: math.unit(7, "cm")
  48816. },
  48817. {
  48818. name: "Normal",
  48819. height: math.unit(6 + 5/12, "feet"),
  48820. default: true
  48821. },
  48822. {
  48823. name: "Macro",
  48824. height: math.unit(154, "feet")
  48825. },
  48826. ]
  48827. ))
  48828. characterMakers.push(() => makeCharacter(
  48829. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48830. {
  48831. front: {
  48832. height: math.unit(6, "feet"),
  48833. weight: math.unit(180, "lb"),
  48834. name: "Front",
  48835. image: {
  48836. source: "./media/characters/lydemox-vir/front.svg",
  48837. extra: 1632/1435,
  48838. bottom: 58/1690
  48839. }
  48840. },
  48841. frontSFW: {
  48842. height: math.unit(6, "feet"),
  48843. weight: math.unit(180, "lb"),
  48844. name: "Front (SFW)",
  48845. image: {
  48846. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48847. extra: 1632/1435,
  48848. bottom: 58/1690
  48849. }
  48850. },
  48851. back: {
  48852. height: math.unit(6, "feet"),
  48853. weight: math.unit(180, "lb"),
  48854. name: "Back",
  48855. image: {
  48856. source: "./media/characters/lydemox-vir/back.svg",
  48857. extra: 1593/1408,
  48858. bottom: 31/1624
  48859. }
  48860. },
  48861. paw: {
  48862. height: math.unit(1.85, "feet"),
  48863. name: "Paw",
  48864. image: {
  48865. source: "./media/characters/lydemox-vir/paw.svg"
  48866. }
  48867. },
  48868. dick: {
  48869. height: math.unit(1.8, "feet"),
  48870. name: "Dick",
  48871. image: {
  48872. source: "./media/characters/lydemox-vir/dick.svg"
  48873. }
  48874. },
  48875. },
  48876. [
  48877. {
  48878. name: "Macro",
  48879. height: math.unit(100, "feet"),
  48880. default: true
  48881. },
  48882. {
  48883. name: "Teramacro",
  48884. height: math.unit(1, "earth")
  48885. },
  48886. {
  48887. name: "Planetary",
  48888. height: math.unit(20, "earths")
  48889. },
  48890. ]
  48891. ))
  48892. characterMakers.push(() => makeCharacter(
  48893. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48894. {
  48895. front: {
  48896. height: math.unit(15 + 8/12, "feet"),
  48897. weight: math.unit(1237, "kg"),
  48898. name: "Front",
  48899. image: {
  48900. source: "./media/characters/mia/front.svg",
  48901. extra: 1573/1446,
  48902. bottom: 58/1631
  48903. }
  48904. },
  48905. },
  48906. [
  48907. {
  48908. name: "Small",
  48909. height: math.unit(9 + 5/12, "feet")
  48910. },
  48911. {
  48912. name: "Normal",
  48913. height: math.unit(15 + 8/12, "feet"),
  48914. default: true
  48915. },
  48916. ]
  48917. ))
  48918. characterMakers.push(() => makeCharacter(
  48919. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48920. {
  48921. front: {
  48922. height: math.unit(10 + 6/12, "feet"),
  48923. weight: math.unit(1.3, "tons"),
  48924. name: "Front",
  48925. image: {
  48926. source: "./media/characters/mr-graves/front.svg",
  48927. extra: 1779/1695,
  48928. bottom: 198/1977
  48929. }
  48930. },
  48931. },
  48932. [
  48933. {
  48934. name: "Normal",
  48935. height: math.unit(10 + 6 /12, "feet"),
  48936. default: true
  48937. },
  48938. ]
  48939. ))
  48940. characterMakers.push(() => makeCharacter(
  48941. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48942. {
  48943. dressedFront: {
  48944. height: math.unit(5 + 8/12, "feet"),
  48945. weight: math.unit(125, "lb"),
  48946. name: "Dressed (Front)",
  48947. image: {
  48948. source: "./media/characters/jess/dressed-front.svg",
  48949. extra: 1176/1152,
  48950. bottom: 42/1218
  48951. }
  48952. },
  48953. dressedSide: {
  48954. height: math.unit(5 + 8/12, "feet"),
  48955. weight: math.unit(125, "lb"),
  48956. name: "Dressed (Side)",
  48957. image: {
  48958. source: "./media/characters/jess/dressed-side.svg",
  48959. extra: 1204/1190,
  48960. bottom: 6/1210
  48961. }
  48962. },
  48963. nudeFront: {
  48964. height: math.unit(5 + 8/12, "feet"),
  48965. weight: math.unit(125, "lb"),
  48966. name: "Nude (Front)",
  48967. image: {
  48968. source: "./media/characters/jess/nude-front.svg",
  48969. extra: 1176/1152,
  48970. bottom: 42/1218
  48971. }
  48972. },
  48973. nudeSide: {
  48974. height: math.unit(5 + 8/12, "feet"),
  48975. weight: math.unit(125, "lb"),
  48976. name: "Nude (Side)",
  48977. image: {
  48978. source: "./media/characters/jess/nude-side.svg",
  48979. extra: 1204/1190,
  48980. bottom: 6/1210
  48981. }
  48982. },
  48983. organsFront: {
  48984. height: math.unit(2.83799342105, "feet"),
  48985. name: "Organs (Front)",
  48986. image: {
  48987. source: "./media/characters/jess/organs-front.svg"
  48988. }
  48989. },
  48990. organsSide: {
  48991. height: math.unit(2.64225290474, "feet"),
  48992. name: "Organs (Side)",
  48993. image: {
  48994. source: "./media/characters/jess/organs-side.svg"
  48995. }
  48996. },
  48997. digestiveTractFront: {
  48998. height: math.unit(2.8106580871, "feet"),
  48999. name: "Digestive Tract (Front)",
  49000. image: {
  49001. source: "./media/characters/jess/digestive-tract-front.svg"
  49002. }
  49003. },
  49004. digestiveTractSide: {
  49005. height: math.unit(2.54365045014, "feet"),
  49006. name: "Digestive Tract (Side)",
  49007. image: {
  49008. source: "./media/characters/jess/digestive-tract-side.svg"
  49009. }
  49010. },
  49011. respiratorySystemFront: {
  49012. height: math.unit(1.11196233456, "feet"),
  49013. name: "Respiratory System (Front)",
  49014. image: {
  49015. source: "./media/characters/jess/respiratory-system-front.svg"
  49016. }
  49017. },
  49018. respiratorySystemSide: {
  49019. height: math.unit(0.89327966297, "feet"),
  49020. name: "Respiratory System (Side)",
  49021. image: {
  49022. source: "./media/characters/jess/respiratory-system-side.svg"
  49023. }
  49024. },
  49025. urinaryTractFront: {
  49026. height: math.unit(1.16126356186, "feet"),
  49027. name: "Urinary Tract (Front)",
  49028. image: {
  49029. source: "./media/characters/jess/urinary-tract-front.svg"
  49030. }
  49031. },
  49032. urinaryTractSide: {
  49033. height: math.unit(1.20910039627, "feet"),
  49034. name: "Urinary Tract (Side)",
  49035. image: {
  49036. source: "./media/characters/jess/urinary-tract-side.svg"
  49037. }
  49038. },
  49039. reproductiveOrgansFront: {
  49040. height: math.unit(0.48422591566, "feet"),
  49041. name: "Reproductive Organs (Front)",
  49042. image: {
  49043. source: "./media/characters/jess/reproductive-organs-front.svg"
  49044. }
  49045. },
  49046. reproductiveOrgansSide: {
  49047. height: math.unit(0.61553314481, "feet"),
  49048. name: "Reproductive Organs (Side)",
  49049. image: {
  49050. source: "./media/characters/jess/reproductive-organs-side.svg"
  49051. }
  49052. },
  49053. breastsFront: {
  49054. height: math.unit(0.47690395121, "feet"),
  49055. name: "Breasts (Front)",
  49056. image: {
  49057. source: "./media/characters/jess/breasts-front.svg"
  49058. }
  49059. },
  49060. breastsSide: {
  49061. height: math.unit(0.30556998307, "feet"),
  49062. name: "Breasts (Side)",
  49063. image: {
  49064. source: "./media/characters/jess/breasts-side.svg"
  49065. }
  49066. },
  49067. heartFront: {
  49068. height: math.unit(0.53011022622, "feet"),
  49069. name: "Heart (Front)",
  49070. image: {
  49071. source: "./media/characters/jess/heart-front.svg"
  49072. }
  49073. },
  49074. heartSide: {
  49075. height: math.unit(0.51790695213, "feet"),
  49076. name: "Heart (Side)",
  49077. image: {
  49078. source: "./media/characters/jess/heart-side.svg"
  49079. }
  49080. },
  49081. earsAndNoseFront: {
  49082. height: math.unit(0.29385483995, "feet"),
  49083. name: "Ears and Nose (Front)",
  49084. image: {
  49085. source: "./media/characters/jess/ears-and-nose-front.svg"
  49086. }
  49087. },
  49088. earsAndNoseSide: {
  49089. height: math.unit(0.18109658741, "feet"),
  49090. name: "Ears and Nose (Side)",
  49091. image: {
  49092. source: "./media/characters/jess/ears-and-nose-side.svg"
  49093. }
  49094. },
  49095. },
  49096. [
  49097. {
  49098. name: "Normal",
  49099. height: math.unit(5 + 8/12, "feet"),
  49100. default: true
  49101. },
  49102. ]
  49103. ))
  49104. characterMakers.push(() => makeCharacter(
  49105. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49106. {
  49107. front: {
  49108. height: math.unit(6, "feet"),
  49109. weight: math.unit(6.64467e-7, "grams"),
  49110. name: "Front",
  49111. image: {
  49112. source: "./media/characters/wimpering/front.svg",
  49113. extra: 597/587,
  49114. bottom: 34/631
  49115. }
  49116. },
  49117. },
  49118. [
  49119. {
  49120. name: "Micro",
  49121. height: math.unit(0.4, "mm"),
  49122. default: true
  49123. },
  49124. ]
  49125. ))
  49126. characterMakers.push(() => makeCharacter(
  49127. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49128. {
  49129. front: {
  49130. height: math.unit(5 + 2/12, "feet"),
  49131. weight: math.unit(110, "lb"),
  49132. name: "Front",
  49133. image: {
  49134. source: "./media/characters/keltre/front.svg",
  49135. extra: 1099/1057,
  49136. bottom: 22/1121
  49137. }
  49138. },
  49139. back: {
  49140. height: math.unit(5 + 2/12, "feet"),
  49141. weight: math.unit(110, "lb"),
  49142. name: "Back",
  49143. image: {
  49144. source: "./media/characters/keltre/back.svg",
  49145. extra: 1095/1053,
  49146. bottom: 17/1112
  49147. }
  49148. },
  49149. dressed: {
  49150. height: math.unit(5 + 2/12, "feet"),
  49151. weight: math.unit(110, "lb"),
  49152. name: "Dressed",
  49153. image: {
  49154. source: "./media/characters/keltre/dressed.svg",
  49155. extra: 1099/1057,
  49156. bottom: 22/1121
  49157. }
  49158. },
  49159. winter: {
  49160. height: math.unit(5 + 2/12, "feet"),
  49161. weight: math.unit(110, "lb"),
  49162. name: "Winter",
  49163. image: {
  49164. source: "./media/characters/keltre/winter.svg",
  49165. extra: 1099/1057,
  49166. bottom: 22/1121
  49167. }
  49168. },
  49169. head: {
  49170. height: math.unit(1.61 * 0.86, "feet"),
  49171. name: "Head",
  49172. image: {
  49173. source: "./media/characters/keltre/head.svg",
  49174. extra: 534/421,
  49175. bottom: 0/534
  49176. }
  49177. },
  49178. hand: {
  49179. height: math.unit(1.3 * 0.86, "feet"),
  49180. name: "Hand",
  49181. image: {
  49182. source: "./media/characters/keltre/hand.svg"
  49183. }
  49184. },
  49185. foot: {
  49186. height: math.unit(1.8 * 0.86, "feet"),
  49187. name: "Foot",
  49188. image: {
  49189. source: "./media/characters/keltre/foot.svg"
  49190. }
  49191. },
  49192. },
  49193. [
  49194. {
  49195. name: "Fine",
  49196. height: math.unit(1, "inch")
  49197. },
  49198. {
  49199. name: "Dimnutive",
  49200. height: math.unit(4, "inches")
  49201. },
  49202. {
  49203. name: "Tiny",
  49204. height: math.unit(1, "foot")
  49205. },
  49206. {
  49207. name: "Small",
  49208. height: math.unit(3, "feet")
  49209. },
  49210. {
  49211. name: "Normal",
  49212. height: math.unit(5 + 2/12, "feet"),
  49213. default: true
  49214. },
  49215. ]
  49216. ))
  49217. characterMakers.push(() => makeCharacter(
  49218. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49219. {
  49220. front: {
  49221. height: math.unit(6 + 2/12, "feet"),
  49222. name: "Front",
  49223. image: {
  49224. source: "./media/characters/nox/front.svg",
  49225. extra: 1917/1830,
  49226. bottom: 74/1991
  49227. }
  49228. },
  49229. back: {
  49230. height: math.unit(6 + 2/12, "feet"),
  49231. name: "Back",
  49232. image: {
  49233. source: "./media/characters/nox/back.svg",
  49234. extra: 1896/1815,
  49235. bottom: 21/1917
  49236. }
  49237. },
  49238. head: {
  49239. height: math.unit(1.1, "feet"),
  49240. name: "Head",
  49241. image: {
  49242. source: "./media/characters/nox/head.svg",
  49243. extra: 874/704,
  49244. bottom: 0/874
  49245. }
  49246. },
  49247. tattoo: {
  49248. height: math.unit(0.729, "feet"),
  49249. name: "Tattoo",
  49250. image: {
  49251. source: "./media/characters/nox/tattoo.svg"
  49252. }
  49253. },
  49254. },
  49255. [
  49256. {
  49257. name: "Normal",
  49258. height: math.unit(6 + 2/12, "feet")
  49259. },
  49260. {
  49261. name: "Gigamacro",
  49262. height: math.unit(2, "earths"),
  49263. default: true
  49264. },
  49265. {
  49266. name: "Cosmic",
  49267. height: math.unit(867, "yottameters")
  49268. },
  49269. ]
  49270. ))
  49271. characterMakers.push(() => makeCharacter(
  49272. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49273. {
  49274. front: {
  49275. height: math.unit(6, "feet"),
  49276. weight: math.unit(150, "lb"),
  49277. name: "Front",
  49278. image: {
  49279. source: "./media/characters/caspian/front.svg",
  49280. extra: 1443/1359,
  49281. bottom: 0/1443
  49282. }
  49283. },
  49284. back: {
  49285. height: math.unit(6, "feet"),
  49286. weight: math.unit(150, "lb"),
  49287. name: "Back",
  49288. image: {
  49289. source: "./media/characters/caspian/back.svg",
  49290. extra: 1379/1309,
  49291. bottom: 0/1379
  49292. }
  49293. },
  49294. head: {
  49295. height: math.unit(0.9, "feet"),
  49296. name: "Head",
  49297. image: {
  49298. source: "./media/characters/caspian/head.svg",
  49299. extra: 692/492,
  49300. bottom: 0/692
  49301. }
  49302. },
  49303. headAlt: {
  49304. height: math.unit(0.95, "feet"),
  49305. name: "Head (Alt)",
  49306. image: {
  49307. source: "./media/characters/caspian/head-alt.svg",
  49308. extra: 668/508,
  49309. bottom: 0/668
  49310. }
  49311. },
  49312. hand: {
  49313. height: math.unit(0.8, "feet"),
  49314. name: "Hand",
  49315. image: {
  49316. source: "./media/characters/caspian/hand.svg"
  49317. }
  49318. },
  49319. paw: {
  49320. height: math.unit(0.95, "feet"),
  49321. name: "Paw",
  49322. image: {
  49323. source: "./media/characters/caspian/paw.svg"
  49324. }
  49325. },
  49326. },
  49327. [
  49328. {
  49329. name: "Normal",
  49330. height: math.unit(162, "feet"),
  49331. default: true
  49332. },
  49333. ]
  49334. ))
  49335. characterMakers.push(() => makeCharacter(
  49336. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49337. {
  49338. front: {
  49339. height: math.unit(6, "feet"),
  49340. name: "Front",
  49341. image: {
  49342. source: "./media/characters/myra-aisling/front.svg",
  49343. extra: 1268/1166,
  49344. bottom: 73/1341
  49345. }
  49346. },
  49347. back: {
  49348. height: math.unit(6, "feet"),
  49349. name: "Back",
  49350. image: {
  49351. source: "./media/characters/myra-aisling/back.svg",
  49352. extra: 1249/1149,
  49353. bottom: 79/1328
  49354. }
  49355. },
  49356. dressed: {
  49357. height: math.unit(6, "feet"),
  49358. name: "Dressed",
  49359. image: {
  49360. source: "./media/characters/myra-aisling/dressed.svg",
  49361. extra: 1290/1189,
  49362. bottom: 47/1337
  49363. }
  49364. },
  49365. hand: {
  49366. height: math.unit(1.1, "feet"),
  49367. name: "Hand",
  49368. image: {
  49369. source: "./media/characters/myra-aisling/hand.svg"
  49370. }
  49371. },
  49372. paw: {
  49373. height: math.unit(1.23, "feet"),
  49374. name: "Paw",
  49375. image: {
  49376. source: "./media/characters/myra-aisling/paw.svg"
  49377. }
  49378. },
  49379. },
  49380. [
  49381. {
  49382. name: "Normal",
  49383. height: math.unit(160, "feet"),
  49384. default: true
  49385. },
  49386. ]
  49387. ))
  49388. characterMakers.push(() => makeCharacter(
  49389. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49390. {
  49391. front: {
  49392. height: math.unit(6, "feet"),
  49393. name: "Front",
  49394. image: {
  49395. source: "./media/characters/tenley-sidero/front.svg",
  49396. extra: 1365/1276,
  49397. bottom: 47/1412
  49398. }
  49399. },
  49400. back: {
  49401. height: math.unit(6, "feet"),
  49402. name: "Back",
  49403. image: {
  49404. source: "./media/characters/tenley-sidero/back.svg",
  49405. extra: 1383/1283,
  49406. bottom: 35/1418
  49407. }
  49408. },
  49409. dressed: {
  49410. height: math.unit(6, "feet"),
  49411. name: "Dressed",
  49412. image: {
  49413. source: "./media/characters/tenley-sidero/dressed.svg",
  49414. extra: 1364/1275,
  49415. bottom: 42/1406
  49416. }
  49417. },
  49418. head: {
  49419. height: math.unit(1.47, "feet"),
  49420. name: "Head",
  49421. image: {
  49422. source: "./media/characters/tenley-sidero/head.svg",
  49423. extra: 610/490,
  49424. bottom: 0/610
  49425. }
  49426. },
  49427. },
  49428. [
  49429. {
  49430. name: "Normal",
  49431. height: math.unit(154, "feet"),
  49432. default: true
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49438. {
  49439. front: {
  49440. height: math.unit(5, "inches"),
  49441. name: "Front",
  49442. image: {
  49443. source: "./media/characters/mallory/front.svg",
  49444. extra: 1919/1678,
  49445. bottom: 29/1948
  49446. }
  49447. },
  49448. hand: {
  49449. height: math.unit(0.73, "inches"),
  49450. name: "Hand",
  49451. image: {
  49452. source: "./media/characters/mallory/hand.svg"
  49453. }
  49454. },
  49455. paw: {
  49456. height: math.unit(0.68, "inches"),
  49457. name: "Paw",
  49458. image: {
  49459. source: "./media/characters/mallory/paw.svg"
  49460. }
  49461. },
  49462. },
  49463. [
  49464. {
  49465. name: "Small",
  49466. height: math.unit(5, "inches"),
  49467. default: true
  49468. },
  49469. ]
  49470. ))
  49471. characterMakers.push(() => makeCharacter(
  49472. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49473. {
  49474. naked: {
  49475. height: math.unit(6, "feet"),
  49476. name: "Naked",
  49477. image: {
  49478. source: "./media/characters/mab/naked.svg",
  49479. extra: 1855/1757,
  49480. bottom: 208/2063
  49481. }
  49482. },
  49483. outside: {
  49484. height: math.unit(6, "feet"),
  49485. name: "Outside",
  49486. image: {
  49487. source: "./media/characters/mab/outside.svg",
  49488. extra: 1855/1757,
  49489. bottom: 208/2063
  49490. }
  49491. },
  49492. party: {
  49493. height: math.unit(6, "feet"),
  49494. name: "Party",
  49495. image: {
  49496. source: "./media/characters/mab/party.svg",
  49497. extra: 1855/1757,
  49498. bottom: 208/2063
  49499. }
  49500. },
  49501. },
  49502. [
  49503. {
  49504. name: "Normal",
  49505. height: math.unit(165, "feet"),
  49506. default: true
  49507. },
  49508. ]
  49509. ))
  49510. characterMakers.push(() => makeCharacter(
  49511. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49512. {
  49513. front: {
  49514. height: math.unit(12, "feet"),
  49515. weight: math.unit(20000, "lb"),
  49516. name: "Front",
  49517. image: {
  49518. source: "./media/characters/winter/front.svg",
  49519. extra: 1286/943,
  49520. bottom: 112/1398
  49521. }
  49522. },
  49523. frontNsfw: {
  49524. height: math.unit(12, "feet"),
  49525. weight: math.unit(20000, "lb"),
  49526. name: "Front (NSFW)",
  49527. image: {
  49528. source: "./media/characters/winter/front-nsfw.svg",
  49529. extra: 1286/943,
  49530. bottom: 112/1398
  49531. }
  49532. },
  49533. dick: {
  49534. height: math.unit(3.79, "feet"),
  49535. name: "Dick",
  49536. image: {
  49537. source: "./media/characters/winter/dick.svg"
  49538. }
  49539. },
  49540. },
  49541. [
  49542. {
  49543. name: "Big",
  49544. height: math.unit(12, "feet"),
  49545. default: true
  49546. },
  49547. ]
  49548. ))
  49549. characterMakers.push(() => makeCharacter(
  49550. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49551. {
  49552. front: {
  49553. height: math.unit(4.1, "inches"),
  49554. name: "Front",
  49555. image: {
  49556. source: "./media/characters/alto/front.svg",
  49557. extra: 736/627,
  49558. bottom: 90/826
  49559. }
  49560. },
  49561. },
  49562. [
  49563. {
  49564. name: "Normal",
  49565. height: math.unit(4.1, "inches"),
  49566. default: true
  49567. },
  49568. ]
  49569. ))
  49570. characterMakers.push(() => makeCharacter(
  49571. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49572. {
  49573. sitting: {
  49574. height: math.unit(3, "feet"),
  49575. name: "Sitting",
  49576. image: {
  49577. source: "./media/characters/ratstrid-v/sitting.svg",
  49578. extra: 355/310,
  49579. bottom: 136/491
  49580. }
  49581. },
  49582. },
  49583. [
  49584. {
  49585. name: "Normal",
  49586. height: math.unit(3, "feet"),
  49587. default: true
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49593. {
  49594. back: {
  49595. height: math.unit(6, "feet"),
  49596. weight: math.unit(350, "lb"),
  49597. name: "Back",
  49598. image: {
  49599. source: "./media/characters/siz/back.svg",
  49600. extra: 1449/1274,
  49601. bottom: 13/1462
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Over-Overcompressed",
  49608. height: math.unit(8, "feet")
  49609. },
  49610. {
  49611. name: "Overcompressed",
  49612. height: math.unit(32, "feet")
  49613. },
  49614. {
  49615. name: "Compressed",
  49616. height: math.unit(128, "feet"),
  49617. default: true
  49618. },
  49619. {
  49620. name: "Half-Compressed",
  49621. height: math.unit(512, "feet")
  49622. },
  49623. {
  49624. name: "Quarter-Compressed",
  49625. height: math.unit(2048, "feet")
  49626. },
  49627. {
  49628. name: "Uncompressed?",
  49629. height: math.unit(8192, "feet")
  49630. },
  49631. ]
  49632. ))
  49633. characterMakers.push(() => makeCharacter(
  49634. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49635. {
  49636. front: {
  49637. height: math.unit(5 + 9/12, "feet"),
  49638. weight: math.unit(150, "lb"),
  49639. name: "Front",
  49640. image: {
  49641. source: "./media/characters/ven/front.svg",
  49642. extra: 1372/1320,
  49643. bottom: 73/1445
  49644. }
  49645. },
  49646. side: {
  49647. height: math.unit(5 + 9/12, "feet"),
  49648. weight: math.unit(1150, "lb"),
  49649. name: "Side",
  49650. image: {
  49651. source: "./media/characters/ven/side.svg",
  49652. extra: 1119/1070,
  49653. bottom: 42/1161
  49654. },
  49655. default: true
  49656. },
  49657. },
  49658. [
  49659. {
  49660. name: "Normal",
  49661. height: math.unit(5 + 9/12, "feet"),
  49662. default: true
  49663. },
  49664. ]
  49665. ))
  49666. characterMakers.push(() => makeCharacter(
  49667. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49668. {
  49669. front: {
  49670. height: math.unit(12, "feet"),
  49671. weight: math.unit(1000, "kg"),
  49672. name: "Front",
  49673. image: {
  49674. source: "./media/characters/maple/front.svg",
  49675. extra: 1193/1081,
  49676. bottom: 22/1215
  49677. }
  49678. },
  49679. },
  49680. [
  49681. {
  49682. name: "Compressed",
  49683. height: math.unit(7, "feet")
  49684. },
  49685. {
  49686. name: "Normal",
  49687. height: math.unit(12, "feet"),
  49688. default: true
  49689. },
  49690. ]
  49691. ))
  49692. characterMakers.push(() => makeCharacter(
  49693. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49694. {
  49695. front: {
  49696. height: math.unit(9, "feet"),
  49697. weight: math.unit(1500, "lb"),
  49698. name: "Front",
  49699. image: {
  49700. source: "./media/characters/nora/front.svg",
  49701. extra: 1348/1286,
  49702. bottom: 218/1566
  49703. }
  49704. },
  49705. erect: {
  49706. height: math.unit(9, "feet"),
  49707. weight: math.unit(11500, "lb"),
  49708. name: "Erect",
  49709. image: {
  49710. source: "./media/characters/nora/erect.svg",
  49711. extra: 1488/1433,
  49712. bottom: 133/1621
  49713. }
  49714. },
  49715. },
  49716. [
  49717. {
  49718. name: "Normal",
  49719. height: math.unit(9, "feet"),
  49720. default: true
  49721. },
  49722. ]
  49723. ))
  49724. characterMakers.push(() => makeCharacter(
  49725. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49726. {
  49727. front: {
  49728. height: math.unit(25, "feet"),
  49729. weight: math.unit(27500, "lb"),
  49730. name: "Front",
  49731. image: {
  49732. source: "./media/characters/north-caudin/front.svg",
  49733. extra: 1184/1082,
  49734. bottom: 23/1207
  49735. }
  49736. },
  49737. },
  49738. [
  49739. {
  49740. name: "Compressed",
  49741. height: math.unit(10, "feet")
  49742. },
  49743. {
  49744. name: "Normal",
  49745. height: math.unit(25, "feet"),
  49746. default: true
  49747. },
  49748. ]
  49749. ))
  49750. characterMakers.push(() => makeCharacter(
  49751. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49752. {
  49753. front: {
  49754. height: math.unit(9, "feet"),
  49755. weight: math.unit(1250, "lb"),
  49756. name: "Front",
  49757. image: {
  49758. source: "./media/characters/merrian/front.svg",
  49759. extra: 2393/2304,
  49760. bottom: 40/2433
  49761. }
  49762. },
  49763. },
  49764. [
  49765. {
  49766. name: "Normal",
  49767. height: math.unit(9, "feet"),
  49768. default: true
  49769. },
  49770. ]
  49771. ))
  49772. characterMakers.push(() => makeCharacter(
  49773. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49774. {
  49775. front: {
  49776. height: math.unit(9, "feet"),
  49777. weight: math.unit(1000, "lb"),
  49778. name: "Front",
  49779. image: {
  49780. source: "./media/characters/hazel/front.svg",
  49781. extra: 2351/2298,
  49782. bottom: 38/2389
  49783. }
  49784. },
  49785. },
  49786. [
  49787. {
  49788. name: "Normal",
  49789. height: math.unit(9, "feet"),
  49790. default: true
  49791. },
  49792. ]
  49793. ))
  49794. characterMakers.push(() => makeCharacter(
  49795. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49796. {
  49797. front: {
  49798. height: math.unit(13, "feet"),
  49799. weight: math.unit(3200, "lb"),
  49800. name: "Front",
  49801. image: {
  49802. source: "./media/characters/emma/front.svg",
  49803. extra: 2263/2029,
  49804. bottom: 68/2331
  49805. }
  49806. },
  49807. },
  49808. [
  49809. {
  49810. name: "Normal",
  49811. height: math.unit(13, "feet"),
  49812. default: true
  49813. },
  49814. ]
  49815. ))
  49816. characterMakers.push(() => makeCharacter(
  49817. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49818. {
  49819. front: {
  49820. height: math.unit(11 + 9/12, "feet"),
  49821. weight: math.unit(2500, "lb"),
  49822. name: "Front",
  49823. image: {
  49824. source: "./media/characters/ilumina/front.svg",
  49825. extra: 2248/2209,
  49826. bottom: 164/2412
  49827. }
  49828. },
  49829. },
  49830. [
  49831. {
  49832. name: "Normal",
  49833. height: math.unit(11 + 9/12, "feet"),
  49834. default: true
  49835. },
  49836. ]
  49837. ))
  49838. characterMakers.push(() => makeCharacter(
  49839. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49840. {
  49841. front: {
  49842. height: math.unit(8 + 10/12, "feet"),
  49843. weight: math.unit(1350, "lb"),
  49844. name: "Front",
  49845. image: {
  49846. source: "./media/characters/moonshine/front.svg",
  49847. extra: 2395/2288,
  49848. bottom: 40/2435
  49849. }
  49850. },
  49851. },
  49852. [
  49853. {
  49854. name: "Normal",
  49855. height: math.unit(8 + 10/12, "feet"),
  49856. default: true
  49857. },
  49858. ]
  49859. ))
  49860. characterMakers.push(() => makeCharacter(
  49861. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49862. {
  49863. front: {
  49864. height: math.unit(14, "feet"),
  49865. weight: math.unit(3400, "lb"),
  49866. name: "Front",
  49867. image: {
  49868. source: "./media/characters/aletia/front.svg",
  49869. extra: 1185/1052,
  49870. bottom: 21/1206
  49871. }
  49872. },
  49873. },
  49874. [
  49875. {
  49876. name: "Compressed",
  49877. height: math.unit(8, "feet")
  49878. },
  49879. {
  49880. name: "Normal",
  49881. height: math.unit(14, "feet"),
  49882. default: true
  49883. },
  49884. ]
  49885. ))
  49886. characterMakers.push(() => makeCharacter(
  49887. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49888. {
  49889. front: {
  49890. height: math.unit(17, "feet"),
  49891. weight: math.unit(6500, "lb"),
  49892. name: "Front",
  49893. image: {
  49894. source: "./media/characters/deidra/front.svg",
  49895. extra: 1201/1081,
  49896. bottom: 16/1217
  49897. }
  49898. },
  49899. },
  49900. [
  49901. {
  49902. name: "Compressed",
  49903. height: math.unit(9 + 6/12, "feet")
  49904. },
  49905. {
  49906. name: "Normal",
  49907. height: math.unit(17, "feet"),
  49908. default: true
  49909. },
  49910. ]
  49911. ))
  49912. characterMakers.push(() => makeCharacter(
  49913. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49914. {
  49915. front: {
  49916. height: math.unit(7 + 4/12, "feet"),
  49917. weight: math.unit(280, "lb"),
  49918. name: "Front",
  49919. image: {
  49920. source: "./media/characters/freki-yrmori/front.svg",
  49921. extra: 1286/1182,
  49922. bottom: 29/1315
  49923. }
  49924. },
  49925. maw: {
  49926. height: math.unit(0.9, "feet"),
  49927. name: "Maw",
  49928. image: {
  49929. source: "./media/characters/freki-yrmori/maw.svg"
  49930. }
  49931. },
  49932. },
  49933. [
  49934. {
  49935. name: "Normal",
  49936. height: math.unit(7 + 4/12, "feet"),
  49937. default: true
  49938. },
  49939. {
  49940. name: "Macro",
  49941. height: math.unit(38.5, "meters")
  49942. },
  49943. ]
  49944. ))
  49945. characterMakers.push(() => makeCharacter(
  49946. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49947. {
  49948. side: {
  49949. height: math.unit(47.2, "meters"),
  49950. weight: math.unit(10000, "tons"),
  49951. name: "Side",
  49952. image: {
  49953. source: "./media/characters/aetherios/side.svg",
  49954. extra: 2363/642,
  49955. bottom: 221/2584
  49956. }
  49957. },
  49958. top: {
  49959. height: math.unit(240, "meters"),
  49960. weight: math.unit(10000, "tons"),
  49961. name: "Top",
  49962. image: {
  49963. source: "./media/characters/aetherios/top.svg"
  49964. }
  49965. },
  49966. bottom: {
  49967. height: math.unit(240, "meters"),
  49968. weight: math.unit(10000, "tons"),
  49969. name: "Bottom",
  49970. image: {
  49971. source: "./media/characters/aetherios/bottom.svg"
  49972. }
  49973. },
  49974. head: {
  49975. height: math.unit(38.6, "meters"),
  49976. name: "Head",
  49977. image: {
  49978. source: "./media/characters/aetherios/head.svg",
  49979. extra: 1335/1112,
  49980. bottom: 0/1335
  49981. }
  49982. },
  49983. front: {
  49984. height: math.unit(29, "meters"),
  49985. name: "Front",
  49986. image: {
  49987. source: "./media/characters/aetherios/front.svg",
  49988. extra: 1266/953,
  49989. bottom: 158/1424
  49990. }
  49991. },
  49992. maw: {
  49993. height: math.unit(16.37, "meters"),
  49994. name: "Maw",
  49995. image: {
  49996. source: "./media/characters/aetherios/maw.svg",
  49997. extra: 748/637,
  49998. bottom: 0/748
  49999. },
  50000. extraAttributes: {
  50001. preyCapacity: {
  50002. name: "Capacity",
  50003. power: 3,
  50004. type: "volume",
  50005. base: math.unit(1000, "people")
  50006. },
  50007. tongueSize: {
  50008. name: "Tongue Size",
  50009. power: 2,
  50010. type: "area",
  50011. base: math.unit(21, "m^2")
  50012. }
  50013. }
  50014. },
  50015. forepaw: {
  50016. height: math.unit(18, "meters"),
  50017. name: "Forepaw",
  50018. image: {
  50019. source: "./media/characters/aetherios/forepaw.svg"
  50020. }
  50021. },
  50022. hindpaw: {
  50023. height: math.unit(23, "meters"),
  50024. name: "Hindpaw",
  50025. image: {
  50026. source: "./media/characters/aetherios/hindpaw.svg"
  50027. }
  50028. },
  50029. genitals: {
  50030. height: math.unit(42, "meters"),
  50031. name: "Genitals",
  50032. image: {
  50033. source: "./media/characters/aetherios/genitals.svg"
  50034. }
  50035. },
  50036. },
  50037. [
  50038. {
  50039. name: "Normal",
  50040. height: math.unit(47.2, "meters"),
  50041. default: true
  50042. },
  50043. {
  50044. name: "Macro",
  50045. height: math.unit(160, "meters")
  50046. },
  50047. {
  50048. name: "Mega",
  50049. height: math.unit(1.87, "km")
  50050. },
  50051. {
  50052. name: "Giga",
  50053. height: math.unit(40000, "km")
  50054. },
  50055. {
  50056. name: "Stellar",
  50057. height: math.unit(158000000, "km")
  50058. },
  50059. {
  50060. name: "Cosmic",
  50061. height: math.unit(9.46e12, "km")
  50062. },
  50063. ]
  50064. ))
  50065. characterMakers.push(() => makeCharacter(
  50066. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50067. {
  50068. front: {
  50069. height: math.unit(5 + 4/12, "feet"),
  50070. weight: math.unit(80, "lb"),
  50071. name: "Front",
  50072. image: {
  50073. source: "./media/characters/mizu-gieeg/front.svg",
  50074. extra: 850/709,
  50075. bottom: 52/902
  50076. }
  50077. },
  50078. back: {
  50079. height: math.unit(5 + 4/12, "feet"),
  50080. weight: math.unit(80, "lb"),
  50081. name: "Back",
  50082. image: {
  50083. source: "./media/characters/mizu-gieeg/back.svg",
  50084. extra: 882/745,
  50085. bottom: 25/907
  50086. }
  50087. },
  50088. },
  50089. [
  50090. {
  50091. name: "Normal",
  50092. height: math.unit(5 + 4/12, "feet"),
  50093. default: true
  50094. },
  50095. ]
  50096. ))
  50097. characterMakers.push(() => makeCharacter(
  50098. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50099. {
  50100. front: {
  50101. height: math.unit(6, "feet"),
  50102. name: "Front",
  50103. image: {
  50104. source: "./media/characters/roselle-st-papier/front.svg",
  50105. extra: 1430/1280,
  50106. bottom: 37/1467
  50107. }
  50108. },
  50109. back: {
  50110. height: math.unit(6, "feet"),
  50111. name: "Back",
  50112. image: {
  50113. source: "./media/characters/roselle-st-papier/back.svg",
  50114. extra: 1491/1296,
  50115. bottom: 23/1514
  50116. }
  50117. },
  50118. ear: {
  50119. height: math.unit(1.26, "feet"),
  50120. name: "Ear",
  50121. image: {
  50122. source: "./media/characters/roselle-st-papier/ear.svg"
  50123. }
  50124. },
  50125. },
  50126. [
  50127. {
  50128. name: "Normal",
  50129. height: math.unit(150, "feet"),
  50130. default: true
  50131. },
  50132. ]
  50133. ))
  50134. characterMakers.push(() => makeCharacter(
  50135. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50136. {
  50137. front: {
  50138. height: math.unit(1, "inches"),
  50139. name: "Front",
  50140. image: {
  50141. source: "./media/characters/valargent/front.svg",
  50142. extra: 1825/1694,
  50143. bottom: 62/1887
  50144. }
  50145. },
  50146. back: {
  50147. height: math.unit(1, "inches"),
  50148. name: "Back",
  50149. image: {
  50150. source: "./media/characters/valargent/back.svg",
  50151. extra: 1775/1682,
  50152. bottom: 88/1863
  50153. }
  50154. },
  50155. },
  50156. [
  50157. {
  50158. name: "Micro",
  50159. height: math.unit(1, "inch"),
  50160. default: true
  50161. },
  50162. ]
  50163. ))
  50164. characterMakers.push(() => makeCharacter(
  50165. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50166. {
  50167. front: {
  50168. height: math.unit(3.4, "meters"),
  50169. name: "Front",
  50170. image: {
  50171. source: "./media/characters/zarina/front.svg",
  50172. extra: 1733/1425,
  50173. bottom: 93/1826
  50174. }
  50175. },
  50176. squatting: {
  50177. height: math.unit(2.14, "meters"),
  50178. name: "Squatting",
  50179. image: {
  50180. source: "./media/characters/zarina/squatting.svg",
  50181. extra: 1073/788,
  50182. bottom: 63/1136
  50183. }
  50184. },
  50185. back: {
  50186. height: math.unit(2.14, "meters"),
  50187. name: "Back",
  50188. image: {
  50189. source: "./media/characters/zarina/back.svg",
  50190. extra: 1128/885,
  50191. bottom: 0/1128
  50192. }
  50193. },
  50194. },
  50195. [
  50196. {
  50197. name: "Normal",
  50198. height: math.unit(3.4, "meters"),
  50199. default: true
  50200. },
  50201. {
  50202. name: "Big",
  50203. height: math.unit(5, "meters")
  50204. },
  50205. {
  50206. name: "Macro",
  50207. height: math.unit(110, "meters")
  50208. },
  50209. ]
  50210. ))
  50211. characterMakers.push(() => makeCharacter(
  50212. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50213. {
  50214. front: {
  50215. height: math.unit(7, "feet"),
  50216. name: "Front",
  50217. image: {
  50218. source: "./media/characters/ventus-astro-fox/front.svg",
  50219. extra: 1792/1623,
  50220. bottom: 28/1820
  50221. }
  50222. },
  50223. back: {
  50224. height: math.unit(7, "feet"),
  50225. name: "Back",
  50226. image: {
  50227. source: "./media/characters/ventus-astro-fox/back.svg",
  50228. extra: 1789/1620,
  50229. bottom: 31/1820
  50230. }
  50231. },
  50232. outfit: {
  50233. height: math.unit(7, "feet"),
  50234. name: "Outfit",
  50235. image: {
  50236. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50237. extra: 1054/925,
  50238. bottom: 15/1069
  50239. }
  50240. },
  50241. head: {
  50242. height: math.unit(1.12, "feet"),
  50243. name: "Head",
  50244. image: {
  50245. source: "./media/characters/ventus-astro-fox/head.svg",
  50246. extra: 866/504,
  50247. bottom: 0/866
  50248. }
  50249. },
  50250. hand: {
  50251. height: math.unit(1, "feet"),
  50252. name: "Hand",
  50253. image: {
  50254. source: "./media/characters/ventus-astro-fox/hand.svg"
  50255. }
  50256. },
  50257. paw: {
  50258. height: math.unit(1.5, "feet"),
  50259. name: "Paw",
  50260. image: {
  50261. source: "./media/characters/ventus-astro-fox/paw.svg"
  50262. }
  50263. },
  50264. },
  50265. [
  50266. {
  50267. name: "Normal",
  50268. height: math.unit(7, "feet"),
  50269. default: true
  50270. },
  50271. {
  50272. name: "Macro",
  50273. height: math.unit(200, "feet")
  50274. },
  50275. {
  50276. name: "Cosmic",
  50277. height: math.unit(3, "universes")
  50278. },
  50279. ]
  50280. ))
  50281. characterMakers.push(() => makeCharacter(
  50282. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50283. {
  50284. front: {
  50285. height: math.unit(3, "meters"),
  50286. weight: math.unit(7000, "lb"),
  50287. name: "Front",
  50288. image: {
  50289. source: "./media/characters/core-t/front.svg",
  50290. extra: 5729/4941,
  50291. bottom: 1129/6858
  50292. }
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Big",
  50298. height: math.unit(3, "meters"),
  50299. default: true
  50300. },
  50301. ]
  50302. ))
  50303. characterMakers.push(() => makeCharacter(
  50304. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50305. {
  50306. normal: {
  50307. height: math.unit(6 + 6/12, "feet"),
  50308. weight: math.unit(275, "lb"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/cadbunny/normal.svg",
  50312. extra: 1129/947,
  50313. bottom: 93/1222
  50314. },
  50315. default: true,
  50316. form: "normal"
  50317. },
  50318. gigantamax: {
  50319. height: math.unit(26, "feet"),
  50320. weight: math.unit(16000, "lb"),
  50321. name: "Front",
  50322. image: {
  50323. source: "./media/characters/cadbunny/gigantamax.svg",
  50324. extra: 1133/944,
  50325. bottom: 90/1223
  50326. },
  50327. default: true,
  50328. form: "gigantamax"
  50329. },
  50330. },
  50331. [
  50332. {
  50333. name: "Normal",
  50334. height: math.unit(6 + 6/12, "feet"),
  50335. default: true,
  50336. form: "normal"
  50337. },
  50338. {
  50339. name: "Small",
  50340. height: math.unit(26, "feet"),
  50341. default: true,
  50342. form: "gigantamax"
  50343. },
  50344. {
  50345. name: "Large",
  50346. height: math.unit(78, "feet"),
  50347. form: "gigantamax"
  50348. },
  50349. ],
  50350. {
  50351. "normal": {
  50352. name: "Normal",
  50353. default: true
  50354. },
  50355. "gigantamax": {
  50356. name: "Gigantamax"
  50357. }
  50358. }
  50359. ))
  50360. characterMakers.push(() => makeCharacter(
  50361. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50362. {
  50363. anthroFront: {
  50364. height: math.unit(8, "feet"),
  50365. weight: math.unit(300, "lb"),
  50366. name: "Front",
  50367. image: {
  50368. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50369. extra: 1272/1176,
  50370. bottom: 53/1325
  50371. },
  50372. form: "anthro",
  50373. default: true
  50374. },
  50375. feralSide: {
  50376. height: math.unit(4, "feet"),
  50377. weight: math.unit(250, "lb"),
  50378. name: "Side",
  50379. image: {
  50380. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50381. extra: 731/621,
  50382. bottom: 0/731
  50383. },
  50384. form: "feral",
  50385. default: true
  50386. },
  50387. },
  50388. [
  50389. {
  50390. name: "Regular",
  50391. height: math.unit(8, "feet"),
  50392. form: "anthro"
  50393. },
  50394. {
  50395. name: "Macro",
  50396. height: math.unit(250, "feet"),
  50397. form: "anthro",
  50398. default: true
  50399. },
  50400. {
  50401. name: "Regular",
  50402. height: math.unit(4, "feet"),
  50403. form: "feral"
  50404. },
  50405. {
  50406. name: "Macro",
  50407. height: math.unit(125, "feet"),
  50408. form: "feral",
  50409. default: true
  50410. },
  50411. ],
  50412. {
  50413. "anthro": {
  50414. name: "Anthro",
  50415. default: true
  50416. },
  50417. "feral": {
  50418. name: "Feral",
  50419. },
  50420. }
  50421. ))
  50422. characterMakers.push(() => makeCharacter(
  50423. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50424. {
  50425. front: {
  50426. height: math.unit(11 + 10/12, "feet"),
  50427. weight: math.unit(1587, "kg"),
  50428. name: "Front",
  50429. image: {
  50430. source: "./media/characters/maple-javira-dragon/front.svg",
  50431. extra: 1136/744,
  50432. bottom: 73/1209
  50433. }
  50434. },
  50435. side: {
  50436. height: math.unit(11 + 10/12, "feet"),
  50437. weight: math.unit(1587, "kg"),
  50438. name: "Side",
  50439. image: {
  50440. source: "./media/characters/maple-javira-dragon/side.svg",
  50441. extra: 712/505,
  50442. bottom: 17/729
  50443. }
  50444. },
  50445. head: {
  50446. height: math.unit(8.05, "feet"),
  50447. name: "Head",
  50448. image: {
  50449. source: "./media/characters/maple-javira-dragon/head.svg",
  50450. extra: 1420/1344,
  50451. bottom: 0/1420
  50452. }
  50453. },
  50454. },
  50455. [
  50456. {
  50457. name: "Normal",
  50458. height: math.unit(11 + 10/12, "feet"),
  50459. default: true
  50460. },
  50461. ]
  50462. ))
  50463. characterMakers.push(() => makeCharacter(
  50464. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50465. {
  50466. front: {
  50467. height: math.unit(117, "cm"),
  50468. weight: math.unit(50, "kg"),
  50469. name: "Front",
  50470. image: {
  50471. source: "./media/characters/sonia-wyverntail/front.svg",
  50472. extra: 708/592,
  50473. bottom: 25/733
  50474. }
  50475. },
  50476. },
  50477. [
  50478. {
  50479. name: "Normal",
  50480. height: math.unit(117, "cm"),
  50481. default: true
  50482. },
  50483. ]
  50484. ))
  50485. characterMakers.push(() => makeCharacter(
  50486. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50487. {
  50488. front: {
  50489. height: math.unit(6 + 5/12, "feet"),
  50490. name: "Front",
  50491. image: {
  50492. source: "./media/characters/micah/front.svg",
  50493. extra: 1758/1546,
  50494. bottom: 214/1972
  50495. }
  50496. },
  50497. },
  50498. [
  50499. {
  50500. name: "Normal",
  50501. height: math.unit(6 + 5/12, "feet"),
  50502. default: true
  50503. },
  50504. ]
  50505. ))
  50506. characterMakers.push(() => makeCharacter(
  50507. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50508. {
  50509. front: {
  50510. height: math.unit(5 + 10/12, "feet"),
  50511. weight: math.unit(220, "lb"),
  50512. name: "Front",
  50513. image: {
  50514. source: "./media/characters/zarya/front.svg",
  50515. extra: 593/572,
  50516. bottom: 50/643
  50517. }
  50518. },
  50519. back: {
  50520. height: math.unit(5 + 10/12, "feet"),
  50521. weight: math.unit(220, "lb"),
  50522. name: "Back",
  50523. image: {
  50524. source: "./media/characters/zarya/back.svg",
  50525. extra: 603/582,
  50526. bottom: 38/641
  50527. }
  50528. },
  50529. },
  50530. [
  50531. {
  50532. name: "Normal",
  50533. height: math.unit(5 + 10/12, "feet"),
  50534. default: true
  50535. },
  50536. ]
  50537. ))
  50538. characterMakers.push(() => makeCharacter(
  50539. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50540. {
  50541. front: {
  50542. height: math.unit(7.5, "feet"),
  50543. name: "Front",
  50544. image: {
  50545. source: "./media/characters/sven-hatisson/front.svg",
  50546. extra: 917/857,
  50547. bottom: 42/959
  50548. }
  50549. },
  50550. back: {
  50551. height: math.unit(7.5, "feet"),
  50552. name: "Back",
  50553. image: {
  50554. source: "./media/characters/sven-hatisson/back.svg",
  50555. extra: 903/856,
  50556. bottom: 15/918
  50557. }
  50558. },
  50559. },
  50560. [
  50561. {
  50562. name: "Base Height",
  50563. height: math.unit(7.5, "feet")
  50564. },
  50565. {
  50566. name: "Usual Height",
  50567. height: math.unit(13.5, "feet"),
  50568. default: true
  50569. },
  50570. {
  50571. name: "Smaller Macro",
  50572. height: math.unit(85, "feet")
  50573. },
  50574. {
  50575. name: "Moderate Macro",
  50576. height: math.unit(320, "feet")
  50577. },
  50578. {
  50579. name: "Large Macro",
  50580. height: math.unit(1000, "feet")
  50581. },
  50582. {
  50583. name: "Largest Size",
  50584. height: math.unit(2, "miles")
  50585. },
  50586. ]
  50587. ))
  50588. characterMakers.push(() => makeCharacter(
  50589. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50590. {
  50591. side: {
  50592. height: math.unit(1.8, "meters"),
  50593. weight: math.unit(275, "kg"),
  50594. name: "Side",
  50595. image: {
  50596. source: "./media/characters/terra/side.svg",
  50597. extra: 1273/1147,
  50598. bottom: 0/1273
  50599. }
  50600. },
  50601. },
  50602. [
  50603. {
  50604. name: "Normal",
  50605. height: math.unit(16.2, "meters"),
  50606. default: true
  50607. },
  50608. ]
  50609. ))
  50610. characterMakers.push(() => makeCharacter(
  50611. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50612. {
  50613. borzoiFront: {
  50614. height: math.unit(6 + 9/12, "feet"),
  50615. name: "Front",
  50616. image: {
  50617. source: "./media/characters/rae/borzoi-front.svg",
  50618. extra: 1161/1098,
  50619. bottom: 31/1192
  50620. },
  50621. form: "borzoi",
  50622. default: true
  50623. },
  50624. werewolfFront: {
  50625. height: math.unit(8 + 7/12, "feet"),
  50626. name: "Front",
  50627. image: {
  50628. source: "./media/characters/rae/werewolf-front.svg",
  50629. extra: 1411/1334,
  50630. bottom: 127/1538
  50631. },
  50632. form: "werewolf",
  50633. default: true
  50634. },
  50635. },
  50636. [
  50637. {
  50638. name: "Normal",
  50639. height: math.unit(6 + 9/12, "feet"),
  50640. default: true,
  50641. form: "borzoi"
  50642. },
  50643. {
  50644. name: "Normal",
  50645. height: math.unit(8 + 7/12, "feet"),
  50646. default: true,
  50647. form: "werewolf"
  50648. },
  50649. ],
  50650. {
  50651. "borzoi": {
  50652. name: "Borzoi",
  50653. default: true
  50654. },
  50655. "werewolf": {
  50656. name: "Werewolf",
  50657. },
  50658. }
  50659. ))
  50660. characterMakers.push(() => makeCharacter(
  50661. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50662. {
  50663. front: {
  50664. height: math.unit(8 + 7/12, "feet"),
  50665. weight: math.unit(482, "lb"),
  50666. name: "Front",
  50667. image: {
  50668. source: "./media/characters/kit/front.svg",
  50669. extra: 1247/1103,
  50670. bottom: 41/1288
  50671. }
  50672. },
  50673. back: {
  50674. height: math.unit(8 + 7/12, "feet"),
  50675. weight: math.unit(482, "lb"),
  50676. name: "Back",
  50677. image: {
  50678. source: "./media/characters/kit/back.svg",
  50679. extra: 1252/1123,
  50680. bottom: 21/1273
  50681. }
  50682. },
  50683. paw: {
  50684. height: math.unit(1.46, "feet"),
  50685. name: "Paw",
  50686. image: {
  50687. source: "./media/characters/kit/paw.svg"
  50688. }
  50689. },
  50690. },
  50691. [
  50692. {
  50693. name: "Normal",
  50694. height: math.unit(2.61, "meters"),
  50695. default: true
  50696. },
  50697. {
  50698. name: "\"Tall\"",
  50699. height: math.unit(8.21, "meters")
  50700. },
  50701. {
  50702. name: "Tall",
  50703. height: math.unit(19.6, "meters")
  50704. },
  50705. {
  50706. name: "Very Tall",
  50707. height: math.unit(57.91, "meters")
  50708. },
  50709. {
  50710. name: "Semi-Macro",
  50711. height: math.unit(138.64, "meters")
  50712. },
  50713. {
  50714. name: "Macro",
  50715. height: math.unit(831.99, "meters")
  50716. },
  50717. {
  50718. name: "EX-Macro",
  50719. height: math.unit(96451121, "meters")
  50720. },
  50721. {
  50722. name: "S1-Omnipotent",
  50723. height: math.unit(4.42074e+9, "meters")
  50724. },
  50725. {
  50726. name: "S2-Omnipotent",
  50727. height: math.unit(9.42074e+17, "meters")
  50728. },
  50729. {
  50730. name: "Omnipotent",
  50731. height: math.unit(4.23112e+24, "meters")
  50732. },
  50733. {
  50734. name: "Hypergod",
  50735. height: math.unit(5.05176e+27, "meters")
  50736. },
  50737. {
  50738. name: "Hypergod-EX",
  50739. height: math.unit(9.45532e+49, "meters")
  50740. },
  50741. {
  50742. name: "Hypergod-SP",
  50743. height: math.unit(9.45532e+195, "meters")
  50744. },
  50745. ]
  50746. ))
  50747. characterMakers.push(() => makeCharacter(
  50748. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50749. {
  50750. side: {
  50751. height: math.unit(0.6, "meters"),
  50752. weight: math.unit(24, "kg"),
  50753. name: "Side",
  50754. image: {
  50755. source: "./media/characters/celeste/side.svg",
  50756. extra: 810/517,
  50757. bottom: 53/863
  50758. }
  50759. },
  50760. },
  50761. [
  50762. {
  50763. name: "Velociraptor",
  50764. height: math.unit(0.6, "meters"),
  50765. default: true
  50766. },
  50767. {
  50768. name: "Utahraptor",
  50769. height: math.unit(1.8, "meters")
  50770. },
  50771. {
  50772. name: "Gallimimus",
  50773. height: math.unit(4.0, "meters")
  50774. },
  50775. {
  50776. name: "Large",
  50777. height: math.unit(20, "meters")
  50778. },
  50779. {
  50780. name: "Planetary",
  50781. height: math.unit(50, "megameters")
  50782. },
  50783. {
  50784. name: "Stellar",
  50785. height: math.unit(1.5, "gigameters")
  50786. },
  50787. {
  50788. name: "Galactic",
  50789. height: math.unit(100, "exameters")
  50790. },
  50791. ]
  50792. ))
  50793. characterMakers.push(() => makeCharacter(
  50794. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50795. {
  50796. front: {
  50797. height: math.unit(6, "feet"),
  50798. weight: math.unit(210, "lb"),
  50799. name: "Front",
  50800. image: {
  50801. source: "./media/characters/glacia/front.svg",
  50802. extra: 958/901,
  50803. bottom: 45/1003
  50804. }
  50805. },
  50806. },
  50807. [
  50808. {
  50809. name: "Macro",
  50810. height: math.unit(1000, "meters"),
  50811. default: true
  50812. },
  50813. ]
  50814. ))
  50815. characterMakers.push(() => makeCharacter(
  50816. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50817. {
  50818. front: {
  50819. height: math.unit(4, "meters"),
  50820. name: "Front",
  50821. image: {
  50822. source: "./media/characters/giri/front.svg",
  50823. extra: 966/894,
  50824. bottom: 21/987
  50825. }
  50826. },
  50827. },
  50828. [
  50829. {
  50830. name: "Normal",
  50831. height: math.unit(4, "meters"),
  50832. default: true
  50833. },
  50834. ]
  50835. ))
  50836. characterMakers.push(() => makeCharacter(
  50837. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50838. {
  50839. back: {
  50840. height: math.unit(4, "feet"),
  50841. weight: math.unit(37, "lb"),
  50842. name: "Back",
  50843. image: {
  50844. source: "./media/characters/tin/back.svg",
  50845. extra: 845/780,
  50846. bottom: 28/873
  50847. }
  50848. },
  50849. },
  50850. [
  50851. {
  50852. name: "Normal",
  50853. height: math.unit(4, "feet"),
  50854. default: true
  50855. },
  50856. ]
  50857. ))
  50858. characterMakers.push(() => makeCharacter(
  50859. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50860. {
  50861. front: {
  50862. height: math.unit(25, "feet"),
  50863. name: "Front",
  50864. image: {
  50865. source: "./media/characters/cadenza-vivace/front.svg",
  50866. extra: 1842/1578,
  50867. bottom: 30/1872
  50868. }
  50869. },
  50870. },
  50871. [
  50872. {
  50873. name: "Macro",
  50874. height: math.unit(25, "feet"),
  50875. default: true
  50876. },
  50877. ]
  50878. ))
  50879. characterMakers.push(() => makeCharacter(
  50880. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50881. {
  50882. front: {
  50883. height: math.unit(10, "feet"),
  50884. weight: math.unit(625, "kg"),
  50885. name: "Front",
  50886. image: {
  50887. source: "./media/characters/zain/front.svg",
  50888. extra: 1682/1498,
  50889. bottom: 223/1905
  50890. }
  50891. },
  50892. back: {
  50893. height: math.unit(10, "feet"),
  50894. weight: math.unit(625, "kg"),
  50895. name: "Back",
  50896. image: {
  50897. source: "./media/characters/zain/back.svg",
  50898. extra: 1814/1657,
  50899. bottom: 152/1966
  50900. }
  50901. },
  50902. head: {
  50903. height: math.unit(10, "feet"),
  50904. weight: math.unit(625, "kg"),
  50905. name: "Head",
  50906. image: {
  50907. source: "./media/characters/zain/head.svg",
  50908. extra: 1059/762,
  50909. bottom: 0/1059
  50910. }
  50911. },
  50912. },
  50913. [
  50914. {
  50915. name: "Normal",
  50916. height: math.unit(10, "feet"),
  50917. default: true
  50918. },
  50919. ]
  50920. ))
  50921. characterMakers.push(() => makeCharacter(
  50922. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50923. {
  50924. front: {
  50925. height: math.unit(6 + 5/12, "feet"),
  50926. weight: math.unit(750, "lb"),
  50927. name: "Front",
  50928. image: {
  50929. source: "./media/characters/ruchex/front.svg",
  50930. extra: 877/820,
  50931. bottom: 17/894
  50932. },
  50933. extraAttributes: {
  50934. "width": {
  50935. name: "Width",
  50936. power: 1,
  50937. type: "length",
  50938. base: math.unit(4.757, "feet")
  50939. },
  50940. }
  50941. },
  50942. },
  50943. [
  50944. {
  50945. name: "Normal",
  50946. height: math.unit(6 + 5/12, "feet"),
  50947. default: true
  50948. },
  50949. ]
  50950. ))
  50951. characterMakers.push(() => makeCharacter(
  50952. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50953. {
  50954. dressedFront: {
  50955. height: math.unit(191, "cm"),
  50956. weight: math.unit(80, "kg"),
  50957. name: "Front",
  50958. image: {
  50959. source: "./media/characters/buster/dressed-front.svg",
  50960. extra: 1022/973,
  50961. bottom: 69/1091
  50962. }
  50963. },
  50964. dressedBack: {
  50965. height: math.unit(191, "cm"),
  50966. weight: math.unit(80, "kg"),
  50967. name: "Back",
  50968. image: {
  50969. source: "./media/characters/buster/dressed-back.svg",
  50970. extra: 1018/970,
  50971. bottom: 55/1073
  50972. }
  50973. },
  50974. nudeFront: {
  50975. height: math.unit(191, "cm"),
  50976. weight: math.unit(80, "kg"),
  50977. name: "Front (Nude)",
  50978. image: {
  50979. source: "./media/characters/buster/nude-front.svg",
  50980. extra: 1022/973,
  50981. bottom: 69/1091
  50982. }
  50983. },
  50984. nudeBack: {
  50985. height: math.unit(191, "cm"),
  50986. weight: math.unit(80, "kg"),
  50987. name: "Back (Nude)",
  50988. image: {
  50989. source: "./media/characters/buster/nude-back.svg",
  50990. extra: 1018/970,
  50991. bottom: 55/1073
  50992. }
  50993. },
  50994. dick: {
  50995. height: math.unit(2.59, "feet"),
  50996. name: "Dick",
  50997. image: {
  50998. source: "./media/characters/buster/dick.svg"
  50999. }
  51000. },
  51001. ass: {
  51002. height: math.unit(1.2, "feet"),
  51003. name: "Ass",
  51004. image: {
  51005. source: "./media/characters/buster/ass.svg"
  51006. }
  51007. },
  51008. },
  51009. [
  51010. {
  51011. name: "Normal",
  51012. height: math.unit(191, "cm"),
  51013. default: true
  51014. },
  51015. ]
  51016. ))
  51017. characterMakers.push(() => makeCharacter(
  51018. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51019. {
  51020. side: {
  51021. height: math.unit(8.1, "feet"),
  51022. weight: math.unit(3500, "lb"),
  51023. name: "Side",
  51024. image: {
  51025. source: "./media/characters/sonya/side.svg",
  51026. extra: 1730/1317,
  51027. bottom: 86/1816
  51028. }
  51029. },
  51030. },
  51031. [
  51032. {
  51033. name: "Normal",
  51034. height: math.unit(8.1, "feet"),
  51035. default: true
  51036. },
  51037. ]
  51038. ))
  51039. characterMakers.push(() => makeCharacter(
  51040. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51041. {
  51042. front: {
  51043. height: math.unit(6, "feet"),
  51044. weight: math.unit(150, "lb"),
  51045. name: "Front",
  51046. image: {
  51047. source: "./media/characters/cadence-andrysiak/front.svg",
  51048. extra: 1164/1121,
  51049. bottom: 60/1224
  51050. }
  51051. },
  51052. back: {
  51053. height: math.unit(6, "feet"),
  51054. weight: math.unit(150, "lb"),
  51055. name: "Back",
  51056. image: {
  51057. source: "./media/characters/cadence-andrysiak/back.svg",
  51058. extra: 1200/1165,
  51059. bottom: 9/1209
  51060. }
  51061. },
  51062. dressed: {
  51063. height: math.unit(6, "feet"),
  51064. weight: math.unit(150, "lb"),
  51065. name: "Dressed",
  51066. image: {
  51067. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51068. extra: 1164/1121,
  51069. bottom: 60/1224
  51070. }
  51071. },
  51072. },
  51073. [
  51074. {
  51075. name: "Micro",
  51076. height: math.unit(1, "mm")
  51077. },
  51078. {
  51079. name: "Normal",
  51080. height: math.unit(6, "feet"),
  51081. default: true
  51082. },
  51083. ]
  51084. ))
  51085. characterMakers.push(() => makeCharacter(
  51086. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51087. {
  51088. front: {
  51089. height: math.unit(60, "inches"),
  51090. weight: math.unit(16, "lb"),
  51091. preyCapacity: math.unit(80, "liters"),
  51092. name: "Front",
  51093. image: {
  51094. source: "./media/characters/penny-lynx/front.svg",
  51095. extra: 1959/1769,
  51096. bottom: 49/2008
  51097. }
  51098. },
  51099. },
  51100. [
  51101. {
  51102. name: "Nokia",
  51103. height: math.unit(2, "inches")
  51104. },
  51105. {
  51106. name: "Desktop",
  51107. height: math.unit(24, "inches")
  51108. },
  51109. {
  51110. name: "TV",
  51111. height: math.unit(60, "inches")
  51112. },
  51113. {
  51114. name: "Jumbotron",
  51115. height: math.unit(12, "feet")
  51116. },
  51117. {
  51118. name: "Billboard",
  51119. height: math.unit(48, "feet"),
  51120. default: true
  51121. },
  51122. {
  51123. name: "IMAX",
  51124. height: math.unit(96, "feet")
  51125. },
  51126. {
  51127. name: "SINGULARITY",
  51128. height: math.unit(864938, "miles")
  51129. },
  51130. ]
  51131. ))
  51132. characterMakers.push(() => makeCharacter(
  51133. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51134. {
  51135. front: {
  51136. height: math.unit(5 + 4/12, "feet"),
  51137. weight: math.unit(230, "lb"),
  51138. name: "Front",
  51139. image: {
  51140. source: "./media/characters/sukebe/front.svg",
  51141. extra: 2130/2038,
  51142. bottom: 90/2220
  51143. }
  51144. },
  51145. back: {
  51146. height: math.unit(3.48, "feet"),
  51147. weight: math.unit(230, "lb"),
  51148. name: "Back",
  51149. image: {
  51150. source: "./media/characters/sukebe/back.svg",
  51151. extra: 1670/1604,
  51152. bottom: 0/1670
  51153. }
  51154. },
  51155. },
  51156. [
  51157. {
  51158. name: "Normal",
  51159. height: math.unit(5 + 4/12, "feet"),
  51160. default: true
  51161. },
  51162. ]
  51163. ))
  51164. characterMakers.push(() => makeCharacter(
  51165. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51166. {
  51167. front: {
  51168. height: math.unit(6, "feet"),
  51169. name: "Front",
  51170. image: {
  51171. source: "./media/characters/nylla/front.svg",
  51172. extra: 1868/1699,
  51173. bottom: 97/1965
  51174. }
  51175. },
  51176. back: {
  51177. height: math.unit(6, "feet"),
  51178. name: "Back",
  51179. image: {
  51180. source: "./media/characters/nylla/back.svg",
  51181. extra: 1889/1712,
  51182. bottom: 93/1982
  51183. }
  51184. },
  51185. frontNsfw: {
  51186. height: math.unit(6, "feet"),
  51187. name: "Front (NSFW)",
  51188. image: {
  51189. source: "./media/characters/nylla/front-nsfw.svg",
  51190. extra: 1868/1699,
  51191. bottom: 97/1965
  51192. },
  51193. extraAttributes: {
  51194. "dickLength": {
  51195. name: "Dick Length",
  51196. power: 1,
  51197. type: "length",
  51198. base: math.unit(1.4, "feet")
  51199. },
  51200. "cumVolume": {
  51201. name: "Cum Volume",
  51202. power: 3,
  51203. type: "volume",
  51204. base: math.unit(100, "mL")
  51205. },
  51206. }
  51207. },
  51208. backNsfw: {
  51209. height: math.unit(6, "feet"),
  51210. name: "Back (NSFW)",
  51211. image: {
  51212. source: "./media/characters/nylla/back-nsfw.svg",
  51213. extra: 1889/1712,
  51214. bottom: 93/1982
  51215. }
  51216. },
  51217. maw: {
  51218. height: math.unit(2.10, "feet"),
  51219. name: "Maw",
  51220. image: {
  51221. source: "./media/characters/nylla/maw.svg"
  51222. }
  51223. },
  51224. paws: {
  51225. height: math.unit(2.06, "feet"),
  51226. name: "Paws",
  51227. image: {
  51228. source: "./media/characters/nylla/paws.svg"
  51229. }
  51230. },
  51231. muzzle: {
  51232. height: math.unit(0.61, "feet"),
  51233. name: "Muzzle",
  51234. image: {
  51235. source: "./media/characters/nylla/muzzle.svg"
  51236. }
  51237. },
  51238. sheath: {
  51239. height: math.unit(1.305, "feet"),
  51240. name: "Sheath",
  51241. image: {
  51242. source: "./media/characters/nylla/sheath.svg"
  51243. }
  51244. },
  51245. },
  51246. [
  51247. {
  51248. name: "Micro",
  51249. height: math.unit(7.5, "inches")
  51250. },
  51251. {
  51252. name: "Normal",
  51253. height: math.unit(7, "feet"),
  51254. default: true
  51255. },
  51256. {
  51257. name: "Macro",
  51258. height: math.unit(60, "feet")
  51259. },
  51260. {
  51261. name: "Mega",
  51262. height: math.unit(200, "feet")
  51263. },
  51264. ]
  51265. ))
  51266. characterMakers.push(() => makeCharacter(
  51267. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51268. {
  51269. front: {
  51270. height: math.unit(10, "feet"),
  51271. weight: math.unit(2300, "lb"),
  51272. name: "Front",
  51273. image: {
  51274. source: "./media/characters/hunt3r/front.svg",
  51275. extra: 1909/1742,
  51276. bottom: 46/1955
  51277. }
  51278. },
  51279. },
  51280. [
  51281. {
  51282. name: "Normal",
  51283. height: math.unit(10, "feet"),
  51284. default: true
  51285. },
  51286. ]
  51287. ))
  51288. characterMakers.push(() => makeCharacter(
  51289. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51290. {
  51291. dressed: {
  51292. height: math.unit(11, "feet"),
  51293. weight: math.unit(18500, "lb"),
  51294. preyCapacity: math.unit(9, "people"),
  51295. name: "Dressed",
  51296. image: {
  51297. source: "./media/characters/cylphis/dressed.svg",
  51298. extra: 1028/1003,
  51299. bottom: 75/1103
  51300. },
  51301. },
  51302. undressed: {
  51303. height: math.unit(11, "feet"),
  51304. weight: math.unit(18500, "lb"),
  51305. preyCapacity: math.unit(9, "people"),
  51306. name: "Undressed",
  51307. image: {
  51308. source: "./media/characters/cylphis/undressed.svg",
  51309. extra: 1028/1003,
  51310. bottom: 75/1103
  51311. }
  51312. },
  51313. full: {
  51314. height: math.unit(11, "feet"),
  51315. weight: math.unit(18500 + 150*9, "lb"),
  51316. preyCapacity: math.unit(9, "people"),
  51317. name: "Full",
  51318. image: {
  51319. source: "./media/characters/cylphis/full.svg",
  51320. extra: 1028/1003,
  51321. bottom: 75/1103
  51322. }
  51323. },
  51324. },
  51325. [
  51326. {
  51327. name: "Small",
  51328. height: math.unit(8, "feet")
  51329. },
  51330. {
  51331. name: "Normal",
  51332. height: math.unit(11, "feet"),
  51333. default: true
  51334. },
  51335. ]
  51336. ))
  51337. characterMakers.push(() => makeCharacter(
  51338. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51339. {
  51340. front: {
  51341. height: math.unit(2 + 7/12, "feet"),
  51342. name: "Front",
  51343. image: {
  51344. source: "./media/characters/orishan/front.svg",
  51345. extra: 1058/1023,
  51346. bottom: 23/1081
  51347. }
  51348. },
  51349. back: {
  51350. height: math.unit(2 + 7/12, "feet"),
  51351. name: "Back",
  51352. image: {
  51353. source: "./media/characters/orishan/back.svg",
  51354. extra: 1058/1023,
  51355. bottom: 23/1081
  51356. }
  51357. },
  51358. },
  51359. [
  51360. {
  51361. name: "Micro",
  51362. height: math.unit(2, "cm")
  51363. },
  51364. {
  51365. name: "Normal",
  51366. height: math.unit(2 + 7/12, "feet"),
  51367. default: true
  51368. },
  51369. ]
  51370. ))
  51371. characterMakers.push(() => makeCharacter(
  51372. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51373. {
  51374. front: {
  51375. height: math.unit(3, "meters"),
  51376. weight: math.unit(508, "kg"),
  51377. name: "Front",
  51378. image: {
  51379. source: "./media/characters/seranis/front.svg",
  51380. extra: 1478/1454,
  51381. bottom: 41/1519
  51382. }
  51383. },
  51384. },
  51385. [
  51386. {
  51387. name: "Normal",
  51388. height: math.unit(3, "meters"),
  51389. default: true
  51390. },
  51391. {
  51392. name: "Macro",
  51393. height: math.unit(108, "meters")
  51394. },
  51395. {
  51396. name: "Megamacro",
  51397. height: math.unit(1250, "meters")
  51398. },
  51399. ]
  51400. ))
  51401. characterMakers.push(() => makeCharacter(
  51402. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51403. {
  51404. undressed: {
  51405. height: math.unit(5 + 3/12, "feet"),
  51406. name: "Undressed",
  51407. image: {
  51408. source: "./media/characters/ankou/undressed.svg",
  51409. extra: 1301/1213,
  51410. bottom: 87/1388
  51411. }
  51412. },
  51413. dressed: {
  51414. height: math.unit(5 + 3/12, "feet"),
  51415. name: "Dressed",
  51416. image: {
  51417. source: "./media/characters/ankou/dressed.svg",
  51418. extra: 1301/1213,
  51419. bottom: 87/1388
  51420. }
  51421. },
  51422. head: {
  51423. height: math.unit(1.61, "feet"),
  51424. name: "Head",
  51425. image: {
  51426. source: "./media/characters/ankou/head.svg"
  51427. }
  51428. },
  51429. },
  51430. [
  51431. {
  51432. name: "Normal",
  51433. height: math.unit(5 + 3/12, "feet"),
  51434. default: true
  51435. },
  51436. ]
  51437. ))
  51438. characterMakers.push(() => makeCharacter(
  51439. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51440. {
  51441. side: {
  51442. height: math.unit(6 + 3/12, "feet"),
  51443. weight: math.unit(200, "kg"),
  51444. name: "Side",
  51445. image: {
  51446. source: "./media/characters/juniper-skunktaur/side.svg",
  51447. extra: 1574/1229,
  51448. bottom: 38/1612
  51449. }
  51450. },
  51451. front: {
  51452. height: math.unit(6 + 3/12, "feet"),
  51453. weight: math.unit(200, "kg"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/juniper-skunktaur/front.svg",
  51457. extra: 1337/1278,
  51458. bottom: 22/1359
  51459. }
  51460. },
  51461. back: {
  51462. height: math.unit(6 + 3/12, "feet"),
  51463. weight: math.unit(200, "kg"),
  51464. name: "Back",
  51465. image: {
  51466. source: "./media/characters/juniper-skunktaur/back.svg",
  51467. extra: 1618/1273,
  51468. bottom: 13/1631
  51469. }
  51470. },
  51471. top: {
  51472. height: math.unit(2.62, "feet"),
  51473. weight: math.unit(200, "kg"),
  51474. name: "Top",
  51475. image: {
  51476. source: "./media/characters/juniper-skunktaur/top.svg"
  51477. }
  51478. },
  51479. },
  51480. [
  51481. {
  51482. name: "Normal",
  51483. height: math.unit(6 + 3/12, "feet"),
  51484. default: true
  51485. },
  51486. ]
  51487. ))
  51488. characterMakers.push(() => makeCharacter(
  51489. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51490. {
  51491. front: {
  51492. height: math.unit(20.5, "feet"),
  51493. name: "Front",
  51494. image: {
  51495. source: "./media/characters/rei/front.svg",
  51496. extra: 1349/1195,
  51497. bottom: 31/1380
  51498. }
  51499. },
  51500. back: {
  51501. height: math.unit(20.5, "feet"),
  51502. name: "Back",
  51503. image: {
  51504. source: "./media/characters/rei/back.svg",
  51505. extra: 1358/1204,
  51506. bottom: 22/1380
  51507. }
  51508. },
  51509. pawsDigi: {
  51510. height: math.unit(3.45, "feet"),
  51511. name: "Paws (Digi)",
  51512. image: {
  51513. source: "./media/characters/rei/paws-digi.svg"
  51514. }
  51515. },
  51516. pawsPlanti: {
  51517. height: math.unit(3.45, "feet"),
  51518. name: "Paws (Planti)",
  51519. image: {
  51520. source: "./media/characters/rei/paws-planti.svg"
  51521. }
  51522. },
  51523. },
  51524. [
  51525. {
  51526. name: "Normal",
  51527. height: math.unit(20.5, "feet"),
  51528. default: true
  51529. },
  51530. ]
  51531. ))
  51532. characterMakers.push(() => makeCharacter(
  51533. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51534. {
  51535. front: {
  51536. height: math.unit(5 + 11/12, "feet"),
  51537. name: "Front",
  51538. image: {
  51539. source: "./media/characters/carina/front.svg",
  51540. extra: 1720/1449,
  51541. bottom: 14/1734
  51542. }
  51543. },
  51544. back: {
  51545. height: math.unit(5 + 11/12, "feet"),
  51546. name: "Back",
  51547. image: {
  51548. source: "./media/characters/carina/back.svg",
  51549. extra: 1493/1445,
  51550. bottom: 17/1510
  51551. }
  51552. },
  51553. paw: {
  51554. height: math.unit(0.92, "feet"),
  51555. name: "Paw",
  51556. image: {
  51557. source: "./media/characters/carina/paw.svg"
  51558. }
  51559. },
  51560. },
  51561. [
  51562. {
  51563. name: "Normal",
  51564. height: math.unit(5 + 11/12, "feet"),
  51565. default: true
  51566. },
  51567. ]
  51568. ))
  51569. characterMakers.push(() => makeCharacter(
  51570. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51571. {
  51572. front: {
  51573. height: math.unit(4.88, "meters"),
  51574. name: "Front",
  51575. image: {
  51576. source: "./media/characters/maya/front.svg",
  51577. extra: 1222/1145,
  51578. bottom: 57/1279
  51579. }
  51580. },
  51581. },
  51582. [
  51583. {
  51584. name: "Normal",
  51585. height: math.unit(4.88, "meters"),
  51586. default: true
  51587. },
  51588. {
  51589. name: "Macro",
  51590. height: math.unit(38.1, "meters")
  51591. },
  51592. {
  51593. name: "Macro+",
  51594. height: math.unit(152.4, "meters")
  51595. },
  51596. {
  51597. name: "Macro++",
  51598. height: math.unit(16.09, "km")
  51599. },
  51600. {
  51601. name: "Mega-macro",
  51602. height: math.unit(700, "megameters")
  51603. },
  51604. ]
  51605. ))
  51606. characterMakers.push(() => makeCharacter(
  51607. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51608. {
  51609. front: {
  51610. height: math.unit(6 + 2/12, "feet"),
  51611. weight: math.unit(500, "lb"),
  51612. preyCapacity: math.unit(4, "people"),
  51613. name: "Front",
  51614. image: {
  51615. source: "./media/characters/yepir/front.svg"
  51616. }
  51617. },
  51618. side: {
  51619. height: math.unit(6 + 2/12, "feet"),
  51620. weight: math.unit(500, "lb"),
  51621. preyCapacity: math.unit(4, "people"),
  51622. name: "Side",
  51623. image: {
  51624. source: "./media/characters/yepir/side.svg"
  51625. }
  51626. },
  51627. paw: {
  51628. height: math.unit(1.05, "feet"),
  51629. name: "Paw",
  51630. image: {
  51631. source: "./media/characters/yepir/paw.svg"
  51632. }
  51633. },
  51634. },
  51635. [
  51636. {
  51637. name: "Normal",
  51638. height: math.unit(6 + 2/12, "feet"),
  51639. default: true
  51640. },
  51641. ]
  51642. ))
  51643. characterMakers.push(() => makeCharacter(
  51644. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51645. {
  51646. front: {
  51647. height: math.unit(5 + 4/12, "feet"),
  51648. name: "Front",
  51649. image: {
  51650. source: "./media/characters/russec/front.svg",
  51651. extra: 1926/1626,
  51652. bottom: 72/1998
  51653. }
  51654. },
  51655. back: {
  51656. height: math.unit(5 + 4/12, "feet"),
  51657. name: "Back",
  51658. image: {
  51659. source: "./media/characters/russec/back.svg",
  51660. extra: 1910/1591,
  51661. bottom: 48/1958
  51662. }
  51663. },
  51664. },
  51665. [
  51666. {
  51667. name: "Small",
  51668. height: math.unit(5 + 4/12, "feet")
  51669. },
  51670. {
  51671. name: "Normal",
  51672. height: math.unit(72, "feet"),
  51673. default: true
  51674. },
  51675. ]
  51676. ))
  51677. characterMakers.push(() => makeCharacter(
  51678. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51679. {
  51680. side: {
  51681. height: math.unit(12, "feet"),
  51682. name: "Side",
  51683. image: {
  51684. source: "./media/characters/cianus/side.svg",
  51685. extra: 808/526,
  51686. bottom: 61/869
  51687. }
  51688. },
  51689. },
  51690. [
  51691. {
  51692. name: "Normal",
  51693. height: math.unit(12, "feet"),
  51694. default: true
  51695. },
  51696. ]
  51697. ))
  51698. characterMakers.push(() => makeCharacter(
  51699. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51700. {
  51701. front: {
  51702. height: math.unit(9 + 6/12, "feet"),
  51703. weight: math.unit(300, "lb"),
  51704. name: "Front",
  51705. image: {
  51706. source: "./media/characters/ahab/front.svg",
  51707. extra: 1897/1868,
  51708. bottom: 121/2018
  51709. }
  51710. },
  51711. frontNsfw: {
  51712. height: math.unit(9 + 6/12, "feet"),
  51713. weight: math.unit(300, "lb"),
  51714. name: "Front-nsfw",
  51715. image: {
  51716. source: "./media/characters/ahab/front-nsfw.svg",
  51717. extra: 1897/1868,
  51718. bottom: 121/2018
  51719. }
  51720. },
  51721. },
  51722. [
  51723. {
  51724. name: "Normal",
  51725. height: math.unit(9 + 6/12, "feet")
  51726. },
  51727. {
  51728. name: "Macro",
  51729. height: math.unit(657, "feet"),
  51730. default: true
  51731. },
  51732. ]
  51733. ))
  51734. characterMakers.push(() => makeCharacter(
  51735. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51736. {
  51737. front: {
  51738. height: math.unit(2.69, "meters"),
  51739. weight: math.unit(132, "kg"),
  51740. name: "Front",
  51741. image: {
  51742. source: "./media/characters/aarkus/front.svg",
  51743. extra: 1400/1231,
  51744. bottom: 34/1434
  51745. }
  51746. },
  51747. back: {
  51748. height: math.unit(2.69, "meters"),
  51749. weight: math.unit(132, "kg"),
  51750. name: "Back",
  51751. image: {
  51752. source: "./media/characters/aarkus/back.svg",
  51753. extra: 1381/1218,
  51754. bottom: 30/1411
  51755. }
  51756. },
  51757. frontNsfw: {
  51758. height: math.unit(2.69, "meters"),
  51759. weight: math.unit(132, "kg"),
  51760. name: "Front (NSFW)",
  51761. image: {
  51762. source: "./media/characters/aarkus/front-nsfw.svg",
  51763. extra: 1400/1231,
  51764. bottom: 34/1434
  51765. }
  51766. },
  51767. foot: {
  51768. height: math.unit(1.45, "feet"),
  51769. name: "Foot",
  51770. image: {
  51771. source: "./media/characters/aarkus/foot.svg"
  51772. }
  51773. },
  51774. head: {
  51775. height: math.unit(2.85, "feet"),
  51776. name: "Head",
  51777. image: {
  51778. source: "./media/characters/aarkus/head.svg"
  51779. }
  51780. },
  51781. headAlt: {
  51782. height: math.unit(3.07, "feet"),
  51783. name: "Head (Alt)",
  51784. image: {
  51785. source: "./media/characters/aarkus/head-alt.svg"
  51786. }
  51787. },
  51788. mouth: {
  51789. height: math.unit(1.25, "feet"),
  51790. name: "Mouth",
  51791. image: {
  51792. source: "./media/characters/aarkus/mouth.svg"
  51793. }
  51794. },
  51795. dick: {
  51796. height: math.unit(1.77, "feet"),
  51797. name: "Dick",
  51798. image: {
  51799. source: "./media/characters/aarkus/dick.svg"
  51800. }
  51801. },
  51802. },
  51803. [
  51804. {
  51805. name: "Normal",
  51806. height: math.unit(2.69, "meters"),
  51807. default: true
  51808. },
  51809. {
  51810. name: "Macro",
  51811. height: math.unit(269, "meters")
  51812. },
  51813. {
  51814. name: "Macro+",
  51815. height: math.unit(672.5, "meters")
  51816. },
  51817. {
  51818. name: "Megamacro",
  51819. height: math.unit(2.017, "km")
  51820. },
  51821. ]
  51822. ))
  51823. characterMakers.push(() => makeCharacter(
  51824. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51825. {
  51826. front: {
  51827. height: math.unit(23.47, "cm"),
  51828. weight: math.unit(600, "grams"),
  51829. name: "Front",
  51830. image: {
  51831. source: "./media/characters/diode/front.svg",
  51832. extra: 1778/1396,
  51833. bottom: 95/1873
  51834. }
  51835. },
  51836. side: {
  51837. height: math.unit(23.47, "cm"),
  51838. weight: math.unit(600, "grams"),
  51839. name: "Side",
  51840. image: {
  51841. source: "./media/characters/diode/side.svg",
  51842. extra: 1831/1404,
  51843. bottom: 86/1917
  51844. }
  51845. },
  51846. wings: {
  51847. height: math.unit(0.683, "feet"),
  51848. name: "Wings",
  51849. image: {
  51850. source: "./media/characters/diode/wings.svg"
  51851. }
  51852. },
  51853. },
  51854. [
  51855. {
  51856. name: "Normal",
  51857. height: math.unit(23.47, "cm"),
  51858. default: true
  51859. },
  51860. ]
  51861. ))
  51862. characterMakers.push(() => makeCharacter(
  51863. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51864. {
  51865. front: {
  51866. height: math.unit(6 + 3/12, "feet"),
  51867. weight: math.unit(250, "lb"),
  51868. name: "Front",
  51869. image: {
  51870. source: "./media/characters/reika/front.svg",
  51871. extra: 1120/1078,
  51872. bottom: 86/1206
  51873. }
  51874. },
  51875. },
  51876. [
  51877. {
  51878. name: "Normal",
  51879. height: math.unit(6 + 3/12, "feet"),
  51880. default: true
  51881. },
  51882. ]
  51883. ))
  51884. characterMakers.push(() => makeCharacter(
  51885. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51886. {
  51887. front: {
  51888. height: math.unit(16 + 8/12, "feet"),
  51889. weight: math.unit(9000, "lb"),
  51890. name: "Front",
  51891. image: {
  51892. source: "./media/characters/lokuto-takama/front.svg",
  51893. extra: 1774/1632,
  51894. bottom: 147/1921
  51895. },
  51896. extraAttributes: {
  51897. "bustWidth": {
  51898. name: "Bust Width",
  51899. power: 1,
  51900. type: "length",
  51901. base: math.unit(2.4, "meters")
  51902. },
  51903. "breastWeight": {
  51904. name: "Breast Weight",
  51905. power: 3,
  51906. type: "mass",
  51907. base: math.unit(1000, "kg")
  51908. },
  51909. }
  51910. },
  51911. },
  51912. [
  51913. {
  51914. name: "Normal",
  51915. height: math.unit(16 + 8/12, "feet"),
  51916. default: true
  51917. },
  51918. ]
  51919. ))
  51920. characterMakers.push(() => makeCharacter(
  51921. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51922. {
  51923. front: {
  51924. height: math.unit(10, "cm"),
  51925. weight: math.unit(850, "grams"),
  51926. name: "Front",
  51927. image: {
  51928. source: "./media/characters/owak-bone/front.svg",
  51929. extra: 1965/1801,
  51930. bottom: 31/1996
  51931. }
  51932. },
  51933. },
  51934. [
  51935. {
  51936. name: "Normal",
  51937. height: math.unit(10, "cm"),
  51938. default: true
  51939. },
  51940. ]
  51941. ))
  51942. characterMakers.push(() => makeCharacter(
  51943. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  51944. {
  51945. front: {
  51946. height: math.unit(2 + 6/12, "feet"),
  51947. weight: math.unit(9, "lb"),
  51948. name: "Front",
  51949. image: {
  51950. source: "./media/characters/muffin/front.svg",
  51951. extra: 1220/1195,
  51952. bottom: 84/1304
  51953. }
  51954. },
  51955. },
  51956. [
  51957. {
  51958. name: "Normal",
  51959. height: math.unit(2 + 6/12, "feet"),
  51960. default: true
  51961. },
  51962. ]
  51963. ))
  51964. characterMakers.push(() => makeCharacter(
  51965. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  51966. {
  51967. front: {
  51968. height: math.unit(7, "feet"),
  51969. name: "Front",
  51970. image: {
  51971. source: "./media/characters/chimera/front.svg",
  51972. extra: 1752/1614,
  51973. bottom: 68/1820
  51974. }
  51975. },
  51976. },
  51977. [
  51978. {
  51979. name: "Normal",
  51980. height: math.unit(7, "feet")
  51981. },
  51982. {
  51983. name: "Gigamacro",
  51984. height: math.unit(2.9, "gigameters"),
  51985. default: true
  51986. },
  51987. {
  51988. name: "Universal",
  51989. height: math.unit(1.56e26, "yottameters")
  51990. },
  51991. ]
  51992. ))
  51993. characterMakers.push(() => makeCharacter(
  51994. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  51995. {
  51996. front: {
  51997. height: math.unit(3, "feet"),
  51998. weight: math.unit(20, "lb"),
  51999. name: "Front",
  52000. image: {
  52001. source: "./media/characters/kit-fennec-fox/front.svg",
  52002. extra: 1027/932,
  52003. bottom: 16/1043
  52004. }
  52005. },
  52006. back: {
  52007. height: math.unit(3, "feet"),
  52008. weight: math.unit(20, "lb"),
  52009. name: "Back",
  52010. image: {
  52011. source: "./media/characters/kit-fennec-fox/back.svg",
  52012. extra: 1027/932,
  52013. bottom: 16/1043
  52014. }
  52015. },
  52016. },
  52017. [
  52018. {
  52019. name: "Normal",
  52020. height: math.unit(3, "feet"),
  52021. default: true
  52022. },
  52023. ]
  52024. ))
  52025. characterMakers.push(() => makeCharacter(
  52026. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52027. {
  52028. front: {
  52029. height: math.unit(167, "cm"),
  52030. name: "Front",
  52031. image: {
  52032. source: "./media/characters/blue-otter/front.svg",
  52033. extra: 1951/1920,
  52034. bottom: 31/1982
  52035. }
  52036. },
  52037. },
  52038. [
  52039. {
  52040. name: "Otter-Sized",
  52041. height: math.unit(100, "cm")
  52042. },
  52043. {
  52044. name: "Normal",
  52045. height: math.unit(167, "cm"),
  52046. default: true
  52047. },
  52048. ]
  52049. ))
  52050. characterMakers.push(() => makeCharacter(
  52051. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52052. {
  52053. front: {
  52054. height: math.unit(4 + 4/12, "feet"),
  52055. name: "Front",
  52056. image: {
  52057. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52058. extra: 1072/1067,
  52059. bottom: 117/1189
  52060. }
  52061. },
  52062. back: {
  52063. height: math.unit(4 + 4/12, "feet"),
  52064. name: "Back",
  52065. image: {
  52066. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52067. extra: 1135/1129,
  52068. bottom: 57/1192
  52069. }
  52070. },
  52071. head: {
  52072. height: math.unit(1.77, "feet"),
  52073. name: "Head",
  52074. image: {
  52075. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52076. }
  52077. },
  52078. },
  52079. [
  52080. {
  52081. name: "Normal",
  52082. height: math.unit(4 + 4/12, "feet"),
  52083. default: true
  52084. },
  52085. ]
  52086. ))
  52087. characterMakers.push(() => makeCharacter(
  52088. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52089. {
  52090. front: {
  52091. height: math.unit(2, "inches"),
  52092. name: "Front",
  52093. image: {
  52094. source: "./media/characters/carley-hartford/front.svg",
  52095. extra: 1035/988,
  52096. bottom: 23/1058
  52097. }
  52098. },
  52099. back: {
  52100. height: math.unit(2, "inches"),
  52101. name: "Back",
  52102. image: {
  52103. source: "./media/characters/carley-hartford/back.svg",
  52104. extra: 1035/988,
  52105. bottom: 23/1058
  52106. }
  52107. },
  52108. dressed: {
  52109. height: math.unit(2, "inches"),
  52110. name: "Dressed",
  52111. image: {
  52112. source: "./media/characters/carley-hartford/dressed.svg",
  52113. extra: 651/620,
  52114. bottom: 0/651
  52115. }
  52116. },
  52117. },
  52118. [
  52119. {
  52120. name: "Micro",
  52121. height: math.unit(2, "inches"),
  52122. default: true
  52123. },
  52124. {
  52125. name: "Macro",
  52126. height: math.unit(6 + 3/12, "feet")
  52127. },
  52128. ]
  52129. ))
  52130. characterMakers.push(() => makeCharacter(
  52131. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52132. {
  52133. front: {
  52134. height: math.unit(2 + 3/12, "feet"),
  52135. weight: math.unit(15 + 7/16, "lb"),
  52136. name: "Front",
  52137. image: {
  52138. source: "./media/characters/duke/front.svg",
  52139. extra: 910/815,
  52140. bottom: 30/940
  52141. }
  52142. },
  52143. },
  52144. [
  52145. {
  52146. name: "Normal",
  52147. height: math.unit(2 + 3/12, "feet"),
  52148. default: true
  52149. },
  52150. ]
  52151. ))
  52152. characterMakers.push(() => makeCharacter(
  52153. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52154. {
  52155. front: {
  52156. height: math.unit(5 + 4/12, "feet"),
  52157. weight: math.unit(156, "lb"),
  52158. name: "Front",
  52159. image: {
  52160. source: "./media/characters/dein/front.svg",
  52161. extra: 855/815,
  52162. bottom: 48/903
  52163. }
  52164. },
  52165. side: {
  52166. height: math.unit(5 + 4/12, "feet"),
  52167. weight: math.unit(156, "lb"),
  52168. name: "side",
  52169. image: {
  52170. source: "./media/characters/dein/side.svg",
  52171. extra: 846/803,
  52172. bottom: 25/871
  52173. }
  52174. },
  52175. maw: {
  52176. height: math.unit(1.45, "feet"),
  52177. name: "Maw",
  52178. image: {
  52179. source: "./media/characters/dein/maw.svg"
  52180. }
  52181. },
  52182. },
  52183. [
  52184. {
  52185. name: "Ferret Sized",
  52186. height: math.unit(2 + 5/12, "feet")
  52187. },
  52188. {
  52189. name: "Normal",
  52190. height: math.unit(5 + 4/12, "feet"),
  52191. default: true
  52192. },
  52193. ]
  52194. ))
  52195. characterMakers.push(() => makeCharacter(
  52196. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52197. {
  52198. front: {
  52199. height: math.unit(84 + 8/12, "feet"),
  52200. weight: math.unit(942180, "lb"),
  52201. name: "Front",
  52202. image: {
  52203. source: "./media/characters/daurine-arima/front.svg",
  52204. extra: 1989/1782,
  52205. bottom: 37/2026
  52206. }
  52207. },
  52208. side: {
  52209. height: math.unit(84 + 8/12, "feet"),
  52210. weight: math.unit(942180, "lb"),
  52211. name: "Side",
  52212. image: {
  52213. source: "./media/characters/daurine-arima/side.svg",
  52214. extra: 1997/1790,
  52215. bottom: 21/2018
  52216. }
  52217. },
  52218. back: {
  52219. height: math.unit(84 + 8/12, "feet"),
  52220. weight: math.unit(942180, "lb"),
  52221. name: "Back",
  52222. image: {
  52223. source: "./media/characters/daurine-arima/back.svg",
  52224. extra: 1992/1800,
  52225. bottom: 12/2004
  52226. }
  52227. },
  52228. head: {
  52229. height: math.unit(15.5, "feet"),
  52230. name: "Head",
  52231. image: {
  52232. source: "./media/characters/daurine-arima/head.svg"
  52233. }
  52234. },
  52235. headAlt: {
  52236. height: math.unit(19.19, "feet"),
  52237. name: "Head (Alt)",
  52238. image: {
  52239. source: "./media/characters/daurine-arima/head-alt.svg"
  52240. }
  52241. },
  52242. },
  52243. [
  52244. {
  52245. name: "Minimum height",
  52246. height: math.unit(8 + 10/12, "feet")
  52247. },
  52248. {
  52249. name: "Comfort height",
  52250. height: math.unit(19 + 6 /12, "feet")
  52251. },
  52252. {
  52253. name: "\"Normal\" height",
  52254. height: math.unit(28 + 10/12, "feet")
  52255. },
  52256. {
  52257. name: "Base height",
  52258. height: math.unit(84 + 8/12, "feet"),
  52259. default: true
  52260. },
  52261. {
  52262. name: "Mini-macro",
  52263. height: math.unit(2360, "feet")
  52264. },
  52265. {
  52266. name: "Macro",
  52267. height: math.unit(10, "miles")
  52268. },
  52269. {
  52270. name: "Goddess",
  52271. height: math.unit(9.99e40, "yottameters")
  52272. },
  52273. ]
  52274. ))
  52275. //characters
  52276. function makeCharacters() {
  52277. const results = [];
  52278. characterMakers.forEach(character => {
  52279. results.push(character());
  52280. });
  52281. return results;
  52282. }